Merge branch 'master' of git://www.denx.de/git/u-boot-imx
[platform/kernel/u-boot.git] / include / configs / am3517_evm.h
1 /*
2  * am3517_evm.h - Default configuration for AM3517 EVM board.
3  *
4  * Author: Vaibhav Hiremath <hvaibhav@ti.com>
5  *
6  * Based on omap3_evm_config.h
7  *
8  * Copyright (C) 2010 Texas Instruments Incorporated
9  *
10  * SPDX-License-Identifier:     GPL-2.0+
11  */
12
13 #ifndef __CONFIG_H
14 #define __CONFIG_H
15
16 /* High Level Configuration Options */
17
18 #define CONFIG_OMAP
19
20 #define CONFIG_SYS_NO_FLASH
21
22 #define CONFIG_NR_DRAM_BANKS    2       /* CS1 may or may not be populated */
23
24 /* Common ARM Erratas */
25 #define CONFIG_ARM_ERRATA_454179
26 #define CONFIG_ARM_ERRATA_430973
27 #define CONFIG_ARM_ERRATA_621766
28
29 #define CONFIG_EMIF4    /* The chip has EMIF4 controller */
30
31 /*
32  * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
33  * 64 bytes before this address should be set aside for u-boot.img's
34  * header. That is 0x800FFFC0--0x80100000 should not be used for any
35  * other needs.
36  */
37 #define CONFIG_SYS_TEXT_BASE            0x80100000
38 #define CONFIG_SYS_SPL_MALLOC_START     0x80208000
39 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x100000
40
41 #include <asm/arch/cpu.h>               /* get chip and board defs */
42 #include <asm/arch/omap.h>
43
44 #define CONFIG_MISC_INIT_R
45 #define CONFIG_CMDLINE_TAG              /* enable passing of ATAGs */
46 #define CONFIG_SETUP_MEMORY_TAGS
47 #define CONFIG_INITRD_TAG
48 #define CONFIG_REVISION_TAG
49
50 /* Clock Defines */
51 #define V_OSCK                  26000000        /* Clock output from T2 */
52 #define V_SCLK                  (V_OSCK >> 1)
53
54 /* Size of malloc() pool */
55 #define CONFIG_SYS_MALLOC_LEN           (16 << 20)
56
57 /* Hardware drivers */
58
59 /* OMAP GPIO configuration */
60 #define CONFIG_OMAP_GPIO
61
62 /* NS16550 Configuration */
63 #define V_NS16550_CLK                   48000000        /* 48MHz (APLL96/2) */
64 #define CONFIG_SYS_NS16550_SERIAL
65 #define CONFIG_SYS_NS16550_REG_SIZE     (-4)
66 #define CONFIG_SYS_NS16550_CLK          V_NS16550_CLK
67
68 /* select serial console configuration */
69 #define CONFIG_CONS_INDEX               3
70 #define CONFIG_SYS_NS16550_COM3         OMAP34XX_UART3
71 #define CONFIG_SERIAL3                  3       /* UART3 on AM3517 EVM */
72
73 /* allow to overwrite serial and ethaddr */
74 #define CONFIG_ENV_OVERWRITE
75 #define CONFIG_BAUDRATE                 115200
76 #define CONFIG_SYS_BAUDRATE_TABLE       {4800, 9600, 19200, 38400, 57600,\
77                                         115200}
78
79 /*
80  * USB configuration
81  * Enable CONFIG_USB_MUSB_HOST for Host functionalities MSC, keyboard
82  * Enable CONFIG_USB_MUSB_GADGET for Device functionalities.
83  */
84 #define CONFIG_USB_MUSB_AM35X
85 #define CONFIG_USB_MUSB_PIO_ONLY
86
87 #ifdef CONFIG_USB_MUSB_AM35X
88
89 #ifdef CONFIG_USB_MUSB_HOST
90
91 #define CONGIG_CMD_STORAGE
92
93 #ifdef CONFIG_USB_KEYBOARD
94 #define CONFIG_SYS_USB_EVENT_POLL
95 #define CONFIG_PREBOOT "usb start"
96 #endif /* CONFIG_USB_KEYBOARD */
97
98 #endif /* CONFIG_USB_MUSB_HOST */
99
100 #ifdef CONFIG_USB_MUSB_GADGET
101 #define CONFIG_USB_ETHER
102 #define CONFIG_USB_ETH_RNDIS
103 #endif /* CONFIG_USB_MUSB_GADGET */
104
105 #endif /* CONFIG_USB_MUSB_AM35X */
106
107 /* commands to include */
108 #define CONFIG_CMD_NAND
109 #define CONFIG_CMD_MTDPARTS
110
111 /* I2C */
112 #define CONFIG_SYS_I2C
113 #define CONFIG_SYS_OMAP24_I2C_SPEED     100000
114 #define CONFIG_SYS_OMAP24_I2C_SLAVE     1
115 #define CONFIG_SYS_I2C_OMAP34XX
116
117 /* Ethernet */
118 #define CONFIG_DRIVER_TI_EMAC
119 #define CONFIG_DRIVER_TI_EMAC_USE_RMII
120 #define CONFIG_MII
121 #define CONFIG_BOOTP_DEFAULT
122 #define CONFIG_BOOTP_DNS
123 #define CONFIG_BOOTP_DNS2
124 #define CONFIG_BOOTP_SEND_HOSTNAME
125 #define CONFIG_NET_RETRY_COUNT          10
126
127 /* Board NAND Info. */
128 #ifdef CONFIG_NAND
129 #define CONFIG_NAND_OMAP_GPMC
130 #define CONFIG_NAND_OMAP_GPMC_PREFETCH
131 #define CONFIG_BCH
132 #define CONFIG_CMD_UBIFS                /* Read-only UBI volume operations */
133 #define CONFIG_RBTREE                   /* required by CONFIG_CMD_UBI */
134 #define CONFIG_LZO                      /* required by CONFIG_CMD_UBIFS */
135 #define CONFIG_SYS_NAND_ADDR            NAND_BASE       /* physical address */
136                                                         /* to access nand */
137 #define CONFIG_SYS_NAND_BASE            NAND_BASE       /* physical address */
138                                                         /* to access */
139                                                         /* nand at CS0 */
140 #define CONFIG_SYS_MAX_NAND_DEVICE      1               /* Max number of */
141                                                         /* NAND devices */
142 #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
143 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
144 #define CONFIG_SYS_NAND_PAGE_COUNT      64
145 #define CONFIG_SYS_NAND_PAGE_SIZE       2048
146 #define CONFIG_SYS_NAND_OOBSIZE         64
147 #define CONFIG_SYS_NAND_BLOCK_SIZE      (128 * 1024)
148 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   NAND_LARGE_BADBLOCK_POS
149 #define CONFIG_SYS_NAND_ECCPOS          { 2,  3,  4,  5,  6,  7,  8,  9, 10, \
150                                          11, 12, 13, 14, 16, 17, 18, 19, 20, \
151                                          21, 22, 23, 24, 25, 26, 27, 28, 30, \
152                                          31, 32, 33, 34, 35, 36, 37, 38, 39, \
153                                          40, 41, 42, 44, 45, 46, 47, 48, 49, \
154                                          50, 51, 52, 53, 54, 55, 56 }
155
156 #define CONFIG_SYS_NAND_ECCSIZE         512
157 #define CONFIG_SYS_NAND_ECCBYTES        13
158 #define CONFIG_NAND_OMAP_ECCSCHEME      OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
159 #define CONFIG_SYS_NAND_MAX_OOBFREE     2
160 #define CONFIG_SYS_NAND_MAX_ECCPOS      56
161 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
162 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x80000
163 #define CONFIG_MTD_PARTITIONS           /* required for UBI partition support */
164 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
165 /* NAND block size is 128 KiB.  Synchronize these values with
166  * corresponding Device Tree entries in Linux:
167  *  MLO(SPL)             4 * NAND_BLOCK_SIZE = 512 KiB  @ 0x000000
168  *  U-Boot              15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
169  *  U-Boot environment   2 * NAND_BLOCK_SIZE = 256 KiB  @ 0x260000
170  *  Kernel              64 * NAND_BLOCK_SIZE = 8 MiB    @ 0x2A0000
171  *  DTB                  4 * NAND_BLOCK_SIZE = 512 KiB  @ 0xAA0000
172  *  RootFS              Remaining Flash Space           @ 0xB20000
173  */
174 #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
175 #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:"       \
176         "512k(MLO),"                                    \
177         "1920k(u-boot),"                                \
178         "256k(u-boot-env),"                             \
179         "8m(kernel),"                                   \
180         "512k(dtb),"                                    \
181         "-(rootfs)"
182 #else
183 #define MTDIDS_DEFAULT
184 #define MTDPARTS_DEFAULT
185 #endif /* CONFIG_NAND */
186
187 /* Environment information */
188
189 #define CONFIG_BOOTFILE         "uImage"
190
191 #define CONFIG_EXTRA_ENV_SETTINGS \
192         "loadaddr=0x82000000\0" \
193         "console=ttyO2,115200n8\0" \
194         "fdtfile=am3517-evm.dtb\0" \
195         "fdtaddr=0x82C00000\0" \
196         "vram=16M\0" \
197         "bootenv=uEnv.txt\0" \
198         "cmdline=\0" \
199         "optargs=\0" \
200         "mtdids=" MTDIDS_DEFAULT "\0" \
201         "mtdparts=" MTDPARTS_DEFAULT "\0" \
202         "mmcdev=0\0" \
203         "mmcpart=1\0" \
204         "mmcroot=/dev/mmcblk0p2 rw\0" \
205         "mmcrootfstype=ext4 rootwait fixrtc\0" \
206         "mmcargs=setenv bootargs console=${console} " \
207                 "${mtdparts} " \
208                 "${optargs} " \
209                 "root=${mmcroot} " \
210                 "rootfstype=${mmcrootfstype} " \
211                 "${cmdline}\0" \
212         "nandargs=setenv bootargs console=${console} " \
213                 "${mtdparts} " \
214                 "${optargs} " \
215                 "root=ubi0:rootfs rw ubi.mtd=rootfs " \
216                 "rootfstype=ubifs rootwait " \
217                 "${cmdline}\0" \
218         "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\
219         "importbootenv=echo Importing environment from mmc ...; " \
220                 "env import -t ${loadaddr} ${filesize}\0" \
221         "bootscript=echo Running bootscript from mmc ...; " \
222                 "source ${loadaddr}\0" \
223         "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \
224         "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \
225         "mmcboot=echo Booting from mmc ...; " \
226                 "run mmcargs; " \
227                 "bootz ${loadaddr} - ${fdtaddr}\0" \
228         "nandboot=echo Booting from nand ...; " \
229                 "run nandargs; " \
230                 "nand read ${loadaddr} 2a0000 800000; " \
231                 "nand read ${fdtaddr} aa0000 80000; " \
232                 "bootm ${loadaddr} - ${fdtaddr}\0" \
233
234 #define CONFIG_BOOTCOMMAND \
235         "mmc dev ${mmcdev}; if mmc rescan; then " \
236                 "echo SD/MMC found on device $mmcdev; " \
237                 "if run loadbootenv; then " \
238                         "run importbootenv; " \
239                 "fi; " \
240                 "echo Checking if uenvcmd is set ...; " \
241                 "if test -n $uenvcmd; then " \
242                         "echo Running uenvcmd ...; " \
243                         "run uenvcmd; " \
244                 "fi; " \
245                 "echo Running default loadimage ...; " \
246                 "setenv bootfile zImage; " \
247                 "if run loadimage; then " \
248                         "run loadfdt; " \
249                         "run mmcboot; " \
250                 "fi; " \
251         "else run nandboot; fi"
252
253 /* Miscellaneous configurable options */
254 #define CONFIG_AUTO_COMPLETE
255 #define CONFIG_CMDLINE_EDITING
256 #define CONFIG_SYS_LONGHELP
257
258 /* We set the max number of command args high to avoid HUSH bugs. */
259 #define CONFIG_SYS_MAXARGS              64
260
261 /* Console I/O Buffer Size */
262 #define CONFIG_SYS_CBSIZE               512
263 /* Print Buffer Size */
264 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE \
265                                         + sizeof(CONFIG_SYS_PROMPT) + 16)
266 /* Boot Argument Buffer Size */
267 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
268
269 /* memtest works on */
270 #define CONFIG_SYS_MEMTEST_START        (OMAP34XX_SDRC_CS0)
271 #define CONFIG_SYS_MEMTEST_END          (OMAP34XX_SDRC_CS0 + \
272                                         0x01F00000) /* 31MB */
273
274 #define CONFIG_SYS_LOAD_ADDR            (OMAP34XX_SDRC_CS0) /* default load */
275                                                                 /* address */
276
277 /*
278  * AM3517 has 12 GP timers, they can be driven by the system clock
279  * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
280  * This rate is divided by a local divisor.
281  */
282 #define CONFIG_SYS_TIMERBASE            OMAP34XX_GPT2
283 #define CONFIG_SYS_PTV                  2       /* Divisor: 2^(PTV+1) => 8 */
284
285 /* Physical Memory Map */
286 #define PHYS_SDRAM_1                    OMAP34XX_SDRC_CS0
287 #define PHYS_SDRAM_2                    OMAP34XX_SDRC_CS1
288 #define CONFIG_SYS_CS0_SIZE             (256 * 1024 * 1024)
289 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
290 #define CONFIG_SYS_INIT_RAM_ADDR        0x4020f800
291 #define CONFIG_SYS_INIT_RAM_SIZE        0x800
292 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + \
293                                          CONFIG_SYS_INIT_RAM_SIZE - \
294                                          GENERATED_GBL_DATA_SIZE)
295
296 /* FLASH and environment organization */
297
298 /* **** PISMO SUPPORT *** */
299 #define CONFIG_SYS_MAX_FLASH_SECT       520     /* max number of sectors */
300                                                 /* on one chip */
301 #define CONFIG_SYS_MAX_FLASH_BANKS      2       /* max number of flash banks */
302 #define CONFIG_SYS_MONITOR_LEN          (256 << 10)     /* Reserve 2 sectors */
303
304 #if defined(CONFIG_NAND)
305 #define CONFIG_SYS_FLASH_BASE           NAND_BASE
306 #endif
307
308 /* Monitor at start of flash */
309 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
310
311 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
312 #define CONFIG_ENV_SIZE                 CONFIG_SYS_ENV_SECT_SIZE
313 #define SMNAND_ENV_OFFSET               0x260000 /* environment starts here */
314 #define CONFIG_ENV_OFFSET               SMNAND_ENV_OFFSET
315 #define CONFIG_ENV_ADDR                 SMNAND_ENV_OFFSET
316 #define CONFIG_ENV_IS_IN_NAND
317
318 /* Defines for SPL */
319 #define CONFIG_SPL_FRAMEWORK
320 #define CONFIG_SPL_BOARD_INIT
321 #define CONFIG_SPL_NAND_SIMPLE
322 #define CONFIG_SPL_TEXT_BASE            0x40200000
323 #define CONFIG_SPL_MAX_SIZE             (SRAM_SCRATCH_SPACE_ADDR - \
324                                          CONFIG_SPL_TEXT_BASE)
325
326 #define CONFIG_SPL_BSS_START_ADDR       0x80000000
327 #define CONFIG_SPL_BSS_MAX_SIZE         0x80000         /* 512 KB */
328
329 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION      1
330 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME         "u-boot.img"
331
332 #define CONFIG_SPL_NAND_BASE
333 #define CONFIG_SPL_NAND_DRIVERS
334 #define CONFIG_SPL_NAND_ECC
335 #define CONFIG_SPL_LDSCRIPT             "arch/arm/mach-omap2/u-boot-spl.lds"
336
337 #endif /* __CONFIG_H */