blob: 0393307315766c2e96a489216196d40ee57b4f7a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stelian Pop2118ebb2008-05-08 18:52:25 +02002/*
3 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop2118ebb2008-05-08 18:52:25 +02005 * Lead Tech Design <www.leadtechdesign.com>
Stelian Pop2118ebb2008-05-08 18:52:25 +02006 */
7
8#include <common.h>
Wenyou Yang84a9b802017-04-18 15:28:29 +08009#include <debug_uart.h>
Xu, Hong21d671d2011-08-01 03:56:53 +000010#include <asm/io.h>
Simon Glassc62db352017-05-31 19:47:48 -060011#include <asm/mach-types.h>
Stelian Pop2118ebb2008-05-08 18:52:25 +020012#include <asm/arch/at91sam9rl.h>
13#include <asm/arch/at91sam9rl_matrix.h>
14#include <asm/arch/at91sam9_smc.h>
Jean-Christophe PLAGNIOL-VILLARD1332a2a2009-03-21 21:07:59 +010015#include <asm/arch/at91_common.h>
Stelian Pop2118ebb2008-05-08 18:52:25 +020016#include <asm/arch/at91_rstc.h>
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +020017#include <asm/arch/clk.h>
Stelian Pop2118ebb2008-05-08 18:52:25 +020018#include <asm/arch/gpio.h>
Xu, Hong21d671d2011-08-01 03:56:53 +000019
Stelian Pop761c70b2008-05-08 14:52:32 +020020#include <lcd.h>
21#include <atmel_lcdc.h>
Stelian Pop2118ebb2008-05-08 18:52:25 +020022
23DECLARE_GLOBAL_DATA_PTR;
24
25/* ------------------------------------------------------------------------- */
26/*
27 * Miscelaneous platform dependent initialisations
28 */
29
Stelian Pop2118ebb2008-05-08 18:52:25 +020030#ifdef CONFIG_CMD_NAND
31static void at91sam9rlek_nand_hw_init(void)
32{
Xu, Hong21d671d2011-08-01 03:56:53 +000033 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
34 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
Stelian Pop2118ebb2008-05-08 18:52:25 +020035 unsigned long csa;
36
37 /* Enable CS3 */
Xu, Hong21d671d2011-08-01 03:56:53 +000038 csa = readl(&matrix->ebicsa);
39 csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
40
41 writel(csa, &matrix->ebicsa);
Stelian Pop2118ebb2008-05-08 18:52:25 +020042
43 /* Configure SMC CS3 for NAND/SmartMedia */
Xu, Hong21d671d2011-08-01 03:56:53 +000044 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
45 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
46 &smc->cs[3].setup);
47 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
48 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
49 &smc->cs[3].pulse);
50 writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
51 &smc->cs[3].cycle);
52 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
53 AT91_SMC_MODE_EXNW_DISABLE |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054#ifdef CONFIG_SYS_NAND_DBW_16
Xu, Hong21d671d2011-08-01 03:56:53 +000055 AT91_SMC_MODE_DBW_16 |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020056#else /* CONFIG_SYS_NAND_DBW_8 */
Xu, Hong21d671d2011-08-01 03:56:53 +000057 AT91_SMC_MODE_DBW_8 |
Stelian Pop2118ebb2008-05-08 18:52:25 +020058#endif
Xu, Hong21d671d2011-08-01 03:56:53 +000059 AT91_SMC_MODE_TDF_CYCLE(2),
60 &smc->cs[3].mode);
Stelian Pop2118ebb2008-05-08 18:52:25 +020061
Wenyou Yang70341e22016-02-03 10:16:50 +080062 at91_periph_clk_enable(ATMEL_ID_PIOD);
Stelian Pop2118ebb2008-05-08 18:52:25 +020063
64 /* Configure RDY/BSY */
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010065 at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
Stelian Pop2118ebb2008-05-08 18:52:25 +020066
67 /* Enable NandFlash */
Jean-Christophe PLAGNIOL-VILLARD74c076d2009-03-22 10:22:34 +010068 at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Stelian Pop2118ebb2008-05-08 18:52:25 +020069
70 at91_set_A_periph(AT91_PIN_PB4, 0); /* NANDOE */
71 at91_set_A_periph(AT91_PIN_PB5, 0); /* NANDWE */
72}
73#endif
74
Stelian Pop761c70b2008-05-08 14:52:32 +020075#ifdef CONFIG_LCD
76vidinfo_t panel_info = {
Jeroen Hofsteec346e462014-06-10 00:16:23 +020077 .vl_col = 240,
78 .vl_row = 320,
79 .vl_clk = 4965000,
80 .vl_sync = ATMEL_LCDC_INVLINE_INVERTED |
81 ATMEL_LCDC_INVFRAME_INVERTED,
82 .vl_bpix = 3,
83 .vl_tft = 1,
84 .vl_hsync_len = 5,
85 .vl_left_margin = 1,
86 .vl_right_margin = 33,
87 .vl_vsync_len = 1,
88 .vl_upper_margin = 1,
89 .vl_lower_margin = 0,
90 .mmio = ATMEL_BASE_LCDC,
Stelian Pop761c70b2008-05-08 14:52:32 +020091};
92
93void lcd_enable(void)
94{
95 at91_set_gpio_value(AT91_PIN_PA30, 0); /* power up */
96}
97
98void lcd_disable(void)
99{
100 at91_set_gpio_value(AT91_PIN_PA30, 1); /* power down */
101}
102static void at91sam9rlek_lcd_hw_init(void)
103{
104 at91_set_B_periph(AT91_PIN_PC1, 0); /* LCDPWR */
105 at91_set_A_periph(AT91_PIN_PC5, 0); /* LCDHSYNC */
106 at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDDOTCK */
107 at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDDEN */
108 at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDCC */
109 at91_set_B_periph(AT91_PIN_PC9, 0); /* LCDD3 */
110 at91_set_B_periph(AT91_PIN_PC10, 0); /* LCDD4 */
111 at91_set_B_periph(AT91_PIN_PC11, 0); /* LCDD5 */
112 at91_set_B_periph(AT91_PIN_PC12, 0); /* LCDD6 */
113 at91_set_B_periph(AT91_PIN_PC13, 0); /* LCDD7 */
114 at91_set_B_periph(AT91_PIN_PC15, 0); /* LCDD11 */
115 at91_set_B_periph(AT91_PIN_PC16, 0); /* LCDD12 */
116 at91_set_B_periph(AT91_PIN_PC17, 0); /* LCDD13 */
117 at91_set_B_periph(AT91_PIN_PC18, 0); /* LCDD14 */
118 at91_set_B_periph(AT91_PIN_PC19, 0); /* LCDD15 */
119 at91_set_B_periph(AT91_PIN_PC20, 0); /* LCDD18 */
120 at91_set_B_periph(AT91_PIN_PC21, 0); /* LCDD19 */
121 at91_set_B_periph(AT91_PIN_PC22, 0); /* LCDD20 */
122 at91_set_B_periph(AT91_PIN_PC23, 0); /* LCDD21 */
123 at91_set_B_periph(AT91_PIN_PC24, 0); /* LCDD22 */
124 at91_set_B_periph(AT91_PIN_PC25, 0); /* LCDD23 */
125
Wenyou Yang70341e22016-02-03 10:16:50 +0800126 at91_periph_clk_enable(ATMEL_ID_LCDC);
Stelian Pop761c70b2008-05-08 14:52:32 +0200127}
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200128
129#ifdef CONFIG_LCD_INFO
130#include <nand.h>
131#include <version.h>
132
133void lcd_show_board_info(void)
134{
135 ulong dram_size, nand_size;
136 int i;
137 char temp[32];
138
139 lcd_printf ("%s\n", U_BOOT_VERSION);
140 lcd_printf ("(C) 2008 ATMEL Corp\n");
141 lcd_printf ("at91support@atmel.com\n");
142 lcd_printf ("%s CPU at %s MHz\n",
Xu, Hong21d671d2011-08-01 03:56:53 +0000143 ATMEL_CPU_NAME,
Jean-Christophe PLAGNIOL-VILLARDdc39ae92009-04-16 21:30:44 +0200144 strmhz(temp, get_cpu_clk_rate()));
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200145
146 dram_size = 0;
147 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
148 dram_size += gd->bd->bi_dram[i].size;
149 nand_size = 0;
150 for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
Grygorii Strashko31f8d392017-06-26 19:13:03 -0500151 nand_size += get_nand_dev_by_index(i)->size;
Haavard Skinnemoen6b59e032008-09-01 16:21:22 +0200152 lcd_printf (" %ld MB SDRAM, %ld MB NAND\n",
153 dram_size >> 20,
154 nand_size >> 20 );
155}
156#endif /* CONFIG_LCD_INFO */
Stelian Pop761c70b2008-05-08 14:52:32 +0200157#endif
158
Wenyou Yang84a9b802017-04-18 15:28:29 +0800159#ifdef CONFIG_DEBUG_UART_BOARD_INIT
160void board_debug_uart_init(void)
161{
162 at91_seriald_hw_init();
163}
164#endif
165
166#ifdef CONFIG_BOARD_EARLY_INIT_F
Xu, Hong21d671d2011-08-01 03:56:53 +0000167int board_early_init_f(void)
168{
Wenyou Yang84a9b802017-04-18 15:28:29 +0800169#ifdef CONFIG_DEBUG_UART
170 debug_uart_init();
171#endif
Xu, Hong21d671d2011-08-01 03:56:53 +0000172 return 0;
173}
Wenyou Yang84a9b802017-04-18 15:28:29 +0800174#endif
Stelian Pop761c70b2008-05-08 14:52:32 +0200175
Stelian Pop2118ebb2008-05-08 18:52:25 +0200176int board_init(void)
177{
Stelian Pop2118ebb2008-05-08 18:52:25 +0200178 /* arch number of AT91SAM9RLEK-Board */
179 gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9RLEK;
180 /* adress of boot parameters */
Xu, Hong21d671d2011-08-01 03:56:53 +0000181 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Stelian Pop2118ebb2008-05-08 18:52:25 +0200182
Stelian Pop2118ebb2008-05-08 18:52:25 +0200183#ifdef CONFIG_CMD_NAND
184 at91sam9rlek_nand_hw_init();
185#endif
Stelian Pop761c70b2008-05-08 14:52:32 +0200186#ifdef CONFIG_LCD
187 at91sam9rlek_lcd_hw_init();
188#endif
Stelian Pop2118ebb2008-05-08 18:52:25 +0200189 return 0;
190}
191
192int dram_init(void)
193{
Xu, Hong21d671d2011-08-01 03:56:53 +0000194 gd->ram_size = get_ram_size(
195 (void *)CONFIG_SYS_SDRAM_BASE,
196 CONFIG_SYS_SDRAM_SIZE);
Stelian Pop2118ebb2008-05-08 18:52:25 +0200197 return 0;
198}