1
0
Fork 0

config/qe: add irq-qeic support.

Signed-off-by: Zhao Qiang <qiang.zhao@nxp.com>
5.4-rM2-2.2.x-imx-squashed
Zhao Qiang 2017-04-27 10:22:12 +08:00 committed by Dong Aisheng
parent ffc21ad04e
commit e1a845431d
3 changed files with 13 additions and 5 deletions

View File

@ -6588,6 +6588,12 @@ F: drivers/soc/fsl/qe/
F: include/soc/fsl/*qe*.h
F: include/soc/fsl/*ucc*.h
FREESCALE QEIC DRIVERS
M: Qiang Zhao <qiang.zhao@nxp.com>
L: linux-kernel@vger.kernel.org
S: Maintained
F: drivers/irqchip/irq-qeic.c
FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
M: Li Yang <leoyang.li@nxp.com>
L: netdev@vger.kernel.org

View File

@ -103,3 +103,4 @@ obj-$(CONFIG_MADERA_IRQ) += irq-madera.o
obj-$(CONFIG_LS1X_IRQ) += irq-ls1x.o
obj-$(CONFIG_TI_SCI_INTR_IRQCHIP) += irq-ti-sci-intr.o
obj-$(CONFIG_TI_SCI_INTA_IRQCHIP) += irq-ti-sci-inta.o
obj-$(CONFIG_QUICC_ENGINE) += irq-qeic.o

View File

@ -6,10 +6,11 @@
config NET_VENDOR_FREESCALE
bool "Freescale devices"
default y
depends on FSL_SOC || QUICC_ENGINE || CPM1 || CPM2 || PPC_MPC512x || \
M523x || M527x || M5272 || M528x || M520x || M532x || \
ARCH_MXC || ARCH_MXS || (PPC_MPC52xx && PPC_BESTCOMM) || \
ARCH_LAYERSCAPE || COMPILE_TEST
depends on FSL_SOC || (QUICC_ENGINE && PPC32) || CPM1 || CPM2 || \
PPC_MPC512x || M523x || M527x || M5272 || M528x || M520x || \
M532x || ARCH_MXC || ARCH_MXS || \
(PPC_MPC52xx && PPC_BESTCOMM) || ARCH_LAYERSCAPE || \
COMPILE_TEST
---help---
If you have a network (Ethernet) card belonging to this class, say Y.
@ -74,7 +75,7 @@ config FSL_XGMAC_MDIO
config UCC_GETH
tristate "Freescale QE Gigabit Ethernet"
depends on QUICC_ENGINE
depends on QUICC_ENGINE && FSL_SOC && PPC32
select FSL_PQ_MDIO
select PHYLIB
---help---