1#
2# NXP Management Complex
3#
4
5menuconfig FSL_MC_ENET
6	bool "NXP Management Complex"
7	depends on ARCH_LS2080A || ARCH_LS1088A || ARCH_LX2160A || ARCH_LX2162A
8	default y
9	select DM_MDIO
10	select FSL_LS_MDIO
11	select RESV_RAM
12	help
13	  Enable Management Complex (MC) network
14	  This is NXP Management Complex menuconfig
15	  that contains all MC related config options
16
17if FSL_MC_ENET
18
19config SYS_MC_RSV_MEM_ALIGN
20	hex "Management Complex reserved memory alignment"
21	depends on RESV_RAM
22	default 0x20000000 if ARCH_LS2080A || ARCH_LS1088A || ARCH_LX2160A || ARCH_LX2162A
23	help
24	  Reserved memory needs to be aligned for MC to use. Default value
25	  is 512MB.
26
27config MC_DRAM_SPB_OFFSET
28	hex "Soft Parser SPB DRAM offset"
29	default 0x00F40000
30	help
31	  Set the DRAM offset for Soft Parser Blob.
32
33config MC_SPB_MAX_SIZE
34	hex "Soft Parser SPB maximum size"
35	default 0x00020000
36	help
37	  Set the maximum size for Soft Parser Blob.
38
39endif # FSL_MC_ENET
40