mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 12:30:53 +07:00
fcf2d8978c
The Network Processing Engine and Queue Manager are versatile firmware components used by several IXP4xx drivers. Drivers are relying on getting access to these components using <mach/*> headers which does not work with multiplatform. We need to find a better place for the drivers to live. Let's first move them to drivers/soc and the start to refactor a bit by passing resources and moving headers. This patch introduce static IRQ assignments but that will be fixed by later patches in this series. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
46 lines
1.6 KiB
Makefile
46 lines
1.6 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
obj-pci-y :=
|
|
obj-pci-n :=
|
|
|
|
# Device tree platform
|
|
obj-pci-$(CONFIG_MACH_IXP4XX_OF) += ixp4xx-of.o
|
|
|
|
obj-pci-$(CONFIG_ARCH_IXDP4XX) += ixdp425-pci.o
|
|
obj-pci-$(CONFIG_MACH_AVILA) += avila-pci.o
|
|
obj-pci-$(CONFIG_MACH_IXDPG425) += ixdpg425-pci.o
|
|
obj-pci-$(CONFIG_ARCH_ADI_COYOTE) += coyote-pci.o
|
|
obj-pci-$(CONFIG_MACH_GTWX5715) += gtwx5715-pci.o
|
|
obj-pci-$(CONFIG_MACH_MICCPT) += miccpt-pci.o
|
|
obj-pci-$(CONFIG_MACH_NSLU2) += nslu2-pci.o
|
|
obj-pci-$(CONFIG_MACH_NAS100D) += nas100d-pci.o
|
|
obj-pci-$(CONFIG_MACH_DSMG600) += dsmg600-pci.o
|
|
obj-pci-$(CONFIG_MACH_GATEWAY7001) += gateway7001-pci.o
|
|
obj-pci-$(CONFIG_MACH_WG302V2) += wg302v2-pci.o
|
|
obj-pci-$(CONFIG_MACH_FSG) += fsg-pci.o
|
|
obj-pci-$(CONFIG_MACH_ARCOM_VULCAN) += vulcan-pci.o
|
|
|
|
obj-y += common.o
|
|
|
|
obj-$(CONFIG_ARCH_IXDP4XX) += ixdp425-setup.o
|
|
obj-$(CONFIG_MACH_AVILA) += avila-setup.o
|
|
obj-$(CONFIG_MACH_IXDPG425) += coyote-setup.o
|
|
obj-$(CONFIG_ARCH_ADI_COYOTE) += coyote-setup.o
|
|
obj-$(CONFIG_MACH_GTWX5715) += gtwx5715-setup.o
|
|
obj-$(CONFIG_MACH_DEVIXP) += omixp-setup.o
|
|
obj-$(CONFIG_MACH_MICCPT) += omixp-setup.o
|
|
obj-$(CONFIG_MACH_MIC256) += omixp-setup.o
|
|
obj-$(CONFIG_MACH_NSLU2) += nslu2-setup.o
|
|
obj-$(CONFIG_MACH_NAS100D) += nas100d-setup.o
|
|
obj-$(CONFIG_MACH_DSMG600) += dsmg600-setup.o
|
|
obj-$(CONFIG_MACH_GATEWAY7001) += gateway7001-setup.o
|
|
obj-$(CONFIG_MACH_WG302V2) += wg302v2-setup.o
|
|
obj-$(CONFIG_MACH_FSG) += fsg-setup.o
|
|
obj-$(CONFIG_MACH_GORAMO_MLR) += goramo_mlr.o
|
|
obj-$(CONFIG_MACH_ARCOM_VULCAN) += vulcan-setup.o
|
|
|
|
obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o
|