Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
| 3 | * Stelian Pop <stelian.pop@leadtechdesign.com> |
| 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> |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 26 | #include <asm/sizes.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 27 | #include <asm/arch/at91sam9263.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 28 | #include <asm/arch/at91sam9_smc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 1332a2a | 2009-03-21 21:07:59 +0100 | [diff] [blame] | 29 | #include <asm/arch/at91_common.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 30 | #include <asm/arch/at91_pmc.h> |
| 31 | #include <asm/arch/at91_rstc.h> |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 32 | #include <asm/arch/at91_matrix.h> |
| 33 | #include <asm/arch/at91_pio.h> |
Jean-Christophe PLAGNIOL-VILLARD | dc39ae9 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 34 | #include <asm/arch/clk.h> |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 35 | #include <asm/io.h> |
| 36 | #include <asm/arch/gpio.h> |
Ben Warren | 3ae071e | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 37 | #include <asm/arch/hardware.h> |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 38 | #include <lcd.h> |
| 39 | #include <atmel_lcdc.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 40 | #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB) |
| 41 | #include <net.h> |
| 42 | #endif |
Ben Warren | 3ae071e | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 43 | #include <netdev.h> |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 44 | |
| 45 | DECLARE_GLOBAL_DATA_PTR; |
| 46 | |
| 47 | /* ------------------------------------------------------------------------- */ |
| 48 | /* |
| 49 | * Miscelaneous platform dependent initialisations |
| 50 | */ |
| 51 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 52 | #ifdef CONFIG_CMD_NAND |
| 53 | static void at91sam9263ek_nand_hw_init(void) |
| 54 | { |
| 55 | unsigned long csa; |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 56 | at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0; |
| 57 | at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX; |
| 58 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 59 | |
| 60 | /* Enable CS3 */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 61 | csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A; |
| 62 | writel(csa, &matrix->csa[0]); |
| 63 | |
| 64 | /* Enable CS3 */ |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 65 | |
| 66 | /* Configure SMC CS3 for NAND/SmartMedia */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 67 | writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) | |
| 68 | AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0), |
| 69 | &smc->cs[3].setup); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 70 | |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 71 | writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) | |
| 72 | AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3), |
| 73 | &smc->cs[3].pulse); |
| 74 | |
| 75 | writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5), |
| 76 | &smc->cs[3].cycle); |
| 77 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE | |
| 78 | AT91_SMC_MODE_EXNW_DISABLE | |
| 79 | #ifdef CONFIG_SYS_NAND_DBW_16 |
| 80 | AT91_SMC_MODE_DBW_16 | |
| 81 | #else /* CONFIG_SYS_NAND_DBW_8 */ |
| 82 | AT91_SMC_MODE_DBW_8 | |
| 83 | #endif |
| 84 | AT91_SMC_MODE_TDF_CYCLE(2), |
| 85 | &smc->cs[3].mode); |
| 86 | |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 87 | writel(1 << ATMEL_ID_PIOA | 1 << ATMEL_ID_PIOCDE, |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 88 | &pmc->pcer); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 89 | |
| 90 | /* Configure RDY/BSY */ |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 91 | at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 92 | |
| 93 | /* Enable NandFlash */ |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 94 | at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 95 | } |
| 96 | #endif |
| 97 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 98 | #ifdef CONFIG_MACB |
| 99 | static void at91sam9263ek_macb_hw_init(void) |
| 100 | { |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 101 | unsigned long erstl; |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 102 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
| 103 | at91_pio_t *pio = (at91_pio_t *) ATMEL_BASE_PIO; |
| 104 | at91_rstc_t *rstc = (at91_rstc_t *) ATMEL_BASE_RSTC; |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 105 | /* Enable clock */ |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 106 | writel(1 << ATMEL_ID_EMAC, &pmc->pcer); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 107 | |
| 108 | /* |
| 109 | * Disable pull-up on: |
| 110 | * RXDV (PC25) => PHY normal mode (not Test mode) |
| 111 | * ERX0 (PE25) => PHY ADDR0 |
| 112 | * ERX1 (PE26) => PHY ADDR1 => PHYADDR = 0x0 |
| 113 | * |
| 114 | * PHY has internal pull-down |
| 115 | */ |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 116 | |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 117 | writel(1 << 25, &pio->pioc.pudr); |
| 118 | writel((1 << 25) | (1 <<26), &pio->pioe.pudr); |
| 119 | |
| 120 | erstl = readl(&rstc->mr) & AT91_RSTC_MR_ERSTL_MASK; |
Sedji Gaouaou | 0aafde1 | 2009-06-24 08:32:09 +0200 | [diff] [blame] | 121 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 122 | /* Need to reset PHY -> 500ms reset */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 123 | writel(AT91_RSTC_KEY | AT91_RSTC_MR_ERSTL(0x0D) | |
| 124 | AT91_RSTC_MR_URSTEN, &rstc->mr); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 125 | |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 126 | writel(AT91_RSTC_KEY | AT91_RSTC_CR_EXTRST, &rstc->cr); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 127 | /* Wait for end hardware reset */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 128 | while (!(readl(&rstc->sr) & AT91_RSTC_SR_NRSTL)) |
| 129 | ; |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 130 | |
Stelian Pop | 19bd688 | 2008-05-22 00:15:40 +0200 | [diff] [blame] | 131 | /* Restore NRST value */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 132 | writel(AT91_RSTC_KEY | erstl | AT91_RSTC_MR_URSTEN, &rstc->mr); |
Stelian Pop | 19bd688 | 2008-05-22 00:15:40 +0200 | [diff] [blame] | 133 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 134 | /* Re-enable pull-up */ |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 135 | writel(1 << 25, &pio->pioc.puer); |
| 136 | writel((1 << 25) | (1 <<26), &pio->pioe.puer); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 137 | |
Jean-Christophe PLAGNIOL-VILLARD | e2c0476 | 2009-03-21 21:08:00 +0100 | [diff] [blame] | 138 | at91_macb_hw_init(); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 139 | } |
| 140 | #endif |
| 141 | |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 142 | #ifdef CONFIG_LCD |
| 143 | vidinfo_t panel_info = { |
| 144 | vl_col: 240, |
| 145 | vl_row: 320, |
| 146 | vl_clk: 4965000, |
| 147 | vl_sync: ATMEL_LCDC_INVLINE_INVERTED | |
| 148 | ATMEL_LCDC_INVFRAME_INVERTED, |
| 149 | vl_bpix: 3, |
| 150 | vl_tft: 1, |
| 151 | vl_hsync_len: 5, |
| 152 | vl_left_margin: 1, |
| 153 | vl_right_margin:33, |
| 154 | vl_vsync_len: 1, |
| 155 | vl_upper_margin:1, |
| 156 | vl_lower_margin:0, |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 157 | mmio: ATMEL_BASE_LCDC, |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 158 | }; |
| 159 | |
| 160 | void lcd_enable(void) |
| 161 | { |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 162 | at91_set_pio_value(AT91_PIO_PORTA, 30, 1); /* power up */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | void lcd_disable(void) |
| 166 | { |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 167 | at91_set_pio_value(AT91_PIO_PORTA, 30, 0); /* power down */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static void at91sam9263ek_lcd_hw_init(void) |
| 171 | { |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 172 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 173 | |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 174 | at91_set_a_periph(AT91_PIO_PORTC, 1, 0); /* LCDHSYNC */ |
| 175 | at91_set_a_periph(AT91_PIO_PORTC, 2, 0); /* LCDDOTCK */ |
| 176 | at91_set_a_periph(AT91_PIO_PORTC, 3, 0); /* LCDDEN */ |
| 177 | at91_set_b_periph(AT91_PIO_PORTB, 9, 0); /* LCDCC */ |
| 178 | at91_set_a_periph(AT91_PIO_PORTC, 6, 0); /* LCDD2 */ |
| 179 | at91_set_a_periph(AT91_PIO_PORTC, 7, 0); /* LCDD3 */ |
| 180 | at91_set_a_periph(AT91_PIO_PORTC, 8, 0); /* LCDD4 */ |
| 181 | at91_set_a_periph(AT91_PIO_PORTC, 9, 0); /* LCDD5 */ |
| 182 | at91_set_a_periph(AT91_PIO_PORTC, 10, 0); /* LCDD6 */ |
| 183 | at91_set_a_periph(AT91_PIO_PORTC, 11, 0); /* LCDD7 */ |
| 184 | at91_set_a_periph(AT91_PIO_PORTC, 14, 0); /* LCDD10 */ |
| 185 | at91_set_a_periph(AT91_PIO_PORTC, 15, 0); /* LCDD11 */ |
| 186 | at91_set_a_periph(AT91_PIO_PORTC, 16, 0); /* LCDD12 */ |
| 187 | at91_set_b_periph(AT91_PIO_PORTC, 12, 0); /* LCDD13 */ |
| 188 | at91_set_a_periph(AT91_PIO_PORTC, 18, 0); /* LCDD14 */ |
| 189 | at91_set_a_periph(AT91_PIO_PORTC, 19, 0); /* LCDD15 */ |
| 190 | at91_set_a_periph(AT91_PIO_PORTC, 22, 0); /* LCDD18 */ |
| 191 | at91_set_a_periph(AT91_PIO_PORTC, 23, 0); /* LCDD19 */ |
| 192 | at91_set_a_periph(AT91_PIO_PORTC, 24, 0); /* LCDD20 */ |
| 193 | at91_set_b_periph(AT91_PIO_PORTC, 17, 0); /* LCDD21 */ |
| 194 | at91_set_a_periph(AT91_PIO_PORTC, 26, 0); /* LCDD22 */ |
| 195 | at91_set_a_periph(AT91_PIO_PORTC, 27, 0); /* LCDD23 */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 196 | |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 197 | writel(1 << ATMEL_ID_LCDC, &pmc->pcer); |
| 198 | gd->fb_base = ATMEL_BASE_SRAM0; |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 199 | } |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 200 | |
| 201 | #ifdef CONFIG_LCD_INFO |
| 202 | #include <nand.h> |
| 203 | #include <version.h> |
| 204 | |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 205 | #ifndef CONFIG_SYS_NO_FLASH |
| 206 | extern flash_info_t flash_info[]; |
| 207 | #endif |
| 208 | |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 209 | void lcd_show_board_info(void) |
| 210 | { |
| 211 | ulong dram_size, nand_size; |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 212 | #ifndef CONFIG_SYS_NO_FLASH |
| 213 | ulong flash_size; |
| 214 | #endif |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 215 | int i; |
| 216 | char temp[32]; |
| 217 | |
| 218 | lcd_printf ("%s\n", U_BOOT_VERSION); |
| 219 | lcd_printf ("(C) 2008 ATMEL Corp\n"); |
| 220 | lcd_printf ("at91support@atmel.com\n"); |
| 221 | lcd_printf ("%s CPU at %s MHz\n", |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 222 | ATMEL_CPU_NAME, |
Jean-Christophe PLAGNIOL-VILLARD | dc39ae9 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 223 | strmhz(temp, get_cpu_clk_rate())); |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 224 | |
| 225 | dram_size = 0; |
| 226 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) |
| 227 | dram_size += gd->bd->bi_dram[i].size; |
| 228 | nand_size = 0; |
| 229 | for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++) |
| 230 | nand_size += nand_info[i].size; |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 231 | #ifndef CONFIG_SYS_NO_FLASH |
| 232 | flash_size = 0; |
| 233 | for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) |
| 234 | flash_size += flash_info[i].size; |
| 235 | #endif |
| 236 | lcd_printf (" %ld MB SDRAM, %ld MB NAND", |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 237 | dram_size >> 20, |
| 238 | nand_size >> 20 ); |
Jean-Christophe PLAGNIOL-VILLARD | 1b3b7c6 | 2009-06-13 12:48:36 +0200 | [diff] [blame] | 239 | #ifndef CONFIG_SYS_NO_FLASH |
| 240 | lcd_printf (",\n %ld MB NOR", |
| 241 | flash_size >> 20); |
| 242 | #endif |
| 243 | lcd_puts ("\n"); |
Haavard Skinnemoen | 6b59e03 | 2008-09-01 16:21:22 +0200 | [diff] [blame] | 244 | } |
| 245 | #endif /* CONFIG_LCD_INFO */ |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 246 | #endif |
| 247 | |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 248 | int board_early_init_f(void) |
| 249 | { |
| 250 | struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; |
| 251 | |
| 252 | /* Enable clocks for all PIOs */ |
| 253 | writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) | |
| 254 | (1 << ATMEL_ID_PIOCDE), |
| 255 | &pmc->pcer); |
| 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 260 | int board_init(void) |
| 261 | { |
| 262 | /* Enable Ctrlc */ |
| 263 | console_init_f(); |
| 264 | |
| 265 | /* arch number of AT91SAM9263EK-Board */ |
| 266 | gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9263EK; |
| 267 | /* adress of boot parameters */ |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 268 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 269 | |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 270 | at91_seriald_hw_init(); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 271 | #ifdef CONFIG_CMD_NAND |
| 272 | at91sam9263ek_nand_hw_init(); |
| 273 | #endif |
| 274 | #ifdef CONFIG_HAS_DATAFLASH |
Jens Scharsig | 1b34f00 | 2010-02-03 22:47:18 +0100 | [diff] [blame] | 275 | 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] | 276 | at91_spi0_hw_init(1 << 0); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 277 | #endif |
| 278 | #ifdef CONFIG_MACB |
| 279 | at91sam9263ek_macb_hw_init(); |
| 280 | #endif |
| 281 | #ifdef CONFIG_USB_OHCI_NEW |
Jean-Christophe PLAGNIOL-VILLARD | f3f91f8 | 2009-03-21 21:08:00 +0100 | [diff] [blame] | 282 | at91_uhp_hw_init(); |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 283 | #endif |
Stelian Pop | 56a2479 | 2008-05-08 14:52:31 +0200 | [diff] [blame] | 284 | #ifdef CONFIG_LCD |
| 285 | at91sam9263ek_lcd_hw_init(); |
| 286 | #endif |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | int dram_init(void) |
| 291 | { |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 292 | gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE, |
| 293 | CONFIG_SYS_SDRAM_SIZE); |
| 294 | |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 295 | return 0; |
| 296 | } |
| 297 | |
| 298 | #ifdef CONFIG_RESET_PHY_R |
| 299 | void reset_phy(void) |
| 300 | { |
Stelian Pop | 8e429b3 | 2008-05-08 18:52:23 +0200 | [diff] [blame] | 301 | } |
| 302 | #endif |
Ben Warren | 3ae071e | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 303 | |
| 304 | int board_eth_init(bd_t *bis) |
| 305 | { |
| 306 | int rc = 0; |
| 307 | #ifdef CONFIG_MACB |
Xu, Hong | cd46b0f | 2011-06-10 21:31:26 +0000 | [diff] [blame] | 308 | rc = macb_eth_initialize(0, (void *) ATMEL_BASE_EMAC, 0x00); |
Ben Warren | 3ae071e | 2008-08-12 22:11:53 -0700 | [diff] [blame] | 309 | #endif |
| 310 | return rc; |
| 311 | } |