blob: e98cf0ca5c5e3e4ab2d1f0da4e7925eb0f782ab2 [file] [log] [blame]
Stelian Pop0176d432008-03-26 18:52:33 +01001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Stelian Pop0176d432008-03-26 18:52:33 +01004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Nicolas Ferredf486b12009-03-22 14:48:16 +01006 * Configuation settings for the AT91SAM9260EK & AT91SAM9G20EK boards.
Stelian Pop0176d432008-03-26 18:52:33 +01007 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Stelian Pop0176d432008-03-26 18:52:33 +01009 */
10
11#ifndef __CONFIG_H
12#define __CONFIG_H
13
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000014/*
15 * SoC must be defined first, before hardware.h is included.
16 * In this case SoC is defined in boards.cfg.
17 */
18#include <asm/hardware.h>
Stelian Pop0176d432008-03-26 18:52:33 +010019
20/*
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000021 * Warning: changing CONFIG_SYS_TEXT_BASE requires
22 * adapting the initial boot program.
23 * Since the linker has to swallow that define, we must use a pure
24 * hex number here!
Stelian Pop0176d432008-03-26 18:52:33 +010025 */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000026#define CONFIG_SYS_TEXT_BASE 0x21f00000
27
28/* ARM asynchronous clock */
29#define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */
30#define CONFIG_SYS_AT91_MAIN_CLOCK 18432000 /* main clock xtal */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000031
32/* Define actual evaluation board type from used processor type */
33#ifdef CONFIG_AT91SAM9G20
34# define CONFIG_AT91SAM9G20EK /* It's an Atmel AT91SAM9G20 EK */
35#else
36# define CONFIG_AT91SAM9260EK /* It's an Atmel AT91SAM9260 EK */
37#endif
38
39/* Misc CPU related */
40#define CONFIG_ARCH_CPU_INIT
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000041#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
42#define CONFIG_SETUP_MEMORY_TAGS
43#define CONFIG_INITRD_TAG
44#define CONFIG_SKIP_LOWLEVEL_INIT
45#define CONFIG_BOARD_EARLY_INIT_F
46#define CONFIG_DISPLAY_CPUINFO
47
Nicolas Ferref9129fe2013-02-20 00:16:24 +000048#define CONFIG_CMD_BOOTZ
Nicolas Ferre36873e72013-02-20 00:16:23 +000049#define CONFIG_OF_LIBFDT
50
Bo Shen59158ba2014-10-22 18:01:23 +080051#define CONFIG_SYS_GENERIC_BOARD
52
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000053/* general purpose I/O */
54#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
55#define CONFIG_AT91_GPIO
56#define CONFIG_AT91_GPIO_PULLUP 1 /* keep pullups on peripheral pins */
57
58/* serial console */
59#define CONFIG_ATMEL_USART
60#define CONFIG_USART_BASE ATMEL_BASE_DBGU
61#define CONFIG_USART_ID ATMEL_ID_SYS
62#define CONFIG_BAUDRATE 115200
Stelian Pop0176d432008-03-26 18:52:33 +010063
Jean-Christophe PLAGNIOL-VILLARDa484b002009-03-21 21:08:00 +010064/* LED */
65#define CONFIG_AT91_LED
66#define CONFIG_RED_LED AT91_PIN_PA9 /* this is the power led */
67#define CONFIG_GREEN_LED AT91_PIN_PA6 /* this is the user led */
68
Stelian Pop0176d432008-03-26 18:52:33 +010069#define CONFIG_BOOTDELAY 3
Stelian Pop0176d432008-03-26 18:52:33 +010070
Stelian Pop0176d432008-03-26 18:52:33 +010071/*
72 * BOOTP options
73 */
74#define CONFIG_BOOTP_BOOTFILESIZE 1
75#define CONFIG_BOOTP_BOOTPATH 1
76#define CONFIG_BOOTP_GATEWAY 1
77#define CONFIG_BOOTP_HOSTNAME 1
78
79/*
80 * Command line configuration.
81 */
Stelian Pop0176d432008-03-26 18:52:33 +010082#define CONFIG_CMD_PING 1
83#define CONFIG_CMD_DHCP 1
84#define CONFIG_CMD_NAND 1
Wu, Josha73267a2013-03-28 20:28:41 +000085#define CONFIG_CMD_FAT
Stelian Pop0176d432008-03-26 18:52:33 +010086#define CONFIG_CMD_USB 1
87
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000088/*
89 * SDRAM: 1 bank, min 32, max 128 MB
90 * Initialized before u-boot gets started.
91 */
Stelian Pop0176d432008-03-26 18:52:33 +010092#define CONFIG_NR_DRAM_BANKS 1
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000093#define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1
94#define CONFIG_SYS_SDRAM_SIZE 0x04000000
95
96/*
97 * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM,
98 * leaving the correct space for initial global data structure above
99 * that address while providing maximum stack area below.
100 */
101#ifdef CONFIG_AT91SAM9XE
102# define CONFIG_SYS_INIT_SP_ADDR \
103 (ATMEL_BASE_SRAM + 0x1000 - GENERATED_GBL_DATA_SIZE)
104#else
105# define CONFIG_SYS_INIT_SP_ADDR \
106 (ATMEL_BASE_SRAM1 + 0x1000 - GENERATED_GBL_DATA_SIZE)
107#endif
Stelian Pop0176d432008-03-26 18:52:33 +0100108
Andreas Bießmannd0a51372013-05-10 05:05:30 +0000109/*
110 * The (arm)linux board id set by generic code depending on configured board
111 * (see boards.cfg for different boards)
112 */
113#ifdef CONFIG_AT91SAM9G20
114 /* the sam9g20 variants have two different board ids */
115# ifdef CONFIG_AT91SAM9G20EK_2MMC
116 /* we may be setup for the 2MMC variant of at91sam9g20ek */
117# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK_2MMC
118# else
119 /* or the normal at91sam9g20ek */
120# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK
121# endif
122#else
123 /* otherwise default to good old at91sam9260ek */
124# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9260EK
125#endif
126
Bo Shen8495faf2013-01-29 15:43:26 +0000127#ifndef CONFIG_AT91SAM9G20EK_2MMC
Wu, Joshf5702d72015-01-19 15:25:56 +0800128/* DataFlash */
Jean-Christophe PLAGNIOL-VILLARD4758ebd2009-03-27 23:26:44 +0100129#define CONFIG_ATMEL_DATAFLASH_SPI
Stelian Pop0176d432008-03-26 18:52:33 +0100130#define CONFIG_HAS_DATAFLASH 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200131#define CONFIG_SYS_MAX_DATAFLASH_BANKS 2
132#define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 0xC0000000 /* CS0 */
133#define CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 0xD0000000 /* CS1 */
Stelian Pop79f0cb62008-05-08 20:52:19 +0200134#define AT91_SPI_CLK 15000000
Wu, Joshf5702d72015-01-19 15:25:56 +0800135#else
136/* Enable MMC. The MCCK is conflicted with DataFlash */
137#define CONFIG_CMD_MMC
Bo Shen8495faf2013-01-29 15:43:26 +0000138#endif
Nicolas Ferredf486b12009-03-22 14:48:16 +0100139
140#ifdef CONFIG_AT91SAM9G20EK
141#define DATAFLASH_TCSS (0x22 << 16)
142#else
Stelian Pop0176d432008-03-26 18:52:33 +0100143#define DATAFLASH_TCSS (0x1a << 16)
Nicolas Ferredf486b12009-03-22 14:48:16 +0100144#endif
Stelian Pop0176d432008-03-26 18:52:33 +0100145#define DATAFLASH_TCHS (0x1 << 24)
146
147/* NAND flash */
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100148#ifdef CONFIG_CMD_NAND
149#define CONFIG_NAND_ATMEL
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000150#define CONFIG_SYS_MAX_NAND_DEVICE 1
151#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
152#define CONFIG_SYS_NAND_DBW_8
153#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
154#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
155#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
156#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC13
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100157#endif
Stelian Pop0176d432008-03-26 18:52:33 +0100158
Wu, Josha73267a2013-03-28 20:28:41 +0000159/* MMC */
160#ifdef CONFIG_CMD_MMC
161#define CONFIG_MMC
162#define CONFIG_GENERIC_MMC
163#define CONFIG_GENERIC_ATMEL_MCI
164#endif
165
166/* FAT */
167#ifdef CONFIG_CMD_FAT
168#define CONFIG_DOS_PARTITION
169#endif
170
Stelian Pop0176d432008-03-26 18:52:33 +0100171/* NOR flash - no real flash on this board */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172#define CONFIG_SYS_NO_FLASH 1
Stelian Pop0176d432008-03-26 18:52:33 +0100173
174/* Ethernet */
175#define CONFIG_MACB 1
176#define CONFIG_RMII 1
Stelian Pop0176d432008-03-26 18:52:33 +0100177#define CONFIG_NET_RETRY_COUNT 20
178#define CONFIG_RESET_PHY_R 1
Heiko Schocher4535a242013-11-18 08:07:23 +0100179#define CONFIG_AT91_WANTS_COMMON_PHY
Stelian Pop0176d432008-03-26 18:52:33 +0100180
181/* USB */
Jean-Christophe PLAGNIOL-VILLARD2b7178a2009-03-27 23:26:44 +0100182#define CONFIG_USB_ATMEL
Bo Shendcd2f1a2013-10-21 16:14:00 +0800183#define CONFIG_USB_ATMEL_CLK_SEL_PLLB
Stelian Pop0176d432008-03-26 18:52:33 +0100184#define CONFIG_USB_OHCI_NEW 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185#define CONFIG_SYS_USB_OHCI_CPU_INIT 1
186#define CONFIG_SYS_USB_OHCI_REGS_BASE 0x00500000 /* AT91SAM9260_UHP_BASE */
187#define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91sam9260"
188#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
Stelian Pop0176d432008-03-26 18:52:33 +0100189#define CONFIG_USB_STORAGE 1
190
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191#define CONFIG_SYS_LOAD_ADDR 0x22000000 /* load address */
Stelian Pop0176d432008-03-26 18:52:33 +0100192
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000193#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200194#define CONFIG_SYS_MEMTEST_END 0x23e00000
Stelian Pop0176d432008-03-26 18:52:33 +0100195
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200196#ifdef CONFIG_SYS_USE_DATAFLASH_CS0
Stelian Pop0176d432008-03-26 18:52:33 +0100197
198/* bootstrap + u-boot + env + linux in dataflash on CS0 */
Jean-Christophe PLAGNIOL-VILLARD057c8492008-09-10 22:47:58 +0200199#define CONFIG_ENV_IS_IN_DATAFLASH 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200200#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + 0x8400)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200201#define CONFIG_ENV_OFFSET 0x4200
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200202#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0 + CONFIG_ENV_OFFSET)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200203#define CONFIG_ENV_SIZE 0x4200
Alexandre Bellonie139cb32012-07-02 04:26:58 +0000204#define CONFIG_BOOTCOMMAND "cp.b 0xC0084000 0x22000000 0x210000; bootm"
Stelian Pop96996ac22008-05-08 20:52:20 +0200205#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
206 "root=/dev/mtdblock0 " \
Albin Tonnerre918319c2009-07-22 18:30:03 +0200207 "mtdparts=atmel_nand:-(root) " \
Stelian Pop96996ac22008-05-08 20:52:20 +0200208 "rw rootfstype=jffs2"
Stelian Pop0176d432008-03-26 18:52:33 +0100209
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200210#elif CONFIG_SYS_USE_DATAFLASH_CS1
Stelian Pop0176d432008-03-26 18:52:33 +0100211
212/* bootstrap + u-boot + env + linux in dataflash on CS1 */
Jean-Christophe PLAGNIOL-VILLARD057c8492008-09-10 22:47:58 +0200213#define CONFIG_ENV_IS_IN_DATAFLASH 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200214#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + 0x8400)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200215#define CONFIG_ENV_OFFSET 0x4200
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200216#define CONFIG_ENV_ADDR (CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1 + CONFIG_ENV_OFFSET)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200217#define CONFIG_ENV_SIZE 0x4200
Alexandre Bellonie139cb32012-07-02 04:26:58 +0000218#define CONFIG_BOOTCOMMAND "cp.b 0xD0084000 0x22000000 0x210000; bootm"
Stelian Pop96996ac22008-05-08 20:52:20 +0200219#define CONFIG_BOOTARGS "console=ttyS0,115200 " \
220 "root=/dev/mtdblock0 " \
Albin Tonnerre918319c2009-07-22 18:30:03 +0200221 "mtdparts=atmel_nand:-(root) " \
Stelian Pop96996ac22008-05-08 20:52:20 +0200222 "rw rootfstype=jffs2"
Stelian Pop0176d432008-03-26 18:52:33 +0100223
Wu, Josh24802072013-03-28 20:28:42 +0000224#elif defined(CONFIG_SYS_USE_NANDFLASH)
Stelian Pop0176d432008-03-26 18:52:33 +0100225
226/* bootstrap + u-boot + env + linux in nandflash */
Jean-Christophe PLAGNIOL-VILLARD51bfee12008-09-10 22:47:58 +0200227#define CONFIG_ENV_IS_IN_NAND 1
Bo Shen0c58cfa2013-02-20 00:16:25 +0000228#define CONFIG_ENV_OFFSET 0xc0000
229#define CONFIG_ENV_OFFSET_REDUND 0x100000
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200230#define CONFIG_ENV_SIZE 0x20000 /* 1 sector = 128 kB */
Bo Shen0c58cfa2013-02-20 00:16:25 +0000231#define CONFIG_BOOTCOMMAND "nand read 0x22000000 0x200000 0x300000; bootm"
232#define CONFIG_BOOTARGS \
233 "console=ttyS0,115200 earlyprintk " \
234 "mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro," \
235 "256k(env),256k(env_redundant),256k(spare)," \
236 "512k(dtb),6M(kernel)ro,-(rootfs) " \
237 "root=/dev/mtdblock7 rw rootfstype=jffs2"
Stelian Pop0176d432008-03-26 18:52:33 +0100238
Wu, Josh24802072013-03-28 20:28:42 +0000239#else /* CONFIG_SYS_USE_MMC */
240/* bootstrap + u-boot + env + linux in mmc */
241#define CONFIG_ENV_IS_IN_MMC
242/* For FAT system, most cases it should be in the reserved sector */
243#define CONFIG_ENV_OFFSET 0x2000
244#define CONFIG_ENV_SIZE 0x1000
245#define CONFIG_SYS_MMC_ENV_DEV 0
246
247#define CONFIG_BOOTCOMMAND \
248 "fatload mmc 0:1 0x22000000 uImage; bootm"
249#define CONFIG_BOOTARGS \
250 "console=ttyS0,115200 earlyprintk " \
251 "mtdparts=atmel_nand:256k(bootstrap)ro,512k(uboot)ro," \
252 "256k(env),256k(env_redundant),256k(spare)," \
253 "512k(dtb),6M(kernel)ro,-(rootfs) " \
254 "root=/dev/mmcblk0p2 rw rootfstype=ext4 rootwait"
Stelian Pop0176d432008-03-26 18:52:33 +0100255#endif
256
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200257#define CONFIG_SYS_PROMPT "U-Boot> "
258#define CONFIG_SYS_CBSIZE 256
259#define CONFIG_SYS_MAXARGS 16
260#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
261#define CONFIG_SYS_LONGHELP 1
Stelian Pop0176d432008-03-26 18:52:33 +0100262#define CONFIG_CMDLINE_EDITING 1
Alexandre Bellonie139cb32012-07-02 04:26:58 +0000263#define CONFIG_AUTO_COMPLETE
Stelian Pop0176d432008-03-26 18:52:33 +0100264
Stelian Pop0176d432008-03-26 18:52:33 +0100265/*
266 * Size of malloc() pool
267 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200268#define CONFIG_SYS_MALLOC_LEN ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000)
Stelian Pop0176d432008-03-26 18:52:33 +0100269
Stelian Pop0176d432008-03-26 18:52:33 +0100270#endif