Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 2 | /* |
Albert ARIBAUD | 57b4bce | 2011-04-22 19:41:02 +0200 | [diff] [blame] | 3 | * Copyright (C) 2010 Albert ARIBAUD <albert.u.boot@aribaud.net> |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 4 | * |
| 5 | * Based on original Kirkwood support which is |
| 6 | * (C) Copyright 2009 |
| 7 | * Marvell Semiconductor <www.marvell.com> |
| 8 | * Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 12 | #include <cpu_func.h> |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 13 | #include <netdev.h> |
| 14 | #include <asm/cache.h> |
Lei Wen | 5ff8b35 | 2011-10-24 16:27:32 +0000 | [diff] [blame] | 15 | #include <asm/io.h> |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 16 | #include <u-boot/md5.h> |
Lei Wen | 5ff8b35 | 2011-10-24 16:27:32 +0000 | [diff] [blame] | 17 | #include <asm/arch/cpu.h> |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 18 | |
| 19 | #define BUFLEN 16 |
| 20 | |
| 21 | void reset_cpu(unsigned long ignored) |
| 22 | { |
| 23 | struct orion5x_cpu_registers *cpureg = |
| 24 | (struct orion5x_cpu_registers *)ORION5X_CPU_REG_BASE; |
| 25 | |
| 26 | writel(readl(&cpureg->rstoutn_mask) | (1 << 2), |
| 27 | &cpureg->rstoutn_mask); |
| 28 | writel(readl(&cpureg->sys_soft_rst) | 1, |
| 29 | &cpureg->sys_soft_rst); |
| 30 | while (1) |
| 31 | ; |
| 32 | } |
| 33 | |
| 34 | /* |
Albert Aribaud | 500f2ff | 2010-10-07 20:19:53 +0530 | [diff] [blame] | 35 | * Compute Window Size field value from size expressed in bytes |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 36 | * Used with the Base register to set the address window size and location. |
| 37 | * Must be programmed from LSB to MSB as sequence of ones followed by |
| 38 | * sequence of zeros. The number of ones specifies the size of the window in |
Albert Aribaud | 500f2ff | 2010-10-07 20:19:53 +0530 | [diff] [blame] | 39 | * 64 KiB granularity (e.g., a value of 0x00FF specifies 256 = 16 MiB). |
| 40 | * NOTES: |
| 41 | * 1) A sizeval equal to 0x0 specifies 4 GiB. |
| 42 | * 2) A return value of 0x0 specifies 64 KiB. |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 43 | */ |
| 44 | unsigned int orion5x_winctrl_calcsize(unsigned int sizeval) |
| 45 | { |
Albert Aribaud | 500f2ff | 2010-10-07 20:19:53 +0530 | [diff] [blame] | 46 | /* |
| 47 | * Calculate the number of 64 KiB blocks needed minus one (rounding up). |
| 48 | * For sizeval > 0 this is equivalent to: |
| 49 | * sizeval = (u32) ceil((double) sizeval / 65536.0) - 1 |
| 50 | */ |
| 51 | sizeval = (sizeval - 1) >> 16; |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 52 | |
Albert Aribaud | 500f2ff | 2010-10-07 20:19:53 +0530 | [diff] [blame] | 53 | /* |
| 54 | * Propagate 'one' bits to the right by 'oring' them. |
| 55 | * We need only treat bits 15-0. |
| 56 | */ |
| 57 | sizeval |= sizeval >> 1; /* 'Or' bit 15 onto bit 14 */ |
| 58 | sizeval |= sizeval >> 2; /* 'Or' bits 15-14 onto bits 13-12 */ |
| 59 | sizeval |= sizeval >> 4; /* 'Or' bits 15-12 onto bits 11-8 */ |
| 60 | sizeval |= sizeval >> 8; /* 'Or' bits 15-8 onto bits 7-0*/ |
| 61 | |
| 62 | return sizeval; |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | /* |
| 66 | * orion5x_config_adr_windows - Configure address Windows |
| 67 | * |
| 68 | * There are 8 address windows supported by Orion5x Soc to addess different |
| 69 | * devices. Each window can be configured for size, BAR and remap addr |
| 70 | * Below configuration is standard for most of the cases |
| 71 | * |
| 72 | * If remap function not used, remap_lo must be set as base |
| 73 | * |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 74 | * NOTES: |
| 75 | * |
| 76 | * 1) in order to avoid windows with inconsistent control and base values |
| 77 | * (which could prevent access to BOOTCS and hence execution from FLASH) |
| 78 | * always disable window before writing the base value then reenable it |
| 79 | * by writing the control value. |
| 80 | * |
| 81 | * 2) in order to avoid losing access to BOOTCS when disabling window 7, |
| 82 | * first configure window 6 for BOOTCS, then configure window 7 for BOOTCS, |
| 83 | * then configure windows 6 for its own target. |
| 84 | * |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 85 | * Reference Documentation: |
| 86 | * Mbus-L to Mbus Bridge Registers Configuration. |
| 87 | * (Sec 25.1 and 25.3 of Datasheet) |
| 88 | */ |
| 89 | int orion5x_config_adr_windows(void) |
| 90 | { |
| 91 | struct orion5x_win_registers *winregs = |
| 92 | (struct orion5x_win_registers *)ORION5X_CPU_WIN_BASE; |
| 93 | |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 94 | /* Disable window 0, configure it for its intended target, enable it. */ |
| 95 | writel(0, &winregs[0].ctrl); |
Albert Aribaud | 4cfa0ab | 2010-07-13 09:04:26 +0200 | [diff] [blame] | 96 | writel(ORION5X_ADR_PCIE_MEM, &winregs[0].base); |
| 97 | writel(ORION5X_ADR_PCIE_MEM_REMAP_LO, &winregs[0].remap_lo); |
| 98 | writel(ORION5X_ADR_PCIE_MEM_REMAP_HI, &winregs[0].remap_hi); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 99 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_PCIE_MEM, |
| 100 | ORION5X_TARGET_PCIE, ORION5X_ATTR_PCIE_MEM, |
| 101 | ORION5X_WIN_ENABLE), &winregs[0].ctrl); |
| 102 | /* Disable window 1, configure it for its intended target, enable it. */ |
| 103 | writel(0, &winregs[1].ctrl); |
Albert Aribaud | 4cfa0ab | 2010-07-13 09:04:26 +0200 | [diff] [blame] | 104 | writel(ORION5X_ADR_PCIE_IO, &winregs[1].base); |
| 105 | writel(ORION5X_ADR_PCIE_IO_REMAP_LO, &winregs[1].remap_lo); |
| 106 | writel(ORION5X_ADR_PCIE_IO_REMAP_HI, &winregs[1].remap_hi); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 107 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_PCIE_IO, |
| 108 | ORION5X_TARGET_PCIE, ORION5X_ATTR_PCIE_IO, |
| 109 | ORION5X_WIN_ENABLE), &winregs[1].ctrl); |
| 110 | /* Disable window 2, configure it for its intended target, enable it. */ |
| 111 | writel(0, &winregs[2].ctrl); |
| 112 | writel(ORION5X_ADR_PCI_MEM, &winregs[2].base); |
Albert Aribaud | 4cfa0ab | 2010-07-13 09:04:26 +0200 | [diff] [blame] | 113 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_PCI_MEM, |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 114 | ORION5X_TARGET_PCI, ORION5X_ATTR_PCI_MEM, |
| 115 | ORION5X_WIN_ENABLE), &winregs[2].ctrl); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 116 | /* Disable window 3, configure it for its intended target, enable it. */ |
| 117 | writel(0, &winregs[3].ctrl); |
| 118 | writel(ORION5X_ADR_PCI_IO, &winregs[3].base); |
Albert Aribaud | 4cfa0ab | 2010-07-13 09:04:26 +0200 | [diff] [blame] | 119 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_PCI_IO, |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 120 | ORION5X_TARGET_PCI, ORION5X_ATTR_PCI_IO, |
| 121 | ORION5X_WIN_ENABLE), &winregs[3].ctrl); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 122 | /* Disable window 4, configure it for its intended target, enable it. */ |
| 123 | writel(0, &winregs[4].ctrl); |
| 124 | writel(ORION5X_ADR_DEV_CS0, &winregs[4].base); |
Albert Aribaud | 4cfa0ab | 2010-07-13 09:04:26 +0200 | [diff] [blame] | 125 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_DEV_CS0, |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 126 | ORION5X_TARGET_DEVICE, ORION5X_ATTR_DEV_CS0, |
| 127 | ORION5X_WIN_ENABLE), &winregs[4].ctrl); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 128 | /* Disable window 5, configure it for its intended target, enable it. */ |
| 129 | writel(0, &winregs[5].ctrl); |
| 130 | writel(ORION5X_ADR_DEV_CS1, &winregs[5].base); |
Albert Aribaud | 4cfa0ab | 2010-07-13 09:04:26 +0200 | [diff] [blame] | 131 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_DEV_CS1, |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 132 | ORION5X_TARGET_DEVICE, ORION5X_ATTR_DEV_CS1, |
| 133 | ORION5X_WIN_ENABLE), &winregs[5].ctrl); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 134 | /* Disable window 6, configure it for FLASH, enable it. */ |
| 135 | writel(0, &winregs[6].ctrl); |
| 136 | writel(ORION5X_ADR_BOOTROM, &winregs[6].base); |
| 137 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_BOOTROM, |
| 138 | ORION5X_TARGET_DEVICE, ORION5X_ATTR_BOOTROM, |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 139 | ORION5X_WIN_ENABLE), &winregs[6].ctrl); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 140 | /* Disable window 7, configure it for FLASH, enable it. */ |
| 141 | writel(0, &winregs[7].ctrl); |
| 142 | writel(ORION5X_ADR_BOOTROM, &winregs[7].base); |
Albert Aribaud | 4cfa0ab | 2010-07-13 09:04:26 +0200 | [diff] [blame] | 143 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_BOOTROM, |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 144 | ORION5X_TARGET_DEVICE, ORION5X_ATTR_BOOTROM, |
| 145 | ORION5X_WIN_ENABLE), &winregs[7].ctrl); |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 146 | /* Disable window 6, configure it for its intended target, enable it. */ |
| 147 | writel(0, &winregs[6].ctrl); |
| 148 | writel(ORION5X_ADR_DEV_CS2, &winregs[6].base); |
| 149 | writel(ORION5X_CPU_WIN_CTRL_DATA(ORION5X_SZ_DEV_CS2, |
| 150 | ORION5X_TARGET_DEVICE, ORION5X_ATTR_DEV_CS2, |
| 151 | ORION5X_WIN_ENABLE), &winregs[6].ctrl); |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 152 | |
| 153 | return 0; |
| 154 | } |
| 155 | |
| 156 | /* |
| 157 | * Orion5x identification is done through PCIE space. |
| 158 | */ |
| 159 | |
| 160 | u32 orion5x_device_id(void) |
| 161 | { |
| 162 | return readl(PCIE_DEV_ID_OFF) >> 16; |
| 163 | } |
| 164 | |
| 165 | u32 orion5x_device_rev(void) |
| 166 | { |
| 167 | return readl(PCIE_DEV_REV_OFF) & 0xff; |
| 168 | } |
| 169 | |
| 170 | #if defined(CONFIG_DISPLAY_CPUINFO) |
| 171 | |
| 172 | /* Display device and revision IDs. |
| 173 | * This function must cover all known device/revision |
| 174 | * combinations, not only the one for which u-boot is |
| 175 | * compiled; this way, one can identify actual HW in |
| 176 | * case of a mismatch. |
| 177 | */ |
| 178 | int print_cpuinfo(void) |
| 179 | { |
Albert ARIBAUD | b823fd9 | 2012-10-09 09:28:15 +0000 | [diff] [blame] | 180 | char dev_str[7]; /* room enough for 0x0000 plus null byte */ |
| 181 | char rev_str[5]; /* room enough for 0x00 plus null byte */ |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 182 | char *dev_name = NULL; |
| 183 | char *rev_name = NULL; |
| 184 | |
| 185 | u32 dev = orion5x_device_id(); |
| 186 | u32 rev = orion5x_device_rev(); |
| 187 | |
| 188 | if (dev == MV88F5181_DEV_ID) { |
| 189 | dev_name = "MV88F5181"; |
| 190 | if (rev == MV88F5181_REV_B1) |
| 191 | rev_name = "B1"; |
| 192 | else if (rev == MV88F5181L_REV_A1) { |
| 193 | dev_name = "MV88F5181L"; |
| 194 | rev_name = "A1"; |
| 195 | } else if (rev == MV88F5181L_REV_A0) { |
| 196 | dev_name = "MV88F5181L"; |
| 197 | rev_name = "A0"; |
| 198 | } |
| 199 | } else if (dev == MV88F5182_DEV_ID) { |
| 200 | dev_name = "MV88F5182"; |
| 201 | if (rev == MV88F5182_REV_A2) |
| 202 | rev_name = "A2"; |
| 203 | } else if (dev == MV88F5281_DEV_ID) { |
| 204 | dev_name = "MV88F5281"; |
| 205 | if (rev == MV88F5281_REV_D2) |
| 206 | rev_name = "D2"; |
| 207 | else if (rev == MV88F5281_REV_D1) |
| 208 | rev_name = "D1"; |
| 209 | else if (rev == MV88F5281_REV_D0) |
| 210 | rev_name = "D0"; |
| 211 | } else if (dev == MV88F6183_DEV_ID) { |
| 212 | dev_name = "MV88F6183"; |
| 213 | if (rev == MV88F6183_REV_B0) |
| 214 | rev_name = "B0"; |
| 215 | } |
| 216 | if (dev_name == NULL) { |
| 217 | sprintf(dev_str, "0x%04x", dev); |
| 218 | dev_name = dev_str; |
| 219 | } |
| 220 | if (rev_name == NULL) { |
| 221 | sprintf(rev_str, "0x%02x", rev); |
| 222 | rev_name = rev_str; |
| 223 | } |
| 224 | |
| 225 | printf("SoC: Orion5x %s-%s\n", dev_name, rev_name); |
| 226 | |
| 227 | return 0; |
| 228 | } |
| 229 | #endif /* CONFIG_DISPLAY_CPUINFO */ |
| 230 | |
| 231 | #ifdef CONFIG_ARCH_CPU_INIT |
| 232 | int arch_cpu_init(void) |
| 233 | { |
| 234 | /* Enable and invalidate L2 cache in write through mode */ |
| 235 | invalidate_l2_cache(); |
| 236 | |
Albert ARIBAUD | 9608e7d | 2015-01-31 22:55:38 +0100 | [diff] [blame] | 237 | #ifdef CONFIG_SPL_BUILD |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 238 | orion5x_config_adr_windows(); |
Albert ARIBAUD | 9608e7d | 2015-01-31 22:55:38 +0100 | [diff] [blame] | 239 | #endif |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 240 | |
| 241 | return 0; |
| 242 | } |
| 243 | #endif /* CONFIG_ARCH_CPU_INIT */ |
| 244 | |
| 245 | /* |
| 246 | * SOC specific misc init |
| 247 | */ |
| 248 | #if defined(CONFIG_ARCH_MISC_INIT) |
| 249 | int arch_misc_init(void) |
| 250 | { |
| 251 | u32 temp; |
| 252 | |
| 253 | /*CPU streaming & write allocate */ |
| 254 | temp = readfr_extra_feature_reg(); |
| 255 | temp &= ~(1 << 28); /* disable wr alloc */ |
| 256 | writefr_extra_feature_reg(temp); |
| 257 | |
| 258 | temp = readfr_extra_feature_reg(); |
| 259 | temp &= ~(1 << 29); /* streaming disabled */ |
| 260 | writefr_extra_feature_reg(temp); |
| 261 | |
| 262 | /* L2Cache settings */ |
| 263 | temp = readfr_extra_feature_reg(); |
| 264 | /* Disable L2C pre fetch - Set bit 24 */ |
| 265 | temp |= (1 << 24); |
| 266 | /* enable L2C - Set bit 22 */ |
| 267 | temp |= (1 << 22); |
| 268 | writefr_extra_feature_reg(temp); |
| 269 | |
| 270 | icache_enable(); |
| 271 | /* Change reset vector to address 0x0 */ |
| 272 | temp = get_cr(); |
| 273 | set_cr(temp & ~CR_V); |
| 274 | |
| 275 | /* Set CPIOs and MPPs - values provided by board |
| 276 | include file */ |
Albert Aribaud | 23fdf05 | 2010-06-22 15:50:28 +0530 | [diff] [blame] | 277 | writel(ORION5X_MPP0_7, ORION5X_MPP_BASE+0x00); |
| 278 | writel(ORION5X_MPP8_15, ORION5X_MPP_BASE+0x04); |
| 279 | writel(ORION5X_MPP16_23, ORION5X_MPP_BASE+0x50); |
Albert ARIBAUD | 491f6c2 | 2012-08-16 06:35:21 +0000 | [diff] [blame] | 280 | writel(ORION5X_GPIO_OUT_VALUE, ORION5X_GPIO_BASE+0x00); |
Albert Aribaud | 23fdf05 | 2010-06-22 15:50:28 +0530 | [diff] [blame] | 281 | writel(ORION5X_GPIO_OUT_ENABLE, ORION5X_GPIO_BASE+0x04); |
Albert ARIBAUD | 491f6c2 | 2012-08-16 06:35:21 +0000 | [diff] [blame] | 282 | writel(ORION5X_GPIO_IN_POLARITY, ORION5X_GPIO_BASE+0x0c); |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 283 | |
Albert Aribaud | d778a2f | 2010-09-23 21:49:23 +0200 | [diff] [blame] | 284 | /* initialize timer */ |
| 285 | timer_init_r(); |
Albert Aribaud | 0c61e6f | 2010-06-17 19:36:07 +0530 | [diff] [blame] | 286 | return 0; |
| 287 | } |
| 288 | #endif /* CONFIG_ARCH_MISC_INIT */ |
Albert Aribaud | d3c9ffd | 2010-07-12 22:24:29 +0200 | [diff] [blame] | 289 | |
| 290 | #ifdef CONFIG_MVGBE |
| 291 | int cpu_eth_init(bd_t *bis) |
| 292 | { |
| 293 | mvgbe_initialize(bis); |
| 294 | return 0; |
| 295 | } |
| 296 | #endif |