1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2006-2008
5 * Richard Woodruff <r-woodruff2@ti.com>
6 * Syed Mohammed Khasim <x0khasim@ti.com>
9 * Frederik Kriewitz <frederik@kriewitz.eu>
11 * Configuration settings for the DevKit8000 board.
17 /* High Level Configuration Options */
20 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
21 * 64 bytes before this address should be set aside for u-boot.img's
22 * header. That is 0x800FFFC0--0x80100000 should not be used for any
26 #define CONFIG_SPL_BSS_START_ADDR 0x80000500 /* leave space for bootargs*/
27 #define CONFIG_SPL_BSS_MAX_SIZE 0x80000
29 #define CONFIG_SYS_SPL_MALLOC_START 0x80208000
30 #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 /* 1 MB */
32 /* Physical Memory Map */
34 #include <configs/ti_omap3_common.h>
36 /* Hardware drivers */
38 #define CONFIG_NET_RETRY_COUNT 20
39 #define CONFIG_DRIVER_DM9000 1
40 #define CONFIG_DM9000_BASE 0x2c000000
41 #define DM9000_IO CONFIG_DM9000_BASE
42 #define DM9000_DATA (CONFIG_DM9000_BASE + 0x400)
43 #define CONFIG_DM9000_USE_16BIT 1
44 #define CONFIG_DM9000_NO_SROM 1
45 #undef CONFIG_DM9000_DEBUG
49 /* BOOTP/DHCP options */
50 #define CONFIG_BOOTP_NISDOMAIN
51 #define CONFIG_BOOTP_BOOTFILESIZE
52 #define CONFIG_BOOTP_TIMEOFFSET
53 #undef CONFIG_BOOTP_VENDOREX
55 /* Environment information */
56 #define CONFIG_EXTRA_ENV_SETTINGS \
57 "loadaddr=0x82000000\0" \
58 "console=ttyO2,115200n8\0" \
61 "dvimode=1024x768MR-16@60\0" \
62 "defaultdisplay=dvi\0" \
63 "nfsopts=hard,tcp,rsize=65536,wsize=65536\0" \
66 "setenv bootargs console=${console} " \
68 "omapfb.mode=dvi:${dvimode} " \
69 "omapdss.def_disp=${defaultdisplay}\0" \
72 "setenv bootargs ${bootargs} " \
73 "root=/dev/mmcblk0p2 " \
78 "setenv bootargs ${bootargs} " \
79 "omapfb.mode=dvi:${dvimode} " \
80 "omapdss.def_disp=${defaultdisplay} " \
81 "root=/dev/mtdblock4 " \
86 "setenv bootargs ${bootargs} " \
88 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
89 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off " \
92 "dnsip2=${dnsip2}\0" \
93 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
94 "bootscript=echo Running bootscript from mmc ...; " \
95 "source ${loadaddr}\0" \
96 "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
97 "eraseenv=nand unlock 0x260000 0x20000; nand erase 0x260000 0x20000\0" \
98 "mmcboot=echo Booting from mmc ...; " \
100 "bootm ${loadaddr}\0" \
101 "nandboot=echo Booting from nand ...; " \
103 "nand read ${loadaddr} 280000 400000; " \
104 "bootm ${loadaddr}\0" \
105 "netboot=echo Booting from network ...; " \
106 "dhcp ${loadaddr}; " \
108 "bootm ${loadaddr}\0" \
109 "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
110 "if run loadbootscript; then " \
113 "if run loaduimage; then " \
115 "else run nandboot; " \
118 "else run nandboot; fi\0"
120 /* Boot Argument Buffer Size */
122 /* Defines for SPL */
124 /* NAND boot config */
125 #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
128 #define CONFIG_SYS_NAND_ECCSIZE 512
129 #define CONFIG_SYS_NAND_ECCBYTES 3
131 #define CONFIG_SYS_NAND_U_BOOT_SIZE 0x200000
133 /* SPL OS boot options */
134 #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
136 #undef CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR
137 #undef CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS
138 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x8 /* address 0x1000 */
139 #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 8 /* 4KB */
141 #undef CONFIG_SYS_SPL_ARGS_ADDR
142 #define CONFIG_SYS_SPL_ARGS_ADDR (PHYS_SDRAM_1 + 0x100)
144 #endif /* __CONFIG_H */