blob: 3218e14e860ad82a3b8cd8fa56d2a693f9268cf0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stelian Pop69c925f2008-05-08 18:52:23 +02002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop69c925f2008-05-08 18:52:23 +02005 * Lead Tech Design <www.leadtechdesign.com>
Stelian Pop69c925f2008-05-08 18:52:23 +02006 */
7
8#include <common.h>
Wenyou Yang4a2c89a2017-04-18 15:31:02 +08009#include <debug_uart.h>
Simon Glass8e201882020-05-10 11:39:54 -060010#include <flash.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070011#include <init.h>
Simon Glass0c364412019-12-28 10:44:48 -070012#include <net.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070013#include <vsprintf.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Alexey Brodkin267d8e22014-02-26 17:47:58 +040015#include <linux/sizes.h>
Stelian Pop69c925f2008-05-08 18:52:23 +020016#include <asm/arch/at91sam9263.h>
Stelian Pop69c925f2008-05-08 18:52:23 +020017#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD6b0b3db2009-03-21 21:07:59 +010018#include <asm/arch/at91_common.h>
Jens Scharsigc3c10ea2010-02-03 22:47:18 +010019#include <asm/arch/at91_matrix.h>
20#include <asm/arch/at91_pio.h>
Jean-Christophe PLAGNIOL-VILLARD23164f12009-04-16 21:30:44 +020021#include <asm/arch/clk.h>
Xu, Hong504e4e12011-06-10 21:31:26 +000022#include <asm/io.h>
23#include <asm/arch/gpio.h>
Ben Warren057d2022008-08-12 22:11:53 -070024#include <asm/arch/hardware.h>
Stelian Pope068a9b2008-05-08 14:52:31 +020025#include <lcd.h>
26#include <atmel_lcdc.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060027#include <asm/mach-types.h>
Stelian Pop69c925f2008-05-08 18:52:23 +020028
29DECLARE_GLOBAL_DATA_PTR;
30
31/* ------------------------------------------------------------------------- */
32/*
33 * Miscelaneous platform dependent initialisations
34 */
35
Stelian Pop69c925f2008-05-08 18:52:23 +020036#ifdef CONFIG_CMD_NAND
37static void at91sam9263ek_nand_hw_init(void)
38{
39 unsigned long csa;
Xu, Hong504e4e12011-06-10 21:31:26 +000040 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
41 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
Stelian Pop69c925f2008-05-08 18:52:23 +020042
43 /* Enable CS3 */
Jens Scharsigc3c10ea2010-02-03 22:47:18 +010044 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
45 writel(csa, &matrix->csa[0]);
46
47 /* Enable CS3 */
Stelian Pop69c925f2008-05-08 18:52:23 +020048
49 /* Configure SMC CS3 for NAND/SmartMedia */
Jens Scharsigc3c10ea2010-02-03 22:47:18 +010050 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
51 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
52 &smc->cs[3].setup);
53
54 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
55 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
56 &smc->cs[3].pulse);
57
58 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
59 &smc->cs[3].cycle);
60 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
61 AT91_SMC_MODE_EXNW_DISABLE |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020062#ifdef CONFIG_SYS_NAND_DBW_16
Jens Scharsigc3c10ea2010-02-03 22:47:18 +010063 AT91_SMC_MODE_DBW_16 |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020064#else /* CONFIG_SYS_NAND_DBW_8 */
Jens Scharsigc3c10ea2010-02-03 22:47:18 +010065 AT91_SMC_MODE_DBW_8 |
Stelian Pop69c925f2008-05-08 18:52:23 +020066#endif
Jens Scharsigc3c10ea2010-02-03 22:47:18 +010067 AT91_SMC_MODE_TDF_CYCLE(2),
68 &smc->cs[3].mode);
Stelian Pop69c925f2008-05-08 18:52:23 +020069
Wenyou Yang78f89762016-02-03 10:16:50 +080070 at91_periph_clk_enable(ATMEL_ID_PIOA);
71 at91_periph_clk_enable(ATMEL_ID_PIOCDE);
Stelian Pop69c925f2008-05-08 18:52:23 +020072
73 /* Configure RDY/BSY */
Xu, Hong504e4e12011-06-10 21:31:26 +000074 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop69c925f2008-05-08 18:52:23 +020075
76 /* Enable NandFlash */
Xu, Hong504e4e12011-06-10 21:31:26 +000077 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop69c925f2008-05-08 18:52:23 +020078}
79#endif
80
Stelian Pope068a9b2008-05-08 14:52:31 +020081#ifdef CONFIG_LCD
82vidinfo_t panel_info = {
Jeroen Hofsteee887b722014-06-10 00:16:23 +020083 .vl_col = 240,
84 .vl_row = 320,
85 .vl_clk = 4965000,
86 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
87 ATMEL_LCDC_INVFRAME_INVERTED,
88 .vl_bpix = 3,
89 .vl_tft = 1,
90 .vl_hsync_len = 5,
91 .vl_left_margin = 1,
92 .vl_right_margin = 33,
93 .vl_vsync_len = 1,
94 .vl_upper_margin = 1,
95 .vl_lower_margin = 0,
96 .mmio = ATMEL_BASE_LCDC,
Stelian Pope068a9b2008-05-08 14:52:31 +020097};
98
99void lcd_enable(void)
100{
Jens Scharsigc3c10ea2010-02-03 22:47:18 +0100101 at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */
Stelian Pope068a9b2008-05-08 14:52:31 +0200102}
103
104void lcd_disable(void)
105{
Jens Scharsigc3c10ea2010-02-03 22:47:18 +0100106 at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */
Stelian Pope068a9b2008-05-08 14:52:31 +0200107}
108
109static void at91sam9263ek_lcd_hw_init(void)
110{
Jens Scharsigc3c10ea2010-02-03 22:47:18 +0100111 at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */
112 at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */
113 at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */
114 at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */
115 at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */
116 at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */
117 at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */
118 at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */
119 at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */
120 at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */
121 at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */
122 at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */
123 at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */
124 at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */
125 at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */
126 at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */
127 at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */
128 at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */
129 at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */
130 at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */
131 at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */
132 at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */
Stelian Pope068a9b2008-05-08 14:52:31 +0200133
Wenyou Yang78f89762016-02-03 10:16:50 +0800134 at91_periph_clk_enable(ATMEL_ID_LCDC);
Xu, Hong504e4e12011-06-10 21:31:26 +0000135 gd->fb_base = ATMEL_BASE_SRAM0;
Stelian Pope068a9b2008-05-08 14:52:31 +0200136}
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200137
138#ifdef CONFIG_LCD_INFO
139#include <nand.h>
140#include <version.h>
141
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900142#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD32774732009-06-13 12:48:36 +0200143extern flash_info_t flash_info[];
144#endif
145
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200146void lcd_show_board_info(void)
147{
148 ulong dram_size, nand_size;
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900149#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD32774732009-06-13 12:48:36 +0200150 ulong flash_size;
151#endif
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200152 int i;
153 char temp[32];
154
155 lcd_printf ("%s\n", U_BOOT_VERSION);
156 lcd_printf ("(C) 2008 ATMEL Corp\n");
157 lcd_printf ("at91support@atmel.com\n");
158 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hong504e4e12011-06-10 21:31:26 +0000159 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARD23164f12009-04-16 21:30:44 +0200160 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200161
162 dram_size = 0;
163 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
164 dram_size += gd->bd->bi_dram[i].size;
165 nand_size = 0;
166 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Grygorii Strashko1e096a22017-06-26 19:13:03 -0500167 nand_size += get_nand_dev_by_index(i)->size;
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900168#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD32774732009-06-13 12:48:36 +0200169 flash_size = 0;
170 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
171 flash_size += flash_info[i].size;
172#endif
173 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200174 dram_size >> 20,
175 nand_size >> 20 );
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900176#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD32774732009-06-13 12:48:36 +0200177 lcd_printf (",\n %ld MB NOR",
178 flash_size >> 20);
179#endif
180 lcd_puts ("\n");
Haavard Skinnemoenddbcf952008-09-01 16:21:22 +0200181}
182#endif /* CONFIG_LCD_INFO */
Stelian Pope068a9b2008-05-08 14:52:31 +0200183#endif
184
Wenyou Yang4a2c89a2017-04-18 15:31:02 +0800185#ifdef CONFIG_DEBUG_UART_BOARD_INIT
186void board_debug_uart_init(void)
187{
188 at91_seriald_hw_init();
189}
190#endif
191
192#ifdef CONFIG_BOARD_EARLY_INIT_F
Xu, Hong504e4e12011-06-10 21:31:26 +0000193int board_early_init_f(void)
194{
Wenyou Yang4a2c89a2017-04-18 15:31:02 +0800195#ifdef CONFIG_DEBUG_UART
196 debug_uart_init();
197#endif
Xu, Hong504e4e12011-06-10 21:31:26 +0000198 return 0;
199}
Wenyou Yang4a2c89a2017-04-18 15:31:02 +0800200#endif
Xu, Hong504e4e12011-06-10 21:31:26 +0000201
Stelian Pop69c925f2008-05-08 18:52:23 +0200202int board_init(void)
203{
Stelian Pop69c925f2008-05-08 18:52:23 +0200204 /* arch number of AT91SAM9263EK-Board */
205 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK;
206 /* adress of boot parameters */
Xu, Hong504e4e12011-06-10 21:31:26 +0000207 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop69c925f2008-05-08 18:52:23 +0200208
Stelian Pop69c925f2008-05-08 18:52:23 +0200209#ifdef CONFIG_CMD_NAND
210 at91sam9263ek_nand_hw_init();
211#endif
Stelian Pop69c925f2008-05-08 18:52:23 +0200212#ifdef CONFIG_USB_OHCI_NEW
Jean-Christophe PLAGNIOL-VILLARD4fc81fb2009-03-21 21:08:00 +0100213 at91_uhp_hw_init();
Stelian Pop69c925f2008-05-08 18:52:23 +0200214#endif
Stelian Pope068a9b2008-05-08 14:52:31 +0200215#ifdef CONFIG_LCD
216 at91sam9263ek_lcd_hw_init();
217#endif
Stelian Pop69c925f2008-05-08 18:52:23 +0200218 return 0;
219}
220
221int dram_init(void)
222{
Xu, Hong504e4e12011-06-10 21:31:26 +0000223 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
224 CONFIG_SYS_SDRAM_SIZE);
225
Stelian Pop69c925f2008-05-08 18:52:23 +0200226 return 0;
227}
228
229#ifdef CONFIG_RESET_PHY_R
230void reset_phy(void)
231{
Stelian Pop69c925f2008-05-08 18:52:23 +0200232}
233#endif