blob: 263de49c769deab116692ab59c1e46ab63ba7287 [file] [log] [blame]
Stelian Pop0176d432008-03-26 18:52:33 +01001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Stelian Pop0176d432008-03-26 18:52:33 +01004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stelian Pop0176d432008-03-26 18:52:33 +01007 */
8
9#include <common.h>
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000010#include <asm/io.h>
Stelian Pop0176d432008-03-26 18:52:33 +010011#include <asm/arch/at91sam9260_matrix.h>
Stelian Pop9606b3c2008-05-08 22:52:10 +020012#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD1332a2a2009-03-21 21:07:59 +010013#include <asm/arch/at91_common.h>
Stelian Pop0176d432008-03-26 18:52:33 +010014#include <asm/arch/at91_pmc.h>
15#include <asm/arch/at91_rstc.h>
16#include <asm/arch/gpio.h>
Wu, Josha73267a2013-03-28 20:28:41 +000017#include <atmel_mci.h>
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000018
Stelian Pop0176d432008-03-26 18:52:33 +010019#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000020# include <net.h>
Stelian Pop0176d432008-03-26 18:52:33 +010021#endif
Ben Warren3ae071e2008-08-12 22:11:53 -070022#include <netdev.h>
Stelian Pop0176d432008-03-26 18:52:33 +010023
24DECLARE_GLOBAL_DATA_PTR;
25
26/* ------------------------------------------------------------------------- */
27/*
28 * Miscelaneous platform dependent initialisations
29 */
30
Stelian Pop0176d432008-03-26 18:52:33 +010031#ifdef CONFIG_CMD_NAND
32static void at91sam9260ek_nand_hw_init(void)
33{
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000034 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
35 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
Stelian Pop0176d432008-03-26 18:52:33 +010036 unsigned long csa;
37
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000038 /* Assign CS3 to NAND/SmartMedia Interface */
39 csa = readl(&matrix->ebicsa);
40 csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
41 writel(csa, &matrix->ebicsa);
Stelian Pop0176d432008-03-26 18:52:33 +010042
43 /* Configure SMC CS3 for NAND/SmartMedia */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000044 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
45 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
46 &smc->cs[3].setup);
47 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
48 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
49 &smc->cs[3].pulse);
50 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
51 &smc->cs[3].cycle);
52 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
53 AT91_SMC_MODE_EXNW_DISABLE |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054#ifdef CONFIG_SYS_NAND_DBW_16
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000055 AT91_SMC_MODE_DBW_16 |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020056#else /* CONFIG_SYS_NAND_DBW_8 */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000057 AT91_SMC_MODE_DBW_8 |
Stelian Popc1212b22008-05-08 20:52:18 +020058#endif
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000059 AT91_SMC_MODE_TDF_CYCLE(2),
60 &smc->cs[3].mode);
Stelian Pop0176d432008-03-26 18:52:33 +010061
62 /* Configure RDY/BSY */
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010063 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop0176d432008-03-26 18:52:33 +010064
65 /* Enable NandFlash */
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010066 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000067
Stelian Pop0176d432008-03-26 18:52:33 +010068}
69#endif
70
Stelian Pop0176d432008-03-26 18:52:33 +010071#ifdef CONFIG_MACB
72static void at91sam9260ek_macb_hw_init(void)
73{
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000074 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
75 struct at91_port *pioa = (struct at91_port *)ATMEL_BASE_PIOA;
76 struct at91_rstc *rstc = (struct at91_rstc *)ATMEL_BASE_RSTC;
77 unsigned long erstl;
Sedji Gaouaou0aafde12009-06-24 08:32:09 +020078
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000079 /* Enable EMAC clock */
80 writel(1 << ATMEL_ID_EMAC0, &pmc->pcer);
Stelian Pop0176d432008-03-26 18:52:33 +010081
82 /*
83 * Disable pull-up on:
84 * RXDV (PA17) => PHY normal mode (not Test mode)
Wolfgang Denk53677ef2008-05-20 16:00:29 +020085 * ERX0 (PA14) => PHY ADDR0
Stelian Pop0176d432008-03-26 18:52:33 +010086 * ERX1 (PA15) => PHY ADDR1
87 * ERX2 (PA25) => PHY ADDR2
88 * ERX3 (PA26) => PHY ADDR3
89 * ECRS (PA28) => PHY ADDR4 => PHYADDR = 0x0
90 *
91 * PHY has internal pull-down
92 */
93 writel(pin_to_mask(AT91_PIN_PA14) |
Reinhard Meyer8c6407f2011-06-06 00:13:10 +000094 pin_to_mask(AT91_PIN_PA15) |
95 pin_to_mask(AT91_PIN_PA17) |
96 pin_to_mask(AT91_PIN_PA25) |
97 pin_to_mask(AT91_PIN_PA26) |
98 pin_to_mask(AT91_PIN_PA28),
99 &pioa->pudr);
Stelian Pop0176d432008-03-26 18:52:33 +0100100
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000101 erstl = readl(&rstc->mr) & AT91_RSTC_MR_ERSTL_MASK;
Sedji Gaouaou0aafde12009-06-24 08:32:09 +0200102
Stelian Pop0176d432008-03-26 18:52:33 +0100103 /* Need to reset PHY -> 500ms reset */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000104 writel(AT91_RSTC_KEY | AT91_RSTC_MR_ERSTL(13) |
105 AT91_RSTC_MR_URSTEN, &rstc->mr);
Stelian Pop0176d432008-03-26 18:52:33 +0100106
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000107 writel(AT91_RSTC_KEY | AT91_RSTC_CR_EXTRST, &rstc->cr);
Stelian Pop0176d432008-03-26 18:52:33 +0100108
109 /* Wait for end hardware reset */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000110 while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL))
111 ;
Stelian Pop0176d432008-03-26 18:52:33 +0100112
113 /* Restore NRST value */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000114 writel(AT91_RSTC_KEY | erstl | AT91_RSTC_MR_URSTEN,
115 &rstc->mr);
Stelian Pop0176d432008-03-26 18:52:33 +0100116
117 /* Re-enable pull-up */
118 writel(pin_to_mask(AT91_PIN_PA14) |
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000119 pin_to_mask(AT91_PIN_PA15) |
120 pin_to_mask(AT91_PIN_PA17) |
121 pin_to_mask(AT91_PIN_PA25) |
122 pin_to_mask(AT91_PIN_PA26) |
123 pin_to_mask(AT91_PIN_PA28),
124 &pioa->puer);
Stelian Pop0176d432008-03-26 18:52:33 +0100125
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000126 /* Initialize EMAC=MACB hardware */
Jean-Christophe PLAGNIOL-VILLARDe2c04762009-03-21 21:08:00 +0100127 at91_macb_hw_init();
Stelian Pop0176d432008-03-26 18:52:33 +0100128}
129#endif
130
Wu, Josha73267a2013-03-28 20:28:41 +0000131#ifdef CONFIG_GENERIC_ATMEL_MCI
132int board_mmc_init(bd_t *bd)
133{
134 at91_mci_hw_init();
135
136 return atmel_mci_init((void *)ATMEL_BASE_MCI);
137}
138#endif
139
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000140int board_early_init_f(void)
141{
142 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
143
144 /* Enable clocks for all PIOs */
145 writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) |
146 (1 << ATMEL_ID_PIOC),
147 &pmc->pcer);
148
149 return 0;
150}
151
Stelian Pop0176d432008-03-26 18:52:33 +0100152int board_init(void)
153{
Stelian Pop0176d432008-03-26 18:52:33 +0100154 /* adress of boot parameters */
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000155 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop0176d432008-03-26 18:52:33 +0100156
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000157 at91_seriald_hw_init();
Stelian Pop0176d432008-03-26 18:52:33 +0100158#ifdef CONFIG_CMD_NAND
159 at91sam9260ek_nand_hw_init();
160#endif
161#ifdef CONFIG_HAS_DATAFLASH
Albin Tonnerre50b5fff2009-09-01 11:26:20 +0200162 at91_spi0_hw_init((1 << 0) | (1 << 1));
Stelian Pop0176d432008-03-26 18:52:33 +0100163#endif
164#ifdef CONFIG_MACB
165 at91sam9260ek_macb_hw_init();
166#endif
167
168 return 0;
169}
170
171int dram_init(void)
172{
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000173 gd->ram_size = get_ram_size(
174 (void *)CONFIG_SYS_SDRAM_BASE,
175 CONFIG_SYS_SDRAM_SIZE);
Stelian Pop0176d432008-03-26 18:52:33 +0100176 return 0;
177}
178
179#ifdef CONFIG_RESET_PHY_R
180void reset_phy(void)
181{
Stelian Pop0176d432008-03-26 18:52:33 +0100182}
183#endif
Ben Warren3ae071e2008-08-12 22:11:53 -0700184
185int board_eth_init(bd_t *bis)
186{
187 int rc = 0;
188#ifdef CONFIG_MACB
Reinhard Meyer8c6407f2011-06-06 00:13:10 +0000189 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, 0x00);
Ben Warren3ae071e2008-08-12 22:11:53 -0700190#endif
191 return rc;
192}