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