Merge git://git.denx.de/u-boot-socfpga
[platform/kernel/u-boot.git] / include / configs / taurus.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Common board functions for Siemens TAURUS (AT91SAM9G20) based boards
4  * (C) Copyright 2013 Siemens AG
5  *
6  * Based on:
7  * U-Boot file: include/configs/at91sam9260ek.h
8  *
9  * (C) Copyright 2007-2008
10  * Stelian Pop <stelian@popies.net>
11  * Lead Tech Design <www.leadtechdesign.com>
12  */
13
14 #ifndef __CONFIG_H
15 #define __CONFIG_H
16
17 /*
18  * SoC must be defined first, before hardware.h is included.
19  * In this case SoC is defined in boards.cfg.
20  */
21 #include <asm/hardware.h>
22 #include <linux/sizes.h>
23
24 #if defined(CONFIG_SPL_BUILD)
25 #define CONFIG_SYS_ICACHE_OFF
26 #define CONFIG_SYS_DCACHE_OFF
27 #endif
28 /*
29  * Warning: changing CONFIG_SYS_TEXT_BASE requires
30  * adapting the initial boot program.
31  * Since the linker has to swallow that define, we must use a pure
32  * hex number here!
33  */
34
35 /* ARM asynchronous clock */
36 #define CONFIG_SYS_AT91_SLOW_CLOCK      32768           /* slow clock xtal */
37 #define CONFIG_SYS_AT91_MAIN_CLOCK      18432000        /* main clock xtal */
38
39 /* Misc CPU related */
40 #define CONFIG_ARCH_CPU_INIT
41 #define CONFIG_CMDLINE_TAG              /* enable passing of ATAGs */
42 #define CONFIG_SETUP_MEMORY_TAGS
43 #define CONFIG_INITRD_TAG
44
45 #define CONFIG_SKIP_LOWLEVEL_INIT_ONLY
46
47 /* general purpose I/O */
48 #define CONFIG_ATMEL_LEGACY             /* required until (g)pio is fixed */
49 #define CONFIG_AT91_GPIO
50 #define CONFIG_AT91_GPIO_PULLUP 1       /* keep pullups on peripheral pins */
51
52 #define CONFIG_USART_BASE               ATMEL_BASE_DBGU
53 #define CONFIG_USART_ID                 ATMEL_ID_SYS
54
55 /*
56  * SDRAM: 1 bank, min 32, max 128 MB
57  * Initialized before u-boot gets started.
58  */
59 #define CONFIG_SYS_SDRAM_BASE           ATMEL_BASE_CS1
60 #define CONFIG_SYS_SDRAM_SIZE           (128 * SZ_1M)
61
62 /*
63  * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM,
64  * leaving the correct space for initial global data structure above
65  * that address while providing maximum stack area below.
66  */
67 #define CONFIG_SYS_INIT_SP_ADDR \
68         (ATMEL_BASE_SRAM1 + 0x1000 - GENERATED_GBL_DATA_SIZE)
69
70 /* NAND flash */
71 #ifdef CONFIG_CMD_NAND
72 #define CONFIG_SYS_MAX_NAND_DEVICE      1
73 #define CONFIG_SYS_NAND_BASE            ATMEL_BASE_CS3
74 #define CONFIG_SYS_NAND_DBW_8
75 #define CONFIG_SYS_NAND_MASK_ALE        (1 << 21)
76 #define CONFIG_SYS_NAND_MASK_CLE        (1 << 22)
77 #define CONFIG_SYS_NAND_ENABLE_PIN      AT91_PIN_PC14
78 #define CONFIG_SYS_NAND_READY_PIN       AT91_PIN_PC13
79 #endif
80
81 /* Ethernet */
82 #define CONFIG_MACB
83 #define CONFIG_RMII
84 #define CONFIG_AT91_WANTS_COMMON_PHY
85
86 /* USB */
87 #if defined(CONFIG_BOARD_TAURUS)
88 #define CONFIG_USB_ATMEL
89 #define CONFIG_USB_ATMEL_CLK_SEL_PLLB
90 #define CONFIG_USB_OHCI_NEW
91 #define CONFIG_SYS_USB_OHCI_CPU_INIT
92 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x00500000
93 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "at91sam9260"
94 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
95
96 /* USB DFU support */
97
98 #define CONFIG_USB_GADGET_AT91
99
100 /* DFU class support */
101 #define CONFIG_SYS_DFU_DATA_BUF_SIZE    (SZ_1M)
102 #define DFU_MANIFEST_POLL_TIMEOUT       25000
103 #endif
104
105 /* SPI EEPROM */
106 #define TAURUS_SPI_MASK (1 << 4)
107
108 #if defined(CONFIG_SPL_BUILD)
109 /* SPL related */
110 #define CONFIG_SYS_SPI_U_BOOT_OFFS      0x20000
111 #endif
112
113 /* load address */
114 #define CONFIG_SYS_LOAD_ADDR                    0x22000000
115
116 /* bootstrap in spi flash , u-boot + env + linux in nandflash */
117 #define CONFIG_ENV_OFFSET               0x100000
118 #define CONFIG_ENV_OFFSET_REDUND        0x180000
119 #define CONFIG_ENV_SIZE         (SZ_128K)       /* 1 sector = 128 kB */
120
121 #ifndef CONFIG_SPL_BUILD
122 #if defined(CONFIG_BOARD_AXM)
123 #define CONFIG_EXTRA_ENV_SETTINGS \
124         "addip=setenv bootargs ${bootargs} ip=${ipaddr}:${serverip}:" \
125                 "${gatewayip}:${netmask}:${hostname}:${netdev}::off\0" \
126         "addtest=setenv bootargs ${bootargs} loglevel=4 test\0" \
127         "boot_file=setenv bootfile /${project_dir}/kernel/uImage\0" \
128         "boot_retries=0\0" \
129         "ethact=macb0\0" \
130         "flash_nfs=run nand_kernel;run nfsargs;run addip;" \
131                 "upgrade_available;bootm ${kernel_ram};reset\0" \
132         "flash_self=run nand_kernel;run setbootargs;upgrade_available;" \
133                 "bootm ${kernel_ram};reset\0" \
134         "flash_self_test=run nand_kernel;run setbootargs addtest;" \
135                 "upgrade_available;bootm ${kernel_ram};reset\0" \
136         "hostname=systemone\0" \
137         "kernel_Off=0x00200000\0" \
138         "kernel_Off_fallback=0x03800000\0" \
139         "kernel_ram=0x21500000\0" \
140         "kernel_size=0x00400000\0" \
141         "kernel_size_fallback=0x00400000\0" \
142         "loads_echo=1\0" \
143         "nand_kernel=nand read.e ${kernel_ram} ${kernel_Off} " \
144                 "${kernel_size}\0" \
145         "net_nfs=run boot_file;tftp ${kernel_ram} ${bootfile};" \
146                 "run nfsargs;run addip;upgrade_available;" \
147                 "bootm ${kernel_ram};reset\0" \
148         "netdev=eth0\0" \
149         "nfsargs=run root_path;setenv bootargs ${bootargs} root=/dev/nfs " \
150                 "rw nfsroot=${serverip}:${rootpath} " \
151                 "at91sam9_wdt.wdt_timeout=16\0" \
152         "partitionset_active=A\0" \
153         "preboot=echo;echo Type 'run flash_self' to use kernel and root " \
154                 "filesystem on memory;echo Type 'run flash_nfs' to use " \
155                 "kernel from memory and root filesystem over NFS;echo Type " \
156                 "'run net_nfs' to get Kernel over TFTP and mount root " \
157                 "filesystem over NFS;echo\0" \
158         "project_dir=systemone\0" \
159         "root_path=setenv rootpath /home/projects/${project_dir}/rootfs\0" \
160         "rootfs=/dev/mtdblock5\0" \
161         "rootfs_fallback=/dev/mtdblock7\0" \
162         "setbootargs=setenv bootargs ${bootargs} console=ttyMTD,mtdoops " \
163                 "root=${rootfs} rootfstype=jffs2 panic=7 " \
164                 "at91sam9_wdt.wdt_timeout=16\0" \
165         "stderr=serial\0" \
166         "stdin=serial\0" \
167         "stdout=serial\0" \
168         "upgrade_available=0\0"
169 #endif
170 #endif /* #ifndef CONFIG_SPL_BUILD */
171 /*
172  * Size of malloc() pool
173  */
174 #define CONFIG_SYS_MALLOC_LEN \
175         ROUND(3 * CONFIG_ENV_SIZE + SZ_4M, 0x1000)
176
177 /* Defines for SPL */
178 #define CONFIG_SPL_MAX_SIZE             (31 * SZ_512)
179 #define CONFIG_SPL_STACK                (ATMEL_BASE_SRAM1 + SZ_16K)
180 #define CONFIG_SYS_SPL_MALLOC_START     (CONFIG_SYS_TEXT_BASE - \
181                                         CONFIG_SYS_MALLOC_LEN)
182 #define CONFIG_SYS_SPL_MALLOC_SIZE      CONFIG_SYS_MALLOC_LEN
183
184 #define CONFIG_SPL_BSS_START_ADDR       CONFIG_SPL_MAX_SIZE
185 #define CONFIG_SPL_BSS_MAX_SIZE         (3 * SZ_512)
186
187 #define CONFIG_SYS_NAND_ENABLE_PIN_SPL  (2*32 + 14)
188 #define CONFIG_SYS_USE_NANDFLASH        1
189 #define CONFIG_SPL_NAND_DRIVERS
190 #define CONFIG_SPL_NAND_BASE
191 #define CONFIG_SPL_NAND_ECC
192 #define CONFIG_SPL_NAND_RAW_ONLY
193 #define CONFIG_SPL_NAND_SOFTECC
194 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0x20000
195 #define CONFIG_SYS_NAND_U_BOOT_SIZE     SZ_512K
196 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_TEXT_BASE
197 #define CONFIG_SYS_NAND_U_BOOT_DST      CONFIG_SYS_TEXT_BASE
198 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
199
200 #define CONFIG_SYS_NAND_SIZE            (256 * SZ_1M)
201 #define CONFIG_SYS_NAND_PAGE_SIZE       SZ_2K
202 #define CONFIG_SYS_NAND_BLOCK_SIZE      (SZ_128K)
203 #define CONFIG_SYS_NAND_PAGE_COUNT      (CONFIG_SYS_NAND_BLOCK_SIZE / \
204                                          CONFIG_SYS_NAND_PAGE_SIZE)
205 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   NAND_LARGE_BADBLOCK_POS
206 #define CONFIG_SYS_NAND_ECCSIZE         256
207 #define CONFIG_SYS_NAND_ECCBYTES        3
208 #define CONFIG_SYS_NAND_OOBSIZE         64
209 #define CONFIG_SYS_NAND_ECCPOS          { 40, 41, 42, 43, 44, 45, 46, 47, \
210                                           48, 49, 50, 51, 52, 53, 54, 55, \
211                                           56, 57, 58, 59, 60, 61, 62, 63, }
212
213 #define CONFIG_SPL_ATMEL_SIZE
214 #define CONFIG_SYS_MASTER_CLOCK         132096000
215 #define AT91_PLL_LOCK_TIMEOUT           1000000
216 #define CONFIG_SYS_AT91_PLLA            0x202A3F01
217 #define CONFIG_SYS_MCKR                 0x1300
218 #define CONFIG_SYS_MCKR_CSS             (0x02 | CONFIG_SYS_MCKR)
219 #define CONFIG_SYS_AT91_PLLB            0x10193F05
220
221 #define CONFIG_SPL_PAD_TO               CONFIG_SYS_NAND_U_BOOT_OFFS
222 #define CONFIG_SYS_SPL_LEN              CONFIG_SPL_PAD_TO
223
224 #endif