Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
Stelian Pop | 5ee0c7f | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 3 | * Stelian Pop <stelian@popies.net> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 4 | * Lead Tech Design <www.leadtechdesign.com> |
| 5 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Wenyou Yang | de56d37 | 2017-04-18 15:18:49 +0800 | [diff] [blame] | 10 | #include <debug_uart.h> |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 11 | #include <asm/io.h> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 12 | #include <asm/arch/at91sam9260_matrix.h> |
Stelian Pop | d57846e | 2008-05-08 22:52:10 +0200 | [diff] [blame] | 13 | #include <asm/arch/at91sam9_smc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6b0b3db | 2009-03-21 21:07:59 +0100 | [diff] [blame] | 14 | #include <asm/arch/at91_common.h> |
Wenyou Yang | 78f8976 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 15 | #include <asm/arch/clk.h> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 16 | #include <asm/arch/gpio.h> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 17 | |
| 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
| 20 | /* ------------------------------------------------------------------------- */ |
| 21 | /* |
| 22 | * Miscelaneous platform dependent initialisations |
| 23 | */ |
| 24 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 25 | #ifdef CONFIG_CMD_NAND |
| 26 | static void at91sam9260ek_nand_hw_init(void) |
| 27 | { |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 28 | struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC; |
| 29 | struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX; |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 30 | unsigned long csa; |
| 31 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 32 | /* Assign CS3 to NAND/SmartMedia Interface */ |
| 33 | csa = readl(&matrix->ebicsa); |
| 34 | csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA; |
| 35 | writel(csa, &matrix->ebicsa); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 36 | |
| 37 | /* Configure SMC CS3 for NAND/SmartMedia */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 38 | writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) | |
| 39 | AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0), |
| 40 | &smc->cs[3].setup); |
| 41 | writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) | |
| 42 | AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3), |
| 43 | &smc->cs[3].pulse); |
| 44 | writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5), |
| 45 | &smc->cs[3].cycle); |
| 46 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 47 | AT91_SMC_MODE_EXNW_DISABLE | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 48 | #ifdef CONFIG_SYS_NAND_DBW_16 |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 49 | AT91_SMC_MODE_DBW_16 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | #else /* CONFIG_SYS_NAND_DBW_8 */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 51 | AT91_SMC_MODE_DBW_8 | |
Stelian Pop | a35a4f8 | 2008-05-08 20:52:18 +0200 | [diff] [blame] | 52 | #endif |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 53 | AT91_SMC_MODE_TDF_CYCLE(2), |
| 54 | &smc->cs[3].mode); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 55 | |
| 56 | /* Configure RDY/BSY */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 57 | at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 58 | |
| 59 | /* Enable NandFlash */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 60 | at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 61 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 62 | } |
| 63 | #endif |
| 64 | |
Wenyou Yang | de56d37 | 2017-04-18 15:18:49 +0800 | [diff] [blame] | 65 | #ifdef CONFIG_DEBUG_UART_BOARD_INIT |
| 66 | void board_debug_uart_init(void) |
| 67 | { |
| 68 | at91_seriald_hw_init(); |
| 69 | } |
| 70 | #endif |
| 71 | |
| 72 | #ifdef CONFIG_BOARD_EARLY_INIT_F |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 73 | int board_early_init_f(void) |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 74 | { |
Wenyou Yang | de56d37 | 2017-04-18 15:18:49 +0800 | [diff] [blame] | 75 | #ifdef CONFIG_DEBUG_UART |
| 76 | debug_uart_init(); |
| 77 | #endif |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 78 | return 0; |
| 79 | } |
Wenyou Yang | de56d37 | 2017-04-18 15:18:49 +0800 | [diff] [blame] | 80 | #endif |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 81 | |
| 82 | int board_init(void) |
| 83 | { |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 84 | /* adress of boot parameters */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 85 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 86 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 87 | #ifdef CONFIG_CMD_NAND |
| 88 | at91sam9260ek_nand_hw_init(); |
| 89 | #endif |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | int dram_init(void) |
| 94 | { |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 95 | gd->ram_size = get_ram_size( |
| 96 | (void *)CONFIG_SYS_SDRAM_BASE, |
| 97 | CONFIG_SYS_SDRAM_SIZE); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 98 | return 0; |
| 99 | } |
| 100 | |
| 101 | #ifdef CONFIG_RESET_PHY_R |
| 102 | void reset_phy(void) |
| 103 | { |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 104 | } |
| 105 | #endif |