blob: b0d2f7b6f87b1b76b97a416b769006ce951d26d5 [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>
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +000014#include <asm/io.h>
Andreas Bießmannac45bb12013-11-29 12:13:45 +010015#include <asm/gpio.h>
Simon Glassc62db352017-05-31 19:47:48 -060016#include <asm/mach-types.h>
Simon Glass5d982852017-05-17 08:23:00 -060017#include <asm/setup.h>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020018#include <asm/arch/at91sam9_smc.h>
19#include <asm/arch/at91_common.h>
20#include <asm/arch/at91_pmc.h>
21#include <asm/arch/at91_rstc.h>
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020022#include <asm/arch/at91_matrix.h>
23#include <asm/arch/at91_pio.h>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020024#include <asm/arch/clk.h>
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020025#include <netdev.h>
26
27DECLARE_GLOBAL_DATA_PTR;
28
29/*
30 * Miscelaneous platform dependent initialisations
31 */
32
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +010033#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020034static int hw_rev = -1; /* hardware revision */
35
36int get_hw_rev(void)
37{
38 if (hw_rev >= 0)
39 return hw_rev;
40
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020041 hw_rev = at91_get_pio_value(AT91_PIO_PORTB, 19);
42 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 20) << 1;
43 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 21) << 2;
44 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 22) << 3;
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020045
46 if (hw_rev == 15)
47 hw_rev = 0;
48
49 return hw_rev;
50}
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +010051#endif /* CONFIG_REVISION_TAG */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020052
53#ifdef CONFIG_CMD_NAND
54static void meesc_nand_hw_init(void)
55{
56 unsigned long csa;
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +000057 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
58 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020059
60 /* Enable CS3 */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020061 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
62 writel(csa, &matrix->csa[0]);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020063
64 /* Configure SMC CS3 for NAND/SmartMedia */
Daniel Gorsulowskidd802642012-01-25 03:19:49 +000065 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(1) |
66 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(2),
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020067 &smc->cs[3].setup);
68
69 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
70 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
71 &smc->cs[3].pulse);
72
Daniel Gorsulowskidd802642012-01-25 03:19:49 +000073 writel(AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(6),
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020074 &smc->cs[3].cycle);
75 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
76 AT91_SMC_MODE_EXNW_DISABLE |
77 AT91_SMC_MODE_DBW_8 |
Daniel Gorsulowskidd802642012-01-25 03:19:49 +000078 AT91_SMC_MODE_TDF_CYCLE(12),
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +020079 &smc->cs[3].mode);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020080
81 /* Configure RDY/BSY */
Andreas Bießmannac45bb12013-11-29 12:13:45 +010082 gpio_direction_input(CONFIG_SYS_NAND_READY_PIN);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020083
84 /* Enable NandFlash */
Andreas Bießmannac45bb12013-11-29 12:13:45 +010085 gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020086}
87#endif /* CONFIG_CMD_NAND */
88
89#ifdef CONFIG_MACB
90static void meesc_macb_hw_init(void)
91{
Wenyou Yang70341e22016-02-03 10:16:50 +080092 at91_periph_clk_enable(ATMEL_ID_EMAC);
93
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +020094 at91_macb_hw_init();
95}
96#endif
97
98/*
99 * Static memory controller initialization to enable Beckhoff ET1100 EtherCAT
100 * controller debugging
101 * The ET1100 is located at physical address 0x70000000
102 * Its process memory is located at physical address 0x70001000
103 */
104static void meesc_ethercat_hw_init(void)
105{
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000106 at91_smc_t *smc1 = (at91_smc_t *) ATMEL_BASE_SMC1;
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200107
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200108 /* Configure SMC EBI1_CS0 for EtherCAT */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200109 writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) |
110 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0),
111 &smc1->cs[0].setup);
112 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(9) |
113 AT91_SMC_PULSE_NRD(5) | AT91_SMC_PULSE_NCS_RD(9),
114 &smc1->cs[0].pulse);
115 writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6),
116 &smc1->cs[0].cycle);
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200117 /*
118 * Configure behavior at external wait signal, byte-select mode, 16 bit
119 * data bus width, none data float wait states and TDF optimization
120 */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200121 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_EXNW_READY |
122 AT91_SMC_MODE_DBW_16 | AT91_SMC_MODE_TDF_CYCLE(0) |
123 AT91_SMC_MODE_TDF, &smc1->cs[0].mode);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200124
125 /* Configure RDY/BSY */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200126 at91_set_b_periph(AT91_PIO_PORTE, 20, 0); /* EBI1_NWAIT */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200127}
128
129int dram_init(void)
130{
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100131 /* dram_init must store complete ramsize in gd->ram_size */
132 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
133 PHYS_SDRAM_SIZE);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200134 return 0;
135}
136
Simon Glass76b00ac2017-03-31 08:40:32 -0600137int dram_init_banksize(void)
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100138{
139 gd->bd->bi_dram[0].start = PHYS_SDRAM;
140 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
Simon Glass76b00ac2017-03-31 08:40:32 -0600141
142 return 0;
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100143}
144
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200145int board_eth_init(bd_t *bis)
146{
147 int rc = 0;
148#ifdef CONFIG_MACB
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000149 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200150#endif
151 return rc;
152}
153
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100154#ifdef CONFIG_DISPLAY_BOARDINFO
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200155int checkboard(void)
156{
157 char str[32];
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200158 u_char hw_type; /* hardware type */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200159
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200160 /* read the "Type" register of the ET1100 controller */
161 hw_type = readb(CONFIG_ET1100_BASE);
162
163 switch (hw_type) {
164 case 0x11:
165 case 0x3F:
166 /* ET1100 present, arch number of MEESC-Board */
167 gd->bd->bi_arch_number = MACH_TYPE_MEESC;
168 puts("Board: CAN-EtherCAT Gateway");
169 break;
170 case 0xFF:
171 /* no ET1100 present, arch number of EtherCAN/2-Board */
172 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
173 puts("Board: EtherCAN/2 Gateway");
174 /* switch on LED1D */
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200175 at91_set_pio_output(AT91_PIO_PORTB, 12, 1);
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200176 break;
177 default:
178 /* assume, no ET1100 present, arch number of EtherCAN/2-Board */
179 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
180 printf("ERROR! Read invalid hw_type: %02X\n", hw_type);
181 puts("Board: EtherCAN/2 Gateway");
182 break;
183 }
Simon Glass00caae62017-08-03 12:22:12 -0600184 if (env_get_f("serial#", str, sizeof(str)) > 0) {
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200185 puts(", serial# ");
186 puts(str);
187 }
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100188#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200189 printf("\nHardware-revision: 1.%d\n", get_hw_rev());
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100190#endif
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200191 printf("Mach-type: %lu\n", gd->bd->bi_arch_number);
192 return 0;
193}
Daniel Gorsulowski83bf0052015-11-02 07:59:49 +0100194#endif /* CONFIG_DISPLAY_BOARDINFO */
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200195
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200196#ifdef CONFIG_SERIAL_TAG
197void get_board_serial(struct tag_serialnr *serialnr)
198{
199 char *str;
200
Simon Glass00caae62017-08-03 12:22:12 -0600201 char *serial = env_get("serial#");
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200202 if (serial) {
203 str = strchr(serial, '_');
204 if (str && (strlen(str) >= 4)) {
205 serialnr->high = (*(str + 1) << 8) | *(str + 2);
206 serialnr->low = simple_strtoul(str + 3, NULL, 16);
207 }
208 } else {
209 serialnr->high = 0;
210 serialnr->low = 0;
211 }
212}
213#endif
214
215#ifdef CONFIG_REVISION_TAG
216u32 get_board_rev(void)
217{
218 return hw_rev | 0x100;
219}
220#endif
221
Daniel Gorsulowskia3f38972010-01-20 08:00:11 +0100222#ifdef CONFIG_MISC_INIT_R
223int misc_init_r(void)
224{
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200225 char *str;
226 char buf[32];
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000227 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Daniel Gorsulowskia3f38972010-01-20 08:00:11 +0100228
229 /*
230 * Normally the processor clock has a divisor of 2.
231 * In some cases this this needs to be set to 4.
232 * Check the user has set environment mdiv to 4 to change the divisor.
233 */
Simon Glass00caae62017-08-03 12:22:12 -0600234 str = env_get("mdiv");
235 if (str && (strcmp(str, "4") == 0)) {
Daniel Gorsulowskid4562e02010-08-09 11:17:14 +0200236 writel((readl(&pmc->mckr) & ~AT91_PMC_MDIV) |
237 AT91SAM9_PMC_MDIV_4, &pmc->mckr);
238 at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
Daniel Gorsulowskia3f38972010-01-20 08:00:11 +0100239 serial_setbrg();
240 /* Notify the user that the clock is not default */
241 printf("Setting master clock to %s MHz\n",
242 strmhz(buf, get_mck_clk_rate()));
243 }
244
245 return 0;
246}
247#endif /* CONFIG_MISC_INIT_R */
248
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000249int board_early_init_f(void)
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200250{
Wenyou Yang70341e22016-02-03 10:16:50 +0800251 at91_periph_clk_enable(ATMEL_ID_UHP);
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200252
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000253 return 0;
254}
255
256int board_init(void)
257{
Daniel Gorsulowskia3802792009-09-29 08:03:12 +0200258 /* initialize ET1100 Controller */
259 meesc_ethercat_hw_init();
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200260
261 /* adress of boot parameters */
Matthias Fuchs0cb77bf2011-07-19 01:56:06 +0000262 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200263
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200264#ifdef CONFIG_CMD_NAND
265 meesc_nand_hw_init();
266#endif
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200267#ifdef CONFIG_MACB
268 meesc_macb_hw_init();
269#endif
270#ifdef CONFIG_AT91_CAN
271 at91_can_hw_init();
272#endif
Daniel Gorsulowski64037fb2010-08-09 11:17:15 +0200273#ifdef CONFIG_USB_OHCI_NEW
274 at91_uhp_hw_init();
275#endif
Daniel Gorsulowski33b1d3f2009-06-30 21:03:37 +0200276 return 0;
277}