]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/powerpc/powerpc/platform.c
MFV ntp 4.2.8p1 (r258945, r275970, r276091, r276092, r276093, r278284)
[FreeBSD/FreeBSD.git] / sys / powerpc / powerpc / platform.c
1 /*-
2  * Copyright (c) 2005 Peter Grehan
3  * Copyright (c) 2009 Nathan Whitehorn
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
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 AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31
32 /*
33  * Dispatch platform calls to the appropriate platform implementation
34  * through a previously registered kernel object.
35  */
36
37 #include <sys/param.h>
38 #include <sys/kernel.h>
39 #include <sys/lock.h>
40 #include <sys/ktr.h>
41 #include <sys/mutex.h>
42 #include <sys/systm.h>
43 #include <sys/smp.h>
44 #include <sys/sysctl.h>
45 #include <sys/types.h>
46
47 #include <vm/vm.h>
48 #include <vm/vm_page.h>
49
50 #include <machine/cpu.h>
51 #include <machine/md_var.h>
52 #include <machine/platform.h>
53 #include <machine/platformvar.h>
54 #include <machine/smp.h>
55
56 #include "platform_if.h"
57
58 static platform_def_t   *plat_def_impl;
59 static platform_t       plat_obj;
60 static struct kobj_ops  plat_kernel_kops;
61 static struct platform_kobj     plat_kernel_obj;
62
63 static char plat_name[64] = "";
64 SYSCTL_STRING(_hw, OID_AUTO, platform, CTLFLAG_RD | CTLFLAG_TUN,
65     plat_name, 0, "Platform currently in use");
66
67 static struct mem_region pregions[PHYS_AVAIL_SZ];
68 static struct mem_region aregions[PHYS_AVAIL_SZ];
69 static int npregions, naregions;
70
71 /*
72  * Memory region utilities: determine if two regions overlap,
73  * and merge two overlapping regions into one
74  */
75 static int
76 memr_overlap(struct mem_region *r1, struct mem_region *r2)
77 {
78         if ((r1->mr_start + r1->mr_size) < r2->mr_start ||
79             (r2->mr_start + r2->mr_size) < r1->mr_start)
80                 return (FALSE);
81
82         return (TRUE);
83 }
84
85 static void
86 memr_merge(struct mem_region *from, struct mem_region *to)
87 {
88         vm_offset_t end;
89         end = ulmax(to->mr_start + to->mr_size, from->mr_start + from->mr_size);
90         to->mr_start = ulmin(from->mr_start, to->mr_start);
91         to->mr_size = end - to->mr_start;
92 }
93
94 /*
95  * Quick sort callout for comparing memory regions.
96  */
97 static int
98 mr_cmp(const void *a, const void *b)
99 {
100         const struct mem_region *regiona, *regionb;
101
102         regiona = a;
103         regionb = b;
104         if (regiona->mr_start < regionb->mr_start)
105                 return (-1);
106         else if (regiona->mr_start > regionb->mr_start)
107                 return (1);
108         else
109                 return (0);
110 }
111
112 void
113 mem_regions(struct mem_region **phys, int *physsz, struct mem_region **avail,
114     int *availsz)
115 {
116         int i, j, still_merging;
117
118         if (npregions == 0) {
119                 PLATFORM_MEM_REGIONS(plat_obj, pregions, &npregions,
120                     aregions, &naregions);
121                 qsort(pregions, npregions, sizeof(*pregions), mr_cmp);
122                 qsort(aregions, naregions, sizeof(*aregions), mr_cmp);
123
124                 /* Remove overlapping available regions */
125                 do {
126                         still_merging = FALSE;
127                         for (i = 0; i < naregions; i++) {
128                                 if (aregions[i].mr_size == 0)
129                                         continue;
130                                 for (j = i+1; j < naregions; j++) {
131                                         if (aregions[j].mr_size == 0)
132                                                 continue;
133                                         if (!memr_overlap(&aregions[j],
134                                             &aregions[i]))
135                                                 continue;
136
137                                         memr_merge(&aregions[j], &aregions[i]);
138                                         /* mark inactive */
139                                         aregions[j].mr_size = 0;
140                                         still_merging = TRUE;
141                                 }
142                         }
143                 } while (still_merging == TRUE);
144
145                 /* Collapse zero-length available regions */
146                 for (i = 0; i < naregions; i++) {
147                         if (aregions[i].mr_size == 0) {
148                                 memcpy(&aregions[i], &aregions[i+1],
149                                     (naregions - i - 1)*sizeof(*aregions));
150                                 naregions--;
151                                 i--;
152                         }
153                 }
154         }
155
156         *phys = pregions;
157         *avail = aregions;
158         *physsz = npregions;
159         *availsz = naregions;
160 }
161
162 int
163 mem_valid(vm_offset_t addr, int len)
164 {
165         int i;
166
167         if (npregions == 0) {
168                 struct mem_region *p, *a;
169                 int na, np;
170                 mem_regions(&p, &np, &a, &na);
171         }
172
173         for (i = 0; i < npregions; i++)
174                 if ((addr >= pregions[i].mr_start)
175                    && (addr + len <= pregions[i].mr_start + pregions[i].mr_size))
176                         return (0);
177
178         return (EFAULT);
179 }
180
181 vm_offset_t
182 platform_real_maxaddr(void)
183 {
184         return (PLATFORM_REAL_MAXADDR(plat_obj));
185 }
186
187 const char *
188 installed_platform()
189 {
190         return (plat_def_impl->name);
191 }
192
193 u_long
194 platform_timebase_freq(struct cpuref *cpu)
195 {
196         return (PLATFORM_TIMEBASE_FREQ(plat_obj, cpu));
197 }
198
199 /*
200  * Put the current CPU, as last step in suspend, to sleep
201  */
202 void
203 platform_sleep()
204 {
205         PLATFORM_SLEEP(plat_obj);
206 }
207
208 int
209 platform_smp_first_cpu(struct cpuref *cpu)
210 {
211         return (PLATFORM_SMP_FIRST_CPU(plat_obj, cpu));
212 }
213
214 int
215 platform_smp_next_cpu(struct cpuref *cpu)
216 {
217         return (PLATFORM_SMP_NEXT_CPU(plat_obj, cpu));
218 }
219
220 int
221 platform_smp_get_bsp(struct cpuref *cpu)
222 {
223         return (PLATFORM_SMP_GET_BSP(plat_obj, cpu));
224 }
225
226 int
227 platform_smp_start_cpu(struct pcpu *cpu)
228 {
229         return (PLATFORM_SMP_START_CPU(plat_obj, cpu));
230 }
231
232 void
233 platform_smp_ap_init()
234 {
235         PLATFORM_SMP_AP_INIT(plat_obj);
236 }
237
238 #ifdef SMP
239 struct cpu_group *
240 cpu_topo(void)
241 {
242         return (PLATFORM_SMP_TOPO(plat_obj));
243 }
244 #endif
245
246 /*
247  * Reset back to firmware.
248  */
249 void
250 cpu_reset()
251 {
252         PLATFORM_RESET(plat_obj);
253 }
254
255 /*
256  * Platform install routines. Highest priority wins, using the same
257  * algorithm as bus attachment.
258  */
259 SET_DECLARE(platform_set, platform_def_t);
260
261 void
262 platform_probe_and_attach()
263 {
264         platform_def_t  **platpp, *platp;
265         int             prio, best_prio;
266
267         plat_obj = &plat_kernel_obj;
268         best_prio = 0;
269
270         /*
271          * Try to locate the best platform kobj
272          */
273         SET_FOREACH(platpp, platform_set) {
274                 platp = *platpp;
275
276                 /*
277                  * Take care of compiling the selected class, and
278                  * then statically initialise the MMU object
279                  */
280                 kobj_class_compile_static(platp, &plat_kernel_kops);
281                 kobj_init_static((kobj_t)plat_obj, platp);
282
283                 prio = PLATFORM_PROBE(plat_obj);
284
285                 /* Check for errors */
286                 if (prio > 0)
287                         continue;
288
289                 /*
290                  * Check if this module was specifically requested through
291                  * the loader tunable we provide.
292                  */
293                 if (strcmp(platp->name,plat_name) == 0) {
294                         plat_def_impl = platp;
295                         break;
296                 }
297
298                 /* Otherwise, see if it is better than our current best */
299                 if (plat_def_impl == NULL || prio > best_prio) {
300                         best_prio = prio;
301                         plat_def_impl = platp;
302                 }
303
304                 /*
305                  * We can't free the KOBJ, since it is static. Reset the ops
306                  * member of this class so that we can come back later.
307                  */
308                 platp->ops = NULL;
309         }
310
311         if (plat_def_impl == NULL)
312                 panic("No platform module found!");
313
314         /*
315          * Recompile to make sure we ended with the
316          * correct one, and then attach.
317          */
318
319         kobj_class_compile_static(plat_def_impl, &plat_kernel_kops);
320         kobj_init_static((kobj_t)plat_obj, plat_def_impl);
321
322         strlcpy(plat_name,plat_def_impl->name,sizeof(plat_name));
323
324         PLATFORM_ATTACH(plat_obj);
325 }
326