Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
Stelian Pop | c9e798d | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 3 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 4 | * Lead Tech Design <www.leadtechdesign.com> |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Wenyou Yang | eaa59b3 | 2017-04-18 15:31:02 +0800 | [diff] [blame] | 10 | #include <debug_uart.h> |
Alexey Brodkin | 1ace402 | 2014-02-26 17:47:58 +0400 | [diff] [blame] | 11 | #include <linux/sizes.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 12 | #include <asm/arch/at91sam9263.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 13 | #include <asm/arch/at91sam9_smc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 1332a2a | 2009-03-21 21:07:59 +0100 | [diff] [blame] | 14 | #include <asm/arch/at91_common.h> |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 15 | #include <asm/arch/at91_matrix.h> |
| 16 | #include <asm/arch/at91_pio.h> |
Jean-Christophe PLAGNIOL-VILLARD | dc39ae9 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 17 | #include <asm/arch/clk.h> |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 18 | #include <asm/io.h> |
| 19 | #include <asm/arch/gpio.h> |
Ben Warren | 3ae071e | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 20 | #include <asm/arch/hardware.h> |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 21 | #include <lcd.h> |
| 22 | #include <atmel_lcdc.h> |
Simon Glass | c62db35 | 2017-05-31 19:47:48 -0600 | [diff] [blame^] | 23 | #include <asm/mach-types.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
| 27 | /* ------------------------------------------------------------------------- */ |
| 28 | /* |
| 29 | * Miscelaneous platform dependent initialisations |
| 30 | */ |
| 31 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 32 | #ifdef CONFIG_CMD_NAND |
| 33 | static void at91sam9263ek_nand_hw_init(void) |
| 34 | { |
| 35 | unsigned long csa; |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 36 | at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0; |
| 37 | at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX; |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 38 | |
| 39 | /* Enable CS3 */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 40 | csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A; |
| 41 | writel(csa, &matrix->csa[0]); |
| 42 | |
| 43 | /* Enable CS3 */ |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 44 | |
| 45 | /* Configure SMC CS3 for NAND/SmartMedia */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 46 | writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) | |
| 47 | AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0), |
| 48 | &smc->cs[3].setup); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 49 | |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 50 | writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) | |
| 51 | AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3), |
| 52 | &smc->cs[3].pulse); |
| 53 | |
| 54 | writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5), |
| 55 | &smc->cs[3].cycle); |
| 56 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 57 | AT91_SMC_MODE_EXNW_DISABLE | |
| 58 | #ifdef CONFIG_SYS_NAND_DBW_16 |
| 59 | AT91_SMC_MODE_DBW_16 | |
| 60 | #else /* CONFIG_SYS_NAND_DBW_8 */ |
| 61 | AT91_SMC_MODE_DBW_8 | |
| 62 | #endif |
| 63 | AT91_SMC_MODE_TDF_CYCLE(2), |
| 64 | &smc->cs[3].mode); |
| 65 | |
Wenyou Yang | 70341e2 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 66 | at91_periph_clk_enable(ATMEL_ID_PIOA); |
| 67 | at91_periph_clk_enable(ATMEL_ID_PIOCDE); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 68 | |
| 69 | /* Configure RDY/BSY */ |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 70 | at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 71 | |
| 72 | /* Enable NandFlash */ |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 73 | at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 74 | } |
| 75 | #endif |
| 76 | |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 77 | #ifdef CONFIG_LCD |
| 78 | vidinfo_t panel_info = { |
Jeroen Hofstee | c346e46 | 2014-06-10 00:16:23 +0200 | [diff] [blame] | 79 | .vl_col = 240, |
| 80 | .vl_row = 320, |
| 81 | .vl_clk = 4965000, |
| 82 | .vl_sync = ATMEL_LCDC_INVLINE_INVERTED | |
| 83 | ATMEL_LCDC_INVFRAME_INVERTED, |
| 84 | .vl_bpix = 3, |
| 85 | .vl_tft = 1, |
| 86 | .vl_hsync_len = 5, |
| 87 | .vl_left_margin = 1, |
| 88 | .vl_right_margin = 33, |
| 89 | .vl_vsync_len = 1, |
| 90 | .vl_upper_margin = 1, |
| 91 | .vl_lower_margin = 0, |
| 92 | .mmio = ATMEL_BASE_LCDC, |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | void lcd_enable(void) |
| 96 | { |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 97 | at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void lcd_disable(void) |
| 101 | { |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 102 | at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | static void at91sam9263ek_lcd_hw_init(void) |
| 106 | { |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 107 | at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */ |
| 108 | at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */ |
| 109 | at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */ |
| 110 | at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */ |
| 111 | at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */ |
| 112 | at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */ |
| 113 | at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */ |
| 114 | at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */ |
| 115 | at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */ |
| 116 | at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */ |
| 117 | at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */ |
| 118 | at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */ |
| 119 | at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */ |
| 120 | at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */ |
| 121 | at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */ |
| 122 | at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */ |
| 123 | at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */ |
| 124 | at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */ |
| 125 | at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */ |
| 126 | at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */ |
| 127 | at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */ |
| 128 | at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 129 | |
Wenyou Yang | 70341e2 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 130 | at91_periph_clk_enable(ATMEL_ID_LCDC); |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 131 | gd->fb_base = ATMEL_BASE_SRAM0; |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 132 | } |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 133 | |
| 134 | #ifdef CONFIG_LCD_INFO |
| 135 | #include <nand.h> |
| 136 | #include <version.h> |
| 137 | |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 138 | #ifdef CONFIG_MTD_NOR_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 139 | extern flash_info_t flash_info[]; |
| 140 | #endif |
| 141 | |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 142 | void lcd_show_board_info(void) |
| 143 | { |
| 144 | ulong dram_size, nand_size; |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 145 | #ifdef CONFIG_MTD_NOR_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 146 | ulong flash_size; |
| 147 | #endif |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 148 | int i; |
| 149 | char temp[32]; |
| 150 | |
| 151 | lcd_printf ("%s\n", U_BOOT_VERSION); |
| 152 | lcd_printf ("(C) 2008 ATMEL Corp\n"); |
| 153 | lcd_printf ("at91support@atmel.com\n"); |
| 154 | lcd_printf ("%s CPU at %s MHz\n", |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 155 | ATMEL_CPU_NAME, |
Jean-Christophe PLAGNIOL-VILLARD | dc39ae9 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 156 | strmhz(temp, get_cpu_clk_rate())); |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 157 | |
| 158 | dram_size = 0; |
| 159 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) |
| 160 | dram_size += gd->bd->bi_dram[i].size; |
| 161 | nand_size = 0; |
| 162 | for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) |
Scott Wood | b616d9b | 2016-05-30 13:57:55 -0500 | [diff] [blame] | 163 | nand_size += nand_info[i]->size; |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 164 | #ifdef CONFIG_MTD_NOR_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 165 | flash_size = 0; |
| 166 | for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) |
| 167 | flash_size += flash_info[i].size; |
| 168 | #endif |
| 169 | lcd_printf (" %ld MB SDRAM, %ld MB NAND", |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 170 | dram_size >> 20, |
| 171 | nand_size >> 20 ); |
Masahiro Yamada | e856bdc | 2017-02-11 22:43:54 +0900 | [diff] [blame] | 172 | #ifdef CONFIG_MTD_NOR_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 173 | lcd_printf (",\n %ld MB NOR", |
| 174 | flash_size >> 20); |
| 175 | #endif |
| 176 | lcd_puts ("\n"); |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 177 | } |
| 178 | #endif /* CONFIG_LCD_INFO */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 179 | #endif |
| 180 | |
Wenyou Yang | eaa59b3 | 2017-04-18 15:31:02 +0800 | [diff] [blame] | 181 | #ifdef CONFIG_DEBUG_UART_BOARD_INIT |
| 182 | void board_debug_uart_init(void) |
| 183 | { |
| 184 | at91_seriald_hw_init(); |
| 185 | } |
| 186 | #endif |
| 187 | |
| 188 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 189 | int board_early_init_f(void) |
| 190 | { |
Wenyou Yang | eaa59b3 | 2017-04-18 15:31:02 +0800 | [diff] [blame] | 191 | #ifdef CONFIG_DEBUG_UART |
| 192 | debug_uart_init(); |
| 193 | #endif |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 194 | return 0; |
| 195 | } |
Wenyou Yang | eaa59b3 | 2017-04-18 15:31:02 +0800 | [diff] [blame] | 196 | #endif |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 197 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 198 | int board_init(void) |
| 199 | { |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 200 | /* arch number of AT91SAM9263EK-Board */ |
| 201 | gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK; |
| 202 | /* adress of boot parameters */ |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 203 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 204 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 205 | #ifdef CONFIG_CMD_NAND |
| 206 | at91sam9263ek_nand_hw_init(); |
| 207 | #endif |
| 208 | #ifdef CONFIG_HAS_DATAFLASH |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 209 | at91_set_pio_output(AT91_PIO_PORTE, 20, 1); /* select spi0 clock */ |
Jean-Christophe PLAGNIOL-VILLARD | 7ebafb7 | 2009-03-21 21:07:59 +0100 | [diff] [blame] | 210 | at91_spi0_hw_init(1 << 0); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 211 | #endif |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 212 | #ifdef CONFIG_USB_OHCI_NEW |
Jean-Christophe PLAGNIOL-VILLARD | f3f91f8 | 2009-03-21 21:08:00 +0100 | [diff] [blame] | 213 | at91_uhp_hw_init(); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 214 | #endif |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 215 | #ifdef CONFIG_LCD |
| 216 | at91sam9263ek_lcd_hw_init(); |
| 217 | #endif |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | int dram_init(void) |
| 222 | { |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 223 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
| 224 | CONFIG_SYS_SDRAM_SIZE); |
| 225 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | #ifdef CONFIG_RESET_PHY_R |
| 230 | void reset_phy(void) |
| 231 | { |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 232 | } |
| 233 | #endif |