blob: 3de978311de4502e4e599dcad882f0bc552d5d9d [file] [log] [blame]
Stelian Pop8e429b32008-05-08 18:52:23 +02001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Stelian Pop8e429b32008-05-08 18:52:23 +02004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stelian Pop8e429b32008-05-08 18:52:23 +02007 */
8
9#include <common.h>
Wenyou Yangeaa59b32017-04-18 15:31:02 +080010#include <debug_uart.h>
Alexey Brodkin1ace4022014-02-26 17:47:58 +040011#include <linux/sizes.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020012#include <asm/arch/at91sam9263.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020013#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD1332a2a2009-03-21 21:07:59 +010014#include <asm/arch/at91_common.h>
Jens Scharsig1b34f002010-02-03 22:47:18 +010015#include <asm/arch/at91_matrix.h>
16#include <asm/arch/at91_pio.h>
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +020017#include <asm/arch/clk.h>
Xu, Hongcd46b0f2011-06-10 21:31:26 +000018#include <asm/io.h>
19#include <asm/arch/gpio.h>
Ben Warren3ae071e2008-08-12 22:11:53 -070020#include <asm/arch/hardware.h>
Stelian Pop56a24792008-05-08 14:52:31 +020021#include <lcd.h>
22#include <atmel_lcdc.h>
Stelian Pop8e429b32008-05-08 18:52:23 +020023
24DECLARE_GLOBAL_DATA_PTR;
25
26/* ------------------------------------------------------------------------- */
27/*
28 * Miscelaneous platform dependent initialisations
29 */
30
Stelian Pop8e429b32008-05-08 18:52:23 +020031#ifdef CONFIG_CMD_NAND
32static void at91sam9263ek_nand_hw_init(void)
33{
34 unsigned long csa;
Xu, Hongcd46b0f2011-06-10 21:31:26 +000035 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
36 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
Stelian Pop8e429b32008-05-08 18:52:23 +020037
38 /* Enable CS3 */
Jens Scharsig1b34f002010-02-03 22:47:18 +010039 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
40 writel(csa, &matrix->csa[0]);
41
42 /* Enable CS3 */
Stelian Pop8e429b32008-05-08 18:52:23 +020043
44 /* Configure SMC CS3 for NAND/SmartMedia */
Jens Scharsig1b34f002010-02-03 22:47:18 +010045 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
46 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
47 &smc->cs[3].setup);
Stelian Pop8e429b32008-05-08 18:52:23 +020048
Jens Scharsig1b34f002010-02-03 22:47:18 +010049 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
50 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
51 &smc->cs[3].pulse);
52
53 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
54 &smc->cs[3].cycle);
55 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
56 AT91_SMC_MODE_EXNW_DISABLE |
57#ifdef CONFIG_SYS_NAND_DBW_16
58 AT91_SMC_MODE_DBW_16 |
59#else /* CONFIG_SYS_NAND_DBW_8 */
60 AT91_SMC_MODE_DBW_8 |
61#endif
62 AT91_SMC_MODE_TDF_CYCLE(2),
63 &smc->cs[3].mode);
64
Wenyou Yang70341e22016-02-03 10:16:50 +080065 at91_periph_clk_enable(ATMEL_ID_PIOA);
66 at91_periph_clk_enable(ATMEL_ID_PIOCDE);
Stelian Pop8e429b32008-05-08 18:52:23 +020067
68 /* Configure RDY/BSY */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000069 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020070
71 /* Enable NandFlash */
Xu, Hongcd46b0f2011-06-10 21:31:26 +000072 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop8e429b32008-05-08 18:52:23 +020073}
74#endif
75
Stelian Pop56a24792008-05-08 14:52:31 +020076#ifdef CONFIG_LCD
77vidinfo_t panel_info = {
Jeroen Hofsteec346e462014-06-10 00:16:23 +020078 .vl_col = 240,
79 .vl_row = 320,
80 .vl_clk = 4965000,
81 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
82 ATMEL_LCDC_INVFRAME_INVERTED,
83 .vl_bpix = 3,
84 .vl_tft = 1,
85 .vl_hsync_len = 5,
86 .vl_left_margin = 1,
87 .vl_right_margin = 33,
88 .vl_vsync_len = 1,
89 .vl_upper_margin = 1,
90 .vl_lower_margin = 0,
91 .mmio = ATMEL_BASE_LCDC,
Stelian Pop56a24792008-05-08 14:52:31 +020092};
93
94void lcd_enable(void)
95{
Jens Scharsig1b34f002010-02-03 22:47:18 +010096 at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */
Stelian Pop56a24792008-05-08 14:52:31 +020097}
98
99void lcd_disable(void)
100{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100101 at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */
Stelian Pop56a24792008-05-08 14:52:31 +0200102}
103
104static void at91sam9263ek_lcd_hw_init(void)
105{
Jens Scharsig1b34f002010-02-03 22:47:18 +0100106 at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */
107 at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */
108 at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */
109 at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */
110 at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */
111 at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */
112 at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */
113 at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */
114 at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */
115 at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */
116 at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */
117 at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */
118 at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */
119 at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */
120 at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */
121 at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */
122 at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */
123 at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */
124 at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */
125 at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */
126 at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */
127 at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */
Stelian Pop56a24792008-05-08 14:52:31 +0200128
Wenyou Yang70341e22016-02-03 10:16:50 +0800129 at91_periph_clk_enable(ATMEL_ID_LCDC);
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000130 gd->fb_base = ATMEL_BASE_SRAM0;
Stelian Pop56a24792008-05-08 14:52:31 +0200131}
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200132
133#ifdef CONFIG_LCD_INFO
134#include <nand.h>
135#include <version.h>
136
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900137#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200138extern flash_info_t flash_info[];
139#endif
140
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200141void lcd_show_board_info(void)
142{
143 ulong dram_size, nand_size;
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900144#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200145 ulong flash_size;
146#endif
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200147 int i;
148 char temp[32];
149
150 lcd_printf ("%s\n", U_BOOT_VERSION);
151 lcd_printf ("(C) 2008 ATMEL Corp\n");
152 lcd_printf ("at91support@atmel.com\n");
153 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000154 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +0200155 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200156
157 dram_size = 0;
158 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
159 dram_size += gd->bd->bi_dram[i].size;
160 nand_size = 0;
161 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Scott Woodb616d9b2016-05-30 13:57:55 -0500162 nand_size += nand_info[i]->size;
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900163#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200164 flash_size = 0;
165 for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)
166 flash_size += flash_info[i].size;
167#endif
168 lcd_printf (" %ld MB SDRAM, %ld MB NAND",
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200169 dram_size >> 20,
170 nand_size >> 20 );
Masahiro Yamadae856bdc2017-02-11 22:43:54 +0900171#ifdef CONFIG_MTD_NOR_FLASH
Jean-Christophe PLAGNIOL-VILLARD1b3b7c62009-06-13 12:48:36 +0200172 lcd_printf (",\n %ld MB NOR",
173 flash_size >> 20);
174#endif
175 lcd_puts ("\n");
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200176}
177#endif /* CONFIG_LCD_INFO */
Stelian Pop56a24792008-05-08 14:52:31 +0200178#endif
179
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800180#ifdef CONFIG_DEBUG_UART_BOARD_INIT
181void board_debug_uart_init(void)
182{
183 at91_seriald_hw_init();
184}
185#endif
186
187#ifdef CONFIG_BOARD_EARLY_INIT_F
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000188int board_early_init_f(void)
189{
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800190#ifdef CONFIG_DEBUG_UART
191 debug_uart_init();
192#endif
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000193 return 0;
194}
Wenyou Yangeaa59b32017-04-18 15:31:02 +0800195#endif
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000196
Stelian Pop8e429b32008-05-08 18:52:23 +0200197int board_init(void)
198{
Stelian Pop8e429b32008-05-08 18:52:23 +0200199 /* arch number of AT91SAM9263EK-Board */
200 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK;
201 /* adress of boot parameters */
Xu, Hongcd46b0f2011-06-10 21:31:26 +0000202 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop8e429b32008-05-08 18:52:23 +0200203
Stelian Pop8e429b32008-05-08 18:52:23 +0200204#ifdef CONFIG_CMD_NAND
205 at91sam9263ek_nand_hw_init();
206#endif
207#ifdef CONFIG_HAS_DATAFLASH
Jens Scharsig1b34f002010-02-03 22:47:18 +0100208 at91_set_pio_output(AT91_PIO_PORTE, 20, 1); /* select spi0 clock */
Jean-Christophe PLAGNIOL-VILLARD7ebafb72009-03-21 21:07:59 +0100209 at91_spi0_hw_init(1 << 0);
Stelian Pop8e429b32008-05-08 18:52:23 +0200210#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