Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 2 | /* |
Stefan Roese | d35831f | 2016-01-07 14:03:11 +0100 | [diff] [blame] | 3 | * Copyright (C) 2014-2016 Stefan Roese <sr@denx.de> |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Stefan Roese | 4d991cb | 2015-06-29 14:58:13 +0200 | [diff] [blame] | 7 | #include <ahci.h> |
| 8 | #include <linux/mbus.h> |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 9 | #include <asm/io.h> |
Stefan Roese | 5730360 | 2015-05-18 16:09:43 +0000 | [diff] [blame] | 10 | #include <asm/pl310.h> |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 11 | #include <asm/arch/cpu.h> |
| 12 | #include <asm/arch/soc.h> |
Stefan Roese | 7f1adcd | 2015-06-29 14:58:10 +0200 | [diff] [blame] | 13 | #include <sdhci.h> |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 14 | |
| 15 | #define DDR_BASE_CS_OFF(n) (0x0000 + ((n) << 3)) |
| 16 | #define DDR_SIZE_CS_OFF(n) (0x0004 + ((n) << 3)) |
| 17 | |
| 18 | static struct mbus_win windows[] = { |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 19 | /* SPI */ |
Stefan Roese | 8ed20d6 | 2015-07-01 12:55:07 +0200 | [diff] [blame] | 20 | { MBUS_SPI_BASE, MBUS_SPI_SIZE, |
| 21 | CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_SPIFLASH }, |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 22 | |
| 23 | /* NOR */ |
Stefan Roese | 8ed20d6 | 2015-07-01 12:55:07 +0200 | [diff] [blame] | 24 | { MBUS_BOOTROM_BASE, MBUS_BOOTROM_SIZE, |
| 25 | CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_BOOTROM }, |
Chris Packham | 0d0df46 | 2019-04-11 22:22:50 +1200 | [diff] [blame] | 26 | |
| 27 | #ifdef CONFIG_ARMADA_MSYS |
| 28 | /* DFX */ |
| 29 | { MBUS_DFX_BASE, MBUS_DFX_SIZE, CPU_TARGET_DFX, 0 }, |
| 30 | #endif |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 31 | }; |
| 32 | |
Stefan Roese | 42cc034 | 2015-08-25 14:09:12 +0200 | [diff] [blame] | 33 | void lowlevel_init(void) |
| 34 | { |
| 35 | /* |
| 36 | * Dummy implementation, we only need LOWLEVEL_INIT |
| 37 | * on Armada to configure CP15 in start.S / cpu_init_cp15() |
| 38 | */ |
| 39 | } |
| 40 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 41 | void reset_cpu(unsigned long ignored) |
| 42 | { |
| 43 | struct mvebu_system_registers *reg = |
| 44 | (struct mvebu_system_registers *)MVEBU_SYSTEM_REG_BASE; |
| 45 | |
| 46 | writel(readl(®->rstoutn_mask) | 1, ®->rstoutn_mask); |
| 47 | writel(readl(®->sys_soft_rst) | 1, ®->sys_soft_rst); |
| 48 | while (1) |
| 49 | ; |
| 50 | } |
| 51 | |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 52 | int mvebu_soc_family(void) |
| 53 | { |
| 54 | u16 devid = (readl(MVEBU_REG_PCIE_DEVID) >> 16) & 0xffff; |
| 55 | |
Phil Sutter | 6202953 | 2015-12-25 14:41:24 +0100 | [diff] [blame] | 56 | switch (devid) { |
| 57 | case SOC_MV78230_ID: |
| 58 | case SOC_MV78260_ID: |
| 59 | case SOC_MV78460_ID: |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 60 | return MVEBU_SOC_AXP; |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 61 | |
| 62 | case SOC_88F6720_ID: |
| 63 | return MVEBU_SOC_A375; |
| 64 | |
Phil Sutter | 6202953 | 2015-12-25 14:41:24 +0100 | [diff] [blame] | 65 | case SOC_88F6810_ID: |
| 66 | case SOC_88F6820_ID: |
| 67 | case SOC_88F6828_ID: |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 68 | return MVEBU_SOC_A38X; |
Chris Packham | 0f8031a | 2017-09-04 17:38:31 +1200 | [diff] [blame] | 69 | |
| 70 | case SOC_98DX3236_ID: |
| 71 | case SOC_98DX3336_ID: |
| 72 | case SOC_98DX4251_ID: |
| 73 | return MVEBU_SOC_MSYS; |
Phil Sutter | 6202953 | 2015-12-25 14:41:24 +0100 | [diff] [blame] | 74 | } |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 75 | |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 76 | return MVEBU_SOC_UNKNOWN; |
| 77 | } |
| 78 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 79 | #if defined(CONFIG_DISPLAY_CPUINFO) |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 80 | |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 81 | #if defined(CONFIG_ARMADA_375) |
| 82 | /* SAR frequency values for Armada 375 */ |
| 83 | static const struct sar_freq_modes sar_freq_tab[] = { |
| 84 | { 0, 0x0, 266, 133, 266 }, |
| 85 | { 1, 0x0, 333, 167, 167 }, |
| 86 | { 2, 0x0, 333, 167, 222 }, |
| 87 | { 3, 0x0, 333, 167, 333 }, |
| 88 | { 4, 0x0, 400, 200, 200 }, |
| 89 | { 5, 0x0, 400, 200, 267 }, |
| 90 | { 6, 0x0, 400, 200, 400 }, |
| 91 | { 7, 0x0, 500, 250, 250 }, |
| 92 | { 8, 0x0, 500, 250, 334 }, |
| 93 | { 9, 0x0, 500, 250, 500 }, |
| 94 | { 10, 0x0, 533, 267, 267 }, |
| 95 | { 11, 0x0, 533, 267, 356 }, |
| 96 | { 12, 0x0, 533, 267, 533 }, |
| 97 | { 13, 0x0, 600, 300, 300 }, |
| 98 | { 14, 0x0, 600, 300, 400 }, |
| 99 | { 15, 0x0, 600, 300, 600 }, |
| 100 | { 16, 0x0, 666, 333, 333 }, |
| 101 | { 17, 0x0, 666, 333, 444 }, |
| 102 | { 18, 0x0, 666, 333, 666 }, |
| 103 | { 19, 0x0, 800, 400, 267 }, |
| 104 | { 20, 0x0, 800, 400, 400 }, |
| 105 | { 21, 0x0, 800, 400, 534 }, |
| 106 | { 22, 0x0, 900, 450, 300 }, |
| 107 | { 23, 0x0, 900, 450, 450 }, |
| 108 | { 24, 0x0, 900, 450, 600 }, |
| 109 | { 25, 0x0, 1000, 500, 500 }, |
| 110 | { 26, 0x0, 1000, 500, 667 }, |
| 111 | { 27, 0x0, 1000, 333, 500 }, |
| 112 | { 28, 0x0, 400, 400, 400 }, |
| 113 | { 29, 0x0, 1100, 550, 550 }, |
| 114 | { 0xff, 0xff, 0, 0, 0 } /* 0xff marks end of array */ |
| 115 | }; |
| 116 | #elif defined(CONFIG_ARMADA_38X) |
Stefan Roese | d35831f | 2016-01-07 14:03:11 +0100 | [diff] [blame] | 117 | /* SAR frequency values for Armada 38x */ |
Stefan Roese | a9fc5a2 | 2016-01-07 14:04:51 +0100 | [diff] [blame] | 118 | static const struct sar_freq_modes sar_freq_tab[] = { |
Chris Packham | 0a91e1c | 2017-09-05 17:03:26 +1200 | [diff] [blame] | 119 | { 0x0, 0x0, 666, 333, 333 }, |
| 120 | { 0x2, 0x0, 800, 400, 400 }, |
| 121 | { 0x4, 0x0, 1066, 533, 533 }, |
| 122 | { 0x6, 0x0, 1200, 600, 600 }, |
| 123 | { 0x8, 0x0, 1332, 666, 666 }, |
| 124 | { 0xc, 0x0, 1600, 800, 800 }, |
| 125 | { 0x10, 0x0, 1866, 933, 933 }, |
| 126 | { 0x13, 0x0, 2000, 1000, 933 }, |
| 127 | { 0xff, 0xff, 0, 0, 0 } /* 0xff marks end of array */ |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 128 | }; |
Chris Packham | 0d0df46 | 2019-04-11 22:22:50 +1200 | [diff] [blame] | 129 | #elif defined(CONFIG_ARMADA_MSYS) |
| 130 | static const struct sar_freq_modes sar_freq_tab[] = { |
| 131 | { 0x0, 0x0, 400, 400, 400 }, |
| 132 | { 0x2, 0x0, 667, 333, 667 }, |
| 133 | { 0x3, 0x0, 800, 400, 800 }, |
| 134 | { 0x5, 0x0, 800, 400, 800 }, |
| 135 | { 0xff, 0xff, 0, 0, 0 } /* 0xff marks end of array */ |
| 136 | }; |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 137 | #else |
Stefan Roese | d35831f | 2016-01-07 14:03:11 +0100 | [diff] [blame] | 138 | /* SAR frequency values for Armada XP */ |
Stefan Roese | a9fc5a2 | 2016-01-07 14:04:51 +0100 | [diff] [blame] | 139 | static const struct sar_freq_modes sar_freq_tab[] = { |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 140 | { 0xa, 0x5, 800, 400, 400 }, |
| 141 | { 0x1, 0x5, 1066, 533, 533 }, |
| 142 | { 0x2, 0x5, 1200, 600, 600 }, |
| 143 | { 0x2, 0x9, 1200, 600, 400 }, |
| 144 | { 0x3, 0x5, 1333, 667, 667 }, |
| 145 | { 0x4, 0x5, 1500, 750, 750 }, |
| 146 | { 0x4, 0x9, 1500, 750, 500 }, |
| 147 | { 0xb, 0x9, 1600, 800, 533 }, |
| 148 | { 0xb, 0xa, 1600, 800, 640 }, |
| 149 | { 0xb, 0x5, 1600, 800, 800 }, |
| 150 | { 0xff, 0xff, 0, 0, 0 } /* 0xff marks end of array */ |
| 151 | }; |
| 152 | #endif |
| 153 | |
| 154 | void get_sar_freq(struct sar_freq_modes *sar_freq) |
| 155 | { |
| 156 | u32 val; |
| 157 | u32 freq; |
| 158 | int i; |
| 159 | |
Chris Packham | 0d0df46 | 2019-04-11 22:22:50 +1200 | [diff] [blame] | 160 | #if defined(CONFIG_ARMADA_375) || defined(CONFIG_ARMADA_MSYS) |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 161 | val = readl(CONFIG_SAR2_REG); /* SAR - Sample At Reset */ |
| 162 | #else |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 163 | val = readl(CONFIG_SAR_REG); /* SAR - Sample At Reset */ |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 164 | #endif |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 165 | freq = (val & SAR_CPU_FREQ_MASK) >> SAR_CPU_FREQ_OFFS; |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 166 | #if defined(SAR2_CPU_FREQ_MASK) |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 167 | /* |
| 168 | * Shift CPU0 clock frequency select bit from SAR2 register |
| 169 | * into correct position |
| 170 | */ |
| 171 | freq |= ((readl(CONFIG_SAR2_REG) & SAR2_CPU_FREQ_MASK) |
| 172 | >> SAR2_CPU_FREQ_OFFS) << 3; |
| 173 | #endif |
| 174 | for (i = 0; sar_freq_tab[i].val != 0xff; i++) { |
| 175 | if (sar_freq_tab[i].val == freq) { |
Chris Packham | 0d0df46 | 2019-04-11 22:22:50 +1200 | [diff] [blame] | 176 | #if defined(CONFIG_ARMADA_375) || defined(CONFIG_ARMADA_38X) || defined(CONFIG_ARMADA_MSYS) |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 177 | *sar_freq = sar_freq_tab[i]; |
| 178 | return; |
| 179 | #else |
| 180 | int k; |
| 181 | u8 ffc; |
| 182 | |
| 183 | ffc = (val & SAR_FFC_FREQ_MASK) >> |
| 184 | SAR_FFC_FREQ_OFFS; |
| 185 | for (k = i; sar_freq_tab[k].ffc != 0xff; k++) { |
| 186 | if (sar_freq_tab[k].ffc == ffc) { |
| 187 | *sar_freq = sar_freq_tab[k]; |
| 188 | return; |
| 189 | } |
| 190 | } |
| 191 | i = k; |
| 192 | #endif |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | /* SAR value not found, return 0 for frequencies */ |
| 197 | *sar_freq = sar_freq_tab[i - 1]; |
| 198 | } |
| 199 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 200 | int print_cpuinfo(void) |
| 201 | { |
| 202 | u16 devid = (readl(MVEBU_REG_PCIE_DEVID) >> 16) & 0xffff; |
| 203 | u8 revid = readl(MVEBU_REG_PCIE_REVID) & 0xff; |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 204 | struct sar_freq_modes sar_freq; |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 205 | |
| 206 | puts("SoC: "); |
| 207 | |
| 208 | switch (devid) { |
Phil Sutter | 6202953 | 2015-12-25 14:41:24 +0100 | [diff] [blame] | 209 | case SOC_MV78230_ID: |
| 210 | puts("MV78230-"); |
| 211 | break; |
Stefan Roese | bf0db8b | 2015-12-09 11:00:51 +0100 | [diff] [blame] | 212 | case SOC_MV78260_ID: |
| 213 | puts("MV78260-"); |
| 214 | break; |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 215 | case SOC_MV78460_ID: |
| 216 | puts("MV78460-"); |
| 217 | break; |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 218 | case SOC_88F6720_ID: |
| 219 | puts("MV88F6720-"); |
| 220 | break; |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 221 | case SOC_88F6810_ID: |
| 222 | puts("MV88F6810-"); |
| 223 | break; |
| 224 | case SOC_88F6820_ID: |
| 225 | puts("MV88F6820-"); |
| 226 | break; |
| 227 | case SOC_88F6828_ID: |
| 228 | puts("MV88F6828-"); |
| 229 | break; |
Chris Packham | 0f8031a | 2017-09-04 17:38:31 +1200 | [diff] [blame] | 230 | case SOC_98DX3236_ID: |
| 231 | puts("98DX3236-"); |
| 232 | break; |
| 233 | case SOC_98DX3336_ID: |
| 234 | puts("98DX3336-"); |
| 235 | break; |
| 236 | case SOC_98DX4251_ID: |
| 237 | puts("98DX4251-"); |
| 238 | break; |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 239 | default: |
| 240 | puts("Unknown-"); |
| 241 | break; |
| 242 | } |
| 243 | |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 244 | if (mvebu_soc_family() == MVEBU_SOC_AXP) { |
| 245 | switch (revid) { |
| 246 | case 1: |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 247 | puts("A0"); |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 248 | break; |
| 249 | case 2: |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 250 | puts("B0"); |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 251 | break; |
| 252 | default: |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 253 | printf("?? (%x)", revid); |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 254 | break; |
| 255 | } |
| 256 | } |
| 257 | |
Stefan Roese | 09e89ab | 2016-02-10 07:23:00 +0100 | [diff] [blame] | 258 | if (mvebu_soc_family() == MVEBU_SOC_A375) { |
| 259 | switch (revid) { |
| 260 | case MV_88F67XX_A0_ID: |
| 261 | puts("A0"); |
| 262 | break; |
| 263 | default: |
| 264 | printf("?? (%x)", revid); |
| 265 | break; |
| 266 | } |
| 267 | } |
| 268 | |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 269 | if (mvebu_soc_family() == MVEBU_SOC_A38X) { |
| 270 | switch (revid) { |
| 271 | case MV_88F68XX_Z1_ID: |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 272 | puts("Z1"); |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 273 | break; |
| 274 | case MV_88F68XX_A0_ID: |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 275 | puts("A0"); |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 276 | break; |
Chris Packham | d997ad0 | 2018-11-28 10:32:00 +1300 | [diff] [blame] | 277 | case MV_88F68XX_B0_ID: |
| 278 | puts("B0"); |
| 279 | break; |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 280 | default: |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 281 | printf("?? (%x)", revid); |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 282 | break; |
| 283 | } |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 284 | } |
| 285 | |
Chris Packham | 0d0df46 | 2019-04-11 22:22:50 +1200 | [diff] [blame] | 286 | if (mvebu_soc_family() == MVEBU_SOC_MSYS) { |
| 287 | switch (revid) { |
| 288 | case 3: |
| 289 | puts("A0"); |
| 290 | break; |
| 291 | case 4: |
| 292 | puts("A1"); |
| 293 | break; |
| 294 | default: |
| 295 | printf("?? (%x)", revid); |
| 296 | break; |
| 297 | } |
| 298 | } |
| 299 | |
Stefan Roese | d718bf2 | 2015-12-21 12:36:40 +0100 | [diff] [blame] | 300 | get_sar_freq(&sar_freq); |
| 301 | printf(" at %d MHz\n", sar_freq.p_clk); |
| 302 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 303 | return 0; |
| 304 | } |
| 305 | #endif /* CONFIG_DISPLAY_CPUINFO */ |
| 306 | |
| 307 | /* |
| 308 | * This function initialize Controller DRAM Fastpath windows. |
| 309 | * It takes the CS size information from the 0x1500 scratch registers |
| 310 | * and sets the correct windows sizes and base addresses accordingly. |
| 311 | * |
| 312 | * These values are set in the scratch registers by the Marvell |
Chris Packham | 1670a15 | 2018-12-14 16:27:57 +1300 | [diff] [blame] | 313 | * DDR3 training code, which is executed by the SPL before the |
| 314 | * main payload (U-Boot) is executed. |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 315 | */ |
| 316 | static void update_sdram_window_sizes(void) |
| 317 | { |
| 318 | u64 base = 0; |
| 319 | u32 size, temp; |
| 320 | int i; |
| 321 | |
| 322 | for (i = 0; i < SDRAM_MAX_CS; i++) { |
| 323 | size = readl((MVEBU_SDRAM_SCRATCH + (i * 8))) & SDRAM_ADDR_MASK; |
| 324 | if (size != 0) { |
| 325 | size |= ~(SDRAM_ADDR_MASK); |
| 326 | |
| 327 | /* Set Base Address */ |
| 328 | temp = (base & 0xFF000000ll) | ((base >> 32) & 0xF); |
| 329 | writel(temp, MVEBU_SDRAM_BASE + DDR_BASE_CS_OFF(i)); |
| 330 | |
| 331 | /* |
| 332 | * Check if out of max window size and resize |
| 333 | * the window |
| 334 | */ |
| 335 | temp = (readl(MVEBU_SDRAM_BASE + DDR_SIZE_CS_OFF(i)) & |
| 336 | ~(SDRAM_ADDR_MASK)) | 1; |
| 337 | temp |= (size & SDRAM_ADDR_MASK); |
| 338 | writel(temp, MVEBU_SDRAM_BASE + DDR_SIZE_CS_OFF(i)); |
| 339 | |
| 340 | base += ((u64)size + 1); |
| 341 | } else { |
| 342 | /* |
| 343 | * Disable window if not used, otherwise this |
| 344 | * leads to overlapping enabled windows with |
| 345 | * pretty strange results |
| 346 | */ |
| 347 | clrbits_le32(MVEBU_SDRAM_BASE + DDR_SIZE_CS_OFF(i), 1); |
| 348 | } |
| 349 | } |
| 350 | } |
| 351 | |
Stefan Roese | 9f62b44 | 2015-04-24 10:49:11 +0200 | [diff] [blame] | 352 | void mmu_disable(void) |
| 353 | { |
| 354 | asm volatile( |
| 355 | "mrc p15, 0, r0, c1, c0, 0\n" |
| 356 | "bic r0, #1\n" |
| 357 | "mcr p15, 0, r0, c1, c0, 0\n"); |
| 358 | } |
| 359 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 360 | #ifdef CONFIG_ARCH_CPU_INIT |
Kevin Smith | e1b078e | 2015-05-18 16:09:44 +0000 | [diff] [blame] | 361 | static void set_cbar(u32 addr) |
| 362 | { |
| 363 | asm("mcr p15, 4, %0, c15, c0" : : "r" (addr)); |
| 364 | } |
| 365 | |
Stefan Roese | dee40d2 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 366 | #define MV_USB_PHY_BASE (MVEBU_AXP_USB_BASE + 0x800) |
| 367 | #define MV_USB_PHY_PLL_REG(reg) (MV_USB_PHY_BASE | (((reg) & 0xF) << 2)) |
| 368 | #define MV_USB_X3_BASE(addr) (MVEBU_AXP_USB_BASE | BIT(11) | \ |
| 369 | (((addr) & 0xF) << 6)) |
| 370 | #define MV_USB_X3_PHY_CHANNEL(dev, reg) (MV_USB_X3_BASE((dev) + 1) | \ |
| 371 | (((reg) & 0xF) << 2)) |
| 372 | |
| 373 | static void setup_usb_phys(void) |
| 374 | { |
| 375 | int dev; |
| 376 | |
| 377 | /* |
| 378 | * USB PLL init |
| 379 | */ |
| 380 | |
| 381 | /* Setup PLL frequency */ |
| 382 | /* USB REF frequency = 25 MHz */ |
| 383 | clrsetbits_le32(MV_USB_PHY_PLL_REG(1), 0x3ff, 0x605); |
| 384 | |
| 385 | /* Power up PLL and PHY channel */ |
Stefan Roese | ab8a4c6 | 2015-12-04 13:08:34 +0100 | [diff] [blame] | 386 | setbits_le32(MV_USB_PHY_PLL_REG(2), BIT(9)); |
Stefan Roese | dee40d2 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 387 | |
| 388 | /* Assert VCOCAL_START */ |
Stefan Roese | ab8a4c6 | 2015-12-04 13:08:34 +0100 | [diff] [blame] | 389 | setbits_le32(MV_USB_PHY_PLL_REG(1), BIT(21)); |
Stefan Roese | dee40d2 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 390 | |
| 391 | mdelay(1); |
| 392 | |
| 393 | /* |
| 394 | * USB PHY init (change from defaults) specific for 40nm (78X30 78X60) |
| 395 | */ |
| 396 | |
| 397 | for (dev = 0; dev < 3; dev++) { |
Stefan Roese | ab8a4c6 | 2015-12-04 13:08:34 +0100 | [diff] [blame] | 398 | setbits_le32(MV_USB_X3_PHY_CHANNEL(dev, 3), BIT(15)); |
Stefan Roese | dee40d2 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 399 | |
| 400 | /* Assert REG_RCAL_START in channel REG 1 */ |
Stefan Roese | ab8a4c6 | 2015-12-04 13:08:34 +0100 | [diff] [blame] | 401 | setbits_le32(MV_USB_X3_PHY_CHANNEL(dev, 1), BIT(12)); |
Stefan Roese | dee40d2 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 402 | udelay(40); |
Stefan Roese | ab8a4c6 | 2015-12-04 13:08:34 +0100 | [diff] [blame] | 403 | clrbits_le32(MV_USB_X3_PHY_CHANNEL(dev, 1), BIT(12)); |
Stefan Roese | dee40d2 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 404 | } |
| 405 | } |
Kevin Smith | e1b078e | 2015-05-18 16:09:44 +0000 | [diff] [blame] | 406 | |
Stefan Roese | f4e6ec7 | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 407 | /* |
| 408 | * This function is not called from the SPL U-Boot version |
| 409 | */ |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 410 | int arch_cpu_init(void) |
| 411 | { |
Stefan Roese | 42cc034 | 2015-08-25 14:09:12 +0200 | [diff] [blame] | 412 | struct pl310_regs *const pl310 = |
| 413 | (struct pl310_regs *)CONFIG_SYS_PL310_BASE; |
| 414 | |
Stefan Roese | cefd764 | 2015-08-24 11:03:50 +0200 | [diff] [blame] | 415 | /* |
| 416 | * Only with disabled MMU its possible to switch the base |
| 417 | * register address on Armada 38x. Without this the SDRAM |
| 418 | * located at >= 0x4000.0000 is also not accessible, as its |
| 419 | * still locked to cache. |
| 420 | */ |
| 421 | mmu_disable(); |
Stefan Roese | 9f62b44 | 2015-04-24 10:49:11 +0200 | [diff] [blame] | 422 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 423 | /* Linux expects the internal registers to be at 0xf1000000 */ |
| 424 | writel(SOC_REGS_PHY_BASE, INTREG_BASE_ADDR_REG); |
Kevin Smith | e1b078e | 2015-05-18 16:09:44 +0000 | [diff] [blame] | 425 | set_cbar(SOC_REGS_PHY_BASE + 0xC000); |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 426 | |
Stefan Roese | cefd764 | 2015-08-24 11:03:50 +0200 | [diff] [blame] | 427 | /* |
| 428 | * From this stage on, the SoC detection is working. As we have |
| 429 | * configured the internal register base to the value used |
| 430 | * in the macros / defines in the U-Boot header (soc.h). |
| 431 | */ |
Stefan Roese | cefd764 | 2015-08-24 11:03:50 +0200 | [diff] [blame] | 432 | |
Stefan Roese | c86d53f | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 433 | if (mvebu_soc_family() == MVEBU_SOC_A38X) { |
| 434 | /* |
| 435 | * To fully release / unlock this area from cache, we need |
| 436 | * to flush all caches and disable the L2 cache. |
| 437 | */ |
| 438 | icache_disable(); |
| 439 | dcache_disable(); |
| 440 | clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
| 441 | } |
Stefan Roese | cefd764 | 2015-08-24 11:03:50 +0200 | [diff] [blame] | 442 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 443 | /* |
| 444 | * We need to call mvebu_mbus_probe() before calling |
| 445 | * update_sdram_window_sizes() as it disables all previously |
| 446 | * configured mbus windows and then configures them as |
| 447 | * required for U-Boot. Calling update_sdram_window_sizes() |
| 448 | * without this configuration will not work, as the internal |
| 449 | * registers can't be accessed reliably because of potenial |
| 450 | * double mapping. |
| 451 | * After updating the SDRAM access windows we need to call |
| 452 | * mvebu_mbus_probe() again, as this now correctly configures |
| 453 | * the SDRAM areas that are later used by the MVEBU drivers |
| 454 | * (e.g. USB, NETA). |
| 455 | */ |
| 456 | |
| 457 | /* |
| 458 | * First disable all windows |
| 459 | */ |
| 460 | mvebu_mbus_probe(NULL, 0); |
| 461 | |
Stefan Roese | 9c6d3b7 | 2015-04-25 06:29:51 +0200 | [diff] [blame] | 462 | if (mvebu_soc_family() == MVEBU_SOC_AXP) { |
| 463 | /* |
| 464 | * Now the SDRAM access windows can be reconfigured using |
| 465 | * the information in the SDRAM scratch pad registers |
| 466 | */ |
| 467 | update_sdram_window_sizes(); |
| 468 | } |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 469 | |
| 470 | /* |
| 471 | * Finally the mbus windows can be configured with the |
| 472 | * updated SDRAM sizes |
| 473 | */ |
| 474 | mvebu_mbus_probe(windows, ARRAY_SIZE(windows)); |
| 475 | |
Stefan Roese | 2a0b7dc | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 476 | if (mvebu_soc_family() == MVEBU_SOC_AXP) { |
| 477 | /* Enable GBE0, GBE1, LCD and NFC PUP */ |
| 478 | clrsetbits_le32(ARMADA_XP_PUP_ENABLE, 0, |
| 479 | GE0_PUP_EN | GE1_PUP_EN | LCD_PUP_EN | |
| 480 | NAND_PUP_EN | SPI_PUP_EN); |
Stefan Roese | dee40d2 | 2015-07-22 18:26:13 +0200 | [diff] [blame] | 481 | |
| 482 | /* Configure USB PLL and PHYs on AXP */ |
| 483 | setup_usb_phys(); |
Stefan Roese | 2a0b7dc | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 484 | } |
| 485 | |
| 486 | /* Enable NAND and NAND arbiter */ |
| 487 | clrsetbits_le32(MVEBU_SOC_DEV_MUX_REG, 0, NAND_EN | NAND_ARBITER_EN); |
| 488 | |
Stefan Roese | 501c098 | 2015-07-01 13:28:39 +0200 | [diff] [blame] | 489 | /* Disable MBUS error propagation */ |
| 490 | clrsetbits_le32(SOC_COHERENCY_FABRIC_CTRL_REG, MBUS_ERR_PROP_EN, 0); |
| 491 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 492 | return 0; |
| 493 | } |
| 494 | #endif /* CONFIG_ARCH_CPU_INIT */ |
| 495 | |
Stefan Roese | 2a0b7dc | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 496 | u32 mvebu_get_nand_clock(void) |
| 497 | { |
Chris Packham | d7b4731 | 2016-08-22 12:38:39 +1200 | [diff] [blame] | 498 | u32 reg; |
| 499 | |
| 500 | if (mvebu_soc_family() == MVEBU_SOC_A38X) |
| 501 | reg = MVEBU_DFX_DIV_CLK_CTRL(1); |
Chris Packham | 689f9cf | 2019-04-11 22:22:51 +1200 | [diff] [blame] | 502 | else if (mvebu_soc_family() == MVEBU_SOC_MSYS) |
| 503 | reg = MVEBU_DFX_DIV_CLK_CTRL(8); |
Chris Packham | d7b4731 | 2016-08-22 12:38:39 +1200 | [diff] [blame] | 504 | else |
| 505 | reg = MVEBU_CORE_DIV_CLK_CTRL(1); |
| 506 | |
Stefan Roese | 2a0b7dc | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 507 | return CONFIG_SYS_MVEBU_PLL_CLOCK / |
Chris Packham | d7b4731 | 2016-08-22 12:38:39 +1200 | [diff] [blame] | 508 | ((readl(reg) & |
Stefan Roese | 2a0b7dc | 2015-07-16 10:40:05 +0200 | [diff] [blame] | 509 | NAND_ECC_DIVCKL_RATIO_MASK) >> NAND_ECC_DIVCKL_RATIO_OFFS); |
| 510 | } |
| 511 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 512 | /* |
| 513 | * SOC specific misc init |
| 514 | */ |
| 515 | #if defined(CONFIG_ARCH_MISC_INIT) |
| 516 | int arch_misc_init(void) |
| 517 | { |
| 518 | /* Nothing yet, perhaps we need something here later */ |
| 519 | return 0; |
| 520 | } |
| 521 | #endif /* CONFIG_ARCH_MISC_INIT */ |
| 522 | |
Pierre Bourdon | 4ec9dd4 | 2019-04-11 04:56:58 +0200 | [diff] [blame] | 523 | #if defined(CONFIG_MMC_SDHCI_MV) && !defined(CONFIG_DM_MMC) |
Stefan Roese | 7f1adcd | 2015-06-29 14:58:10 +0200 | [diff] [blame] | 524 | int board_mmc_init(bd_t *bis) |
| 525 | { |
| 526 | mv_sdh_init(MVEBU_SDIO_BASE, 0, 0, |
| 527 | SDHCI_QUIRK_32BIT_DMA_ADDR | SDHCI_QUIRK_WAIT_SEND_CMD); |
| 528 | |
| 529 | return 0; |
| 530 | } |
| 531 | #endif |
| 532 | |
Stefan Roese | 4d991cb | 2015-06-29 14:58:13 +0200 | [diff] [blame] | 533 | #define AHCI_VENDOR_SPECIFIC_0_ADDR 0xa0 |
| 534 | #define AHCI_VENDOR_SPECIFIC_0_DATA 0xa4 |
| 535 | |
| 536 | #define AHCI_WINDOW_CTRL(win) (0x60 + ((win) << 4)) |
| 537 | #define AHCI_WINDOW_BASE(win) (0x64 + ((win) << 4)) |
| 538 | #define AHCI_WINDOW_SIZE(win) (0x68 + ((win) << 4)) |
| 539 | |
| 540 | static void ahci_mvebu_mbus_config(void __iomem *base) |
| 541 | { |
| 542 | const struct mbus_dram_target_info *dram; |
| 543 | int i; |
| 544 | |
Baruch Siach | f0aa125 | 2019-05-16 13:03:57 +0300 | [diff] [blame] | 545 | /* mbus is not initialized in SPL; keep the ROM settings */ |
| 546 | if (IS_ENABLED(CONFIG_SPL_BUILD)) |
| 547 | return; |
| 548 | |
Stefan Roese | 4d991cb | 2015-06-29 14:58:13 +0200 | [diff] [blame] | 549 | dram = mvebu_mbus_dram_info(); |
| 550 | |
| 551 | for (i = 0; i < 4; i++) { |
| 552 | writel(0, base + AHCI_WINDOW_CTRL(i)); |
| 553 | writel(0, base + AHCI_WINDOW_BASE(i)); |
| 554 | writel(0, base + AHCI_WINDOW_SIZE(i)); |
| 555 | } |
| 556 | |
| 557 | for (i = 0; i < dram->num_cs; i++) { |
| 558 | const struct mbus_dram_window *cs = dram->cs + i; |
| 559 | |
| 560 | writel((cs->mbus_attr << 8) | |
| 561 | (dram->mbus_dram_target_id << 4) | 1, |
| 562 | base + AHCI_WINDOW_CTRL(i)); |
| 563 | writel(cs->base >> 16, base + AHCI_WINDOW_BASE(i)); |
| 564 | writel(((cs->size - 1) & 0xffff0000), |
| 565 | base + AHCI_WINDOW_SIZE(i)); |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | static void ahci_mvebu_regret_option(void __iomem *base) |
| 570 | { |
| 571 | /* |
| 572 | * Enable the regret bit to allow the SATA unit to regret a |
| 573 | * request that didn't receive an acknowlegde and avoid a |
| 574 | * deadlock |
| 575 | */ |
| 576 | writel(0x4, base + AHCI_VENDOR_SPECIFIC_0_ADDR); |
| 577 | writel(0x80, base + AHCI_VENDOR_SPECIFIC_0_DATA); |
| 578 | } |
| 579 | |
Baruch Siach | 4b11e5f | 2019-03-24 13:27:43 +0200 | [diff] [blame] | 580 | int board_ahci_enable(void) |
| 581 | { |
| 582 | ahci_mvebu_mbus_config((void __iomem *)MVEBU_SATA0_BASE); |
| 583 | ahci_mvebu_regret_option((void __iomem *)MVEBU_SATA0_BASE); |
| 584 | |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | #ifdef CONFIG_SCSI_AHCI_PLAT |
Stefan Roese | 4d991cb | 2015-06-29 14:58:13 +0200 | [diff] [blame] | 589 | void scsi_init(void) |
| 590 | { |
| 591 | printf("MVEBU SATA INIT\n"); |
Baruch Siach | 4b11e5f | 2019-03-24 13:27:43 +0200 | [diff] [blame] | 592 | board_ahci_enable(); |
Stefan Roese | 4d991cb | 2015-06-29 14:58:13 +0200 | [diff] [blame] | 593 | ahci_init((void __iomem *)MVEBU_SATA0_BASE); |
| 594 | } |
| 595 | #endif |
| 596 | |
Jon Nettleton | 78aa018 | 2017-11-06 10:33:20 +0200 | [diff] [blame] | 597 | #ifdef CONFIG_USB_XHCI_MVEBU |
| 598 | #define USB3_MAX_WINDOWS 4 |
| 599 | #define USB3_WIN_CTRL(w) (0x0 + ((w) * 8)) |
| 600 | #define USB3_WIN_BASE(w) (0x4 + ((w) * 8)) |
| 601 | |
| 602 | static void xhci_mvebu_mbus_config(void __iomem *base, |
| 603 | const struct mbus_dram_target_info *dram) |
| 604 | { |
| 605 | int i; |
| 606 | |
| 607 | for (i = 0; i < USB3_MAX_WINDOWS; i++) { |
| 608 | writel(0, base + USB3_WIN_CTRL(i)); |
| 609 | writel(0, base + USB3_WIN_BASE(i)); |
| 610 | } |
| 611 | |
| 612 | for (i = 0; i < dram->num_cs; i++) { |
| 613 | const struct mbus_dram_window *cs = dram->cs + i; |
| 614 | |
| 615 | /* Write size, attributes and target id to control register */ |
| 616 | writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr << 8) | |
| 617 | (dram->mbus_dram_target_id << 4) | 1, |
| 618 | base + USB3_WIN_CTRL(i)); |
| 619 | |
| 620 | /* Write base address to base register */ |
| 621 | writel((cs->base & 0xffff0000), base + USB3_WIN_BASE(i)); |
| 622 | } |
| 623 | } |
| 624 | |
| 625 | int board_xhci_enable(fdt_addr_t base) |
| 626 | { |
| 627 | const struct mbus_dram_target_info *dram; |
| 628 | |
| 629 | printf("MVEBU XHCI INIT controller @ 0x%lx\n", base); |
| 630 | |
| 631 | dram = mvebu_mbus_dram_info(); |
| 632 | xhci_mvebu_mbus_config((void __iomem *)base, dram); |
| 633 | |
| 634 | return 0; |
| 635 | } |
| 636 | #endif |
| 637 | |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 638 | void enable_caches(void) |
| 639 | { |
Stefan Roese | 60b7532 | 2015-04-25 06:29:55 +0200 | [diff] [blame] | 640 | /* Avoid problem with e.g. neta ethernet driver */ |
| 641 | invalidate_dcache_all(); |
| 642 | |
Stefan Roese | ebe7890 | 2016-02-10 09:18:46 +0100 | [diff] [blame] | 643 | /* |
| 644 | * Armada 375 still has some problems with d-cache enabled in the |
| 645 | * ethernet driver (mvpp2). So lets keep the d-cache disabled |
| 646 | * until this is solved. |
| 647 | */ |
| 648 | if (mvebu_soc_family() != MVEBU_SOC_A375) { |
| 649 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 650 | dcache_enable(); |
| 651 | } |
Stefan Roese | 41e5ee5 | 2014-10-22 12:13:17 +0200 | [diff] [blame] | 652 | } |
Stefan Roese | 3e5ce7c | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 653 | |
| 654 | void v7_outer_cache_enable(void) |
| 655 | { |
Stefan Roese | 3e5ce7c | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 656 | if (mvebu_soc_family() == MVEBU_SOC_AXP) { |
Stefan Roese | c86d53f | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 657 | struct pl310_regs *const pl310 = |
| 658 | (struct pl310_regs *)CONFIG_SYS_PL310_BASE; |
Stefan Roese | 3e5ce7c | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 659 | u32 u; |
| 660 | |
Stefan Roese | c86d53f | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 661 | /* The L2 cache is already disabled at this point */ |
| 662 | |
Stefan Roese | 3e5ce7c | 2015-12-03 12:39:45 +0100 | [diff] [blame] | 663 | /* |
| 664 | * For Aurora cache in no outer mode, enable via the CP15 |
| 665 | * coprocessor broadcasting of cache commands to L2. |
| 666 | */ |
| 667 | asm volatile("mrc p15, 1, %0, c15, c2, 0" : "=r" (u)); |
| 668 | u |= BIT(8); /* Set the FW bit */ |
| 669 | asm volatile("mcr p15, 1, %0, c15, c2, 0" : : "r" (u)); |
| 670 | |
| 671 | isb(); |
| 672 | |
| 673 | /* Enable the L2 cache */ |
| 674 | setbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
| 675 | } |
| 676 | } |
Stefan Roese | f0e8173 | 2015-12-14 12:31:48 +0100 | [diff] [blame] | 677 | |
| 678 | void v7_outer_cache_disable(void) |
| 679 | { |
| 680 | struct pl310_regs *const pl310 = |
| 681 | (struct pl310_regs *)CONFIG_SYS_PL310_BASE; |
| 682 | |
| 683 | clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN); |
| 684 | } |