blob: b283c9d8737fe921f52501b4bf47b5cf81630299 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stelian Pop78379932008-03-26 18:52:33 +01002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop78379932008-03-26 18:52:33 +01005 * Lead Tech Design <www.leadtechdesign.com>
6 *
Nicolas Ferre4ef545e2009-03-22 14:48:16 +01007 * Configuation settings for the AT91SAM9260EK & AT91SAM9G20EK boards.
Stelian Pop78379932008-03-26 18:52:33 +01008 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000013/*
14 * SoC must be defined first, before hardware.h is included.
15 * In this case SoC is defined in boards.cfg.
16 */
17#include <asm/hardware.h>
Jens Scharsig128ecd02010-02-03 22:45:42 +010018
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000019/*
20 * Warning: changing CONFIG_SYS_TEXT_BASE requires
21 * adapting the initial boot program.
22 * Since the linker has to swallow that define, we must use a pure
23 * hex number here!
24 */
Stelian Pop78379932008-03-26 18:52:33 +010025
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000026/* ARM asynchronous clock */
27#define CONFIG_SYS_AT91_SLOW_CLOCK 32768 /* slow clock xtal */
28#define CONFIG_SYS_AT91_MAIN_CLOCK 18432000 /* main clock xtal */
Nicolas Ferre4ef545e2009-03-22 14:48:16 +010029
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000030/* Define actual evaluation board type from used processor type */
31#ifdef CONFIG_AT91SAM9G20
32# define CONFIG_AT91SAM9G20EK /* It's an Atmel AT91SAM9G20 EK */
Nicolas Ferre4ef545e2009-03-22 14:48:16 +010033#else
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000034# define CONFIG_AT91SAM9260EK /* It's an Atmel AT91SAM9260 EK */
Nicolas Ferre4ef545e2009-03-22 14:48:16 +010035#endif
36
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000037/* Misc CPU related */
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000038#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
39#define CONFIG_SETUP_MEMORY_TAGS
40#define CONFIG_INITRD_TAG
Stelian Pop78379932008-03-26 18:52:33 +010041#define CONFIG_SKIP_LOWLEVEL_INIT
Stelian Pop78379932008-03-26 18:52:33 +010042
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000043/* general purpose I/O */
44#define CONFIG_ATMEL_LEGACY /* required until (g)pio is fixed */
Stelian Pop78379932008-03-26 18:52:33 +010045
Stelian Pop78379932008-03-26 18:52:33 +010046/*
47 * BOOTP options
48 */
49#define CONFIG_BOOTP_BOOTFILESIZE 1
Stelian Pop78379932008-03-26 18:52:33 +010050
51/*
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000052 * SDRAM: 1 bank, min 32, max 128 MB
53 * Initialized before u-boot gets started.
54 */
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000055#define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_CS1
56#define CONFIG_SYS_SDRAM_SIZE 0x04000000
57
58/*
59 * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM,
60 * leaving the correct space for initial global data structure above
61 * that address while providing maximum stack area below.
62 */
63#ifdef CONFIG_AT91SAM9XE
64# define CONFIG_SYS_INIT_SP_ADDR \
Wenyou Yang9c4fbd52017-04-18 15:18:47 +080065 (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000066#else
67# define CONFIG_SYS_INIT_SP_ADDR \
Wenyou Yang9c4fbd52017-04-18 15:18:47 +080068 (ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000069#endif
Stelian Pop78379932008-03-26 18:52:33 +010070
Andreas Bießmann5fc020e2013-05-10 05:05:30 +000071/*
72 * The (arm)linux board id set by generic code depending on configured board
73 * (see boards.cfg for different boards)
74 */
75#ifdef CONFIG_AT91SAM9G20
76 /* the sam9g20 variants have two different board ids */
77# ifdef CONFIG_AT91SAM9G20EK_2MMC
78 /* we may be setup for the 2MMC variant of at91sam9g20ek */
79# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK_2MMC
80# else
81 /* or the normal at91sam9g20ek */
82# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK
83# endif
84#else
85 /* otherwise default to good old at91sam9260ek */
86# define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9260EK
87#endif
88
Stelian Pop78379932008-03-26 18:52:33 +010089/* NAND flash */
Jean-Christophe PLAGNIOL-VILLARDc9539ba2009-03-22 10:22:34 +010090#ifdef CONFIG_CMD_NAND
Reinhard Meyer0bda5f22011-06-06 00:13:10 +000091#define CONFIG_SYS_MAX_NAND_DEVICE 1
92#define CONFIG_SYS_NAND_BASE ATMEL_BASE_CS3
93#define CONFIG_SYS_NAND_DBW_8
94#define CONFIG_SYS_NAND_MASK_ALE (1 << 21)
95#define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
96#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
97#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PC13
Jean-Christophe PLAGNIOL-VILLARDc9539ba2009-03-22 10:22:34 +010098#endif
Stelian Pop78379932008-03-26 18:52:33 +010099
Stelian Pop78379932008-03-26 18:52:33 +0100100/* USB */
Jean-Christophe PLAGNIOL-VILLARDd42643f2009-03-27 23:26:44 +0100101#define CONFIG_USB_ATMEL
Bo Shen4a985df2013-10-21 16:14:00 +0800102#define CONFIG_USB_ATMEL_CLK_SEL_PLLB
Stelian Pop78379932008-03-26 18:52:33 +0100103#define CONFIG_USB_OHCI_NEW 1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200104#define CONFIG_SYS_USB_OHCI_CPU_INIT 1
105#define CONFIG_SYS_USB_OHCI_REGS_BASE 0x00500000 /* AT91SAM9260_UHP_BASE */
106#define CONFIG_SYS_USB_OHCI_SLOT_NAME "at91sam9260"
107#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
Stelian Pop78379932008-03-26 18:52:33 +0100108
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200109#define CONFIG_SYS_LOAD_ADDR 0x22000000 /* load address */
Stelian Pop78379932008-03-26 18:52:33 +0100110
Reinhard Meyer0bda5f22011-06-06 00:13:10 +0000111#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200112#define CONFIG_SYS_MEMTEST_END 0x23e00000
Stelian Pop78379932008-03-26 18:52:33 +0100113
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200114#ifdef CONFIG_SYS_USE_DATAFLASH_CS0
Stelian Pop78379932008-03-26 18:52:33 +0100115
116/* bootstrap + u-boot + env + linux in dataflash on CS0 */
Wenyou.Yang@microchip.come4ac71b2017-07-21 13:40:11 +0800117#define CONFIG_ENV_OFFSET 0x4200
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200118#define CONFIG_ENV_SIZE 0x4200
Wenyou.Yang@microchip.come4ac71b2017-07-21 13:40:11 +0800119#define CONFIG_ENV_SECT_SIZE 0x210
Wenyou.Yang@microchip.come4ac71b2017-07-21 13:40:11 +0800120#define CONFIG_BOOTCOMMAND "sf probe 0:0; " \
121 "sf read 0x22000000 0x84000 0x294000; " \
122 "bootm 0x22000000"
Stelian Pop78379932008-03-26 18:52:33 +0100123
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200124#elif CONFIG_SYS_USE_DATAFLASH_CS1
Stelian Pop78379932008-03-26 18:52:33 +0100125
Wenyou.Yang@microchip.come4ac71b2017-07-21 13:40:11 +0800126#define CONFIG_ENV_OFFSET 0x4200
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200127#define CONFIG_ENV_SIZE 0x4200
Wenyou.Yang@microchip.come4ac71b2017-07-21 13:40:11 +0800128#define CONFIG_ENV_SECT_SIZE 0x210
Wenyou.Yang@microchip.come4ac71b2017-07-21 13:40:11 +0800129#define CONFIG_BOOTCOMMAND "sf probe 0:1; " \
130 "sf read 0x22000000 0x84000 0x294000; " \
131 "bootm 0x22000000"
Stelian Pop78379932008-03-26 18:52:33 +0100132
Wu, Josheb83c002013-03-28 20:28:42 +0000133#elif defined(CONFIG_SYS_USE_NANDFLASH)
Stelian Pop78379932008-03-26 18:52:33 +0100134
135/* bootstrap + u-boot + env + linux in nandflash */
Nicolas Ferre64922442018-05-09 10:30:25 +0300136#define CONFIG_ENV_OFFSET 0x140000
Bo Shena8fd0632013-02-20 00:16:25 +0000137#define CONFIG_ENV_OFFSET_REDUND 0x100000
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200138#define CONFIG_ENV_SIZE 0x20000 /* 1 sector = 128 kB */
Bo Shena8fd0632013-02-20 00:16:25 +0000139#define CONFIG_BOOTCOMMAND "nand read 0x22000000 0x200000 0x300000; bootm"
Stelian Pop78379932008-03-26 18:52:33 +0100140
Wu, Josheb83c002013-03-28 20:28:42 +0000141#else /* CONFIG_SYS_USE_MMC */
142/* bootstrap + u-boot + env + linux in mmc */
Wu, Josheb83c002013-03-28 20:28:42 +0000143/* For FAT system, most cases it should be in the reserved sector */
144#define CONFIG_ENV_OFFSET 0x2000
145#define CONFIG_ENV_SIZE 0x1000
146#define CONFIG_SYS_MMC_ENV_DEV 0
147
148#define CONFIG_BOOTCOMMAND \
149 "fatload mmc 0:1 0x22000000 uImage; bootm"
Stelian Pop78379932008-03-26 18:52:33 +0100150#endif
151
Stelian Pop78379932008-03-26 18:52:33 +0100152/*
153 * Size of malloc() pool
154 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200155#define CONFIG_SYS_MALLOC_LEN ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000)
Stelian Pop78379932008-03-26 18:52:33 +0100156
Stelian Pop78379932008-03-26 18:52:33 +0100157#endif