mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
adae2ed62d
When using DM_ETH, which should be the default now, we need to always have DM_MDIO and FSL_LS_MDIO enabled, so select them. Cc: Priyanka Jain <priyanka.jain@nxp.com> Cc: Rajesh Bhagat <rajesh.bhagat@nxp.com> Cc: Wasim Khan <wasim.khan@nxp.com> Cc: Udit Agarwal <udit.agarwal@nxp.com> Cc: Ashish Kumar <Ashish.Kumar@nxp.com> Cc: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com> Cc: Patrice Chotard <patrice.chotard@foss.st.com> Cc: Manish Tomar <Manish.Tomar@nxp.com> Signed-off-by: Tom Rini <trini@konsulko.com>
39 lines
936 B
Text
39 lines
936 B
Text
#
|
|
# NXP Management Complex
|
|
#
|
|
|
|
menuconfig FSL_MC_ENET
|
|
bool "NXP Management Complex"
|
|
depends on ARCH_LS2080A || ARCH_LS1088A || ARCH_LX2160A || ARCH_LX2162A
|
|
default y
|
|
select DM_MDIO
|
|
select FSL_LS_MDIO
|
|
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 || ARCH_LX2162A
|
|
help
|
|
Reserved memory needs to be aligned for MC to use. Default value
|
|
is 512MB.
|
|
|
|
config MC_DRAM_SPB_OFFSET
|
|
hex "Soft Parser SPB DRAM offset"
|
|
default 0x00F40000
|
|
help
|
|
Set the DRAM offset for Soft Parser Blob.
|
|
|
|
config MC_SPB_MAX_SIZE
|
|
hex "Soft Parser SPB maximum size"
|
|
default 0x00020000
|
|
help
|
|
Set the maximum size for Soft Parser Blob.
|
|
|
|
endif # FSL_MC_ENET
|