37d058ebbc209200fcd049636847424c3e1893ab
[platform/kernel/u-boot.git] / include / configs / am43xx_evm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * am43xx_evm.h
4  *
5  * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
6  */
7
8 #ifndef __CONFIG_AM43XX_EVM_H
9 #define __CONFIG_AM43XX_EVM_H
10
11 #define CONFIG_ARCH_CPU_INIT
12 #define CONFIG_MAX_RAM_BANK_SIZE        (1024 << 21)    /* 2GB */
13 #define CONFIG_SYS_TIMERBASE            0x48040000      /* Use Timer2 */
14
15 #include <asm/arch/omap.h>
16
17 /* NS16550 Configuration */
18 #define CONFIG_SYS_NS16550_CLK          48000000
19 #if !defined(CONFIG_SPL_DM) || !defined(CONFIG_DM_SERIAL)
20 #define CONFIG_SYS_NS16550_REG_SIZE    (-4)
21 #define CONFIG_SYS_NS16550_SERIAL
22 #endif
23
24 /* I2C Configuration */
25 #define CONFIG_ENV_EEPROM_IS_ON_I2C
26 #define CONFIG_SYS_I2C_EEPROM_ADDR      0x50    /* Main EEPROM */
27 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN  2
28
29 /* Power */
30 #ifndef CONFIG_DM_I2C
31 #define CONFIG_POWER
32 #define CONFIG_POWER_I2C
33 #endif
34 #define CONFIG_POWER_TPS65218
35 #define CONFIG_POWER_TPS62362
36
37 /* SPL defines. */
38 #define CONFIG_SPL_TEXT_BASE            CONFIG_ISW_ENTRY_ADDR
39 #define CONFIG_SYS_SPL_ARGS_ADDR        (CONFIG_SYS_SDRAM_BASE + \
40                                          (128 << 20))
41
42 /* Enabling L2 Cache */
43 #define CONFIG_SYS_L2_PL310
44 #define CONFIG_SYS_PL310_BASE   0x48242000
45
46 /*
47  * Since SPL did pll and ddr initialization for us,
48  * we don't need to do it twice.
49  */
50 #if !defined(CONFIG_SPL_BUILD) && !defined(CONFIG_QSPI_BOOT)
51 #define CONFIG_SKIP_LOWLEVEL_INIT
52 #endif
53
54 /*
55  * When building U-Boot such that there is no previous loader
56  * we need to call board_early_init_f.  This is taken care of in
57  * s_init when we have SPL used.
58  */
59
60 /* Now bring in the rest of the common code. */
61 #include <configs/ti_armv7_omap.h>
62
63 /* Always 64 KiB env size */
64 #define CONFIG_ENV_SIZE                 (64 << 10)
65
66 /* Clock Defines */
67 #define V_OSCK                          24000000  /* Clock output from T2 */
68 #define V_SCLK                          (V_OSCK)
69
70 /* NS16550 Configuration */
71 #define CONFIG_SYS_NS16550_COM1         0x44e09000      /* Base EVM has UART0 */
72
73 /* SPL USB Support */
74
75 #if defined(CONFIG_SPL_USB_HOST_SUPPORT) || !defined(CONFIG_SPL_BUILD)
76 #define CONFIG_SYS_USB_FAT_BOOT_PARTITION               1
77 #define CONFIG_USB_XHCI_OMAP
78
79 #define CONFIG_AM437X_USB2PHY2_HOST
80 #endif
81
82 #if defined(CONFIG_SPL_BUILD) && !defined(CONFIG_SPL_USB_ETHER)
83 #undef CONFIG_USB_DWC3_PHY_OMAP
84 #undef CONFIG_USB_DWC3_OMAP
85 #undef CONFIG_USB_DWC3
86 #undef CONFIG_USB_DWC3_GADGET
87
88 #undef CONFIG_USB_GADGET_DOWNLOAD
89 #undef CONFIG_USB_GADGET_VBUS_DRAW
90 #undef CONFIG_USB_GADGET_MANUFACTURER
91 #undef CONFIG_USB_GADGET_VENDOR_NUM
92 #undef CONFIG_USB_GADGET_PRODUCT_NUM
93 #undef CONFIG_USB_GADGET_DUALSPEED
94 #endif
95
96 /*
97  * Disable MMC DM for SPL build and can be re-enabled after adding
98  * DM support in SPL
99  */
100 #ifdef CONFIG_SPL_BUILD
101 #undef CONFIG_TIMER
102 #endif
103
104 #ifndef CONFIG_SPL_BUILD
105 /* USB Device Firmware Update support */
106 #define DFUARGS \
107         "dfu_bufsiz=0x10000\0" \
108         DFU_ALT_INFO_MMC \
109         DFU_ALT_INFO_EMMC \
110         DFU_ALT_INFO_RAM \
111         DFU_ALT_INFO_QSPI_XIP
112 #else
113 #define DFUARGS
114 #endif
115
116 #ifdef CONFIG_QSPI_BOOT
117 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
118 #define CONFIG_ENV_SECT_SIZE           (64 << 10) /* 64 KB sectors */
119 #define CONFIG_ENV_OFFSET              0x110000
120 #define CONFIG_ENV_OFFSET_REDUND       0x120000
121 #endif
122
123 #ifndef CONFIG_SPL_BUILD
124 #include <environment/ti/dfu.h>
125 #include <environment/ti/mmc.h>
126
127 #define CONFIG_EXTRA_ENV_SETTINGS \
128         DEFAULT_LINUX_BOOT_ENV \
129         DEFAULT_MMC_TI_ARGS \
130         DEFAULT_FIT_TI_ARGS \
131         "fdtfile=undefined\0" \
132         "bootpart=0:2\0" \
133         "bootdir=/boot\0" \
134         "bootfile=zImage\0" \
135         "console=ttyO0,115200n8\0" \
136         "partitions=" \
137                 "uuid_disk=${uuid_gpt_disk};" \
138                 "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \
139         "optargs=\0" \
140         "usbroot=/dev/sda2 rw\0" \
141         "usbrootfstype=ext4 rootwait\0" \
142         "usbdev=0\0" \
143         "ramroot=/dev/ram0 rw\0" \
144         "ramrootfstype=ext2\0" \
145         "usbargs=setenv bootargs console=${console} " \
146                 "${optargs} " \
147                 "root=${usbroot} " \
148                 "rootfstype=${usbrootfstype}\0" \
149         "ramargs=setenv bootargs console=${console} " \
150                 "${optargs} " \
151                 "root=${ramroot} " \
152                 "rootfstype=${ramrootfstype}\0" \
153         "loadramdisk=load ${devtype} ${devnum} ${rdaddr} ramdisk.gz\0" \
154         "usbboot=" \
155                 "setenv devnum ${usbdev}; " \
156                 "setenv devtype usb; " \
157                 "usb start ${usbdev}; " \
158                 "if usb dev ${usbdev}; then " \
159                         "if run loadbootenv; then " \
160                                 "echo Loaded environment from ${bootenv};" \
161                                 "run importbootenv;" \
162                         "fi;" \
163                         "if test -n $uenvcmd; then " \
164                                 "echo Running uenvcmd ...;" \
165                                 "run uenvcmd;" \
166                         "fi;" \
167                         "if run loadimage; then " \
168                                 "run loadfdt; " \
169                                 "echo Booting from usb ${usbdev}...; " \
170                                 "run usbargs;" \
171                                 "bootz ${loadaddr} - ${fdtaddr}; " \
172                         "fi;" \
173                 "fi\0" \
174                 "fi;" \
175                 "usb stop ${usbdev};\0" \
176         "findfdt="\
177                 "if test $board_name = AM43EPOS; then " \
178                         "setenv fdtfile am43x-epos-evm.dtb; fi; " \
179                 "if test $board_name = AM43__GP; then " \
180                         "setenv fdtfile am437x-gp-evm.dtb; fi; " \
181                 "if test $board_name = AM43XXHS; then " \
182                         "setenv fdtfile am437x-gp-evm.dtb; fi; " \
183                 "if test $board_name = AM43__SK; then " \
184                         "setenv fdtfile am437x-sk-evm.dtb; fi; " \
185                 "if test $board_name = AM43_IDK; then " \
186                         "setenv fdtfile am437x-idk-evm.dtb; fi; " \
187                 "if test $fdtfile = undefined; then " \
188                         "echo WARNING: Could not determine device tree; fi; \0" \
189         NANDARGS \
190         NETARGS \
191         DFUARGS \
192
193 #define CONFIG_BOOTCOMMAND \
194         "if test ${boot_fit} -eq 1; then "      \
195                 "run update_to_fit;"    \
196         "fi;"   \
197         "run findfdt; " \
198         "run envboot;" \
199         "run mmcboot;" \
200         "run usbboot;" \
201         NANDBOOT \
202
203 #endif
204
205 #ifndef CONFIG_SPL_BUILD
206 /* CPSW Ethernet */
207 #define CONFIG_BOOTP_DEFAULT
208 #define CONFIG_BOOTP_DNS2
209 #define CONFIG_BOOTP_SEND_HOSTNAME
210 #define CONFIG_NET_RETRY_COUNT          10
211 #endif
212
213 #define PHY_ANEG_TIMEOUT        8000 /* PHY needs longer aneg time at 1G */
214
215 #define CONFIG_SYS_RX_ETH_BUFFER        64
216
217 /* NAND support */
218 #ifdef CONFIG_NAND
219 /* NAND: device related configs */
220 #define CONFIG_SYS_NAND_PAGE_SIZE       4096
221 #define CONFIG_SYS_NAND_OOBSIZE         224
222 #define CONFIG_SYS_NAND_BLOCK_SIZE      (256*1024)
223 #define CONFIG_SYS_NAND_PAGE_COUNT      (CONFIG_SYS_NAND_BLOCK_SIZE / \
224                                          CONFIG_SYS_NAND_PAGE_SIZE)
225 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
226 /* NAND: driver related configs */
227 #define CONFIG_SYS_NAND_ONFI_DETECTION
228 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_BCH16_CODE_HW
229 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   NAND_LARGE_BADBLOCK_POS
230 #define CONFIG_SYS_NAND_ECCPOS  { 2, 3, 4, 5, 6, 7, 8, 9, \
231                                 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, \
232                                 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, \
233                                 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, \
234                                 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, \
235                                 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, \
236                                 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, \
237                                 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, \
238                                 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, \
239                                 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, \
240                         100, 101, 102, 103, 104, 105, 106, 107, 108, 109, \
241                         110, 111, 112, 113, 114, 115, 116, 117, 118, 119, \
242                         120, 121, 122, 123, 124, 125, 126, 127, 128, 129, \
243                         130, 131, 132, 133, 134, 135, 136, 137, 138, 139, \
244                         140, 141, 142, 143, 144, 145, 146, 147, 148, 149, \
245                         150, 151, 152, 153, 154, 155, 156, 157, 158, 159, \
246                         160, 161, 162, 163, 164, 165, 166, 167, 168, 169, \
247                         170, 171, 172, 173, 174, 175, 176, 177, 178, 179, \
248                         180, 181, 182, 183, 184, 185, 186, 187, 188, 189, \
249                         190, 191, 192, 193, 194, 195, 196, 197, 198, 199, \
250                         200, 201, 202, 203, 204, 205, 206, 207, 208, 209, \
251                         }
252 #define CONFIG_SYS_NAND_ECCSIZE         512
253 #define CONFIG_SYS_NAND_ECCBYTES        26
254 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x00180000
255 /* NAND: SPL related configs */
256 /* NAND: SPL falcon mode configs */
257 #ifdef CONFIG_SPL_OS_BOOT
258 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00300000 /* kernel offset */
259 #endif
260 #define NANDARGS \
261         "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
262         "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
263         "nandargs=setenv bootargs console=${console} " \
264                 "${optargs} " \
265                 "root=${nandroot} " \
266                 "rootfstype=${nandrootfstype}\0" \
267         "nandroot=ubi0:rootfs rw ubi.mtd=NAND.file-system,4096\0" \
268         "nandrootfstype=ubifs rootwait=1\0" \
269         "nandboot=echo Booting from nand ...; " \
270                 "run nandargs; " \
271                 "nand read ${fdtaddr} NAND.u-boot-spl-os; " \
272                 "nand read ${loadaddr} NAND.kernel; " \
273                 "bootz ${loadaddr} - ${fdtaddr}\0"
274 #define NANDBOOT                        "run nandboot; "
275 #else /* !CONFIG_NAND */
276 #define NANDARGS
277 #define NANDBOOT
278 #endif /* CONFIG_NAND */
279
280 #if defined(CONFIG_TI_SECURE_DEVICE)
281 /* Avoid relocating onto firewalled area at end of DRAM */
282 #define CONFIG_PRAM (64 * 1024)
283 #endif /* CONFIG_TI_SECURE_DEVICE */
284
285 #endif  /* __CONFIG_AM43XX_EVM_H */