3 * Ilko Iliev <iliev@ronetix.at>
4 * Asen Dimov <dimov@ronetix.at>
5 * Ronetix GmbH <www.ronetix.at>
7 * (C) Copyright 2007-2008
8 * Stelian Pop <stelian@popies.net>
9 * Lead Tech Design <www.leadtechdesign.com>
11 * See file CREDITS for list of people who contributed to this
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 #include <asm/sizes.h>
33 #include <asm/arch/at91sam9_smc.h>
34 #include <asm/arch/at91_common.h>
35 #include <asm/arch/at91_pmc.h>
36 #include <asm/arch/at91_rstc.h>
37 #include <asm/arch/at91_matrix.h>
38 #include <asm/arch/gpio.h>
39 #include <asm/arch/clk.h>
40 #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
45 DECLARE_GLOBAL_DATA_PTR;
48 * Miscelaneous platform dependent initialisations
51 #ifdef CONFIG_CMD_NAND
52 static void pm9g45_nand_hw_init(void)
55 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
56 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
57 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
60 csa = readl(&matrix->ccr[6]) | AT91_MATRIX_CSA_EBI_CS3A;
61 writel(csa, &matrix->ccr[6]);
63 /* Configure SMC CS3 for NAND/SmartMedia */
64 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
65 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
68 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(3) |
69 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(2),
72 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(4),
75 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
76 AT91_SMC_MODE_EXNW_DISABLE |
78 AT91_SMC_MODE_TDF_CYCLE(3),
81 writel(1 << ATMEL_ID_PIOC, &pmc->pcer);
83 #ifdef CONFIG_SYS_NAND_READY_PIN
84 /* Configure RDY/BSY */
85 at91_set_pio_input(CONFIG_SYS_NAND_READY_PIN, 1);
88 /* Enable NandFlash */
89 at91_set_pio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
94 static void pm9g45_macb_hw_init(void)
96 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
99 * PD2 enables the 50MHz oscillator for Ethernet PHY
103 at91_set_pio_output(AT91_PIO_PORTD, 2, 1);
104 at91_set_pio_value(AT91_PIO_PORTD, 2, 1); /* 1- enable, 0 - disable */
107 writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
110 * Disable pull-up on:
111 * RXDV (PA15) => PHY normal mode (not Test mode)
112 * ERX0 (PA12) => PHY ADDR0
113 * ERX1 (PA13) => PHY ADDR1 => PHYADDR = 0x0
115 * PHY has internal pull-down
117 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 0);
118 at91_set_pio_pullup(AT91_PIO_PORTA, 12, 0);
119 at91_set_pio_pullup(AT91_PIO_PORTA, 13, 0);
121 /* Re-enable pull-up */
122 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 1);
123 at91_set_pio_pullup(AT91_PIO_PORTA, 12, 1);
124 at91_set_pio_pullup(AT91_PIO_PORTA, 13, 1);
130 int board_early_init_f(void)
132 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
134 /* Enable clocks for all PIOs */
135 writel((1 << ATMEL_ID_PIOA) |
136 (1 << ATMEL_ID_PIOB) |
137 (1 << ATMEL_ID_PIOC) |
138 (1 << ATMEL_ID_PIODE), &pmc->pcer);
140 at91_seriald_hw_init();
147 /* arch number of AT91SAM9M10G45EK-Board */
148 gd->bd->bi_arch_number = MACH_TYPE_PM9G45;
149 /* adress of boot parameters */
150 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
152 #ifdef CONFIG_CMD_NAND
153 pm9g45_nand_hw_init();
157 pm9g45_macb_hw_init();
164 /* dram_init must store complete ramsize in gd->ram_size */
165 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
170 void dram_init_banksize(void)
172 gd->bd->bi_dram[0].start = PHYS_SDRAM;
173 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
176 #ifdef CONFIG_RESET_PHY_R
181 * Initialize ethernet HW addr prior to starting Linux,
189 int board_eth_init(bd_t *bis)
193 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x01);