ofwoea_machdep.c revision 1.5 1 1.5 garbled /* $NetBSD: ofwoea_machdep.c,v 1.5 2007/11/14 18:34:12 garbled Exp $ */
2 1.2 garbled
3 1.2 garbled /*-
4 1.2 garbled * Copyright (c) 2007 The NetBSD Foundation, Inc.
5 1.2 garbled * All rights reserved.
6 1.2 garbled *
7 1.2 garbled * This code is derived from software contributed to The NetBSD Foundation
8 1.2 garbled * by Tim Rightnour
9 1.2 garbled *
10 1.2 garbled * Redistribution and use in source and binary forms, with or without
11 1.2 garbled * modification, are permitted provided that the following conditions
12 1.2 garbled * are met:
13 1.2 garbled * 1. Redistributions of source code must retain the above copyright
14 1.2 garbled * notice, this list of conditions and the following disclaimer.
15 1.2 garbled * 2. Redistributions in binary form must reproduce the above copyright
16 1.2 garbled * notice, this list of conditions and the following disclaimer in the
17 1.2 garbled * documentation and/or other materials provided with the distribution.
18 1.2 garbled * 3. All advertising materials mentioning features or use of this software
19 1.2 garbled * must display the following acknowledgement:
20 1.2 garbled * This product includes software developed by the NetBSD
21 1.2 garbled * Foundation, Inc. and its contributors.
22 1.2 garbled * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.2 garbled * contributors may be used to endorse or promote products derived
24 1.2 garbled * from this software without specific prior written permission.
25 1.2 garbled *
26 1.2 garbled * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.2 garbled * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.2 garbled * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.2 garbled * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.2 garbled * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.2 garbled * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.2 garbled * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.2 garbled * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.2 garbled * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.2 garbled * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.2 garbled * POSSIBILITY OF SUCH DAMAGE.
37 1.2 garbled */
38 1.2 garbled
39 1.2 garbled #include <sys/cdefs.h>
40 1.5 garbled __KERNEL_RCSID(0, "$NetBSD: ofwoea_machdep.c,v 1.5 2007/11/14 18:34:12 garbled Exp $");
41 1.2 garbled
42 1.2 garbled
43 1.2 garbled #include "opt_compat_netbsd.h"
44 1.2 garbled #include "opt_ddb.h"
45 1.2 garbled #include "opt_kgdb.h"
46 1.2 garbled #include "opt_ipkdb.h"
47 1.2 garbled
48 1.2 garbled #include <sys/param.h>
49 1.2 garbled #include <sys/buf.h>
50 1.2 garbled #include <sys/boot_flag.h>
51 1.2 garbled #include <sys/extent.h>
52 1.2 garbled #include <sys/kernel.h>
53 1.2 garbled #include <sys/ksyms.h>
54 1.2 garbled #include <uvm/uvm_extern.h>
55 1.2 garbled
56 1.2 garbled #include <dev/ofw/openfirm.h>
57 1.2 garbled #include <machine/pmap.h>
58 1.2 garbled #include <machine/powerpc.h>
59 1.2 garbled #include <machine/trap.h>
60 1.5 garbled #include <machine/vmparam.h>
61 1.2 garbled #include <powerpc/bus.h>
62 1.2 garbled #include <powerpc/oea/bat.h>
63 1.2 garbled #include <powerpc/ofw_bus.h>
64 1.2 garbled #include <powerpc/ofw_cons.h>
65 1.2 garbled #include <powerpc/spr.h>
66 1.2 garbled #include <arch/powerpc/pic/picvar.h>
67 1.2 garbled
68 1.2 garbled #include "opt_oea.h"
69 1.2 garbled
70 1.2 garbled #include "ksyms.h"
71 1.2 garbled
72 1.2 garbled #ifdef DDB
73 1.2 garbled #include <machine/db_machdep.h>
74 1.2 garbled #include <ddb/db_extern.h>
75 1.2 garbled #endif
76 1.2 garbled
77 1.2 garbled #ifdef KGDB
78 1.2 garbled #include <sys/kgdb.h>
79 1.2 garbled #endif
80 1.2 garbled
81 1.2 garbled #ifdef IPKDB
82 1.2 garbled #include <ipkdb/ipkdb.h>
83 1.2 garbled #endif
84 1.2 garbled
85 1.2 garbled #include "opt_ofwoea.h"
86 1.2 garbled
87 1.2 garbled #ifdef OFWOEA_DEBUG
88 1.2 garbled #define DPRINTF printf
89 1.2 garbled #else
90 1.3 garbled #define DPRINTF while (0) printf
91 1.2 garbled #endif
92 1.2 garbled
93 1.2 garbled typedef struct _rangemap {
94 1.2 garbled u_int32_t addr;
95 1.2 garbled u_int32_t size;
96 1.2 garbled int type;
97 1.2 garbled } rangemap_t;
98 1.2 garbled
99 1.2 garbled struct ofw_translations {
100 1.2 garbled vaddr_t va;
101 1.2 garbled int len;
102 1.2 garbled #if defined (PMAC_G5)
103 1.2 garbled register64_t pa;
104 1.2 garbled #else
105 1.2 garbled register_t pa;
106 1.2 garbled #endif
107 1.2 garbled int mode;
108 1.2 garbled }__attribute__((packed));
109 1.2 garbled
110 1.2 garbled struct pmap ofw_pmap;
111 1.2 garbled struct ofw_translations ofmap[32];
112 1.2 garbled char bootpath[256];
113 1.2 garbled #if NKSYMS || defined(DDB) || defined(LKM)
114 1.2 garbled void *startsym, *endsym;
115 1.2 garbled #endif
116 1.2 garbled #ifdef TIMEBASE_FREQ
117 1.2 garbled u_int timebase_freq = TIMEBASE_FREQ;
118 1.2 garbled #else
119 1.2 garbled u_int timebase_freq = 0;
120 1.2 garbled #endif
121 1.2 garbled
122 1.2 garbled extern int ofmsr;
123 1.2 garbled extern int chosen;
124 1.2 garbled extern uint32_t ticks_per_sec;
125 1.2 garbled extern uint32_t ns_per_tick;
126 1.2 garbled extern uint32_t ticks_per_intr;
127 1.2 garbled
128 1.2 garbled static int save_ofmap(struct ofw_translations *, int);
129 1.2 garbled static void restore_ofmap(struct ofw_translations *, int);
130 1.2 garbled static void set_timebase(void);
131 1.2 garbled
132 1.2 garbled void
133 1.2 garbled ofwoea_initppc(u_int startkernel, u_int endkernel, char *args)
134 1.2 garbled {
135 1.2 garbled int ofmaplen;
136 1.2 garbled #if defined (PPC_OEA64_BRIDGE)
137 1.2 garbled register_t scratch;
138 1.2 garbled #endif
139 1.2 garbled
140 1.2 garbled #if defined (PPC_OEA)
141 1.2 garbled /* initialze bats */
142 1.2 garbled ofwoea_batinit();
143 1.2 garbled #elif defined (PPC_OEA64) || defined (PPC_OEA64_BRIDGE)
144 1.2 garbled #endif /* PPC_OEA */
145 1.2 garbled
146 1.2 garbled #if NKSYMS || defined(DDB) || defined(LKM)
147 1.2 garbled /* get info of kernel symbol table from bootloader */
148 1.2 garbled memcpy(&startsym, args + strlen(args) + 1, sizeof(startsym));
149 1.2 garbled memcpy(&endsym, args + strlen(args) + 1 + sizeof(startsym),
150 1.2 garbled sizeof(endsym));
151 1.2 garbled if (startsym == NULL || endsym == NULL)
152 1.2 garbled startsym = endsym = NULL;
153 1.2 garbled #endif
154 1.2 garbled
155 1.2 garbled ofwoea_consinit();
156 1.2 garbled
157 1.2 garbled oea_init(pic_ext_intr);
158 1.2 garbled
159 1.2 garbled ofmaplen = save_ofmap(NULL, 0);
160 1.2 garbled if (ofmaplen > 0)
161 1.2 garbled save_ofmap(ofmap, ofmaplen);
162 1.2 garbled
163 1.2 garbled ofmsr &= ~PSL_IP;
164 1.2 garbled
165 1.2 garbled /* Parse the args string */
166 1.2 garbled if (args) {
167 1.2 garbled strcpy(bootpath, args);
168 1.2 garbled args = bootpath;
169 1.2 garbled while (*++args && *args != ' ');
170 1.2 garbled if (*args) {
171 1.2 garbled *args++ = 0;
172 1.2 garbled while (*args)
173 1.2 garbled BOOT_FLAG(*args++, boothowto);
174 1.2 garbled }
175 1.2 garbled }
176 1.2 garbled
177 1.2 garbled uvm_setpagesize();
178 1.2 garbled pmap_bootstrap(startkernel, endkernel);
179 1.2 garbled
180 1.2 garbled #if defined(PPC_OEA64) || defined (PPC_OEA64_BRIDGE)
181 1.2 garbled #if defined (PMAC_G5)
182 1.2 garbled /* Mapin 1st 256MB segment 1:1, also map in mem needed to access OFW*/
183 1.2 garbled pmap_setup_segment0_map(0, 0xff800000, 0x3fc00000, 0x400000, 0x0);
184 1.2 garbled #elif defined (MAMBO)
185 1.2 garbled /* Mapin 1st 256MB segment 1:1, also map in mem needed to access OFW*/
186 1.2 garbled pmap_setup_segment0_map(0, 0xf4000000, 0xf4000000, 0x1000, 0x0);
187 1.2 garbled #endif /* PMAC_G5 */
188 1.2 garbled
189 1.2 garbled /* Now enable translation (and machine checks/recoverable interrupts) */
190 1.2 garbled __asm __volatile ("sync; mfmsr %0; ori %0,%0,%1; mtmsr %0; isync"
191 1.2 garbled : "=r"(scratch)
192 1.2 garbled : "K"(PSL_IR|PSL_DR|PSL_ME|PSL_RI));
193 1.2 garbled #endif /* PPC_OEA64 || PPC_OEA64_BRIDGE */
194 1.2 garbled
195 1.2 garbled restore_ofmap(ofmap, ofmaplen);
196 1.2 garbled
197 1.2 garbled #if NKSYMS || defined(DDB) || defined(LKM)
198 1.2 garbled ksyms_init((int)((u_int)endsym - (u_int)startsym), startsym, endsym);
199 1.2 garbled #endif
200 1.2 garbled
201 1.2 garbled /* CPU clock stuff */
202 1.2 garbled set_timebase();
203 1.2 garbled }
204 1.2 garbled
205 1.2 garbled void
206 1.2 garbled set_timebase(void)
207 1.2 garbled {
208 1.2 garbled int qhandle, phandle, msr, scratch;
209 1.2 garbled char type[32];
210 1.2 garbled
211 1.2 garbled if (timebase_freq != 0) {
212 1.2 garbled ticks_per_sec = timebase_freq;
213 1.2 garbled goto found;
214 1.2 garbled }
215 1.2 garbled
216 1.2 garbled for (qhandle = OF_peer(0); qhandle; qhandle = phandle) {
217 1.2 garbled if (OF_getprop(qhandle, "device_type", type, sizeof type) > 0
218 1.2 garbled && strcmp(type, "cpu") == 0
219 1.2 garbled && OF_getprop(qhandle, "timebase-frequency",
220 1.2 garbled &ticks_per_sec, sizeof ticks_per_sec) > 0) {
221 1.2 garbled goto found;
222 1.2 garbled }
223 1.2 garbled if ((phandle = OF_child(qhandle)))
224 1.2 garbled continue;
225 1.2 garbled while (qhandle) {
226 1.2 garbled if ((phandle = OF_peer(qhandle)))
227 1.2 garbled break;
228 1.2 garbled qhandle = OF_parent(qhandle);
229 1.2 garbled }
230 1.2 garbled }
231 1.2 garbled panic("no cpu node");
232 1.2 garbled
233 1.2 garbled found:
234 1.2 garbled __asm volatile ("mfmsr %0; andi. %1,%0,%2; mtmsr %1"
235 1.2 garbled : "=r"(msr), "=r"(scratch) : "K"((u_short)~PSL_EE));
236 1.2 garbled ns_per_tick = 1000000000 / ticks_per_sec;
237 1.2 garbled ticks_per_intr = ticks_per_sec / hz;
238 1.2 garbled cpu_timebase = ticks_per_sec;
239 1.2 garbled curcpu()->ci_lasttb = mftbl();
240 1.2 garbled mtspr(SPR_DEC, ticks_per_intr);
241 1.2 garbled mtmsr(msr);
242 1.2 garbled }
243 1.2 garbled
244 1.2 garbled static int
245 1.2 garbled save_ofmap(struct ofw_translations *map, int maxlen)
246 1.2 garbled {
247 1.2 garbled int mmui, mmu, len;
248 1.2 garbled
249 1.2 garbled OF_getprop(chosen, "mmu", &mmui, sizeof mmui);
250 1.2 garbled mmu = OF_instance_to_package(mmui);
251 1.2 garbled
252 1.2 garbled if (map) {
253 1.2 garbled memset(map, 0, maxlen); /* to be safe */
254 1.2 garbled len = OF_getprop(mmu, "translations", map, maxlen);
255 1.2 garbled } else
256 1.2 garbled len = OF_getproplen(mmu, "translations");
257 1.2 garbled
258 1.2 garbled if (len < 0)
259 1.2 garbled len = 0;
260 1.2 garbled return len;
261 1.2 garbled }
262 1.2 garbled
263 1.2 garbled void
264 1.2 garbled restore_ofmap(struct ofw_translations *map, int len)
265 1.2 garbled {
266 1.2 garbled int n = len / sizeof(struct ofw_translations);
267 1.2 garbled int i;
268 1.2 garbled
269 1.2 garbled pmap_pinit(&ofw_pmap);
270 1.2 garbled
271 1.2 garbled #if defined(PPC_OEA64_BRIDGE)
272 1.2 garbled ofw_pmap.pm_sr[0x0] = KERNELN_SEGMENT(0);
273 1.2 garbled #endif
274 1.2 garbled ofw_pmap.pm_sr[KERNEL_SR] = KERNEL_SEGMENT;
275 1.2 garbled
276 1.2 garbled #ifdef KERNEL2_SR
277 1.2 garbled ofw_pmap.pm_sr[KERNEL2_SR] = KERNEL2_SEGMENT;
278 1.2 garbled #endif
279 1.2 garbled
280 1.2 garbled for (i = 0; i < n; i++) {
281 1.2 garbled #if defined (PMAC_G5)
282 1.2 garbled register64_t pa = map[i].pa;
283 1.2 garbled #else
284 1.2 garbled register_t pa = map[i].pa;
285 1.2 garbled #endif
286 1.2 garbled vaddr_t va = map[i].va;
287 1.2 garbled size_t length = map[i].len;
288 1.2 garbled
289 1.2 garbled if (va < 0xf0000000) /* XXX */
290 1.2 garbled continue;
291 1.2 garbled
292 1.2 garbled while (length > 0) {
293 1.2 garbled pmap_enter(&ofw_pmap, va, (paddr_t)pa, VM_PROT_ALL,
294 1.2 garbled VM_PROT_ALL|PMAP_WIRED);
295 1.2 garbled pa += PAGE_SIZE;
296 1.2 garbled va += PAGE_SIZE;
297 1.2 garbled length -= PAGE_SIZE;
298 1.2 garbled }
299 1.2 garbled }
300 1.2 garbled pmap_update(&ofw_pmap);
301 1.2 garbled }
302 1.2 garbled
303 1.2 garbled
304 1.2 garbled
305 1.2 garbled /*
306 1.2 garbled * Scan the device tree for ranges, and batmap them.
307 1.2 garbled */
308 1.2 garbled
309 1.2 garbled static u_int16_t
310 1.2 garbled ranges_bitmap(int node, u_int16_t bitmap)
311 1.2 garbled {
312 1.4 garbled int child, mlen, acells, scells, reclen, i, j;
313 1.4 garbled u_int32_t addr, len, map[160];
314 1.2 garbled
315 1.2 garbled for (child = OF_child(node); child; child = OF_peer(child)) {
316 1.2 garbled mlen = OF_getprop(child, "ranges", map, sizeof(map));
317 1.2 garbled if (mlen == -1)
318 1.2 garbled goto noranges;
319 1.4 garbled
320 1.4 garbled j = OF_getprop(child, "#address-cells", &acells,
321 1.2 garbled sizeof(acells));
322 1.4 garbled if (j == -1)
323 1.2 garbled goto noranges;
324 1.4 garbled
325 1.4 garbled j = OF_getprop(child, "#size-cells", &scells,
326 1.2 garbled sizeof(scells));
327 1.4 garbled if (j == -1)
328 1.2 garbled goto noranges;
329 1.2 garbled
330 1.2 garbled reclen = acells + 1 + scells;
331 1.2 garbled
332 1.4 garbled for (i=0; i < (mlen/4)/reclen; i++) {
333 1.4 garbled addr = map[reclen * i + acells];
334 1.2 garbled len = map[reclen * i + reclen - 1];
335 1.2 garbled for (j = 0; j < len / 0x10000000; j++)
336 1.2 garbled bitmap |= 1 << ((addr+j*0x10000000) >>28);
337 1.2 garbled bitmap |= 1 << (addr >> 28);
338 1.2 garbled }
339 1.2 garbled noranges:
340 1.2 garbled bitmap |= ranges_bitmap(child, bitmap);
341 1.2 garbled continue;
342 1.2 garbled }
343 1.2 garbled return bitmap;
344 1.2 garbled }
345 1.2 garbled
346 1.2 garbled void
347 1.2 garbled ofwoea_batinit(void)
348 1.2 garbled {
349 1.2 garbled #if 0
350 1.2 garbled /* this is what macppc used to do */
351 1.2 garbled oea_batinit(0x80000000, BAT_BL_256M, 0xf0000000, BAT_BL_256M,
352 1.2 garbled 0x90000000, BAT_BL_256M, 0xa0000000, BAT_BL_256M,
353 1.2 garbled 0xb0000000, BAT_BL_256M, 0);
354 1.2 garbled #else
355 1.2 garbled u_int16_t bitmap;
356 1.2 garbled int node, i;
357 1.2 garbled
358 1.2 garbled node = OF_finddevice("/");
359 1.2 garbled bitmap = ranges_bitmap(node, 0);
360 1.2 garbled oea_batinit(0);
361 1.2 garbled
362 1.4 garbled #ifdef macppc
363 1.2 garbled /* XXX this is a macppc-specific hack */
364 1.2 garbled bitmap = 0x8f00;
365 1.4 garbled #endif
366 1.5 garbled for (i=1; i < 0x10; i++) {
367 1.5 garbled /* skip the three vital SR regions */
368 1.5 garbled if (i == USER_SR || i == KERNEL_SR || i == KERNEL2_SR)
369 1.5 garbled continue;
370 1.4 garbled if (bitmap & (1 << i)) {
371 1.2 garbled oea_iobat_add(0x10000000 * i, BAT_BL_256M);
372 1.4 garbled DPRINTF("Batmapped 256M at 0x%x\n", 0x10000000 * i);
373 1.4 garbled }
374 1.5 garbled }
375 1.2 garbled #endif
376 1.2 garbled }
377 1.2 garbled
378 1.2 garbled
379 1.2 garbled /* we define these partially, as we will fill the rest in later */
380 1.2 garbled struct powerpc_bus_space genppc_isa_io_space_tag = {
381 1.2 garbled .pbs_flags = _BUS_SPACE_LITTLE_ENDIAN|_BUS_SPACE_IO_TYPE,
382 1.2 garbled .pbs_base = 0x00000000,
383 1.2 garbled };
384 1.2 garbled
385 1.2 garbled struct powerpc_bus_space genppc_isa_mem_space_tag = {
386 1.2 garbled .pbs_flags = _BUS_SPACE_LITTLE_ENDIAN|_BUS_SPACE_MEM_TYPE,
387 1.2 garbled .pbs_base = 0x00000000,
388 1.2 garbled };
389 1.2 garbled
390 1.2 garbled /* This gives us a maximum of 6 PCI busses, assuming both io/mem on each.
391 1.2 garbled * Increase if necc.
392 1.2 garbled */
393 1.2 garbled static char ex_storage[EXSTORAGE_MAX][EXTENT_FIXED_STORAGE_SIZE(EXTMAP_RANGES)]
394 1.2 garbled __attribute__((aligned(8)));
395 1.2 garbled
396 1.2 garbled
397 1.2 garbled static void
398 1.2 garbled find_ranges(int base, rangemap_t *regions, int *cur, int type)
399 1.2 garbled {
400 1.2 garbled int node, i, len, reclen;
401 1.2 garbled u_int32_t acells, scells, map[160];
402 1.2 garbled char tmp[32];
403 1.2 garbled
404 1.2 garbled node = base;
405 1.2 garbled if (OF_getprop(node, "device_type", tmp, sizeof(tmp)) == -1)
406 1.2 garbled goto rec;
407 1.2 garbled if ((type == RANGE_TYPE_PCI || type == RANGE_TYPE_FIRSTPCI) &&
408 1.2 garbled strcmp("pci", tmp) != 0)
409 1.2 garbled goto rec;
410 1.2 garbled if (type == RANGE_TYPE_ISA && strcmp("isa", tmp) != 0)
411 1.2 garbled goto rec;
412 1.2 garbled len = OF_getprop(node, "ranges", map, sizeof(map));
413 1.2 garbled if (len == -1)
414 1.2 garbled goto rec;
415 1.2 garbled if (OF_getprop(node, "#address-cells", &acells,
416 1.2 garbled sizeof(acells)) != sizeof(acells))
417 1.2 garbled acells = 1;
418 1.2 garbled if (OF_getprop(node, "#size-cells", &scells,
419 1.2 garbled sizeof(scells)) != sizeof(scells))
420 1.2 garbled scells = 1;
421 1.2 garbled if (type == RANGE_TYPE_ISA)
422 1.2 garbled reclen = 6;
423 1.2 garbled else
424 1.2 garbled reclen = acells + scells + 1;
425 1.3 garbled /*
426 1.3 garbled * There exist ISA buses with empty ranges properties. This is
427 1.3 garbled * known to occur on the Pegasos II machine, and likely others.
428 1.3 garbled * According to them, that means that the isa bus is a fake bus, and
429 1.3 garbled * the real maps are the PCI maps of the preceeding bus. To deal
430 1.3 garbled * with this, we will set cur to -1 and return.
431 1.3 garbled */
432 1.3 garbled if (type == RANGE_TYPE_ISA && strcmp("isa", tmp) == 0 && len == 0) {
433 1.3 garbled *cur = -1;
434 1.3 garbled DPRINTF("Found empty range in isa bus\n");
435 1.3 garbled return;
436 1.3 garbled }
437 1.3 garbled
438 1.3 garbled DPRINTF("found a map reclen=%d cur=%d len=%d\n", reclen, *cur, len);
439 1.2 garbled switch (type) {
440 1.2 garbled case RANGE_TYPE_PCI:
441 1.2 garbled case RANGE_TYPE_FIRSTPCI:
442 1.2 garbled for (i=0; i < len/(4*reclen); i++) {
443 1.3 garbled DPRINTF("FOUND PCI RANGE\n");
444 1.2 garbled regions[*cur].type = map[i*reclen] >> 24;
445 1.2 garbled regions[*cur].addr = map[i*reclen + acells];
446 1.2 garbled regions[*cur].size =
447 1.2 garbled map[i*reclen + acells + scells];
448 1.2 garbled (*cur)++;
449 1.2 garbled }
450 1.2 garbled break;
451 1.2 garbled case RANGE_TYPE_ISA:
452 1.2 garbled for (i=0; i < len/(4*reclen); i++) {
453 1.2 garbled if (map[i*reclen] == 1)
454 1.2 garbled regions[*cur].type = RANGE_IO;
455 1.2 garbled else
456 1.2 garbled regions[*cur].type = RANGE_MEM;
457 1.3 garbled DPRINTF("FOUND ISA RANGE TYPE=%d\n",
458 1.3 garbled regions[*cur].type);
459 1.2 garbled regions[*cur].size =
460 1.2 garbled map[i*reclen + acells + scells];
461 1.2 garbled (*cur)++;
462 1.2 garbled }
463 1.2 garbled break;
464 1.2 garbled }
465 1.3 garbled DPRINTF("returning with CUR=%d\n", *cur);
466 1.2 garbled return;
467 1.2 garbled rec:
468 1.3 garbled for (node = OF_child(base); node; node = OF_peer(node)) {
469 1.3 garbled DPRINTF("RECURSE 1 STEP\n");
470 1.2 garbled find_ranges(node, regions, cur, type);
471 1.3 garbled if (*cur == -1)
472 1.3 garbled return;
473 1.3 garbled }
474 1.2 garbled }
475 1.2 garbled
476 1.2 garbled static int
477 1.2 garbled find_lowest_range(rangemap_t *ranges, int nrof, int type)
478 1.2 garbled {
479 1.2 garbled int i, low = 0;
480 1.2 garbled u_int32_t addr = 0xffffffff;
481 1.2 garbled
482 1.2 garbled for (i=0; i < nrof; i++) {
483 1.2 garbled if (ranges[i].type == type && ranges[i].addr != 0 &&
484 1.2 garbled ranges[i].addr < addr) {
485 1.2 garbled low = i;
486 1.2 garbled addr = ranges[i].addr;
487 1.2 garbled }
488 1.2 garbled }
489 1.2 garbled if (addr == 0xffffffff)
490 1.2 garbled return -1;
491 1.2 garbled return low;
492 1.2 garbled }
493 1.2 garbled
494 1.2 garbled /*
495 1.2 garbled * Find a region of memory, and create a bus_space_tag for it.
496 1.2 garbled * Notes:
497 1.2 garbled * For ISA node is ignored.
498 1.2 garbled * node is the starting node. if -1, we start at / and map everything.
499 1.2 garbled */
500 1.2 garbled
501 1.2 garbled int
502 1.2 garbled ofwoea_map_space(int rangetype, int iomem, int node,
503 1.2 garbled struct powerpc_bus_space *tag, const char *name)
504 1.2 garbled {
505 1.2 garbled int i, cur, range, nrofholes, error;
506 1.2 garbled static int exmap=0;
507 1.2 garbled u_int32_t addr;
508 1.2 garbled rangemap_t region, holes[32], list[32];
509 1.2 garbled
510 1.2 garbled memset(list, 0, sizeof(list));
511 1.2 garbled cur = 0;
512 1.2 garbled if (rangetype == RANGE_TYPE_ISA || node == -1)
513 1.2 garbled node = OF_finddevice("/");
514 1.2 garbled if (rangetype == RANGE_TYPE_ISA) {
515 1.2 garbled u_int32_t size = 0;
516 1.2 garbled rangemap_t regions[32];
517 1.2 garbled
518 1.3 garbled DPRINTF("LOOKING FOR FIRSTPCI\n");
519 1.2 garbled find_ranges(node, list, &cur, RANGE_TYPE_FIRSTPCI);
520 1.2 garbled range = 0;
521 1.3 garbled DPRINTF("LOOKING FOR ISA\n");
522 1.2 garbled find_ranges(node, regions, &range, RANGE_TYPE_ISA);
523 1.2 garbled if (range == 0 || cur == 0)
524 1.2 garbled return -1; /* no isa stuff found */
525 1.3 garbled /*
526 1.3 garbled * This may be confusing to some. The ISA ranges property
527 1.3 garbled * is supposed to be a set of IO ranges for the ISA bus, but
528 1.3 garbled * generally, it's just a set of pci devfunc lists that tell
529 1.3 garbled * you to go look at the parent PCI device for the actual
530 1.3 garbled * ranges.
531 1.3 garbled */
532 1.3 garbled if (range == -1) {
533 1.3 garbled /* we found a rangeless isa bus */
534 1.3 garbled }
535 1.3 garbled DPRINTF("found isa stuff\n");
536 1.2 garbled for (i=0; i < range; i++)
537 1.2 garbled if (regions[i].type == iomem)
538 1.2 garbled size = regions[i].size;
539 1.2 garbled if (iomem == RANGE_IO) {
540 1.2 garbled /* the first io range is the one */
541 1.2 garbled for (i=0; i < cur; i++)
542 1.2 garbled if (list[i].type == RANGE_IO && size) {
543 1.3 garbled DPRINTF("found IO\n");
544 1.2 garbled tag->pbs_offset = list[i].addr;
545 1.2 garbled tag->pbs_limit = size;
546 1.2 garbled error = bus_space_init(tag, name, NULL, 0);
547 1.2 garbled return error;
548 1.2 garbled }
549 1.2 garbled } else {
550 1.2 garbled for (i=0; i < cur; i++)
551 1.2 garbled if (list[i].type == RANGE_MEM &&
552 1.2 garbled list[i].size == size) {
553 1.3 garbled DPRINTF("found mem\n");
554 1.2 garbled tag->pbs_offset = list[i].addr;
555 1.2 garbled tag->pbs_limit = size;
556 1.2 garbled error = bus_space_init(tag, name, NULL, 0);
557 1.2 garbled return error;
558 1.2 garbled }
559 1.2 garbled }
560 1.2 garbled return -1; /* NO ISA FOUND */
561 1.2 garbled }
562 1.2 garbled find_ranges(node, list, &cur, rangetype);
563 1.2 garbled
564 1.2 garbled DPRINTF("cur == %d\n", cur);
565 1.2 garbled /* now list should contain a list of memory regions */
566 1.2 garbled for (i=0; i < cur; i++)
567 1.2 garbled DPRINTF("addr=0x%x size=0x%x type=%d\n", list[i].addr,
568 1.2 garbled list[i].size, list[i].type);
569 1.2 garbled
570 1.2 garbled addr=0;
571 1.2 garbled range = find_lowest_range(list, cur, iomem);
572 1.2 garbled i = 0;
573 1.2 garbled nrofholes = 0;
574 1.2 garbled while (range != -1) {
575 1.2 garbled DPRINTF("range==%d\n", range);
576 1.2 garbled DPRINTF("i==%d\n", i);
577 1.2 garbled if (i == 0) {
578 1.2 garbled memcpy(®ion, &list[range], sizeof(rangemap_t));
579 1.2 garbled list[range].addr = 0;
580 1.2 garbled i++;
581 1.2 garbled range = find_lowest_range(list, cur, iomem);
582 1.2 garbled continue;
583 1.2 garbled }
584 1.2 garbled if (region.addr + region.size < list[range].addr) {
585 1.2 garbled /* allocate a hole */
586 1.2 garbled holes[nrofholes].addr = region.size + region.addr;
587 1.2 garbled holes[nrofholes].size = list[range].addr -
588 1.2 garbled holes[nrofholes].addr - 1;
589 1.2 garbled nrofholes++;
590 1.2 garbled }
591 1.2 garbled region.size = list[range].size + list[range].addr -
592 1.2 garbled region.addr;
593 1.2 garbled list[range].addr = 0;
594 1.2 garbled range = find_lowest_range(list, cur, iomem);
595 1.2 garbled }
596 1.2 garbled DPRINTF("RANGE iomem=%d FOUND\n", iomem);
597 1.2 garbled DPRINTF("addr=0x%x size=0x%x type=%d\n", region.addr,
598 1.2 garbled region.size, region.type);
599 1.2 garbled DPRINTF("HOLES FOUND\n");
600 1.2 garbled for (i=0; i < nrofholes; i++)
601 1.2 garbled DPRINTF("addr=0x%x size=0x%x type=%d\n", holes[i].addr,
602 1.2 garbled holes[i].size, holes[i].type);
603 1.2 garbled /* AT THIS POINT WE MAP IT */
604 1.2 garbled
605 1.2 garbled if (rangetype == RANGE_TYPE_PCI) {
606 1.2 garbled if (exmap == EXSTORAGE_MAX)
607 1.2 garbled panic("Not enough ex_storage space. "
608 1.2 garbled "Increase EXSTORAGE_MAX");
609 1.2 garbled
610 1.2 garbled /* XXX doing this in here might be wrong */
611 1.2 garbled if (iomem == 1) {
612 1.2 garbled /* we map an IO region */
613 1.2 garbled tag->pbs_offset = region.addr;
614 1.2 garbled tag->pbs_base = 0;
615 1.2 garbled tag->pbs_limit = region.size;
616 1.2 garbled } else {
617 1.2 garbled /* ... or a memory region */
618 1.2 garbled tag->pbs_offset = 0;
619 1.2 garbled tag->pbs_base = region.addr;
620 1.2 garbled tag->pbs_limit = region.size + region.addr;
621 1.2 garbled }
622 1.2 garbled
623 1.2 garbled error = bus_space_init(tag, name, ex_storage[exmap],
624 1.2 garbled sizeof(ex_storage[exmap]));
625 1.2 garbled exmap++;
626 1.2 garbled if (error)
627 1.2 garbled panic("ofwoea_bus_space_init: can't init tag %s", name);
628 1.2 garbled for (i=0; i < nrofholes; i++) {
629 1.2 garbled error =
630 1.2 garbled extent_alloc_region(tag->pbs_extent,
631 1.2 garbled holes[i].addr, holes[i].size, EX_NOWAIT);
632 1.2 garbled if (error)
633 1.2 garbled panic("ofwoea_bus_space_init: can't block out"
634 1.2 garbled " reserved space 0x%x-0x%x: error=%d",
635 1.2 garbled holes[i].addr, holes[i].addr+holes[i].size,
636 1.2 garbled error);
637 1.2 garbled }
638 1.2 garbled return error;
639 1.2 garbled }
640 1.2 garbled return -1;
641 1.2 garbled }
642 1.2 garbled
643 1.2 garbled void
644 1.2 garbled ofwoea_bus_space_init(void)
645 1.2 garbled {
646 1.2 garbled int error;
647 1.2 garbled
648 1.2 garbled error = ofwoea_map_space(RANGE_TYPE_ISA, RANGE_IO, -1,
649 1.2 garbled &genppc_isa_io_space_tag, "isa-ioport");
650 1.2 garbled if (error > 0)
651 1.2 garbled panic("Could not map ISA IO");
652 1.3 garbled
653 1.2 garbled error = ofwoea_map_space(RANGE_TYPE_ISA, RANGE_MEM, -1,
654 1.2 garbled &genppc_isa_mem_space_tag, "isa-iomem");
655 1.2 garbled if (error > 0)
656 1.2 garbled panic("Could not map ISA MEM");
657 1.2 garbled }
658