]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/cpu9260.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / configs / cpu9260.h
CommitLineData
23b80982
TR
1/*
2 * (C) Copyright 2007-2008
c9e798d3 3 * Stelian Pop <stelian@popies.net>
23b80982
TR
4 * Lead Tech Design <www.leadtechdesign.com>
5 * Ilko Iliev <www.ronetix.at>
6 *
7 * (C) Copyright 2009
8 * Eric Benard <eric@eukrea.com>
9 *
10 * Configuration settings for the Eukrea CPU9260 board.
11 *
1a459660 12 * SPDX-License-Identifier: GPL-2.0+
23b80982
TR
13 */
14
15#ifndef __CONFIG_H
16#define __CONFIG_H
17
c2b2a07e
EB
18/* to be removed once maemory-map.h is fixed */
19#define AT91_BASE_SYS 0xffffe800
20#define AT91_DBGU (0xfffff200 - AT91_BASE_SYS)
23b80982 21
7c966a8b 22#define CONFIG_SYS_AT91_MAIN_CLOCK 18432000
23b80982 23#define CONFIG_SYS_HZ 1000
95d50e5c 24#define CONFIG_SYS_AT91_SLOW_CLOCK 32768
23b80982
TR
25
26#if defined(CONFIG_CPU9G20)
c2b2a07e 27#define CONFIG_AT91SAM9G20
23b80982 28#elif defined(CONFIG_CPU9260)
c2b2a07e 29#define CONFIG_AT91SAM9260
23b80982
TR
30#else
31#error "Unknown board"
32#endif
33
95d50e5c
EB
34#include <asm/arch/hardware.h>
35
c2b2a07e 36#define CONFIG_AT91FAMILY
23b80982 37#define CONFIG_ARCH_CPU_INIT
c2b2a07e
EB
38#define CONFIG_DISPLAY_CPUINFO
39#define CONFIG_BOARD_EARLY_INIT_F
23b80982 40
c2b2a07e
EB
41#define CONFIG_CMDLINE_TAG
42#define CONFIG_SETUP_MEMORY_TAGS
43#define CONFIG_INITRD_TAG
44
45#if defined(CONFIG_NANDBOOT)
46#define CONFIG_SKIP_LOWLEVEL_INIT
47#define CONFIG_SYS_TEXT_BASE 0x23f00000
48#else
49#define CONFIG_SYS_TEXT_BASE 0x00000000
50#endif
23b80982
TR
51
52/* clocks */
53#if defined(CONFIG_CPU9G20)
54#define MASTER_PLL_DIV 0x01
55#define MASTER_PLL_MUL 0x2B
56#elif defined(CONFIG_CPU9260)
57#define MASTER_PLL_DIV 0x09
58#define MASTER_PLL_MUL 0x61
59#endif
60
61/* CKGR_MOR - enable main osc. */
62#define CONFIG_SYS_MOR_VAL \
63 (AT91_PMC_MOSCEN | \
64 (255 << 8)) /* Main Oscillator Start-up Time */
65#if defined(CONFIG_CPU9G20)
66#define CONFIG_SYS_PLLAR_VAL \
67 (AT91_PMC_PLLA_WR_ERRATA | /* Bit 29 must be 1 when prog */ \
68 ((MASTER_PLL_MUL - 1) << 16) | (MASTER_PLL_DIV))
69#elif defined(CONFIG_CPU9260)
70#define CONFIG_SYS_PLLAR_VAL \
71 (AT91_PMC_PLLA_WR_ERRATA | /* Bit 29 must be 1 when prog */ \
72 AT91_PMC_OUT | \
73 ((MASTER_PLL_MUL - 1) << 16) | (MASTER_PLL_DIV))
74#endif
75
76#if defined(CONFIG_CPU9G20)
77#define CONFIG_SYS_MCKR1_VAL \
78 (AT91_PMC_CSS_PLLA | \
79 AT91_PMC_PRES_1 | \
80 AT91SAM9_PMC_MDIV_6 | \
81 AT91_PMC_PDIV_2)
82#define CONFIG_SYS_MCKR2_VAL \
83 CONFIG_SYS_MCKR1_VAL
84#elif defined(CONFIG_CPU9260)
85#define CONFIG_SYS_MCKR1_VAL \
86 (AT91_PMC_CSS_SLOW | \
87 AT91_PMC_PRES_1 | \
88 AT91SAM9_PMC_MDIV_2 | \
89 AT91_PMC_PDIV_1)
90#define CONFIG_SYS_MCKR2_VAL \
91 (AT91_PMC_CSS_PLLA | \
92 AT91_PMC_PRES_1 | \
93 AT91SAM9_PMC_MDIV_2 | \
94 AT91_PMC_PDIV_1)
95#endif
96
97/* define PDC[31:16] as DATA[31:16] */
98#define CONFIG_SYS_PIOC_PDR_VAL1 0xFFFF0000
99/* no pull-up for D[31:16] */
100#define CONFIG_SYS_PIOC_PPUDR_VAL 0xFFFF0000
101
102/* EBI_CSA, 3.3V, no pull-ups for D[15:0], CS1 SDRAM, CS3 NAND Flash */
103#define CONFIG_SYS_MATRIX_EBICSA_VAL \
c2b2a07e
EB
104 (AT91_MATRIX_CSA_DBPUC | AT91_MATRIX_CSA_EBI_CS1A | \
105 AT91_MATRIX_CSA_EBI_CS3A | AT91_MATRIX_CSA_VDDIOMSEL_3_3V)
23b80982
TR
106
107/* SDRAM */
108/* SDRAMC_MR Mode register */
109#define CONFIG_SYS_SDRC_MR_VAL1 AT91_SDRAMC_MODE_NORMAL
110/* SDRAMC_TR - Refresh Timer register */
111#define CONFIG_SYS_SDRC_TR_VAL1 0x287
112/* SDRAMC_CR - Configuration register*/
113#if defined(CONFIG_CPU9G20)
114#define CONFIG_SYS_SDRC_CR_VAL_64MB \
115 (AT91_SDRAMC_NC_9 | \
116 AT91_SDRAMC_NR_13 | \
117 AT91_SDRAMC_NB_4 | \
118 AT91_SDRAMC_CAS_2 | \
119 AT91_SDRAMC_DBW_32 | \
120 (2 << 8) | /* Write Recovery Delay */ \
121 (9 << 12) | /* Row Cycle Delay */ \
122 (3 << 16) | /* Row Precharge Delay */ \
123 (3 << 20) | /* Row to Column Delay */ \
124 (6 << 24) | /* Active to Precharge Delay */ \
125 (10 << 28)) /* Exit Self Refresh to Active Delay */
126
127#define CONFIG_SYS_SDRC_CR_VAL_128MB \
128 (AT91_SDRAMC_NC_10 | \
129 AT91_SDRAMC_NR_13 | \
130 AT91_SDRAMC_NB_4 | \
131 AT91_SDRAMC_CAS_2 | \
132 AT91_SDRAMC_DBW_32 | \
133 (2 << 8) | /* Write Recovery Delay */ \
134 (9 << 12) | /* Row Cycle Delay */ \
135 (3 << 16) | /* Row Precharge Delay */ \
136 (3 << 20) | /* Row to Column Delay */ \
137 (6 << 24) | /* Active to Precharge Delay */ \
138 (10 << 28)) /* Exit Self Refresh to Active Delay */
139#elif defined(CONFIG_CPU9260)
140#define CONFIG_SYS_SDRC_CR_VAL_64MB \
141 (AT91_SDRAMC_NC_9 | \
142 AT91_SDRAMC_NR_13 | \
143 AT91_SDRAMC_NB_4 | \
144 AT91_SDRAMC_CAS_2 | \
145 AT91_SDRAMC_DBW_32 | \
146 (2 << 8) | /* Write Recovery Delay */ \
147 (7 << 12) | /* Row Cycle Delay */ \
148 (2 << 16) | /* Row Precharge Delay */ \
149 (2 << 20) | /* Row to Column Delay */ \
150 (5 << 24) | /* Active to Precharge Delay */ \
151 (8 << 28)) /* Exit Self Refresh to Active Delay */
152
153#define CONFIG_SYS_SDRC_CR_VAL_128MB \
154 (AT91_SDRAMC_NC_10 | \
155 AT91_SDRAMC_NR_13 | \
156 AT91_SDRAMC_NB_4 | \
157 AT91_SDRAMC_CAS_2 | \
158 AT91_SDRAMC_DBW_32 | \
159 (2 << 8) | /* Write Recovery Delay */ \
160 (7 << 12) | /* Row Cycle Delay */ \
161 (2 << 16) | /* Row Precharge Delay */ \
162 (2 << 20) | /* Row to Column Delay */ \
163 (5 << 24) | /* Active to Precharge Delay */ \
164 (8 << 28)) /* Exit Self Refresh to Active Delay */
165#endif
166
167/* Memory Device Register -> SDRAM */
168#define CONFIG_SYS_SDRC_MDR_VAL AT91_SDRAMC_MD_SDRAM
169#define CONFIG_SYS_SDRC_MR_VAL2 AT91_SDRAMC_MODE_PRECHARGE
170#define CONFIG_SYS_SDRAM_VAL1 0 /* SDRAM_BASE */
171#define CONFIG_SYS_SDRC_MR_VAL3 AT91_SDRAMC_MODE_REFRESH
172#define CONFIG_SYS_SDRAM_VAL2 0 /* SDRAM_BASE */
173#define CONFIG_SYS_SDRAM_VAL3 0 /* SDRAM_BASE */
174#define CONFIG_SYS_SDRAM_VAL4 0 /* SDRAM_BASE */
175#define CONFIG_SYS_SDRAM_VAL5 0 /* SDRAM_BASE */
176#define CONFIG_SYS_SDRAM_VAL6 0 /* SDRAM_BASE */
177#define CONFIG_SYS_SDRAM_VAL7 0 /* SDRAM_BASE */
178#define CONFIG_SYS_SDRAM_VAL8 0 /* SDRAM_BASE */
179#define CONFIG_SYS_SDRAM_VAL9 0 /* SDRAM_BASE */
180#define CONFIG_SYS_SDRC_MR_VAL4 AT91_SDRAMC_MODE_LMR
181#define CONFIG_SYS_SDRAM_VAL10 0 /* SDRAM_BASE */
182#define CONFIG_SYS_SDRC_MR_VAL5 AT91_SDRAMC_MODE_NORMAL
183#define CONFIG_SYS_SDRAM_VAL11 0 /* SDRAM_BASE */
184#define CONFIG_SYS_SDRC_TR_VAL2 1200 /* SDRAM_TR */
185#define CONFIG_SYS_SDRAM_VAL12 0 /* SDRAM_BASE */
186
187/* setup SMC0, CS0 (NOR Flash) - 16-bit */
188#if defined(CONFIG_CPU9G20)
189#define CONFIG_SYS_SMC0_SETUP0_VAL \
c2b2a07e
EB
190 (AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) | \
191 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0))
23b80982 192#define CONFIG_SYS_SMC0_PULSE0_VAL \
c2b2a07e
EB
193 (AT91_SMC_PULSE_NWE(8) | AT91_SMC_PULSE_NCS_WR(8) | \
194 AT91_SMC_PULSE_NRD(14) | AT91_SMC_PULSE_NCS_RD(14))
23b80982 195#define CONFIG_SYS_SMC0_CYCLE0_VAL \
c2b2a07e 196 (AT91_SMC_CYCLE_NWE(8) | AT91_SMC_CYCLE_NRD(14))
23b80982 197#define CONFIG_SYS_SMC0_MODE0_VAL \
c2b2a07e
EB
198 (AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | \
199 AT91_SMC_MODE_DBW_16 | \
200 AT91_SMC_MODE_TDF | \
201 AT91_SMC_MODE_TDF_CYCLE(3))
23b80982
TR
202#elif defined(CONFIG_CPU9260)
203#define CONFIG_SYS_SMC0_SETUP0_VAL \
c2b2a07e
EB
204 (AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) | \
205 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0))
23b80982 206#define CONFIG_SYS_SMC0_PULSE0_VAL \
c2b2a07e
EB
207 (AT91_SMC_PULSE_NWE(6) | AT91_SMC_PULSE_NCS_WR(6) | \
208 AT91_SMC_PULSE_NRD(10) | AT91_SMC_PULSE_NCS_RD(10))
23b80982 209#define CONFIG_SYS_SMC0_CYCLE0_VAL \
c2b2a07e 210 (AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(10))
23b80982 211#define CONFIG_SYS_SMC0_MODE0_VAL \
c2b2a07e
EB
212 (AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | \
213 AT91_SMC_MODE_DBW_16 | \
214 AT91_SMC_MODE_TDF | \
215 AT91_SMC_MODE_TDF_CYCLE(2))
23b80982
TR
216#endif
217
218/* user reset enable */
219#define CONFIG_SYS_RSTC_RMR_VAL \
220 (AT91_RSTC_KEY | \
c2b2a07e
EB
221 AT91_RSTC_CR_PROCRST | \
222 AT91_RSTC_MR_ERSTL(1) | \
223 AT91_RSTC_MR_ERSTL(2))
23b80982
TR
224
225/* Disable Watchdog */
226#define CONFIG_SYS_WDTC_WDMR_VAL \
c2b2a07e
EB
227 (AT91_WDT_MR_WDIDLEHLT | AT91_WDT_MR_WDDBGHLT | \
228 AT91_WDT_MR_WDV(0xfff) | \
229 AT91_WDT_MR_WDDIS | \
230 AT91_WDT_MR_WDD(0xfff))
23b80982
TR
231
232/*
233 * Hardware drivers
234 */
c2b2a07e
EB
235#define CONFIG_AT91SAM9_WATCHDOG
236#define CONFIG_AT91_GPIO
237#define CONFIG_ATMEL_USART
95d50e5c
EB
238#define CONFIG_USART_BASE ATMEL_BASE_DBGU
239#define CONFIG_USART_ID ATMEL_ID_SYS
23b80982
TR
240
241#define CONFIG_BOOTDELAY 3
242
243/*
244 * BOOTP options
245 */
c2b2a07e
EB
246#define CONFIG_BOOTP_BOOTFILESIZE
247#define CONFIG_BOOTP_BOOTPATH
248#define CONFIG_BOOTP_GATEWAY
249#define CONFIG_BOOTP_HOSTNAME
23b80982
TR
250
251/*
252 * Command line configuration.
253 */
254#include <config_cmd_default.h>
255#undef CONFIG_CMD_BDI
256#undef CONFIG_CMD_IMI
257#undef CONFIG_CMD_FPGA
258#undef CONFIG_CMD_LOADS
259#undef CONFIG_CMD_IMLS
260
c2b2a07e
EB
261#define CONFIG_CMD_PING
262#define CONFIG_CMD_DHCP
263#define CONFIG_CMD_NAND
264#define CONFIG_CMD_USB
265#define CONFIG_CMD_FAT
266#define CONFIG_CMD_MII
23b80982
TR
267
268/* SDRAM */
269#define CONFIG_NR_DRAM_BANKS 1
c2b2a07e 270#define CONFIG_SYS_SDRAM_BASE 0x20000000
23b80982 271#if defined(CONFIG_CPU9260_128M) || defined(CONFIG_CPU9G20_128M)
c2b2a07e 272#define CONFIG_SYS_SDRAM_SIZE (128 * 1024 * 1024)
23b80982
TR
273#define CONFIG_SYS_SDRC_CR_VAL CONFIG_SYS_SDRC_CR_VAL_128MB
274#else
c2b2a07e 275#define CONFIG_SYS_SDRAM_SIZE (64 * 1024 * 1024)
23b80982
TR
276#define CONFIG_SYS_SDRC_CR_VAL CONFIG_SYS_SDRC_CR_VAL_64MB
277#endif
278
279/* NAND flash */
c2b2a07e 280#define CONFIG_NAND_ATMEL
23b80982
TR
281#define CONFIG_SYS_MAX_NAND_DEVICE 1
282#define CONFIG_SYS_NAND_BASE 0x40000000
283#define CONFIG_SYS_NAND_DBW_8 1
c2b2a07e
EB
284#define CONFIG_SYS_NAND_READY_PIN AT91_PIO_PORTC, 13
285#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIO_PORTC, 14
23b80982
TR
286#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
287#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
288
289/* NOR flash */
c2b2a07e
EB
290#if defined(CONFIG_NANDBOOT)
291#define CONFIG_SYS_NO_FLASH
292#else
293#define CONFIG_SYS_FLASH_CFI
294#define CONFIG_FLASH_CFI_DRIVER
23b80982
TR
295#define PHYS_FLASH_1 0x10000000
296#define PHYS_FLASH_2 0x12000000
297#define CONFIG_SYS_FLASH_BANKS_LIST \
298 { PHYS_FLASH_1, PHYS_FLASH_2 }
299#define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
300#define CONFIG_SYS_MAX_FLASH_SECT (255+4)
301#define CONFIG_SYS_MAX_FLASH_BANKS 2
302#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
c2b2a07e
EB
303#define CONFIG_SYS_FLASH_EMPTY_INFO
304#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
305#define CONFIG_SYS_FLASH_PROTECTION
23b80982 306#define CONFIG_SYS_MONITOR_BASE PHYS_FLASH_1
c2b2a07e 307#endif
23b80982
TR
308
309/* Ethernet */
c2b2a07e
EB
310#define CONFIG_MACB
311#define CONFIG_RMII
23b80982 312#define CONFIG_NET_RETRY_COUNT 20
c2b2a07e 313#define CONFIG_MACB_SEARCH_PHY
23b80982
TR
314
315/* LEDS */
316/* Status LED */
c2b2a07e
EB
317#define CONFIG_STATUS_LED
318#define CONFIG_BOARD_SPECIFIC_LED
23b80982
TR
319#define STATUS_LED_RED 0
320#define STATUS_LED_GREEN 1
321#define STATUS_LED_YELLOW 2
322#define STATUS_LED_BLUE 3
323/* Red */
324#define STATUS_LED_BIT STATUS_LED_RED
325#define STATUS_LED_STATE STATUS_LED_OFF
326#define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 2)
327/* Green */
328#define STATUS_LED_BIT1 STATUS_LED_GREEN
329#define STATUS_LED_STATE1 STATUS_LED_OFF
330#define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 2)
331/* Yellow */
332#define STATUS_LED_BIT2 STATUS_LED_YELLOW
333#define STATUS_LED_STATE2 STATUS_LED_OFF
334#define STATUS_LED_PERIOD2 (CONFIG_SYS_HZ / 2)
335/* Blue */
336#define STATUS_LED_BIT3 STATUS_LED_BLUE
337#define STATUS_LED_STATE3 STATUS_LED_ON
338#define STATUS_LED_PERIOD3 (CONFIG_SYS_HZ / 2)
339/* Optional value */
340#define STATUS_LED_BOOT STATUS_LED_BIT
341
c2b2a07e
EB
342#define CONFIG_RED_LED AT91_PIO_PORTC, 11
343#define CONFIG_GREEN_LED AT91_PIO_PORTC, 12
344#define CONFIG_YELLOW_LED AT91_PIO_PORTC, 7
345#define CONFIG_BLUE_LED AT91_PIO_PORTC, 9
23b80982
TR
346
347/* USB */
c2b2a07e
EB
348#define CONFIG_USB_ATMEL
349#define CONFIG_USB_OHCI_NEW
350#define CONFIG_DOS_PARTITION
351#define CONFIG_SYS_USB_OHCI_CPU_INIT
23b80982 352#define CONFIG_SYS_USB_OHCI_REGS_BASE 0x00500000
c2b2a07e
EB
353#if defined(CONFIG_CPU9G20)
354#define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91sam9g20"
355#elif defined(CONFIG_CPU9260)
23b80982 356#define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91sam9260"
c2b2a07e 357#endif
23b80982 358#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
c2b2a07e 359#define CONFIG_USB_STORAGE
23b80982
TR
360
361#define CONFIG_SYS_LOAD_ADDR 0x21000000
c2b2a07e 362#define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
23b80982 363
c2b2a07e
EB
364#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
365#define CONFIG_SYS_MEMTEST_END \
366 (CONFIG_SYS_MEMTEST_START + CONFIG_SYS_SDRAM_SIZE - 512 * 1024)
23b80982 367
c2b2a07e
EB
368#if defined(CONFIG_NANDBOOT)
369#define CONFIG_SYS_USE_NANDFLASH
370#undef CONFIG_SYS_USE_FLASH
371#else
372#define CONFIG_SYS_USE_FLASH
23b80982 373#undef CONFIG_SYS_USE_NANDFLASH
c2b2a07e
EB
374#endif
375
376#if defined(CONFIG_CPU9G20)
377#define CONFIG_SYS_BASEDIR "cpu9G20"
378#elif defined(CONFIG_CPU9260)
379#define CONFIG_SYS_BASEDIR "cpu9260"
380#endif
23b80982
TR
381
382#if defined(CONFIG_SYS_USE_FLASH)
c2b2a07e 383#define CONFIG_ENV_IS_IN_FLASH
23b80982
TR
384#define CONFIG_ENV_OFFSET 0x40000
385#define CONFIG_ENV_SECT_SIZE 0x20000
386#define CONFIG_ENV_SIZE 0x20000
c2b2a07e 387#define CONFIG_ENV_OVERWRITE
23b80982
TR
388
389#define CONFIG_BOOTCOMMAND "run flashboot"
390
c2b2a07e 391#define MTDIDS_DEFAULT "nor0=physmap-flash.0,nand0=atmel_nand"
23b80982
TR
392#define MTDPARTS_DEFAULT \
393 "mtdparts=physmap-flash.0:" \
394 "256k(u-boot)ro," \
395 "128k(u-boot-env)ro," \
396 "1792k(kernel)," \
397 "-(rootfs);" \
398 "atmel_nand:-(nand)"
399
400#define CONFIG_BOOTARGS "root=/dev/mtdblock3 rootfstype=jffs2 "
401
23b80982
TR
402#define CONFIG_EXTRA_ENV_SETTINGS \
403 "mtdids=" MTDIDS_DEFAULT "\0" \
404 "mtdparts=" MTDPARTS_DEFAULT "\0" \
405 "partition=nand0,0\0" \
406 "ramargs=setenv bootargs $(bootargs) $(mtdparts)\0" \
c2b2a07e 407 "ramboot=tftpboot 0x22000000 $(basedir)/uImage;" \
23b80982
TR
408 "run ramargs;bootm 22000000\0" \
409 "flashboot=run ramargs;bootm 0x10060000\0" \
410 "basedir=" CONFIG_SYS_BASEDIR "\0" \
411 "updtub=tftp 0x24000000 $(basedir)/u-boot.bin;protect " \
412 "off 0x10000000 0x1003ffff;erase 0x10000000 " \
413 "0x1003ffff;cp.b 0x24000000 0x10000000 " \
414 "$(filesize)\0" \
415 "updtui=tftp 0x24000000 $(basedir)/uImage;protect off" \
416 " 0x10060000 0x1021ffff;erase 0x10060000 " \
417 "0x1021ffff;cp.b 0x24000000 0x10060000 " \
418 "$(filesize)\0" \
419 "updtrfs=tftp 0x24000000 $(basedir)/rootfs.jffs2; " \
420 "protect off 0x10220000 0x13ffffff;erase " \
421 "0x10220000 0x13ffffff;cp.b 0x24000000 " \
422 "0x10220000 $(filesize)\0" \
423 ""
c2b2a07e
EB
424#elif defined(CONFIG_NANDBOOT)
425#define CONFIG_ENV_IS_IN_NAND
426#define CONFIG_ENV_OFFSET 0x60000
427#define CONFIG_ENV_OFFSET_REDUND 0x80000
428#define CONFIG_ENV_SECT_SIZE 0x20000
429#define CONFIG_ENV_SIZE 0x20000
430#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
431#define CONFIG_ENV_OVERWRITE
432
433#define CONFIG_BOOTCOMMAND "run flashboot"
434
435#define MTDIDS_DEFAULT "nand0=atmel_nand"
436#define MTDPARTS_DEFAULT \
437 "mtdparts=atmel_nand:" \
438 "128k(bootstrap)ro," \
439 "256k(u-boot)ro," \
440 "128k(u-boot-env)ro," \
441 "128k(u-boot-env2)ro," \
442 "2M(kernel)," \
443 "-(rootfs)"
444
445#define CONFIG_BOOTARGS "root=ubi0:eukrea-cpu9260-rootfs " \
446 "ubi.mtd=5 rootfstype=ubifs at91sam9_wdt.heartbeat=60"
447
448#define CONFIG_EXTRA_ENV_SETTINGS \
449 "mtdids=" MTDIDS_DEFAULT "\0" \
450 "mtdparts=" MTDPARTS_DEFAULT "\0" \
451 "partition=nand0,5\0" \
452 "ramargs=setenv bootargs $(bootargs) $(mtdparts)\0" \
453 "ramboot=tftpboot 0x22000000 $(basedir)/uImage;" \
454 "run ramargs;bootm 22000000\0" \
455 "flashboot=run ramargs; nand read 0x22000000 0xA0000 " \
456 "0x200000; bootm 0x22000000\0" \
457 "basedir=" CONFIG_SYS_BASEDIR "\0" \
458 "u-boot=u-boot-eukrea-cpu9260.bin\0" \
459 "kernel=uImage-eukrea-cpu9260.bin\0" \
460 "rootfs=image-eukrea-cpu9260.ubi\0" \
461 "updtub=tftp ${loadaddr} $(basedir)/${u-boot}; " \
462 "nand erase 20000 40000; " \
463 "nand write ${loadaddr} 20000 40000\0" \
464 "updtui=tftp ${loadaddr} $(basedir)/${kernel}; " \
465 "nand erase a0000 200000; " \
466 "nand write ${loadaddr} a0000 200000\0" \
467 "updtrfs=tftp ${loadaddr} $(basedir)/${rootfs}; " \
468 "nand erase 2a0000 fd60000; " \
469 "nand write ${loadaddr} 2a0000 ${filesize}\0"
23b80982
TR
470#endif
471
472#define CONFIG_BAUDRATE 115200
23b80982
TR
473
474#if defined(CONFIG_CPU9G20)
475#define CONFIG_SYS_PROMPT "CPU9G20=> "
476#elif defined(CONFIG_CPU9260)
477#define CONFIG_SYS_PROMPT "CPU9260=> "
478#endif
479#define CONFIG_SYS_CBSIZE 256
480#define CONFIG_SYS_MAXARGS 16
481#define CONFIG_SYS_PBSIZE \
482 (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
c2b2a07e
EB
483#define CONFIG_SYS_LONGHELP
484#define CONFIG_CMDLINE_EDITING
485#define CONFIG_SILENT_CONSOLE
486#define CONFIG_NETCONSOLE
23b80982
TR
487
488/*
489 * Size of malloc() pool
490 */
491#define CONFIG_SYS_MALLOC_LEN \
492 ROUND(3 * CONFIG_ENV_SIZE + 128 * 1024, 0x1000)
23b80982 493
c2b2a07e
EB
494#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 4 * 1024 - \
495 GENERATED_GBL_DATA_SIZE)
496
23b80982 497#endif