blob: b7f9f90cde563a2f010b937c86107f49bbcbd5c7 [file] [log] [blame]
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +02001/*
2 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +02004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +01006 * (C) Copyright 2009-2015
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +02007 * Daniel Gorsulowski <daniel.gorsulowski@esd.eu>
8 * esd electronic system design gmbh <www.esd.eu>
9 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020011 */
12
13#include <common.h>
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +000014#include <asm/io.h>
Andreas Bießmanna4c24d32013-11-29 12:13:45 +010015#include <asm/gpio.h>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020016#include <asm/arch/at91sam9_smc.h>
17#include <asm/arch/at91_common.h>
18#include <asm/arch/at91_pmc.h>
19#include <asm/arch/at91_rstc.h>
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020020#include <asm/arch/at91_matrix.h>
21#include <asm/arch/at91_pio.h>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020022#include <asm/arch/clk.h>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020023#include <netdev.h>
24
25DECLARE_GLOBAL_DATA_PTR;
26
27/*
28 * Miscelaneous platform dependent initialisations
29 */
30
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +010031#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020032static int hw_rev = -1; /* hardware revision */
33
34int get_hw_rev(void)
35{
36 if (hw_rev >= 0)
37 return hw_rev;
38
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020039 hw_rev = at91_get_pio_value(AT91_PIO_PORTB, 19);
40 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 20) << 1;
41 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 21) << 2;
42 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 22) << 3;
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020043
44 if (hw_rev == 15)
45 hw_rev = 0;
46
47 return hw_rev;
48}
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +010049#endif /* CONFIG_REVISION_TAG */
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020050
51#ifdef CONFIG_CMD_NAND
52static void meesc_nand_hw_init(void)
53{
54 unsigned long csa;
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +000055 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
56 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020057
58 /* Enable CS3 */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020059 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
60 writel(csa, &matrix->csa[0]);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020061
62 /* Configure SMC CS3 for NAND/SmartMedia */
Daniel Gorsulowski879fbe82012-01-25 03:19:49 +000063 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(1) |
64 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(2),
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020065 &smc->cs[3].setup);
66
67 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
68 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
69 &smc->cs[3].pulse);
70
Daniel Gorsulowski879fbe82012-01-25 03:19:49 +000071 writel(AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(6),
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020072 &smc->cs[3].cycle);
73 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
74 AT91_SMC_MODE_EXNW_DISABLE |
75 AT91_SMC_MODE_DBW_8 |
Daniel Gorsulowski879fbe82012-01-25 03:19:49 +000076 AT91_SMC_MODE_TDF_CYCLE(12),
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020077 &smc->cs[3].mode);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020078
79 /* Configure RDY/BSY */
Andreas Bießmanna4c24d32013-11-29 12:13:45 +010080 gpio_direction_input(CONFIG_SYS_NAND_READY_PIN);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020081
82 /* Enable NandFlash */
Andreas Bießmanna4c24d32013-11-29 12:13:45 +010083 gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020084}
85#endif /* CONFIG_CMD_NAND */
86
87#ifdef CONFIG_MACB
88static void meesc_macb_hw_init(void)
89{
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +000090 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020091 /* Enable clock */
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +000092 writel(1 << ATMEL_ID_EMAC, &pmc->pcer);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020093 at91_macb_hw_init();
94}
95#endif
96
97/*
98 * Static memory controller initialization to enable Beckhoff ET1100 EtherCAT
99 * controller debugging
100 * The ET1100 is located at physical address 0x70000000
101 * Its process memory is located at physical address 0x70001000
102 */
103static void meesc_ethercat_hw_init(void)
104{
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000105 at91_smc_t *smc1 = (at91_smc_t *) ATMEL_BASE_SMC1;
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200106
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200107 /* Configure SMC EBI1_CS0 for EtherCAT */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200108 writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) |
109 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0),
110 &smc1->cs[0].setup);
111 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(9) |
112 AT91_SMC_PULSE_NRD(5) | AT91_SMC_PULSE_NCS_RD(9),
113 &smc1->cs[0].pulse);
114 writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6),
115 &smc1->cs[0].cycle);
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200116 /*
117 * Configure behavior at external wait signal, byte-select mode, 16 bit
118 * data bus width, none data float wait states and TDF optimization
119 */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200120 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_EXNW_READY |
121 AT91_SMC_MODE_DBW_16 | AT91_SMC_MODE_TDF_CYCLE(0) |
122 AT91_SMC_MODE_TDF, &smc1->cs[0].mode);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200123
124 /* Configure RDY/BSY */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200125 at91_set_b_periph(AT91_PIO_PORTE, 20, 0); /* EBI1_NWAIT */
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200126}
127
128int dram_init(void)
129{
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100130 /* dram_init must store complete ramsize in gd->ram_size */
131 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
132 PHYS_SDRAM_SIZE);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200133 return 0;
134}
135
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100136void dram_init_banksize(void)
137{
138 gd->bd->bi_dram[0].start = PHYS_SDRAM;
139 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
140}
141
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200142int board_eth_init(bd_t *bis)
143{
144 int rc = 0;
145#ifdef CONFIG_MACB
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000146 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200147#endif
148 return rc;
149}
150
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100151#ifdef CONFIG_DISPLAY_BOARDINFO
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200152int checkboard(void)
153{
154 char str[32];
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200155 u_char hw_type; /* hardware type */
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200156
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200157 /* read the "Type" register of the ET1100 controller */
158 hw_type = readb(CONFIG_ET1100_BASE);
159
160 switch (hw_type) {
161 case 0x11:
162 case 0x3F:
163 /* ET1100 present, arch number of MEESC-Board */
164 gd->bd->bi_arch_number = MACH_TYPE_MEESC;
165 puts("Board: CAN-EtherCAT Gateway");
166 break;
167 case 0xFF:
168 /* no ET1100 present, arch number of EtherCAN/2-Board */
169 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
170 puts("Board: EtherCAN/2 Gateway");
171 /* switch on LED1D */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200172 at91_set_pio_output(AT91_PIO_PORTB, 12, 1);
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200173 break;
174 default:
175 /* assume, no ET1100 present, arch number of EtherCAN/2-Board */
176 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
177 printf("ERROR! Read invalid hw_type: %02X\n", hw_type);
178 puts("Board: EtherCAN/2 Gateway");
179 break;
180 }
Wolfgang Denk76af2782010-07-24 21:55:43 +0200181 if (getenv_f("serial#", str, sizeof(str)) > 0) {
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200182 puts(", serial# ");
183 puts(str);
184 }
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100185#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200186 printf("\nHardware-revision: 1.%d\n", get_hw_rev());
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100187#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200188 printf("Mach-type: %lu\n", gd->bd->bi_arch_number);
189 return 0;
190}
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100191#endif /* CONFIG_DISPLAY_BOARDINFO */
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200192
193#ifdef CONFIG_SERIAL_TAG
194void get_board_serial(struct tag_serialnr *serialnr)
195{
196 char *str;
197
198 char *serial = getenv("serial#");
199 if (serial) {
200 str = strchr(serial, '_');
201 if (str && (strlen(str) >= 4)) {
202 serialnr->high = (*(str + 1) << 8) | *(str + 2);
203 serialnr->low = simple_strtoul(str + 3, NULL, 16);
204 }
205 } else {
206 serialnr->high = 0;
207 serialnr->low = 0;
208 }
209}
210#endif
211
212#ifdef CONFIG_REVISION_TAG
213u32 get_board_rev(void)
214{
215 return hw_rev | 0x100;
216}
217#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200218
Daniel Gorsulowski88e57172010-01-20 08:00:11 +0100219#ifdef CONFIG_MISC_INIT_R
220int misc_init_r(void)
221{
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200222 char *str;
223 char buf[32];
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000224 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Daniel Gorsulowski88e57172010-01-20 08:00:11 +0100225
226 /*
227 * Normally the processor clock has a divisor of 2.
228 * In some cases this this needs to be set to 4.
229 * Check the user has set environment mdiv to 4 to change the divisor.
230 */
231 if ((str = getenv("mdiv")) && (strcmp(str, "4") == 0)) {
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200232 writel((readl(&pmc->mckr) & ~AT91_PMC_MDIV) |
233 AT91SAM9_PMC_MDIV_4, &pmc->mckr);
234 at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
Daniel Gorsulowski88e57172010-01-20 08:00:11 +0100235 serial_setbrg();
236 /* Notify the user that the clock is not default */
237 printf("Setting master clock to %s MHz\n",
238 strmhz(buf, get_mck_clk_rate()));
239 }
240
241 return 0;
242}
243#endif /* CONFIG_MISC_INIT_R */
244
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000245int board_early_init_f(void)
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200246{
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000247 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200248
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000249 /* enable all clocks */
250 writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) |
251 (1 << ATMEL_ID_PIOCDE) | (1 << ATMEL_ID_UHP),
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200252 &pmc->pcer);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200253
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000254 at91_seriald_hw_init();
255
256 return 0;
257}
258
259int board_init(void)
260{
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200261 /* initialize ET1100 Controller */
262 meesc_ethercat_hw_init();
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200263
264 /* adress of boot parameters */
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000265 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200266
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200267#ifdef CONFIG_CMD_NAND
268 meesc_nand_hw_init();
269#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200270#ifdef CONFIG_HAS_DATAFLASH
271 at91_spi0_hw_init(1 << 0);
272#endif
273#ifdef CONFIG_MACB
274 meesc_macb_hw_init();
275#endif
276#ifdef CONFIG_AT91_CAN
277 at91_can_hw_init();
278#endif
Daniel Gorsulowskic7b769a2010-08-09 11:17:15 +0200279#ifdef CONFIG_USB_OHCI_NEW
280 at91_uhp_hw_init();
281#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200282 return 0;
283}