spi: Migrate CONFIG_SH_SPI to Kconfig
[platform/kernel/u-boot.git] / include / configs / at91sam9260ek.h
1 /*
2  * (C) Copyright 2007-2008
3  * Stelian Pop <stelian@popies.net>
4  * Lead Tech Design <www.leadtechdesign.com>
5  *
6  * Configuation settings for the AT91SAM9260EK & AT91SAM9G20EK boards.
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 /*
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>
19
20 /*
21  * 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!
25  */
26
27 /* ARM asynchronous clock */
28 #define CONFIG_SYS_AT91_SLOW_CLOCK      32768           /* slow clock xtal */
29 #define CONFIG_SYS_AT91_MAIN_CLOCK      18432000        /* main clock xtal */
30
31 /* Define actual evaluation board type from used processor type */
32 #ifdef CONFIG_AT91SAM9G20
33 # define CONFIG_AT91SAM9G20EK   /* It's an Atmel AT91SAM9G20 EK */
34 #else
35 # define CONFIG_AT91SAM9260EK   /* It's an Atmel AT91SAM9260 EK */
36 #endif
37
38 /* Misc CPU related */
39 #define CONFIG_ARCH_CPU_INIT
40 #define CONFIG_CMDLINE_TAG              /* enable passing of ATAGs */
41 #define CONFIG_SETUP_MEMORY_TAGS
42 #define CONFIG_INITRD_TAG
43 #define CONFIG_SKIP_LOWLEVEL_INIT
44
45 /* general purpose I/O */
46 #define CONFIG_ATMEL_LEGACY             /* required until (g)pio is fixed */
47
48 /*
49  * BOOTP options
50  */
51 #define CONFIG_BOOTP_BOOTFILESIZE       1
52 #define CONFIG_BOOTP_BOOTPATH           1
53 #define CONFIG_BOOTP_GATEWAY            1
54 #define CONFIG_BOOTP_HOSTNAME           1
55
56 /*
57  * SDRAM: 1 bank, min 32, max 128 MB
58  * Initialized before u-boot gets started.
59  */
60 #define CONFIG_NR_DRAM_BANKS            1
61 #define CONFIG_SYS_SDRAM_BASE           ATMEL_BASE_CS1
62 #define CONFIG_SYS_SDRAM_SIZE           0x04000000
63
64 /*
65  * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM,
66  * leaving the correct space for initial global data structure above
67  * that address while providing maximum stack area below.
68  */
69 #ifdef CONFIG_AT91SAM9XE
70 # define CONFIG_SYS_INIT_SP_ADDR \
71         (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
72 #else
73 # define CONFIG_SYS_INIT_SP_ADDR \
74         (ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
75 #endif
76
77 /*
78  * The (arm)linux board id set by generic code depending on configured board
79  * (see boards.cfg for different boards)
80  */
81 #ifdef CONFIG_AT91SAM9G20
82         /* the sam9g20 variants have two different board ids */
83 # ifdef CONFIG_AT91SAM9G20EK_2MMC
84         /* we may be setup for the 2MMC variant of at91sam9g20ek */
85 #  define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK_2MMC
86 # else
87         /* or the normal at91sam9g20ek */
88 #  define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9G20EK
89 # endif
90 #else
91         /* otherwise default to good old at91sam9260ek */
92 # define CONFIG_MACH_TYPE MACH_TYPE_AT91SAM9260EK
93 #endif
94
95 /* NAND flash */
96 #ifdef CONFIG_CMD_NAND
97 #define CONFIG_NAND_ATMEL
98 #define CONFIG_SYS_MAX_NAND_DEVICE      1
99 #define CONFIG_SYS_NAND_BASE            ATMEL_BASE_CS3
100 #define CONFIG_SYS_NAND_DBW_8
101 #define CONFIG_SYS_NAND_MASK_ALE        (1 << 21)
102 #define CONFIG_SYS_NAND_MASK_CLE        (1 << 22)
103 #define CONFIG_SYS_NAND_ENABLE_PIN      AT91_PIN_PC14
104 #define CONFIG_SYS_NAND_READY_PIN       AT91_PIN_PC13
105 #endif
106
107 /* USB */
108 #define CONFIG_USB_ATMEL
109 #define CONFIG_USB_ATMEL_CLK_SEL_PLLB
110 #define CONFIG_USB_OHCI_NEW             1
111 #define CONFIG_SYS_USB_OHCI_CPU_INIT            1
112 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x00500000      /* AT91SAM9260_UHP_BASE */
113 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "at91sam9260"
114 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
115
116 #define CONFIG_SYS_LOAD_ADDR                    0x22000000      /* load address */
117
118 #define CONFIG_SYS_MEMTEST_START                CONFIG_SYS_SDRAM_BASE
119 #define CONFIG_SYS_MEMTEST_END                  0x23e00000
120
121 #ifdef CONFIG_SYS_USE_DATAFLASH_CS0
122
123 /* bootstrap + u-boot + env + linux in dataflash on CS0 */
124 #define CONFIG_ENV_OFFSET       0x4200
125 #define CONFIG_ENV_SIZE         0x4200
126 #define CONFIG_ENV_SECT_SIZE    0x210
127 #define CONFIG_ENV_SPI_MAX_HZ   15000000
128 #define CONFIG_BOOTCOMMAND      "sf probe 0:0; " \
129                                 "sf read 0x22000000 0x84000 0x294000; " \
130                                 "bootm 0x22000000"
131
132 #elif CONFIG_SYS_USE_DATAFLASH_CS1
133
134 #define CONFIG_ENV_OFFSET       0x4200
135 #define CONFIG_ENV_SIZE         0x4200
136 #define CONFIG_ENV_SECT_SIZE    0x210
137 #define CONFIG_ENV_SPI_MAX_HZ   15000000
138 #define CONFIG_BOOTCOMMAND      "sf probe 0:1; " \
139                                 "sf read 0x22000000 0x84000 0x294000; " \
140                                 "bootm 0x22000000"
141
142 #elif defined(CONFIG_SYS_USE_NANDFLASH)
143
144 /* bootstrap + u-boot + env + linux in nandflash */
145 #define CONFIG_ENV_OFFSET               0x120000
146 #define CONFIG_ENV_OFFSET_REDUND        0x100000
147 #define CONFIG_ENV_SIZE         0x20000         /* 1 sector = 128 kB */
148 #define CONFIG_BOOTCOMMAND      "nand read 0x22000000 0x200000 0x300000; bootm"
149
150 #else   /* CONFIG_SYS_USE_MMC */
151 /* bootstrap + u-boot + env + linux in mmc */
152 /* For FAT system, most cases it should be in the reserved sector */
153 #define CONFIG_ENV_OFFSET               0x2000
154 #define CONFIG_ENV_SIZE                 0x1000
155 #define CONFIG_SYS_MMC_ENV_DEV          0
156
157 #define CONFIG_BOOTCOMMAND                                              \
158         "fatload mmc 0:1 0x22000000 uImage; bootm"
159 #endif
160
161 #define CONFIG_SYS_LONGHELP             1
162 #define CONFIG_CMDLINE_EDITING  1
163 #define CONFIG_AUTO_COMPLETE
164
165 /*
166  * Size of malloc() pool
167  */
168 #define CONFIG_SYS_MALLOC_LEN           ROUND(3 * CONFIG_ENV_SIZE + 128*1024, 0x1000)
169
170 #endif