2 * (C) Copyright 2007-2008
3 * Stelian Pop <stelian@popies.net>
4 * Lead Tech Design <www.leadtechdesign.com>
6 * SPDX-License-Identifier: GPL-2.0+
10 #include <linux/sizes.h>
11 #include <asm/arch/at91sam9263.h>
12 #include <asm/arch/at91sam9_smc.h>
13 #include <asm/arch/at91_common.h>
14 #include <asm/arch/at91_pmc.h>
15 #include <asm/arch/at91_matrix.h>
16 #include <asm/arch/at91_pio.h>
17 #include <asm/arch/clk.h>
19 #include <asm/arch/gpio.h>
20 #include <asm/arch/hardware.h>
22 #include <atmel_lcdc.h>
23 #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
27 #include <atmel_mci.h>
29 DECLARE_GLOBAL_DATA_PTR
;
31 /* ------------------------------------------------------------------------- */
33 * Miscelaneous platform dependent initialisations
36 #ifdef CONFIG_CMD_NAND
37 static void at91sam9263ek_nand_hw_init(void)
40 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
;
45 csa
= readl(&matrix
->csa
[0]) | AT91_MATRIX_CSA_EBI_CS3A
;
46 writel(csa
, &matrix
->csa
[0]);
50 /* Configure SMC CS3 for NAND/SmartMedia */
51 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
52 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
55 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
56 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
59 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
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 */
68 AT91_SMC_MODE_TDF_CYCLE(2),
71 writel(1 << ATMEL_ID_PIOA
| 1 << ATMEL_ID_PIOCDE
,
74 /* Configure RDY/BSY */
75 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN
, 1);
77 /* Enable NandFlash */
78 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN
, 1);
83 static void at91sam9263ek_macb_hw_init(void)
85 at91_pmc_t
*pmc
= (at91_pmc_t
*) ATMEL_BASE_PMC
;
86 at91_pio_t
*pio
= (at91_pio_t
*) ATMEL_BASE_PIO
;
89 writel(1 << ATMEL_ID_EMAC
, &pmc
->pcer
);
93 * RXDV (PC25) => PHY normal mode (not Test mode)
94 * ERX0 (PE25) => PHY ADDR0
95 * ERX1 (PE26) => PHY ADDR1 => PHYADDR = 0x0
97 * PHY has internal pull-down
99 writel(1 << 25, &pio
->pioc
.pudr
);
100 writel((1 << 25) | (1 <<26), &pio
->pioe
.pudr
);
104 /* Re-enable pull-up */
105 writel(1 << 25, &pio
->pioc
.puer
);
106 writel((1 << 25) | (1 <<26), &pio
->pioe
.puer
);
113 vidinfo_t panel_info
= {
117 vl_sync
: ATMEL_LCDC_INVLINE_INVERTED
|
118 ATMEL_LCDC_INVFRAME_INVERTED
,
127 mmio
: ATMEL_BASE_LCDC
,
130 void lcd_enable(void)
132 at91_set_pio_value(AT91_PIO_PORTA
, 30, 1); /* power up */
135 void lcd_disable(void)
137 at91_set_pio_value(AT91_PIO_PORTA
, 30, 0); /* power down */
140 static void at91sam9263ek_lcd_hw_init(void)
142 at91_pmc_t
*pmc
= (at91_pmc_t
*) ATMEL_BASE_PMC
;
144 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 */
167 writel(1 << ATMEL_ID_LCDC
, &pmc
->pcer
);
168 gd
->fb_base
= ATMEL_BASE_SRAM0
;
171 #ifdef CONFIG_LCD_INFO
175 #ifndef CONFIG_SYS_NO_FLASH
176 extern flash_info_t flash_info
[];
179 void lcd_show_board_info(void)
181 ulong dram_size
, nand_size
;
182 #ifndef CONFIG_SYS_NO_FLASH
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",
193 strmhz(temp
, get_cpu_clk_rate()));
196 for (i
= 0; i
< CONFIG_NR_DRAM_BANKS
; i
++)
197 dram_size
+= gd
->bd
->bi_dram
[i
].size
;
199 for (i
= 0; i
< CONFIG_SYS_MAX_NAND_DEVICE
; i
++)
200 nand_size
+= nand_info
[i
].size
;
201 #ifndef CONFIG_SYS_NO_FLASH
203 for (i
= 0; i
< CONFIG_SYS_MAX_FLASH_BANKS
; i
++)
204 flash_size
+= flash_info
[i
].size
;
206 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
209 #ifndef CONFIG_SYS_NO_FLASH
210 lcd_printf (",\n %ld MB NOR",
215 #endif /* CONFIG_LCD_INFO */
218 #ifdef CONFIG_GENERIC_ATMEL_MCI
219 int board_mmc_init(bd_t
*bd
)
223 return atmel_mci_init((void *)ATMEL_BASE_MCI1
);
227 int board_early_init_f(void)
229 struct at91_pmc
*pmc
= (struct at91_pmc
*)ATMEL_BASE_PMC
;
231 /* Enable clocks for all PIOs */
232 writel((1 << ATMEL_ID_PIOA
) | (1 << ATMEL_ID_PIOB
) |
233 (1 << ATMEL_ID_PIOCDE
),
236 at91_seriald_hw_init();
242 /* arch number of AT91SAM9263EK-Board */
243 gd
->bd
->bi_arch_number
= MACH_TYPE_AT91SAM9263EK
;
244 /* adress of boot parameters */
245 gd
->bd
->bi_boot_params
= CONFIG_SYS_SDRAM_BASE
+ 0x100;
247 #ifdef CONFIG_CMD_NAND
248 at91sam9263ek_nand_hw_init();
250 #ifdef CONFIG_HAS_DATAFLASH
251 at91_set_pio_output(AT91_PIO_PORTE
, 20, 1); /* select spi0 clock */
252 at91_spi0_hw_init(1 << 0);
255 at91sam9263ek_macb_hw_init();
257 #ifdef CONFIG_USB_OHCI_NEW
261 at91sam9263ek_lcd_hw_init();
268 gd
->ram_size
= get_ram_size((void *)CONFIG_SYS_SDRAM_BASE
,
269 CONFIG_SYS_SDRAM_SIZE
);
274 #ifdef CONFIG_RESET_PHY_R
280 int board_eth_init(bd_t
*bis
)
284 rc
= macb_eth_initialize(0, (void *) ATMEL_BASE_EMAC
, 0x00);