blob: d42a1730cc38fe338f70526190dda0ad71349d00 [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>
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>
Stelian Pop8e429b32008-05-08 18:52:23 +020027
28DECLARE_GLOBAL_DATA_PTR;
29
30/* ------------------------------------------------------------------------- */
31/*
32 * Miscelaneous platform dependent initialisations
33 */
34
Stelian Pop8e429b32008-05-08 18:52:23 +020035#ifdef CONFIG_CMD_NAND
36static void at91sam9263ek_nand_hw_init(void)
37{
38 unsigned long csa;
Xu, Hongcd46b0f2011-06-10 21:31:26 +000039 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
40 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
41 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Stelian Pop8e429b32008-05-08 18:52:23 +020042
43 /* Enable CS3 */
Jens Scharsig1b34f002010-02-03 22:47:18 +010044 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
45 writel(csa, &matrix->csa[0]);
46
47 /* Enable CS3 */
Stelian Pop8e429b32008-05-08 18:52:23 +020048
49 /* Configure SMC CS3 for NAND/SmartMedia */
Jens Scharsig1b34f002010-02-03 22:47:18 +010050 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
51 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
52 &smc->cs[3].setup);
Stelian Pop8e429b32008-05-08 18:52:23 +020053
Jens Scharsig1b34f002010-02-03 22:47:18 +010054 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
55 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
56 &smc->cs[3].pulse);
57
58 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
59 &smc->cs[3].cycle);
60 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
61 AT91_SMC_MODE_EXNW_DISABLE |
62#ifdef CONFIG_SYS_NAND_DBW_16
63 AT91_SMC_MODE_DBW_16 |
64#else /* CONFIG_SYS_NAND_DBW_8 */
65 AT91_SMC_MODE_DBW_8 |
66#endif
67 AT91_SMC_MODE_TDF_CYCLE(2),
68 &smc->cs[3].mode);
69
Xu, Hongcd46b0f2011-06-10 21:31:26 +000070 writel(1 << ATMEL_ID_PIOA | 1 << ATMEL_ID_PIOCDE,
Jens Scharsig1b34f002010-02-03 22:47:18 +010071 &pmc->pcer);
Stelian Pop8e429b32008-05-08 18:52:23 +020072
73 /* Configure RDY/BSY */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000074 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020075
76 /* Enable NandFlash */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000077 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020078}
79#endif
80
Stelian Pop8e429b32008-05-08 18:52:23 +020081#ifdef CONFIG_MACB
82static void at91sam9263ek_macb_hw_init(void)
83{
Xu, Hongcd46b0f2011-06-10 21:31:26 +000084 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
85 at91_pio_t *pio = (at91_pio_t *) ATMEL_BASE_PIO;
Heiko Schocher4535a242013-11-18 08:07:23 +010086
Stelian Pop8e429b32008-05-08 18:52:23 +020087 /* Enable clock */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000088 writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
Stelian Pop8e429b32008-05-08 18:52:23 +020089
90 /*
91 * Disable pull-up on:
92 * RXDV (PC25) => PHY normal mode (not Test mode)
93 * ERX0 (PE25) => PHY ADDR0
94 * ERX1 (PE26) => PHY ADDR1 => PHYADDR = 0x0
95 *
96 * PHY has internal pull-down
97 */
Jens Scharsig1b34f002010-02-03 22:47:18 +010098 writel(1 << 25, &pio->pioc.pudr);
99 writel((1 << 25) | (1 <<26), &pio->pioe.pudr);
100
Heiko Schocher4535a242013-11-18 08:07:23 +0100101 at91_phy_reset();
Stelian Pop19bd6882008-05-22 00:15:40 +0200102
Stelian Pop8e429b32008-05-08 18:52:23 +0200103 /* Re-enable pull-up */
Jens Scharsig1b34f002010-02-03 22:47:18 +0100104 writel(1 << 25, &pio->pioc.puer);
105 writel((1 << 25) | (1 <<26), &pio->pioe.puer);
Stelian Pop8e429b32008-05-08 18:52:23 +0200106
Jean-Christophe PLAGNIOL-VILLARDe2c04762009-03-21 21:08:00 +0100107 at91_macb_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200108}
109#endif
110
Stelian Pop56a24792008-05-08 14:52:31 +0200111#ifdef CONFIG_LCD
112vidinfo_t panel_info = {
113 vl_col: 240,
114 vl_row: 320,
115 vl_clk: 4965000,
116 vl_sync: ATMEL_LCDC_INVLINE_INVERTED |
117 ATMEL_LCDC_INVFRAME_INVERTED,
118 vl_bpix: 3,
119 vl_tft: 1,
120 vl_hsync_len: 5,
121 vl_left_margin: 1,
122 vl_right_margin:33,
123 vl_vsync_len: 1,
124 vl_upper_margin:1,
125 vl_lower_margin:0,
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000126 mmio: ATMEL_BASE_LCDC,
Stelian Pop56a24792008-05-08 14:52:31 +0200127};
128
129void lcd_enable(void)
130{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100131 at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */
Stelian Pop56a24792008-05-08 14:52:31 +0200132}
133
134void lcd_disable(void)
135{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100136 at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */
Stelian Pop56a24792008-05-08 14:52:31 +0200137}
138
139static void at91sam9263ek_lcd_hw_init(void)
140{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000141 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Stelian Pop56a24792008-05-08 14:52:31 +0200142
Jens Scharsig1b34f002010-02-03 22:47:18 +0100143 at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */
144 at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */
145 at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */
146 at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */
147 at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */
148 at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */
149 at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */
150 at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */
151 at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */
152 at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */
153 at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */
154 at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */
155 at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */
156 at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */
157 at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */
158 at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */
159 at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */
160 at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */
161 at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */
162 at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */
163 at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */
164 at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */
Stelian Pop56a24792008-05-08 14:52:31 +0200165
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000166 writel(1 << ATMEL_ID_LCDC, &pmc->pcer);
167 gd->fb_base = ATMEL_BASE_SRAM0;
Stelian Pop56a24792008-05-08 14:52:31 +0200168}
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200169
170#ifdef CONFIG_LCD_INFO
171#include <nand.h>
172#include <version.h>
173
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200174#ifndef CONFIG_SYS_NO_FLASH
175extern flash_info_t flash_info[];
176#endif
177
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200178void lcd_show_board_info(void)
179{
180 ulong dram_size, nand_size;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200181#ifndef CONFIG_SYS_NO_FLASH
182 ulong flash_size;
183#endif
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200184 int i;
185 char temp[32];
186
187 lcd_printf ("%s\n", U_BOOT_VERSION);
188 lcd_printf ("(C) 2008 ATMEL Corp\n");
189 lcd_printf ("at91support@atmel.com\n");
190 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000191 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +0200192 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200193
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;
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200200#ifndef CONFIG_SYS_NO_FLASH
201 flash_size = 0;
202 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
203 flash_size += flash_info[i].size;
204#endif
205 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200206 dram_size >> 20,
207 nand_size >> 20 );
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200208#ifndef CONFIG_SYS_NO_FLASH
209 lcd_printf (",\n %ld MB NOR",
210 flash_size >> 20);
211#endif
212 lcd_puts ("\n");
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200213}
214#endif /* CONFIG_LCD_INFO */
Stelian Pop56a24792008-05-08 14:52:31 +0200215#endif
216
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000217int board_early_init_f(void)
218{
219 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
220
221 /* Enable clocks for all PIOs */
222 writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) |
223 (1 << ATMEL_ID_PIOCDE),
224 &pmc->pcer);
225
esw@bus-elektronik.de2feb7362012-03-19 04:25:59 +0000226 at91_seriald_hw_init();
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000227 return 0;
228}
229
Stelian Pop8e429b32008-05-08 18:52:23 +0200230int board_init(void)
231{
Stelian Pop8e429b32008-05-08 18:52:23 +0200232 /* arch number of AT91SAM9263EK-Board */
233 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK;
234 /* adress of boot parameters */
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000235 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop8e429b32008-05-08 18:52:23 +0200236
Stelian Pop8e429b32008-05-08 18:52:23 +0200237#ifdef CONFIG_CMD_NAND
238 at91sam9263ek_nand_hw_init();
239#endif
240#ifdef CONFIG_HAS_DATAFLASH
Jens Scharsig1b34f002010-02-03 22:47:18 +0100241 at91_set_pio_output(AT91_PIO_PORTE, 20, 1); /* select spi0 clock */
Jean-Christophe PLAGNIOL-VILLARD7ebafb72009-03-21 21:07:59 +0100242 at91_spi0_hw_init(1 << 0);
Stelian Pop8e429b32008-05-08 18:52:23 +0200243#endif
244#ifdef CONFIG_MACB
245 at91sam9263ek_macb_hw_init();
246#endif
247#ifdef CONFIG_USB_OHCI_NEW
Jean-Christophe PLAGNIOL-VILLARDf3f91f82009-03-21 21:08:00 +0100248 at91_uhp_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200249#endif
Stelian Pop56a24792008-05-08 14:52:31 +0200250#ifdef CONFIG_LCD
251 at91sam9263ek_lcd_hw_init();
252#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200253 return 0;
254}
255
256int dram_init(void)
257{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000258 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
259 CONFIG_SYS_SDRAM_SIZE);
260
Stelian Pop8e429b32008-05-08 18:52:23 +0200261 return 0;
262}
263
264#ifdef CONFIG_RESET_PHY_R
265void reset_phy(void)
266{
Stelian Pop8e429b32008-05-08 18:52:23 +0200267}
268#endif
Ben Warren3ae071e2008-08-12 22:11:53 -0700269
270int board_eth_init(bd_t *bis)
271{
272 int rc = 0;
273#ifdef CONFIG_MACB
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000274 rc = macb_eth_initialize(0, (void *) ATMEL_BASE_EMAC, 0x00);
Ben Warren3ae071e2008-08-12 22:11:53 -0700275#endif
276 return rc;
277}