2 * Common configuration header file for all Keystone II EVM platforms
4 * (C) Copyright 2012-2014
5 * Texas Instruments Incorporated, <www.ti.com>
7 * SPDX-License-Identifier: GPL-2.0+
10 #ifndef __CONFIG_KS2_EVM_H
11 #define __CONFIG_KS2_EVM_H
13 #define CONFIG_SOC_KEYSTONE
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
22 /* SoC Configuration */
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
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)
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 + \
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
61 #define CONFIG_SYS_SPI_U_BOOT_OFFS CONFIG_SPL_PAD_TO
62 #define CONFIG_SPL_FRAMEWORK
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
75 /* SPI Configuration */
77 #define CONFIG_SPI_FLASH
78 #define CONFIG_SPI_FLASH_STMICRO
79 #define CONFIG_DAVINCI_SPI
80 #define CONFIG_CMD_SPI
81 #define CONFIG_SYS_SPI_CLK clk_get_rate(KS2_CLK1_6)
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
94 /* Network Configuration */
96 #define CONFIG_PHY_MARVELL
98 #define CONFIG_BOOTP_DEFAULT
99 #define CONFIG_BOOTP_DNS
100 #define CONFIG_BOOTP_DNS2
101 #define CONFIG_BOOTP_SEND_HOSTNAME
102 #define CONFIG_NET_RETRY_COUNT 32
103 #define CONFIG_NET_MULTI
104 #define CONFIG_GET_LINK_STATUS_ATTEMPTS 5
105 #define CONFIG_SYS_SGMII_REFCLK_MHZ 312
106 #define CONFIG_SYS_SGMII_LINERATE_MHZ 1250
107 #define CONFIG_SYS_SGMII_RATESCALE 2
109 /* Keyston Navigator Configuration */
110 #define CONFIG_KSNAV_QM_BASE_ADDRESS KS2_QM_BASE_ADDRESS
111 #define CONFIG_KSNAV_QM_CONF_BASE KS2_QM_CONF_BASE
112 #define CONFIG_KSNAV_QM_DESC_SETUP_BASE KS2_QM_DESC_SETUP_BASE
113 #define CONFIG_KSNAV_QM_STATUS_RAM_BASE KS2_QM_STATUS_RAM_BASE
114 #define CONFIG_KSNAV_QM_INTD_CONF_BASE KS2_QM_INTD_CONF_BASE
115 #define CONFIG_KSNAV_QM_PDSP1_CMD_BASE KS2_QM_PDSP1_CMD_BASE
116 #define CONFIG_KSNAV_QM_PDSP1_CTRL_BASE KS2_QM_PDSP1_CTRL_BASE
117 #define CONFIG_KSNAV_QM_PDSP1_IRAM_BASE KS2_QM_PDSP1_IRAM_BASE
118 #define CONFIG_KSNAV_QM_MANAGER_QUEUES_BASE KS2_QM_MANAGER_QUEUES_BASE
119 #define CONFIG_KSNAV_QM_MANAGER_Q_PROXY_BASE KS2_QM_MANAGER_Q_PROXY_BASE
120 #define CONFIG_KSNAV_QM_QUEUE_STATUS_BASE KS2_QM_QUEUE_STATUS_BASE
121 #define CONFIG_KSNAV_QM_LINK_RAM_BASE KS2_QM_LINK_RAM_BASE
122 #define CONFIG_KSNAV_QM_REGION_NUM KS2_QM_REGION_NUM
123 #define CONFIG_KSNAV_QM_QPOOL_NUM KS2_QM_QPOOL_NUM
126 #define CONFIG_KSNAV_NETCP_PDMA_CTRL_BASE KS2_NETCP_PDMA_CTRL_BASE
127 #define CONFIG_KSNAV_NETCP_PDMA_TX_BASE KS2_NETCP_PDMA_TX_BASE
128 #define CONFIG_KSNAV_NETCP_PDMA_TX_CH_NUM KS2_NETCP_PDMA_TX_CH_NUM
129 #define CONFIG_KSNAV_NETCP_PDMA_RX_BASE KS2_NETCP_PDMA_RX_BASE
130 #define CONFIG_KSNAV_NETCP_PDMA_RX_CH_NUM KS2_NETCP_PDMA_RX_CH_NUM
131 #define CONFIG_KSNAV_NETCP_PDMA_SCHED_BASE KS2_NETCP_PDMA_SCHED_BASE
132 #define CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_BASE KS2_NETCP_PDMA_RX_FLOW_BASE
133 #define CONFIG_KSNAV_NETCP_PDMA_RX_FLOW_NUM KS2_NETCP_PDMA_RX_FLOW_NUM
134 #define CONFIG_KSNAV_NETCP_PDMA_RX_FREE_QUEUE KS2_NETCP_PDMA_RX_FREE_QUEUE
135 #define CONFIG_KSNAV_NETCP_PDMA_RX_RCV_QUEUE KS2_NETCP_PDMA_RX_RCV_QUEUE
136 #define CONFIG_KSNAV_NETCP_PDMA_TX_SND_QUEUE KS2_NETCP_PDMA_TX_SND_QUEUE
139 #define CONFIG_KSNET_MAC_ID_BASE KS2_MAC_ID_BASE_ADDR
140 #define CONFIG_KSNET_NETCP_BASE KS2_NETCP_BASE
141 #define CONFIG_KSNET_SERDES_SGMII_BASE KS2_SGMII_SERDES_BASE
142 #define CONFIG_KSNET_SERDES_LANES_PER_SGMII KS2_LANES_PER_SGMII_SERDES
145 #define CONFIG_TI_AEMIF
146 #define CONFIG_AEMIF_CNTRL_BASE KS2_AEMIF_CNTRL_BASE
148 /* I2C Configuration */
149 #define CONFIG_SYS_I2C
150 #define CONFIG_SYS_I2C_DAVINCI
151 #define CONFIG_SYS_DAVINCI_I2C_SPEED 100000
152 #define CONFIG_SYS_DAVINCI_I2C_SLAVE 0x10 /* SMBus host address */
153 #define CONFIG_SYS_DAVINCI_I2C_SPEED1 100000
154 #define CONFIG_SYS_DAVINCI_I2C_SLAVE1 0x10 /* SMBus host address */
155 #define CONFIG_SYS_DAVINCI_I2C_SPEED2 100000
156 #define CONFIG_SYS_DAVINCI_I2C_SLAVE2 0x10 /* SMBus host address */
157 #define I2C_BUS_MAX 3
159 /* EEPROM definitions */
160 #define CONFIG_SYS_I2C_MULTI_EEPROMS
161 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
162 #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
163 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 6
164 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 20
165 #define CONFIG_ENV_EEPROM_IS_ON_I2C
167 /* NAND Configuration */
168 #define CONFIG_NAND_DAVINCI
169 #define CONFIG_KEYSTONE_RBL_NAND
170 #define CONFIG_KEYSTONE_NAND_MAX_RBL_SIZE CONFIG_ENV_OFFSET
171 #define CONFIG_SYS_NAND_MASK_CLE 0x4000
172 #define CONFIG_SYS_NAND_MASK_ALE 0x2000
173 #define CONFIG_SYS_NAND_CS 2
174 #define CONFIG_SYS_NAND_USE_FLASH_BBT
175 #define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
177 #define CONFIG_SYS_NAND_LARGEPAGE
178 #define CONFIG_SYS_NAND_BASE_LIST { 0x30000000, }
179 #define CONFIG_SYS_MAX_NAND_DEVICE 1
180 #define CONFIG_SYS_NAND_MAX_CHIPS 1
181 #define CONFIG_SYS_NAND_NO_SUBPAGE_WRITE
182 #define CONFIG_ENV_SIZE (256 << 10) /* 256 KiB */
183 #define CONFIG_ENV_IS_IN_NAND
184 #define CONFIG_ENV_OFFSET 0x100000
185 #define CONFIG_MTD_PARTITIONS
186 #define CONFIG_MTD_DEVICE
187 #define CONFIG_RBTREE
189 #define MTDIDS_DEFAULT "nand0=davinci_nand.0"
190 #define MTDPARTS_DEFAULT "mtdparts=davinci_nand.0:" \
191 "1024k(bootloader)ro,512k(params)ro," \
194 /* USB Configuration */
195 #define CONFIG_USB_XHCI
196 #define CONFIG_USB_XHCI_KEYSTONE
197 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2
198 #define CONFIG_USB_STORAGE
199 #define CONFIG_DOS_PARTITION
200 #define CONFIG_EFI_PARTITION
201 #define CONFIG_FS_FAT
202 #define CONFIG_SYS_CACHELINE_SIZE 64
203 #define CONFIG_USB_SS_BASE KS2_USB_SS_BASE
204 #define CONFIG_USB_HOST_XHCI_BASE KS2_USB_HOST_XHCI_BASE
205 #define CONFIG_DEV_USB_PHY_BASE KS2_DEV_USB_PHY_BASE
206 #define CONFIG_USB_PHY_CFG_BASE KS2_USB_PHY_CFG_BASE
208 /* U-Boot command configuration */
209 #include <config_cmd_default.h>
210 #define CONFIG_CMD_ASKENV
211 #define CONFIG_CMD_DHCP
212 #define CONFIG_CMD_I2C
213 #define CONFIG_CMD_PING
214 #define CONFIG_CMD_SAVES
215 #define CONFIG_CMD_MTDPARTS
216 #define CONFIG_CMD_NAND
217 #define CONFIG_CMD_UBI
218 #define CONFIG_CMD_UBIFS
219 #define CONFIG_CMD_SF
220 #define CONFIG_CMD_EEPROM
221 #define CONFIG_CMD_USB
223 /* U-Boot general configuration */
224 #define CONFIG_SYS_GENERIC_BOARD
225 #define CONFIG_MISC_INIT_R
226 #define CONFIG_SYS_CBSIZE 1024
227 #define CONFIG_SYS_PBSIZE 2048
228 #define CONFIG_SYS_MAXARGS 16
229 #define CONFIG_SYS_HUSH_PARSER
230 #define CONFIG_SYS_LONGHELP
231 #define CONFIG_CRC32_VERIFY
232 #define CONFIG_MX_CYCLIC
233 #define CONFIG_CMDLINE_EDITING
234 #define CONFIG_VERSION_VARIABLE
235 #define CONFIG_TIMESTAMP
238 #define CONFIG_TI_EDMA3
240 #define CONFIG_BOOTDELAY 3
241 #define CONFIG_BOOTFILE "uImage"
242 #define CONFIG_EXTRA_ENV_SETTINGS \
245 "nfs_root=/export\0" \
247 "mem_reserve=512M\0" \
248 "addr_fdt=0x87000000\0" \
249 "addr_kern=0x88000000\0" \
251 "addr_uboot=0x87000000\0" \
252 "addr_fs=0x82000000\0" \
253 "addr_ubi=0x82000000\0" \
254 "addr_secdb_key=0xc000000\0" \
255 "fdt_high=0xffffffff\0" \
257 "name_fs=arago-console-image.cpio.gz\0" \
258 "name_kern=uImage\0" \
262 "run_mon=mon_install ${addr_mon}\0" \
263 "run_kern=bootm ${addr_kern} - ${addr_fdt}\0" \
264 "init_net=run args_all args_net\0" \
265 "init_ubi=run args_all args_ubi; " \
266 "ubi part ubifs; ubifsmount boot;" \
267 "ubifsload ${addr_secdb_key} securedb.key.bin;\0" \
268 "get_fdt_net=dhcp ${addr_fdt} ${tftp_root}/${name_fdt}\0" \
269 "get_fdt_ubi=ubifsload ${addr_fdt} ${name_fdt}\0" \
270 "get_kern_net=dhcp ${addr_kern} ${tftp_root}/${name_kern}\0" \
271 "get_kern_ubi=ubifsload ${addr_kern} ${name_kern}\0" \
272 "get_mon_net=dhcp ${addr_mon} ${tftp_root}/${name_mon}\0" \
273 "get_mon_ubi=ubifsload ${addr_mon} ${name_mon}\0" \
274 "get_uboot_net=dhcp ${addr_uboot} ${tftp_root}/${name_uboot}\0" \
275 "burn_uboot_spi=sf probe; sf erase 0 0x100000; " \
276 "sf write ${addr_uboot} 0 ${filesize}\0" \
277 "burn_uboot_nand=nand erase 0 0x100000; " \
278 "nand write ${addr_uboot} 0 ${filesize}\0" \
279 "args_all=setenv bootargs console=ttyS0,115200n8 rootwait=1\0" \
281 "args_net=setenv bootargs ${bootargs} rootfstype=nfs " \
282 "root=/dev/nfs rw nfsroot=${serverip}:${nfs_root}," \
283 "${nfs_options} ip=dhcp\0" \
284 "nfs_options=v3,tcp,rsize=4096,wsize=4096\0" \
285 "get_fdt_ramfs=dhcp ${addr_fdt} ${tftp_root}/${name_fdt}\0" \
286 "get_kern_ramfs=dhcp ${addr_kern} ${tftp_root}/${name_kern}\0" \
287 "get_mon_ramfs=dhcp ${addr_mon} ${tftp_root}/${name_mon}\0" \
288 "get_fs_ramfs=dhcp ${addr_fs} ${tftp_root}/${name_fs}\0" \
289 "get_ubi_net=dhcp ${addr_ubi} ${tftp_root}/${name_ubi}\0" \
290 "burn_ubi=nand erase.part ubifs; " \
291 "nand write ${addr_ubi} ubifs ${filesize}\0" \
292 "init_ramfs=run args_all args_ramfs get_fs_ramfs\0" \
293 "args_ramfs=setenv bootargs ${bootargs} " \
294 "rdinit=/sbin/init rw root=/dev/ram0 " \
295 "initrd=0x802000000,9M\0" \
297 "mtdparts=mtdparts=davinci_nand.0:" \
298 "1024k(bootloader)ro,512k(params)ro,-(ubifs)\0"
300 #define CONFIG_BOOTCOMMAND \
301 "run init_${boot} get_fdt_${boot} get_mon_${boot} " \
302 "get_kern_${boot} run_mon run_kern"
304 #define CONFIG_BOOTARGS \
306 /* Linux interfacing */
307 #define CONFIG_CMDLINE_TAG
308 #define CONFIG_SETUP_MEMORY_TAGS
309 #define CONFIG_OF_LIBFDT 1
310 #define CONFIG_OF_BOARD_SETUP
311 #define CONFIG_SYS_BARGSIZE 1024
312 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x08000000)
313 #define CONFIG_LINUX_BOOT_PARAM_ADDR (CONFIG_SYS_SDRAM_BASE + 0x100)
315 #define CONFIG_SUPPORT_RAW_INITRD
317 /* we may include files below only after all above definitions */
318 #include <asm/arch/hardware.h>
319 #include <asm/arch/clock.h>
320 #define CONFIG_SYS_HZ_CLOCK clk_get_rate(KS2_CLK1_6)
322 /* Maximum memory size for relocated U-boot at the end of the DDR3 memory
323 which is NOT applicable for DDR ECC test */
324 #define CONFIG_MAX_UBOOT_MEM_SIZE (4 << 20) /* 4 MiB */
326 #endif /* __CONFIG_KS2_EVM_H */