1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2007-2008
4 * Stelian Pop <stelian@popies.net>
5 * Lead Tech Design <www.leadtechdesign.com>
7 * (C) Copyright 2009-2015
8 * Daniel Gorsulowski <daniel.gorsulowski@esd.eu>
9 * esd electronic system design gmbh <www.esd.eu>
19 #include <asm/mach-types.h>
20 #include <asm/setup.h>
21 #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>
25 #include <asm/arch/at91_matrix.h>
26 #include <asm/arch/at91_pio.h>
27 #include <asm/arch/clk.h>
30 DECLARE_GLOBAL_DATA_PTR;
33 * Miscelaneous platform dependent initialisations
36 #ifdef CONFIG_REVISION_TAG
37 static int hw_rev = -1; /* hardware revision */
44 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;
54 #endif /* CONFIG_REVISION_TAG */
56 #ifdef CONFIG_CMD_NAND
57 static void meesc_nand_hw_init(void)
60 at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0;
61 at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX;
64 csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A;
65 writel(csa, &matrix->csa[0]);
67 /* Configure SMC CS3 for NAND/SmartMedia */
68 writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(1) |
69 AT91_SMC_SETUP_NRD(2) | AT91_SMC_SETUP_NCS_RD(2),
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),
76 writel(AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(6),
78 writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
79 AT91_SMC_MODE_EXNW_DISABLE |
81 AT91_SMC_MODE_TDF_CYCLE(12),
84 /* Configure RDY/BSY */
85 gpio_direction_input(CONFIG_SYS_NAND_READY_PIN);
87 /* Enable NandFlash */
88 gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
90 #endif /* CONFIG_CMD_NAND */
93 static void meesc_macb_hw_init(void)
95 at91_periph_clk_enable(ATMEL_ID_EMAC);
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
107 static void meesc_ethercat_hw_init(void)
109 at91_smc_t *smc1 = (at91_smc_t *) ATMEL_BASE_SMC1;
111 /* Configure SMC EBI1_CS0 for EtherCAT */
112 writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) |
113 AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0),
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),
118 writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6),
121 * Configure behavior at external wait signal, byte-select mode, 16 bit
122 * data bus width, none data float wait states and TDF optimization
124 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);
128 /* Configure RDY/BSY */
129 at91_set_b_periph(AT91_PIO_PORTE, 20, 0); /* EBI1_NWAIT */
134 /* dram_init must store complete ramsize in gd->ram_size */
135 gd->ram_size = get_ram_size((void *)PHYS_SDRAM,
140 int dram_init_banksize(void)
142 gd->bd->bi_dram[0].start = PHYS_SDRAM;
143 gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE;
148 int board_eth_init(bd_t *bis)
152 rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00);
157 #ifdef CONFIG_DISPLAY_BOARDINFO
161 u_char hw_type; /* hardware type */
163 /* read the "Type" register of the ET1100 controller */
164 hw_type = readb(CONFIG_ET1100_BASE);
169 /* ET1100 present, arch number of MEESC-Board */
170 gd->bd->bi_arch_number = MACH_TYPE_MEESC;
171 puts("Board: CAN-EtherCAT Gateway");
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 */
178 at91_set_pio_output(AT91_PIO_PORTB, 12, 1);
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");
187 if (env_get_f("serial#", str, sizeof(str)) > 0) {
191 #ifdef CONFIG_REVISION_TAG
192 printf("\nHardware-revision: 1.%d\n", get_hw_rev());
194 printf("Mach-type: %lu\n", gd->bd->bi_arch_number);
197 #endif /* CONFIG_DISPLAY_BOARDINFO */
199 #ifdef CONFIG_SERIAL_TAG
200 void get_board_serial(struct tag_serialnr *serialnr)
204 char *serial = env_get("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);
218 #ifdef CONFIG_REVISION_TAG
219 u32 get_board_rev(void)
221 return hw_rev | 0x100;
225 #ifdef CONFIG_MISC_INIT_R
226 int misc_init_r(void)
230 at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
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.
237 str = env_get("mdiv");
238 if (str && (strcmp(str, "4") == 0)) {
239 writel((readl(&pmc->mckr) & ~AT91_PMC_MDIV) |
240 AT91SAM9_PMC_MDIV_4, &pmc->mckr);
241 at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK);
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()));
250 #endif /* CONFIG_MISC_INIT_R */
252 int board_early_init_f(void)
254 at91_periph_clk_enable(ATMEL_ID_UHP);
261 /* initialize ET1100 Controller */
262 meesc_ethercat_hw_init();
264 /* adress of boot parameters */
265 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
267 #ifdef CONFIG_CMD_NAND
268 meesc_nand_hw_init();
271 meesc_macb_hw_init();
273 #ifdef CONFIG_AT91_CAN
276 #ifdef CONFIG_USB_OHCI_NEW