mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
3a187cff7a
LX2162 is LX2160 based SoC, it has same die as of LX2160 with different packaging. LX2162A support 64-bit 2.9GT/s DDR4 memory, i2c, micro-click module, microSD card, eMMC support, serial console, qspi nor flash, qsgmii, sgmii, 25g, 40g, 50g network interface, one usb 3.0 and serdes interface to support three PCIe gen3 interface. Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> [Fixed whitespace errors] Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com>
37 lines
900 B
Text
37 lines
900 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 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
|