diff options
author | Ahmed Mansour <ahmed.mansour@nxp.com> | 2017-12-15 16:01:01 -0500 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2018-01-10 12:28:58 -0800 |
commit | 541d57663f12c33ed8e81143d87143e4f2c885ce (patch) | |
tree | c473ecbe3def0bb71604c77fae7effc8287487e5 /drivers/net | |
parent | 44262327aa288b111a41ce067bed235759db4c1c (diff) | |
download | u-boot-541d57663f12c33ed8e81143d87143e4f2c885ce.tar.gz u-boot-541d57663f12c33ed8e81143d87143e4f2c885ce.tar.bz2 u-boot-541d57663f12c33ed8e81143d87143e4f2c885ce.zip |
configs: Move SYS_DPAA_QBMAN to Kconfig
The CONFIG_SYS_DPAA_QBMAN define is used by DPAA1 freescale SOCs to
add device tree fixups that allow deep sleep in Linux. The define was
placed in header files included by a number of boards, but was not
explicitly documented in any of the Kconfigs. A description was added
to the drivers/networking menuconfig and default selection for
current SOCs that have this part
Signed-off-by: Ahmed Mansour <ahmed.mansour@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index d42d915f17..1986c7c46b 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -373,4 +373,28 @@ config FEC2_PHY_NORXERR The PHY does not have a RXERR line (RMII only). (so program the FEC to ignore it). +config SYS_DPAA_QBMAN + bool "Device tree fixup for QBMan on freescale SOCs" + depends on (ARM || PPC) && !SPL_BUILD + default y if ARCH_B4860 || \ + ARCH_B4420 || \ + ARCH_P1023 || \ + ARCH_P2041 || \ + ARCH_T1023 || \ + ARCH_T1024 || \ + ARCH_T1040 || \ + ARCH_T1042 || \ + ARCH_T2080 || \ + ARCH_T2081 || \ + ARCH_T4240 || \ + ARCH_T4160 || \ + ARCH_P4080 || \ + ARCH_P3041 || \ + ARCH_P5040 || \ + ARCH_P5020 || \ + ARCH_LS1043A || \ + ARCH_LS1046A + help + QBman fixups to allow deep sleep in DPAA 1 SOCs + endif # NETDEVICES |