blob: 0318eeaa94e91739aee0aabbc60795d9ee226509 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stelian Pop61e69d72008-05-08 20:52:22 +02002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop61e69d72008-05-08 20:52:22 +02005 * Lead Tech Design <www.leadtechdesign.com>
Stelian Pop61e69d72008-05-08 20:52:22 +02006 */
7
8#include <common.h>
Wenyou.Yang@microchip.comb59fe682017-07-21 13:28:40 +08009#include <debug_uart.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070010#include <init.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070011#include <vsprintf.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Xu, Hong0a614942011-07-31 22:49:00 +000013#include <asm/io.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020014#include <asm/arch/at91sam9261.h>
15#include <asm/arch/at91sam9261_matrix.h>
16#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010017#include <asm/arch/at91_common.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020018#include <asm/arch/at91_rstc.h>
Jean-Christophe PLAGNIOL-VILLARD23164f12009-04-16 21:30:44 +020019#include <asm/arch/clk.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020020#include <asm/arch/gpio.h>
Stelian Pop905ed222008-05-08 14:52:30 +020021#include <lcd.h>
22#include <atmel_lcdc.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020023#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_DRIVER_DM9000)
24#include <net.h>
Remy Bohmer7eefd922009-05-02 21:49:18 +020025#include <netdev.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020026#endif
Simon Glass0ffb9d62017-05-31 19:47:48 -060027#include <asm/mach-types.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020028
29DECLARE_GLOBAL_DATA_PTR;
30
31/* ------------------------------------------------------------------------- */
32/*
33 * Miscelaneous platform dependent initialisations
34 */
35
Stelian Pop61e69d72008-05-08 20:52:22 +020036#ifdef CONFIG_CMD_NAND
37static void at91sam9261ek_nand_hw_init(void)
38{
Xu, Hong0a614942011-07-31 22:49:00 +000039 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
40 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
Stelian Pop61e69d72008-05-08 20:52:22 +020041 unsigned long csa;
42
43 /* Enable CS3 */
Xu, Hong0a614942011-07-31 22:49:00 +000044 csa = readl(&matrix->ebicsa);
45 csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
46
47 writel(csa, &matrix->ebicsa);
Stelian Pop61e69d72008-05-08 20:52:22 +020048
49 /* Configure SMC CS3 for NAND/SmartMedia */
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020050#ifdef CONFIG_AT91SAM9G10EK
Xu, Hong0a614942011-07-31 22:49:00 +000051 writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(0) |
52 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
53 &smc->cs[3].setup);
54 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(7) |
55 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(7),
56 &smc->cs[3].pulse);
57 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(7),
58 &smc->cs[3].cycle);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020059#else
Xu, Hong0a614942011-07-31 22:49:00 +000060 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
61 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
62 &smc->cs[3].setup);
63 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
64 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
65 &smc->cs[3].pulse);
66 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
67 &smc->cs[3].cycle);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020068#endif
Xu, Hong0a614942011-07-31 22:49:00 +000069 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
70 AT91_SMC_MODE_EXNW_DISABLE |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020071#ifdef CONFIG_SYS_NAND_DBW_16
Xu, Hong0a614942011-07-31 22:49:00 +000072 AT91_SMC_MODE_DBW_16 |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020073#else /* CONFIG_SYS_NAND_DBW_8 */
Xu, Hong0a614942011-07-31 22:49:00 +000074 AT91_SMC_MODE_DBW_8 |
Stelian Pop61e69d72008-05-08 20:52:22 +020075#endif
Xu, Hong0a614942011-07-31 22:49:00 +000076 AT91_SMC_MODE_TDF_CYCLE(2),
77 &smc->cs[3].mode);
Stelian Pop61e69d72008-05-08 20:52:22 +020078
Wenyou Yang78f89762016-02-03 10:16:50 +080079 at91_periph_clk_enable(ATMEL_ID_PIOC);
Stelian Pop61e69d72008-05-08 20:52:22 +020080
81 /* Configure RDY/BSY */
Jean-Christophe PLAGNIOL-VILLARDc9539ba2009-03-22 10:22:34 +010082 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop61e69d72008-05-08 20:52:22 +020083
84 /* Enable NandFlash */
Jean-Christophe PLAGNIOL-VILLARDc9539ba2009-03-22 10:22:34 +010085 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop61e69d72008-05-08 20:52:22 +020086
87 at91_set_A_periph(AT91_PIN_PC0, 0); /* NANDOE */
88 at91_set_A_periph(AT91_PIN_PC1, 0); /* NANDWE */
89}
90#endif
91
Stelian Pop61e69d72008-05-08 20:52:22 +020092#ifdef CONFIG_DRIVER_DM9000
93static void at91sam9261ek_dm9000_hw_init(void)
94{
Xu, Hong0a614942011-07-31 22:49:00 +000095 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
96
Stelian Pop61e69d72008-05-08 20:52:22 +020097 /* Configure SMC CS2 for DM9000 */
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020098#ifdef CONFIG_AT91SAM9G10EK
Xu, Hong0a614942011-07-31 22:49:00 +000099 writel(AT91_SMC_SETUP_NWE(3) | AT91_SMC_SETUP_NCS_WR(0) |
100 AT91_SMC_SETUP_NRD(3) | AT91_SMC_SETUP_NCS_RD(0),
101 &smc->cs[2].setup);
102 writel(AT91_SMC_PULSE_NWE(6) | AT91_SMC_PULSE_NCS_WR(8) |
103 AT91_SMC_PULSE_NRD(6) | AT91_SMC_PULSE_NCS_RD(8),
104 &smc->cs[2].pulse);
105 writel(AT91_SMC_CYCLE_NWE(20) | AT91_SMC_CYCLE_NRD(20),
106 &smc->cs[2].cycle);
107 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
108 AT91_SMC_MODE_EXNW_DISABLE |
109 AT91_SMC_MODE_BAT | AT91_SMC_MODE_DBW_16 |
110 AT91_SMC_MODE_TDF_CYCLE(1),
111 &smc->cs[2].mode);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200112#else
Xu, Hong0a614942011-07-31 22:49:00 +0000113 writel(AT91_SMC_SETUP_NWE(3) | AT91_SMC_SETUP_NCS_WR(0) |
114 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
115 &smc->cs[2].setup);
116 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(8) |
117 AT91_SMC_PULSE_NRD(4) | AT91_SMC_PULSE_NCS_RD(8),
118 &smc->cs[2].pulse);
119 writel(AT91_SMC_CYCLE_NWE(16) | AT91_SMC_CYCLE_NRD(16),
120 &smc->cs[2].cycle);
121 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
122 AT91_SMC_MODE_EXNW_DISABLE |
123 AT91_SMC_MODE_BAT | AT91_SMC_MODE_DBW_16 |
124 AT91_SMC_MODE_TDF_CYCLE(1),
125 &smc->cs[2].mode);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200126#endif
Stelian Pop61e69d72008-05-08 20:52:22 +0200127
128 /* Configure Reset signal as output */
129 at91_set_gpio_output(AT91_PIN_PC10, 0);
130
131 /* Configure Interrupt pin as input, no pull-up */
132 at91_set_gpio_input(AT91_PIN_PC11, 0);
133}
134#endif
135
Stelian Pop905ed222008-05-08 14:52:30 +0200136#ifdef CONFIG_LCD
137vidinfo_t panel_info = {
Jeroen Hofsteee887b722014-06-10 00:16:23 +0200138 .vl_col = 240,
139 .vl_row = 320,
140 .vl_clk = 4965000,
141 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
142 ATMEL_LCDC_INVFRAME_INVERTED,
143 .vl_bpix = 3,
144 .vl_tft = 1,
145 .vl_hsync_len = 5,
146 .vl_left_margin = 1,
147 .vl_right_margin = 33,
148 .vl_vsync_len = 1,
149 .vl_upper_margin = 1,
150 .vl_lower_margin = 0,
151 .mmio = ATMEL_BASE_LCDC,
Stelian Pop905ed222008-05-08 14:52:30 +0200152};
153
154void lcd_enable(void)
155{
156 at91_set_gpio_value(AT91_PIN_PA12, 0); /* power up */
157}
158
159void lcd_disable(void)
160{
161 at91_set_gpio_value(AT91_PIN_PA12, 1); /* power down */
162}
163
164static void at91sam9261ek_lcd_hw_init(void)
165{
166 at91_set_A_periph(AT91_PIN_PB1, 0); /* LCDHSYNC */
167 at91_set_A_periph(AT91_PIN_PB2, 0); /* LCDDOTCK */
168 at91_set_A_periph(AT91_PIN_PB3, 0); /* LCDDEN */
169 at91_set_A_periph(AT91_PIN_PB4, 0); /* LCDCC */
170 at91_set_A_periph(AT91_PIN_PB7, 0); /* LCDD2 */
171 at91_set_A_periph(AT91_PIN_PB8, 0); /* LCDD3 */
172 at91_set_A_periph(AT91_PIN_PB9, 0); /* LCDD4 */
173 at91_set_A_periph(AT91_PIN_PB10, 0); /* LCDD5 */
174 at91_set_A_periph(AT91_PIN_PB11, 0); /* LCDD6 */
175 at91_set_A_periph(AT91_PIN_PB12, 0); /* LCDD7 */
176 at91_set_A_periph(AT91_PIN_PB15, 0); /* LCDD10 */
177 at91_set_A_periph(AT91_PIN_PB16, 0); /* LCDD11 */
178 at91_set_A_periph(AT91_PIN_PB17, 0); /* LCDD12 */
179 at91_set_A_periph(AT91_PIN_PB18, 0); /* LCDD13 */
180 at91_set_A_periph(AT91_PIN_PB19, 0); /* LCDD14 */
181 at91_set_A_periph(AT91_PIN_PB20, 0); /* LCDD15 */
182 at91_set_B_periph(AT91_PIN_PB23, 0); /* LCDD18 */
183 at91_set_B_periph(AT91_PIN_PB24, 0); /* LCDD19 */
184 at91_set_B_periph(AT91_PIN_PB25, 0); /* LCDD20 */
185 at91_set_B_periph(AT91_PIN_PB26, 0); /* LCDD21 */
186 at91_set_B_periph(AT91_PIN_PB27, 0); /* LCDD22 */
187 at91_set_B_periph(AT91_PIN_PB28, 0); /* LCDD23 */
188
Wenyou Yang78f89762016-02-03 10:16:50 +0800189 at91_system_clk_enable(AT91_PMC_HCK1);
Stelian Pop905ed222008-05-08 14:52:30 +0200190
Xu, Hong0a614942011-07-31 22:49:00 +0000191 /* For 9G10EK, let U-Boot allocate the framebuffer in SDRAM */
192#ifdef CONFIG_AT91SAM9261EK
193 gd->fb_base = ATMEL_BASE_SRAM;
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200194#endif
Stelian Pop905ed222008-05-08 14:52:30 +0200195}
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200196
197#ifdef CONFIG_LCD_INFO
198#include <nand.h>
199#include <version.h>
200
201void lcd_show_board_info(void)
202{
203 ulong dram_size, nand_size;
204 int i;
205 char temp[32];
206
207 lcd_printf ("%s\n", U_BOOT_VERSION);
208 lcd_printf ("(C) 2008 ATMEL Corp\n");
209 lcd_printf ("at91support@atmel.com\n");
210 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hong0a614942011-07-31 22:49:00 +0000211 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARD23164f12009-04-16 21:30:44 +0200212 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200213
214 dram_size = 0;
215 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
216 dram_size += gd->bd->bi_dram[i].size;
217 nand_size = 0;
218 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Grygorii Strashko1e096a22017-06-26 19:13:03 -0500219 nand_size += get_nand_dev_by_index(i)->size;
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200220 lcd_printf (" %ld MB SDRAM, %ld MB NAND\n",
221 dram_size >> 20,
222 nand_size >> 20 );
223}
224#endif /* CONFIG_LCD_INFO */
Stelian Pop905ed222008-05-08 14:52:30 +0200225#endif
226
Wenyou.Yang@microchip.comb59fe682017-07-21 13:28:40 +0800227#ifdef CONFIG_DEBUG_UART_BOARD_INIT
228void board_debug_uart_init(void)
229{
230 at91_seriald_hw_init();
231}
232#endif
233
234#ifdef CONFIG_BOARD_EARLY_INIT_F
235int board_early_init_f(void)
236{
237#ifdef CONFIG_DEBUG_UART
238 debug_uart_init();
239#endif
240 return 0;
241}
242#endif
243
Stelian Pop61e69d72008-05-08 20:52:22 +0200244int board_init(void)
245{
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200246#ifdef CONFIG_AT91SAM9G10EK
247 /* arch number of AT91SAM9G10EK-Board */
248 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9G10EK;
249#else
Stelian Pop61e69d72008-05-08 20:52:22 +0200250 /* arch number of AT91SAM9261EK-Board */
251 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9261EK;
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200252#endif
Stelian Pop61e69d72008-05-08 20:52:22 +0200253 /* adress of boot parameters */
Xu, Hong0a614942011-07-31 22:49:00 +0000254 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop61e69d72008-05-08 20:52:22 +0200255
Stelian Pop61e69d72008-05-08 20:52:22 +0200256#ifdef CONFIG_CMD_NAND
257 at91sam9261ek_nand_hw_init();
258#endif
Stelian Pop61e69d72008-05-08 20:52:22 +0200259#ifdef CONFIG_DRIVER_DM9000
260 at91sam9261ek_dm9000_hw_init();
261#endif
Stelian Pop905ed222008-05-08 14:52:30 +0200262#ifdef CONFIG_LCD
263 at91sam9261ek_lcd_hw_init();
264#endif
Stelian Pop61e69d72008-05-08 20:52:22 +0200265 return 0;
266}
267
Remy Bohmer7eefd922009-05-02 21:49:18 +0200268#ifdef CONFIG_DRIVER_DM9000
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900269int board_eth_init(struct bd_info *bis)
Wolfgang Denke5032c82009-12-07 21:06:40 +0100270{
Remy Bohmer7eefd922009-05-02 21:49:18 +0200271 return dm9000_initialize(bis);
Wolfgang Denke5032c82009-12-07 21:06:40 +0100272}
273#endif
274
Stelian Pop61e69d72008-05-08 20:52:22 +0200275int dram_init(void)
276{
Xu, Hong0a614942011-07-31 22:49:00 +0000277 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
278 CONFIG_SYS_SDRAM_SIZE);
279
Stelian Pop61e69d72008-05-08 20:52:22 +0200280 return 0;
281}
282
283#ifdef CONFIG_RESET_PHY_R
284void reset_phy(void)
285{
286#ifdef CONFIG_DRIVER_DM9000
287 /*
288 * Initialize ethernet HW addr prior to starting Linux,
289 * needed for nfsroot
290 */
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500291 eth_init();
Stelian Pop61e69d72008-05-08 20:52:22 +0200292#endif
293}
294#endif