1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <common.h>
27#include <asm/arch/at91sam9260.h>
28#include <asm/arch/at91sam9260_matrix.h>
29#include <asm/arch/at91sam9_smc.h>
30#include <asm/arch/at91_common.h>
31#include <asm/arch/at91_pmc.h>
32#include <asm/arch/at91_rstc.h>
33#include <asm/arch/gpio.h>
34#include <asm/io.h>
35#include <asm/arch/hardware.h>
36#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
37#include <netdev.h>
38#include <net.h>
39#endif
40
41DECLARE_GLOBAL_DATA_PTR;
42
43
44
45
46
47
48static void afeb9260_nand_hw_init(void)
49{
50 unsigned long csa;
51 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
52 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
53
54
55 csa = readl(&matrix->ebicsa);
56 csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
57 writel(csa, &matrix->ebicsa);
58
59
60 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
61 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
62 &smc->cs[3].setup);
63 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
64 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
65 &smc->cs[3].pulse);
66 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
67 &smc->cs[3].cycle);
68 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
69 AT91_SMC_MODE_EXNW_DISABLE |
70 AT91_SMC_MODE_DBW_8 |
71 AT91_SMC_MODE_TDF_CYCLE(2),
72 &smc->cs[3].mode);
73
74
75 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
76
77
78 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
79}
80
81#ifdef CONFIG_MACB
82static void afeb9260_macb_hw_init(void)
83{
84 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
85 struct at91_port *pioa = (struct at91_port *)ATMEL_BASE_PIOA;
86 struct at91_rstc *rstc = (struct at91_rstc *)ATMEL_BASE_RSTC;
87 unsigned long erstl;
88
89
90
91 writel(1 << ATMEL_ID_EMAC0, &pmc->pcer);
92
93
94
95
96
97
98
99
100
101
102
103
104
105 writel(pin_to_mask(AT91_PIN_PA14) |
106 pin_to_mask(AT91_PIN_PA15) |
107 pin_to_mask(AT91_PIN_PA17) |
108 pin_to_mask(AT91_PIN_PA25) |
109 pin_to_mask(AT91_PIN_PA26) |
110 pin_to_mask(AT91_PIN_PA28),
111 &pioa->pudr);
112
113 erstl = readl(&rstc->mr) & AT91_RSTC_MR_ERSTL_MASK;
114
115
116 writel(AT91_RSTC_KEY | AT91_RSTC_MR_ERSTL(13) |
117 AT91_RSTC_MR_URSTEN, &rstc->mr);
118 writel(AT91_RSTC_KEY | AT91_RSTC_CR_EXTRST, &rstc->cr);
119
120
121 while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL))
122 ;
123
124 writel(AT91_RSTC_KEY | erstl | AT91_RSTC_MR_URSTEN,
125 &rstc->mr);
126
127
128
129 writel(pin_to_mask(AT91_PIN_PA14) |
130 pin_to_mask(AT91_PIN_PA15) |
131 pin_to_mask(AT91_PIN_PA17) |
132 pin_to_mask(AT91_PIN_PA25) |
133 pin_to_mask(AT91_PIN_PA26) |
134 pin_to_mask(AT91_PIN_PA28),
135 &pioa->puer);
136
137 at91_macb_hw_init();
138}
139#endif
140int board_early_init_f(void)
141{
142 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
143
144 writel((1 << ATMEL_ID_PIOA) |
145 (1 << ATMEL_ID_PIOB) |
146 (1 << ATMEL_ID_PIOC),
147 &pmc->pcer);
148 return 0;
149}
150int board_init(void)
151{
152
153 gd->bd->bi_arch_number = MACH_TYPE_AFEB9260;
154
155 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
156
157 at91_seriald_hw_init();
158#ifdef CONFIG_CMD_NAND
159 afeb9260_nand_hw_init();
160#endif
161 at91_spi0_hw_init((1 << 0) | (1 << 1));
162#ifdef CONFIG_MACB
163 afeb9260_macb_hw_init();
164#endif
165
166 return 0;
167}
168
169int dram_init(void)
170{
171 gd->ram_size = get_ram_size(
172 (void *)CONFIG_SYS_SDRAM_BASE,
173 CONFIG_SYS_SDRAM_SIZE);
174
175 return 0;
176}
177
178#ifdef CONFIG_RESET_PHY_R
179void reset_phy(void)
180{
181}
182#endif
183
184int board_eth_init(bd_t *bis)
185{
186 int rc = 0;
187#ifdef CONFIG_MACB
188 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, 0x01);
189#endif
190 return rc;
191}
192