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