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 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | #include <common.h> |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 26 | #include <asm/io.h> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 27 | #include <asm/arch/at91sam9260_matrix.h> |
Stelian Pop | d57846e | 2008-05-08 22:52:10 +0200 | [diff] [blame] | 28 | #include <asm/arch/at91sam9_smc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6b0b3db | 2009-03-21 21:07:59 +0100 | [diff] [blame] | 29 | #include <asm/arch/at91_common.h> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 30 | #include <asm/arch/at91_pmc.h> |
| 31 | #include <asm/arch/at91_rstc.h> |
| 32 | #include <asm/arch/gpio.h> |
Wu, Josh | 1a500d6 | 2013-03-28 20:28:41 +0000 | [diff] [blame^] | 33 | #include <atmel_mci.h> |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 34 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 35 | #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB) |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 36 | # include <net.h> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 37 | #endif |
Ben Warren | 057d202 | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 38 | #include <netdev.h> |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 39 | |
| 40 | DECLARE_GLOBAL_DATA_PTR; |
| 41 | |
| 42 | /* ------------------------------------------------------------------------- */ |
| 43 | /* |
| 44 | * Miscelaneous platform dependent initialisations |
| 45 | */ |
| 46 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 47 | #ifdef CONFIG_CMD_NAND |
| 48 | static void at91sam9260ek_nand_hw_init(void) |
| 49 | { |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 50 | struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC; |
| 51 | struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX; |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 52 | unsigned long csa; |
| 53 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 54 | /* Assign CS3 to NAND/SmartMedia Interface */ |
| 55 | csa = readl(&matrix->ebicsa); |
| 56 | csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA; |
| 57 | writel(csa, &matrix->ebicsa); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 58 | |
| 59 | /* Configure SMC CS3 for NAND/SmartMedia */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 60 | writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) | |
| 61 | AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0), |
| 62 | &smc->cs[3].setup); |
| 63 | writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) | |
| 64 | AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3), |
| 65 | &smc->cs[3].pulse); |
| 66 | writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5), |
| 67 | &smc->cs[3].cycle); |
| 68 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 69 | AT91_SMC_MODE_EXNW_DISABLE | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 70 | #ifdef CONFIG_SYS_NAND_DBW_16 |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 71 | AT91_SMC_MODE_DBW_16 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 72 | #else /* CONFIG_SYS_NAND_DBW_8 */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 73 | AT91_SMC_MODE_DBW_8 | |
Stelian Pop | a35a4f8 | 2008-05-08 20:52:18 +0200 | [diff] [blame] | 74 | #endif |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 75 | AT91_SMC_MODE_TDF_CYCLE(2), |
| 76 | &smc->cs[3].mode); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 77 | |
| 78 | /* Configure RDY/BSY */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 79 | at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 80 | |
| 81 | /* Enable NandFlash */ |
Jean-Christophe PLAGNIOL-VILLARD | c9539ba | 2009-03-22 10:22:34 +0100 | [diff] [blame] | 82 | at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 83 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 84 | } |
| 85 | #endif |
| 86 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 87 | #ifdef CONFIG_MACB |
| 88 | static void at91sam9260ek_macb_hw_init(void) |
| 89 | { |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 90 | struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; |
| 91 | struct at91_port *pioa = (struct at91_port *)ATMEL_BASE_PIOA; |
| 92 | struct at91_rstc *rstc = (struct at91_rstc *)ATMEL_BASE_RSTC; |
| 93 | unsigned long erstl; |
Sedji Gaouaou | 419a581 | 2009-06-24 08:32:09 +0200 | [diff] [blame] | 94 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 95 | /* Enable EMAC clock */ |
| 96 | writel(1 << ATMEL_ID_EMAC0, &pmc->pcer); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 97 | |
| 98 | /* |
| 99 | * Disable pull-up on: |
| 100 | * RXDV (PA17) => PHY normal mode (not Test mode) |
Wolfgang Denk | a1be476 | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 101 | * ERX0 (PA14) => PHY ADDR0 |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 102 | * ERX1 (PA15) => PHY ADDR1 |
| 103 | * ERX2 (PA25) => PHY ADDR2 |
| 104 | * ERX3 (PA26) => PHY ADDR3 |
| 105 | * ECRS (PA28) => PHY ADDR4 => PHYADDR = 0x0 |
| 106 | * |
| 107 | * PHY has internal pull-down |
| 108 | */ |
| 109 | writel(pin_to_mask(AT91_PIN_PA14) | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 110 | pin_to_mask(AT91_PIN_PA15) | |
| 111 | pin_to_mask(AT91_PIN_PA17) | |
| 112 | pin_to_mask(AT91_PIN_PA25) | |
| 113 | pin_to_mask(AT91_PIN_PA26) | |
| 114 | pin_to_mask(AT91_PIN_PA28), |
| 115 | &pioa->pudr); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 116 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 117 | erstl = readl(&rstc->mr) & AT91_RSTC_MR_ERSTL_MASK; |
Sedji Gaouaou | 419a581 | 2009-06-24 08:32:09 +0200 | [diff] [blame] | 118 | |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 119 | /* Need to reset PHY -> 500ms reset */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 120 | writel(AT91_RSTC_KEY | AT91_RSTC_MR_ERSTL(13) | |
| 121 | AT91_RSTC_MR_URSTEN, &rstc->mr); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 122 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 123 | writel(AT91_RSTC_KEY | AT91_RSTC_CR_EXTRST, &rstc->cr); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 124 | |
| 125 | /* Wait for end hardware reset */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 126 | while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL)) |
| 127 | ; |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 128 | |
| 129 | /* Restore NRST value */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 130 | writel(AT91_RSTC_KEY | erstl | AT91_RSTC_MR_URSTEN, |
| 131 | &rstc->mr); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 132 | |
| 133 | /* Re-enable pull-up */ |
| 134 | writel(pin_to_mask(AT91_PIN_PA14) | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 135 | pin_to_mask(AT91_PIN_PA15) | |
| 136 | pin_to_mask(AT91_PIN_PA17) | |
| 137 | pin_to_mask(AT91_PIN_PA25) | |
| 138 | pin_to_mask(AT91_PIN_PA26) | |
| 139 | pin_to_mask(AT91_PIN_PA28), |
| 140 | &pioa->puer); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 141 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 142 | /* Initialize EMAC=MACB hardware */ |
Jean-Christophe PLAGNIOL-VILLARD | fafa923 | 2009-03-21 21:08:00 +0100 | [diff] [blame] | 143 | at91_macb_hw_init(); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 144 | } |
| 145 | #endif |
| 146 | |
Wu, Josh | 1a500d6 | 2013-03-28 20:28:41 +0000 | [diff] [blame^] | 147 | #ifdef CONFIG_GENERIC_ATMEL_MCI |
| 148 | int board_mmc_init(bd_t *bd) |
| 149 | { |
| 150 | at91_mci_hw_init(); |
| 151 | |
| 152 | return atmel_mci_init((void *)ATMEL_BASE_MCI); |
| 153 | } |
| 154 | #endif |
| 155 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 156 | int board_early_init_f(void) |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 157 | { |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 158 | struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; |
| 159 | |
| 160 | /* Enable clocks for all PIOs */ |
| 161 | writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) | |
| 162 | (1 << ATMEL_ID_PIOC), |
| 163 | &pmc->pcer); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 164 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | int board_init(void) |
| 169 | { |
Bo Shen | 76f8b8f | 2013-01-29 15:43:26 +0000 | [diff] [blame] | 170 | #ifdef CONFIG_AT91SAM9G20EK_2MMC |
| 171 | /* arch number of AT91SAM9G20EK_2MMC-Board */ |
| 172 | gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9G20EK_2MMC; |
| 173 | #else |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 174 | #ifdef CONFIG_AT91SAM9G20EK |
Bo Shen | 76f8b8f | 2013-01-29 15:43:26 +0000 | [diff] [blame] | 175 | /* arch number of AT91SAM9G20EK-Board */ |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 176 | gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9G20EK; |
| 177 | #else |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 178 | /* arch number of AT91SAM9260EK-Board */ |
| 179 | gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9260EK; |
Nicolas Ferre | 4ef545e | 2009-03-22 14:48:16 +0100 | [diff] [blame] | 180 | #endif |
Bo Shen | 76f8b8f | 2013-01-29 15:43:26 +0000 | [diff] [blame] | 181 | #endif |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 182 | /* adress of boot parameters */ |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 183 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 184 | |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 185 | at91_seriald_hw_init(); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 186 | #ifdef CONFIG_CMD_NAND |
| 187 | at91sam9260ek_nand_hw_init(); |
| 188 | #endif |
| 189 | #ifdef CONFIG_HAS_DATAFLASH |
Albin Tonnerre | acad29e | 2009-09-01 11:26:20 +0200 | [diff] [blame] | 190 | at91_spi0_hw_init((1 << 0) | (1 << 1)); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 191 | #endif |
| 192 | #ifdef CONFIG_MACB |
| 193 | at91sam9260ek_macb_hw_init(); |
| 194 | #endif |
| 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | int dram_init(void) |
| 200 | { |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 201 | gd->ram_size = get_ram_size( |
| 202 | (void *)CONFIG_SYS_SDRAM_BASE, |
| 203 | CONFIG_SYS_SDRAM_SIZE); |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 204 | return 0; |
| 205 | } |
| 206 | |
| 207 | #ifdef CONFIG_RESET_PHY_R |
| 208 | void reset_phy(void) |
| 209 | { |
Stelian Pop | 7837993 | 2008-03-26 18:52:33 +0100 | [diff] [blame] | 210 | } |
| 211 | #endif |
Ben Warren | 057d202 | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 212 | |
| 213 | int board_eth_init(bd_t *bis) |
| 214 | { |
| 215 | int rc = 0; |
| 216 | #ifdef CONFIG_MACB |
Reinhard Meyer | 0bda5f2 | 2011-06-06 00:13:10 +0000 | [diff] [blame] | 217 | rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC0, 0x00); |
Ben Warren | 057d202 | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 218 | #endif |
| 219 | return rc; |
| 220 | } |