]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/powerpc/booke/platform_bare.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / powerpc / booke / platform_bare.c
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_ap;            /* 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                 if (bootinfo[0] == 1) {
183                         /* Backward compatibility. See 8-STABLE. */
184                         ticks = bootinfo[3] >> 3;
185                 } else {
186                         /* Compatibility with Juniper's loader. */
187                         ticks = bootinfo[5] >> 3;
188                 }
189         } else
190                 ticks = 0;
191
192         if ((cpus = OF_finddevice("/cpus")) == 0)
193                 goto out;
194
195         if ((child = OF_child(cpus)) == 0)
196                 goto out;
197
198         freq = 0;
199         if (OF_getprop(child, "bus-frequency", (void *)&freq,
200             sizeof(freq)) <= 0)
201                 goto out;
202
203         /*
204          * Time Base and Decrementer are updated every 8 CCB bus clocks.
205          * HID0[SEL_TBCLK] = 0
206          */
207         if (freq != 0)
208                 ticks = freq / 8;
209
210 out:
211         if (ticks <= 0)
212                 panic("Unable to determine timebase frequency!");
213
214         return (ticks);
215 }
216
217 static int
218 bare_smp_first_cpu(platform_t plat, struct cpuref *cpuref)
219 {
220
221         cpu = 0;
222         cpuref->cr_cpuid = cpu;
223         cpuref->cr_hwref = cpuref->cr_cpuid;
224         if (bootverbose)
225                 printf("powerpc_smp_first_cpu: cpuid %d\n", cpuref->cr_cpuid);
226         cpu++;
227
228         return (0);
229 }
230
231 static int
232 bare_smp_next_cpu(platform_t plat, struct cpuref *cpuref)
233 {
234
235         if (cpu >= maxcpu)
236                 return (ENOENT);
237
238         cpuref->cr_cpuid = cpu++;
239         cpuref->cr_hwref = cpuref->cr_cpuid;
240         if (bootverbose)
241                 printf("powerpc_smp_next_cpu: cpuid %d\n", cpuref->cr_cpuid);
242
243         return (0);
244 }
245
246 static int
247 bare_smp_get_bsp(platform_t plat, struct cpuref *cpuref)
248 {
249
250         cpuref->cr_cpuid = mfspr(SPR_PIR);
251         cpuref->cr_hwref = cpuref->cr_cpuid;
252
253         return (0);
254 }
255
256 static int
257 bare_smp_start_cpu(platform_t plat, struct pcpu *pc)
258 {
259 #ifdef SMP
260         uint32_t bptr, eebpcr;
261         int timeout;
262
263         eebpcr = ccsr_read4(OCP85XX_EEBPCR);
264         if ((eebpcr & (1 << (pc->pc_cpuid + 24))) != 0) {
265                 printf("%s: CPU=%d already out of hold-off state!\n",
266                     __func__, pc->pc_cpuid);
267                 return (ENXIO);
268         }
269
270         ap_pcpu = pc;
271         __asm __volatile("msync; isync");
272
273         /*
274          * Set BPTR to the physical address of the boot page
275          */
276         bptr = ((uint32_t)__boot_page - KERNBASE) + kernload_ap;
277         ccsr_write4(OCP85XX_BPTR, (bptr >> 12) | 0x80000000);
278
279         /*
280          * Release AP from hold-off state
281          */
282         eebpcr |= (1 << (pc->pc_cpuid + 24));
283         ccsr_write4(OCP85XX_EEBPCR, eebpcr);
284         __asm __volatile("isync; msync");
285
286         timeout = 500;
287         while (!pc->pc_awake && timeout--)
288                 DELAY(1000);    /* wait 1ms */
289
290         return ((pc->pc_awake) ? 0 : EBUSY);
291 #else
292         /* No SMP support */
293         return (ENXIO);
294 #endif
295 }
296
297 static void
298 e500_reset(platform_t plat)
299 {
300
301         /*
302          * Try the dedicated reset register first.
303          * If the SoC doesn't have one, we'll fall
304          * back to using the debug control register.
305          */
306         ccsr_write4(OCP85XX_RSTCR, 2);
307
308         /* Clear DBCR0, disables debug interrupts and events. */
309         mtspr(SPR_DBCR0, 0);
310         __asm __volatile("isync");
311
312         /* Enable Debug Interrupts in MSR. */
313         mtmsr(mfmsr() | PSL_DE);
314
315         /* Enable debug interrupts and issue reset. */
316         mtspr(SPR_DBCR0, mfspr(SPR_DBCR0) | DBCR0_IDM | DBCR0_RST_SYSTEM);
317
318         printf("Reset failed...\n");
319         while (1);
320 }
321