]> git.sur5r.net Git - u-boot/blob - include/configs/igep0033.h
ARM: IGEP0033: Remove undef of CONFIG_CMD_MEMTEST
[u-boot] / include / configs / igep0033.h
1 /*
2  * Copyright (C) 2013, ISEE 2007 SL - http://www.isee.biz/
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation version 2.
7  *
8  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9  * kind, whether express or implied; without even the implied warranty
10  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  */
13
14 #ifndef __CONFIG_IGEP0033_H
15 #define __CONFIG_IGEP0033_H
16
17 #define CONFIG_AM33XX
18 #define CONFIG_OMAP
19 #define CONFIG_OMAP_COMMON
20
21 #include <asm/arch/omap.h>
22
23 /* Mach type */
24 #define MACH_TYPE_IGEP0033              4521    /* Until the next sync */
25 #define CONFIG_MACH_TYPE                MACH_TYPE_IGEP0033
26
27 /* Clock defines */
28 #define V_OSCK                          24000000  /* Clock output from T2 */
29 #define V_SCLK                          (V_OSCK)
30
31 /* DMA defines */
32 #define CONFIG_DMA_COHERENT
33 #define CONFIG_DMA_COHERENT_SIZE        (1 << 20)
34
35 #define CONFIG_ENV_SIZE                 (128 << 10)     /* 128 KiB */
36 #define CONFIG_SYS_MALLOC_LEN           (1024 << 10)
37 #define CONFIG_SYS_LONGHELP             /* undef to save memory */
38 #define CONFIG_SYS_HUSH_PARSER          /* use "hush" command parser */
39 #define CONFIG_SYS_PROMPT               "U-Boot# "
40 #define CONFIG_SYS_NO_FLASH
41
42 /* Display cpuinfo */
43 #define CONFIG_DISPLAY_CPUINFO
44
45 /* Commands to include */
46 #include <config_cmd_default.h>
47
48 #define CONFIG_CMD_ASKENV
49 #define CONFIG_CMD_BOOTZ
50 #define CONFIG_CMD_DHCP
51 #define CONFIG_CMD_ECHO
52 #define CONFIG_CMD_EXT4
53 #define CONFIG_CMD_FAT
54 #define CONFIG_CMD_FS_GENERIC
55 #define CONFIG_CMD_MMC
56 #define CONFIG_CMD_MTDPARTS
57 #define CONFIG_CMD_NAND
58 #define CONFIG_CMD_NET
59 #define CONFIG_CMD_PING
60 #define CONFIG_CMD_UBI
61 #define CONFIG_CMD_UBIFS
62
63 #define CONFIG_BOOTDELAY                1       /* negative for no autoboot */
64 #define CONFIG_ENV_VARS_UBOOT_CONFIG
65 #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
66 #define CONFIG_EXTRA_ENV_SETTINGS \
67         "loadaddr=0x80200000\0" \
68         "rdaddr=0x81000000\0" \
69         "bootfile=/boot/uImage\0" \
70         "console=ttyO0,115200n8\0" \
71         "optargs=\0" \
72         "mmcdev=0\0" \
73         "mmcroot=/dev/mmcblk0p2 rw\0" \
74         "mmcrootfstype=ext4 rootwait\0" \
75         "ramroot=/dev/ram0 rw ramdisk_size=65536 initrd=${rdaddr},64M\0" \
76         "ramrootfstype=ext2\0" \
77         "mmcargs=setenv bootargs console=${console} " \
78                 "${optargs} " \
79                 "root=${mmcroot} " \
80                 "rootfstype=${mmcrootfstype}\0" \
81         "bootenv=uEnv.txt\0" \
82         "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \
83         "importbootenv=echo Importing environment from mmc ...; " \
84                 "env import -t $loadaddr $filesize\0" \
85         "ramargs=setenv bootargs console=${console} " \
86                 "${optargs} " \
87                 "root=${ramroot} " \
88                 "rootfstype=${ramrootfstype}\0" \
89         "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \
90         "loaduimagefat=load mmc ${mmcdev} ${loadaddr} ${bootfile}\0" \
91         "loaduimage=load mmc ${mmcdev}:2 ${loadaddr} ${bootfile}\0" \
92         "mmcboot=echo Booting from mmc ...; " \
93                 "run mmcargs; " \
94                 "bootm ${loadaddr}\0" \
95         "ramboot=echo Booting from ramdisk ...; " \
96                 "run ramargs; " \
97                 "bootm ${loadaddr}\0" \
98
99 #define CONFIG_BOOTCOMMAND \
100         "mmc dev ${mmcdev}; if mmc rescan; then " \
101                 "echo SD/MMC found on device ${mmcdev};" \
102                 "if run loadbootenv; then " \
103                         "echo Loaded environment from ${bootenv};" \
104                         "run importbootenv;" \
105                 "fi;" \
106                 "if test -n $uenvcmd; then " \
107                         "echo Running uenvcmd ...;" \
108                         "run uenvcmd;" \
109                 "fi;" \
110                 "if run loaduimage; then " \
111                         "run mmcboot;" \
112                 "fi;" \
113         "fi;" \
114
115 /* Max number of command args */
116 #define CONFIG_SYS_MAXARGS              16
117
118 /* Console I/O Buffer Size */
119 #define CONFIG_SYS_CBSIZE               512
120
121 /* Print Buffer Size */
122 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE \
123                                         + sizeof(CONFIG_SYS_PROMPT) + 16)
124
125 /* Boot Argument Buffer Size */
126 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
127 #define CONFIG_SYS_LOAD_ADDR            0x81000000 /* Default load address */
128 #define CONFIG_SYS_HZ                   1000 /* 1ms clock */
129
130 /* Physical Memory Map */
131 #define CONFIG_NR_DRAM_BANKS            1               /*  1 bank of DRAM */
132 #define PHYS_DRAM_1                     0x80000000      /* DRAM Bank #1 */
133 #define CONFIG_MAX_RAM_BANK_SIZE        (1024 << 20)    /* 1GB */
134
135 #define CONFIG_SYS_SDRAM_BASE           PHYS_DRAM_1
136 #define CONFIG_SYS_INIT_SP_ADDR         (NON_SECURE_SRAM_END - \
137                                                 GENERATED_GBL_DATA_SIZE)
138 /* Platform/Board specific defs */
139 #define CONFIG_SYS_TIMERBASE            0x48040000      /* Use Timer2 */
140 #define CONFIG_SYS_PTV                  2       /* Divisor: 2^(PTV+1) => 8 */
141 #define CONFIG_SYS_HZ                   1000
142
143 /* NS16550 Configuration */
144 #define CONFIG_SYS_NS16550
145 #define CONFIG_SYS_NS16550_SERIAL
146 #define CONFIG_SYS_NS16550_REG_SIZE     (-4)
147 #define CONFIG_SYS_NS16550_CLK          (48000000)
148 #define CONFIG_SYS_NS16550_COM1         0x44e09000      /* UART0 */
149
150 #define CONFIG_SERIAL_MULTI
151 #define CONFIG_CONS_INDEX               1
152 #define CONFIG_BAUDRATE                 115200
153
154 /* CPU */
155 #define CONFIG_ARCH_CPU_INIT
156
157 #define CONFIG_ENV_OVERWRITE            1
158 #define CONFIG_SYS_CONSOLE_INFO_QUIET
159
160 /* MMC support */
161 #define CONFIG_MMC
162 #define CONFIG_GENERIC_MMC
163 #define CONFIG_OMAP_HSMMC
164 #define CONFIG_DOS_PARTITION
165
166 /* GPIO support */
167 #define CONFIG_OMAP_GPIO
168
169 /* Ethernet support */
170 #define CONFIG_DRIVER_TI_CPSW
171 #define CONFIG_MII
172 #define CONFIG_BOOTP_DEFAULT
173 #define CONFIG_BOOTP_DNS
174 #define CONFIG_BOOTP_DNS2
175 #define CONFIG_BOOTP_SEND_HOSTNAME
176 #define CONFIG_BOOTP_GATEWAY
177 #define CONFIG_BOOTP_SUBNETMASK
178 #define CONFIG_NET_RETRY_COUNT         10
179 #define CONFIG_NET_MULTI
180 #define CONFIG_PHYLIB
181 #define CONFIG_PHY_ADDR                 0
182 #define CONFIG_PHY_SMSC
183
184 /* NAND support */
185 #define CONFIG_NAND
186 #define CONFIG_NAND_OMAP_GPMC
187 #define GPMC_NAND_ECC_LP_x16_LAYOUT     1
188 #define CONFIG_SYS_NAND_BASE            (0x08000000)    /* phys address CS0 */
189 #define CONFIG_SYS_MAX_NAND_DEVICE      1
190 #define CONFIG_SYS_NAND_ONFI_DETECTION  1
191 #define CONFIG_SYS_ENV_SECT_SIZE        (128 << 10)     /* 128 KiB */
192 #define CONFIG_ENV_IS_IN_NAND
193 #define CONFIG_ENV_OFFSET               0x260000 /* environment starts here */
194
195 #define CONFIG_MTD_PARTITIONS
196 #define CONFIG_MTD_DEVICE
197 #define CONFIG_RBTREE
198 #define CONFIG_LZO
199
200 #define MTDIDS_DEFAULT                  "nand0=nand"
201 #define MTDPARTS_DEFAULT                "mtdparts=nand:512k(SPL),"\
202                                         "1m(U-Boot),128k(U-Boot Env),"\
203                                         "5m(Kernel),-(File System)"
204
205 /* Unsupported features */
206 #undef CONFIG_USE_IRQ
207
208 /* Defines for SPL */
209 #define CONFIG_SPL
210 #define CONFIG_SPL_FRAMEWORK
211 /*
212  * Place the image at the start of the ROM defined image space.
213  * We limit our size to the ROM-defined downloaded image area, and use the
214  * rest of the space for stack.
215  */
216 #define CONFIG_SPL_TEXT_BASE            0x402F0400
217 #define CONFIG_SPL_MAX_SIZE             (0x4030C000 - CONFIG_SPL_TEXT_BASE)
218 #define CONFIG_SPL_STACK                CONFIG_SYS_INIT_SP_ADDR
219
220 #define CONFIG_SPL_BSS_START_ADDR       0x80000000
221 #define CONFIG_SPL_BSS_MAX_SIZE         0x80000         /* 512 KB */
222
223 #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x300 /* address 0x60000 */
224 #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS      0x200 /* 256 KB */
225 #define CONFIG_SYS_MMC_SD_FAT_BOOT_PARTITION    1
226 #define CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME        "u-boot.img"
227 #define CONFIG_SPL_MMC_SUPPORT
228 #define CONFIG_SPL_FAT_SUPPORT
229 #define CONFIG_SPL_LIBCOMMON_SUPPORT
230 #define CONFIG_SPL_LIBDISK_SUPPORT
231 #define CONFIG_SPL_LIBGENERIC_SUPPORT
232 #define CONFIG_SPL_SERIAL_SUPPORT
233 #define CONFIG_SPL_GPIO_SUPPORT
234 #define CONFIG_SPL_YMODEM_SUPPORT
235 #define CONFIG_SPL_LDSCRIPT             "$(CPUDIR)/am33xx/u-boot-spl.lds"
236
237 #define CONFIG_SPL_BOARD_INIT
238 #define CONFIG_SPL_NAND_AM33XX_BCH
239 #define CONFIG_SPL_NAND_SUPPORT
240 #define CONFIG_SPL_NAND_BASE
241 #define CONFIG_SPL_NAND_DRIVERS
242 #define CONFIG_SPL_NAND_ECC
243 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
244 #define CONFIG_SYS_NAND_PAGE_COUNT      (CONFIG_SYS_NAND_BLOCK_SIZE / \
245                                          CONFIG_SYS_NAND_PAGE_SIZE)
246 #define CONFIG_SYS_NAND_PAGE_SIZE       2048
247 #define CONFIG_SYS_NAND_OOBSIZE         64
248 #define CONFIG_SYS_NAND_BLOCK_SIZE      (128*1024)
249 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   NAND_LARGE_BADBLOCK_POS
250 #define CONFIG_SYS_NAND_ECCPOS          { 2, 3, 4, 5, 6, 7, 8, 9, \
251                                          10, 11, 12, 13, 14, 15, 16, 17, \
252                                          18, 19, 20, 21, 22, 23, 24, 25, \
253                                          26, 27, 28, 29, 30, 31, 32, 33, \
254                                          34, 35, 36, 37, 38, 39, 40, 41, \
255                                          42, 43, 44, 45, 46, 47, 48, 49, \
256                                          50, 51, 52, 53, 54, 55, 56, 57, }
257
258 #define CONFIG_SYS_NAND_ECCSIZE         512
259 #define CONFIG_SYS_NAND_ECCBYTES        14
260
261 #define CONFIG_SYS_NAND_ECCSTEPS        4
262 #define CONFIG_SYS_NAND_ECCTOTAL        (CONFIG_SYS_NAND_ECCBYTES * \
263                                                 CONFIG_SYS_NAND_ECCSTEPS)
264
265 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
266
267 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x80000
268
269 /*
270  * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
271  * 64 bytes before this address should be set aside for u-boot.img's
272  * header. That is 0x800FFFC0--0x80100000 should not be used for any
273  * other needs.
274  */
275 #define CONFIG_SYS_TEXT_BASE            0x80800000
276 #define CONFIG_SYS_SPL_MALLOC_START     0x80208000
277 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x100000
278
279 /*
280  * Since SPL did pll and ddr initialization for us,
281  * we don't need to do it twice.
282  */
283 #ifndef CONFIG_SPL_BUILD
284 #define CONFIG_SKIP_LOWLEVEL_INIT
285 #endif
286
287 #endif  /* ! __CONFIG_IGEP0033_H */