configs: at91sam9x5ek: Update to support DM/DT
[oweals/u-boot.git] / board / atmel / at91sam9x5ek / at91sam9x5ek.c
1 /*
2  * Copyright (C) 2012 Atmel Corporation
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <asm/io.h>
9 #include <asm/arch/at91sam9x5_matrix.h>
10 #include <asm/arch/at91sam9_smc.h>
11 #include <asm/arch/at91_common.h>
12 #include <asm/arch/at91_rstc.h>
13 #include <asm/arch/clk.h>
14 #include <asm/arch/gpio.h>
15 #include <lcd.h>
16 #include <atmel_hlcdc.h>
17 #include <atmel_mci.h>
18 #ifdef CONFIG_MACB
19 #include <net.h>
20 #endif
21 #include <netdev.h>
22 #ifdef CONFIG_LCD_INFO
23 #include <nand.h>
24 #include <version.h>
25 #endif
26 #ifdef CONFIG_ATMEL_SPI
27 #include <spi.h>
28 #endif
29
30 DECLARE_GLOBAL_DATA_PTR;
31
32 /* ------------------------------------------------------------------------- */
33 /*
34  * Miscelaneous platform dependent initialisations
35  */
36 #ifdef CONFIG_CMD_NAND
37 static void at91sam9x5ek_nand_hw_init(void)
38 {
39         struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
40         struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
41         unsigned long csa;
42
43         /* Enable CS3 */
44         csa = readl(&matrix->ebicsa);
45         csa |= AT91_MATRIX_EBI_CS3A_SMC_SMARTMEDIA;
46         /* NAND flash on D16 */
47         csa |= AT91_MATRIX_NFD0_ON_D16;
48
49         /* Configure IO drive */
50         csa &= ~AT91_MATRIX_EBI_EBI_IOSR_NORMAL;
51
52         writel(csa, &matrix->ebicsa);
53
54         /* Configure SMC CS3 for NAND/SmartMedia */
55         writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
56                 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
57                 &smc->cs[3].setup);
58         writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(5) |
59                 AT91_SMC_PULSE_NRD(4) | AT91_SMC_PULSE_NCS_RD(6),
60                 &smc->cs[3].pulse);
61         writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(6),
62                 &smc->cs[3].cycle);
63         writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
64                 AT91_SMC_MODE_EXNW_DISABLE |
65 #ifdef CONFIG_SYS_NAND_DBW_16
66                 AT91_SMC_MODE_DBW_16 |
67 #else /* CONFIG_SYS_NAND_DBW_8 */
68                 AT91_SMC_MODE_DBW_8 |
69 #endif
70                 AT91_SMC_MODE_TDF_CYCLE(1),
71                 &smc->cs[3].mode);
72
73         at91_periph_clk_enable(ATMEL_ID_PIOCD);
74
75         /* Configure RDY/BSY */
76         at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
77         /* Enable NandFlash */
78         at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
79
80         at91_pio3_set_a_periph(AT91_PIO_PORTD, 0, 1);   /* NAND OE */
81         at91_pio3_set_a_periph(AT91_PIO_PORTD, 1, 1);   /* NAND WE */
82         at91_pio3_set_a_periph(AT91_PIO_PORTD, 2, 1);   /* NAND ALE */
83         at91_pio3_set_a_periph(AT91_PIO_PORTD, 3, 1);   /* NAND CLE */
84         at91_pio3_set_a_periph(AT91_PIO_PORTD, 6, 1);
85         at91_pio3_set_a_periph(AT91_PIO_PORTD, 7, 1);
86         at91_pio3_set_a_periph(AT91_PIO_PORTD, 8, 1);
87         at91_pio3_set_a_periph(AT91_PIO_PORTD, 9, 1);
88         at91_pio3_set_a_periph(AT91_PIO_PORTD, 10, 1);
89         at91_pio3_set_a_periph(AT91_PIO_PORTD, 11, 1);
90         at91_pio3_set_a_periph(AT91_PIO_PORTD, 12, 1);
91         at91_pio3_set_a_periph(AT91_PIO_PORTD, 13, 1);
92 }
93 #endif
94
95 int board_eth_init(bd_t *bis)
96 {
97         int rc = 0;
98
99 #ifdef CONFIG_MACB
100         if (has_emac0())
101                 rc = macb_eth_initialize(0,
102                         (void *)ATMEL_BASE_EMAC0, 0x00);
103         if (has_emac1())
104                 rc = macb_eth_initialize(1,
105                         (void *)ATMEL_BASE_EMAC1, 0x00);
106 #endif
107         return rc;
108 }
109
110 #ifdef CONFIG_LCD
111 vidinfo_t panel_info = {
112         .vl_col = 800,
113         .vl_row = 480,
114         .vl_clk = 24000000,
115         .vl_sync = LCDC_LCDCFG5_HSPOL | LCDC_LCDCFG5_VSPOL,
116         .vl_bpix = LCD_BPP,
117         .vl_tft = 1,
118         .vl_clk_pol = 1,
119         .vl_hsync_len = 128,
120         .vl_left_margin = 64,
121         .vl_right_margin = 64,
122         .vl_vsync_len = 2,
123         .vl_upper_margin = 22,
124         .vl_lower_margin = 21,
125         .mmio = ATMEL_BASE_LCDC,
126 };
127
128 void lcd_enable(void)
129 {
130         if (has_lcdc())
131                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 29, 1);  /* power up */
132 }
133
134 void lcd_disable(void)
135 {
136         if (has_lcdc())
137                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 29, 0);  /* power down */
138 }
139
140 static void at91sam9x5ek_lcd_hw_init(void)
141 {
142         if (has_lcdc()) {
143                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 26, 0);  /* LCDPWM */
144                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 27, 0);  /* LCDVSYNC */
145                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 28, 0);  /* LCDHSYNC */
146                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 24, 0);  /* LCDDISP */
147                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 29, 0);  /* LCDDEN */
148                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 30, 0);  /* LCDPCK */
149
150                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 0, 0);   /* LCDD0 */
151                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 1, 0);   /* LCDD1 */
152                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 2, 0);   /* LCDD2 */
153                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 3, 0);   /* LCDD3 */
154                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 4, 0);   /* LCDD4 */
155                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 5, 0);   /* LCDD5 */
156                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 6, 0);   /* LCDD6 */
157                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 7, 0);   /* LCDD7 */
158                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 8, 0);   /* LCDD8 */
159                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 9, 0);   /* LCDD9 */
160                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 10, 0);  /* LCDD10 */
161                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 11, 0);  /* LCDD11 */
162                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 12, 0);  /* LCDD12 */
163                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 13, 0);  /* LCDD13 */
164                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 14, 0);  /* LCDD14 */
165                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 15, 0);  /* LCDD15 */
166                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 16, 0);  /* LCDD16 */
167                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 17, 0);  /* LCDD17 */
168                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 18, 0);  /* LCDD18 */
169                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 19, 0);  /* LCDD19 */
170                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 20, 0);  /* LCDD20 */
171                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 21, 0);  /* LCDD21 */
172                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 22, 0);  /* LCDD22 */
173                 at91_pio3_set_a_periph(AT91_PIO_PORTC, 23, 0);  /* LCDD23 */
174
175                 at91_periph_clk_enable(ATMEL_ID_LCDC);
176         }
177 }
178
179 #ifdef CONFIG_LCD_INFO
180 void lcd_show_board_info(void)
181 {
182         ulong dram_size, nand_size;
183         int i;
184         char temp[32];
185
186         if (has_lcdc()) {
187                 lcd_printf("%s\n", U_BOOT_VERSION);
188                 lcd_printf("(C) 2012 ATMEL Corp\n");
189                 lcd_printf("at91support@atmel.com\n");
190                 lcd_printf("%s CPU at %s MHz\n",
191                         get_cpu_name(),
192                         strmhz(temp, get_cpu_clk_rate()));
193
194                 dram_size = 0;
195                 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
196                         dram_size += gd->bd->bi_dram[i].size;
197                 nand_size = 0;
198                 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
199                         nand_size += nand_info[i]->size;
200                 lcd_printf("  %ld MB SDRAM, %ld MB NAND\n",
201                         dram_size >> 20,
202                         nand_size >> 20);
203         }
204 }
205 #endif /* CONFIG_LCD_INFO */
206 #endif /* CONFIG_LCD */
207
208 #ifndef CONFIG_DM_SPI
209 /* SPI chip select control */
210 #ifdef CONFIG_ATMEL_SPI
211 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
212 {
213         return bus == 0 && cs < 2;
214 }
215
216 void spi_cs_activate(struct spi_slave *slave)
217 {
218         switch (slave->cs) {
219         case 1:
220                 at91_set_pio_output(AT91_PIO_PORTA, 7, 0);
221                 break;
222         case 0:
223         default:
224                 at91_set_pio_output(AT91_PIO_PORTA, 14, 0);
225                 break;
226         }
227 }
228
229 void spi_cs_deactivate(struct spi_slave *slave)
230 {
231         switch (slave->cs) {
232         case 1:
233                 at91_set_pio_output(AT91_PIO_PORTA, 7, 1);
234                 break;
235         case 0:
236         default:
237                 at91_set_pio_output(AT91_PIO_PORTA, 14, 1);
238                 break;
239         }
240 }
241 #endif /* CONFIG_ATMEL_SPI */
242 #endif
243
244 #ifdef CONFIG_GENERIC_ATMEL_MCI
245 int board_mmc_init(bd_t *bd)
246 {
247         at91_mci_hw_init();
248
249         return atmel_mci_init((void *)ATMEL_BASE_HSMCI0);
250 }
251 #endif
252
253 int board_early_init_f(void)
254 {
255         at91_seriald_hw_init();
256         return 0;
257 }
258
259 int board_init(void)
260 {
261         /* arch number of AT91SAM9X5EK-Board */
262         gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9X5EK;
263
264         /* adress of boot parameters */
265         gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
266
267 #ifdef CONFIG_CMD_NAND
268         at91sam9x5ek_nand_hw_init();
269 #endif
270
271 #ifdef CONFIG_ATMEL_SPI
272         at91_spi0_hw_init(1 << 4);
273 #endif
274
275 #ifdef CONFIG_MACB
276         at91_macb_hw_init();
277 #endif
278
279 #if defined(CONFIG_USB_OHCI_NEW) || defined(CONFIG_USB_EHCI)
280         at91_uhp_hw_init();
281 #endif
282 #ifdef CONFIG_LCD
283         at91sam9x5ek_lcd_hw_init();
284 #endif
285         return 0;
286 }
287
288 int dram_init(void)
289 {
290         gd->ram_size = get_ram_size((void *) CONFIG_SYS_SDRAM_BASE,
291                                         CONFIG_SYS_SDRAM_SIZE);
292         return 0;
293 }
294
295 #if defined(CONFIG_SPL_BUILD)
296 #include <spl.h>
297 #include <nand.h>
298
299 void at91_spl_board_init(void)
300 {
301 #ifdef CONFIG_SYS_USE_MMC
302         at91_mci_hw_init();
303 #elif CONFIG_SYS_USE_NANDFLASH
304         at91sam9x5ek_nand_hw_init();
305 #elif CONFIG_SYS_USE_SPIFLASH
306         at91_spi0_hw_init(1 << 4);
307 #endif
308 }
309
310 #include <asm/arch/atmel_mpddrc.h>
311 static void ddr2_conf(struct atmel_mpddrc_config *ddr2)
312 {
313         ddr2->md = (ATMEL_MPDDRC_MD_DBW_16_BITS | ATMEL_MPDDRC_MD_DDR2_SDRAM);
314
315         ddr2->cr = (ATMEL_MPDDRC_CR_NC_COL_10 |
316                     ATMEL_MPDDRC_CR_NR_ROW_13 |
317                     ATMEL_MPDDRC_CR_CAS_DDR_CAS3 |
318                     ATMEL_MPDDRC_CR_NB_8BANKS |
319                     ATMEL_MPDDRC_CR_DECOD_INTERLEAVED);
320
321         ddr2->rtr = 0x411;
322
323         ddr2->tpr0 = (6 << ATMEL_MPDDRC_TPR0_TRAS_OFFSET |
324                       2 << ATMEL_MPDDRC_TPR0_TRCD_OFFSET |
325                       2 << ATMEL_MPDDRC_TPR0_TWR_OFFSET |
326                       8 << ATMEL_MPDDRC_TPR0_TRC_OFFSET |
327                       2 << ATMEL_MPDDRC_TPR0_TRP_OFFSET |
328                       2 << ATMEL_MPDDRC_TPR0_TRRD_OFFSET |
329                       2 << ATMEL_MPDDRC_TPR0_TWTR_OFFSET |
330                       2 << ATMEL_MPDDRC_TPR0_TMRD_OFFSET);
331
332         ddr2->tpr1 = (2 << ATMEL_MPDDRC_TPR1_TXP_OFFSET |
333                       200 << ATMEL_MPDDRC_TPR1_TXSRD_OFFSET |
334                       19 << ATMEL_MPDDRC_TPR1_TXSNR_OFFSET |
335                       18 << ATMEL_MPDDRC_TPR1_TRFC_OFFSET);
336
337         ddr2->tpr2 = (7 << ATMEL_MPDDRC_TPR2_TFAW_OFFSET |
338                       2 << ATMEL_MPDDRC_TPR2_TRTP_OFFSET |
339                       3 << ATMEL_MPDDRC_TPR2_TRPA_OFFSET |
340                       7 << ATMEL_MPDDRC_TPR2_TXARDS_OFFSET |
341                       2 << ATMEL_MPDDRC_TPR2_TXARD_OFFSET);
342 }
343
344 void mem_init(void)
345 {
346         struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
347         struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
348         struct atmel_mpddrc_config ddr2;
349         unsigned long csa;
350
351         ddr2_conf(&ddr2);
352
353         /* enable DDR2 clock */
354         writel(AT91_PMC_DDR, &pmc->scer);
355
356         /* Chip select 1 is for DDR2/SDRAM */
357         csa = readl(&matrix->ebicsa);
358         csa |= AT91_MATRIX_EBI_CS1A_SDRAMC;
359         csa &= ~AT91_MATRIX_EBI_DBPU_OFF;
360         csa |= AT91_MATRIX_EBI_DBPD_OFF;
361         csa |= AT91_MATRIX_EBI_EBI_IOSR_NORMAL;
362         writel(csa, &matrix->ebicsa);
363
364         /* DDRAM2 Controller initialize */
365         ddr2_init(ATMEL_BASE_DDRSDRC, ATMEL_BASE_CS1, &ddr2);
366 }
367 #endif