mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
1bad991205
Create drivers/net/fsl-mc/Kconfig and move fsl-mc specific configs from arch/arm/cpu/armv8/fsl-layerscape/Kconfig to this new Kconfig Signed-off-by: Florinel Iordache <florinel.iordache@nxp.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
25 lines
603 B
Text
25 lines
603 B
Text
#
|
|
# NXP Management Complex
|
|
#
|
|
|
|
menuconfig FSL_MC_ENET
|
|
bool "NXP Management Complex"
|
|
depends on ARCH_LS2080A || ARCH_LS1088A || ARCH_LX2160A
|
|
default y
|
|
select RESV_RAM
|
|
help
|
|
Enable Management Complex (MC) network
|
|
This is NXP Management Complex menuconfig
|
|
that contains all MC related config options
|
|
|
|
if FSL_MC_ENET
|
|
|
|
config SYS_MC_RSV_MEM_ALIGN
|
|
hex "Management Complex reserved memory alignment"
|
|
depends on RESV_RAM
|
|
default 0x20000000 if ARCH_LS2080A || ARCH_LS1088A || ARCH_LX2160A
|
|
help
|
|
Reserved memory needs to be aligned for MC to use. Default value
|
|
is 512MB.
|
|
|
|
endif # FSL_MC_ENET
|