blob: 6c5992733cc679259853d61bf55b55bb4c1b6919 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +02002/*
3 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +02005 * Lead Tech Design <www.leadtechdesign.com>
6 *
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +01007 * (C) Copyright 2009-2015
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +02008 * Daniel Gorsulowski <daniel.gorsulowski@esd.eu>
9 * esd electronic system design gmbh <www.esd.eu>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020010 */
11
12#include <common.h>
Simon Glass3a7d5572019-08-01 09:46:42 -060013#include <env.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070014#include <init.h>
Simon Glassb03e0512019-11-14 12:57:24 -070015#include <serial.h>
Simon Glass2189d5f2019-11-14 12:57:20 -070016#include <vsprintf.h>
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +000017#include <asm/io.h>
Andreas Bießmannac45bb12013-11-29 12:13:45 +010018#include <asm/gpio.h>
Simon Glassc62db352017-05-31 19:47:48 -060019#include <asm/mach-types.h>
Simon Glass5d982852017-05-17 08:23:00 -060020#include <asm/setup.h>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020021#include <asm/arch/at91sam9_smc.h>
22#include <asm/arch/at91_common.h>
23#include <asm/arch/at91_pmc.h>
24#include <asm/arch/at91_rstc.h>
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020025#include <asm/arch/at91_matrix.h>
26#include <asm/arch/at91_pio.h>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020027#include <asm/arch/clk.h>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020028#include <netdev.h>
29
30DECLARE_GLOBAL_DATA_PTR;
31
32/*
33 * Miscelaneous platform dependent initialisations
34 */
35
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +010036#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020037static int hw_rev = -1; /* hardware revision */
38
39int get_hw_rev(void)
40{
41 if (hw_rev >= 0)
42 return hw_rev;
43
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020044 hw_rev = at91_get_pio_value(AT91_PIO_PORTB, 19);
45 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 20) << 1;
46 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 21) << 2;
47 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 22) << 3;
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020048
49 if (hw_rev == 15)
50 hw_rev = 0;
51
52 return hw_rev;
53}
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +010054#endif /* CONFIG_REVISION_TAG */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020055
56#ifdef CONFIG_CMD_NAND
57static void meesc_nand_hw_init(void)
58{
59 unsigned long csa;
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +000060 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
61 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020062
63 /* Enable CS3 */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020064 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
65 writel(csa, &matrix->csa[0]);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020066
67 /* Configure SMC CS3 for NAND/SmartMedia */
Daniel Gorsulowskidd802642012-01-25 03:19:49 +000068 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(1) |
69 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(2),
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020070 &smc->cs[3].setup);
71
72 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
73 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
74 &smc->cs[3].pulse);
75
Daniel Gorsulowskidd802642012-01-25 03:19:49 +000076 writel(AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(6),
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020077 &smc->cs[3].cycle);
78 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
79 AT91_SMC_MODE_EXNW_DISABLE |
80 AT91_SMC_MODE_DBW_8 |
Daniel Gorsulowskidd802642012-01-25 03:19:49 +000081 AT91_SMC_MODE_TDF_CYCLE(12),
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020082 &smc->cs[3].mode);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020083
84 /* Configure RDY/BSY */
Andreas Bießmannac45bb12013-11-29 12:13:45 +010085 gpio_direction_input(CONFIG_SYS_NAND_READY_PIN);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020086
87 /* Enable NandFlash */
Andreas Bießmannac45bb12013-11-29 12:13:45 +010088 gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020089}
90#endif /* CONFIG_CMD_NAND */
91
92#ifdef CONFIG_MACB
93static void meesc_macb_hw_init(void)
94{
Wenyou Yang70341e22016-02-03 10:16:50 +080095 at91_periph_clk_enable(ATMEL_ID_EMAC);
96
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020097 at91_macb_hw_init();
98}
99#endif
100
101/*
102 * Static memory controller initialization to enable Beckhoff ET1100 EtherCAT
103 * controller debugging
104 * The ET1100 is located at physical address 0x70000000
105 * Its process memory is located at physical address 0x70001000
106 */
107static void meesc_ethercat_hw_init(void)
108{
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000109 at91_smc_t *smc1 = (at91_smc_t *) ATMEL_BASE_SMC1;
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200110
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200111 /* Configure SMC EBI1_CS0 for EtherCAT */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200112 writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) |
113 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0),
114 &smc1->cs[0].setup);
115 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(9) |
116 AT91_SMC_PULSE_NRD(5) | AT91_SMC_PULSE_NCS_RD(9),
117 &smc1->cs[0].pulse);
118 writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6),
119 &smc1->cs[0].cycle);
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200120 /*
121 * Configure behavior at external wait signal, byte-select mode, 16 bit
122 * data bus width, none data float wait states and TDF optimization
123 */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200124 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_EXNW_READY |
125 AT91_SMC_MODE_DBW_16 | AT91_SMC_MODE_TDF_CYCLE(0) |
126 AT91_SMC_MODE_TDF, &smc1->cs[0].mode);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200127
128 /* Configure RDY/BSY */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200129 at91_set_b_periph(AT91_PIO_PORTE, 20, 0); /* EBI1_NWAIT */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200130}
131
132int dram_init(void)
133{
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100134 /* dram_init must store complete ramsize in gd->ram_size */
135 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
136 PHYS_SDRAM_SIZE);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200137 return 0;
138}
139
Simon Glass76b00ac2017-03-31 08:40:32 -0600140int dram_init_banksize(void)
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100141{
142 gd->bd->bi_dram[0].start = PHYS_SDRAM;
143 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
Simon Glass76b00ac2017-03-31 08:40:32 -0600144
145 return 0;
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100146}
147
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200148int board_eth_init(bd_t *bis)
149{
150 int rc = 0;
151#ifdef CONFIG_MACB
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000152 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200153#endif
154 return rc;
155}
156
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100157#ifdef CONFIG_DISPLAY_BOARDINFO
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200158int checkboard(void)
159{
160 char str[32];
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200161 u_char hw_type; /* hardware type */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200162
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200163 /* read the "Type" register of the ET1100 controller */
164 hw_type = readb(CONFIG_ET1100_BASE);
165
166 switch (hw_type) {
167 case 0x11:
168 case 0x3F:
169 /* ET1100 present, arch number of MEESC-Board */
170 gd->bd->bi_arch_number = MACH_TYPE_MEESC;
171 puts("Board: CAN-EtherCAT Gateway");
172 break;
173 case 0xFF:
174 /* no ET1100 present, arch number of EtherCAN/2-Board */
175 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
176 puts("Board: EtherCAN/2 Gateway");
177 /* switch on LED1D */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200178 at91_set_pio_output(AT91_PIO_PORTB, 12, 1);
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200179 break;
180 default:
181 /* assume, no ET1100 present, arch number of EtherCAN/2-Board */
182 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
183 printf("ERROR! Read invalid hw_type: %02X\n", hw_type);
184 puts("Board: EtherCAN/2 Gateway");
185 break;
186 }
Simon Glass00caae62017-08-03 12:22:12 -0600187 if (env_get_f("serial#", str, sizeof(str)) > 0) {
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200188 puts(", serial# ");
189 puts(str);
190 }
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100191#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200192 printf("\nHardware-revision: 1.%d\n", get_hw_rev());
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100193#endif
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200194 printf("Mach-type: %lu\n", gd->bd->bi_arch_number);
195 return 0;
196}
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100197#endif /* CONFIG_DISPLAY_BOARDINFO */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200198
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200199#ifdef CONFIG_SERIAL_TAG
200void get_board_serial(struct tag_serialnr *serialnr)
201{
202 char *str;
203
Simon Glass00caae62017-08-03 12:22:12 -0600204 char *serial = env_get("serial#");
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200205 if (serial) {
206 str = strchr(serial, '_');
207 if (str && (strlen(str) >= 4)) {
208 serialnr->high = (*(str + 1) << 8) | *(str + 2);
209 serialnr->low = simple_strtoul(str + 3, NULL, 16);
210 }
211 } else {
212 serialnr->high = 0;
213 serialnr->low = 0;
214 }
215}
216#endif
217
218#ifdef CONFIG_REVISION_TAG
219u32 get_board_rev(void)
220{
221 return hw_rev | 0x100;
222}
223#endif
224
Daniel Gorsulowskia3f38972010-01-20 08:00:11 +0100225#ifdef CONFIG_MISC_INIT_R
226int misc_init_r(void)
227{
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200228 char *str;
229 char buf[32];
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000230 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Daniel Gorsulowskia3f38972010-01-20 08:00:11 +0100231
232 /*
233 * Normally the processor clock has a divisor of 2.
234 * In some cases this this needs to be set to 4.
235 * Check the user has set environment mdiv to 4 to change the divisor.
236 */
Simon Glass00caae62017-08-03 12:22:12 -0600237 str = env_get("mdiv");
238 if (str && (strcmp(str, "4") == 0)) {
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200239 writel((readl(&pmc->mckr) & ~AT91_PMC_MDIV) |
240 AT91SAM9_PMC_MDIV_4, &pmc->mckr);
241 at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
Daniel Gorsulowskia3f38972010-01-20 08:00:11 +0100242 serial_setbrg();
243 /* Notify the user that the clock is not default */
244 printf("Setting master clock to %s MHz\n",
245 strmhz(buf, get_mck_clk_rate()));
246 }
247
248 return 0;
249}
250#endif /* CONFIG_MISC_INIT_R */
251
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000252int board_early_init_f(void)
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200253{
Wenyou Yang70341e22016-02-03 10:16:50 +0800254 at91_periph_clk_enable(ATMEL_ID_UHP);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200255
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000256 return 0;
257}
258
259int board_init(void)
260{
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200261 /* initialize ET1100 Controller */
262 meesc_ethercat_hw_init();
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200263
264 /* adress of boot parameters */
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000265 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200266
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200267#ifdef CONFIG_CMD_NAND
268 meesc_nand_hw_init();
269#endif
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200270#ifdef CONFIG_MACB
271 meesc_macb_hw_init();
272#endif
273#ifdef CONFIG_AT91_CAN
274 at91_can_hw_init();
275#endif
Daniel Gorsulowski64037fb2010-08-09 11:17:15 +0200276#ifdef CONFIG_USB_OHCI_NEW
277 at91_uhp_hw_init();
278#endif
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200279 return 0;
280}