blob: 2e9246f31ccef49127c332e0d7d2f0902eae4aa4 [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>
Stelian Pop56a24792008-05-08 14:52:31 +020010#include <asm/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>
15#include <asm/arch/at91_rstc.h>
Jens Scharsig1b34f002010-02-03 22:47:18 +010016#include <asm/arch/at91_matrix.h>
17#include <asm/arch/at91_pio.h>
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +020018#include <asm/arch/clk.h>
Xu, Hongcd46b0f2011-06-10 21:31:26 +000019#include <asm/io.h>
20#include <asm/arch/gpio.h>
Ben Warren3ae071e2008-08-12 22:11:53 -070021#include <asm/arch/hardware.h>
Stelian Pop56a24792008-05-08 14:52:31 +020022#include <lcd.h>
23#include <atmel_lcdc.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020024#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
25#include <net.h>
26#endif
Ben Warren3ae071e2008-08-12 22:11:53 -070027#include <netdev.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{
Jens Scharsig1b34f002010-02-03 22:47:18 +010085 unsigned long erstl;
Xu, Hongcd46b0f2011-06-10 21:31:26 +000086 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
87 at91_pio_t *pio = (at91_pio_t *) ATMEL_BASE_PIO;
88 at91_rstc_t *rstc = (at91_rstc_t *) ATMEL_BASE_RSTC;
Stelian Pop8e429b32008-05-08 18:52:23 +020089 /* Enable clock */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000090 writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
Stelian Pop8e429b32008-05-08 18:52:23 +020091
92 /*
93 * Disable pull-up on:
94 * RXDV (PC25) => PHY normal mode (not Test mode)
95 * ERX0 (PE25) => PHY ADDR0
96 * ERX1 (PE26) => PHY ADDR1 => PHYADDR = 0x0
97 *
98 * PHY has internal pull-down
99 */
Stelian Pop8e429b32008-05-08 18:52:23 +0200100
Jens Scharsig1b34f002010-02-03 22:47:18 +0100101 writel(1 << 25, &pio->pioc.pudr);
102 writel((1 << 25) | (1 <<26), &pio->pioe.pudr);
103
104 erstl = readl(&rstc->mr) & AT91_RSTC_MR_ERSTL_MASK;
Sedji Gaouaou0aafde12009-06-24 08:32:09 +0200105
Stelian Pop8e429b32008-05-08 18:52:23 +0200106 /* Need to reset PHY -> 500ms reset */
Jens Scharsig1b34f002010-02-03 22:47:18 +0100107 writel(AT91_RSTC_KEY | AT91_RSTC_MR_ERSTL(0x0D) |
108 AT91_RSTC_MR_URSTEN, &rstc->mr);
Stelian Pop8e429b32008-05-08 18:52:23 +0200109
Jens Scharsig1b34f002010-02-03 22:47:18 +0100110 writel(AT91_RSTC_KEY | AT91_RSTC_CR_EXTRST, &rstc->cr);
Stelian Pop8e429b32008-05-08 18:52:23 +0200111 /* Wait for end hardware reset */
Jens Scharsig1b34f002010-02-03 22:47:18 +0100112 while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL))
113 ;
Stelian Pop8e429b32008-05-08 18:52:23 +0200114
Stelian Pop19bd6882008-05-22 00:15:40 +0200115 /* Restore NRST value */
Jens Scharsig1b34f002010-02-03 22:47:18 +0100116 writel(AT91_RSTC_KEY | erstl | AT91_RSTC_MR_URSTEN, &rstc->mr);
Stelian Pop19bd6882008-05-22 00:15:40 +0200117
Stelian Pop8e429b32008-05-08 18:52:23 +0200118 /* Re-enable pull-up */
Jens Scharsig1b34f002010-02-03 22:47:18 +0100119 writel(1 << 25, &pio->pioc.puer);
120 writel((1 << 25) | (1 <<26), &pio->pioe.puer);
Stelian Pop8e429b32008-05-08 18:52:23 +0200121
Jean-Christophe PLAGNIOL-VILLARDe2c04762009-03-21 21:08:00 +0100122 at91_macb_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200123}
124#endif
125
Stelian Pop56a24792008-05-08 14:52:31 +0200126#ifdef CONFIG_LCD
127vidinfo_t panel_info = {
128 vl_col: 240,
129 vl_row: 320,
130 vl_clk: 4965000,
131 vl_sync: ATMEL_LCDC_INVLINE_INVERTED |
132 ATMEL_LCDC_INVFRAME_INVERTED,
133 vl_bpix: 3,
134 vl_tft: 1,
135 vl_hsync_len: 5,
136 vl_left_margin: 1,
137 vl_right_margin:33,
138 vl_vsync_len: 1,
139 vl_upper_margin:1,
140 vl_lower_margin:0,
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000141 mmio: ATMEL_BASE_LCDC,
Stelian Pop56a24792008-05-08 14:52:31 +0200142};
143
144void lcd_enable(void)
145{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100146 at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */
Stelian Pop56a24792008-05-08 14:52:31 +0200147}
148
149void lcd_disable(void)
150{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100151 at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */
Stelian Pop56a24792008-05-08 14:52:31 +0200152}
153
154static void at91sam9263ek_lcd_hw_init(void)
155{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000156 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Stelian Pop56a24792008-05-08 14:52:31 +0200157
Jens Scharsig1b34f002010-02-03 22:47:18 +0100158 at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */
159 at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */
160 at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */
161 at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */
162 at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */
163 at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */
164 at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */
165 at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */
166 at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */
167 at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */
168 at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */
169 at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */
170 at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */
171 at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */
172 at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */
173 at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */
174 at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */
175 at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */
176 at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */
177 at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */
178 at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */
179 at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */
Stelian Pop56a24792008-05-08 14:52:31 +0200180
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000181 writel(1 << ATMEL_ID_LCDC, &pmc->pcer);
182 gd->fb_base = ATMEL_BASE_SRAM0;
Stelian Pop56a24792008-05-08 14:52:31 +0200183}
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200184
185#ifdef CONFIG_LCD_INFO
186#include <nand.h>
187#include <version.h>
188
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200189#ifndef CONFIG_SYS_NO_FLASH
190extern flash_info_t flash_info[];
191#endif
192
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200193void lcd_show_board_info(void)
194{
195 ulong dram_size, nand_size;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200196#ifndef CONFIG_SYS_NO_FLASH
197 ulong flash_size;
198#endif
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200199 int i;
200 char temp[32];
201
202 lcd_printf ("%s\n", U_BOOT_VERSION);
203 lcd_printf ("(C) 2008 ATMEL Corp\n");
204 lcd_printf ("at91support@atmel.com\n");
205 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000206 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +0200207 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200208
209 dram_size = 0;
210 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
211 dram_size += gd->bd->bi_dram[i].size;
212 nand_size = 0;
213 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
214 nand_size += nand_info[i].size;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200215#ifndef CONFIG_SYS_NO_FLASH
216 flash_size = 0;
217 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
218 flash_size += flash_info[i].size;
219#endif
220 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200221 dram_size >> 20,
222 nand_size >> 20 );
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200223#ifndef CONFIG_SYS_NO_FLASH
224 lcd_printf (",\n %ld MB NOR",
225 flash_size >> 20);
226#endif
227 lcd_puts ("\n");
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200228}
229#endif /* CONFIG_LCD_INFO */
Stelian Pop56a24792008-05-08 14:52:31 +0200230#endif
231
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000232int board_early_init_f(void)
233{
234 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
235
236 /* Enable clocks for all PIOs */
237 writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) |
238 (1 << ATMEL_ID_PIOCDE),
239 &pmc->pcer);
240
esw@bus-elektronik.de2feb7362012-03-19 04:25:59 +0000241 at91_seriald_hw_init();
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000242 return 0;
243}
244
Stelian Pop8e429b32008-05-08 18:52:23 +0200245int board_init(void)
246{
Stelian Pop8e429b32008-05-08 18:52:23 +0200247 /* arch number of AT91SAM9263EK-Board */
248 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK;
249 /* adress of boot parameters */
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000250 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop8e429b32008-05-08 18:52:23 +0200251
Stelian Pop8e429b32008-05-08 18:52:23 +0200252#ifdef CONFIG_CMD_NAND
253 at91sam9263ek_nand_hw_init();
254#endif
255#ifdef CONFIG_HAS_DATAFLASH
Jens Scharsig1b34f002010-02-03 22:47:18 +0100256 at91_set_pio_output(AT91_PIO_PORTE, 20, 1); /* select spi0 clock */
Jean-Christophe PLAGNIOL-VILLARD7ebafb72009-03-21 21:07:59 +0100257 at91_spi0_hw_init(1 << 0);
Stelian Pop8e429b32008-05-08 18:52:23 +0200258#endif
259#ifdef CONFIG_MACB
260 at91sam9263ek_macb_hw_init();
261#endif
262#ifdef CONFIG_USB_OHCI_NEW
Jean-Christophe PLAGNIOL-VILLARDf3f91f82009-03-21 21:08:00 +0100263 at91_uhp_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200264#endif
Stelian Pop56a24792008-05-08 14:52:31 +0200265#ifdef CONFIG_LCD
266 at91sam9263ek_lcd_hw_init();
267#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200268 return 0;
269}
270
271int dram_init(void)
272{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000273 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
274 CONFIG_SYS_SDRAM_SIZE);
275
Stelian Pop8e429b32008-05-08 18:52:23 +0200276 return 0;
277}
278
279#ifdef CONFIG_RESET_PHY_R
280void reset_phy(void)
281{
Stelian Pop8e429b32008-05-08 18:52:23 +0200282}
283#endif
Ben Warren3ae071e2008-08-12 22:11:53 -0700284
285int board_eth_init(bd_t *bis)
286{
287 int rc = 0;
288#ifdef CONFIG_MACB
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000289 rc = macb_eth_initialize(0, (void *) ATMEL_BASE_EMAC, 0x00);
Ben Warren3ae071e2008-08-12 22:11:53 -0700290#endif
291 return rc;
292}