blob: 2cf651d3b3ee982b44ef79f9cec283ba032b4d47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#
# 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.
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
|