blob: 69654c7c0f5ad7b0d219f3cf64d29005cc5ae7cf [file] [log] [blame]
wdenk43d96162003-03-06 00:02:04 +00001/*
2 * (C) Copyright 2000, 2001, 2002
3 * Robert Schwebel, Pengutronix, r.schwebel@pengutronix.de.
4 *
5 * Configuration for the Auerswald Innokom CPU 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/*
27 * include/configs/innokom.h - configuration options, board specific
28 */
29
30#ifndef __CONFIG_H
31#define __CONFIG_H
32
wdenk43d96162003-03-06 00:02:04 +000033/*
wdenk43d96162003-03-06 00:02:04 +000034 * High Level Configuration Options
35 * (easy to change)
36 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020037#define CONFIG_PXA250 1 /* This is an PXA250 CPU */
wdenk43d96162003-03-06 00:02:04 +000038#define CONFIG_INNOKOM 1 /* on an Auerswald Innokom board */
39
40#undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */
41 /* for timer/console/ethernet */
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020042
43/* we will never enable dcache, because we have to setup MMU first */
44#define CONFIG_SYS_NO_DCACHE
45
wdenk43d96162003-03-06 00:02:04 +000046/*
47 * Hardware drivers
48 */
49
50/*
51 * select serial console configuration
52 */
53#define CONFIG_FFUART 1 /* we use FFUART on CSB226 */
54
55/* allow to overwrite serial and ethaddr */
56#define CONFIG_ENV_OVERWRITE
57
58#define CONFIG_BAUDRATE 19200
wdenk06d01db2003-03-14 20:47:52 +000059#define CONFIG_MISC_INIT_R 1 /* we have a misc_init_r() function */
wdenk43d96162003-03-06 00:02:04 +000060
Jon Loeliger1d2c6bc2007-07-04 22:32:32 -050061
62/*
Jon Loeliger7f5c0152007-07-10 09:38:02 -050063 * BOOTP options
64 */
65#define CONFIG_BOOTP_BOOTFILESIZE
66#define CONFIG_BOOTP_BOOTPATH
67#define CONFIG_BOOTP_GATEWAY
68#define CONFIG_BOOTP_HOSTNAME
69
70
71/*
Jon Loeliger1d2c6bc2007-07-04 22:32:32 -050072 * Command line configuration.
73 */
74
75#define CONFIG_CMD_ASKENV
76#define CONFIG_CMD_BDI
77#define CONFIG_CMD_CACHE
78#define CONFIG_CMD_DHCP
79#define CONFIG_CMD_ECHO
Mike Frysingerbdab39d2009-01-28 19:08:14 -050080#define CONFIG_CMD_SAVEENV
Jon Loeliger1d2c6bc2007-07-04 22:32:32 -050081#define CONFIG_CMD_FLASH
82#define CONFIG_CMD_I2C
83#define CONFIG_CMD_IMI
84#define CONFIG_CMD_LOADB
85#define CONFIG_CMD_MEMORY
86#define CONFIG_CMD_NET
87#define CONFIG_CMD_RUN
88
wdenk43d96162003-03-06 00:02:04 +000089
90#define CONFIG_BOOTDELAY 3
91/* #define CONFIG_BOOTARGS "root=/dev/nfs ip=bootp console=ttyS0,19200" */
92#define CONFIG_BOOTARGS "console=ttyS0,19200"
93#define CONFIG_ETHADDR FF:FF:FF:FF:FF:FF
94#define CONFIG_NETMASK 255.255.255.0
95#define CONFIG_IPADDR 192.168.1.56
96#define CONFIG_SERVERIP 192.168.1.2
97#define CONFIG_BOOTCOMMAND "bootm 0x40000"
98#define CONFIG_SHOW_BOOT_PROGRESS
99
100#define CONFIG_CMDLINE_TAG 1
101
wdenk43d96162003-03-06 00:02:04 +0000102/*
103 * Miscellaneous configurable options
104 */
105
106/*
wdenkf6e20fc2004-02-08 19:38:38 +0000107 * Size of malloc() pool
wdenk43d96162003-03-06 00:02:04 +0000108 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109#define CONFIG_SYS_MALLOC_LEN (256*1024)
110#define CONFIG_SYS_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
wdenk43d96162003-03-06 00:02:04 +0000111
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112#define CONFIG_SYS_LONGHELP /* undef to save memory */
113#define CONFIG_SYS_PROMPT "uboot> " /* Monitor Command Prompt */
114#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
115#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
116#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
117#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
wdenk43d96162003-03-06 00:02:04 +0000118
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200119#define CONFIG_SYS_MEMTEST_START 0xa0400000 /* memtest works on */
120#define CONFIG_SYS_MEMTEST_END 0xa0800000 /* 4 ... 8 MB in DRAM */
wdenk43d96162003-03-06 00:02:04 +0000121
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122#define CONFIG_SYS_LOAD_ADDR 0xa3000000 /* load kernel to this address */
wdenk43d96162003-03-06 00:02:04 +0000123
Micha Kalfon94a33122009-02-11 19:50:11 +0200124#define CONFIG_SYS_HZ 1000
wdenk43d96162003-03-06 00:02:04 +0000125 /* RS: the oscillator is actually 3680130?? */
126
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127#define CONFIG_SYS_CPUSPEED 0x141 /* set core clock to 200/200/100 MHz */
wdenk43d96162003-03-06 00:02:04 +0000128 /* 0101000001 */
129 /* ^^^^^ Memory Speed 99.53 MHz */
130 /* ^^ Run Mode Speed = 2x Mem Speed */
131 /* ^^ Turbo Mode Sp. = 1x Run M. Sp. */
132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133#define CONFIG_SYS_MONITOR_LEN 0x20000 /* 128 KiB */
wdenk43d96162003-03-06 00:02:04 +0000134
wdenk8bde7f72003-06-27 21:31:46 +0000135 /* valid baudrates */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200136#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
wdenk43d96162003-03-06 00:02:04 +0000137
138/*
139 * I2C bus
140 */
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200141#define CONFIG_HARD_I2C 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200142#define CONFIG_SYS_I2C_SPEED 50000
143#define CONFIG_SYS_I2C_SLAVE 0xfe
wdenk43d96162003-03-06 00:02:04 +0000144
Jean-Christophe PLAGNIOL-VILLARDbb1f8b42008-09-05 09:19:30 +0200145#define CONFIG_ENV_IS_IN_EEPROM 1
wdenk43d96162003-03-06 00:02:04 +0000146
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200147#define CONFIG_ENV_OFFSET 0x00 /* environment starts here */
148#define CONFIG_ENV_SIZE 1024 /* 1 KiB */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200149#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* A0 = 0 (hardwired) */
150#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 5 /* 5 bits = 32 octets */
151#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 15 /* between stop and start */
152#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 /* length of address */
153#define CONFIG_SYS_EEPROM_SIZE 4096 /* size in bytes */
154#define CONFIG_SYS_I2C_INIT_BOARD 1 /* board has it's own init */
wdenk06d01db2003-03-14 20:47:52 +0000155
156/*
157 * SMSC91C111 Network Card
158 */
159#define CONFIG_DRIVER_SMC91111 1
160#define CONFIG_SMC91111_BASE 0x14000000 /* chip select 5 */
161#undef CONFIG_SMC_USE_32_BIT /* 16 bit bus access */
162#undef CONFIG_SMC_91111_EXT_PHY /* we use internal phy */
wdenkf39748a2004-06-09 13:37:52 +0000163#define CONFIG_SMC_AUTONEG_TIMEOUT 10 /* timeout 10 seconds */
wdenk06d01db2003-03-14 20:47:52 +0000164#undef CONFIG_SHOW_ACTIVITY
165#define CONFIG_NET_RETRY_COUNT 10 /* # of retries */
wdenk43d96162003-03-06 00:02:04 +0000166
167/*
168 * Stack sizes
169 *
170 * The stack sizes are set up in start.S using the settings below
171 */
172#define CONFIG_STACKSIZE (128*1024) /* regular stack */
173#ifdef CONFIG_USE_IRQ
174#define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
175#define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
176#endif
177
178/*
179 * Physical Memory Map
180 */
181#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
182#define PHYS_SDRAM_1 0xa0000000 /* SDRAM Bank #1 */
183#define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */
184
185#define PHYS_FLASH_1 0x00000000 /* Flash Bank #1 */
186#define PHYS_FLASH_SIZE 0x01000000 /* 16 MB */
187
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200188#define CONFIG_SYS_DRAM_BASE 0xa0000000 /* RAM starts here */
189#define CONFIG_SYS_DRAM_SIZE 0x04000000
wdenk43d96162003-03-06 00:02:04 +0000190
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191#define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
wdenk43d96162003-03-06 00:02:04 +0000192
wdenk06d01db2003-03-14 20:47:52 +0000193/*
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200194 * JFFS2 partitions
195 *
wdenk06d01db2003-03-14 20:47:52 +0000196 */
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200197/* development flash */
198#define CONFIG_MTD_INNOKOM_16MB 1
199#undef CONFIG_MTD_INNOKOM_64MB
wdenk06d01db2003-03-14 20:47:52 +0000200
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200201/* production flash */
202/*
203#define CONFIG_MTD_INNOKOM_64MB 1
204#undef CONFIG_MTD_INNOKOM_16MB
205*/
206
207/* No command line, one static partition, whole device */
Stefan Roese68d7d652009-03-19 13:30:36 +0100208#undef CONFIG_CMD_MTDPARTS
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200209#define CONFIG_JFFS2_DEV "nor0"
210#define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
211#define CONFIG_JFFS2_PART_OFFSET 0x00000000
212
213/* mtdparts command line support */
214/* Note: fake mtd_id used, no linux mtd map file */
215/*
Stefan Roese68d7d652009-03-19 13:30:36 +0100216#define CONFIG_CMD_MTDPARTS
Wolfgang Denk700a0c62005-08-08 01:03:24 +0200217#define MTDIDS_DEFAULT "nor0=innokom-0"
218*/
219
220/* development flash */
221/*
222#define MTDPARTS_DEFAULT "mtdparts=innokom-0:256k(uboot),768k(kernel),8m(user),7m(data)"
223*/
224
225/* production flash */
226/*
227#define MTDPARTS_DEFAULT "mtdparts=innokom-0:256k(uboot),768k(kernel),16256k(user1),16256k(user2),32m(data)"
228*/
wdenk06d01db2003-03-14 20:47:52 +0000229
230/*
wdenk3e386912003-04-05 00:53:31 +0000231 * GPIO settings
wdenk06d01db2003-03-14 20:47:52 +0000232 *
233 * GP15 == nCS1 is 1
wdenk43d96162003-03-06 00:02:04 +0000234 * GP24 == SFRM is 1
235 * GP25 == TXD is 1
236 * GP33 == nCS5 is 1
237 * GP39 == FFTXD is 1
238 * GP41 == RTS is 1
239 * GP47 == TXD is 1
240 * GP49 == nPWE is 1
241 * GP62 == LED_B is 1
242 * GP63 == TDM_OE is 1
243 * GP78 == nCS2 is 1
244 * GP79 == nCS3 is 1
245 * GP80 == nCS4 is 1
246 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200247#define CONFIG_SYS_GPSR0_VAL 0x03008000
248#define CONFIG_SYS_GPSR1_VAL 0xC0028282
249#define CONFIG_SYS_GPSR2_VAL 0x0001C000
wdenk43d96162003-03-06 00:02:04 +0000250
251/* GP02 == DON_RST is 0
252 * GP23 == SCLK is 0
253 * GP45 == USB_ACT is 0
254 * GP60 == PLLEN is 0
255 * GP61 == LED_A is 0
256 * GP73 == SWUPD_LED is 0
257 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200258#define CONFIG_SYS_GPCR0_VAL 0x00800004
259#define CONFIG_SYS_GPCR1_VAL 0x30002000
260#define CONFIG_SYS_GPCR2_VAL 0x00000100
wdenk43d96162003-03-06 00:02:04 +0000261
262/* GP00 == DON_READY is input
263 * GP01 == DON_OK is input
264 * GP02 == DON_RST is output
265 * GP03 == RESET_IND is input
266 * GP07 == RES11 is input
267 * GP09 == RES12 is input
268 * GP11 == SWUPDATE is input
269 * GP14 == nPOWEROK is input
270 * GP15 == nCS1 is output
271 * GP17 == RES22 is input
272 * GP18 == RDY is input
273 * GP23 == SCLK is output
274 * GP24 == SFRM is output
275 * GP25 == TXD is output
276 * GP26 == RXD is input
277 * GP32 == RES21 is input
278 * GP33 == nCS5 is output
279 * GP34 == FFRXD is input
280 * GP35 == CTS is input
281 * GP39 == FFTXD is output
282 * GP41 == RTS is output
283 * GP42 == USB_OK is input
284 * GP45 == USB_ACT is output
285 * GP46 == RXD is input
286 * GP47 == TXD is output
287 * GP49 == nPWE is output
288 * GP58 == nCPUBUSINT is input
289 * GP59 == LANINT is input
290 * GP60 == PLLEN is output
291 * GP61 == LED_A is output
292 * GP62 == LED_B is output
293 * GP63 == TDM_OE is output
294 * GP64 == nDSPINT is input
295 * GP65 == STRAP0 is input
296 * GP67 == STRAP1 is input
297 * GP69 == STRAP2 is input
298 * GP70 == STRAP3 is input
299 * GP71 == STRAP4 is input
300 * GP73 == SWUPD_LED is output
301 * GP78 == nCS2 is output
302 * GP79 == nCS3 is output
303 * GP80 == nCS4 is output
304 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200305#define CONFIG_SYS_GPDR0_VAL 0x03808004
306#define CONFIG_SYS_GPDR1_VAL 0xF002A282
307#define CONFIG_SYS_GPDR2_VAL 0x0001C200
wdenk43d96162003-03-06 00:02:04 +0000308
309/* GP15 == nCS1 is AF10
310 * GP18 == RDY is AF01
311 * GP23 == SCLK is AF10
312 * GP24 == SFRM is AF10
313 * GP25 == TXD is AF10
314 * GP26 == RXD is AF01
315 * GP33 == nCS5 is AF10
316 * GP34 == FFRXD is AF01
317 * GP35 == CTS is AF01
318 * GP39 == FFTXD is AF10
319 * GP41 == RTS is AF10
320 * GP46 == RXD is AF10
321 * GP47 == TXD is AF01
322 * GP49 == nPWE is AF10
323 * GP78 == nCS2 is AF10
324 * GP79 == nCS3 is AF10
325 * GP80 == nCS4 is AF10
326 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200327#define CONFIG_SYS_GAFR0_L_VAL 0x80000000
328#define CONFIG_SYS_GAFR0_U_VAL 0x001A8010
329#define CONFIG_SYS_GAFR1_L_VAL 0x60088058
330#define CONFIG_SYS_GAFR1_U_VAL 0x00000008
331#define CONFIG_SYS_GAFR2_L_VAL 0xA0000000
332#define CONFIG_SYS_GAFR2_U_VAL 0x00000002
wdenk43d96162003-03-06 00:02:04 +0000333
wdenk06d01db2003-03-14 20:47:52 +0000334
wdenk43d96162003-03-06 00:02:04 +0000335/* FIXME: set GPIO_RER/FER */
336
337/* RDH = 1
338 * PH = 1
339 * VFS = 1
340 * BFS = 1
341 * SSS = 1
342 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200343#define CONFIG_SYS_PSSR_VAL 0x37
wdenk43d96162003-03-06 00:02:04 +0000344
345/*
346 * Memory settings
wdenk06d01db2003-03-14 20:47:52 +0000347 *
348 * This is the configuration for nCS0/1 -> flash banks
wdenk43d96162003-03-06 00:02:04 +0000349 * configuration for nCS1:
350 * [31] 0 - Slower Device
351 * [30:28] 010 - CS deselect to CS time: 2*(2*MemClk) = 40 ns
352 * [27:24] 0101 - Address to data valid in bursts: (5+1)*MemClk = 60 ns
353 * [23:20] 1011 - " for first access: (11+2)*MemClk = 130 ns
354 * [19] 1 - 16 Bit bus width
355 * [18:16] 000 - nonburst RAM or FLASH
356 * configuration for nCS0:
357 * [15] 0 - Slower Device
358 * [14:12] 010 - CS deselect to CS time: 2*(2*MemClk) = 40 ns
359 * [11:08] 0101 - Address to data valid in bursts: (5+1)*MemClk = 60 ns
360 * [07:04] 1011 - " for first access: (11+2)*MemClk = 130 ns
361 * [03] 1 - 16 Bit bus width
362 * [02:00] 000 - nonburst RAM or FLASH
363 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200364#define CONFIG_SYS_MSC0_VAL 0x25b825b8 /* flash banks */
wdenk43d96162003-03-06 00:02:04 +0000365
366/* This is the configuration for nCS2/3 -> TDM-Switch, DSP
367 * configuration for nCS3: DSP
368 * [31] 0 - Slower Device
369 * [30:28] 001 - RRR3: CS deselect to CS time: 1*(2*MemClk) = 20 ns
370 * [27:24] 0010 - RDN3: Address to data valid in bursts: (2+1)*MemClk = 30 ns
371 * [23:20] 0011 - RDF3: Address for first access: (3+1)*MemClk = 40 ns
372 * [19] 1 - 16 Bit bus width
373 * [18:16] 100 - variable latency I/O
374 * configuration for nCS2: TDM-Switch
375 * [15] 0 - Slower Device
376 * [14:12] 101 - RRR2: CS deselect to CS time: 5*(2*MemClk) = 100 ns
377 * [11:08] 1001 - RDN2: Address to data valid in bursts: (9+1)*MemClk = 100 ns
378 * [07:04] 0011 - RDF2: Address for first access: (3+1)*MemClk = 40 ns
379 * [03] 1 - 16 Bit bus width
380 * [02:00] 100 - variable latency I/O
381 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200382#define CONFIG_SYS_MSC1_VAL 0x123C593C /* TDM switch, DSP */
wdenk43d96162003-03-06 00:02:04 +0000383
384/* This is the configuration for nCS4/5 -> ExtBus, LAN Controller
385 *
386 * configuration for nCS5: LAN Controller
387 * [31] 0 - Slower Device
388 * [30:28] 001 - RRR5: CS deselect to CS time: 1*(2*MemClk) = 20 ns
389 * [27:24] 0010 - RDN5: Address to data valid in bursts: (2+1)*MemClk = 30 ns
390 * [23:20] 0011 - RDF5: Address for first access: (3+1)*MemClk = 40 ns
391 * [19] 1 - 16 Bit bus width
392 * [18:16] 100 - variable latency I/O
393 * configuration for nCS4: ExtBus
394 * [15] 0 - Slower Device
395 * [14:12] 110 - RRR4: CS deselect to CS time: 6*(2*MemClk) = 120 ns
396 * [11:08] 1100 - RDN4: Address to data valid in bursts: (12+1)*MemClk = 130 ns
397 * [07:04] 1101 - RDF4: Address for first access: 13->(15+1)*MemClk = 160 ns
398 * [03] 1 - 16 Bit bus width
399 * [02:00] 100 - variable latency I/O
400 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200401#define CONFIG_SYS_MSC2_VAL 0x123C6CDC /* extra bus, LAN controller */
wdenk43d96162003-03-06 00:02:04 +0000402
403/* MDCNFG: SDRAM Configuration Register
404 *
405 * [31:29] 000 - reserved
406 * [28] 0 - no SA1111 compatiblity mode
407 * [27] 0 - latch return data with return clock
408 * [26] 0 - alternate addressing for pair 2/3
409 * [25:24] 00 - timings
410 * [23] 0 - internal banks in lower partition 2/3 (not used)
411 * [22:21] 00 - row address bits for partition 2/3 (not used)
412 * [20:19] 00 - column address bits for partition 2/3 (not used)
413 * [18] 0 - SDRAM partition 2/3 width is 32 bit
414 * [17] 0 - SDRAM partition 3 disabled
415 * [16] 0 - SDRAM partition 2 disabled
416 * [15:13] 000 - reserved
417 * [12] 1 - SA1111 compatiblity mode
418 * [11] 1 - latch return data with return clock
419 * [10] 0 - no alternate addressing for pair 0/1
wdenk06d01db2003-03-14 20:47:52 +0000420 * [09:08] 01 - tRP=2*MemClk CL=2 tRCD=2*MemClk tRAS=5*MemClk tRC=8*MemClk
wdenk43d96162003-03-06 00:02:04 +0000421 * [7] 1 - 4 internal banks in lower partition pair
422 * [06:05] 10 - 13 row address bits for partition 0/1
423 * [04:03] 01 - 9 column address bits for partition 0/1
424 * [02] 0 - SDRAM partition 0/1 width is 32 bit
425 * [01] 0 - disable SDRAM partition 1
426 * [00] 1 - enable SDRAM partition 0
wdenk43d96162003-03-06 00:02:04 +0000427 */
wdenk06d01db2003-03-14 20:47:52 +0000428/* use the configuration above but disable partition 0 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200429#define CONFIG_SYS_MDCNFG_VAL 0x000019c8
wdenk43d96162003-03-06 00:02:04 +0000430
431/* MDREFR: SDRAM Refresh Control Register
432 *
433 * [32:26] 0 - reserved
434 * [25] 0 - K2FREE: not free running
435 * [24] 0 - K1FREE: not free running
wdenk3e386912003-04-05 00:53:31 +0000436 * [23] 1 - K0FREE: not free running
wdenk43d96162003-03-06 00:02:04 +0000437 * [22] 0 - SLFRSH: self refresh disabled
438 * [21] 0 - reserved
439 * [20] 0 - APD: no auto power down
440 * [19] 0 - K2DB2: SDCLK2 is MemClk
441 * [18] 0 - K2RUN: disable SDCLK2
442 * [17] 0 - K1DB2: SDCLK1 is MemClk
443 * [16] 1 - K1RUN: enable SDCLK1
444 * [15] 1 - E1PIN: SDRAM clock enable
445 * [14] 1 - K0DB2: SDCLK0 is MemClk
wdenk3e386912003-04-05 00:53:31 +0000446 * [13] 0 - K0RUN: disable SDCLK0
wdenk43d96162003-03-06 00:02:04 +0000447 * [12] 1 - E0PIN: disable SDCKE0
448 * [11:00] 000000011000 - (64ms/8192)*MemClkFreq/32 = 24
449 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200450#define CONFIG_SYS_MDREFR_VAL 0x0081D018
wdenk43d96162003-03-06 00:02:04 +0000451
452/* MDMRS: Mode Register Set Configuration Register
453 *
454 * [31] 0 - reserved
455 * [30:23] 00000000- MDMRS2: SDRAM2/3 MRS Value. (not used)
456 * [22:20] 000 - MDCL2: SDRAM2/3 Cas Latency. (not used)
457 * [19] 0 - MDADD2: SDRAM2/3 burst Type. Fixed to sequential. (not used)
458 * [18:16] 010 - MDBL2: SDRAM2/3 burst Length. Fixed to 4. (not used)
459 * [15] 0 - reserved
460 * [14:07] 00000000- MDMRS0: SDRAM0/1 MRS Value.
461 * [06:04] 010 - MDCL0: SDRAM0/1 Cas Latency.
462 * [03] 0 - MDADD0: SDRAM0/1 burst Type. Fixed to sequential.
463 * [02:00] 010 - MDBL0: SDRAM0/1 burst Length. Fixed to 4.
464 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200465#define CONFIG_SYS_MDMRS_VAL 0x00020022
wdenk43d96162003-03-06 00:02:04 +0000466
467/*
468 * PCMCIA and CF Interfaces
469 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200470#define CONFIG_SYS_MECR_VAL 0x00000000
471#define CONFIG_SYS_MCMEM0_VAL 0x00000000
472#define CONFIG_SYS_MCMEM1_VAL 0x00000000
473#define CONFIG_SYS_MCATT0_VAL 0x00000000
474#define CONFIG_SYS_MCATT1_VAL 0x00000000
475#define CONFIG_SYS_MCIO0_VAL 0x00000000
476#define CONFIG_SYS_MCIO1_VAL 0x00000000
wdenk43d96162003-03-06 00:02:04 +0000477
478/*
479#define CSB226_USER_LED0 0x00000008
480#define CSB226_USER_LED1 0x00000010
481#define CSB226_USER_LED2 0x00000020
482*/
483
484/*
485 * FLASH and environment organization
486 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200487#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
488#define CONFIG_SYS_MAX_FLASH_SECT 128 /* max number of sect. on one chip */
wdenk43d96162003-03-06 00:02:04 +0000489
490/* timeout values are in ticks */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200491#define CONFIG_SYS_FLASH_ERASE_TOUT (2*CONFIG_SYS_HZ) /* Timeout for Flash Erase */
492#define CONFIG_SYS_FLASH_WRITE_TOUT (2*CONFIG_SYS_HZ) /* Timeout for Flash Write */
wdenk43d96162003-03-06 00:02:04 +0000493
wdenk43d96162003-03-06 00:02:04 +0000494#endif /* __CONFIG_H */