blob: 8396ce502b0f90e0e58340d67cf6a24fd55d1ee9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heiko Schocher0f8bc282013-12-02 07:47:22 +01002/*
3 * Board functions for Siemens TAURUS (AT91SAM9G20) based boards
4 * (C) Copyright Siemens AG
5 *
6 * Based on:
7 * U-Boot file: board/atmel/at91sam9260ek/at91sam9260ek.c
8 *
9 * (C) Copyright 2007-2008
10 * Stelian Pop <stelian@popies.net>
11 * Lead Tech Design <www.leadtechdesign.com>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010012 */
13
Heiko Schocher40540822015-08-21 18:53:46 +020014#include <command.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010015#include <common.h>
Heiko Schocher8e6e8222016-05-25 07:23:48 +020016#include <dm.h>
Simon Glass01510092017-08-03 12:22:08 -060017#include <environment.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010018#include <asm/io.h>
19#include <asm/arch/at91sam9260_matrix.h>
20#include <asm/arch/at91sam9_smc.h>
21#include <asm/arch/at91_common.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010022#include <asm/arch/at91_rstc.h>
23#include <asm/arch/gpio.h>
24#include <asm/arch/at91sam9_sdramc.h>
Heiko Schocher8e6e8222016-05-25 07:23:48 +020025#include <asm/arch/atmel_serial.h>
Heiko Schocher237e3792014-10-31 08:31:05 +010026#include <asm/arch/clk.h>
Heiko Schocher8e6e8222016-05-25 07:23:48 +020027#include <asm/gpio.h>
Masahiro Yamada6ae39002017-11-30 13:45:24 +090028#include <linux/mtd/rawnand.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010029#include <atmel_mci.h>
Heiko Schocher50921cd2014-10-31 08:30:56 +010030#include <asm/arch/at91_spi.h>
31#include <spi.h>
Heiko Schocher0f8bc282013-12-02 07:47:22 +010032
33#include <net.h>
Heiko Schocher8e6e8222016-05-25 07:23:48 +020034#ifndef CONFIG_DM_ETH
Heiko Schocher0f8bc282013-12-02 07:47:22 +010035#include <netdev.h>
Heiko Schocher8e6e8222016-05-25 07:23:48 +020036#endif
Heiko Schocher0f8bc282013-12-02 07:47:22 +010037
38DECLARE_GLOBAL_DATA_PTR;
39
Heiko Schocher8e6e8222016-05-25 07:23:48 +020040static void taurus_request_gpio(void)
41{
42 gpio_request(CONFIG_SYS_NAND_ENABLE_PIN, "nand ena");
43 gpio_request(CONFIG_SYS_NAND_READY_PIN, "nand rdy");
44 gpio_request(AT91_PIN_PA25, "ena PHY");
45}
46
Heiko Schocher0f8bc282013-12-02 07:47:22 +010047static void taurus_nand_hw_init(void)
48{
49 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
50 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
51 unsigned long csa;
52
53 /* Assign CS3 to NAND/SmartMedia Interface */
54 csa = readl(&matrix->ebicsa);
55 csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
56 writel(csa, &matrix->ebicsa);
57
58 /* Configure SMC CS3 for NAND/SmartMedia */
59 writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(0) |
60 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
61 &smc->cs[3].setup);
62 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(3) |
63 AT91_SMC_PULSE_NRD(4) | AT91_SMC_PULSE_NCS_RD(3),
64 &smc->cs[3].pulse);
65 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(7),
66 &smc->cs[3].cycle);
67 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
68 AT91_SMC_MODE_EXNW_DISABLE |
69 AT91_SMC_MODE_DBW_8 |
70 AT91_SMC_MODE_TDF_CYCLE(3),
71 &smc->cs[3].mode);
72
73 /* Configure RDY/BSY */
74 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
75
76 /* Enable NandFlash */
77 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
78}
Heiko Schocher237e3792014-10-31 08:31:05 +010079
80#if defined(CONFIG_SPL_BUILD)
81#include <spl.h>
82#include <nand.h>
Heiko Schochera1655bb2014-11-18 09:41:58 +010083#include <spi_flash.h>
Heiko Schocher237e3792014-10-31 08:31:05 +010084
85void matrix_init(void)
86{
87 struct at91_matrix *mat = (struct at91_matrix *)ATMEL_BASE_MATRIX;
88
89 writel((readl(&mat->scfg[3]) & (~AT91_MATRIX_SLOT_CYCLE))
90 | AT91_MATRIX_SLOT_CYCLE_(0x40),
91 &mat->scfg[3]);
92}
93
Heiko Schocher40540822015-08-21 18:53:46 +020094#if defined(CONFIG_BOARD_AXM)
95static int at91_is_recovery(void)
96{
97 if ((at91_get_gpio_value(AT91_PIN_PA26) == 0) &&
98 (at91_get_gpio_value(AT91_PIN_PA27) == 0))
99 return 1;
100
101 return 0;
102}
103#elif defined(CONFIG_BOARD_TAURUS)
104static int at91_is_recovery(void)
105{
106 if (at91_get_gpio_value(AT91_PIN_PA31) == 0)
107 return 1;
108
109 return 0;
110}
111#endif
112
Heiko Schocher0ed366f2015-08-21 18:55:07 +0200113void spl_board_init(void)
Heiko Schocher237e3792014-10-31 08:31:05 +0100114{
115 taurus_nand_hw_init();
Heiko Schochera1655bb2014-11-18 09:41:58 +0100116 at91_spi0_hw_init(TAURUS_SPI_MASK);
Heiko Schocher237e3792014-10-31 08:31:05 +0100117
Heiko Schocher40540822015-08-21 18:53:46 +0200118#if defined(CONFIG_BOARD_AXM)
119 /* Configure LED PINs */
120 at91_set_gpio_output(AT91_PIN_PA6, 0);
121 at91_set_gpio_output(AT91_PIN_PA8, 0);
122 at91_set_gpio_output(AT91_PIN_PA9, 0);
123 at91_set_gpio_output(AT91_PIN_PA10, 0);
124 at91_set_gpio_output(AT91_PIN_PA11, 0);
125 at91_set_gpio_output(AT91_PIN_PA12, 0);
Heiko Schocher237e3792014-10-31 08:31:05 +0100126
Heiko Schocher40540822015-08-21 18:53:46 +0200127 /* Configure recovery button PINs */
128 at91_set_gpio_input(AT91_PIN_PA26, 1);
129 at91_set_gpio_input(AT91_PIN_PA27, 1);
130#elif defined(CONFIG_BOARD_TAURUS)
131 at91_set_gpio_input(AT91_PIN_PA31, 1);
132#endif
133
134 /* check for recovery mode */
135 if (at91_is_recovery() == 1) {
Heiko Schochera1655bb2014-11-18 09:41:58 +0100136 struct spi_flash *flash;
Heiko Schocher237e3792014-10-31 08:31:05 +0100137
Heiko Schocher0ed366f2015-08-21 18:55:07 +0200138 puts("Recovery button pressed\n");
Heiko Schochera1655bb2014-11-18 09:41:58 +0100139 nand_init();
140 spl_nand_erase_one(0, 0);
141 flash = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
142 0,
143 CONFIG_SF_DEFAULT_SPEED,
Heiko Schocher0ed366f2015-08-21 18:55:07 +0200144 CONFIG_SF_DEFAULT_MODE);
Heiko Schochera1655bb2014-11-18 09:41:58 +0100145 if (!flash) {
146 puts("no flash\n");
147 } else {
148 puts("erase spi flash sector 0\n");
149 spi_flash_erase(flash, 0,
150 CONFIG_SYS_NAND_U_BOOT_SIZE);
Heiko Schocher237e3792014-10-31 08:31:05 +0100151 }
152 }
153}
154
Heiko Schocher40540822015-08-21 18:53:46 +0200155#define SDRAM_BASE_CONF (AT91_SDRAMC_NR_13 | AT91_SDRAMC_CAS_3 \
156 |AT91_SDRAMC_NB_4 | AT91_SDRAMC_DBW_32 \
157 | AT91_SDRAMC_TWR_VAL(3) | AT91_SDRAMC_TRC_VAL(9) \
158 | AT91_SDRAMC_TRP_VAL(3) | AT91_SDRAMC_TRCD_VAL(3) \
159 | AT91_SDRAMC_TRAS_VAL(6) | AT91_SDRAMC_TXSR_VAL(10))
160
161void sdramc_configure(unsigned int mask)
Heiko Schocher237e3792014-10-31 08:31:05 +0100162{
163 struct at91_matrix *ma = (struct at91_matrix *)ATMEL_BASE_MATRIX;
164 struct sdramc_reg setting;
165
166 at91_sdram_hw_init();
Heiko Schocher40540822015-08-21 18:53:46 +0200167 setting.cr = SDRAM_BASE_CONF | mask;
Heiko Schocher237e3792014-10-31 08:31:05 +0100168 setting.mdr = AT91_SDRAMC_MD_SDRAM;
169 setting.tr = (CONFIG_SYS_MASTER_CLOCK * 7) / 1000000;
170
Heiko Schocher237e3792014-10-31 08:31:05 +0100171 writel(readl(&ma->ebicsa) | AT91_MATRIX_CS1A_SDRAMC |
172 AT91_MATRIX_VDDIOMSEL_3_3V | AT91_MATRIX_EBI_IOSR_SEL,
173 &ma->ebicsa);
Heiko Schocher40540822015-08-21 18:53:46 +0200174
Heiko Schocher237e3792014-10-31 08:31:05 +0100175 sdramc_initialize(ATMEL_BASE_CS1, &setting);
176}
Heiko Schocher40540822015-08-21 18:53:46 +0200177
178void mem_init(void)
179{
180 unsigned int ram_size = 0;
181
182 /* Configure SDRAM for 128MB */
183 sdramc_configure(AT91_SDRAMC_NC_10);
184
185 /* Do memtest for 128MB */
186 ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
187 CONFIG_SYS_SDRAM_SIZE);
188
189 /*
190 * If 32MB or 16MB should be supported check also for
191 * expected mirroring at A16 and A17
192 * To find mirror addresses depends how the collumns are connected
193 * at RAM (internaly or externaly)
194 * If the collumns are not in inverted order the mirror size effect
195 * behaves like normal SRAM with A0,A1,A2,etc. connected incremantal
196 */
197
198 /* Mirrors at A15 on ATMEL G20 SDRAM Controller with 64MB*/
199 if (ram_size == 0x800) {
200 printf("\n\r 64MB");
201 sdramc_configure(AT91_SDRAMC_NC_9);
202 } else {
203 /* Size already initialized */
204 printf("\n\r 128MB");
205 }
206}
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100207#endif
208
209#ifdef CONFIG_MACB
Heiko Schocher40540822015-08-21 18:53:46 +0200210static void siemens_phy_reset(void)
211{
212 /*
213 * we need to reset PHY for 200us
214 * because of bug in ATMEL G20 CPU (undefined initial state of GPIO)
215 */
216 if ((readl(AT91_ASM_RSTC_SR) & AT91_RSTC_RSTTYP) ==
217 AT91_RSTC_RSTTYP_GENERAL)
218 at91_set_gpio_value(AT91_PIN_PA25, 0); /* reset eth switch */
219}
220
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100221static void taurus_macb_hw_init(void)
222{
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100223 /* Enable EMAC clock */
Heiko Schocher237e3792014-10-31 08:31:05 +0100224 at91_periph_clk_enable(ATMEL_ID_EMAC0);
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100225
226 /*
227 * Disable pull-up on:
228 * RXDV (PA17) => PHY normal mode (not Test mode)
229 * ERX0 (PA14) => PHY ADDR0
230 * ERX1 (PA15) => PHY ADDR1
231 * ERX2 (PA25) => PHY ADDR2
232 * ERX3 (PA26) => PHY ADDR3
233 * ECRS (PA28) => PHY ADDR4 => PHYADDR = 0x0
234 *
235 * PHY has internal pull-down
236 */
237 at91_set_pio_pullup(AT91_PIO_PORTA, 14, 0);
238 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 0);
239 at91_set_pio_pullup(AT91_PIO_PORTA, 17, 0);
240 at91_set_pio_pullup(AT91_PIO_PORTA, 25, 0);
241 at91_set_pio_pullup(AT91_PIO_PORTA, 26, 0);
242 at91_set_pio_pullup(AT91_PIO_PORTA, 28, 0);
243
Heiko Schocher40540822015-08-21 18:53:46 +0200244 siemens_phy_reset();
245
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100246 at91_phy_reset();
247
248 at91_set_gpio_input(AT91_PIN_PA25, 1); /* ERST tri-state */
249
250 /* Re-enable pull-up */
251 at91_set_pio_pullup(AT91_PIO_PORTA, 14, 1);
252 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 1);
253 at91_set_pio_pullup(AT91_PIO_PORTA, 17, 1);
254 at91_set_pio_pullup(AT91_PIO_PORTA, 25, 1);
255 at91_set_pio_pullup(AT91_PIO_PORTA, 26, 1);
256 at91_set_pio_pullup(AT91_PIO_PORTA, 28, 1);
257
258 /* Initialize EMAC=MACB hardware */
259 at91_macb_hw_init();
260}
261#endif
262
263#ifdef CONFIG_GENERIC_ATMEL_MCI
264int board_mmc_init(bd_t *bd)
265{
266 at91_mci_hw_init();
267
268 return atmel_mci_init((void *)ATMEL_BASE_MCI);
269}
270#endif
271
272int board_early_init_f(void)
273{
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100274 /* Enable clocks for all PIOs */
Heiko Schocher237e3792014-10-31 08:31:05 +0100275 at91_periph_clk_enable(ATMEL_ID_PIOA);
276 at91_periph_clk_enable(ATMEL_ID_PIOB);
277 at91_periph_clk_enable(ATMEL_ID_PIOC);
278
279 at91_seriald_hw_init();
Heiko Schocher8e6e8222016-05-25 07:23:48 +0200280 taurus_request_gpio();
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100281
282 return 0;
283}
284
Jagan Teki8b562ef2018-03-14 18:46:34 +0530285/* FIXME gpio code here need to handle through DM_GPIO */
286#ifndef CONFIG_DM_SPI
Heiko Schocher50921cd2014-10-31 08:30:56 +0100287int spi_cs_is_valid(unsigned int bus, unsigned int cs)
288{
289 return bus == 0 && cs == 0;
290}
291
292void spi_cs_activate(struct spi_slave *slave)
293{
294 at91_set_gpio_value(TAURUS_SPI_CS_PIN, 0);
295}
296
297void spi_cs_deactivate(struct spi_slave *slave)
298{
299 at91_set_gpio_value(TAURUS_SPI_CS_PIN, 1);
300}
Jagan Teki8b562ef2018-03-14 18:46:34 +0530301#endif
Heiko Schocher50921cd2014-10-31 08:30:56 +0100302
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200303#ifdef CONFIG_USB_GADGET_AT91
304#include <linux/usb/at91_udc.h>
305
306void at91_udp_hw_init(void)
307{
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200308 /* Enable PLLB */
Wenyou Yang30f65c82016-02-03 10:20:45 +0800309 at91_pllb_clk_enable(get_pllb_init());
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200310
311 /* Enable UDPCK clock, MCK is enabled in at91_clock_init() */
312 at91_periph_clk_enable(ATMEL_ID_UDP);
313
Wenyou Yang70341e22016-02-03 10:16:50 +0800314 at91_system_clk_enable(AT91SAM926x_PMC_UDP);
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200315}
316
317struct at91_udc_data board_udc_data = {
318 .baseaddr = ATMEL_BASE_UDP0,
319};
320#endif
321
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100322int board_init(void)
323{
324 /* adress of boot parameters */
325 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
326
Heiko Schocher8e6e8222016-05-25 07:23:48 +0200327 taurus_request_gpio();
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100328#ifdef CONFIG_CMD_NAND
329 taurus_nand_hw_init();
330#endif
331#ifdef CONFIG_MACB
332 taurus_macb_hw_init();
333#endif
Heiko Schocher50921cd2014-10-31 08:30:56 +0100334 at91_spi0_hw_init(TAURUS_SPI_MASK);
Heiko Schochere8b81ee2015-09-08 11:52:52 +0200335#ifdef CONFIG_USB_GADGET_AT91
336 at91_udp_hw_init();
337 at91_udc_probe(&board_udc_data);
338#endif
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100339
340 return 0;
341}
342
343int dram_init(void)
344{
345 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
346 CONFIG_SYS_SDRAM_SIZE);
347 return 0;
348}
349
Heiko Schocher8e6e8222016-05-25 07:23:48 +0200350#ifndef CONFIG_DM_ETH
Heiko Schocher0f8bc282013-12-02 07:47:22 +0100351int board_eth_init(bd_t *bis)
352{
353 int rc = 0;
354#ifdef CONFIG_MACB
355 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, 0x00);
356#endif
357 return rc;
358}
Heiko Schocher8e6e8222016-05-25 07:23:48 +0200359#endif
Heiko Schocher40540822015-08-21 18:53:46 +0200360
361#if !defined(CONFIG_SPL_BUILD)
362#if defined(CONFIG_BOARD_AXM)
363/*
364 * Booting the Fallback Image.
365 *
366 * The function is used to provide and
367 * boot the image with the fallback
368 * parameters, incase if the faulty image
369 * in upgraded over the base firmware.
370 *
371 */
372static int upgrade_failure_fallback(void)
373{
374 char *partitionset_active = NULL;
375 char *rootfs = NULL;
376 char *rootfs_fallback = NULL;
377 char *kern_off;
378 char *kern_off_fb;
379 char *kern_size;
380 char *kern_size_fb;
381
Simon Glass00caae62017-08-03 12:22:12 -0600382 partitionset_active = env_get("partitionset_active");
Heiko Schocher40540822015-08-21 18:53:46 +0200383 if (partitionset_active) {
384 if (partitionset_active[0] == 'A')
Simon Glass382bee52017-08-03 12:22:09 -0600385 env_set("partitionset_active", "B");
Heiko Schocher40540822015-08-21 18:53:46 +0200386 else
Simon Glass382bee52017-08-03 12:22:09 -0600387 env_set("partitionset_active", "A");
Heiko Schocher40540822015-08-21 18:53:46 +0200388 } else {
389 printf("partitionset_active missing.\n");
390 return -ENOENT;
391 }
392
Simon Glass00caae62017-08-03 12:22:12 -0600393 rootfs = env_get("rootfs");
394 rootfs_fallback = env_get("rootfs_fallback");
Simon Glass382bee52017-08-03 12:22:09 -0600395 env_set("rootfs", rootfs_fallback);
396 env_set("rootfs_fallback", rootfs);
Heiko Schocher40540822015-08-21 18:53:46 +0200397
Simon Glass00caae62017-08-03 12:22:12 -0600398 kern_size = env_get("kernel_size");
399 kern_size_fb = env_get("kernel_size_fallback");
Simon Glass382bee52017-08-03 12:22:09 -0600400 env_set("kernel_size", kern_size_fb);
401 env_set("kernel_size_fallback", kern_size);
Heiko Schocher40540822015-08-21 18:53:46 +0200402
Simon Glass00caae62017-08-03 12:22:12 -0600403 kern_off = env_get("kernel_Off");
404 kern_off_fb = env_get("kernel_Off_fallback");
Simon Glass382bee52017-08-03 12:22:09 -0600405 env_set("kernel_Off", kern_off_fb);
406 env_set("kernel_Off_fallback", kern_off);
Heiko Schocher40540822015-08-21 18:53:46 +0200407
Simon Glass382bee52017-08-03 12:22:09 -0600408 env_set("bootargs", '\0');
409 env_set("upgrade_available", '\0');
410 env_set("boot_retries", '\0');
Simon Glass01510092017-08-03 12:22:08 -0600411 env_save();
Heiko Schocher40540822015-08-21 18:53:46 +0200412
413 return 0;
414}
415
416static int do_upgrade_available(cmd_tbl_t *cmdtp, int flag, int argc,
417 char * const argv[])
418{
419 unsigned long upgrade_available = 0;
420 unsigned long boot_retry = 0;
421 char boot_buf[10];
422
Simon Glass00caae62017-08-03 12:22:12 -0600423 upgrade_available = simple_strtoul(env_get("upgrade_available"), NULL,
Heiko Schocher40540822015-08-21 18:53:46 +0200424 10);
425 if (upgrade_available) {
Simon Glass00caae62017-08-03 12:22:12 -0600426 boot_retry = simple_strtoul(env_get("boot_retries"), NULL, 10);
Heiko Schocher40540822015-08-21 18:53:46 +0200427 boot_retry++;
428 sprintf(boot_buf, "%lx", boot_retry);
Simon Glass382bee52017-08-03 12:22:09 -0600429 env_set("boot_retries", boot_buf);
Simon Glass01510092017-08-03 12:22:08 -0600430 env_save();
Heiko Schocher40540822015-08-21 18:53:46 +0200431
432 /*
433 * Here the boot_retries count is checked, and if the
434 * count becomes greater than 2 switch back to the
435 * fallback, and reset the board.
436 */
437
438 if (boot_retry > 2) {
439 if (upgrade_failure_fallback() == 0)
440 do_reset(NULL, 0, 0, NULL);
441 return -1;
442 }
443 }
444 return 0;
445}
446
447U_BOOT_CMD(
448 upgrade_available, 1, 1, do_upgrade_available,
449 "check Siemens update",
450 "no parameters"
451);
452#endif
453#endif