blob: 5c2c73ad4bc0f700ced27596408a4c2a03e489d3 [file] [log] [blame]
Jens Scharsig77e72732010-02-03 22:48:09 +01001/*
2 * (C) Copyright 2008-2009
3 * BuS Elektronik GmbH & Co. KG <www.bus-elektronik.de>
4 * Jens Scharsig <esw@bus-elektronik.de>
5 *
6 * Configuation settings for the EB+CPUx9K2 board.
7 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Jens Scharsig77e72732010-02-03 22:48:09 +01009 */
10
11#ifndef _CONFIG_EB_CPUx9K2_H_
12#define _CONFIG_EB_CPUx9K2_H_
13
14/*--------------------------------------------------------------------------*/
15
Jens Scharsig80733992011-02-19 06:17:02 +000016#define CONFIG_AT91RM9200 /* It's an Atmel AT91RM9200 SoC */
17#define CONFIG_EB_CPUX9K2 /* on an EP+CPUX9K2 Board */
18#define USE_920T_MMU
Jens Scharsig77e72732010-02-03 22:48:09 +010019
Jens Scharsig80733992011-02-19 06:17:02 +000020#define CONFIG_VERSION_VARIABLE
Jens Scharsig77e72732010-02-03 22:48:09 +010021#define CONFIG_IDENT_STRING " on EB+CPUx9K2"
22
Andreas Bießmann6a372e92011-06-12 01:49:12 +000023#include <asm/hardware.h> /* needed for port definitions */
Jens Scharsig77e72732010-02-03 22:48:09 +010024
25#define CONFIG_MISC_INIT_R
Andreas Bießmann5a05cb72011-06-12 01:49:15 +000026#define CONFIG_BOARD_EARLY_INIT_F
Jens Scharsig77e72732010-02-03 22:48:09 +010027
Jens Scharsig2026a112011-10-31 08:52:22 +000028#define MACH_TYPE_EB_CPUX9K2 1977
29#define CONFIG_MACH_TYPE MACH_TYPE_EB_CPUX9K2
Jens Scharsig (BuS Elektronik)cc69cc02012-10-18 21:41:10 +000030
31#define CONFIG_SYS_CACHELINE_SIZE 32
32#define CONFIG_SYS_DCACHE_OFF
33
Jens Scharsig77e72732010-02-03 22:48:09 +010034/*--------------------------------------------------------------------------*/
Jens Scharsig503e1592012-09-03 21:37:06 +000035#ifndef CONFIG_RAMBOOT
36#define CONFIG_SYS_TEXT_BASE 0x00000000
37#else
38#define CONFIG_SKIP_LOWLEVEL_INIT
Jens Scharsig (BuS Elektronik)f89a6ee2013-10-28 10:58:15 +010039#define CONFIG_SYS_TEXT_BASE 0x21800000
Jens Scharsig503e1592012-09-03 21:37:06 +000040#endif
Jens Scharsig77e72732010-02-03 22:48:09 +010041#define CONFIG_SYS_LOAD_ADDR 0x21000000 /* default load address */
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +020042#define CONFIG_STANDALONE_LOAD_ADDR 0x21000000
Jens Scharsig77e72732010-02-03 22:48:09 +010043
44#define CONFIG_SYS_BOOT_SIZE 0x00 /* 0 KBytes */
45#define CONFIG_SYS_U_BOOT_BASE PHYS_FLASH_1
46#define CONFIG_SYS_U_BOOT_SIZE 0x60000 /* 384 KBytes */
47
Jens Scharsig77e72732010-02-03 22:48:09 +010048#define CONFIG_BOOT_RETRY_TIME 30
49#define CONFIG_CMDLINE_EDITING
50
51#define CONFIG_SYS_PROMPT "U-Boot> " /* Monitor Command Prompt */
52#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
53#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
54#define CONFIG_SYS_PBSIZE \
55 (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
56
Jens Scharsig77e72732010-02-03 22:48:09 +010057/*
58 * ARM asynchronous clock
59 */
60
61#define AT91C_MAIN_CLOCK 179404800 /* from 12.288 MHz * 73 / 5 */
62#define AT91C_MASTER_CLOCK (AT91C_MAIN_CLOCK / 3)
63#define CONFIG_SYS_HZ 1000
64#define CONFIG_SYS_HZ_CLOCK (AT91C_MASTER_CLOCK / 2)
65
Andreas Bießmann6a372e92011-06-12 01:49:12 +000066#define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock */
Jens Scharsig77e72732010-02-03 22:48:09 +010067
68#define CONFIG_CMDLINE_TAG 1
69#define CONFIG_SETUP_MEMORY_TAGS 1
70#define CONFIG_INITRD_TAG 1
71
72#define CONFIG_SYS_USE_MAIN_OSCILLATOR 1
73/* flash */
74#define CONFIG_SYS_EBI_CFGR_VAL 0x00000000
75#define CONFIG_SYS_SMC_CSR0_VAL 0x00003284 /* 16bit, 2 TDF, 4 WS */
76
77/* clocks */
78#define CONFIG_SYS_PLLAR_VAL 0x20483E05 /* 179.4048 MHz for PCK */
79#define CONFIG_SYS_PLLBR_VAL 0x104C3E0A /* 47.3088 MHz (for USB) */
80#define CONFIG_SYS_MCKR_VAL 0x00000202 /* PCK/3 = MCK Clock */
81
82/*
83 * Size of malloc() pool
84 */
85
Jens Scharsig (BuS Elektronik)db824472013-09-19 08:00:41 +020086#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
Jens Scharsig77e72732010-02-03 22:48:09 +010087
88/*
89 * sdram
90 */
91
92#define CONFIG_NR_DRAM_BANKS 1
Jens Scharsig77e72732010-02-03 22:48:09 +010093
Jens Scharsigcebcf7d2010-10-19 19:37:15 +020094#define CONFIG_SYS_SDRAM_BASE 0x20000000
95#define CONFIG_SYS_SDRAM_SIZE 0x04000000 /* 64 megs */
96#define CONFIG_SYS_INIT_SP_ADDR 0x00204000 /* use internal SRAM */
97
98#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
Jens Scharsig77e72732010-02-03 22:48:09 +010099#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + \
Jens Scharsigcebcf7d2010-10-19 19:37:15 +0200100 CONFIG_SYS_SDRAM_SIZE - 0x00400000 - \
Jens Scharsig77e72732010-02-03 22:48:09 +0100101 CONFIG_SYS_MALLOC_LEN)
102
103#define CONFIG_SYS_PIOC_ASR_VAL 0xFFFF0000 /* PIOC as D16/D31 */
104#define CONFIG_SYS_PIOC_BSR_VAL 0x00000000
105#define CONFIG_SYS_PIOC_PDR_VAL 0xFFFF0000
106#define CONFIG_SYS_EBI_CSA_VAL 0x00000002 /* CS1=SDRAM */
107#define CONFIG_SYS_SDRC_CR_VAL 0x2188c159 /* set up the SDRAM */
108#define CONFIG_SYS_SDRAM 0x20000000 /* address of the SDRAM */
109#define CONFIG_SYS_SDRAM1 0x20000080 /* address of the SDRAM */
110#define CONFIG_SYS_SDRAM_VAL 0x00000000 /* value written to SDRAM */
111#define CONFIG_SYS_SDRC_MR_VAL 0x00000002 /* Precharge All */
112#define CONFIG_SYS_SDRC_MR_VAL1 0x00000004 /* refresh */
113#define CONFIG_SYS_SDRC_MR_VAL2 0x00000003 /* Load Mode Register */
114#define CONFIG_SYS_SDRC_MR_VAL3 0x00000000 /* Normal Mode */
115#define CONFIG_SYS_SDRC_TR_VAL 0x000002E0 /* Write refresh rate */
116
117/*
118 * Command line configuration
119 */
120
121#include <config_cmd_default.h>
122
123#define CONFIG_CMD_BMP
124#define CONFIG_CMD_DATE
125#define CONFIG_CMD_DHCP
126#define CONFIG_CMD_I2C
Jens Scharsig77e72732010-02-03 22:48:09 +0100127#define CONFIG_CMD_MII
128#define CONFIG_CMD_NAND
129#define CONFIG_CMD_PING
Jens Scharsig77e72732010-02-03 22:48:09 +0100130#define CONFIG_I2C_CMD_TREE
Jens Scharsig0d620322011-07-11 09:25:42 +0000131#define CONFIG_CMD_USB
132#define CONFIG_CMD_FAT
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200133#define CONFIG_CMD_UBI
134#define CONFIG_CMD_MTDPARTS
135#define CONFIG_CMD_UBIFS
Jens Scharsig (BuS Elektronik)f89a6ee2013-10-28 10:58:15 +0100136
Jens Scharsig77e72732010-02-03 22:48:09 +0100137#define CONFIG_SYS_LONGHELP
138
139/*
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200140 * MTD defines
Jens Scharsig77e72732010-02-03 22:48:09 +0100141 */
142
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200143#define CONFIG_FLASH_CFI_MTD
144#define CONFIG_MTD_DEVICE
145#define CONFIG_MTD_PARTITIONS
146#define CONFIG_RBTREE
147#define CONFIG_LZO
Jens Scharsig77e72732010-02-03 22:48:09 +0100148
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200149#define MTDIDS_DEFAULT "nor0=physmap-flash.0,nand0=atmel_nand"
Jens Scharsig77e72732010-02-03 22:48:09 +0100150#define MTDPARTS_DEFAULT "mtdparts=" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200151 "physmap-flash.0:" \
152 "512k(U-Boot)," \
153 "128k(Env)," \
154 "128k(Splash)," \
155 "4M(Kernel)," \
156 "384k(MiniFS)," \
157 "-(FS)" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100158 ";" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200159 "atmel_nand:" \
160 "1M(emergency)," \
161 "-(data)"
Jens Scharsig77e72732010-02-03 22:48:09 +0100162/*
163 * Hardware drivers
164 */
Jens Scharsig0d620322011-07-11 09:25:42 +0000165#define CONFIG_USB_ATMEL
Bo Shendcd2f1a2013-10-21 16:14:00 +0800166#define CONFIG_USB_ATMEL_CLK_SEL_PLLB
Jens Scharsig0d620322011-07-11 09:25:42 +0000167#define CONFIG_USB_OHCI_NEW
168#define CONFIG_AT91C_PQFP_UHPBUG
169#define CONFIG_USB_STORAGE
170#define CONFIG_DOS_PARTITION
171#define CONFIG_ISO_PARTITION
172#define CONFIG_EFI_PARTITION
173
174#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
175#define CONFIG_SYS_USB_OHCI_CPU_INIT
176#define CONFIG_SYS_USB_OHCI_REGS_BASE 0x00300000
177#define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91rm9200"
Jens Scharsig77e72732010-02-03 22:48:09 +0100178
179/*
180 * UART/CONSOLE
181 */
182
Jens Scharsig77e72732010-02-03 22:48:09 +0100183#define CONFIG_BAUDRATE 115200
Andreas Bießmann5a05cb72011-06-12 01:49:15 +0000184#define CONFIG_ATMEL_USART
185#define CONFIG_USART_BASE ATMEL_BASE_DBGU
186#define CONFIG_USART_ID 0/* ignored in arm */
Jens Scharsig77e72732010-02-03 22:48:09 +0100187
188/*
189 * network
190 */
Jens Scharsig77e72732010-02-03 22:48:09 +0100191
192#define CONFIG_NET_RETRY_COUNT 10
193#define CONFIG_RESET_PHY_R 1
194
195#define CONFIG_DRIVER_AT91EMAC 1
196#define CONFIG_DRIVER_AT91EMAC_QUIET 1
197#define CONFIG_SYS_RX_ETH_BUFFER 8
198#define CONFIG_MII 1
199
200/*
201 * BOOTP options
202 */
203#define CONFIG_BOOTP_BOOTFILESIZE
204#define CONFIG_BOOTP_BOOTPATH
205#define CONFIG_BOOTP_GATEWAY
206#define CONFIG_BOOTP_HOSTNAME
207
208/*
209 * I2C-Bus
210 */
211
Heiko Schocherea818db2013-01-29 08:53:15 +0100212#define CONFIG_SYS_I2C
213#define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */
214#define CONFIG_SYS_I2C_SOFT_SPEED 50000
215#define CONFIG_SYS_I2C_SOFT_SLAVE 0
Jens Scharsig77e72732010-02-03 22:48:09 +0100216
217/* Software I2C driver configuration */
218
219#define AT91_PIN_SDA (1<<25) /* AT91C_PIO_PA25 */
220#define AT91_PIN_SCL (1<<26) /* AT91C_PIO_PA26 */
221
222#define CONFIG_SYS_I2C_INIT_BOARD
223
224#define I2C_INIT i2c_init_board();
Jens Scharsig80733992011-02-19 06:17:02 +0000225#define I2C_ACTIVE writel(ATMEL_PMX_AA_TWD, &pio->pioa.mddr);
226#define I2C_TRISTATE writel(ATMEL_PMX_AA_TWD, &pio->pioa.mder);
227#define I2C_READ ((readl(&pio->pioa.pdsr) & ATMEL_PMX_AA_TWD) != 0)
Jens Scharsig77e72732010-02-03 22:48:09 +0100228#define I2C_SDA(bit) \
229 if (bit) \
Jens Scharsig80733992011-02-19 06:17:02 +0000230 writel(ATMEL_PMX_AA_TWD, &pio->pioa.sodr); \
Jens Scharsig77e72732010-02-03 22:48:09 +0100231 else \
Jens Scharsig80733992011-02-19 06:17:02 +0000232 writel(ATMEL_PMX_AA_TWD, &pio->pioa.codr);
Jens Scharsig77e72732010-02-03 22:48:09 +0100233#define I2C_SCL(bit) \
234 if (bit) \
Jens Scharsig80733992011-02-19 06:17:02 +0000235 writel(ATMEL_PMX_AA_TWCK, &pio->pioa.sodr); \
Jens Scharsig77e72732010-02-03 22:48:09 +0100236 else \
Jens Scharsig80733992011-02-19 06:17:02 +0000237 writel(ATMEL_PMX_AA_TWCK, &pio->pioa.codr);
Jens Scharsig77e72732010-02-03 22:48:09 +0100238
Heiko Schocherea818db2013-01-29 08:53:15 +0100239#define I2C_DELAY udelay(2500000/CONFIG_SYS_I2C_SOFT_SPEED)
Jens Scharsig77e72732010-02-03 22:48:09 +0100240
241/* I2C-RTC */
242
243#ifdef CONFIG_CMD_DATE
244#define CONFIG_RTC_DS1338
245#define CONFIG_SYS_I2C_RTC_ADDR 0x68
246#endif
247
248/* EEPROM */
249
250#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2
251#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50
252
253/* FLASH organization */
254
255/* NOR-FLASH */
Jens Scharsigcebcf7d2010-10-19 19:37:15 +0200256#define CONFIG_FLASH_SHOW_PROGRESS 45
Jens Scharsig77e72732010-02-03 22:48:09 +0100257
258#define CONFIG_FLASH_CFI_DRIVER 1
259
260#define PHYS_FLASH_1 0x10000000
261#define PHYS_FLASH_SIZE 0x01000000 /* 16 megs main flash */
262#define CONFIG_SYS_FLASH_CFI 1
263#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
264
265#define CONFIG_SYS_FLASH_PROTECTION 1
266#define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
267#define CONFIG_SYS_MAX_FLASH_BANKS 1
268#define CONFIG_SYS_MAX_FLASH_SECT 512
269#define CONFIG_SYS_FLASH_ERASE_TOUT 6000
270#define CONFIG_SYS_FLASH_WRITE_TOUT 2000
271
272/* NAND */
273
Jens Scharsig77e72732010-02-03 22:48:09 +0100274#define CONFIG_SYS_MAX_NAND_DEVICE 1
275#define CONFIG_SYS_NAND_BASE 0x40000000
276#define CONFIG_SYS_NAND_DBW_8 1
277
Jens Scharsig77e72732010-02-03 22:48:09 +0100278/* Status LED's */
279
280#define CONFIG_STATUS_LED 1
281#define CONFIG_BOARD_SPECIFIC_LED 1
282
283#define STATUS_LED_BOOT 1
284#define STATUS_LED_ACTIVE 0
285
286#define STATUS_LED_BIT 1 /* AT91C_PIO_PD0 green LED */
287#define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
288#define STATUS_LED_STATE STATUS_LED_OFF /* BLINKING */
289#define STATUS_LED_BIT1 2 /* AT91C_PIO_PD1 red LED */
290#define STATUS_LED_STATE1 STATUS_LED_ON /* BLINKING */
291#define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 4)
292
293#define CONFIG_VIDEO 1
294
295/* Options */
296
297#ifdef CONFIG_VIDEO
298
299#define CONFIG_VIDEO_VCXK 1
300
301#define CONFIG_SPLASH_SCREEN 1
302
303#define CONFIG_SYS_VCXK_DEFAULT_LINEALIGN 4
304#define CONFIG_SYS_VCXK_BASE 0x30000000
305
306#define CONFIG_SYS_VCXK_ACKNOWLEDGE_PIN (1<<3)
307#define CONFIG_SYS_VCXK_ACKNOWLEDGE_PORT piob
308#define CONFIG_SYS_VCXK_ACKNOWLEDGE_DDR odr
309
310#define CONFIG_SYS_VCXK_ENABLE_PIN (1<<5)
311#define CONFIG_SYS_VCXK_ENABLE_PORT piob
312#define CONFIG_SYS_VCXK_ENABLE_DDR oer
313
314#define CONFIG_SYS_VCXK_REQUEST_PIN (1<<2)
315#define CONFIG_SYS_VCXK_REQUEST_PORT piob
316#define CONFIG_SYS_VCXK_REQUEST_DDR oer
317
318#define CONFIG_SYS_VCXK_INVERT_PIN (1<<4)
319#define CONFIG_SYS_VCXK_INVERT_PORT piob
320#define CONFIG_SYS_VCXK_INVERT_DDR oer
321
322#define CONFIG_SYS_VCXK_RESET_PIN (1<<6)
323#define CONFIG_SYS_VCXK_RESET_PORT piob
324#define CONFIG_SYS_VCXK_RESET_DDR oer
325
326#endif /* CONFIG_VIDEO */
327
328/* Environment */
329
330#define CONFIG_BOOTDELAY 5
331
332#define CONFIG_ENV_IS_IN_FLASH 1
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200333#define CONFIG_ENV_ADDR (PHYS_FLASH_1 + 0x80000)
Jens Scharsig77e72732010-02-03 22:48:09 +0100334#define CONFIG_ENV_SIZE 0x20000 /* sectors are 128K here */
335
336#define CONFIG_BAUDRATE 115200
337
338#define CONFIG_BOOTCOMMAND "run nfsboot"
339
340#define CONFIG_NFSBOOTCOMMAND \
341 "dhcp $(copy_addr) uImage_cpux9k2;" \
342 "run bootargsdefaults;" \
343 "set bootargs $(bootargs) boot=nfs " \
344 ";echo $(bootargs)" \
345 ";bootm"
346
347#define CONFIG_EXTRA_ENV_SETTINGS \
348 "displaywidth=256\0" \
349 "displayheight=512\0" \
350 "displaybsteps=1023\0" \
351 "ubootaddr=10000000\0" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200352 "splashimage=100A0000\0" \
353 "kerneladdr=100C0000\0" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100354 "kernelsize=00400000\0" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200355 "rootfsaddr=10520000\0" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100356 "copy_addr=21200000\0" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200357 "rootfssize=00AE0000\0" \
358 "mtdids=" MTDIDS_DEFAULT "\0" \
359 "mtdparts=" MTDPARTS_DEFAULT "\0" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100360 "bootargsdefaults=set bootargs " \
361 "console=ttyS0,115200 " \
362 "video=vcxk_fb:xres:${displaywidth}," \
363 "yres:${displayheight}," \
364 "bres:${displaybsteps} " \
365 "mem=62M " \
366 "panic=10 " \
367 "uboot=\\\"${ver}\\\" " \
368 "\0" \
369 "update_kernel=protect off $(kerneladdr) +$(kernelsize);" \
370 "dhcp $(copy_addr) uImage_cpux9k2;" \
371 "erase $(kerneladdr) +$(kernelsize);" \
372 "cp.b $(fileaddr) $(kerneladdr) $(filesize);" \
373 "protect on $(kerneladdr) +$(kernelsize)" \
374 "\0" \
375 "update_root=protect off $(rootfsaddr) +$(rootfssize);" \
376 "dhcp $(copy_addr) rfs;" \
377 "erase $(rootfsaddr) +$(rootfssize);" \
378 "cp.b $(fileaddr) $(rootfsaddr) $(filesize);" \
379 "\0" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200380 "update_uboot=protect off 10000000 1007FFFF;" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100381 "dhcp $(copy_addr) u-boot_eb_cpux9k2;" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200382 "erase 10000000 1007FFFF;" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100383 "cp.b $(fileaddr) $(ubootaddr) $(filesize);" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200384 "protect on 10000000 1007FFFF;reset\0" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100385 "update_splash=protect off $(splashimage) +20000;" \
386 "dhcp $(copy_addr) splash_eb_cpux9k2.bmp;" \
387 "erase $(splashimage) +20000;" \
Jens Scharsig (BuS Elektronik)bc695892013-08-22 08:11:23 +0200388 "cp.b $(fileaddr) $(splashimage) $(filesize);" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100389 "protect on $(splashimage) +20000;reset\0" \
390 "emergency=run bootargsdefaults;" \
391 "set bootargs $(bootargs) root=initramfs boot=emergency " \
392 ";bootm $(kerneladdr)\0" \
393 "netemergency=run bootargsdefaults;" \
394 "dhcp $(copy_addr) uImage_cpux9k2;" \
395 "set bootargs $(bootargs) root=initramfs boot=emergency " \
396 ";bootm $(copy_addr)\0" \
397 "norboot=run bootargsdefaults;" \
398 "set bootargs $(bootargs) root=initramfs boot=local " \
399 ";bootm $(kerneladdr)\0" \
400 "nandboot=run bootargsdefaults;" \
401 "set bootargs $(bootargs) root=initramfs boot=nand " \
402 ";bootm $(kerneladdr)\0" \
Jens Scharsig77e72732010-02-03 22:48:09 +0100403 " "
404
405/*--------------------------------------------------------------------------*/
406
407#endif
408
409/* EOF */