blob: 9374064df51216da8cafaa1efba35cbc7034b908 [file] [log] [blame]
Heiko Schocher0f8bc282013-12-02 07:47:22 +01001/*
2 * Board functions for Siemens TAURUS (AT91SAM9G20) based boards
3 * (C) Copyright Siemens AG
4 *
5 * Based on:
6 * U-Boot file: board/atmel/at91sam9260ek/at91sam9260ek.c
7 *
8 * (C) Copyright 2007-2008
9 * Stelian Pop <stelian@popies.net>
10 * Lead Tech Design <www.leadtechdesign.com>
11 *
12 * SPDX-License-Identifier: GPL-2.0+
13 */
14
Heiko Schocher40540822015-08-21 18:53:46 +020015#include <command.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010016#include <common.h>
17#include <asm/io.h>
18#include <asm/arch/at91sam9260_matrix.h>
19#include <asm/arch/at91sam9_smc.h>
20#include <asm/arch/at91_common.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010021#include <asm/arch/at91_rstc.h>
22#include <asm/arch/gpio.h>
23#include <asm/arch/at91sam9_sdramc.h>
Heiko Schocher237e3792014-10-31 08:31:05 +010024#include <asm/arch/clk.h>
25#include <linux/mtd/nand.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010026#include <atmel_mci.h>
Heiko Schocher50921cd2014-10-31 08:30:56 +010027#include <asm/arch/at91_spi.h>
28#include <spi.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010029
30#include <net.h>
31#include <netdev.h>
32
33DECLARE_GLOBAL_DATA_PTR;
34
Heiko Schocher0f8bc282013-12-02 07:47:22 +010035static void taurus_nand_hw_init(void)
36{
37 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
38 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
39 unsigned long csa;
40
41 /* Assign CS3 to NAND/SmartMedia Interface */
42 csa = readl(&matrix->ebicsa);
43 csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
44 writel(csa, &matrix->ebicsa);
45
46 /* Configure SMC CS3 for NAND/SmartMedia */
47 writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(0) |
48 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
49 &smc->cs[3].setup);
50 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(3) |
51 AT91_SMC_PULSE_NRD(4) | AT91_SMC_PULSE_NCS_RD(3),
52 &smc->cs[3].pulse);
53 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(7),
54 &smc->cs[3].cycle);
55 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
56 AT91_SMC_MODE_EXNW_DISABLE |
57 AT91_SMC_MODE_DBW_8 |
58 AT91_SMC_MODE_TDF_CYCLE(3),
59 &smc->cs[3].mode);
60
61 /* Configure RDY/BSY */
62 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
63
64 /* Enable NandFlash */
65 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
66}
Heiko Schocher237e3792014-10-31 08:31:05 +010067
68#if defined(CONFIG_SPL_BUILD)
69#include <spl.h>
70#include <nand.h>
Heiko Schochera1655bb2014-11-18 09:41:58 +010071#include <spi_flash.h>
Heiko Schocher237e3792014-10-31 08:31:05 +010072
73void matrix_init(void)
74{
75 struct at91_matrix *mat = (struct at91_matrix *)ATMEL_BASE_MATRIX;
76
77 writel((readl(&mat->scfg[3]) & (~AT91_MATRIX_SLOT_CYCLE))
78 | AT91_MATRIX_SLOT_CYCLE_(0x40),
79 &mat->scfg[3]);
80}
81
Heiko Schocher40540822015-08-21 18:53:46 +020082#if defined(CONFIG_BOARD_AXM)
83static int at91_is_recovery(void)
84{
85 if ((at91_get_gpio_value(AT91_PIN_PA26) == 0) &&
86 (at91_get_gpio_value(AT91_PIN_PA27) == 0))
87 return 1;
88
89 return 0;
90}
91#elif defined(CONFIG_BOARD_TAURUS)
92static int at91_is_recovery(void)
93{
94 if (at91_get_gpio_value(AT91_PIN_PA31) == 0)
95 return 1;
96
97 return 0;
98}
99#endif
100
Heiko Schocher0ed366f2015-08-21 18:55:07 +0200101void spl_board_init(void)
Heiko Schocher237e3792014-10-31 08:31:05 +0100102{
103 taurus_nand_hw_init();
Heiko Schochera1655bb2014-11-18 09:41:58 +0100104 at91_spi0_hw_init(TAURUS_SPI_MASK);
Heiko Schocher237e3792014-10-31 08:31:05 +0100105
Heiko Schocher40540822015-08-21 18:53:46 +0200106#if defined(CONFIG_BOARD_AXM)
107 /* Configure LED PINs */
108 at91_set_gpio_output(AT91_PIN_PA6, 0);
109 at91_set_gpio_output(AT91_PIN_PA8, 0);
110 at91_set_gpio_output(AT91_PIN_PA9, 0);
111 at91_set_gpio_output(AT91_PIN_PA10, 0);
112 at91_set_gpio_output(AT91_PIN_PA11, 0);
113 at91_set_gpio_output(AT91_PIN_PA12, 0);
Heiko Schocher237e3792014-10-31 08:31:05 +0100114
Heiko Schocher40540822015-08-21 18:53:46 +0200115 /* Configure recovery button PINs */
116 at91_set_gpio_input(AT91_PIN_PA26, 1);
117 at91_set_gpio_input(AT91_PIN_PA27, 1);
118#elif defined(CONFIG_BOARD_TAURUS)
119 at91_set_gpio_input(AT91_PIN_PA31, 1);
120#endif
121
122 /* check for recovery mode */
123 if (at91_is_recovery() == 1) {
Heiko Schochera1655bb2014-11-18 09:41:58 +0100124 struct spi_flash *flash;
Heiko Schocher237e3792014-10-31 08:31:05 +0100125
Heiko Schocher0ed366f2015-08-21 18:55:07 +0200126 puts("Recovery button pressed\n");
Heiko Schochera1655bb2014-11-18 09:41:58 +0100127 nand_init();
128 spl_nand_erase_one(0, 0);
129 flash = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
130 0,
131 CONFIG_SF_DEFAULT_SPEED,
Heiko Schocher0ed366f2015-08-21 18:55:07 +0200132 CONFIG_SF_DEFAULT_MODE);
Heiko Schochera1655bb2014-11-18 09:41:58 +0100133 if (!flash) {
134 puts("no flash\n");
135 } else {
136 puts("erase spi flash sector 0\n");
137 spi_flash_erase(flash, 0,
138 CONFIG_SYS_NAND_U_BOOT_SIZE);
Heiko Schocher237e3792014-10-31 08:31:05 +0100139 }
140 }
141}
142
Heiko Schocher40540822015-08-21 18:53:46 +0200143#define SDRAM_BASE_CONF (AT91_SDRAMC_NR_13 | AT91_SDRAMC_CAS_3 \
144 |AT91_SDRAMC_NB_4 | AT91_SDRAMC_DBW_32 \
145 | AT91_SDRAMC_TWR_VAL(3) | AT91_SDRAMC_TRC_VAL(9) \
146 | AT91_SDRAMC_TRP_VAL(3) | AT91_SDRAMC_TRCD_VAL(3) \
147 | AT91_SDRAMC_TRAS_VAL(6) | AT91_SDRAMC_TXSR_VAL(10))
148
149void sdramc_configure(unsigned int mask)
Heiko Schocher237e3792014-10-31 08:31:05 +0100150{
151 struct at91_matrix *ma = (struct at91_matrix *)ATMEL_BASE_MATRIX;
152 struct sdramc_reg setting;
153
154 at91_sdram_hw_init();
Heiko Schocher40540822015-08-21 18:53:46 +0200155 setting.cr = SDRAM_BASE_CONF | mask;
Heiko Schocher237e3792014-10-31 08:31:05 +0100156 setting.mdr = AT91_SDRAMC_MD_SDRAM;
157 setting.tr = (CONFIG_SYS_MASTER_CLOCK * 7) / 1000000;
158
Heiko Schocher237e3792014-10-31 08:31:05 +0100159 writel(readl(&ma->ebicsa) | AT91_MATRIX_CS1A_SDRAMC |
160 AT91_MATRIX_VDDIOMSEL_3_3V | AT91_MATRIX_EBI_IOSR_SEL,
161 &ma->ebicsa);
Heiko Schocher40540822015-08-21 18:53:46 +0200162
Heiko Schocher237e3792014-10-31 08:31:05 +0100163 sdramc_initialize(ATMEL_BASE_CS1, &setting);
164}
Heiko Schocher40540822015-08-21 18:53:46 +0200165
166void mem_init(void)
167{
168 unsigned int ram_size = 0;
169
170 /* Configure SDRAM for 128MB */
171 sdramc_configure(AT91_SDRAMC_NC_10);
172
173 /* Do memtest for 128MB */
174 ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
175 CONFIG_SYS_SDRAM_SIZE);
176
177 /*
178 * If 32MB or 16MB should be supported check also for
179 * expected mirroring at A16 and A17
180 * To find mirror addresses depends how the collumns are connected
181 * at RAM (internaly or externaly)
182 * If the collumns are not in inverted order the mirror size effect
183 * behaves like normal SRAM with A0,A1,A2,etc. connected incremantal
184 */
185
186 /* Mirrors at A15 on ATMEL G20 SDRAM Controller with 64MB*/
187 if (ram_size == 0x800) {
188 printf("\n\r 64MB");
189 sdramc_configure(AT91_SDRAMC_NC_9);
190 } else {
191 /* Size already initialized */
192 printf("\n\r 128MB");
193 }
194}
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100195#endif
196
197#ifdef CONFIG_MACB
Heiko Schocher40540822015-08-21 18:53:46 +0200198static void siemens_phy_reset(void)
199{
200 /*
201 * we need to reset PHY for 200us
202 * because of bug in ATMEL G20 CPU (undefined initial state of GPIO)
203 */
204 if ((readl(AT91_ASM_RSTC_SR) & AT91_RSTC_RSTTYP) ==
205 AT91_RSTC_RSTTYP_GENERAL)
206 at91_set_gpio_value(AT91_PIN_PA25, 0); /* reset eth switch */
207}
208
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100209static void taurus_macb_hw_init(void)
210{
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100211 /* Enable EMAC clock */
Heiko Schocher237e3792014-10-31 08:31:05 +0100212 at91_periph_clk_enable(ATMEL_ID_EMAC0);
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100213
214 /*
215 * Disable pull-up on:
216 * RXDV (PA17) => PHY normal mode (not Test mode)
217 * ERX0 (PA14) => PHY ADDR0
218 * ERX1 (PA15) => PHY ADDR1
219 * ERX2 (PA25) => PHY ADDR2
220 * ERX3 (PA26) => PHY ADDR3
221 * ECRS (PA28) => PHY ADDR4 => PHYADDR = 0x0
222 *
223 * PHY has internal pull-down
224 */
225 at91_set_pio_pullup(AT91_PIO_PORTA, 14, 0);
226 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 0);
227 at91_set_pio_pullup(AT91_PIO_PORTA, 17, 0);
228 at91_set_pio_pullup(AT91_PIO_PORTA, 25, 0);
229 at91_set_pio_pullup(AT91_PIO_PORTA, 26, 0);
230 at91_set_pio_pullup(AT91_PIO_PORTA, 28, 0);
231
Heiko Schocher40540822015-08-21 18:53:46 +0200232 siemens_phy_reset();
233
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100234 at91_phy_reset();
235
236 at91_set_gpio_input(AT91_PIN_PA25, 1); /* ERST tri-state */
237
238 /* Re-enable pull-up */
239 at91_set_pio_pullup(AT91_PIO_PORTA, 14, 1);
240 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 1);
241 at91_set_pio_pullup(AT91_PIO_PORTA, 17, 1);
242 at91_set_pio_pullup(AT91_PIO_PORTA, 25, 1);
243 at91_set_pio_pullup(AT91_PIO_PORTA, 26, 1);
244 at91_set_pio_pullup(AT91_PIO_PORTA, 28, 1);
245
246 /* Initialize EMAC=MACB hardware */
247 at91_macb_hw_init();
248}
249#endif
250
251#ifdef CONFIG_GENERIC_ATMEL_MCI
252int board_mmc_init(bd_t *bd)
253{
254 at91_mci_hw_init();
255
256 return atmel_mci_init((void *)ATMEL_BASE_MCI);
257}
258#endif
259
260int board_early_init_f(void)
261{
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100262 /* Enable clocks for all PIOs */
Heiko Schocher237e3792014-10-31 08:31:05 +0100263 at91_periph_clk_enable(ATMEL_ID_PIOA);
264 at91_periph_clk_enable(ATMEL_ID_PIOB);
265 at91_periph_clk_enable(ATMEL_ID_PIOC);
266
267 at91_seriald_hw_init();
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100268
269 return 0;
270}
271
Heiko Schocher50921cd2014-10-31 08:30:56 +0100272int spi_cs_is_valid(unsigned int bus, unsigned int cs)
273{
274 return bus == 0 && cs == 0;
275}
276
277void spi_cs_activate(struct spi_slave *slave)
278{
279 at91_set_gpio_value(TAURUS_SPI_CS_PIN, 0);
280}
281
282void spi_cs_deactivate(struct spi_slave *slave)
283{
284 at91_set_gpio_value(TAURUS_SPI_CS_PIN, 1);
285}
286
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200287#ifdef CONFIG_USB_GADGET_AT91
288#include <linux/usb/at91_udc.h>
289
290void at91_udp_hw_init(void)
291{
292 at91_pmc_t *pmc = (at91_pmc_t *)ATMEL_BASE_PMC;
293
294 /* Enable PLLB */
295 writel(get_pllb_init(), &pmc->pllbr);
296 while ((readl(&pmc->sr) & AT91_PMC_LOCKB) != AT91_PMC_LOCKB)
297 ;
298
299 /* Enable UDPCK clock, MCK is enabled in at91_clock_init() */
300 at91_periph_clk_enable(ATMEL_ID_UDP);
301
Wenyou Yang70341e22016-02-03 10:16:50 +0800302 at91_system_clk_enable(AT91SAM926x_PMC_UDP);
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200303}
304
305struct at91_udc_data board_udc_data = {
306 .baseaddr = ATMEL_BASE_UDP0,
307};
308#endif
309
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100310int board_init(void)
311{
312 /* adress of boot parameters */
313 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
314
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100315#ifdef CONFIG_CMD_NAND
316 taurus_nand_hw_init();
317#endif
318#ifdef CONFIG_MACB
319 taurus_macb_hw_init();
320#endif
Heiko Schocher50921cd2014-10-31 08:30:56 +0100321 at91_spi0_hw_init(TAURUS_SPI_MASK);
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200322#ifdef CONFIG_USB_GADGET_AT91
323 at91_udp_hw_init();
324 at91_udc_probe(&board_udc_data);
325#endif
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100326
327 return 0;
328}
329
330int dram_init(void)
331{
332 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
333 CONFIG_SYS_SDRAM_SIZE);
334 return 0;
335}
336
337int board_eth_init(bd_t *bis)
338{
339 int rc = 0;
340#ifdef CONFIG_MACB
341 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, 0x00);
342#endif
343 return rc;
344}
Heiko Schocher40540822015-08-21 18:53:46 +0200345
346#if !defined(CONFIG_SPL_BUILD)
347#if defined(CONFIG_BOARD_AXM)
348/*
349 * Booting the Fallback Image.
350 *
351 * The function is used to provide and
352 * boot the image with the fallback
353 * parameters, incase if the faulty image
354 * in upgraded over the base firmware.
355 *
356 */
357static int upgrade_failure_fallback(void)
358{
359 char *partitionset_active = NULL;
360 char *rootfs = NULL;
361 char *rootfs_fallback = NULL;
362 char *kern_off;
363 char *kern_off_fb;
364 char *kern_size;
365 char *kern_size_fb;
366
367 partitionset_active = getenv("partitionset_active");
368 if (partitionset_active) {
369 if (partitionset_active[0] == 'A')
370 setenv("partitionset_active", "B");
371 else
372 setenv("partitionset_active", "A");
373 } else {
374 printf("partitionset_active missing.\n");
375 return -ENOENT;
376 }
377
378 rootfs = getenv("rootfs");
379 rootfs_fallback = getenv("rootfs_fallback");
380 setenv("rootfs", rootfs_fallback);
381 setenv("rootfs_fallback", rootfs);
382
383 kern_size = getenv("kernel_size");
384 kern_size_fb = getenv("kernel_size_fallback");
385 setenv("kernel_size", kern_size_fb);
386 setenv("kernel_size_fallback", kern_size);
387
388 kern_off = getenv("kernel_Off");
389 kern_off_fb = getenv("kernel_Off_fallback");
390 setenv("kernel_Off", kern_off_fb);
391 setenv("kernel_Off_fallback", kern_off);
392
393 setenv("bootargs", '\0');
394 setenv("upgrade_available", '\0');
395 setenv("boot_retries", '\0');
396 saveenv();
397
398 return 0;
399}
400
401static int do_upgrade_available(cmd_tbl_t *cmdtp, int flag, int argc,
402 char * const argv[])
403{
404 unsigned long upgrade_available = 0;
405 unsigned long boot_retry = 0;
406 char boot_buf[10];
407
408 upgrade_available = simple_strtoul(getenv("upgrade_available"), NULL,
409 10);
410 if (upgrade_available) {
411 boot_retry = simple_strtoul(getenv("boot_retries"), NULL, 10);
412 boot_retry++;
413 sprintf(boot_buf, "%lx", boot_retry);
414 setenv("boot_retries", boot_buf);
415 saveenv();
416
417 /*
418 * Here the boot_retries count is checked, and if the
419 * count becomes greater than 2 switch back to the
420 * fallback, and reset the board.
421 */
422
423 if (boot_retry > 2) {
424 if (upgrade_failure_fallback() == 0)
425 do_reset(NULL, 0, 0, NULL);
426 return -1;
427 }
428 }
429 return 0;
430}
431
432U_BOOT_CMD(
433 upgrade_available, 1, 1, do_upgrade_available,
434 "check Siemens update",
435 "no parameters"
436);
437#endif
438#endif