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 * SPDX-License-Identifier: GPL-2.0+
15 #include <asm/sizes.h>
17 #include <asm/arch/at91sam9_smc.h>
18 #include <asm/arch/at91_common.h>
19 #include <asm/arch/at91_pmc.h>
20 #include <asm/arch/at91_rstc.h>
21 #include <asm/arch/at91_matrix.h>
22 #include <asm/arch/gpio.h>
23 #include <asm/arch/clk.h>
24 #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
29 DECLARE_GLOBAL_DATA_PTR;
32 * Miscelaneous platform dependent initialisations
35 #ifdef CONFIG_CMD_NAND
36 static void pm9g45_nand_hw_init(void)
39 struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
40 struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
41 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
44 csa = readl(&matrix->ccr[6]) | AT91_MATRIX_CSA_EBI_CS3A;
45 writel(csa, &matrix->ccr[6]);
47 /* Configure SMC CS3 for NAND/SmartMedia */
48 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
49 AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
52 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(3) |
53 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(2),
56 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(4),
59 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
60 AT91_SMC_MODE_EXNW_DISABLE |
62 AT91_SMC_MODE_TDF_CYCLE(3),
65 writel(1 << ATMEL_ID_PIOC, &pmc->pcer);
67 #ifdef CONFIG_SYS_NAND_READY_PIN
68 /* Configure RDY/BSY */
69 at91_set_pio_input(CONFIG_SYS_NAND_READY_PIN, 1);
72 /* Enable NandFlash */
73 at91_set_pio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
78 static void pm9g45_macb_hw_init(void)
80 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
83 * PD2 enables the 50MHz oscillator for Ethernet PHY
87 at91_set_pio_output(AT91_PIO_PORTD, 2, 1);
88 at91_set_pio_value(AT91_PIO_PORTD, 2, 1); /* 1- enable, 0 - disable */
91 writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
95 * RXDV (PA15) => PHY normal mode (not Test mode)
96 * ERX0 (PA12) => PHY ADDR0
97 * ERX1 (PA13) => PHY ADDR1 => PHYADDR = 0x0
99 * PHY has internal pull-down
101 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 0);
102 at91_set_pio_pullup(AT91_PIO_PORTA, 12, 0);
103 at91_set_pio_pullup(AT91_PIO_PORTA, 13, 0);
105 /* Re-enable pull-up */
106 at91_set_pio_pullup(AT91_PIO_PORTA, 15, 1);
107 at91_set_pio_pullup(AT91_PIO_PORTA, 12, 1);
108 at91_set_pio_pullup(AT91_PIO_PORTA, 13, 1);
114 int board_early_init_f(void)
116 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
118 /* Enable clocks for all PIOs */
119 writel((1 << ATMEL_ID_PIOA) |
120 (1 << ATMEL_ID_PIOB) |
121 (1 << ATMEL_ID_PIOC) |
122 (1 << ATMEL_ID_PIODE), &pmc->pcer);
124 at91_seriald_hw_init();
131 /* arch number of AT91SAM9M10G45EK-Board */
132 gd->bd->bi_arch_number = MACH_TYPE_PM9G45;
133 /* adress of boot parameters */
134 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
136 #ifdef CONFIG_CMD_NAND
137 pm9g45_nand_hw_init();
141 pm9g45_macb_hw_init();
148 /* dram_init must store complete ramsize in gd->ram_size */
149 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
154 void dram_init_banksize(void)
156 gd->bd->bi_dram[0].start = PHYS_SDRAM;
157 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
160 #ifdef CONFIG_RESET_PHY_R
165 * Initialize ethernet HW addr prior to starting Linux,
173 int board_eth_init(bd_t *bis)
177 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x01);