1if TARGET_LS1012ARDB
2
3config SYS_BOARD
4	default "ls1012ardb"
5
6config SYS_VENDOR
7	default "freescale"
8
9config SYS_SOC
10	default "fsl-layerscape"
11
12config SYS_CONFIG_NAME
13	default "ls1012ardb"
14
15config SYS_LS_PPA_FW_ADDR
16        hex "PPA Firmware Addr"
17        default 0x40400000
18
19if CHAIN_OF_TRUST
20config SYS_LS_PPA_ESBC_ADDR
21	hex "PPA Firmware HDR Addr"
22	default 0x40680000
23
24config SYS_LS_PFE_ESBC_ADDR
25	hex "PFE Firmware HDR Addr"
26	default 0x40640000
27
28config SYS_LS_PFE_ESBC_LENGTH
29	hex "length of PFE Firmware HDR"
30	default 0xc00
31endif
32
33if FSL_PFE
34
35config BOARD_SPECIFIC_OPTIONS # dummy
36	def_bool y
37	select PHYLIB
38	imply PHY_REALTEK
39
40config SYS_LS_PFE_FW_ADDR
41	hex "Flash address of PFE firmware"
42	default 0x40a00000
43
44config SYS_LS_PFE_FW_LENGTH
45	hex "length of PFE firmware"
46	default 0x300000
47
48config DDR_PFE_PHYS_BASEADDR
49	hex "PFE DDR physical base address"
50	default 0x03800000
51
52config DDR_PFE_BASEADDR
53	hex "PFE DDR base address"
54	default 0x83800000
55
56config PFE_EMAC1_PHY_ADDR
57	hex "PFE DDR base address"
58	default 0x2
59
60config PFE_EMAC2_PHY_ADDR
61	hex "PFE DDR base address"
62	default 0x1
63
64endif
65
66source "board/freescale/common/Kconfig"
67
68endif
69
70if TARGET_LS1012A2G5RDB
71
72config SYS_BOARD
73        default "ls1012ardb"
74
75config SYS_VENDOR
76        default "freescale"
77
78config SYS_SOC
79        default "fsl-layerscape"
80
81config SYS_CONFIG_NAME
82        default "ls1012a2g5rdb"
83
84config SYS_LS_PPA_FW_ADDR
85        hex "PPA Firmware Addr"
86        default 0x40400000
87
88if FSL_PFE
89
90config BOARD_SPECIFIC_OPTIONS # dummy
91	def_bool y
92	select PHYLIB
93	imply PHYLIB_10G
94	imply PHY_AQUANTIA
95
96config SYS_LS_PFE_FW_ADDR
97	hex "Flash address of PFE firmware"
98	default 0x40a00000
99
100config SYS_LS_PFE_FW_LENGTH
101	hex "length of PFE firmware"
102	default 0x300000
103
104config DDR_PFE_PHYS_BASEADDR
105	hex "PFE DDR physical base address"
106	default 0x03800000
107
108config DDR_PFE_BASEADDR
109	hex "PFE DDR base address"
110	default 0x83800000
111
112config PFE_EMAC1_PHY_ADDR
113	hex "PFE DDR base address"
114	default 0x2
115
116config PFE_EMAC2_PHY_ADDR
117	hex "PFE DDR base address"
118	default 0x1
119
120endif
121
122source "board/freescale/common/Kconfig"
123
124endif
125