Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2008 |
Stelian Pop | c9e798d | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 3 | * Stelian Pop <stelian@popies.net> |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 4 | * Lead Tech Design <www.leadtechdesign.com> |
| 5 | * |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 6 | * (C) Copyright 2009-2015 |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 7 | * Daniel Gorsulowski <daniel.gorsulowski@esd.eu> |
| 8 | * esd electronic system design gmbh <www.esd.eu> |
| 9 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 14 | #include <asm/io.h> |
Andreas Bießmann | ac45bb1 | 2013-11-29 12:13:45 +0100 | [diff] [blame] | 15 | #include <asm/gpio.h> |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 16 | #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 Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 20 | #include <asm/arch/at91_matrix.h> |
| 21 | #include <asm/arch/at91_pio.h> |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 22 | #include <asm/arch/clk.h> |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 23 | #include <netdev.h> |
| 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
| 27 | /* |
| 28 | * Miscelaneous platform dependent initialisations |
| 29 | */ |
| 30 | |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 31 | #ifdef CONFIG_REVISION_TAG |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 32 | static int hw_rev = -1; /* hardware revision */ |
| 33 | |
| 34 | int get_hw_rev(void) |
| 35 | { |
| 36 | if (hw_rev >= 0) |
| 37 | return hw_rev; |
| 38 | |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 39 | 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 Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 43 | |
| 44 | if (hw_rev == 15) |
| 45 | hw_rev = 0; |
| 46 | |
| 47 | return hw_rev; |
| 48 | } |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 49 | #endif /* CONFIG_REVISION_TAG */ |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 50 | |
| 51 | #ifdef CONFIG_CMD_NAND |
| 52 | static void meesc_nand_hw_init(void) |
| 53 | { |
| 54 | unsigned long csa; |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 55 | at91_smc_t *smc = (at91_smc_t *) ATMEL_BASE_SMC0; |
| 56 | at91_matrix_t *matrix = (at91_matrix_t *) ATMEL_BASE_MATRIX; |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 57 | |
| 58 | /* Enable CS3 */ |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 59 | csa = readl(&matrix->csa[0]) | AT91_MATRIX_CSA_EBI_CS3A; |
| 60 | writel(csa, &matrix->csa[0]); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 61 | |
| 62 | /* Configure SMC CS3 for NAND/SmartMedia */ |
Daniel Gorsulowski | dd80264 | 2012-01-25 03:19:49 +0000 | [diff] [blame] | 63 | 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 Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 65 | &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 Gorsulowski | dd80264 | 2012-01-25 03:19:49 +0000 | [diff] [blame] | 71 | writel(AT91_SMC_CYCLE_NWE(6) | AT91_SMC_CYCLE_NRD(6), |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 72 | &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 Gorsulowski | dd80264 | 2012-01-25 03:19:49 +0000 | [diff] [blame] | 76 | AT91_SMC_MODE_TDF_CYCLE(12), |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 77 | &smc->cs[3].mode); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 78 | |
| 79 | /* Configure RDY/BSY */ |
Andreas Bießmann | ac45bb1 | 2013-11-29 12:13:45 +0100 | [diff] [blame] | 80 | gpio_direction_input(CONFIG_SYS_NAND_READY_PIN); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 81 | |
| 82 | /* Enable NandFlash */ |
Andreas Bießmann | ac45bb1 | 2013-11-29 12:13:45 +0100 | [diff] [blame] | 83 | gpio_direction_output(CONFIG_SYS_NAND_ENABLE_PIN, 1); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 84 | } |
| 85 | #endif /* CONFIG_CMD_NAND */ |
| 86 | |
| 87 | #ifdef CONFIG_MACB |
| 88 | static void meesc_macb_hw_init(void) |
| 89 | { |
Wenyou Yang | 70341e2 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 90 | at91_periph_clk_enable(ATMEL_ID_EMAC); |
| 91 | |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 92 | at91_macb_hw_init(); |
| 93 | } |
| 94 | #endif |
| 95 | |
| 96 | /* |
| 97 | * Static memory controller initialization to enable Beckhoff ET1100 EtherCAT |
| 98 | * controller debugging |
| 99 | * The ET1100 is located at physical address 0x70000000 |
| 100 | * Its process memory is located at physical address 0x70001000 |
| 101 | */ |
| 102 | static void meesc_ethercat_hw_init(void) |
| 103 | { |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 104 | at91_smc_t *smc1 = (at91_smc_t *) ATMEL_BASE_SMC1; |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 105 | |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 106 | /* Configure SMC EBI1_CS0 for EtherCAT */ |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 107 | writel(AT91_SMC_SETUP_NWE(0) | AT91_SMC_SETUP_NCS_WR(0) | |
| 108 | AT91_SMC_SETUP_NRD(0) | AT91_SMC_SETUP_NCS_RD(0), |
| 109 | &smc1->cs[0].setup); |
| 110 | writel(AT91_SMC_PULSE_NWE(4) | AT91_SMC_PULSE_NCS_WR(9) | |
| 111 | AT91_SMC_PULSE_NRD(5) | AT91_SMC_PULSE_NCS_RD(9), |
| 112 | &smc1->cs[0].pulse); |
| 113 | writel(AT91_SMC_CYCLE_NWE(10) | AT91_SMC_CYCLE_NRD(6), |
| 114 | &smc1->cs[0].cycle); |
Daniel Gorsulowski | a380279 | 2009-09-29 08:03:12 +0200 | [diff] [blame] | 115 | /* |
| 116 | * Configure behavior at external wait signal, byte-select mode, 16 bit |
| 117 | * data bus width, none data float wait states and TDF optimization |
| 118 | */ |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 119 | writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_EXNW_READY | |
| 120 | AT91_SMC_MODE_DBW_16 | AT91_SMC_MODE_TDF_CYCLE(0) | |
| 121 | AT91_SMC_MODE_TDF, &smc1->cs[0].mode); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 122 | |
| 123 | /* Configure RDY/BSY */ |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 124 | at91_set_b_periph(AT91_PIO_PORTE, 20, 0); /* EBI1_NWAIT */ |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | int dram_init(void) |
| 128 | { |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 129 | /* dram_init must store complete ramsize in gd->ram_size */ |
| 130 | gd->ram_size = get_ram_size((void *)PHYS_SDRAM, |
| 131 | PHYS_SDRAM_SIZE); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 135 | int dram_init_banksize(void) |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 136 | { |
| 137 | gd->bd->bi_dram[0].start = PHYS_SDRAM; |
| 138 | gd->bd->bi_dram[0].size = PHYS_SDRAM_SIZE; |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 139 | |
| 140 | return 0; |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 141 | } |
| 142 | |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 143 | int board_eth_init(bd_t *bis) |
| 144 | { |
| 145 | int rc = 0; |
| 146 | #ifdef CONFIG_MACB |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 147 | rc = macb_eth_initialize(0, (void *)ATMEL_BASE_EMAC, 0x00); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 148 | #endif |
| 149 | return rc; |
| 150 | } |
| 151 | |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 152 | #ifdef CONFIG_DISPLAY_BOARDINFO |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 153 | int checkboard(void) |
| 154 | { |
| 155 | char str[32]; |
Daniel Gorsulowski | a380279 | 2009-09-29 08:03:12 +0200 | [diff] [blame] | 156 | u_char hw_type; /* hardware type */ |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 157 | |
Daniel Gorsulowski | a380279 | 2009-09-29 08:03:12 +0200 | [diff] [blame] | 158 | /* read the "Type" register of the ET1100 controller */ |
| 159 | hw_type = readb(CONFIG_ET1100_BASE); |
| 160 | |
| 161 | switch (hw_type) { |
| 162 | case 0x11: |
| 163 | case 0x3F: |
| 164 | /* ET1100 present, arch number of MEESC-Board */ |
| 165 | gd->bd->bi_arch_number = MACH_TYPE_MEESC; |
| 166 | puts("Board: CAN-EtherCAT Gateway"); |
| 167 | break; |
| 168 | case 0xFF: |
| 169 | /* no ET1100 present, arch number of EtherCAN/2-Board */ |
| 170 | gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2; |
| 171 | puts("Board: EtherCAN/2 Gateway"); |
| 172 | /* switch on LED1D */ |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 173 | at91_set_pio_output(AT91_PIO_PORTB, 12, 1); |
Daniel Gorsulowski | a380279 | 2009-09-29 08:03:12 +0200 | [diff] [blame] | 174 | break; |
| 175 | default: |
| 176 | /* assume, no ET1100 present, arch number of EtherCAN/2-Board */ |
| 177 | gd->bd->bi_arch_number = MACH_TYPE_ETHERCAN2; |
| 178 | printf("ERROR! Read invalid hw_type: %02X\n", hw_type); |
| 179 | puts("Board: EtherCAN/2 Gateway"); |
| 180 | break; |
| 181 | } |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 182 | if (getenv_f("serial#", str, sizeof(str)) > 0) { |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 183 | puts(", serial# "); |
| 184 | puts(str); |
| 185 | } |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 186 | #ifdef CONFIG_REVISION_TAG |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 187 | printf("\nHardware-revision: 1.%d\n", get_hw_rev()); |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 188 | #endif |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 189 | printf("Mach-type: %lu\n", gd->bd->bi_arch_number); |
| 190 | return 0; |
| 191 | } |
Daniel Gorsulowski | 83bf005 | 2015-11-02 07:59:49 +0100 | [diff] [blame] | 192 | #endif /* CONFIG_DISPLAY_BOARDINFO */ |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 193 | |
Daniel Gorsulowski | a380279 | 2009-09-29 08:03:12 +0200 | [diff] [blame] | 194 | #ifdef CONFIG_SERIAL_TAG |
| 195 | void get_board_serial(struct tag_serialnr *serialnr) |
| 196 | { |
| 197 | char *str; |
| 198 | |
| 199 | char *serial = getenv("serial#"); |
| 200 | if (serial) { |
| 201 | str = strchr(serial, '_'); |
| 202 | if (str && (strlen(str) >= 4)) { |
| 203 | serialnr->high = (*(str + 1) << 8) | *(str + 2); |
| 204 | serialnr->low = simple_strtoul(str + 3, NULL, 16); |
| 205 | } |
| 206 | } else { |
| 207 | serialnr->high = 0; |
| 208 | serialnr->low = 0; |
| 209 | } |
| 210 | } |
| 211 | #endif |
| 212 | |
| 213 | #ifdef CONFIG_REVISION_TAG |
| 214 | u32 get_board_rev(void) |
| 215 | { |
| 216 | return hw_rev | 0x100; |
| 217 | } |
| 218 | #endif |
| 219 | |
Daniel Gorsulowski | a3f3897 | 2010-01-20 08:00:11 +0100 | [diff] [blame] | 220 | #ifdef CONFIG_MISC_INIT_R |
| 221 | int misc_init_r(void) |
| 222 | { |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 223 | char *str; |
| 224 | char buf[32]; |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 225 | at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC; |
Daniel Gorsulowski | a3f3897 | 2010-01-20 08:00:11 +0100 | [diff] [blame] | 226 | |
| 227 | /* |
| 228 | * Normally the processor clock has a divisor of 2. |
| 229 | * In some cases this this needs to be set to 4. |
| 230 | * Check the user has set environment mdiv to 4 to change the divisor. |
| 231 | */ |
| 232 | if ((str = getenv("mdiv")) && (strcmp(str, "4") == 0)) { |
Daniel Gorsulowski | d4562e0 | 2010-08-09 11:17:14 +0200 | [diff] [blame] | 233 | writel((readl(&pmc->mckr) & ~AT91_PMC_MDIV) | |
| 234 | AT91SAM9_PMC_MDIV_4, &pmc->mckr); |
| 235 | at91_clock_init(CONFIG_SYS_AT91_MAIN_CLOCK); |
Daniel Gorsulowski | a3f3897 | 2010-01-20 08:00:11 +0100 | [diff] [blame] | 236 | serial_setbrg(); |
| 237 | /* Notify the user that the clock is not default */ |
| 238 | printf("Setting master clock to %s MHz\n", |
| 239 | strmhz(buf, get_mck_clk_rate())); |
| 240 | } |
| 241 | |
| 242 | return 0; |
| 243 | } |
| 244 | #endif /* CONFIG_MISC_INIT_R */ |
| 245 | |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 246 | int board_early_init_f(void) |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 247 | { |
Wenyou Yang | 70341e2 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 248 | at91_periph_clk_enable(ATMEL_ID_PIOA); |
| 249 | at91_periph_clk_enable(ATMEL_ID_PIOB); |
| 250 | at91_periph_clk_enable(ATMEL_ID_PIOCDE); |
| 251 | at91_periph_clk_enable(ATMEL_ID_UHP); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 252 | |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 253 | at91_seriald_hw_init(); |
| 254 | |
| 255 | return 0; |
| 256 | } |
| 257 | |
| 258 | int board_init(void) |
| 259 | { |
Daniel Gorsulowski | a380279 | 2009-09-29 08:03:12 +0200 | [diff] [blame] | 260 | /* initialize ET1100 Controller */ |
| 261 | meesc_ethercat_hw_init(); |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 262 | |
| 263 | /* adress of boot parameters */ |
Matthias Fuchs | 0cb77bf | 2011-07-19 01:56:06 +0000 | [diff] [blame] | 264 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 265 | |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 266 | #ifdef CONFIG_CMD_NAND |
| 267 | meesc_nand_hw_init(); |
| 268 | #endif |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 269 | #ifdef CONFIG_HAS_DATAFLASH |
| 270 | at91_spi0_hw_init(1 << 0); |
| 271 | #endif |
| 272 | #ifdef CONFIG_MACB |
| 273 | meesc_macb_hw_init(); |
| 274 | #endif |
| 275 | #ifdef CONFIG_AT91_CAN |
| 276 | at91_can_hw_init(); |
| 277 | #endif |
Daniel Gorsulowski | 64037fb | 2010-08-09 11:17:15 +0200 | [diff] [blame] | 278 | #ifdef CONFIG_USB_OHCI_NEW |
| 279 | at91_uhp_hw_init(); |
| 280 | #endif |
Daniel Gorsulowski | 33b1d3f | 2009-06-30 21:03:37 +0200 | [diff] [blame] | 281 | return 0; |
| 282 | } |