]> git.ipfire.org Git - thirdparty/u-boot.git/blob - include/configs/am3517_evm.h
Merge tag 'u-boot-rockchip-20190809' of https://gitlab.denx.de/u-boot/custodians...
[thirdparty/u-boot.git] / include / configs / am3517_evm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3 * am3517_evm.h - Default configuration for AM3517 EVM board.
4 *
5 * Author: Vaibhav Hiremath <hvaibhav@ti.com>
6 *
7 * Based on omap3_evm_config.h
8 *
9 * Copyright (C) 2010 Texas Instruments Incorporated
10 */
11
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14
15 #include <configs/ti_omap3_common.h>
16
17 #define CONFIG_REVISION_TAG
18
19 /* Hardware drivers */
20
21 /* allow to overwrite serial and ethaddr */
22 #define CONFIG_ENV_OVERWRITE
23
24 /*
25 * USB configuration
26 * Enable CONFIG_USB_MUSB_HOST for Host functionalities MSC, keyboard
27 * Enable CONFIG_USB_MUSB_GADGET for Device functionalities.
28 */
29
30 #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 57
31
32 /* I2C */
33
34 /* Ethernet */
35 #define CONFIG_DRIVER_TI_EMAC_USE_RMII
36 #define CONFIG_BOOTP_DEFAULT
37 #define CONFIG_BOOTP_DNS2
38 #define CONFIG_BOOTP_SEND_HOSTNAME
39 #define CONFIG_NET_RETRY_COUNT 10
40
41 /* Board NAND Info. */
42 #ifdef CONFIG_NAND
43 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
44 #define CONFIG_SYS_NAND_PAGE_COUNT 64
45 #define CONFIG_SYS_NAND_PAGE_SIZE 2048
46 #define CONFIG_SYS_NAND_OOBSIZE 64
47 #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
48 #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
49 #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, 10, \
50 11, 12, 13, 14, 16, 17, 18, 19, 20, \
51 21, 22, 23, 24, 25, 26, 27, 28, 30, \
52 31, 32, 33, 34, 35, 36, 37, 38, 39, \
53 40, 41, 42, 44, 45, 46, 47, 48, 49, \
54 50, 51, 52, 53, 54, 55, 56 }
55
56 #define CONFIG_SYS_NAND_ECCSIZE 512
57 #define CONFIG_SYS_NAND_ECCBYTES 13
58 #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW_DETECTION_SW
59 #define CONFIG_SYS_NAND_MAX_OOBFREE 2
60 #define CONFIG_SYS_NAND_MAX_ECCPOS 56
61 #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
62 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
63 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x2a0000
64 /* NAND block size is 128 KiB. Synchronize these values with
65 * corresponding Device Tree entries in Linux:
66 * MLO(SPL) 4 * NAND_BLOCK_SIZE = 512 KiB @ 0x000000
67 * U-Boot 15 * NAND_BLOCK_SIZE = 1920 KiB @ 0x080000
68 * U-Boot environment 2 * NAND_BLOCK_SIZE = 256 KiB @ 0x260000
69 * Kernel 64 * NAND_BLOCK_SIZE = 8 MiB @ 0x2A0000
70 * DTB 4 * NAND_BLOCK_SIZE = 512 KiB @ 0xAA0000
71 * RootFS Remaining Flash Space @ 0xB20000
72 */
73 #endif /* CONFIG_NAND */
74
75 /* Environment information */
76
77 #define CONFIG_BOOTFILE "uImage"
78
79 #define CONFIG_EXTRA_ENV_SETTINGS \
80 "loadaddr=0x82000000\0" \
81 "console=ttyS2,115200n8\0" \
82 "fdtfile=am3517-evm.dtb\0" \
83 "fdtaddr=0x82C00000\0" \
84 "vram=16M\0" \
85 "bootenv=uEnv.txt\0" \
86 "cmdline=\0" \
87 "optargs=\0" \
88 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
89 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
90 "mmcdev=0\0" \
91 "mmcpart=1\0" \
92 "mmcroot=/dev/mmcblk0p2 rw\0" \
93 "mmcrootfstype=ext4 rootwait fixrtc\0" \
94 "mmcargs=setenv bootargs console=${console} " \
95 "${mtdparts} " \
96 "${optargs} " \
97 "root=${mmcroot} " \
98 "rootfstype=${mmcrootfstype} " \
99 "${cmdline}\0" \
100 "nandargs=setenv bootargs console=${console} " \
101 "${mtdparts} " \
102 "${optargs} " \
103 "root=ubi0:rootfs rw ubi.mtd=rootfs " \
104 "rootfstype=ubifs rootwait " \
105 "${cmdline}\0" \
106 "loadbootenv=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootenv}\0"\
107 "importbootenv=echo Importing environment from mmc ...; " \
108 "env import -t ${loadaddr} ${filesize}\0" \
109 "bootscript=echo Running bootscript from mmc ...; " \
110 "source ${loadaddr}\0" \
111 "loadimage=fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${bootfile}\0" \
112 "loadfdt=fatload mmc ${mmcdev}:${mmcpart} ${fdtaddr} ${fdtfile}\0" \
113 "mmcboot=echo Booting from mmc ...; " \
114 "run mmcargs; " \
115 "bootz ${loadaddr} - ${fdtaddr}\0" \
116 "nandboot=echo Booting from nand ...; " \
117 "run nandargs; " \
118 "nand read ${loadaddr} 2a0000 800000; " \
119 "nand read ${fdtaddr} aa0000 80000; " \
120 "bootm ${loadaddr} - ${fdtaddr}\0" \
121
122 #define CONFIG_BOOTCOMMAND \
123 "mmc dev ${mmcdev}; if mmc rescan; then " \
124 "echo SD/MMC found on device $mmcdev; " \
125 "if run loadbootenv; then " \
126 "run importbootenv; " \
127 "fi; " \
128 "echo Checking if uenvcmd is set ...; " \
129 "if test -n $uenvcmd; then " \
130 "echo Running uenvcmd ...; " \
131 "run uenvcmd; " \
132 "fi; " \
133 "echo Running default loadimage ...; " \
134 "setenv bootfile zImage; " \
135 "if run loadimage; then " \
136 "run loadfdt; " \
137 "run mmcboot; " \
138 "fi; " \
139 "else run nandboot; fi"
140
141 /* Miscellaneous configurable options */
142
143 /* We set the max number of command args high to avoid HUSH bugs. */
144 #define CONFIG_SYS_MAXARGS 64
145
146 /* Print Buffer Size */
147 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \
148 + sizeof(CONFIG_SYS_PROMPT) + 16)
149 /* Boot Argument Buffer Size */
150 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
151
152 /* memtest works on */
153 #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
154 #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
155 0x01F00000) /* 31MB */
156
157 /* Physical Memory Map */
158 #define CONFIG_SYS_CS0_SIZE (256 * 1024 * 1024)
159
160 /* FLASH and environment organization */
161
162 /* **** PISMO SUPPORT *** */
163 #define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */
164 /* on one chip */
165 #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */
166 #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 2 sectors */
167
168 #if defined(CONFIG_NAND)
169 #define CONFIG_SYS_FLASH_BASE NAND_BASE
170 #endif
171
172 /* Monitor at start of flash */
173 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
174
175 #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
176 #define CONFIG_ENV_ADDR 0x260000
177
178 /* Defines for SPL */
179
180 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
181 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img"
182
183 #define CONFIG_SPL_NAND_BASE
184 #define CONFIG_SPL_NAND_DRIVERS
185 #define CONFIG_SPL_NAND_ECC
186
187 #endif /* __CONFIG_H */