blob: fc941d447f0493eb8e6df42dd4afca5708ff5e9b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stelian Pop8e429b32008-05-08 18:52:23 +02002/*
3 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop8e429b32008-05-08 18:52:23 +02005 * Lead Tech Design <www.leadtechdesign.com>
Stelian Pop8e429b32008-05-08 18:52:23 +02006 */
7
8#include <common.h>
Wenyou Yangeaa59b32017-04-18 15:31:02 +08009#include <debug_uart.h>
Simon Glass5e6267a2019-12-28 10:44:48 -070010#include <net.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070011#include <vsprintf.h>
Alexey Brodkin1ace4022014-02-26 17:47:58 +040012#include <linux/sizes.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020013#include <asm/arch/at91sam9263.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020014#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD1332a2a2009-03-21 21:07:59 +010015#include <asm/arch/at91_common.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>
Simon Glassc62db352017-05-31 19:47:48 -060024#include <asm/mach-types.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020025
26DECLARE_GLOBAL_DATA_PTR;
27
28/* ------------------------------------------------------------------------- */
29/*
30 * Miscelaneous platform dependent initialisations
31 */
32
Stelian Pop8e429b32008-05-08 18:52:23 +020033#ifdef CONFIG_CMD_NAND
34static void at91sam9263ek_nand_hw_init(void)
35{
36 unsigned long csa;
Xu, Hongcd46b0f2011-06-10 21:31:26 +000037 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
38 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
Stelian Pop8e429b32008-05-08 18:52:23 +020039
40 /* Enable CS3 */
Jens Scharsig1b34f002010-02-03 22:47:18 +010041 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
42 writel(csa, &matrix->csa[0]);
43
44 /* Enable CS3 */
Stelian Pop8e429b32008-05-08 18:52:23 +020045
46 /* Configure SMC CS3 for NAND/SmartMedia */
Jens Scharsig1b34f002010-02-03 22:47:18 +010047 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
48 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
49 &smc->cs[3].setup);
Stelian Pop8e429b32008-05-08 18:52:23 +020050
Jens Scharsig1b34f002010-02-03 22:47:18 +010051 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
52 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
53 &smc->cs[3].pulse);
54
55 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
56 &smc->cs[3].cycle);
57 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
58 AT91_SMC_MODE_EXNW_DISABLE |
59#ifdef CONFIG_SYS_NAND_DBW_16
60 AT91_SMC_MODE_DBW_16 |
61#else /* CONFIG_SYS_NAND_DBW_8 */
62 AT91_SMC_MODE_DBW_8 |
63#endif
64 AT91_SMC_MODE_TDF_CYCLE(2),
65 &smc->cs[3].mode);
66
Wenyou Yang70341e22016-02-03 10:16:50 +080067 at91_periph_clk_enable(ATMEL_ID_PIOA);
68 at91_periph_clk_enable(ATMEL_ID_PIOCDE);
Stelian Pop8e429b32008-05-08 18:52:23 +020069
70 /* Configure RDY/BSY */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000071 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020072
73 /* Enable NandFlash */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000074 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020075}
76#endif
77
Stelian Pop56a24792008-05-08 14:52:31 +020078#ifdef CONFIG_LCD
79vidinfo_t panel_info = {
Jeroen Hofsteec346e462014-06-10 00:16:23 +020080 .vl_col = 240,
81 .vl_row = 320,
82 .vl_clk = 4965000,
83 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
84 ATMEL_LCDC_INVFRAME_INVERTED,
85 .vl_bpix = 3,
86 .vl_tft = 1,
87 .vl_hsync_len = 5,
88 .vl_left_margin = 1,
89 .vl_right_margin = 33,
90 .vl_vsync_len = 1,
91 .vl_upper_margin = 1,
92 .vl_lower_margin = 0,
93 .mmio = ATMEL_BASE_LCDC,
Stelian Pop56a24792008-05-08 14:52:31 +020094};
95
96void lcd_enable(void)
97{
Jens Scharsig1b34f002010-02-03 22:47:18 +010098 at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */
Stelian Pop56a24792008-05-08 14:52:31 +020099}
100
101void lcd_disable(void)
102{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100103 at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */
Stelian Pop56a24792008-05-08 14:52:31 +0200104}
105
106static void at91sam9263ek_lcd_hw_init(void)
107{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100108 at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */
109 at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */
110 at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */
111 at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */
112 at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */
113 at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */
114 at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */
115 at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */
116 at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */
117 at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */
118 at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */
119 at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */
120 at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */
121 at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */
122 at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */
123 at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */
124 at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */
125 at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */
126 at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */
127 at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */
128 at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */
129 at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */
Stelian Pop56a24792008-05-08 14:52:31 +0200130
Wenyou Yang70341e22016-02-03 10:16:50 +0800131 at91_periph_clk_enable(ATMEL_ID_LCDC);
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000132 gd->fb_base = ATMEL_BASE_SRAM0;
Stelian Pop56a24792008-05-08 14:52:31 +0200133}
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200134
135#ifdef CONFIG_LCD_INFO
136#include <nand.h>
137#include <version.h>
138
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900139#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200140extern flash_info_t flash_info[];
141#endif
142
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200143void lcd_show_board_info(void)
144{
145 ulong dram_size, nand_size;
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900146#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200147 ulong flash_size;
148#endif
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200149 int i;
150 char temp[32];
151
152 lcd_printf ("%s\n", U_BOOT_VERSION);
153 lcd_printf ("(C) 2008 ATMEL Corp\n");
154 lcd_printf ("at91support@atmel.com\n");
155 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000156 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +0200157 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200158
159 dram_size = 0;
160 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
161 dram_size += gd->bd->bi_dram[i].size;
162 nand_size = 0;
163 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Grygorii Strashko31f8d392017-06-26 19:13:03 -0500164 nand_size += get_nand_dev_by_index(i)->size;
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900165#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200166 flash_size = 0;
167 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
168 flash_size += flash_info[i].size;
169#endif
170 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200171 dram_size >> 20,
172 nand_size >> 20 );
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900173#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200174 lcd_printf (",\n %ld MB NOR",
175 flash_size >> 20);
176#endif
177 lcd_puts ("\n");
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200178}
179#endif /* CONFIG_LCD_INFO */
Stelian Pop56a24792008-05-08 14:52:31 +0200180#endif
181
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800182#ifdef CONFIG_DEBUG_UART_BOARD_INIT
183void board_debug_uart_init(void)
184{
185 at91_seriald_hw_init();
186}
187#endif
188
189#ifdef CONFIG_BOARD_EARLY_INIT_F
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000190int board_early_init_f(void)
191{
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800192#ifdef CONFIG_DEBUG_UART
193 debug_uart_init();
194#endif
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000195 return 0;
196}
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800197#endif
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000198
Stelian Pop8e429b32008-05-08 18:52:23 +0200199int board_init(void)
200{
Stelian Pop8e429b32008-05-08 18:52:23 +0200201 /* arch number of AT91SAM9263EK-Board */
202 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK;
203 /* adress of boot parameters */
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000204 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop8e429b32008-05-08 18:52:23 +0200205
Stelian Pop8e429b32008-05-08 18:52:23 +0200206#ifdef CONFIG_CMD_NAND
207 at91sam9263ek_nand_hw_init();
208#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200209#ifdef CONFIG_USB_OHCI_NEW
Jean-Christophe PLAGNIOL-VILLARDf3f91f82009-03-21 21:08:00 +0100210 at91_uhp_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200211#endif
Stelian Pop56a24792008-05-08 14:52:31 +0200212#ifdef CONFIG_LCD
213 at91sam9263ek_lcd_hw_init();
214#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200215 return 0;
216}
217
218int dram_init(void)
219{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000220 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
221 CONFIG_SYS_SDRAM_SIZE);
222
Stelian Pop8e429b32008-05-08 18:52:23 +0200223 return 0;
224}
225
226#ifdef CONFIG_RESET_PHY_R
227void reset_phy(void)
228{
Stelian Pop8e429b32008-05-08 18:52:23 +0200229}
230#endif