]>
Commit | Line | Data |
---|---|---|
d275c40c AA |
1 | /* |
2 | * Configuration settings for the QUIPOS Cairo board. | |
3 | * | |
4 | * Copyright (C) DENX GmbH | |
5 | * | |
6 | * Author : | |
7 | * Albert ARIBAUD <[email protected]> | |
8 | * | |
9 | * Derived from EVM code by | |
10 | * Manikandan Pillai <[email protected]> | |
11 | * Itself derived from Beagle Board and 3430 SDP code by | |
12 | * Richard Woodruff <[email protected]> | |
13 | * Syed Mohammed Khasim <[email protected]> | |
14 | * | |
15 | * Also derived from include/configs/omap3_beagle.h | |
16 | * | |
17 | * SPDX-License-Identifier: GPL-2.0+ | |
18 | */ | |
19 | ||
20 | #ifndef __OMAP3_CAIRO_CONFIG_H | |
21 | #define __OMAP3_CAIRO_CONFIG_H | |
22 | ||
23 | #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ | |
24 | ||
25 | /* | |
26 | * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM | |
27 | * 64 bytes before this address should be set aside for u-boot.img's | |
28 | * header. That is 0x800FFFC0--0x80100000 should not be used for any | |
29 | * other needs. We use this rather than the inherited defines from | |
30 | * ti_armv7_common.h for backwards compatibility. | |
31 | */ | |
32 | #define CONFIG_SYS_TEXT_BASE 0x80100000 | |
33 | #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE | |
34 | #define CONFIG_SPL_BSS_START_ADDR 0x80000000 | |
35 | #define CONFIG_SPL_BSS_MAX_SIZE (512 << 10) /* 512 KB */ | |
36 | #define CONFIG_SYS_SPL_MALLOC_START 0x80208000 | |
37 | #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 | |
38 | ||
39 | #define CONFIG_NAND | |
40 | ||
41 | #include <configs/ti_omap3_common.h> | |
42 | ||
d275c40c AA |
43 | #define CONFIG_MISC_INIT_R |
44 | ||
45 | #define CONFIG_REVISION_TAG 1 | |
46 | #define CONFIG_ENV_OVERWRITE | |
47 | ||
48 | /* Enable Multi Bus support for I2C */ | |
49 | #define CONFIG_I2C_MULTI_BUS 1 | |
50 | ||
51 | /* Probe all devices */ | |
52 | #define CONFIG_SYS_I2C_NOPROBES { {0x0, 0x0} } | |
53 | ||
54 | #define CONFIG_NAND | |
55 | ||
d275c40c AA |
56 | /* |
57 | * TWL4030 | |
58 | */ | |
59 | #define CONFIG_TWL4030_LED 1 | |
60 | ||
61 | /* | |
62 | * Board NAND Info. | |
63 | */ | |
d275c40c AA |
64 | #define CONFIG_NAND_OMAP_GPMC |
65 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of NAND */ | |
66 | /* devices */ | |
d275c40c AA |
67 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
68 | "machid=ffffffff\0" \ | |
69 | "fdt_high=0x87000000\0" \ | |
70 | "baudrate=115200\0" \ | |
d275c40c AA |
71 | "fec_addr=00:50:C2:7E:90:F0\0" \ |
72 | "netmask=255.255.255.0\0" \ | |
73 | "ipaddr=192.168.2.9\0" \ | |
74 | "gateway=192.168.2.1\0" \ | |
75 | "serverip=192.168.2.10\0" \ | |
76 | "nfshost=192.168.2.10\0" \ | |
77 | "stdin=serial\0" \ | |
78 | "stdout=serial\0" \ | |
79 | "stderr=serial\0" \ | |
80 | "bootargs_mmc_ramdisk=mem=128M " \ | |
81 | "console=ttyO1,115200n8 " \ | |
82 | "root=/dev/ram0 rw " \ | |
83 | "initrd=0x81600000,16M " \ | |
84 | "mpurate=600 ramdisk_size=16384 omapfb.rotate=1 " \ | |
85 | "omapfb.rotate_type=1 omap_vout.vid1_static_vrfb_alloc=y\0" \ | |
86 | "mmcboot=mmc init; " \ | |
87 | "fatload mmc 0 0x80000000 uImage; " \ | |
88 | "fatload mmc 0 0x81600000 ramdisk.gz; " \ | |
89 | "setenv bootargs ${bootargs_mmc_ramdisk}; " \ | |
90 | "bootm 0x80000000\0" \ | |
91 | "bootargs_nfs=mem=99M console=ttyO0,115200n8 noinitrd rw ip=dhcp " \ | |
92 | "root=/dev/nfs " \ | |
93 | "nfsroot=192.168.2.10:/home/spiid/workdir/Quipos/rootfs,nolock " \ | |
94 | "mpurate=600 omapfb.rotate=1 omapfb.rotate_type=1 " \ | |
95 | "omap_vout.vid1_static_vrfb_alloc=y\0" \ | |
96 | "boot_nfs=run get_kernel; setenv bootargs ${bootargs_nfs}; " \ | |
97 | "bootm 0x80000000\0" \ | |
98 | "bootargs_nand=mem=128M console=ttyO1,115200n8 noinitrd " \ | |
99 | "root=/dev/mtdblock4 rw rootfstype=jffs2 mpurate=600 " \ | |
100 | "omap_vout.vid1_static_vrfb_alloc=y omapfb.rotate=1 " \ | |
101 | "omapfb.rotate_type=1\0" \ | |
102 | "boot_nand=nand read.i 0x80000000 280000 300000; setenv " \ | |
103 | "bootargs ${bootargs_nand}; bootm 0x80000000\0" \ | |
104 | "ledorange=i2c dev 1; i2c mw 60 00 00 1; i2c mw 60 14 FF 1; " \ | |
105 | "i2c mw 60 15 FF 1; i2c mw 60 16 FF 1; i2c mw 60 17 FF 1; " \ | |
106 | "i2c mw 60 09 10 1; i2c mw 60 06 10 1\0" \ | |
107 | "ledgreen=i2c dev 1; i2c mw 60 00 00 1; i2c mw 60 14 FF 1; " \ | |
108 | "i2c mw 60 15 FF 1; i2c mw 60 16 FF 1; i2c mw 60 17 FF 1; i2c " \ | |
109 | "mw 60 09 00 1; i2c mw 60 06 10 1\0" \ | |
110 | "ledoff=i2c dev 1; i2c mw 60 00 00 1; i2c mw 60 14 FF 1; " \ | |
111 | "i2c mw 60 15 FF 1; i2c mw 60 16 FF 1; i2c mw 60 17 FF 1; " \ | |
112 | "i2c mw 60 09 00 1; i2c mw 60 06 0 1\0" \ | |
113 | "ledred=i2c dev 1; i2c mw 60 00 00 1; i2c mw 60 14 FF 1; " \ | |
114 | "i2c mw 60 15 FF 1; i2c mw 60 16 FF 1; i2c mw 60 17 FF 1; " \ | |
115 | "i2c mw 60 09 10 1; i2c mw 60 06 0 1\0" \ | |
116 | "flash_xloader=mw.b 0x81600000 0xff 0x20000; " \ | |
117 | "nand erase 0 20000; " \ | |
118 | "fatload mmc 0 0x81600000 MLO; " \ | |
119 | "nandecc hw; " \ | |
120 | "nand write.i 0x81600000 0 20000;\0" \ | |
121 | "flash_uboot=mw.b 0x81600000 0xff 0x40000; " \ | |
122 | "nand erase 80000 40000; " \ | |
123 | "fatload mmc 0 0x81600000 u-boot.bin; " \ | |
124 | "nandecc sw; " \ | |
125 | "nand write.i 0x81600000 80000 40000;\0" \ | |
126 | "flash_kernel=mw.b 0x81600000 0xff 0x300000; " \ | |
127 | "nand erase 280000 300000; " \ | |
128 | "fatload mmc 0 0x81600000 uImage; " \ | |
129 | "nandecc sw; " \ | |
130 | "nand write.i 0x81600000 280000 300000;\0" \ | |
131 | "flash_rootfs=fatload mmc 0 0x81600000 rootfs.jffs2; " \ | |
132 | "nandecc sw; " \ | |
133 | "nand write.jffs2 0x680000 0xFF ${filesize}; " \ | |
134 | "nand erase 680000 ${filesize}; " \ | |
135 | "nand write.jffs2 81600000 680000 ${filesize};\0" \ | |
136 | "flash_scrub=nand scrub; " \ | |
137 | "run flash_xloader; " \ | |
138 | "run flash_uboot; " \ | |
139 | "run flash_kernel; " \ | |
140 | "run flash_rootfs;\0" \ | |
141 | "flash_all=run ledred; " \ | |
142 | "nand erase.chip; " \ | |
143 | "run ledorange; " \ | |
144 | "run flash_xloader; " \ | |
145 | "run flash_uboot; " \ | |
146 | "run flash_kernel; " \ | |
147 | "run flash_rootfs; " \ | |
148 | "run ledgreen; " \ | |
149 | "run boot_nand; \0" \ | |
150 | ||
151 | #define CONFIG_BOOTCOMMAND \ | |
152 | "if fatload mmc 0 0x81600000 MLO; then run flash_all; " \ | |
153 | "else run boot_nand; fi" | |
154 | ||
155 | /* | |
156 | * OMAP3 has 12 GP timers, they can be driven by the system clock | |
157 | * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK). | |
158 | * This rate is divided by a local divisor. | |
159 | */ | |
160 | #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */ | |
161 | ||
162 | /*----------------------------------------------------------------------- | |
163 | * FLASH and environment organization | |
164 | */ | |
165 | ||
166 | /* **** PISMO SUPPORT *** */ | |
167 | #if defined(CONFIG_CMD_NAND) | |
168 | #define CONFIG_SYS_FLASH_BASE NAND_BASE | |
169 | #endif | |
170 | ||
171 | /* Monitor at start of flash */ | |
172 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE | |
173 | #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP | |
174 | ||
d275c40c AA |
175 | #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ |
176 | #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */ | |
177 | #define SMNAND_ENV_OFFSET 0x260000 /* environment starts here */ | |
178 | ||
179 | #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ | |
180 | #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET | |
181 | #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET | |
182 | ||
183 | #define CONFIG_OMAP3_SPI | |
184 | ||
d275c40c AA |
185 | /* Defines for SPL */ |
186 | #define CONFIG_SPL_OMAP3_ID_NAND | |
187 | ||
188 | /* NAND boot config */ | |
189 | #define CONFIG_SYS_NAND_5_ADDR_CYCLE | |
190 | #define CONFIG_SYS_NAND_PAGE_COUNT 64 | |
191 | #define CONFIG_SYS_NAND_PAGE_SIZE 2048 | |
192 | #define CONFIG_SYS_NAND_OOBSIZE 64 | |
193 | #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024) | |
194 | #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0 | |
195 | #define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\ | |
196 | 10, 11, 12, 13} | |
197 | #define CONFIG_SYS_NAND_ECCSIZE 512 | |
198 | #define CONFIG_SYS_NAND_ECCBYTES 3 | |
199 | #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_HAM1_CODE_HW | |
200 | #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000 | |
201 | /* NAND: SPL falcon mode configs */ | |
202 | #ifdef CONFIG_SPL_OS_BOOT | |
d275c40c AA |
203 | #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000 |
204 | #define CONFIG_CMD_SPL_WRITE_SIZE 0x2000 | |
205 | #endif | |
206 | ||
207 | /* env defaults */ | |
208 | #define CONFIG_BOOTFILE "uImage" | |
209 | ||
210 | /* Override OMAP3 common serial console configuration from UART3 | |
211 | * to UART2. | |
212 | * | |
213 | * Attention: for UART2, special MUX settings (MUX_DEFAULT(), MCBSP3) | |
214 | * are needed and peripheral clocks for UART2 must be enabled in | |
215 | * function per_clocks_enable(). | |
216 | */ | |
217 | #undef CONFIG_CONS_INDEX | |
218 | #define CONFIG_CONS_INDEX 2 | |
219 | #ifdef CONFIG_SPL_BUILD | |
220 | #undef CONFIG_SYS_NS16550_COM3 | |
221 | #define CONFIG_SYS_NS16550_COM2 OMAP34XX_UART2 | |
222 | #undef CONFIG_SERIAL3 | |
223 | #define CONFIG_SERIAL2 | |
224 | #endif | |
225 | ||
cd7b6344 TR |
226 | /* Provide the MACH_TYPE value the vendor kernel requires */ |
227 | #define CONFIG_MACH_TYPE 3063 | |
d275c40c AA |
228 | |
229 | /*----------------------------------------------------------------------- | |
230 | * FLASH and environment organization | |
231 | */ | |
232 | ||
233 | /* **** PISMO SUPPORT *** */ | |
234 | ||
235 | #define CONFIG_SYS_MAX_FLASH_SECT 520 /* max number of sectors */ | |
236 | /* on one chip */ | |
237 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 /* max number of flash banks */ | |
238 | ||
239 | /*----------------------------------------------------------------------- | |
240 | * CFI FLASH driver setup | |
241 | */ | |
242 | /* timeout values are in ticks */ | |
243 | #define CONFIG_SYS_FLASH_ERASE_TOUT (100 * CONFIG_SYS_HZ) | |
244 | #define CONFIG_SYS_FLASH_WRITE_TOUT (100 * CONFIG_SYS_HZ) | |
245 | ||
246 | /* Flash banks JFFS2 should use */ | |
247 | #define CONFIG_SYS_MAX_MTD_BANKS (CONFIG_SYS_MAX_FLASH_BANKS + \ | |
248 | CONFIG_SYS_MAX_NAND_DEVICE) | |
249 | #define CONFIG_SYS_JFFS2_MEM_NAND | |
250 | /* use flash_info[2] */ | |
251 | #define CONFIG_SYS_JFFS2_FIRST_BANK CONFIG_SYS_MAX_FLASH_BANKS | |
252 | #define CONFIG_SYS_JFFS2_NUM_BANKS 1 | |
253 | ||
254 | #endif /* __OMAP3_CAIRO_CONFIG_H */ |