]>
Commit | Line | Data |
---|---|---|
2221cd12 HZ |
1 | /* |
2 | * Common configuration header file for all Keystone II EVM platforms | |
3 | * | |
4 | * (C) Copyright 2012-2014 | |
5 | * Texas Instruments Incorporated, <www.ti.com> | |
6 | * | |
7 | * SPDX-License-Identifier: GPL-2.0+ | |
8 | */ | |
9 | ||
10 | #ifndef __CONFIG_KS2_EVM_H | |
11 | #define __CONFIG_KS2_EVM_H | |
12 | ||
13 | #define CONFIG_SOC_KEYSTONE | |
14 | ||
15 | /* U-Boot Build Configuration */ | |
16 | #define CONFIG_SKIP_LOWLEVEL_INIT /* U-Boot is a 2nd stage loader */ | |
17 | #define CONFIG_SYS_NO_FLASH /* that is, no *NOR* flash */ | |
18 | #define CONFIG_SYS_CONSOLE_INFO_QUIET | |
19 | #define CONFIG_BOARD_EARLY_INIT_F | |
20 | #define CONFIG_SYS_THUMB_BUILD | |
21 | ||
22 | /* SoC Configuration */ | |
23 | #define CONFIG_ARMV7 | |
24 | #define CONFIG_ARCH_CPU_INIT | |
25 | #define CONFIG_SYS_ARCH_TIMER | |
26 | #define CONFIG_SYS_HZ 1000 | |
27 | #define CONFIG_SYS_TEXT_BASE 0x0c001000 | |
28 | #define CONFIG_SPL_TARGET "u-boot-spi.gph" | |
29 | #define CONFIG_SYS_DCACHE_OFF | |
30 | ||
31 | /* Memory Configuration */ | |
32 | #define CONFIG_NR_DRAM_BANKS 2 | |
33 | #define CONFIG_SYS_SDRAM_BASE 0x80000000 | |
34 | #define CONFIG_SYS_LPAE_SDRAM_BASE 0x800000000 | |
35 | #define CONFIG_MAX_RAM_BANK_SIZE (2 << 30) /* 2GB */ | |
36 | #define CONFIG_STACKSIZE (512 << 10) /* 512 KiB */ | |
37 | #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4 MiB */ | |
38 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - \ | |
39 | GENERATED_GBL_DATA_SIZE) | |
40 | ||
41 | /* SPL SPI Loader Configuration */ | |
42 | #define CONFIG_SPL_PAD_TO 65536 | |
43 | #define CONFIG_SPL_MAX_SIZE (CONFIG_SPL_PAD_TO - 8) | |
44 | #define CONFIG_SPL_BSS_START_ADDR (CONFIG_SPL_TEXT_BASE + \ | |
45 | CONFIG_SPL_MAX_SIZE) | |
46 | #define CONFIG_SPL_BSS_MAX_SIZE (32 * 1024) | |
47 | #define CONFIG_SYS_SPL_MALLOC_START (CONFIG_SPL_BSS_START_ADDR + \ | |
48 | CONFIG_SPL_BSS_MAX_SIZE) | |
49 | #define CONFIG_SYS_SPL_MALLOC_SIZE (32 * 1024) | |
50 | #define CONFIG_SPL_STACK_SIZE (8 * 1024) | |
51 | #define CONFIG_SPL_STACK (CONFIG_SYS_SPL_MALLOC_START + \ | |
52 | CONFIG_SYS_SPL_MALLOC_SIZE + \ | |
53 | CONFIG_SPL_STACK_SIZE - 4) | |
54 | #define CONFIG_SPL_LIBCOMMON_SUPPORT | |
55 | #define CONFIG_SPL_LIBGENERIC_SUPPORT | |
56 | #define CONFIG_SPL_SERIAL_SUPPORT | |
57 | #define CONFIG_SPL_SPI_FLASH_SUPPORT | |
58 | #define CONFIG_SPL_SPI_SUPPORT | |
59 | #define CONFIG_SPL_BOARD_INIT | |
60 | #define CONFIG_SPL_SPI_LOAD | |
2221cd12 HZ |
61 | #define CONFIG_SYS_SPI_U_BOOT_OFFS CONFIG_SPL_PAD_TO |
62 | #define CONFIG_SPL_FRAMEWORK | |
63 | ||
64 | /* UART Configuration */ | |
65 | #define CONFIG_SYS_NS16550 | |
66 | #define CONFIG_SYS_NS16550_SERIAL | |
67 | #define CONFIG_SYS_NS16550_MEM32 | |
68 | #define CONFIG_SYS_NS16550_REG_SIZE -4 | |
69 | #define CONFIG_SYS_NS16550_COM1 KS2_UART0_BASE | |
70 | #define CONFIG_SYS_NS16550_COM2 KS2_UART1_BASE | |
71 | #define CONFIG_SYS_NS16550_CLK clk_get_rate(KS2_CLK1_6) | |
72 | #define CONFIG_CONS_INDEX 1 | |
73 | #define CONFIG_BAUDRATE 115200 | |
74 | ||
75 | /* SPI Configuration */ | |
76 | #define CONFIG_SPI | |
77 | #define CONFIG_SPI_FLASH | |
78 | #define CONFIG_SPI_FLASH_STMICRO | |
79 | #define CONFIG_DAVINCI_SPI | |
80 | #define CONFIG_CMD_SPI | |
4dca7f0a | 81 | #define CONFIG_SYS_SPI_CLK clk_get_rate(KS2_CLK1_6) |
2221cd12 HZ |
82 | #define CONFIG_SF_DEFAULT_SPEED 30000000 |
83 | #define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED | |
84 | #define CONFIG_SYS_SPI0 | |
85 | #define CONFIG_SYS_SPI_BASE KS2_SPI0_BASE | |
86 | #define CONFIG_SYS_SPI0_NUM_CS 4 | |
87 | #define CONFIG_SYS_SPI1 | |
88 | #define CONFIG_SYS_SPI1_BASE KS2_SPI1_BASE | |
89 | #define CONFIG_SYS_SPI1_NUM_CS 4 | |
90 | #define CONFIG_SYS_SPI2 | |
91 | #define CONFIG_SYS_SPI2_BASE KS2_SPI2_BASE | |
92 | #define CONFIG_SYS_SPI2_NUM_CS 4 | |
93 | ||
94 | /* Network Configuration */ | |
95 | #define CONFIG_MII | |
96 | #define CONFIG_BOOTP_DEFAULT | |
97 | #define CONFIG_BOOTP_DNS | |
98 | #define CONFIG_BOOTP_DNS2 | |
99 | #define CONFIG_BOOTP_SEND_HOSTNAME | |
100 | #define CONFIG_NET_RETRY_COUNT 32 | |
101 | #define CONFIG_NET_MULTI | |
102 | #define CONFIG_GET_LINK_STATUS_ATTEMPTS 5 | |
103 | #define CONFIG_SYS_SGMII_REFCLK_MHZ 312 | |
104 | #define CONFIG_SYS_SGMII_LINERATE_MHZ 1250 | |
105 | #define CONFIG_SYS_SGMII_RATESCALE 2 | |
106 | ||
ef454717 KI |
107 | /* Keyston Navigator Configuration */ |
108 | #define CONFIG_KSNAV_QM_BASE_ADDRESS KS2_QM_BASE_ADDRESS | |
109 | #define CONFIG_KSNAV_QM_CONF_BASE KS2_QM_CONF_BASE | |
110 | #define CONFIG_KSNAV_QM_DESC_SETUP_BASE KS2_QM_DESC_SETUP_BASE | |
111 | #define CONFIG_KSNAV_QM_STATUS_RAM_BASE KS2_QM_STATUS_RAM_BASE | |
112 | #define CONFIG_KSNAV_QM_INTD_CONF_BASE KS2_QM_INTD_CONF_BASE | |
113 | #define CONFIG_KSNAV_QM_PDSP1_CMD_BASE KS2_QM_PDSP1_CMD_BASE | |
114 | #define CONFIG_KSNAV_QM_PDSP1_CTRL_BASE KS2_QM_PDSP1_CTRL_BASE | |
115 | #define CONFIG_KSNAV_QM_PDSP1_IRAM_BASE KS2_QM_PDSP1_IRAM_BASE | |
116 | #define CONFIG_KSNAV_QM_MANAGER_QUEUES_BASE KS2_QM_MANAGER_QUEUES_BASE | |
117 | #define CONFIG_KSNAV_QM_MANAGER_Q_PROXY_BASE KS2_QM_MANAGER_Q_PROXY_BASE | |
118 | #define CONFIG_KSNAV_QM_QUEUE_STATUS_BASE KS2_QM_QUEUE_STATUS_BASE | |
119 | #define CONFIG_KSNAV_QM_LINK_RAM_BASE KS2_QM_LINK_RAM_BASE | |
120 | #define CONFIG_KSNAV_QM_REGION_NUM KS2_QM_REGION_NUM | |
121 | #define CONFIG_KSNAV_QM_QPOOL_NUM KS2_QM_QPOOL_NUM | |
122 | ||
123 | /* NETCP pktdma */ | |
124 | #define CONFIG_KSNAV_NETCP_PDMA_CTRL_BASE KS2_NETCP_PDMA_CTRL_BASE | |
125 | #define CONFIG_KSNAV_NETCP_PDMA_TX_BASE KS2_NETCP_PDMA_TX_BASE | |
126 | #define CONFIG_KSNAV_NETCP_PDMA_TX_CH_NUM KS2_NETCP_PDMA_TX_CH_NUM | |
127 | #define CONFIG_KSNAV_NETCP_PDMA_RX_BASE KS2_NETCP_PDMA_RX_BASE | |
128 | #define CONFIG_KSNAV_NETCP_PDMA_RX_CH_NUM KS2_NETCP_PDMA_RX_CH_NUM | |
129 | #define CONFIG_KSNAV_NETCP_PDMA_SCHED_BASE KS2_NETCP_PDMA_SCHED_BASE | |
130 | #define CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_BASE KS2_NETCP_PDMA_RX_FLOW_BASE | |
131 | #define CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_NUM KS2_NETCP_PDMA_RX_FLOW_NUM | |
132 | #define CONFIG_KSNAV_NETCP_PDMA_RX_FREE_QUEUE KS2_NETCP_PDMA_RX_FREE_QUEUE | |
133 | #define CONFIG_KSNAV_NETCP_PDMA_RX_RCV_QUEUE KS2_NETCP_PDMA_RX_RCV_QUEUE | |
134 | #define CONFIG_KSNAV_NETCP_PDMA_TX_SND_QUEUE KS2_NETCP_PDMA_TX_SND_QUEUE | |
135 | ||
0935cac6 KI |
136 | /* Keystone net */ |
137 | #define CONFIG_KSNET_MAC_ID_BASE KS2_MAC_ID_BASE_ADDR | |
138 | #define CONFIG_KSNET_NETCP_BASE KS2_NETCP_BASE | |
139 | ||
2221cd12 HZ |
140 | /* AEMIF */ |
141 | #define CONFIG_TI_AEMIF | |
142 | #define CONFIG_AEMIF_CNTRL_BASE KS2_AEMIF_CNTRL_BASE | |
143 | ||
144 | /* I2C Configuration */ | |
145 | #define CONFIG_SYS_I2C | |
146 | #define CONFIG_SYS_I2C_DAVINCI | |
147 | #define CONFIG_SYS_DAVINCI_I2C_SPEED 100000 | |
148 | #define CONFIG_SYS_DAVINCI_I2C_SLAVE 0x10 /* SMBus host address */ | |
149 | #define CONFIG_SYS_DAVINCI_I2C_SPEED1 100000 | |
150 | #define CONFIG_SYS_DAVINCI_I2C_SLAVE1 0x10 /* SMBus host address */ | |
151 | #define CONFIG_SYS_DAVINCI_I2C_SPEED2 100000 | |
152 | #define CONFIG_SYS_DAVINCI_I2C_SLAVE2 0x10 /* SMBus host address */ | |
153 | #define I2C_BUS_MAX 3 | |
154 | ||
155 | /* EEPROM definitions */ | |
156 | #define CONFIG_SYS_I2C_MULTI_EEPROMS | |
157 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 | |
158 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 | |
159 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 6 | |
160 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 20 | |
161 | #define CONFIG_ENV_EEPROM_IS_ON_I2C | |
162 | ||
163 | /* NAND Configuration */ | |
164 | #define CONFIG_NAND_DAVINCI | |
165 | #define CONFIG_KEYSTONE_RBL_NAND | |
166 | #define CONFIG_KEYSTONE_NAND_MAX_RBL_SIZE CONFIG_ENV_OFFSET | |
167 | #define CONFIG_SYS_NAND_MASK_CLE 0x4000 | |
168 | #define CONFIG_SYS_NAND_MASK_ALE 0x2000 | |
169 | #define CONFIG_SYS_NAND_CS 2 | |
170 | #define CONFIG_SYS_NAND_USE_FLASH_BBT | |
171 | #define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST | |
172 | ||
173 | #define CONFIG_SYS_NAND_LARGEPAGE | |
174 | #define CONFIG_SYS_NAND_BASE_LIST { 0x30000000, } | |
175 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 | |
176 | #define CONFIG_SYS_NAND_MAX_CHIPS 1 | |
177 | #define CONFIG_SYS_NAND_NO_SUBPAGE_WRITE | |
178 | #define CONFIG_ENV_SIZE (256 << 10) /* 256 KiB */ | |
179 | #define CONFIG_ENV_IS_IN_NAND | |
180 | #define CONFIG_ENV_OFFSET 0x100000 | |
181 | #define CONFIG_MTD_PARTITIONS | |
182 | #define CONFIG_MTD_DEVICE | |
183 | #define CONFIG_RBTREE | |
184 | #define CONFIG_LZO | |
185 | #define MTDIDS_DEFAULT "nand0=davinci_nand.0" | |
186 | #define MTDPARTS_DEFAULT "mtdparts=davinci_nand.0:" \ | |
187 | "1024k(bootloader)ro,512k(params)ro," \ | |
188 | "-(ubifs)" | |
189 | ||
bc0e8d7c WK |
190 | /* USB Configuration */ |
191 | #define CONFIG_USB_XHCI | |
192 | #define CONFIG_USB_XHCI_KEYSTONE | |
193 | #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2 | |
194 | #define CONFIG_USB_STORAGE | |
195 | #define CONFIG_DOS_PARTITION | |
196 | #define CONFIG_EFI_PARTITION | |
197 | #define CONFIG_FS_FAT | |
198 | #define CONFIG_SYS_CACHELINE_SIZE 64 | |
199 | #define CONFIG_USB_SS_BASE KS2_USB_SS_BASE | |
200 | #define CONFIG_USB_HOST_XHCI_BASE KS2_USB_HOST_XHCI_BASE | |
201 | #define CONFIG_DEV_USB_PHY_BASE KS2_DEV_USB_PHY_BASE | |
202 | #define CONFIG_USB_PHY_CFG_BASE KS2_USB_PHY_CFG_BASE | |
203 | ||
2221cd12 HZ |
204 | /* U-Boot command configuration */ |
205 | #include <config_cmd_default.h> | |
206 | #define CONFIG_CMD_ASKENV | |
207 | #define CONFIG_CMD_DHCP | |
208 | #define CONFIG_CMD_I2C | |
209 | #define CONFIG_CMD_PING | |
210 | #define CONFIG_CMD_SAVES | |
211 | #define CONFIG_CMD_MTDPARTS | |
212 | #define CONFIG_CMD_NAND | |
213 | #define CONFIG_CMD_UBI | |
214 | #define CONFIG_CMD_UBIFS | |
215 | #define CONFIG_CMD_SF | |
216 | #define CONFIG_CMD_EEPROM | |
bc0e8d7c | 217 | #define CONFIG_CMD_USB |
2221cd12 HZ |
218 | |
219 | /* U-Boot general configuration */ | |
220 | #define CONFIG_SYS_GENERIC_BOARD | |
8347210a | 221 | #define CONFIG_MISC_INIT_R |
2221cd12 HZ |
222 | #define CONFIG_SYS_CBSIZE 1024 |
223 | #define CONFIG_SYS_PBSIZE 2048 | |
224 | #define CONFIG_SYS_MAXARGS 16 | |
225 | #define CONFIG_SYS_HUSH_PARSER | |
226 | #define CONFIG_SYS_LONGHELP | |
227 | #define CONFIG_CRC32_VERIFY | |
228 | #define CONFIG_MX_CYCLIC | |
229 | #define CONFIG_CMDLINE_EDITING | |
230 | #define CONFIG_VERSION_VARIABLE | |
231 | #define CONFIG_TIMESTAMP | |
232 | ||
233 | /* EDMA3 */ | |
234 | #define CONFIG_TI_EDMA3 | |
235 | ||
236 | #define CONFIG_BOOTDELAY 3 | |
237 | #define CONFIG_BOOTFILE "uImage" | |
238 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
239 | "boot=ramfs\0" \ | |
240 | "tftp_root=/\0" \ | |
241 | "nfs_root=/export\0" \ | |
242 | "mem_lpae=1\0" \ | |
243 | "mem_reserve=512M\0" \ | |
244 | "addr_fdt=0x87000000\0" \ | |
245 | "addr_kern=0x88000000\0" \ | |
246 | KS2_ADDR_MON \ | |
247 | "addr_uboot=0x87000000\0" \ | |
248 | "addr_fs=0x82000000\0" \ | |
249 | "addr_ubi=0x82000000\0" \ | |
250 | "addr_secdb_key=0xc000000\0" \ | |
251 | "fdt_high=0xffffffff\0" \ | |
252 | KS2_FDT_NAME \ | |
253 | "name_fs=arago-console-image.cpio.gz\0" \ | |
254 | "name_kern=uImage\0" \ | |
255 | KS2_NAME_MON \ | |
256 | NAME_UBOOT \ | |
257 | NAME_UBI \ | |
258 | "run_mon=mon_install ${addr_mon}\0" \ | |
259 | "run_kern=bootm ${addr_kern} - ${addr_fdt}\0" \ | |
260 | "init_net=run args_all args_net\0" \ | |
261 | "init_ubi=run args_all args_ubi; " \ | |
262 | "ubi part ubifs; ubifsmount boot;" \ | |
263 | "ubifsload ${addr_secdb_key} securedb.key.bin;\0" \ | |
264 | "get_fdt_net=dhcp ${addr_fdt} ${tftp_root}/${name_fdt}\0" \ | |
265 | "get_fdt_ubi=ubifsload ${addr_fdt} ${name_fdt}\0" \ | |
266 | "get_kern_net=dhcp ${addr_kern} ${tftp_root}/${name_kern}\0" \ | |
267 | "get_kern_ubi=ubifsload ${addr_kern} ${name_kern}\0" \ | |
268 | "get_mon_net=dhcp ${addr_mon} ${tftp_root}/${name_mon}\0" \ | |
269 | "get_mon_ubi=ubifsload ${addr_mon} ${name_mon}\0" \ | |
270 | "get_uboot_net=dhcp ${addr_uboot} ${tftp_root}/${name_uboot}\0" \ | |
271 | "burn_uboot_spi=sf probe; sf erase 0 0x100000; " \ | |
272 | "sf write ${addr_uboot} 0 ${filesize}\0" \ | |
273 | "burn_uboot_nand=nand erase 0 0x100000; " \ | |
274 | "nand write ${addr_uboot} 0 ${filesize}\0" \ | |
275 | "args_all=setenv bootargs console=ttyS0,115200n8 rootwait=1\0" \ | |
276 | KS2_ARGS_UBI \ | |
277 | "args_net=setenv bootargs ${bootargs} rootfstype=nfs " \ | |
278 | "root=/dev/nfs rw nfsroot=${serverip}:${nfs_root}," \ | |
279 | "${nfs_options} ip=dhcp\0" \ | |
280 | "nfs_options=v3,tcp,rsize=4096,wsize=4096\0" \ | |
281 | "get_fdt_ramfs=dhcp ${addr_fdt} ${tftp_root}/${name_fdt}\0" \ | |
282 | "get_kern_ramfs=dhcp ${addr_kern} ${tftp_root}/${name_kern}\0" \ | |
283 | "get_mon_ramfs=dhcp ${addr_mon} ${tftp_root}/${name_mon}\0" \ | |
284 | "get_fs_ramfs=dhcp ${addr_fs} ${tftp_root}/${name_fs}\0" \ | |
285 | "get_ubi_net=dhcp ${addr_ubi} ${tftp_root}/${name_ubi}\0" \ | |
286 | "burn_ubi=nand erase.part ubifs; " \ | |
287 | "nand write ${addr_ubi} ubifs ${filesize}\0" \ | |
288 | "init_ramfs=run args_all args_ramfs get_fs_ramfs\0" \ | |
289 | "args_ramfs=setenv bootargs ${bootargs} " \ | |
290 | "rdinit=/sbin/init rw root=/dev/ram0 " \ | |
291 | "initrd=0x802000000,9M\0" \ | |
292 | "no_post=1\0" \ | |
293 | "mtdparts=mtdparts=davinci_nand.0:" \ | |
294 | "1024k(bootloader)ro,512k(params)ro,-(ubifs)\0" | |
295 | ||
296 | #define CONFIG_BOOTCOMMAND \ | |
297 | "run init_${boot} get_fdt_${boot} get_mon_${boot} " \ | |
298 | "get_kern_${boot} run_mon run_kern" | |
299 | ||
300 | #define CONFIG_BOOTARGS \ | |
301 | ||
302 | /* Linux interfacing */ | |
303 | #define CONFIG_CMDLINE_TAG | |
304 | #define CONFIG_SETUP_MEMORY_TAGS | |
305 | #define CONFIG_OF_LIBFDT 1 | |
306 | #define CONFIG_OF_BOARD_SETUP | |
307 | #define CONFIG_SYS_BARGSIZE 1024 | |
308 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x08000000) | |
309 | #define CONFIG_LINUX_BOOT_PARAM_ADDR (CONFIG_SYS_SDRAM_BASE + 0x100) | |
310 | ||
311 | #define CONFIG_SUPPORT_RAW_INITRD | |
312 | ||
313 | /* we may include files below only after all above definitions */ | |
314 | #include <asm/arch/hardware.h> | |
315 | #include <asm/arch/clock.h> | |
316 | #define CONFIG_SYS_HZ_CLOCK clk_get_rate(KS2_CLK1_6) | |
317 | ||
318 | /* Maximum memory size for relocated U-boot at the end of the DDR3 memory | |
319 | which is NOT applicable for DDR ECC test */ | |
320 | #define CONFIG_MAX_UBOOT_MEM_SIZE (4 << 20) /* 4 MiB */ | |
321 | ||
95f74dad HZ |
322 | /* SGMII SerDes */ |
323 | #define CONFIG_KS2_SERDES_SGMII_BASE KS2_SGMII_SERDES_BASE | |
324 | #define CONFIG_KS2_SERDES_LANES_PER_SGMII KS2_LANES_PER_SGMII_SERDES | |
325 | ||
2221cd12 | 326 | #endif /* __CONFIG_KS2_EVM_H */ |