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
27
28
29#include <common.h>
30#include <asm/arch/at91sam9263.h>
31#include <asm/arch/at91sam9_smc.h>
32#include <asm/arch/at91_common.h>
33#include <asm/arch/at91_pmc.h>
34#include <asm/arch/at91_rstc.h>
35#include <asm/arch/at91_matrix.h>
36#include <asm/arch/at91_pio.h>
37#include <asm/arch/clk.h>
38#include <asm/arch/hardware.h>
39#include <asm/arch/io.h>
40#include <netdev.h>
41
42DECLARE_GLOBAL_DATA_PTR;
43
44
45
46
47
48static int hw_rev = -1;
49
50int get_hw_rev(void)
51{
52 if (hw_rev >= 0)
53 return hw_rev;
54
55 hw_rev = at91_get_pio_value(AT91_PIO_PORTB, 19);
56 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 20) << 1;
57 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 21) << 2;
58 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 22) << 3;
59
60 if (hw_rev == 15)
61 hw_rev = 0;
62
63 return hw_rev;
64}
65
66#ifdef CONFIG_CMD_NAND
67static void meesc_nand_hw_init(void)
68{
69 unsigned long csa;
70 at91_smc_t *smc = (at91_smc_t *) AT91_SMC0_BASE;
71 at91_matrix_t *matrix = (at91_matrix_t *) AT91_MATRIX_BASE;
72
73
74 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
75 writel(csa, &matrix->csa[0]);
76
77
78 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
79 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
80 &smc->cs[3].setup);
81
82 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
83 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
84 &smc->cs[3].pulse);
85
86 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
87 &smc->cs[3].cycle);
88 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
89 AT91_SMC_MODE_EXNW_DISABLE |
90 AT91_SMC_MODE_DBW_8 |
91 AT91_SMC_MODE_TDF_CYCLE(2),
92 &smc->cs[3].mode);
93
94
95 at91_set_pio_input(CONFIG_SYS_NAND_READY_PIN, 1);
96
97
98 at91_set_pio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
99}
100#endif
101
102#ifdef CONFIG_MACB
103static void meesc_macb_hw_init(void)
104{
105 at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
106
107 writel(1 << AT91SAM9263_ID_EMAC, &pmc->pcer);
108 at91_macb_hw_init();
109}
110#endif
111
112
113
114
115
116
117
118static void meesc_ethercat_hw_init(void)
119{
120 at91_smc_t *smc1 = (at91_smc_t *) AT91_SMC1_BASE;
121
122
123 writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) |
124 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0),
125 &smc1->cs[0].setup);
126 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(9) |
127 AT91_SMC_PULSE_NRD(5) | AT91_SMC_PULSE_NCS_RD(9),
128 &smc1->cs[0].pulse);
129 writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6),
130 &smc1->cs[0].cycle);
131
132
133
134
135 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_EXNW_READY |
136 AT91_SMC_MODE_DBW_16 | AT91_SMC_MODE_TDF_CYCLE(0) |
137 AT91_SMC_MODE_TDF, &smc1->cs[0].mode);
138
139
140 at91_set_b_periph(AT91_PIO_PORTE, 20, 0);
141}
142
143int dram_init(void)
144{
145 gd->bd->bi_dram[0].start = PHYS_SDRAM;
146 gd->bd->bi_dram[0].size = get_ram_size((long *) PHYS_SDRAM, (1 << 27));
147 return 0;
148}
149
150int board_eth_init(bd_t *bis)
151{
152 int rc = 0;
153#ifdef CONFIG_MACB
154 rc = macb_eth_initialize(0, (void *)AT91_EMAC_BASE, 0x00);
155#endif
156 return rc;
157}
158
159int checkboard(void)
160{
161 char str[32];
162 u_char hw_type;
163
164
165 hw_type = readb(CONFIG_ET1100_BASE);
166
167 switch (hw_type) {
168 case 0x11:
169 case 0x3F:
170
171 gd->bd->bi_arch_number = MACH_TYPE_MEESC;
172 puts("Board: CAN-EtherCAT Gateway");
173 break;
174 case 0xFF:
175
176 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
177 puts("Board: EtherCAN/2 Gateway");
178
179 at91_set_pio_output(AT91_PIO_PORTB, 12, 1);
180 break;
181 default:
182
183 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
184 printf("ERROR! Read invalid hw_type: %02X\n", hw_type);
185 puts("Board: EtherCAN/2 Gateway");
186 break;
187 }
188 if (getenv_f("serial#", str, sizeof(str)) > 0) {
189 puts(", serial# ");
190 puts(str);
191 }
192 printf("\nHardware-revision: 1.%d\n", get_hw_rev());
193 printf("Mach-type: %lu\n", gd->bd->bi_arch_number);
194 return 0;
195}
196
197#ifdef CONFIG_SERIAL_TAG
198void get_board_serial(struct tag_serialnr *serialnr)
199{
200 char *str;
201
202 char *serial = getenv("serial#");
203 if (serial) {
204 str = strchr(serial, '_');
205 if (str && (strlen(str) >= 4)) {
206 serialnr->high = (*(str + 1) << 8) | *(str + 2);
207 serialnr->low = simple_strtoul(str + 3, NULL, 16);
208 }
209 } else {
210 serialnr->high = 0;
211 serialnr->low = 0;
212 }
213}
214#endif
215
216#ifdef CONFIG_REVISION_TAG
217u32 get_board_rev(void)
218{
219 return hw_rev | 0x100;
220}
221#endif
222
223#ifdef CONFIG_MISC_INIT_R
224int misc_init_r(void)
225{
226 char *str;
227 char buf[32];
228 at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
229
230
231
232
233
234
235 if ((str = getenv("mdiv")) && (strcmp(str, "4") == 0)) {
236 writel((readl(&pmc->mckr) & ~AT91_PMC_MDIV) |
237 AT91SAM9_PMC_MDIV_4, &pmc->mckr);
238 at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
239 serial_setbrg();
240
241 printf("Setting master clock to %s MHz\n",
242 strmhz(buf, get_mck_clk_rate()));
243 }
244
245 return 0;
246}
247#endif
248
249int board_init(void)
250{
251 at91_pmc_t *pmc = (at91_pmc_t *) AT91_PMC_BASE;
252
253
254 writel(1 << AT91SAM9263_ID_PIOA |
255 1 << AT91SAM9263_ID_PIOB |
256 1 << AT91SAM9263_ID_PIOCDE |
257 1 << AT91SAM9263_ID_UHP,
258 &pmc->pcer);
259
260
261 meesc_ethercat_hw_init();
262
263
264 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
265
266 at91_serial_hw_init();
267#ifdef CONFIG_CMD_NAND
268 meesc_nand_hw_init();
269#endif
270#ifdef CONFIG_HAS_DATAFLASH
271 at91_spi0_hw_init(1 << 0);
272#endif
273#ifdef CONFIG_MACB
274 meesc_macb_hw_init();
275#endif
276#ifdef CONFIG_AT91_CAN
277 at91_can_hw_init();
278#endif
279#ifdef CONFIG_USB_OHCI_NEW
280 at91_uhp_hw_init();
281#endif
282 return 0;
283}
284