blob: 927adb0d3808e8db45edf515ffd114e600a6913d [file] [log] [blame]
Stelian Pop8e429b32008-05-08 18:52:23 +02001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Stelian Pop8e429b32008-05-08 18:52:23 +02004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stelian Pop8e429b32008-05-08 18:52:23 +02007 */
8
9#include <common.h>
Alexey Brodkin1ace4022014-02-26 17:47:58 +040010#include <linux/sizes.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020011#include <asm/arch/at91sam9263.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020012#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD1332a2a2009-03-21 21:07:59 +010013#include <asm/arch/at91_common.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020014#include <asm/arch/at91_pmc.h>
Jens Scharsig1b34f002010-02-03 22:47:18 +010015#include <asm/arch/at91_matrix.h>
16#include <asm/arch/at91_pio.h>
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +020017#include <asm/arch/clk.h>
Xu, Hongcd46b0f2011-06-10 21:31:26 +000018#include <asm/io.h>
19#include <asm/arch/gpio.h>
Ben Warren3ae071e2008-08-12 22:11:53 -070020#include <asm/arch/hardware.h>
Stelian Pop56a24792008-05-08 14:52:31 +020021#include <lcd.h>
22#include <atmel_lcdc.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020023#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
24#include <net.h>
25#endif
Ben Warren3ae071e2008-08-12 22:11:53 -070026#include <netdev.h>
Andreas Henriksson81724e02014-01-27 19:18:59 +010027#include <atmel_mci.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020028
29DECLARE_GLOBAL_DATA_PTR;
30
31/* ------------------------------------------------------------------------- */
32/*
33 * Miscelaneous platform dependent initialisations
34 */
35
Stelian Pop8e429b32008-05-08 18:52:23 +020036#ifdef CONFIG_CMD_NAND
37static void at91sam9263ek_nand_hw_init(void)
38{
39 unsigned long csa;
Xu, Hongcd46b0f2011-06-10 21:31:26 +000040 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
41 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
42 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Stelian Pop8e429b32008-05-08 18:52:23 +020043
44 /* Enable CS3 */
Jens Scharsig1b34f002010-02-03 22:47:18 +010045 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
46 writel(csa, &matrix->csa[0]);
47
48 /* Enable CS3 */
Stelian Pop8e429b32008-05-08 18:52:23 +020049
50 /* Configure SMC CS3 for NAND/SmartMedia */
Jens Scharsig1b34f002010-02-03 22:47:18 +010051 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
52 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
53 &smc->cs[3].setup);
Stelian Pop8e429b32008-05-08 18:52:23 +020054
Jens Scharsig1b34f002010-02-03 22:47:18 +010055 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
56 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
57 &smc->cs[3].pulse);
58
59 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
60 &smc->cs[3].cycle);
61 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
62 AT91_SMC_MODE_EXNW_DISABLE |
63#ifdef CONFIG_SYS_NAND_DBW_16
64 AT91_SMC_MODE_DBW_16 |
65#else /* CONFIG_SYS_NAND_DBW_8 */
66 AT91_SMC_MODE_DBW_8 |
67#endif
68 AT91_SMC_MODE_TDF_CYCLE(2),
69 &smc->cs[3].mode);
70
Xu, Hongcd46b0f2011-06-10 21:31:26 +000071 writel(1 << ATMEL_ID_PIOA | 1 << ATMEL_ID_PIOCDE,
Jens Scharsig1b34f002010-02-03 22:47:18 +010072 &pmc->pcer);
Stelian Pop8e429b32008-05-08 18:52:23 +020073
74 /* Configure RDY/BSY */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000075 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020076
77 /* Enable NandFlash */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000078 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020079}
80#endif
81
Stelian Pop8e429b32008-05-08 18:52:23 +020082#ifdef CONFIG_MACB
83static void at91sam9263ek_macb_hw_init(void)
84{
Xu, Hongcd46b0f2011-06-10 21:31:26 +000085 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
86 at91_pio_t *pio = (at91_pio_t *) ATMEL_BASE_PIO;
Heiko Schocher4535a242013-11-18 08:07:23 +010087
Stelian Pop8e429b32008-05-08 18:52:23 +020088 /* Enable clock */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000089 writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
Stelian Pop8e429b32008-05-08 18:52:23 +020090
91 /*
92 * Disable pull-up on:
93 * RXDV (PC25) => PHY normal mode (not Test mode)
94 * ERX0 (PE25) => PHY ADDR0
95 * ERX1 (PE26) => PHY ADDR1 => PHYADDR = 0x0
96 *
97 * PHY has internal pull-down
98 */
Jens Scharsig1b34f002010-02-03 22:47:18 +010099 writel(1 << 25, &pio->pioc.pudr);
100 writel((1 << 25) | (1 <<26), &pio->pioe.pudr);
101
Heiko Schocher4535a242013-11-18 08:07:23 +0100102 at91_phy_reset();
Stelian Pop19bd6882008-05-22 00:15:40 +0200103
Stelian Pop8e429b32008-05-08 18:52:23 +0200104 /* Re-enable pull-up */
Jens Scharsig1b34f002010-02-03 22:47:18 +0100105 writel(1 << 25, &pio->pioc.puer);
106 writel((1 << 25) | (1 <<26), &pio->pioe.puer);
Stelian Pop8e429b32008-05-08 18:52:23 +0200107
Jean-Christophe PLAGNIOL-VILLARDe2c04762009-03-21 21:08:00 +0100108 at91_macb_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200109}
110#endif
111
Stelian Pop56a24792008-05-08 14:52:31 +0200112#ifdef CONFIG_LCD
113vidinfo_t panel_info = {
Jeroen Hofsteec346e462014-06-10 00:16:23 +0200114 .vl_col = 240,
115 .vl_row = 320,
116 .vl_clk = 4965000,
117 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
118 ATMEL_LCDC_INVFRAME_INVERTED,
119 .vl_bpix = 3,
120 .vl_tft = 1,
121 .vl_hsync_len = 5,
122 .vl_left_margin = 1,
123 .vl_right_margin = 33,
124 .vl_vsync_len = 1,
125 .vl_upper_margin = 1,
126 .vl_lower_margin = 0,
127 .mmio = ATMEL_BASE_LCDC,
Stelian Pop56a24792008-05-08 14:52:31 +0200128};
129
130void lcd_enable(void)
131{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100132 at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */
Stelian Pop56a24792008-05-08 14:52:31 +0200133}
134
135void lcd_disable(void)
136{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100137 at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */
Stelian Pop56a24792008-05-08 14:52:31 +0200138}
139
140static void at91sam9263ek_lcd_hw_init(void)
141{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000142 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Stelian Pop56a24792008-05-08 14:52:31 +0200143
Jens Scharsig1b34f002010-02-03 22:47:18 +0100144 at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */
145 at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */
146 at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */
147 at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */
148 at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */
149 at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */
150 at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */
151 at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */
152 at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */
153 at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */
154 at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */
155 at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */
156 at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */
157 at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */
158 at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */
159 at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */
160 at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */
161 at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */
162 at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */
163 at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */
164 at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */
165 at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */
Stelian Pop56a24792008-05-08 14:52:31 +0200166
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000167 writel(1 << ATMEL_ID_LCDC, &pmc->pcer);
168 gd->fb_base = ATMEL_BASE_SRAM0;
Stelian Pop56a24792008-05-08 14:52:31 +0200169}
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200170
171#ifdef CONFIG_LCD_INFO
172#include <nand.h>
173#include <version.h>
174
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200175#ifndef CONFIG_SYS_NO_FLASH
176extern flash_info_t flash_info[];
177#endif
178
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200179void lcd_show_board_info(void)
180{
181 ulong dram_size, nand_size;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200182#ifndef CONFIG_SYS_NO_FLASH
183 ulong flash_size;
184#endif
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200185 int i;
186 char temp[32];
187
188 lcd_printf ("%s\n", U_BOOT_VERSION);
189 lcd_printf ("(C) 2008 ATMEL Corp\n");
190 lcd_printf ("at91support@atmel.com\n");
191 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000192 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +0200193 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200194
195 dram_size = 0;
196 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
197 dram_size += gd->bd->bi_dram[i].size;
198 nand_size = 0;
199 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
200 nand_size += nand_info[i].size;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200201#ifndef CONFIG_SYS_NO_FLASH
202 flash_size = 0;
203 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
204 flash_size += flash_info[i].size;
205#endif
206 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200207 dram_size >> 20,
208 nand_size >> 20 );
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200209#ifndef CONFIG_SYS_NO_FLASH
210 lcd_printf (",\n %ld MB NOR",
211 flash_size >> 20);
212#endif
213 lcd_puts ("\n");
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200214}
215#endif /* CONFIG_LCD_INFO */
Stelian Pop56a24792008-05-08 14:52:31 +0200216#endif
217
Andreas Henriksson81724e02014-01-27 19:18:59 +0100218#ifdef CONFIG_GENERIC_ATMEL_MCI
219int board_mmc_init(bd_t *bd)
220{
221 at91_mci_hw_init();
222
223 return atmel_mci_init((void *)ATMEL_BASE_MCI1);
224}
225#endif
226
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000227int board_early_init_f(void)
228{
229 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
230
231 /* Enable clocks for all PIOs */
232 writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) |
233 (1 << ATMEL_ID_PIOCDE),
234 &pmc->pcer);
235
esw@bus-elektronik.de2feb7362012-03-19 04:25:59 +0000236 at91_seriald_hw_init();
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000237 return 0;
238}
239
Stelian Pop8e429b32008-05-08 18:52:23 +0200240int board_init(void)
241{
Stelian Pop8e429b32008-05-08 18:52:23 +0200242 /* arch number of AT91SAM9263EK-Board */
243 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK;
244 /* adress of boot parameters */
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000245 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop8e429b32008-05-08 18:52:23 +0200246
Stelian Pop8e429b32008-05-08 18:52:23 +0200247#ifdef CONFIG_CMD_NAND
248 at91sam9263ek_nand_hw_init();
249#endif
250#ifdef CONFIG_HAS_DATAFLASH
Jens Scharsig1b34f002010-02-03 22:47:18 +0100251 at91_set_pio_output(AT91_PIO_PORTE, 20, 1); /* select spi0 clock */
Jean-Christophe PLAGNIOL-VILLARD7ebafb72009-03-21 21:07:59 +0100252 at91_spi0_hw_init(1 << 0);
Stelian Pop8e429b32008-05-08 18:52:23 +0200253#endif
254#ifdef CONFIG_MACB
255 at91sam9263ek_macb_hw_init();
256#endif
257#ifdef CONFIG_USB_OHCI_NEW
Jean-Christophe PLAGNIOL-VILLARDf3f91f82009-03-21 21:08:00 +0100258 at91_uhp_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200259#endif
Stelian Pop56a24792008-05-08 14:52:31 +0200260#ifdef CONFIG_LCD
261 at91sam9263ek_lcd_hw_init();
262#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200263 return 0;
264}
265
266int dram_init(void)
267{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000268 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
269 CONFIG_SYS_SDRAM_SIZE);
270
Stelian Pop8e429b32008-05-08 18:52:23 +0200271 return 0;
272}
273
274#ifdef CONFIG_RESET_PHY_R
275void reset_phy(void)
276{
Stelian Pop8e429b32008-05-08 18:52:23 +0200277}
278#endif
Ben Warren3ae071e2008-08-12 22:11:53 -0700279
280int board_eth_init(bd_t *bis)
281{
282 int rc = 0;
283#ifdef CONFIG_MACB
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000284 rc = macb_eth_initialize(0, (void *) ATMEL_BASE_EMAC, 0x00);
Ben Warren3ae071e2008-08-12 22:11:53 -0700285#endif
286 return rc;
287}