blob: ea7478b70d22d954714eb4dede93fea3197ff208 [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
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000045
46/* general purpose I/O */
47#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
Stelian Pop0176d432008-03-26 18:52:33 +010048
Stelian Pop0176d432008-03-26 18:52:33 +010049/*
50 * BOOTP options
51 */
52#define CONFIG_BOOTP_BOOTFILESIZE 1
53#define CONFIG_BOOTP_BOOTPATH 1
54#define CONFIG_BOOTP_GATEWAY 1
55#define CONFIG_BOOTP_HOSTNAME 1
56
57/*
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000058 * SDRAM: 1 bank, min 32, max 128 MB
59 * Initialized before u-boot gets started.
60 */
Stelian Pop0176d432008-03-26 18:52:33 +010061#define CONFIG_NR_DRAM_BANKS 1
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000062#define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1
63#define CONFIG_SYS_SDRAM_SIZE 0x04000000
64
65/*
66 * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM,
67 * leaving the correct space for initial global data structure above
68 * that address while providing maximum stack area below.
69 */
70#ifdef CONFIG_AT91SAM9XE
71# define CONFIG_SYS_INIT_SP_ADDR \
Wenyou Yang83f1c2e2017-04-18 15:18:47 +080072 (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000073#else
74# define CONFIG_SYS_INIT_SP_ADDR \
Wenyou Yang83f1c2e2017-04-18 15:18:47 +080075 (ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000076#endif
Stelian Pop0176d432008-03-26 18:52:33 +010077
Andreas Bießmannd0a51372013-05-10 05:05:30 +000078/*
79 * The (arm)linux board id set by generic code depending on configured board
80 * (see boards.cfg for different boards)
81 */
82#ifdef CONFIG_AT91SAM9G20
83 /* the sam9g20 variants have two different board ids */
84# ifdef CONFIG_AT91SAM9G20EK_2MMC
85 /* we may be setup for the 2MMC variant of at91sam9g20ek */
86# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK_2MMC
87# else
88 /* or the normal at91sam9g20ek */
89# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK
90# endif
91#else
92 /* otherwise default to good old at91sam9260ek */
93# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9260EK
94#endif
95
Stelian Pop0176d432008-03-26 18:52:33 +010096/* NAND flash */
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010097#ifdef CONFIG_CMD_NAND
98#define CONFIG_NAND_ATMEL
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000099#define CONFIG_SYS_MAX_NAND_DEVICE 1
100#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
101#define CONFIG_SYS_NAND_DBW_8
102#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
103#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
104#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
105#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC13
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +0100106#endif
Stelian Pop0176d432008-03-26 18:52:33 +0100107
Stelian Pop0176d432008-03-26 18:52:33 +0100108/* USB */
Jean-Christophe PLAGNIOL-VILLARD2b7178a2009-03-27 23:26:44 +0100109#define CONFIG_USB_ATMEL
Bo Shendcd2f1a2013-10-21 16:14:00 +0800110#define CONFIG_USB_ATMEL_CLK_SEL_PLLB
Stelian Pop0176d432008-03-26 18:52:33 +0100111#define CONFIG_USB_OHCI_NEW 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112#define CONFIG_SYS_USB_OHCI_CPU_INIT 1
113#define CONFIG_SYS_USB_OHCI_REGS_BASE 0x00500000 /* AT91SAM9260_UHP_BASE */
114#define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91sam9260"
115#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
Stelian Pop0176d432008-03-26 18:52:33 +0100116
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200117#define CONFIG_SYS_LOAD_ADDR 0x22000000 /* load address */
Stelian Pop0176d432008-03-26 18:52:33 +0100118
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000119#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200120#define CONFIG_SYS_MEMTEST_END 0x23e00000
Stelian Pop0176d432008-03-26 18:52:33 +0100121
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122#ifdef CONFIG_SYS_USE_DATAFLASH_CS0
Stelian Pop0176d432008-03-26 18:52:33 +0100123
124/* bootstrap + u-boot + env + linux in dataflash on CS0 */
Wenyou.Yang@microchip.comf166af82017-07-21 13:40:11 +0800125#define CONFIG_ENV_OFFSET 0x4200
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200126#define CONFIG_ENV_SIZE 0x4200
Wenyou.Yang@microchip.comf166af82017-07-21 13:40:11 +0800127#define CONFIG_ENV_SECT_SIZE 0x210
128#define CONFIG_ENV_SPI_MAX_HZ 15000000
129#define CONFIG_BOOTCOMMAND "sf probe 0:0; " \
130 "sf read 0x22000000 0x84000 0x294000; " \
131 "bootm 0x22000000"
Stelian Pop0176d432008-03-26 18:52:33 +0100132
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200133#elif CONFIG_SYS_USE_DATAFLASH_CS1
Stelian Pop0176d432008-03-26 18:52:33 +0100134
Wenyou.Yang@microchip.comf166af82017-07-21 13:40:11 +0800135#define CONFIG_ENV_OFFSET 0x4200
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200136#define CONFIG_ENV_SIZE 0x4200
Wenyou.Yang@microchip.comf166af82017-07-21 13:40:11 +0800137#define CONFIG_ENV_SECT_SIZE 0x210
138#define CONFIG_ENV_SPI_MAX_HZ 15000000
139#define CONFIG_BOOTCOMMAND "sf probe 0:1; " \
140 "sf read 0x22000000 0x84000 0x294000; " \
141 "bootm 0x22000000"
Stelian Pop0176d432008-03-26 18:52:33 +0100142
Wu, Josh24802072013-03-28 20:28:42 +0000143#elif defined(CONFIG_SYS_USE_NANDFLASH)
Stelian Pop0176d432008-03-26 18:52:33 +0100144
145/* bootstrap + u-boot + env + linux in nandflash */
Wenyou Yang83f1c2e2017-04-18 15:18:47 +0800146#define CONFIG_ENV_OFFSET 0x120000
Bo Shen0c58cfa2013-02-20 00:16:25 +0000147#define CONFIG_ENV_OFFSET_REDUND 0x100000
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200148#define CONFIG_ENV_SIZE 0x20000 /* 1 sector = 128 kB */
Bo Shen0c58cfa2013-02-20 00:16:25 +0000149#define CONFIG_BOOTCOMMAND "nand read 0x22000000 0x200000 0x300000; bootm"
Stelian Pop0176d432008-03-26 18:52:33 +0100150
Wu, Josh24802072013-03-28 20:28:42 +0000151#else /* CONFIG_SYS_USE_MMC */
152/* bootstrap + u-boot + env + linux in mmc */
Wu, Josh24802072013-03-28 20:28:42 +0000153/* For FAT system, most cases it should be in the reserved sector */
154#define CONFIG_ENV_OFFSET 0x2000
155#define CONFIG_ENV_SIZE 0x1000
156#define CONFIG_SYS_MMC_ENV_DEV 0
157
158#define CONFIG_BOOTCOMMAND \
159 "fatload mmc 0:1 0x22000000 uImage; bootm"
Stelian Pop0176d432008-03-26 18:52:33 +0100160#endif
161
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200162#define CONFIG_SYS_LONGHELP 1
Stelian Pop0176d432008-03-26 18:52:33 +0100163#define CONFIG_CMDLINE_EDITING 1
Alexandre Bellonie139cb32012-07-02 04:26:58 +0000164#define CONFIG_AUTO_COMPLETE
Stelian Pop0176d432008-03-26 18:52:33 +0100165
Stelian Pop0176d432008-03-26 18:52:33 +0100166/*
167 * Size of malloc() pool
168 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200169#define CONFIG_SYS_MALLOC_LEN ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000)
Stelian Pop0176d432008-03-26 18:52:33 +0100170
Stelian Pop0176d432008-03-26 18:52:33 +0100171#endif