blob: b4acb742b3b2fdd1fc1cab6ddf469ef5d760a324 [file] [log] [blame]
Stelian Pop61e69d72008-05-08 20:52:22 +02001/*
2 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Stelian Pop61e69d72008-05-08 20:52:22 +02004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stelian Pop61e69d72008-05-08 20:52:22 +02007 */
8
9#include <common.h>
Xu, Hong0a614942011-07-31 22:49:00 +000010#include <asm/io.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020011#include <asm/arch/at91sam9261.h>
12#include <asm/arch/at91sam9261_matrix.h>
13#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010014#include <asm/arch/at91_common.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020015#include <asm/arch/at91_rstc.h>
Jean-Christophe PLAGNIOL-VILLARD23164f12009-04-16 21:30:44 +020016#include <asm/arch/clk.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020017#include <asm/arch/gpio.h>
Stelian Pop905ed222008-05-08 14:52:30 +020018#include <lcd.h>
19#include <atmel_lcdc.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020020#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_DRIVER_DM9000)
21#include <net.h>
Remy Bohmer7eefd922009-05-02 21:49:18 +020022#include <netdev.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020023#endif
Simon Glass0ffb9d62017-05-31 19:47:48 -060024#include <asm/mach-types.h>
Stelian Pop61e69d72008-05-08 20:52:22 +020025
26DECLARE_GLOBAL_DATA_PTR;
27
28/* ------------------------------------------------------------------------- */
29/*
30 * Miscelaneous platform dependent initialisations
31 */
32
Stelian Pop61e69d72008-05-08 20:52:22 +020033#ifdef CONFIG_CMD_NAND
34static void at91sam9261ek_nand_hw_init(void)
35{
Xu, Hong0a614942011-07-31 22:49:00 +000036 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
37 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
Stelian Pop61e69d72008-05-08 20:52:22 +020038 unsigned long csa;
39
40 /* Enable CS3 */
Xu, Hong0a614942011-07-31 22:49:00 +000041 csa = readl(&matrix->ebicsa);
42 csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
43
44 writel(csa, &matrix->ebicsa);
Stelian Pop61e69d72008-05-08 20:52:22 +020045
46 /* Configure SMC CS3 for NAND/SmartMedia */
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020047#ifdef CONFIG_AT91SAM9G10EK
Xu, Hong0a614942011-07-31 22:49:00 +000048 writel(AT91_SMC_SETUP_NWE(2) | AT91_SMC_SETUP_NCS_WR(0) |
49 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
50 &smc->cs[3].setup);
51 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(7) |
52 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(7),
53 &smc->cs[3].pulse);
54 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(7),
55 &smc->cs[3].cycle);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020056#else
Xu, Hong0a614942011-07-31 22:49:00 +000057 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
58 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
59 &smc->cs[3].setup);
60 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
61 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
62 &smc->cs[3].pulse);
63 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
64 &smc->cs[3].cycle);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020065#endif
Xu, Hong0a614942011-07-31 22:49:00 +000066 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
67 AT91_SMC_MODE_EXNW_DISABLE |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020068#ifdef CONFIG_SYS_NAND_DBW_16
Xu, Hong0a614942011-07-31 22:49:00 +000069 AT91_SMC_MODE_DBW_16 |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020070#else /* CONFIG_SYS_NAND_DBW_8 */
Xu, Hong0a614942011-07-31 22:49:00 +000071 AT91_SMC_MODE_DBW_8 |
Stelian Pop61e69d72008-05-08 20:52:22 +020072#endif
Xu, Hong0a614942011-07-31 22:49:00 +000073 AT91_SMC_MODE_TDF_CYCLE(2),
74 &smc->cs[3].mode);
Stelian Pop61e69d72008-05-08 20:52:22 +020075
Wenyou Yang78f89762016-02-03 10:16:50 +080076 at91_periph_clk_enable(ATMEL_ID_PIOC);
Stelian Pop61e69d72008-05-08 20:52:22 +020077
78 /* Configure RDY/BSY */
Jean-Christophe PLAGNIOL-VILLARDc9539ba2009-03-22 10:22:34 +010079 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop61e69d72008-05-08 20:52:22 +020080
81 /* Enable NandFlash */
Jean-Christophe PLAGNIOL-VILLARDc9539ba2009-03-22 10:22:34 +010082 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop61e69d72008-05-08 20:52:22 +020083
84 at91_set_A_periph(AT91_PIN_PC0, 0); /* NANDOE */
85 at91_set_A_periph(AT91_PIN_PC1, 0); /* NANDWE */
86}
87#endif
88
Stelian Pop61e69d72008-05-08 20:52:22 +020089#ifdef CONFIG_DRIVER_DM9000
90static void at91sam9261ek_dm9000_hw_init(void)
91{
Xu, Hong0a614942011-07-31 22:49:00 +000092 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
93
Stelian Pop61e69d72008-05-08 20:52:22 +020094 /* Configure SMC CS2 for DM9000 */
Sedji Gaouaou97a031b2009-06-25 17:04:15 +020095#ifdef CONFIG_AT91SAM9G10EK
Xu, Hong0a614942011-07-31 22:49:00 +000096 writel(AT91_SMC_SETUP_NWE(3) | AT91_SMC_SETUP_NCS_WR(0) |
97 AT91_SMC_SETUP_NRD(3) | AT91_SMC_SETUP_NCS_RD(0),
98 &smc->cs[2].setup);
99 writel(AT91_SMC_PULSE_NWE(6) | AT91_SMC_PULSE_NCS_WR(8) |
100 AT91_SMC_PULSE_NRD(6) | AT91_SMC_PULSE_NCS_RD(8),
101 &smc->cs[2].pulse);
102 writel(AT91_SMC_CYCLE_NWE(20) | AT91_SMC_CYCLE_NRD(20),
103 &smc->cs[2].cycle);
104 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
105 AT91_SMC_MODE_EXNW_DISABLE |
106 AT91_SMC_MODE_BAT | AT91_SMC_MODE_DBW_16 |
107 AT91_SMC_MODE_TDF_CYCLE(1),
108 &smc->cs[2].mode);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200109#else
Xu, Hong0a614942011-07-31 22:49:00 +0000110 writel(AT91_SMC_SETUP_NWE(3) | AT91_SMC_SETUP_NCS_WR(0) |
111 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(0),
112 &smc->cs[2].setup);
113 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(8) |
114 AT91_SMC_PULSE_NRD(4) | AT91_SMC_PULSE_NCS_RD(8),
115 &smc->cs[2].pulse);
116 writel(AT91_SMC_CYCLE_NWE(16) | AT91_SMC_CYCLE_NRD(16),
117 &smc->cs[2].cycle);
118 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
119 AT91_SMC_MODE_EXNW_DISABLE |
120 AT91_SMC_MODE_BAT | AT91_SMC_MODE_DBW_16 |
121 AT91_SMC_MODE_TDF_CYCLE(1),
122 &smc->cs[2].mode);
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200123#endif
Stelian Pop61e69d72008-05-08 20:52:22 +0200124
125 /* Configure Reset signal as output */
126 at91_set_gpio_output(AT91_PIN_PC10, 0);
127
128 /* Configure Interrupt pin as input, no pull-up */
129 at91_set_gpio_input(AT91_PIN_PC11, 0);
130}
131#endif
132
Stelian Pop905ed222008-05-08 14:52:30 +0200133#ifdef CONFIG_LCD
134vidinfo_t panel_info = {
Jeroen Hofsteee887b722014-06-10 00:16:23 +0200135 .vl_col = 240,
136 .vl_row = 320,
137 .vl_clk = 4965000,
138 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
139 ATMEL_LCDC_INVFRAME_INVERTED,
140 .vl_bpix = 3,
141 .vl_tft = 1,
142 .vl_hsync_len = 5,
143 .vl_left_margin = 1,
144 .vl_right_margin = 33,
145 .vl_vsync_len = 1,
146 .vl_upper_margin = 1,
147 .vl_lower_margin = 0,
148 .mmio = ATMEL_BASE_LCDC,
Stelian Pop905ed222008-05-08 14:52:30 +0200149};
150
151void lcd_enable(void)
152{
153 at91_set_gpio_value(AT91_PIN_PA12, 0); /* power up */
154}
155
156void lcd_disable(void)
157{
158 at91_set_gpio_value(AT91_PIN_PA12, 1); /* power down */
159}
160
161static void at91sam9261ek_lcd_hw_init(void)
162{
163 at91_set_A_periph(AT91_PIN_PB1, 0); /* LCDHSYNC */
164 at91_set_A_periph(AT91_PIN_PB2, 0); /* LCDDOTCK */
165 at91_set_A_periph(AT91_PIN_PB3, 0); /* LCDDEN */
166 at91_set_A_periph(AT91_PIN_PB4, 0); /* LCDCC */
167 at91_set_A_periph(AT91_PIN_PB7, 0); /* LCDD2 */
168 at91_set_A_periph(AT91_PIN_PB8, 0); /* LCDD3 */
169 at91_set_A_periph(AT91_PIN_PB9, 0); /* LCDD4 */
170 at91_set_A_periph(AT91_PIN_PB10, 0); /* LCDD5 */
171 at91_set_A_periph(AT91_PIN_PB11, 0); /* LCDD6 */
172 at91_set_A_periph(AT91_PIN_PB12, 0); /* LCDD7 */
173 at91_set_A_periph(AT91_PIN_PB15, 0); /* LCDD10 */
174 at91_set_A_periph(AT91_PIN_PB16, 0); /* LCDD11 */
175 at91_set_A_periph(AT91_PIN_PB17, 0); /* LCDD12 */
176 at91_set_A_periph(AT91_PIN_PB18, 0); /* LCDD13 */
177 at91_set_A_periph(AT91_PIN_PB19, 0); /* LCDD14 */
178 at91_set_A_periph(AT91_PIN_PB20, 0); /* LCDD15 */
179 at91_set_B_periph(AT91_PIN_PB23, 0); /* LCDD18 */
180 at91_set_B_periph(AT91_PIN_PB24, 0); /* LCDD19 */
181 at91_set_B_periph(AT91_PIN_PB25, 0); /* LCDD20 */
182 at91_set_B_periph(AT91_PIN_PB26, 0); /* LCDD21 */
183 at91_set_B_periph(AT91_PIN_PB27, 0); /* LCDD22 */
184 at91_set_B_periph(AT91_PIN_PB28, 0); /* LCDD23 */
185
Wenyou Yang78f89762016-02-03 10:16:50 +0800186 at91_system_clk_enable(AT91_PMC_HCK1);
Stelian Pop905ed222008-05-08 14:52:30 +0200187
Xu, Hong0a614942011-07-31 22:49:00 +0000188 /* For 9G10EK, let U-Boot allocate the framebuffer in SDRAM */
189#ifdef CONFIG_AT91SAM9261EK
190 gd->fb_base = ATMEL_BASE_SRAM;
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200191#endif
Stelian Pop905ed222008-05-08 14:52:30 +0200192}
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200193
194#ifdef CONFIG_LCD_INFO
195#include <nand.h>
196#include <version.h>
197
198void lcd_show_board_info(void)
199{
200 ulong dram_size, nand_size;
201 int i;
202 char temp[32];
203
204 lcd_printf ("%s\n", U_BOOT_VERSION);
205 lcd_printf ("(C) 2008 ATMEL Corp\n");
206 lcd_printf ("at91support@atmel.com\n");
207 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hong0a614942011-07-31 22:49:00 +0000208 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARD23164f12009-04-16 21:30:44 +0200209 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200210
211 dram_size = 0;
212 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
213 dram_size += gd->bd->bi_dram[i].size;
214 nand_size = 0;
215 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Scott Wood2c1b7e12016-05-30 13:57:55 -0500216 nand_size += nand_info[i]->size;
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200217 lcd_printf (" %ld MB SDRAM, %ld MB NAND\n",
218 dram_size >> 20,
219 nand_size >> 20 );
220}
221#endif /* CONFIG_LCD_INFO */
Stelian Pop905ed222008-05-08 14:52:30 +0200222#endif
223
Stelian Pop61e69d72008-05-08 20:52:22 +0200224int board_init(void)
225{
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200226#ifdef CONFIG_AT91SAM9G10EK
227 /* arch number of AT91SAM9G10EK-Board */
228 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9G10EK;
229#else
Stelian Pop61e69d72008-05-08 20:52:22 +0200230 /* arch number of AT91SAM9261EK-Board */
231 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9261EK;
Sedji Gaouaou97a031b2009-06-25 17:04:15 +0200232#endif
Stelian Pop61e69d72008-05-08 20:52:22 +0200233 /* adress of boot parameters */
Xu, Hong0a614942011-07-31 22:49:00 +0000234 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop61e69d72008-05-08 20:52:22 +0200235
Xu, Hong0a614942011-07-31 22:49:00 +0000236 at91_seriald_hw_init();
Stelian Pop61e69d72008-05-08 20:52:22 +0200237#ifdef CONFIG_CMD_NAND
238 at91sam9261ek_nand_hw_init();
239#endif
240#ifdef CONFIG_HAS_DATAFLASH
Jean-Christophe PLAGNIOL-VILLARD12dcdef2009-03-21 21:07:59 +0100241 at91_spi0_hw_init(1 << 0);
Stelian Pop61e69d72008-05-08 20:52:22 +0200242#endif
243#ifdef CONFIG_DRIVER_DM9000
244 at91sam9261ek_dm9000_hw_init();
245#endif
Stelian Pop905ed222008-05-08 14:52:30 +0200246#ifdef CONFIG_LCD
247 at91sam9261ek_lcd_hw_init();
248#endif
Stelian Pop61e69d72008-05-08 20:52:22 +0200249 return 0;
250}
251
Remy Bohmer7eefd922009-05-02 21:49:18 +0200252#ifdef CONFIG_DRIVER_DM9000
Wolfgang Denke5032c82009-12-07 21:06:40 +0100253int board_eth_init(bd_t *bis)
254{
Remy Bohmer7eefd922009-05-02 21:49:18 +0200255 return dm9000_initialize(bis);
Wolfgang Denke5032c82009-12-07 21:06:40 +0100256}
257#endif
258
Stelian Pop61e69d72008-05-08 20:52:22 +0200259int dram_init(void)
260{
Xu, Hong0a614942011-07-31 22:49:00 +0000261 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
262 CONFIG_SYS_SDRAM_SIZE);
263
Stelian Pop61e69d72008-05-08 20:52:22 +0200264 return 0;
265}
266
267#ifdef CONFIG_RESET_PHY_R
268void reset_phy(void)
269{
270#ifdef CONFIG_DRIVER_DM9000
271 /*
272 * Initialize ethernet HW addr prior to starting Linux,
273 * needed for nfsroot
274 */
Joe Hershberger3dbe17e2015-03-22 17:09:06 -0500275 eth_init();
Stelian Pop61e69d72008-05-08 20:52:22 +0200276#endif
277}
278#endif