]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/SIMPC8313.h
Merge branch 'warning-cleanup'
[karo-tx-uboot.git] / include / configs / SIMPC8313.h
1 /*
2  * Copyright (C) Sheldon Instruments, Inc. 2008
3  *
4  * See file CREDITS for list of people who contributed to this
5  * project.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; either version 2 of
10  * the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20  * MA 02111-1307 USA
21  */
22 /*
23  * simpc8313 board configuration file
24  */
25
26 #ifndef __CONFIG_H
27 #define __CONFIG_H
28
29 /*
30  * High Level Configuration Options
31  */
32 #define CONFIG_NAND_U_BOOT
33
34 #define CONFIG_E300                     1
35 #define CONFIG_MPC83xx                  1
36 #define CONFIG_MPC831x                  1
37 #define CONFIG_MPC8313                  1
38
39 #define CONFIG_PCI
40
41 #define CONFIG_MISC_INIT_R
42
43 /*
44  * On-board devices
45  *
46  * TSEC1 is Marvell PHY 88E1118
47  */
48
49 #define CONFIG_SYS_33MHZ
50
51 #define CONFIG_83XX_CLKIN               33333333        /* in Hz */
52
53 #define CONFIG_SYS_CLK_FREQ             CONFIG_83XX_CLKIN
54
55 #define CONFIG_SYS_IMMR                 0xE0000000
56
57 #if defined(CONFIG_NAND_U_BOOT) && !defined(CONFIG_NAND_SPL)
58 #define CONFIG_DEFAULT_IMMR             CONFIG_SYS_IMMR
59 #endif
60
61 #define CONFIG_SYS_MEMTEST_START        0x00001000
62 #define CONFIG_SYS_MEMTEST_END          0x07f00000
63
64 #define CONFIG_SYS_ACR_PIPE_DEP         3       /* Arbiter pipeline depth (0-3) */
65 #define CONFIG_SYS_ACR_RPTCNT           3       /* Arbiter repeat count (0-7) */
66
67 /*
68  * Device configurations
69  */
70 #define CONFIG_TSEC1
71
72 /*
73  * DDR Setup
74  */
75 #define CONFIG_SYS_DDR_BASE             0x00000000      /* DDR is system memory*/
76 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_BASE
77 #define CONFIG_SYS_DDR_SDRAM_BASE       CONFIG_SYS_DDR_BASE
78
79 #define CONFIG_VERY_BIG_RAM
80 #define CONFIG_MAX_MEM_MAPPED           (512 << 20)
81
82 #define CONFIG_SYS_DDRCDR               ( DDRCDR_EN \
83                                         | DDRCDR_PZ_NOMZ \
84                                         | DDRCDR_NZ_NOMZ \
85                                         | DDRCDR_M_ODR )
86                                         /* 0x73000002 TODO ODR & DRN ? */
87
88 /*
89  * FLASH on the Local Bus
90  */
91 #define CONFIG_SYS_NO_FLASH
92
93 #define CONFIG_SYS_MONITOR_BASE TEXT_BASE       /* start of monitor */
94
95 #if !defined(CONFIG_NAND_SPL)
96 #define CONFIG_SYS_RAMBOOT
97 #endif
98
99 #define CONFIG_SYS_INIT_RAM_LOCK        1
100 #define CONFIG_SYS_INIT_RAM_ADDR        0xFD000000      /* Initial RAM address */
101 #define CONFIG_SYS_INIT_RAM_END         0x1000          /* End of used area in RAM*/
102
103 #define CONFIG_SYS_GBL_DATA_SIZE        0x100           /* num bytes initial data */
104 #define CONFIG_SYS_GBL_DATA_OFFSET      (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
105 #define CONFIG_SYS_INIT_SP_OFFSET       CONFIG_SYS_GBL_DATA_OFFSET
106
107 /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
108 #define CONFIG_SYS_MONITOR_LEN          (256 * 1024)    /* Reserve 256 kB for Mon */
109 #define CONFIG_SYS_MALLOC_LEN           (512 * 1024)    /* Reserved for malloc */
110
111 /*
112  * Local Bus LCRR and LBCR regs
113  */
114 #define CONFIG_SYS_LCRR         (LCRR_DBYP | LCRR_EADC_1 | LCRR_CLKDIV_2)
115 #define CONFIG_SYS_LBC_LBCR     (0x00040000 /* TODO */ \
116                                 | (0xFF << LBCR_BMT_SHIFT) \
117                                 | 0xF ) /* 0x0004ff0f */
118
119 #define CONFIG_SYS_LBC_MRTPR    0x20000000      /* LB refresh timer prescal, 266MHz/32 */
120
121 /* drivers/mtd/nand/nand.c */
122 #ifdef CONFIG_NAND_SPL
123 #define CONFIG_SYS_NAND_BASE            0xFFF00000
124 #else
125 #define CONFIG_SYS_NAND_BASE            0xE2800000
126 #endif
127
128 #define CONFIG_SYS_MAX_NAND_DEVICE      1
129 #define NAND_MAX_CHIPS                  1
130 #define CONFIG_MTD_NAND_VERIFY_WRITE
131 #define CONFIG_CMD_NAND                 1
132 #define CONFIG_NAND_FSL_ELBC            1
133 #define CONFIG_SYS_64BIT_VSPRINTF       /* needed for nand_util.c */
134
135 #define CONFIG_SYS_NAND_U_BOOT_SIZE     (512 << 10)
136 #define CONFIG_SYS_NAND_U_BOOT_DST      0x00100000
137 #define CONFIG_SYS_NAND_U_BOOT_START    0x00100100
138 #define CONFIG_SYS_NAND_U_BOOT_RELOC    0x00010000
139 #define CONFIG_SYS_NAND_U_BOOT_RELOC_SP (CONFIG_SYS_NAND_U_BOOT_RELOC + 0x10000)
140
141 #define CONFIG_SYS_NAND_BR_PRELIM       ( CONFIG_SYS_NAND_BASE \
142                                         | (2<<BR_DECC_SHIFT)    /* Use HW ECC */ \
143                                         | BR_PS_8               /* Port Size = 8 bit */ \
144                                         | BR_MS_FCM             /* MSEL = FCM */ \
145                                         | BR_V )                /* valid */
146
147 #ifdef CONFIG_NAND_SP
148 #define CONFIG_SYS_NAND_OR_PRELIM       ( 0xFFFF8000    /* length 32K */ \
149                                         | OR_FCM_CSCT \
150                                         | OR_FCM_CST \
151                                         | OR_FCM_CHT \
152                                         | OR_FCM_SCY_1 \
153                                         | OR_FCM_TRLX \
154                                         | OR_FCM_EHTR )
155 #define CONFIG_SYS_LBLAWAR0_PRELIM      0x8000000E      /* 32KB */
156 #define CONFIG_SYS_NAND_PAGE_SIZE       (512)           /* NAND chip page size */
157 #define CONFIG_SYS_NAND_BLOCK_SIZE      (16 << 10)      /* NAND chip block size */
158 #define NAND_CACHE_PAGES                32
159 #elif defined(CONFIG_NAND_LP)
160 #define CONFIG_SYS_NAND_OR_PRELIM       ( 0xFFFC0000    /* length 256K */ \
161                                         | OR_FCM_PGS \
162                                         | OR_FCM_CSCT \
163                                         | OR_FCM_CST \
164                                         | OR_FCM_CHT \
165                                         | OR_FCM_SCY_1 \
166                                         | OR_FCM_TRLX \
167                                         | OR_FCM_EHTR )
168 #define CONFIG_SYS_LBLAWAR0_PRELIM      0x80000011      /* 256KB */
169 #define CONFIG_SYS_NAND_PAGE_SIZE       (2048)          /* NAND chip page size */
170 #define CONFIG_SYS_NAND_BLOCK_SIZE      (128 << 10)     /* NAND chip block size */
171 #define NAND_CACHE_PAGES                64
172 #else
173 #error Page size of NAND not defined.
174 #endif /* CONFIG_NAND_SP */
175
176 #define CONFIG_SYS_NAND_U_BOOT_OFFS     CONFIG_SYS_NAND_BLOCK_SIZE
177
178 #define CONFIG_SYS_BR0_PRELIM           CONFIG_SYS_NAND_BR_PRELIM
179 #define CONFIG_SYS_OR0_PRELIM           CONFIG_SYS_NAND_OR_PRELIM
180
181 #define CONFIG_SYS_LBLAWBAR0_PRELIM     CONFIG_SYS_NAND_BASE
182
183 #define CONFIG_SYS_NAND_LBLAWBAR_PRELIM CONFIG_SYS_LBLAWBAR0_PRELIM
184 #define CONFIG_SYS_NAND_LBLAWAR_PRELIM  CONFIG_SYS_LBLAWAR0_PRELIM
185
186 /*
187  * JFFS2 configuration
188  */
189 #define CONFIG_JFFS2_NAND
190 #define CONFIG_JFFS2_DEV        "nand0"
191
192 /* mtdparts command line support */
193 #define CONFIG_CMD_MTDPARTS
194 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
195 #define MTDIDS_DEFAULT          "nand0=nand0"
196 #define MTDPARTS_DEFAULT        "mtdparts=nand0:2M(u-boot),6M(kernel),-(jffs2)"
197
198 /* pass open firmware flat tree */
199 #define CONFIG_OF_LIBFDT                1
200 #define CONFIG_OF_BOARD_SETUP           1
201 #define CONFIG_OF_STDOUT_VIA_ALIAS      1
202
203 /*
204  * Serial Port
205  */
206 #define CONFIG_CONS_INDEX               1
207 #define CONFIG_SYS_NS16550
208 #define CONFIG_SYS_NS16550_SERIAL
209 #define CONFIG_SYS_NS16550_REG_SIZE     1
210 #ifdef CONFIG_NAND_SPL
211 #define CONFIG_NS16550_MIN_FUNCTIONS
212 #endif
213
214 #define CONFIG_SYS_BAUDRATE_TABLE       \
215         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
216
217 #define CONFIG_SYS_NS16550_COM1         (CONFIG_SYS_IMMR+0x4500)
218 #define CONFIG_SYS_NS16550_COM2         (CONFIG_SYS_IMMR+0x4600)
219
220 /* Use the HUSH parser */
221 #define CONFIG_SYS_HUSH_PARSER
222 #define CONFIG_SYS_PROMPT_HUSH_PS2      "> "
223
224 /* I2C */
225 #define CONFIG_HARD_I2C                 /* I2C with hardware support*/
226 #define CONFIG_FSL_I2C
227 #define CONFIG_I2C_MULTI_BUS
228 #define CONFIG_SYS_I2C_SPEED            400000  /* I2C speed and slave address */
229 #define CONFIG_SYS_I2C_SLAVE            0x7F
230 #define CONFIG_SYS_I2C_NOPROBES         {{0,0x69}} /* Don't probe these addrs */
231 #define CONFIG_SYS_I2C_OFFSET           0x3000
232 #define CONFIG_SYS_I2C2_OFFSET          0x3100
233
234 /*
235  * General PCI
236  * Addresses are mapped 1-1.
237  */
238 #define CONFIG_SYS_PCI1_MEM_BASE        0x80000000
239 #define CONFIG_SYS_PCI1_MEM_PHYS        CONFIG_SYS_PCI1_MEM_BASE
240 #define CONFIG_SYS_PCI1_MEM_SIZE        0x10000000      /* 256M */
241 #define CONFIG_SYS_PCI1_MMIO_BASE       0x90000000
242 #define CONFIG_SYS_PCI1_MMIO_PHYS       CONFIG_SYS_PCI1_MMIO_BASE
243 #define CONFIG_SYS_PCI1_MMIO_SIZE       0x10000000      /* 256M */
244 #define CONFIG_SYS_PCI1_IO_BASE         0x00000000
245 #define CONFIG_SYS_PCI1_IO_PHYS         0xE2000000
246 #define CONFIG_SYS_PCI1_IO_SIZE         0x00100000      /* 1M */
247
248 #define CONFIG_PCI_PNP                  /* do pci plug-and-play */
249 #define CONFIG_SYS_PCI_SUBSYS_VENDORID  0x1057  /* Motorola */
250
251 /*
252  * TSEC
253  */
254 #define CONFIG_TSEC_ENET                /* TSEC ethernet support */
255
256 #define CONFIG_NET_MULTI
257 #define CONFIG_GMII                     /* MII PHY management */
258
259 #ifdef CONFIG_TSEC1
260 #define CONFIG_HAS_ETH0
261 #define CONFIG_TSEC1_NAME               "TSEC0"
262 #define CONFIG_SYS_TSEC1_OFFSET         0x24000
263 #define TSEC1_PHY_ADDR                  0x0
264 #define TSEC1_FLAGS                     TSEC_GIGABIT
265 #define TSEC1_PHYIDX                    0
266 #endif
267
268 #ifdef CONFIG_TSEC2
269 #define CONFIG_HAS_ETH1
270 #define CONFIG_TSEC2_NAME               "TSEC1"
271 #define CONFIG_SYS_TSEC2_OFFSET         0x25000
272 #define TSEC2_PHY_ADDR                  4
273 #define TSEC2_FLAGS                     TSEC_GIGABIT
274 #define TSEC2_PHYIDX                    0
275 #endif
276
277
278 /* Options are: TSEC[0-1] */
279 #define CONFIG_ETHPRIME                 "TSEC1"
280
281 /*
282  * Configure on-board RTC
283  */
284 #define CONFIG_RTC_DS1337
285 #define CONFIG_SYS_I2C_RTC_ADDR         0x68
286
287 /*
288  * Environment
289  */
290 #if defined(CONFIG_NAND_U_BOOT)
291         #define CONFIG_ENV_IS_IN_NAND           1
292         #define CONFIG_ENV_OFFSET               (768 * 1024)
293         #define CONFIG_ENV_SECT_SIZE            CONFIG_SYS_NAND_BLOCK_SIZE
294         #define CONFIG_ENV_SIZE                 CONFIG_ENV_SECT_SIZE
295         #define CONFIG_ENV_SIZE_REDUND          CONFIG_ENV_SIZE
296         #define CONFIG_ENV_RANGE                (CONFIG_ENV_SECT_SIZE * 4)
297         #define CONFIG_ENV_OFFSET_REDUND        (CONFIG_ENV_OFFSET + CONFIG_ENV_RANGE)
298 #elif !defined(CONFIG_SYS_RAMBOOT)
299         #define CONFIG_ENV_IS_IN_FLASH          1
300         #define CONFIG_ENV_ADDR                 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
301         #define CONFIG_ENV_SECT_SIZE            0x10000 /* 64K(one sector) for env */
302         #define CONFIG_ENV_SIZE                 0x2000
303
304 /* Address and size of Redundant Environment Sector */
305 #else
306         #define CONFIG_ENV_IS_NOWHERE           1       /* Store ENV in memory only */
307         #define CONFIG_ENV_ADDR                 (CONFIG_SYS_MONITOR_BASE - 0x1000)
308         #define CONFIG_ENV_SIZE                 0x2000
309 #endif
310
311 #define CONFIG_LOADS_ECHO                       1       /* echo on for serial download */
312 #define CONFIG_SYS_LOADS_BAUD_CHANGE            1       /* allow baudrate change */
313
314 /*
315  * BOOTP options
316  */
317 #define CONFIG_BOOTP_BOOTFILESIZE
318 #define CONFIG_BOOTP_BOOTPATH
319 #define CONFIG_BOOTP_GATEWAY
320 #define CONFIG_BOOTP_HOSTNAME
321
322
323 /*
324  * Command line configuration.
325  */
326 #include <config_cmd_default.h>
327 #undef CONFIG_CMD_IMLS
328 #undef CONFIG_CMD_FLASH
329
330 #define CONFIG_CMD_PING
331 #define CONFIG_CMD_DHCP
332 #define CONFIG_CMD_I2C
333 #define CONFIG_CMD_MII
334 #define CONFIG_CMD_DATE
335 #define CONFIG_CMD_PCI
336 #define CONFIG_CMD_JFFS2
337
338 #if defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_NAND_U_BOOT)
339         #undef CONFIG_CMD_SAVEENV
340         #undef CONFIG_CMD_LOADS
341 #endif
342
343 #define CONFIG_CMDLINE_EDITING          1
344
345
346 /*
347  * Miscellaneous configurable options
348  */
349 #define CONFIG_SYS_LONGHELP                             /* undef to save memory */
350 #define CONFIG_SYS_LOAD_ADDR            0x2000000       /* default load address */
351 #define CONFIG_SYS_PROMPT               "=> "           /* Monitor Command Prompt */
352 #define CONFIG_SYS_CBSIZE               1024            /* Console I/O Buffer Size */
353
354 #define CONFIG_SYS_PBSIZE               ( CONFIG_SYS_CBSIZE             \
355                                         + sizeof(CONFIG_SYS_PROMPT)     \
356                                         + 16 )  /* Print Buffer Size */
357 #define CONFIG_SYS_MAXARGS              16      /* max number of command args */
358 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE       /* Boot Argument Buffer Size */
359 #define CONFIG_SYS_HZ                   1000            /* decrementer freq: 1ms ticks */
360
361 /*
362  * For booting Linux, the board info and command line data
363  * have to be in the first 8 MB of memory, since this is
364  * the maximum mapped by the Linux kernel during initialization.
365  */
366 #define CONFIG_SYS_BOOTMAPSZ            (8 << 20)       /* Initial Memory map for Linux*/
367
368 #define CONFIG_SYS_RCWH_PCIHOST         0x80000000      /* PCIHOST */
369
370 #define CONFIG_SYS_HRCW_LOW             ( HRCWL_LCL_BUS_TO_SCB_CLK_1X1  \
371                                         | 0x20000000 /* reserved */     \
372                                         | HRCWL_DDR_TO_SCB_CLK_2X1      \
373                                         | HRCWL_CSB_TO_CLKIN_4X1        \
374                                         | HRCWL_CORE_TO_CSB_2_5X1 )
375
376 #define CONFIG_SYS_NS16550_CLK          (CONFIG_83XX_CLKIN * 4)
377
378 #define CONFIG_SYS_HRCW_HIGH_BASE       ( HRCWH_PCI_HOST                \
379                                         | HRCWH_PCI1_ARBITER_ENABLE     \
380                                         | HRCWH_CORE_ENABLE             \
381                                         | HRCWH_BOOTSEQ_DISABLE         \
382                                         | HRCWH_SW_WATCHDOG_DISABLE     \
383                                         | HRCWH_TSEC1M_IN_RGMII         \
384                                         | HRCWH_TSEC2M_IN_RGMII         \
385                                         | HRCWH_BIG_ENDIAN              \
386                                         | HRCWH_LALE_NORMAL )
387
388 #ifdef CONFIG_NAND_LP
389 #define CONFIG_SYS_HRCW_HIGH    ( CONFIG_SYS_HRCW_HIGH_BASE             \
390                                 | HRCWH_FROM_0XFFF00100                 \
391                                 | HRCWH_ROM_LOC_NAND_LP_8BIT            \
392                                 | HRCWH_RL_EXT_NAND)
393 #else
394 #define CONFIG_SYS_HRCW_HIGH    ( CONFIG_SYS_HRCW_HIGH_BASE             \
395                                 | HRCWH_FROM_0XFFF00100                 \
396                                 | HRCWH_ROM_LOC_NAND_SP_8BIT            \
397                                 | HRCWH_RL_EXT_NAND )
398 #endif
399
400 /* System IO Config */
401 #define CONFIG_SYS_SICRH        ( SICRH_ETSEC2_B        \
402                                 | SICRH_ETSEC2_C        \
403                                 | SICRH_ETSEC2_D        \
404                                 | SICRH_ETSEC2_E        \
405                                 | SICRH_ETSEC2_F        \
406                                 | SICRH_ETSEC2_G        \
407                                 | SICRH_TSOBI1          \
408                                 | SICRH_TSOBI2 )
409 #define CONFIG_SYS_SICRL        (SICRL_USBDR            \
410                                 | SICRL_ETSEC2_A )
411
412 #define CONFIG_SYS_HID0_INIT    0x000000000
413 #define CONFIG_SYS_HID0_FINAL   (HID0_ENABLE_MACHINE_CHECK      \
414                                 | HID0_ENABLE_DYNAMIC_POWER_MANAGMENT )
415
416 #define CONFIG_SYS_HID2         HID2_HBE
417
418 #define CONFIG_HIGH_BATS        1       /* High BATs supported */
419
420 /* DDR @ 0x00000000 */
421 #define CONFIG_SYS_IBAT0L       (CONFIG_SYS_SDRAM_BASE | BATL_PP_10)
422 #define CONFIG_SYS_IBAT0U       (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
423 #define CONFIG_SYS_IBAT1L       ((CONFIG_SYS_SDRAM_BASE + 0x10000000) | BATL_PP_10)
424 #define CONFIG_SYS_IBAT1U       ((CONFIG_SYS_SDRAM_BASE + 0x10000000) | BATU_BL_256M | BATU_VS | BATU_VP)
425
426 /* PCI @ 0x80000000 */
427 #define CONFIG_SYS_IBAT2L       (CONFIG_SYS_PCI1_MEM_BASE | BATL_PP_10)
428 #define CONFIG_SYS_IBAT2U       (CONFIG_SYS_PCI1_MEM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
429 #define CONFIG_SYS_IBAT3L       (CONFIG_SYS_PCI1_MMIO_BASE | BATL_PP_10 | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
430 #define CONFIG_SYS_IBAT3U       (CONFIG_SYS_PCI1_MMIO_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
431
432 /* PCI2 not supported on 8313 */
433 #define CONFIG_SYS_IBAT4L       (0)
434 #define CONFIG_SYS_IBAT4U       (0)
435
436 /* IMMRBAR @ 0xE0000000, PCI IO @ 0xE2000000 */
437 #define CONFIG_SYS_IBAT5L       (CONFIG_SYS_IMMR | BATL_PP_10 | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
438 #define CONFIG_SYS_IBAT5U       (CONFIG_SYS_IMMR | BATU_BL_256M | BATU_VS | BATU_VP)
439
440 /* SDRAM @ 0xF0000000, stack in DCACHE 0xFDF00000 & FLASH @ 0xFE000000 */
441 #define CONFIG_SYS_IBAT6L       (0xF0000000 | BATL_PP_10 | BATL_GUARDEDSTORAGE)
442 #define CONFIG_SYS_IBAT6U       (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
443
444 #define CONFIG_SYS_IBAT7L       (0)
445 #define CONFIG_SYS_IBAT7U       (0)
446
447 #define CONFIG_SYS_DBAT0L       CONFIG_SYS_IBAT0L
448 #define CONFIG_SYS_DBAT0U       CONFIG_SYS_IBAT0U
449 #define CONFIG_SYS_DBAT1L       CONFIG_SYS_IBAT1L
450 #define CONFIG_SYS_DBAT1U       CONFIG_SYS_IBAT1U
451 #define CONFIG_SYS_DBAT2L       CONFIG_SYS_IBAT2L
452 #define CONFIG_SYS_DBAT2U       CONFIG_SYS_IBAT2U
453 #define CONFIG_SYS_DBAT3L       CONFIG_SYS_IBAT3L
454 #define CONFIG_SYS_DBAT3U       CONFIG_SYS_IBAT3U
455 #define CONFIG_SYS_DBAT4L       CONFIG_SYS_IBAT4L
456 #define CONFIG_SYS_DBAT4U       CONFIG_SYS_IBAT4U
457 #define CONFIG_SYS_DBAT5L       CONFIG_SYS_IBAT5L
458 #define CONFIG_SYS_DBAT5U       CONFIG_SYS_IBAT5U
459 #define CONFIG_SYS_DBAT6L       CONFIG_SYS_IBAT6L
460 #define CONFIG_SYS_DBAT6U       CONFIG_SYS_IBAT6U
461 #define CONFIG_SYS_DBAT7L       CONFIG_SYS_IBAT7L
462 #define CONFIG_SYS_DBAT7U       CONFIG_SYS_IBAT7U
463
464 /*
465  * Internal Definitions
466  *
467  * Boot Flags
468  */
469 #define BOOTFLAG_COLD   0x01    /* Normal Power-On: Boot from FLASH */
470 #define BOOTFLAG_WARM   0x02    /* Software reboot */
471
472 /*
473  * Environment Configuration
474  */
475 #define CONFIG_ENV_OVERWRITE
476
477 #define CONFIG_NETDEV           eth1
478
479 #define CONFIG_HOSTNAME         simpc8313
480 #define CONFIG_ROOTPATH         /tftpboot/
481 #define CONFIG_BOOTFILE         /tftpboot/uImage
482 #define CONFIG_UBOOTPATH        u-boot-nand.bin /* U-Boot image on TFTP server */
483 #define CONFIG_FDTFILE          simpc8313.dtb
484
485 #define CONFIG_LOADADDR         500000  /* default location for tftp and bootm */
486 #define CONFIG_BOOTDELAY        5       /* 5 second delay */
487 #define CONFIG_BAUDRATE         115200
488
489 #define CONFIG_BOOTCOMMAND      "nand read $loadaddr kernel 600000;bootm $loadaddr - $fdtaddr"
490
491 #define XMK_STR(x)      #x
492 #define MK_STR(x)       XMK_STR(x)
493
494 #define CONFIG_EXTRA_ENV_SETTINGS \
495         "netdev=" MK_STR(CONFIG_NETDEV) "\0"                            \
496         "ethprime=TSEC1\0"                                              \
497         "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0"                          \
498         "tftpflash=tftpboot $loadaddr $uboot; "                         \
499                 "protect off " MK_STR(TEXT_BASE) " +$filesize; "        \
500                 "erase " MK_STR(TEXT_BASE) " +$filesize; "              \
501                 "cp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize; "      \
502                 "protect on " MK_STR(TEXT_BASE) " +$filesize; "         \
503                 "cmp.b $loadaddr " MK_STR(TEXT_BASE) " $filesize\0"     \
504         "fdtaddr=ae0000\0"                                              \
505         "fdtfile=" MK_STR(CONFIG_FDTFILE) "\0"                          \
506         "console=ttyS0\0"                                               \
507         "setbootargs=setenv bootargs "                                  \
508                 "root=$rootdev rw console=$console,$baudrate $othbootargs\0" \
509         "setipargs=setenv bootargs nfsroot=$serverip:$rootpath "         \
510                 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off " \
511                 "root=$rootdev rw console=$console,$baudrate $othbootargs\0"    \
512         "load_uboot=tftp 100000 u-boot-nand.bin\0"                      \
513         "burn_uboot=nand erase u-boot 80000; "                          \
514                 "nand write 100000 u-boot $filesize\0"                  \
515         "update_uboot=run load_uboot;run burn_uboot\0"                  \
516         "mtdids=nand0=nand0\0"                                          \
517         "mtdparts=mtdparts=nand0:2M(u-boot),6M(kernel),-(jffs2)\0"      \
518         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
519                 "nfsroot=${serverip}:${rootpath}\0"                     \
520         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
521         "addip=setenv bootargs ${bootargs} "                            \
522                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
523                 ":${hostname}:${netdev}:off panic=1\0"                  \
524         "addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate}\0"        \
525         "bootargs=root=/dev/mtdblock2 rootfstype=jffs2 rw "             \
526                 "console=ttyS0,115200\0"                                \
527         ""
528
529 #define CONFIG_NFSBOOTCOMMAND                                           \
530         "setenv rootdev /dev/nfs;"                                      \
531         "run setbootargs;"                                              \
532         "run setipargs;"                                                \
533         "tftp $loadaddr $bootfile;"                                     \
534         "tftp $fdtaddr $fdtfile;"                                       \
535         "bootm $loadaddr - $fdtaddr"
536
537 #define CONFIG_RAMBOOTCOMMAND                                           \
538         "setenv rootdev /dev/ram;"                                      \
539         "run setbootargs;"                                              \
540         "tftp $ramdiskaddr $ramdiskfile;"                               \
541         "tftp $loadaddr $bootfile;"                                     \
542         "tftp $fdtaddr $fdtfile;"                                       \
543         "bootm $loadaddr $ramdiskaddr $fdtaddr"
544
545 #undef MK_STR
546 #undef XMK_STR
547
548 #endif  /* __CONFIG_H */