blob: deed3a9b84ecf69480f417cca089b41e8951f21b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +02002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +02005 * Lead Tech Design <www.leadtechdesign.com>
6 *
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +01007 * (C) Copyright 2009-2015
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +02008 * Daniel Gorsulowski <daniel.gorsulowski@esd.eu>
9 * esd electronic system design gmbh <www.esd.eu>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020010 */
11
12#include <common.h>
Simon Glassdb229612019-08-01 09:46:42 -060013#include <env.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070014#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060015#include <net.h>
Simon Glass36736182019-11-14 12:57:24 -070016#include <serial.h>
Simon Glassf5c208d2019-11-14 12:57:20 -070017#include <vsprintf.h>
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +000018#include <asm/io.h>
Andreas Bießmanna4c24d32013-11-29 12:13:45 +010019#include <asm/gpio.h>
Simon Glass0ffb9d62017-05-31 19:47:48 -060020#include <asm/mach-types.h>
Simon Glassd9a766f2017-05-17 08:23:00 -060021#include <asm/setup.h>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020022#include <asm/arch/at91sam9_smc.h>
23#include <asm/arch/at91_common.h>
24#include <asm/arch/at91_pmc.h>
25#include <asm/arch/at91_rstc.h>
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020026#include <asm/arch/at91_matrix.h>
27#include <asm/arch/at91_pio.h>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020028#include <asm/arch/clk.h>
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020029#include <netdev.h>
30
31DECLARE_GLOBAL_DATA_PTR;
32
33/*
34 * Miscelaneous platform dependent initialisations
35 */
36
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +010037#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020038static int hw_rev = -1; /* hardware revision */
39
40int get_hw_rev(void)
41{
42 if (hw_rev >= 0)
43 return hw_rev;
44
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020045 hw_rev = at91_get_pio_value(AT91_PIO_PORTB, 19);
46 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 20) << 1;
47 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 21) << 2;
48 hw_rev |= at91_get_pio_value(AT91_PIO_PORTB, 22) << 3;
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020049
50 if (hw_rev == 15)
51 hw_rev = 0;
52
53 return hw_rev;
54}
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +010055#endif /* CONFIG_REVISION_TAG */
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020056
57#ifdef CONFIG_CMD_NAND
58static void meesc_nand_hw_init(void)
59{
60 unsigned long csa;
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +000061 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
62 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020063
64 /* Enable CS3 */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020065 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
66 writel(csa, &matrix->csa[0]);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020067
68 /* Configure SMC CS3 for NAND/SmartMedia */
Daniel Gorsulowski879fbe82012-01-25 03:19:49 +000069 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(1) |
70 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(2),
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020071 &smc->cs[3].setup);
72
73 writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
74 AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
75 &smc->cs[3].pulse);
76
Daniel Gorsulowski879fbe82012-01-25 03:19:49 +000077 writel(AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(6),
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020078 &smc->cs[3].cycle);
79 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
80 AT91_SMC_MODE_EXNW_DISABLE |
81 AT91_SMC_MODE_DBW_8 |
Daniel Gorsulowski879fbe82012-01-25 03:19:49 +000082 AT91_SMC_MODE_TDF_CYCLE(12),
Daniel Gorsulowskifba24942010-08-09 11:17:14 +020083 &smc->cs[3].mode);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020084
85 /* Configure RDY/BSY */
Andreas Bießmanna4c24d32013-11-29 12:13:45 +010086 gpio_direction_input(CONFIG_SYS_NAND_READY_PIN);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020087
88 /* Enable NandFlash */
Andreas Bießmanna4c24d32013-11-29 12:13:45 +010089 gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020090}
91#endif /* CONFIG_CMD_NAND */
92
93#ifdef CONFIG_MACB
94static void meesc_macb_hw_init(void)
95{
Wenyou Yang78f89762016-02-03 10:16:50 +080096 at91_periph_clk_enable(ATMEL_ID_EMAC);
97
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +020098 at91_macb_hw_init();
99}
100#endif
101
102/*
103 * Static memory controller initialization to enable Beckhoff ET1100 EtherCAT
104 * controller debugging
105 * The ET1100 is located at physical address 0x70000000
106 * Its process memory is located at physical address 0x70001000
107 */
108static void meesc_ethercat_hw_init(void)
109{
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000110 at91_smc_t *smc1 = (at91_smc_t *) ATMEL_BASE_SMC1;
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200111
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200112 /* Configure SMC EBI1_CS0 for EtherCAT */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200113 writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) |
114 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0),
115 &smc1->cs[0].setup);
116 writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(9) |
117 AT91_SMC_PULSE_NRD(5) | AT91_SMC_PULSE_NCS_RD(9),
118 &smc1->cs[0].pulse);
119 writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6),
120 &smc1->cs[0].cycle);
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200121 /*
122 * Configure behavior at external wait signal, byte-select mode, 16 bit
123 * data bus width, none data float wait states and TDF optimization
124 */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200125 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_EXNW_READY |
126 AT91_SMC_MODE_DBW_16 | AT91_SMC_MODE_TDF_CYCLE(0) |
127 AT91_SMC_MODE_TDF, &smc1->cs[0].mode);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200128
129 /* Configure RDY/BSY */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200130 at91_set_b_periph(AT91_PIO_PORTE, 20, 0); /* EBI1_NWAIT */
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200131}
132
133int dram_init(void)
134{
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100135 /* dram_init must store complete ramsize in gd->ram_size */
136 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
137 PHYS_SDRAM_SIZE);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200138 return 0;
139}
140
Simon Glass2f949c32017-03-31 08:40:32 -0600141int dram_init_banksize(void)
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100142{
143 gd->bd->bi_dram[0].start = PHYS_SDRAM;
144 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
Simon Glass2f949c32017-03-31 08:40:32 -0600145
146 return 0;
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100147}
148
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900149int board_eth_init(struct bd_info *bis)
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200150{
151 int rc = 0;
152#ifdef CONFIG_MACB
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000153 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200154#endif
155 return rc;
156}
157
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100158#ifdef CONFIG_DISPLAY_BOARDINFO
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200159int checkboard(void)
160{
161 char str[32];
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200162 u_char hw_type; /* hardware type */
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200163
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200164 /* read the "Type" register of the ET1100 controller */
165 hw_type = readb(CONFIG_ET1100_BASE);
166
167 switch (hw_type) {
168 case 0x11:
169 case 0x3F:
170 /* ET1100 present, arch number of MEESC-Board */
171 gd->bd->bi_arch_number = MACH_TYPE_MEESC;
172 puts("Board: CAN-EtherCAT Gateway");
173 break;
174 case 0xFF:
175 /* no ET1100 present, arch number of EtherCAN/2-Board */
176 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
177 puts("Board: EtherCAN/2 Gateway");
178 /* switch on LED1D */
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200179 at91_set_pio_output(AT91_PIO_PORTB, 12, 1);
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200180 break;
181 default:
182 /* assume, no ET1100 present, arch number of EtherCAN/2-Board */
183 gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2;
184 printf("ERROR! Read invalid hw_type: %02X\n", hw_type);
185 puts("Board: EtherCAN/2 Gateway");
186 break;
187 }
Simon Glass64b723f2017-08-03 12:22:12 -0600188 if (env_get_f("serial#", str, sizeof(str)) > 0) {
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200189 puts(", serial# ");
190 puts(str);
191 }
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100192#ifdef CONFIG_REVISION_TAG
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200193 printf("\nHardware-revision: 1.%d\n", get_hw_rev());
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100194#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200195 printf("Mach-type: %lu\n", gd->bd->bi_arch_number);
196 return 0;
197}
Daniel Gorsulowski2acb23b2015-11-02 07:59:49 +0100198#endif /* CONFIG_DISPLAY_BOARDINFO */
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200199
200#ifdef CONFIG_SERIAL_TAG
201void get_board_serial(struct tag_serialnr *serialnr)
202{
203 char *str;
204
Simon Glass64b723f2017-08-03 12:22:12 -0600205 char *serial = env_get("serial#");
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200206 if (serial) {
207 str = strchr(serial, '_');
208 if (str && (strlen(str) >= 4)) {
209 serialnr->high = (*(str + 1) << 8) | *(str + 2);
210 serialnr->low = simple_strtoul(str + 3, NULL, 16);
211 }
212 } else {
213 serialnr->high = 0;
214 serialnr->low = 0;
215 }
216}
217#endif
218
219#ifdef CONFIG_REVISION_TAG
220u32 get_board_rev(void)
221{
222 return hw_rev | 0x100;
223}
224#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200225
Daniel Gorsulowski88e57172010-01-20 08:00:11 +0100226#ifdef CONFIG_MISC_INIT_R
227int misc_init_r(void)
228{
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200229 char *str;
230 char buf[32];
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000231 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
Daniel Gorsulowski88e57172010-01-20 08:00:11 +0100232
233 /*
234 * Normally the processor clock has a divisor of 2.
235 * In some cases this this needs to be set to 4.
236 * Check the user has set environment mdiv to 4 to change the divisor.
237 */
Simon Glass64b723f2017-08-03 12:22:12 -0600238 str = env_get("mdiv");
239 if (str && (strcmp(str, "4") == 0)) {
Daniel Gorsulowskifba24942010-08-09 11:17:14 +0200240 writel((readl(&pmc->mckr) & ~AT91_PMC_MDIV) |
241 AT91SAM9_PMC_MDIV_4, &pmc->mckr);
242 at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
Daniel Gorsulowski88e57172010-01-20 08:00:11 +0100243 serial_setbrg();
244 /* Notify the user that the clock is not default */
245 printf("Setting master clock to %s MHz\n",
246 strmhz(buf, get_mck_clk_rate()));
247 }
248
249 return 0;
250}
251#endif /* CONFIG_MISC_INIT_R */
252
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000253int board_early_init_f(void)
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200254{
Wenyou Yang78f89762016-02-03 10:16:50 +0800255 at91_periph_clk_enable(ATMEL_ID_UHP);
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200256
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000257 return 0;
258}
259
260int board_init(void)
261{
Daniel Gorsulowski54b531a2009-09-29 08:03:12 +0200262 /* initialize ET1100 Controller */
263 meesc_ethercat_hw_init();
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200264
265 /* adress of boot parameters */
Matthias Fuchs2d56c2b2011-07-19 01:56:06 +0000266 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200267
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200268#ifdef CONFIG_CMD_NAND
269 meesc_nand_hw_init();
270#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200271#ifdef CONFIG_MACB
272 meesc_macb_hw_init();
273#endif
274#ifdef CONFIG_AT91_CAN
275 at91_can_hw_init();
276#endif
Daniel Gorsulowskic7b769a2010-08-09 11:17:15 +0200277#ifdef CONFIG_USB_OHCI_NEW
278 at91_uhp_hw_init();
279#endif
Daniel Gorsulowski6f196d52009-06-30 21:03:37 +0200280 return 0;
281}