1 /*- 2 * Copyright (c) 2008-2009 Semihalf, Rafal Jaworowski 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 __FBSDID("$FreeBSD$"); 29 30 #include <sys/param.h> 31 #include <sys/systm.h> 32 #include <sys/kernel.h> 33 #include <sys/bus.h> 34 #include <sys/pcpu.h> 35 #include <sys/proc.h> 36 #include <sys/smp.h> 37 38 #include <machine/bus.h> 39 #include <machine/cpu.h> 40 #include <machine/hid.h> 41 #include <machine/platform.h> 42 #include <machine/platformvar.h> 43 #include <machine/smp.h> 44 #include <machine/spr.h> 45 #include <machine/vmparam.h> 46 47 #include <dev/fdt/fdt_common.h> 48 #include <dev/ofw/ofw_bus.h> 49 #include <dev/ofw/ofw_bus_subr.h> 50 #include <dev/ofw/openfirm.h> 51 52 #include <powerpc/mpc85xx/mpc85xx.h> 53 54 #include "platform_if.h" 55 56 #ifdef SMP 57 extern void *ap_pcpu; 58 extern uint8_t __boot_page[]; /* Boot page body */ 59 extern uint32_t kernload; /* Kernel physical load address */ 60 #endif 61 62 extern uint32_t *bootinfo; 63 64 static int cpu, maxcpu; 65 66 static int bare_probe(platform_t); 67 static void bare_mem_regions(platform_t, struct mem_region **phys, int *physsz, 68 struct mem_region **avail, int *availsz); 69 static u_long bare_timebase_freq(platform_t, struct cpuref *cpuref); 70 static int bare_smp_first_cpu(platform_t, struct cpuref *cpuref); 71 static int bare_smp_next_cpu(platform_t, struct cpuref *cpuref); 72 static int bare_smp_get_bsp(platform_t, struct cpuref *cpuref); 73 static int bare_smp_start_cpu(platform_t, struct pcpu *cpu); 74 75 static void e500_reset(platform_t); 76 77 static platform_method_t bare_methods[] = { 78 PLATFORMMETHOD(platform_probe, bare_probe), 79 PLATFORMMETHOD(platform_mem_regions, bare_mem_regions), 80 PLATFORMMETHOD(platform_timebase_freq, bare_timebase_freq), 81 82 PLATFORMMETHOD(platform_smp_first_cpu, bare_smp_first_cpu), 83 PLATFORMMETHOD(platform_smp_next_cpu, bare_smp_next_cpu), 84 PLATFORMMETHOD(platform_smp_get_bsp, bare_smp_get_bsp), 85 PLATFORMMETHOD(platform_smp_start_cpu, bare_smp_start_cpu), 86 87 PLATFORMMETHOD(platform_reset, e500_reset), 88 89 { 0, 0 } 90 }; 91 92 static platform_def_t bare_platform = { 93 "bare metal", 94 bare_methods, 95 0 96 }; 97 98 PLATFORM_DEF(bare_platform); 99 100 static int 101 bare_probe(platform_t plat) 102 { 103 uint32_t ver, sr; 104 int i, law_max, tgt; 105 106 ver = SVR_VER(mfspr(SPR_SVR)); 107 switch (ver & ~0x0008) { /* Mask Security Enabled bit */ 108 case SVR_P4080: 109 maxcpu = 8; 110 break; 111 case SVR_P4040: 112 maxcpu = 4; 113 break; 114 case SVR_MPC8572: 115 case SVR_P1020: 116 case SVR_P2020: 117 maxcpu = 2; 118 break; 119 default: 120 maxcpu = 1; 121 break; 122 } 123 124 /* 125 * Clear local access windows. Skip DRAM entries, so we don't shoot 126 * ourselves in the foot. 127 */ 128 law_max = law_getmax(); 129 for (i = 0; i < law_max; i++) { 130 sr = ccsr_read4(OCP85XX_LAWSR(i)); 131 if ((sr & 0x80000000) == 0) 132 continue; 133 tgt = (sr & 0x01f00000) >> 20; 134 if (tgt == OCP85XX_TGTIF_RAM1 || tgt == OCP85XX_TGTIF_RAM2 || 135 tgt == OCP85XX_TGTIF_RAM_INTL) 136 continue; 137 138 ccsr_write4(OCP85XX_LAWSR(i), sr & 0x7fffffff); 139 } 140 141 return (BUS_PROBE_GENERIC); 142 } 143 144 #define MEM_REGIONS 8 145 static struct mem_region avail_regions[MEM_REGIONS]; 146 147 void 148 bare_mem_regions(platform_t plat, struct mem_region **phys, int *physsz, 149 struct mem_region **avail, int *availsz) 150 { 151 uint32_t memsize; 152 int i, rv; 153 154 rv = fdt_get_mem_regions(avail_regions, availsz, &memsize); 155 156 if (rv != 0) 157 return; 158 159 for (i = 0; i < *availsz; i++) { 160 if (avail_regions[i].mr_start < 1048576) { 161 avail_regions[i].mr_size = 162 avail_regions[i].mr_size - 163 (1048576 - avail_regions[i].mr_start); 164 avail_regions[i].mr_start = 1048576; 165 } 166 } 167 *avail = avail_regions; 168 169 /* On the bare metal platform phys == avail memory */ 170 *physsz = *availsz; 171 *phys = *avail; 172 } 173 174 static u_long 175 bare_timebase_freq(platform_t plat, struct cpuref *cpuref) 176 { 177 u_long ticks; 178 phandle_t cpus, child; 179 pcell_t freq; 180 181 if (bootinfo != NULL) { 182 /* Backward compatibility. See 8-STABLE. */ 183 ticks = bootinfo[3] >> 3; 184 } else 185 ticks = 0; 186 187 if ((cpus = OF_finddevice("/cpus")) == 0) 188 goto out; 189 190 if ((child = OF_child(cpus)) == 0) 191 goto out; 192 193 freq = 0; 194 if (OF_getprop(child, "bus-frequency", (void *)&freq, 195 sizeof(freq)) <= 0) 196 goto out; 197 198 /* 199 * Time Base and Decrementer are updated every 8 CCB bus clocks. 200 * HID0[SEL_TBCLK] = 0 201 */ 202 if (freq != 0) 203 ticks = freq / 8; 204 205 out: 206 if (ticks <= 0) 207 panic("Unable to determine timebase frequency!"); 208 209 return (ticks); 210 } 211 212 static int 213 bare_smp_first_cpu(platform_t plat, struct cpuref *cpuref) 214 { 215 216 cpu = 0; 217 cpuref->cr_cpuid = cpu; 218 cpuref->cr_hwref = cpuref->cr_cpuid; 219 if (bootverbose) 220 printf("powerpc_smp_first_cpu: cpuid %d\n", cpuref->cr_cpuid); 221 cpu++; 222 223 return (0); 224 } 225 226 static int 227 bare_smp_next_cpu(platform_t plat, struct cpuref *cpuref) 228 { 229 230 if (cpu >= maxcpu) 231 return (ENOENT); 232 233 cpuref->cr_cpuid = cpu++; 234 cpuref->cr_hwref = cpuref->cr_cpuid; 235 if (bootverbose) 236 printf("powerpc_smp_next_cpu: cpuid %d\n", cpuref->cr_cpuid); 237 238 return (0); 239 } 240 241 static int 242 bare_smp_get_bsp(platform_t plat, struct cpuref *cpuref) 243 { 244 245 cpuref->cr_cpuid = mfspr(SPR_PIR); 246 cpuref->cr_hwref = cpuref->cr_cpuid; 247 248 return (0); 249 } 250 251 static int 252 bare_smp_start_cpu(platform_t plat, struct pcpu *pc) 253 { 254 #ifdef SMP 255 uint32_t bptr, eebpcr; 256 int timeout; 257 258 eebpcr = ccsr_read4(OCP85XX_EEBPCR); 259 if ((eebpcr & (pc->pc_cpumask << 24)) != 0) { 260 printf("%s: CPU=%d already out of hold-off state!\n", 261 __func__, pc->pc_cpuid); 262 return (ENXIO); 263 } 264 265 ap_pcpu = pc; 266 __asm __volatile("msync; isync"); 267 268 /* 269 * Set BPTR to the physical address of the boot page 270 */ 271 bptr = ((uint32_t)__boot_page - KERNBASE) + kernload; 272 ccsr_write4(OCP85XX_BPTR, (bptr >> 12) | 0x80000000); 273 274 /* 275 * Release AP from hold-off state 276 */ 277 eebpcr |= (pc->pc_cpumask << 24); 278 ccsr_write4(OCP85XX_EEBPCR, eebpcr); 279 __asm __volatile("isync; msync"); 280 281 timeout = 500; 282 while (!pc->pc_awake && timeout--) 283 DELAY(1000); /* wait 1ms */ 284 285 return ((pc->pc_awake) ? 0 : EBUSY); 286 #else 287 /* No SMP support */ 288 return (ENXIO); 289 #endif 290 } 291 292 static void 293 e500_reset(platform_t plat) 294 { 295 296 /* 297 * Try the dedicated reset register first. 298 * If the SoC doesn't have one, we'll fall 299 * back to using the debug control register. 300 */ 301 ccsr_write4(OCP85XX_RSTCR, 2); 302 303 /* Clear DBCR0, disables debug interrupts and events. */ 304 mtspr(SPR_DBCR0, 0); 305 __asm __volatile("isync"); 306 307 /* Enable Debug Interrupts in MSR. */ 308 mtmsr(mfmsr() | PSL_DE); 309 310 /* Enable debug interrupts and issue reset. */ 311 mtspr(SPR_DBCR0, mfspr(SPR_DBCR0) | DBCR0_IDM | DBCR0_RST_SYSTEM); 312 313 printf("Reset failed...\n"); 314 while (1); 315 } 316 317