]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/trab.h
* Patch by Martin Krause, 11 Sep 2003:
[karo-tx-uboot.git] / include / configs / trab.h
1 /*
2  * (C) Copyright 2002-2003
3  * Gary Jennejohn <gj@denx.de>
4  *
5  * Configuation settings for the TRAB board.
6  *
7  * See file CREDITS for list of people who contributed to this
8  * project.
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2 of
13  * the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23  * MA 02111-1307 USA
24  */
25
26 #ifndef __CONFIG_H
27 #define __CONFIG_H
28
29 /*
30  * If we are developing, we might want to start armboot from ram
31  * so we MUST NOT initialize critical regs like mem-timing ...
32  */
33 #define CONFIG_INIT_CRITICAL            /* undef for developing */
34
35 /*
36  * High Level Configuration Options
37  * (easy to change)
38  */
39 #define CONFIG_ARM920T          1       /* This is an arm920t CPU       */
40 #define CONFIG_S3C2400          1       /* in a SAMSUNG S3C2400 SoC     */
41 #define CONFIG_TRAB             1       /* on a TRAB Board              */
42 #undef CONFIG_TRAB_50MHZ                /* run the CPU at 50 MHz        */
43 #define LITTLEENDIAN            1       /* used by usb_ohci.c           */
44
45 /* input clock of PLL */
46 #define CONFIG_SYS_CLK_FREQ     12000000 /* TRAB has 12 MHz input clock */
47
48 #undef CONFIG_USE_IRQ                   /* we don't need IRQ/FIQ stuff */
49
50 #define CONFIG_CMDLINE_TAG       1      /* enable passing of ATAGs      */
51 #define CONFIG_SETUP_MEMORY_TAGS 1
52 #define CONFIG_INITRD_TAG        1
53
54
55 /***********************************************************
56  * I2C stuff:
57  * the TRAB is equipped with an ATMEL 24C04 EEPROM at
58  * address 0x54 with 8bit addressing
59  ***********************************************************/
60 #define CONFIG_HARD_I2C                 /* I2C with hardware support */
61 #define CFG_I2C_SPEED           100000  /* I2C speed */
62 #define CFG_I2C_SLAVE           0x7F    /* I2C slave addr */
63
64 #define CFG_I2C_EEPROM_ADDR     0x54    /* EEPROM address */
65 #define CFG_I2C_EEPROM_ADDR_LEN 1       /* 1 address byte */
66
67 #define CFG_I2C_EEPROM_ADDR_OVERFLOW 0x01
68 #define CFG_EEPROM_PAGE_WRITE_BITS 3    /* 8 bytes page write mode on 24C04 */
69 #define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10
70
71 /* USB stuff */
72 #define CONFIG_USB_OHCI         1
73 #define CONFIG_USB_STORAGE      1
74 #define CONFIG_DOS_PARTITION    1
75
76 /*
77  * Size of malloc() pool
78  */
79 #define CFG_MALLOC_LEN          (CFG_ENV_SIZE + 128*1024)
80
81 /*
82  * Hardware drivers
83  */
84 #define CONFIG_DRIVER_CS8900    1       /* we have a CS8900 on-board */
85 #define CS8900_BASE             0x07000300 /* agrees with WIN CE PA */
86 #define CS8900_BUS16            1 /* the Linux driver does accesses as shorts */
87
88 #define CONFIG_DRIVER_S3C24X0_I2C 1     /* we use the buildin I2C controller */
89
90 #define CONFIG_VFD              1       /* VFD linear frame buffer driver */
91 #define VFD_TEST_LOGO           1       /* output a test logo to the VFDs */
92
93 /*
94  * select serial console configuration
95  */
96 #define CONFIG_SERIAL1          1       /* we use SERIAL 1 on TRAB */
97
98 #define CONFIG_HWFLOW                   /* include RTS/CTS flow control support */
99
100 #define CONFIG_MODEM_SUPPORT    1       /* enable modem initialization stuff */
101
102 #define CONFIG_MODEM_KEY_MAGIC  "23"    /* hold down these keys to enable modem */
103
104 /*
105  * The following enables modem debugging stuff. The dbg() and
106  * 'char screen[1024]' are used for debug printfs. Unfortunately,
107  * it is usable only from BDI
108  */
109 #undef CONFIG_MODEM_SUPPORT_DEBUG
110
111 /* allow to overwrite serial and ethaddr */
112 #define CONFIG_ENV_OVERWRITE
113
114 #define CONFIG_BAUDRATE         115200
115
116 #define CONFIG_TIMESTAMP        1       /* Print timestamp info for images */
117
118 /* Use s3c2400's RTC */
119 #define CONFIG_RTC_S3C24X0      1
120
121 #ifdef CONFIG_HWFLOW
122 #define CONFIG_COMMANDS_ADD_HWFLOW      CFG_CMD_HWFLOW
123 #else
124 #define CONFIG_COMMANDS_ADD_HWFLOW      0
125 #endif
126
127 #ifdef  CONFIG_VFD
128 #define CONFIG_COMMANDS_ADD_VFD         CFG_CMD_VFD
129 #else
130 #define CONFIG_COMMANDS_ADD_VFD         0
131 #endif
132
133 #ifdef CONFIG_DRIVER_S3C24X0_I2C
134 #define CONFIG_COMMANDS_ADD_EEPROM      CFG_CMD_EEPROM
135 #define CONFIG_COMMANDS_I2C             CFG_CMD_I2C
136 #else
137 #define CONFIG_COMMANDS_ADD_EEPROM      0
138 #define CONFIG_COMMANDS_I2C             0
139 #endif
140
141 #ifndef USE_920T_MMU
142 #define CONFIG_COMMANDS         ((CONFIG_CMD_DFL & ~CFG_CMD_CACHE) | \
143                                  CFG_CMD_BSP                    | \
144                                  CFG_CMD_DATE                   | \
145                                  CONFIG_COMMANDS_ADD_HWFLOW     | \
146                                  CONFIG_COMMANDS_ADD_VFD        | \
147                                  CONFIG_COMMANDS_ADD_EEPROM     | \
148                                  CFG_CMD_USB                    | \
149                                  CFG_CMD_FAT                    | \
150                                  CONFIG_COMMANDS_I2C            )
151 #else
152 #define CONFIG_COMMANDS         (CONFIG_CMD_DFL                 | \
153                                  CFG_CMD_BSP                    | \
154                                  CFG_CMD_DATE                   | \
155                                  CONFIG_COMMANDS_ADD_HWFLOW     | \
156                                  CONFIG_COMMANDS_ADD_VFD        | \
157                                  CONFIG_COMMANDS_ADD_EEPROM     | \
158                                  CFG_CMD_USB                    | \
159                                  CFG_CMD_FAT                    | \
160                                  CONFIG_COMMANDS_I2C            )
161 #endif
162
163 /* moved up */
164 #define CFG_HUSH_PARSER         1       /* use "hush" command parser    */
165
166 /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
167 #include <cmd_confdefs.h>
168
169 #define CONFIG_BOOTDELAY        5
170 #define CONFIG_ZERO_BOOTDELAY_CHECK     /* allow to break in always */
171 #define CONFIG_PREBOOT          "echo;echo *** booting ***;echo"
172 #define CONFIG_BOOTARGS         "console=ttyS0"
173 #define CONFIG_NETMASK          255.255.0.0
174 #define CONFIG_IPADDR           192.168.3.68
175 #define CONFIG_HOSTNAME         trab
176 #define CONFIG_SERVERIP         192.168.3.1
177 #define CONFIG_BOOTCOMMAND      "run flash_nfs"
178
179 #ifndef CONFIG_BIG_FLASH
180 #ifdef CFG_HUSH_PARSER
181 #define CONFIG_EXTRA_ENV_SETTINGS       \
182         "nfs_args=setenv bootargs root=/dev/nfs rw " \
183                 "nfsroot=$serverip:$rootpath\0" \
184         "rootpath=/opt/eldk/arm_920TDI\0" \
185         "ram_args=setenv bootargs root=/dev/ram rw\0" \
186         "add_net=setenv bootargs $bootargs ethaddr=$ethaddr " \
187                 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname::off\0" \
188         "add_misc=setenv bootargs $bootargs console=ttyS0 panic=1\0" \
189         "load=tftp 0xC100000 /tftpboot/TRAB/u-boot.bin\0" \
190         "update=protect off 1:0-8;era 1:0-8;cp.b 0xc100000 0 $filesize;" \
191                 "setenv filesize;saveenv\0" \
192         "loadfile=/tftpboot/TRAB/uImage\0" \
193         "loadaddr=c400000\0" \
194         "net_load=tftpboot $loadaddr $loadfile\0" \
195         "net_nfs=run net_load nfs_args add_net add_misc;bootm\0" \
196         "kernel_addr=00040000\0" \
197         "flash_nfs=run nfs_args add_net add_misc;bootm $kernel_addr\0" \
198         "mdm_init1=ATZ\0" \
199         "mdm_init2=ATS0=1\0" \
200         "mdm_flow_control=rts/cts\0"
201 #else /* !CFG_HUSH_PARSER */
202 #define CONFIG_EXTRA_ENV_SETTINGS       \
203         "nfs_args=setenv bootargs root=/dev/nfs rw " \
204                 "nfsroot=$(serverip):$(rootpath)\0" \
205         "rootpath=/opt/eldk/arm_920TDI\0" \
206         "ram_args=setenv bootargs root=/dev/ram rw\0" \
207         "add_net=setenv bootargs $(bootargs) ethaddr=$(ethaddr) " \
208                 "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off\0" \
209         "add_misc=setenv bootargs $(bootargs) console=ttyS0 panic=1\0" \
210         "load=tftp 0xC100000 /tftpboot/TRAB/u-boot.bin\0" \
211         "update=protect off 1:0-8;era 1:0-8;cp.b 0xc100000 0 $(filesize);" \
212                 "setenv filesize;saveenv\0" \
213         "loadfile=/tftpboot/TRAB/uImage\0" \
214         "loadaddr=c400000\0" \
215         "net_load=tftpboot $(loadaddr) $(loadfile)\0" \
216         "net_nfs=run net_load nfs_args add_net add_misc;bootm\0" \
217         "kernel_addr=00040000\0" \
218         "flash_nfs=run nfs_args add_net add_misc;bootm $(kernel_addr)\0" \
219         "mdm_init1=ATZ\0" \
220         "mdm_init2=ATS0=1\0" \
221         "mdm_flow_control=rts/cts\0"
222 #endif /* CFG_HUSH_PARSER */
223 #else   /* CONFIG_BIG_FLASH */
224 #ifdef CFG_HUSH_PARSER
225 #define CONFIG_EXTRA_ENV_SETTINGS       \
226         "nfs_args=setenv bootargs root=/dev/nfs rw " \
227                 "nfsroot=$serverip:$rootpath\0" \
228         "rootpath=/opt/eldk/arm_920TDI\0" \
229         "ram_args=setenv bootargs root=/dev/ram rw\0" \
230         "add_net=setenv bootargs $bootargs ethaddr=$ethaddr " \
231                 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname::off\0" \
232         "add_misc=setenv bootargs $bootargs console=ttyS0 panic=1\0" \
233         "load=tftp 0xC100000 /tftpboot/TRAB/u-boot.bin\0" \
234         "update=protect off 1:0;era 1:0;cp.b 0xc100000 0 $filesize\0" \
235         "loadfile=/tftpboot/TRAB/uImage\0" \
236         "loadaddr=c400000\0" \
237         "net_load=tftpboot $loadaddr $loadfile\0" \
238         "net_nfs=run net_load nfs_args add_net add_misc;bootm\0" \
239         "kernel_addr=00040000\0" \
240         "flash_nfs=run nfs_args add_net add_misc;bootm $kernel_addr\0" \
241         "mdm_init1=ATZ\0" \
242         "mdm_init2=ATS0=1\0" \
243         "mdm_flow_control=rts/cts\0"
244 #else /* !CFG_HUSH_PARSER */
245 #define CONFIG_EXTRA_ENV_SETTINGS       \
246         "nfs_args=setenv bootargs root=/dev/nfs rw " \
247                 "nfsroot=$(serverip):$(rootpath)\0" \
248         "rootpath=/opt/eldk/arm_920TDI\0" \
249         "ram_args=setenv bootargs root=/dev/ram rw\0" \
250         "add_net=setenv bootargs $(bootargs) ethaddr=$(ethaddr) " \
251                 "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off\0" \
252         "add_misc=setenv bootargs $(bootargs) console=ttyS0 panic=1\0" \
253         "load=tftp 0xC100000 /tftpboot/TRAB/u-boot.bin\0" \
254         "update=protect off 1:0;era 1:0;cp.b 0xc100000 0 $(filesize)\0" \
255         "loadfile=/tftpboot/TRAB/uImage\0" \
256         "loadaddr=c400000\0" \
257         "net_load=tftpboot $(loadaddr) $(loadfile)\0" \
258         "net_nfs=run net_load nfs_args add_net add_misc;bootm\0" \
259         "kernel_addr=00040000\0" \
260         "flash_nfs=run nfs_args add_net add_misc;bootm $(kernel_addr)\0" \
261         "mdm_init1=ATZ\0" \
262         "mdm_init2=ATS0=1\0" \
263         "mdm_flow_control=rts/cts\0"
264 #endif /* CFG_HUSH_PARSER */
265 #endif  /* CONFIG_BIG_FLASH */
266
267 #if 0   /* disabled for development */
268 #define CONFIG_AUTOBOOT_KEYED           /* Enable password protection   */
269 #define CONFIG_AUTOBOOT_PROMPT  "\nEnter password - autoboot in %d sec...\n"
270 #define CONFIG_AUTOBOOT_DELAY_STR       "system"        /* 1st password */
271 #endif
272
273 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
274 #define CONFIG_KGDB_BAUDRATE    115200          /* speed to run kgdb serial port */
275 /* what's this ? it's not used anywhere */
276 #define CONFIG_KGDB_SER_INDEX   1               /* which serial port to use */
277 #endif
278
279 /*
280  * Miscellaneous configurable options
281  */
282 #define CFG_LONGHELP                            /* undef to save memory         */
283 #define CFG_PROMPT              "TRAB # "       /* Monitor Command Prompt       */
284 #ifdef  CFG_HUSH_PARSER
285 #define CFG_PROMPT_HUSH_PS2     "> "
286 #endif
287
288 #define CFG_CBSIZE              256             /* Console I/O Buffer Size      */
289 #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
290 #define CFG_MAXARGS             16              /* max number of command args   */
291 #define CFG_BARGSIZE            CFG_CBSIZE      /* Boot Argument Buffer Size    */
292
293 #define CFG_MEMTEST_START       0x0c000000      /* memtest works on     */
294 #define CFG_MEMTEST_END         0x0d000000      /* 16 MB in DRAM        */
295
296 #undef CFG_CLKS_IN_HZ           /* everything, incl board info, in Hz */
297
298 #define CFG_LOAD_ADDR           0x0cf00000      /* default load address */
299
300 #ifdef CONFIG_TRAB_50MHZ
301 /* the PWM TImer 4 uses a counter of 15625 for 10 ms, so we need */
302 /* it to wrap 100 times (total 1562500) to get 1 sec. */
303 /* this should _really_ be calculated !! */
304 #define CFG_HZ                  1562500
305 #else
306 /* the PWM TImer 4 uses a counter of 10390 for 10 ms, so we need */
307 /* it to wrap 100 times (total 1039000) to get 1 sec. */
308 /* this should _really_ be calculated !! */
309 #define CFG_HZ                  1039000
310 #endif
311
312 /* valid baudrates */
313 #define CFG_BAUDRATE_TABLE      { 9600, 19200, 38400, 57600, 115200 }
314
315 #define CONFIG_MISC_INIT_R              /* have misc_init_r() function  */
316
317 /*-----------------------------------------------------------------------
318  * burn-in test stuff
319  */
320 #define BURN_IN_CYCLE_DELAY     20      /* delay in sec between burn-in test cycles */
321
322 /*-----------------------------------------------------------------------
323  * Stack sizes
324  *
325  * The stack sizes are set up in start.S using the settings below
326  */
327 #define CONFIG_STACKSIZE        (128*1024)      /* regular stack */
328 #ifdef CONFIG_USE_IRQ
329 #define CONFIG_STACKSIZE_IRQ    (4*1024)        /* IRQ stack */
330 #define CONFIG_STACKSIZE_FIQ    (4*1024)        /* FIQ stack */
331 #endif
332
333 /*-----------------------------------------------------------------------
334  * Physical Memory Map
335  */
336 #define CONFIG_NR_DRAM_BANKS    1               /* we have 1 bank of DRAM */
337 #define PHYS_SDRAM_1            0x0c000000      /* SDRAM Bank #1 */
338 #define PHYS_SDRAM_1_SIZE       0x01000000      /* 16 MB */
339
340 #define CFG_FLASH_BASE          0x00000000      /* Flash Bank #1 */
341
342 /* The following #defines are needed to get flash environment right */
343 #define CFG_MONITOR_BASE        CFG_FLASH_BASE
344 #ifndef CONFIG_BIG_FLASH
345 #define CFG_MONITOR_LEN         (256 << 10)
346 #else
347 #define CFG_MONITOR_LEN         (128 << 10)
348 #endif
349
350 /*-----------------------------------------------------------------------
351  * FLASH and environment organization
352  */
353 #define CFG_MAX_FLASH_BANKS     1       /* max number of memory banks */
354 #ifndef CONFIG_BIG_FLASH
355 #define CFG_MAX_FLASH_SECT      71      /* max number of sectors on one chip */
356 #else
357 #define CFG_MAX_FLASH_SECT      128     /* max number of sectors on one chip */
358 #endif
359
360 /* timeout values are in ticks */
361 #define CFG_FLASH_ERASE_TOUT    (2*CFG_HZ) /* Timeout for Flash Erase */
362 #define CFG_FLASH_WRITE_TOUT    (2*CFG_HZ) /* Timeout for Flash Write */
363
364 #define CFG_ENV_IS_IN_FLASH     1
365
366 /* Address and size of Primary Environment Sector       */
367 #ifndef CONFIG_BIG_FLASH
368 #define CFG_ENV_ADDR            (CFG_FLASH_BASE + 0x4000)
369 #define CFG_ENV_SIZE            0x4000
370 #define CFG_ENV_SECT_SIZE       0x4000
371 #else
372 #define CFG_ENV_ADDR            (CFG_FLASH_BASE + 0x20000)
373 #define CFG_ENV_SIZE            0x4000
374 #define CFG_ENV_SECT_SIZE       0x20000
375 #endif
376
377 /* Address and size of Redundant Environment Sector     */
378 #define CFG_ENV_OFFSET_REDUND   (CFG_ENV_ADDR+CFG_ENV_SECT_SIZE)
379 #define CFG_ENV_SIZE_REDUND     (CFG_ENV_SIZE)
380
381 /* Initial value of the on-board touch screen brightness */
382 #define CFG_BRIGHTNESS 0x20
383
384 #endif  /* __CONFIG_H */