blob: be132bc185fbd3c53b59bd0776a8bd67f71d5364 [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 Glassb79fdc72020-05-10 11:39:54 -060010#include <flash.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070011#include <init.h>
Simon Glass5e6267a2019-12-28 10:44:48 -070012#include <net.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070013#include <vsprintf.h>
Alexey Brodkin1ace4022014-02-26 17:47:58 +040014#include <linux/sizes.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020015#include <asm/arch/at91sam9263.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020016#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD1332a2a2009-03-21 21:07:59 +010017#include <asm/arch/at91_common.h>
Jens Scharsig1b34f002010-02-03 22:47:18 +010018#include <asm/arch/at91_matrix.h>
19#include <asm/arch/at91_pio.h>
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +020020#include <asm/arch/clk.h>
Xu, Hongcd46b0f2011-06-10 21:31:26 +000021#include <asm/io.h>
22#include <asm/arch/gpio.h>
Ben Warren3ae071e2008-08-12 22:11:53 -070023#include <asm/arch/hardware.h>
Stelian Pop56a24792008-05-08 14:52:31 +020024#include <lcd.h>
25#include <atmel_lcdc.h>
Simon Glassc62db352017-05-31 19:47:48 -060026#include <asm/mach-types.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;
Stelian Pop8e429b32008-05-08 18:52:23 +020041
42 /* Enable CS3 */
Jens Scharsig1b34f002010-02-03 22:47:18 +010043 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
44 writel(csa, &matrix->csa[0]);
45
46 /* Enable CS3 */
Stelian Pop8e429b32008-05-08 18:52:23 +020047
48 /* Configure SMC CS3 for NAND/SmartMedia */
Jens Scharsig1b34f002010-02-03 22:47:18 +010049 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
50 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
51 &smc->cs[3].setup);
Stelian Pop8e429b32008-05-08 18:52:23 +020052
Jens Scharsig1b34f002010-02-03 22:47:18 +010053 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
54 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
55 &smc->cs[3].pulse);
56
57 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
58 &smc->cs[3].cycle);
59 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
60 AT91_SMC_MODE_EXNW_DISABLE |
61#ifdef CONFIG_SYS_NAND_DBW_16
62 AT91_SMC_MODE_DBW_16 |
63#else /* CONFIG_SYS_NAND_DBW_8 */
64 AT91_SMC_MODE_DBW_8 |
65#endif
66 AT91_SMC_MODE_TDF_CYCLE(2),
67 &smc->cs[3].mode);
68
Wenyou Yang70341e22016-02-03 10:16:50 +080069 at91_periph_clk_enable(ATMEL_ID_PIOA);
70 at91_periph_clk_enable(ATMEL_ID_PIOCDE);
Stelian Pop8e429b32008-05-08 18:52:23 +020071
72 /* Configure RDY/BSY */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000073 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020074
75 /* Enable NandFlash */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000076 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020077}
78#endif
79
Stelian Pop56a24792008-05-08 14:52:31 +020080#ifdef CONFIG_LCD
81vidinfo_t panel_info = {
Jeroen Hofsteec346e462014-06-10 00:16:23 +020082 .vl_col = 240,
83 .vl_row = 320,
84 .vl_clk = 4965000,
85 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
86 ATMEL_LCDC_INVFRAME_INVERTED,
87 .vl_bpix = 3,
88 .vl_tft = 1,
89 .vl_hsync_len = 5,
90 .vl_left_margin = 1,
91 .vl_right_margin = 33,
92 .vl_vsync_len = 1,
93 .vl_upper_margin = 1,
94 .vl_lower_margin = 0,
95 .mmio = ATMEL_BASE_LCDC,
Stelian Pop56a24792008-05-08 14:52:31 +020096};
97
98void lcd_enable(void)
99{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100100 at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */
Stelian Pop56a24792008-05-08 14:52:31 +0200101}
102
103void lcd_disable(void)
104{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100105 at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */
Stelian Pop56a24792008-05-08 14:52:31 +0200106}
107
108static void at91sam9263ek_lcd_hw_init(void)
109{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100110 at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */
111 at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */
112 at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */
113 at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */
114 at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */
115 at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */
116 at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */
117 at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */
118 at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */
119 at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */
120 at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */
121 at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */
122 at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */
123 at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */
124 at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */
125 at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */
126 at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */
127 at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */
128 at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */
129 at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */
130 at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */
131 at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */
Stelian Pop56a24792008-05-08 14:52:31 +0200132
Wenyou Yang70341e22016-02-03 10:16:50 +0800133 at91_periph_clk_enable(ATMEL_ID_LCDC);
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000134 gd->fb_base = ATMEL_BASE_SRAM0;
Stelian Pop56a24792008-05-08 14:52:31 +0200135}
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200136
137#ifdef CONFIG_LCD_INFO
138#include <nand.h>
139#include <version.h>
140
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900141#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200142extern flash_info_t flash_info[];
143#endif
144
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200145void lcd_show_board_info(void)
146{
147 ulong dram_size, nand_size;
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900148#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200149 ulong flash_size;
150#endif
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200151 int i;
152 char temp[32];
153
154 lcd_printf ("%s\n", U_BOOT_VERSION);
155 lcd_printf ("(C) 2008 ATMEL Corp\n");
156 lcd_printf ("at91support@atmel.com\n");
157 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000158 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +0200159 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200160
161 dram_size = 0;
162 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
163 dram_size += gd->bd->bi_dram[i].size;
164 nand_size = 0;
165 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Grygorii Strashko31f8d392017-06-26 19:13:03 -0500166 nand_size += get_nand_dev_by_index(i)->size;
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900167#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200168 flash_size = 0;
169 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
170 flash_size += flash_info[i].size;
171#endif
172 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200173 dram_size >> 20,
174 nand_size >> 20 );
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900175#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200176 lcd_printf (",\n %ld MB NOR",
177 flash_size >> 20);
178#endif
179 lcd_puts ("\n");
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200180}
181#endif /* CONFIG_LCD_INFO */
Stelian Pop56a24792008-05-08 14:52:31 +0200182#endif
183
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800184#ifdef CONFIG_DEBUG_UART_BOARD_INIT
185void board_debug_uart_init(void)
186{
187 at91_seriald_hw_init();
188}
189#endif
190
191#ifdef CONFIG_BOARD_EARLY_INIT_F
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000192int board_early_init_f(void)
193{
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800194#ifdef CONFIG_DEBUG_UART
195 debug_uart_init();
196#endif
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000197 return 0;
198}
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800199#endif
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000200
Stelian Pop8e429b32008-05-08 18:52:23 +0200201int board_init(void)
202{
Stelian Pop8e429b32008-05-08 18:52:23 +0200203 /* arch number of AT91SAM9263EK-Board */
204 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK;
205 /* adress of boot parameters */
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000206 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop8e429b32008-05-08 18:52:23 +0200207
Stelian Pop8e429b32008-05-08 18:52:23 +0200208#ifdef CONFIG_CMD_NAND
209 at91sam9263ek_nand_hw_init();
210#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200211#ifdef CONFIG_USB_OHCI_NEW
Jean-Christophe PLAGNIOL-VILLARDf3f91f82009-03-21 21:08:00 +0100212 at91_uhp_hw_init();
Stelian Pop8e429b32008-05-08 18:52:23 +0200213#endif
Stelian Pop56a24792008-05-08 14:52:31 +0200214#ifdef CONFIG_LCD
215 at91sam9263ek_lcd_hw_init();
216#endif
Stelian Pop8e429b32008-05-08 18:52:23 +0200217 return 0;
218}
219
220int dram_init(void)
221{
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000222 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
223 CONFIG_SYS_SDRAM_SIZE);
224
Stelian Pop8e429b32008-05-08 18:52:23 +0200225 return 0;
226}
227
228#ifdef CONFIG_RESET_PHY_R
229void reset_phy(void)
230{
Stelian Pop8e429b32008-05-08 18:52:23 +0200231}
232#endif