blob: b5a11f2303ceae8d28ce5e5be6ecaff967a2a744 [file] [log] [blame]
Asen Dimovb5d289f2010-04-20 22:49:04 +03001/*
2 * (C) Copyright 2010
3 * Ilko Iliev <iliev@ronetix.at>
4 * Asen Dimov <dimov@ronetix.at>
5 * Ronetix GmbH <www.ronetix.at>
6 *
7 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01008 * Stelian Pop <stelian@popies.net>
Asen Dimovb5d289f2010-04-20 22:49:04 +03009 * Lead Tech Design <www.leadtechdesign.com>
10 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
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.
18 *
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.
23 *
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,
27 * MA 02111-1307 USA
28 */
29
30#include <common.h>
31#include <asm/sizes.h>
Asen Dimoveb6e6082011-06-08 22:01:37 +000032#include <asm/io.h>
Asen Dimovb5d289f2010-04-20 22:49:04 +030033#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>
Asen Dimoveb6e6082011-06-08 22:01:37 +000038#include <asm/arch/gpio.h>
Asen Dimovb5d289f2010-04-20 22:49:04 +030039#include <asm/arch/clk.h>
Asen Dimovb5d289f2010-04-20 22:49:04 +030040#if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
41#include <net.h>
42#endif
43#include <netdev.h>
44
45DECLARE_GLOBAL_DATA_PTR;
46
47/*
48 * Miscelaneous platform dependent initialisations
49 */
50
51#ifdef CONFIG_CMD_NAND
52static void pm9g45_nand_hw_init(void)
53{
54 unsigned long csa;
Asen Dimoveb6e6082011-06-08 22:01:37 +000055 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;
Asen Dimovb5d289f2010-04-20 22:49:04 +030058
59 /* Enable CS3 */
60 csa = readl(&matrix->ccr[6]) | AT91_MATRIX_CSA_EBI_CS3A;
61 writel(csa, &matrix->ccr[6]);
62
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),
66 &smc->cs[3].setup);
67
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),
70 &smc->cs[3].pulse);
71
72 writel(AT91_SMC_CYCLE_NWE(7) | AT91_SMC_CYCLE_NRD(4),
73 &smc->cs[3].cycle);
74
75 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
76 AT91_SMC_MODE_EXNW_DISABLE |
77 AT91_SMC_MODE_DBW_8 |
78 AT91_SMC_MODE_TDF_CYCLE(3),
79 &smc->cs[3].mode);
80
Asen Dimoveb6e6082011-06-08 22:01:37 +000081 writel(1 << ATMEL_ID_PIOC, &pmc->pcer);
Asen Dimovb5d289f2010-04-20 22:49:04 +030082
83#ifdef CONFIG_SYS_NAND_READY_PIN
84 /* Configure RDY/BSY */
85 at91_set_pio_input(CONFIG_SYS_NAND_READY_PIN, 1);
86#endif
87
88 /* Enable NandFlash */
89 at91_set_pio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
90}
91#endif
92
93#ifdef CONFIG_MACB
94static void pm9g45_macb_hw_init(void)
95{
Asen Dimoveb6e6082011-06-08 22:01:37 +000096 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
Asen Dimovb5d289f2010-04-20 22:49:04 +030097
98 /*
99 * PD2 enables the 50MHz oscillator for Ethernet PHY
100 * 1 - enable
101 * 0 - disable
102 */
103 at91_set_pio_output(AT91_PIO_PORTD, 2, 1);
104 at91_set_pio_value(AT91_PIO_PORTD, 2, 1); /* 1- enable, 0 - disable */
105
106 /* Enable clock */
Asen Dimoveb6e6082011-06-08 22:01:37 +0000107 writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
Asen Dimovb5d289f2010-04-20 22:49:04 +0300108
109 /*
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
114 *
115 * PHY has internal pull-down
116 */
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);
120
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);
125
126 at91_macb_hw_init();
127}
128#endif
129
Asen Dimovc4df2142011-12-09 11:00:07 +0000130int board_early_init_f(void)
Asen Dimovb5d289f2010-04-20 22:49:04 +0300131{
Asen Dimoveb6e6082011-06-08 22:01:37 +0000132 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
Asen Dimovb5d289f2010-04-20 22:49:04 +0300133
Asen Dimovc4df2142011-12-09 11:00:07 +0000134 /* Enable clocks for all PIOs */
Asen Dimoveb6e6082011-06-08 22:01:37 +0000135 writel((1 << ATMEL_ID_PIOA) |
136 (1 << ATMEL_ID_PIOB) |
137 (1 << ATMEL_ID_PIOC) |
138 (1 << ATMEL_ID_PIODE), &pmc->pcer);
Asen Dimovb5d289f2010-04-20 22:49:04 +0300139
Asen Dimovc4df2142011-12-09 11:00:07 +0000140 at91_seriald_hw_init();
141
142 return 0;
143}
144
145int board_init(void)
146{
147 /* arch number of AT91SAM9M10G45EK-Board */
148 gd->bd->bi_arch_number = MACH_TYPE_PM9G45;
Asen Dimovb5d289f2010-04-20 22:49:04 +0300149 /* adress of boot parameters */
150 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
151
Asen Dimovb5d289f2010-04-20 22:49:04 +0300152#ifdef CONFIG_CMD_NAND
153 pm9g45_nand_hw_init();
154#endif
155
156#ifdef CONFIG_MACB
157 pm9g45_macb_hw_init();
158#endif
159 return 0;
160}
161
162int dram_init(void)
163{
Asen Dimov510f7942010-12-12 00:42:28 +0000164 /* dram_init must store complete ramsize in gd->ram_size */
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +0000165 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
Asen Dimov510f7942010-12-12 00:42:28 +0000166 PHYS_SDRAM_SIZE);
167 return 0;
168}
169
170void dram_init_banksize(void)
171{
Asen Dimovb5d289f2010-04-20 22:49:04 +0300172 gd->bd->bi_dram[0].start = PHYS_SDRAM;
173 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
Asen Dimovb5d289f2010-04-20 22:49:04 +0300174}
175
176#ifdef CONFIG_RESET_PHY_R
177void reset_phy(void)
178{
179#ifdef CONFIG_MACB
180 /*
181 * Initialize ethernet HW addr prior to starting Linux,
182 * needed for nfsroot
183 */
184 eth_init(gd->bd);
185#endif
186}
187#endif
188
189int board_eth_init(bd_t *bis)
190{
191 int rc = 0;
192#ifdef CONFIG_MACB
Asen Dimoveb6e6082011-06-08 22:01:37 +0000193 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x01);
Asen Dimovb5d289f2010-04-20 22:49:04 +0300194#endif
195 return rc;
196}