machdep.c revision 1.31 1 1.31 martin /* $NetBSD: machdep.c,v 1.31 2014/02/25 14:33:32 martin Exp $ */
2 1.1 matt
3 1.1 matt /*
4 1.1 matt * Copyright (C) 1995, 1996 Wolfgang Solfrank.
5 1.1 matt * Copyright (C) 1995, 1996 TooLs GmbH.
6 1.1 matt * All rights reserved.
7 1.1 matt *
8 1.1 matt * Redistribution and use in source and binary forms, with or without
9 1.1 matt * modification, are permitted provided that the following conditions
10 1.1 matt * are met:
11 1.1 matt * 1. Redistributions of source code must retain the above copyright
12 1.1 matt * notice, this list of conditions and the following disclaimer.
13 1.1 matt * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 matt * notice, this list of conditions and the following disclaimer in the
15 1.1 matt * documentation and/or other materials provided with the distribution.
16 1.1 matt * 3. All advertising materials mentioning features or use of this software
17 1.1 matt * must display the following acknowledgement:
18 1.1 matt * This product includes software developed by TooLs GmbH.
19 1.1 matt * 4. The name of TooLs GmbH may not be used to endorse or promote products
20 1.1 matt * derived from this software without specific prior written permission.
21 1.1 matt *
22 1.1 matt * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
23 1.1 matt * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.1 matt * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.1 matt * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 1.1 matt * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27 1.1 matt * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
28 1.1 matt * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 1.1 matt * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30 1.1 matt * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
31 1.1 matt * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.1 matt */
33 1.13 lukem
34 1.13 lukem #include <sys/cdefs.h>
35 1.31 martin __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.31 2014/02/25 14:33:32 martin Exp $");
36 1.1 matt
37 1.1 matt #include "opt_marvell.h"
38 1.24 apb #include "opt_modular.h"
39 1.8 matt #include "opt_ev64260.h"
40 1.1 matt #include "opt_compat_netbsd.h"
41 1.1 matt #include "opt_ddb.h"
42 1.1 matt #include "opt_inet.h"
43 1.1 matt #include "opt_ccitt.h"
44 1.1 matt #include "opt_ns.h"
45 1.1 matt #include "opt_ipkdb.h"
46 1.1 matt
47 1.27 kiyohara #define _POWERPC_BUS_DMA_PRIVATE
48 1.27 kiyohara
49 1.1 matt #include <sys/param.h>
50 1.27 kiyohara #include <sys/bus.h>
51 1.1 matt #include <sys/conf.h>
52 1.1 matt #include <sys/device.h>
53 1.27 kiyohara #include <sys/extent.h>
54 1.1 matt #include <sys/kernel.h>
55 1.27 kiyohara #include <sys/ksyms.h>
56 1.1 matt #include <sys/mount.h>
57 1.1 matt #include <sys/reboot.h>
58 1.1 matt #include <sys/systm.h>
59 1.6 matt #include <sys/termios.h>
60 1.27 kiyohara #include <sys/vnode.h>
61 1.1 matt
62 1.1 matt #include <uvm/uvm_extern.h>
63 1.1 matt
64 1.29 matt #include <machine/powerpc.h>
65 1.1 matt
66 1.29 matt #include <powerpc/db_machdep.h>
67 1.29 matt #include <powerpc/pmap.h>
68 1.1 matt
69 1.1 matt #include <powerpc/oea/bat.h>
70 1.27 kiyohara #include <powerpc/pic/picvar.h>
71 1.27 kiyohara #include <powerpc/pio.h>
72 1.1 matt
73 1.1 matt #include <ddb/db_extern.h>
74 1.1 matt
75 1.1 matt #include <dev/cons.h>
76 1.1 matt
77 1.1 matt #include "com.h"
78 1.1 matt #if (NCOM > 0)
79 1.1 matt #include <dev/ic/comreg.h>
80 1.1 matt #include <dev/ic/comvar.h>
81 1.1 matt #endif
82 1.1 matt
83 1.2 matt #include <dev/marvell/gtreg.h>
84 1.1 matt #include <dev/marvell/gtvar.h>
85 1.1 matt
86 1.6 matt #include "gtmpsc.h"
87 1.6 matt #if (NGTMPSC > 0)
88 1.27 kiyohara #include <dev/marvell/gtbrgreg.h>
89 1.6 matt #include <dev/marvell/gtsdmareg.h>
90 1.6 matt #include <dev/marvell/gtmpscreg.h>
91 1.6 matt #include <dev/marvell/gtmpscvar.h>
92 1.6 matt #endif
93 1.6 matt
94 1.11 ragge #include "ksyms.h"
95 1.27 kiyohara #include "locators.h"
96 1.27 kiyohara
97 1.11 ragge
98 1.1 matt /*
99 1.1 matt * Global variables used here and there
100 1.1 matt */
101 1.1 matt #define PMONMEMREGIONS 32
102 1.1 matt struct mem_region physmemr[PMONMEMREGIONS], availmemr[PMONMEMREGIONS];
103 1.1 matt
104 1.27 kiyohara void initppc(u_int, u_int, u_int, void *); /* Called from locore */
105 1.27 kiyohara static void gt_bus_space_init(void);
106 1.27 kiyohara static inline void gt_record_memory(int, paddr_t, paddr_t, paddr_t);
107 1.27 kiyohara static void gt_find_memory(paddr_t);
108 1.27 kiyohara
109 1.27 kiyohara bus_addr_t gt_base = 0;
110 1.1 matt
111 1.27 kiyohara extern int primary_pic;
112 1.27 kiyohara struct pic_ops *discovery_pic;
113 1.27 kiyohara struct pic_ops *discovery_gpp_pic[4];
114 1.4 matt
115 1.8 matt
116 1.27 kiyohara struct powerpc_bus_space ev64260_pci0_mem_bs_tag = {
117 1.4 matt _BUS_SPACE_LITTLE_ENDIAN|_BUS_SPACE_MEM_TYPE,
118 1.4 matt 0x00000000, 0x00000000, 0x00000000,
119 1.4 matt };
120 1.27 kiyohara struct powerpc_bus_space ev64260_pci0_io_bs_tag = {
121 1.4 matt _BUS_SPACE_LITTLE_ENDIAN|_BUS_SPACE_IO_TYPE,
122 1.4 matt 0x00000000, 0x00000000, 0x00000000,
123 1.4 matt };
124 1.27 kiyohara struct powerpc_bus_space ev64260_pci1_mem_bs_tag = {
125 1.4 matt _BUS_SPACE_LITTLE_ENDIAN|_BUS_SPACE_MEM_TYPE,
126 1.4 matt 0x00000000, 0x00000000, 0x00000000,
127 1.4 matt };
128 1.27 kiyohara struct powerpc_bus_space ev64260_pci1_io_bs_tag = {
129 1.4 matt _BUS_SPACE_LITTLE_ENDIAN|_BUS_SPACE_IO_TYPE,
130 1.4 matt 0x00000000, 0x00000000, 0x00000000,
131 1.4 matt };
132 1.27 kiyohara struct powerpc_bus_space ev64260_obio0_bs_tag = {
133 1.8 matt _BUS_SPACE_BIG_ENDIAN|_BUS_SPACE_MEM_TYPE|OBIO0_STRIDE,
134 1.8 matt 0x00000000, 0x00000000, 0x00000000,
135 1.8 matt };
136 1.27 kiyohara struct powerpc_bus_space ev64260_obio1_bs_tag = {
137 1.8 matt _BUS_SPACE_BIG_ENDIAN|_BUS_SPACE_MEM_TYPE|OBIO1_STRIDE,
138 1.8 matt 0x00000000, 0x00000000, 0x00000000,
139 1.8 matt };
140 1.27 kiyohara struct powerpc_bus_space ev64260_obio2_bs_tag = {
141 1.8 matt _BUS_SPACE_BIG_ENDIAN|_BUS_SPACE_MEM_TYPE|OBIO2_STRIDE,
142 1.8 matt 0x00000000, 0x00000000, 0x00000000,
143 1.8 matt };
144 1.27 kiyohara struct powerpc_bus_space ev64260_obio3_bs_tag = {
145 1.8 matt _BUS_SPACE_BIG_ENDIAN|_BUS_SPACE_MEM_TYPE|OBIO3_STRIDE,
146 1.8 matt 0x00000000, 0x00000000, 0x00000000,
147 1.8 matt };
148 1.27 kiyohara struct powerpc_bus_space ev64260_bootcs_bs_tag = {
149 1.8 matt _BUS_SPACE_BIG_ENDIAN|_BUS_SPACE_MEM_TYPE,
150 1.4 matt 0x00000000, 0x00000000, 0x00000000,
151 1.4 matt };
152 1.27 kiyohara struct powerpc_bus_space ev64260_gt_bs_tag = {
153 1.4 matt _BUS_SPACE_LITTLE_ENDIAN|_BUS_SPACE_MEM_TYPE,
154 1.27 kiyohara 0x00000000, 0x00000000, GT_SIZE,
155 1.4 matt };
156 1.4 matt
157 1.27 kiyohara struct powerpc_bus_space *ev64260_obio_bs_tags[5] = {
158 1.27 kiyohara &ev64260_obio0_bs_tag, &ev64260_obio1_bs_tag, &ev64260_obio2_bs_tag,
159 1.27 kiyohara &ev64260_obio3_bs_tag, &ev64260_bootcs_bs_tag
160 1.4 matt };
161 1.1 matt
162 1.8 matt static char ex_storage[10][EXTENT_FIXED_STORAGE_SIZE(8)]
163 1.4 matt __attribute__((aligned(8)));
164 1.4 matt
165 1.8 matt const struct gt_decode_info {
166 1.8 matt bus_addr_t low_decode;
167 1.8 matt bus_addr_t high_decode;
168 1.8 matt } decode_regs[] = {
169 1.8 matt { GT_SCS0_Low_Decode, GT_SCS0_High_Decode },
170 1.8 matt { GT_SCS1_Low_Decode, GT_SCS1_High_Decode },
171 1.8 matt { GT_SCS2_Low_Decode, GT_SCS2_High_Decode },
172 1.8 matt { GT_SCS3_Low_Decode, GT_SCS3_High_Decode },
173 1.8 matt { GT_CS0_Low_Decode, GT_CS0_High_Decode },
174 1.8 matt { GT_CS1_Low_Decode, GT_CS1_High_Decode },
175 1.8 matt { GT_CS2_Low_Decode, GT_CS2_High_Decode },
176 1.8 matt { GT_CS3_Low_Decode, GT_CS3_High_Decode },
177 1.8 matt { GT_BootCS_Low_Decode, GT_BootCS_High_Decode },
178 1.1 matt };
179 1.1 matt
180 1.27 kiyohara struct powerpc_bus_dma_tag ev64260_bus_dma_tag = {
181 1.27 kiyohara 0, /* _bounce_thresh */
182 1.27 kiyohara _bus_dmamap_create,
183 1.27 kiyohara _bus_dmamap_destroy,
184 1.27 kiyohara _bus_dmamap_load,
185 1.27 kiyohara _bus_dmamap_load_mbuf,
186 1.27 kiyohara _bus_dmamap_load_uio,
187 1.27 kiyohara _bus_dmamap_load_raw,
188 1.27 kiyohara _bus_dmamap_unload,
189 1.27 kiyohara _bus_dmamap_sync,
190 1.27 kiyohara _bus_dmamem_alloc,
191 1.27 kiyohara _bus_dmamem_free,
192 1.27 kiyohara _bus_dmamem_map,
193 1.27 kiyohara _bus_dmamem_unmap,
194 1.27 kiyohara _bus_dmamem_mmap,
195 1.27 kiyohara };
196 1.27 kiyohara
197 1.27 kiyohara
198 1.1 matt void
199 1.25 dsl initppc(u_int startkernel, u_int endkernel, u_int args, void *btinfo)
200 1.1 matt {
201 1.27 kiyohara extern struct cfdata cfdata[];
202 1.27 kiyohara cfdata_t cf = &cfdata[0];
203 1.1 matt
204 1.27 kiyohara /* Get mapped address of gt(System Controller) */
205 1.27 kiyohara while (cf->cf_name != NULL) {
206 1.27 kiyohara if (strcmp(cf->cf_name, "gt") == 0 &&
207 1.27 kiyohara *cf->cf_loc != MAINBUSCF_ADDR_DEFAULT)
208 1.27 kiyohara break;
209 1.27 kiyohara cf++;
210 1.27 kiyohara }
211 1.27 kiyohara if (cf->cf_name == NULL)
212 1.27 kiyohara panic("where is gt?");
213 1.27 kiyohara gt_base = *cf->cf_loc;
214 1.27 kiyohara
215 1.27 kiyohara ev64260_gt_bs_tag.pbs_offset = gt_base;
216 1.27 kiyohara ev64260_gt_bs_tag.pbs_base = gt_base;
217 1.27 kiyohara ev64260_gt_bs_tag.pbs_limit += gt_base;
218 1.27 kiyohara oea_batinit(gt_base, BAT_BL_256M);
219 1.27 kiyohara
220 1.27 kiyohara oea_init(NULL);
221 1.1 matt
222 1.4 matt gt_bus_space_init();
223 1.27 kiyohara gt_find_memory(roundup(endkernel, PAGE_SIZE));
224 1.5 matt
225 1.4 matt consinit();
226 1.1 matt
227 1.27 kiyohara /*
228 1.1 matt * Set the page size.
229 1.1 matt */
230 1.1 matt uvm_setpagesize();
231 1.1 matt
232 1.1 matt /*
233 1.1 matt * Initialize pmap module.
234 1.1 matt */
235 1.1 matt pmap_bootstrap(startkernel, endkernel);
236 1.1 matt
237 1.22 ad #if NKSYMS || defined(DDB) || defined(MODULAR)
238 1.8 matt {
239 1.8 matt extern void *startsym, *endsym;
240 1.23 martin ksyms_addsyms_elf((int)((u_int)endsym - (u_int)startsym),
241 1.8 matt startsym, endsym);
242 1.8 matt }
243 1.1 matt #endif
244 1.1 matt #ifdef IPKDB
245 1.1 matt /*
246 1.1 matt * Now trap to IPKDB
247 1.1 matt */
248 1.1 matt ipkdb_init();
249 1.1 matt if (boothowto & RB_KDB)
250 1.1 matt ipkdb_connect(0);
251 1.1 matt #endif
252 1.1 matt }
253 1.1 matt
254 1.1 matt /*
255 1.1 matt * Machine dependent startup code.
256 1.1 matt */
257 1.1 matt void
258 1.8 matt cpu_startup(void)
259 1.1 matt {
260 1.1 matt register_t msr;
261 1.1 matt
262 1.1 matt oea_startup(NULL);
263 1.1 matt
264 1.27 kiyohara pic_init();
265 1.27 kiyohara discovery_pic = setup_discovery_pic();
266 1.27 kiyohara primary_pic = 0;
267 1.27 kiyohara discovery_gpp_pic[0] = setup_discovery_gpp_pic(discovery_pic, 0);
268 1.27 kiyohara discovery_gpp_pic[1] = setup_discovery_gpp_pic(discovery_pic, 8);
269 1.27 kiyohara discovery_gpp_pic[2] = setup_discovery_gpp_pic(discovery_pic, 16);
270 1.27 kiyohara discovery_gpp_pic[3] = setup_discovery_gpp_pic(discovery_pic, 24);
271 1.27 kiyohara /*
272 1.27 kiyohara * GPP interrupts establishes later.
273 1.27 kiyohara */
274 1.27 kiyohara
275 1.27 kiyohara oea_install_extint(pic_ext_intr);
276 1.27 kiyohara
277 1.1 matt /*
278 1.1 matt * Now that we have VM, malloc()s are OK in bus_space.
279 1.1 matt */
280 1.3 matt bus_space_mallocok();
281 1.1 matt
282 1.1 matt /*
283 1.1 matt * Now allow hardware interrupts.
284 1.1 matt */
285 1.27 kiyohara splraise(-1);
286 1.19 perry __asm volatile ("mfmsr %0; ori %0,%0,%1; mtmsr %0"
287 1.1 matt : "=r"(msr)
288 1.1 matt : "K"(PSL_EE));
289 1.1 matt }
290 1.1 matt
291 1.1 matt /*
292 1.1 matt * consinit
293 1.1 matt * Initialize system console.
294 1.1 matt */
295 1.1 matt void
296 1.8 matt consinit(void)
297 1.1 matt {
298 1.27 kiyohara
299 1.6 matt #ifdef MPSC_CONSOLE
300 1.6 matt /* PMON using MPSC0 @ 9600 */
301 1.27 kiyohara const int brg = GTMPSC_CRR_BRG0;
302 1.27 kiyohara const int baud = 9600;
303 1.27 kiyohara uint32_t cr;
304 1.27 kiyohara
305 1.27 kiyohara #if 1
306 1.27 kiyohara /*
307 1.27 kiyohara * XXX HACK FIXME
308 1.27 kiyohara * PMON output has not been flushed. give him a chance
309 1.27 kiyohara */
310 1.27 kiyohara DELAY(100000); /* XXX */
311 1.27 kiyohara #endif
312 1.27 kiyohara /* Setup MPSC Routing Registers */
313 1.27 kiyohara out32rb(gt_base + GTMPSC_MRR, GTMPSC_MRR_RES);
314 1.27 kiyohara cr = in32rb(gt_base + GTMPSC_RCRR);
315 1.27 kiyohara cr &= ~GTMPSC_CRR(MPSC_CONSOLE, GTMPSC_CRR_MASK);
316 1.27 kiyohara cr |= GTMPSC_CRR(MPSC_CONSOLE, brg);
317 1.27 kiyohara out32rb(gt_base + GTMPSC_RCRR, cr);
318 1.27 kiyohara out32rb(gt_base + GTMPSC_TCRR, cr);
319 1.27 kiyohara
320 1.27 kiyohara /* Setup Baud Rate Configuration Register of Baud Rate Generator */
321 1.27 kiyohara out32rb(gt_base + BRG_BCR(brg),
322 1.27 kiyohara BRG_BCR_EN | GT_MPSC_CLOCK_SOURCE | compute_cdv(baud));
323 1.27 kiyohara
324 1.27 kiyohara gtmpsccnattach(&ev64260_gt_bs_tag, &ev64260_bus_dma_tag, gt_base,
325 1.27 kiyohara MPSC_CONSOLE, brg, baud,
326 1.6 matt (TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8);
327 1.6 matt #else
328 1.4 matt /* PPCBOOT using COM1 @ 57600 */
329 1.12 thorpej comcnattach(>_obio2_bs_tag, 0, 57600,
330 1.12 thorpej COM_FREQ*2, COM_TYPE_NORMAL,
331 1.4 matt (TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8);
332 1.4 matt #endif
333 1.1 matt }
334 1.1 matt
335 1.1 matt /*
336 1.1 matt * Halt or reboot the machine after syncing/dumping according to howto.
337 1.1 matt */
338 1.1 matt void
339 1.8 matt cpu_reboot(int howto, char *what)
340 1.1 matt {
341 1.1 matt static int syncing;
342 1.1 matt static char str[256];
343 1.1 matt char *ap = str, *ap1 = ap;
344 1.1 matt
345 1.1 matt boothowto = howto;
346 1.1 matt if (!cold && !(howto & RB_NOSYNC) && !syncing) {
347 1.1 matt syncing = 1;
348 1.1 matt vfs_shutdown(); /* sync */
349 1.1 matt resettodr(); /* set wall clock */
350 1.1 matt }
351 1.1 matt splhigh();
352 1.1 matt if (howto & RB_HALT) {
353 1.1 matt doshutdownhooks();
354 1.21 dyoung pmf_system_shutdown(boothowto);
355 1.1 matt printf("halted\n\n");
356 1.1 matt cnhalt();
357 1.1 matt while(1);
358 1.1 matt }
359 1.1 matt if (!cold && (howto & RB_DUMP))
360 1.1 matt oea_dumpsys();
361 1.1 matt doshutdownhooks();
362 1.21 dyoung
363 1.21 dyoung pmf_system_shutdown(boothowto);
364 1.1 matt printf("rebooting\n\n");
365 1.1 matt if (what && *what) {
366 1.1 matt if (strlen(what) > sizeof str - 5)
367 1.1 matt printf("boot string too large, ignored\n");
368 1.1 matt else {
369 1.1 matt strcpy(str, what);
370 1.1 matt ap1 = ap = str + strlen(str);
371 1.1 matt *ap++ = ' ';
372 1.1 matt }
373 1.1 matt }
374 1.1 matt *ap++ = '-';
375 1.1 matt if (howto & RB_SINGLE)
376 1.1 matt *ap++ = 's';
377 1.1 matt if (howto & RB_KDB)
378 1.1 matt *ap++ = 'd';
379 1.1 matt *ap++ = 0;
380 1.1 matt if (ap[-2] == '-')
381 1.1 matt *ap1 = 0;
382 1.1 matt gt_watchdog_reset();
383 1.1 matt /* NOTREACHED */
384 1.1 matt while (1);
385 1.1 matt }
386 1.1 matt
387 1.8 matt void
388 1.27 kiyohara mem_regions(struct mem_region **mem, struct mem_region **avail)
389 1.8 matt {
390 1.8 matt
391 1.27 kiyohara *mem = physmemr;
392 1.27 kiyohara *avail = availmemr;
393 1.8 matt }
394 1.8 matt
395 1.27 kiyohara static void
396 1.4 matt gt_bus_space_init(void)
397 1.4 matt {
398 1.8 matt const struct gt_decode_info *di;
399 1.4 matt uint32_t datal, datah;
400 1.31 martin int bs, i;
401 1.4 matt
402 1.27 kiyohara bs = 0;
403 1.31 martin bus_space_init(&ev64260_gt_bs_tag, "gt",
404 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
405 1.27 kiyohara bs++;
406 1.4 matt
407 1.27 kiyohara for (i = 0, di = &decode_regs[4]; i < 5; i++, di++) {
408 1.27 kiyohara struct powerpc_bus_space *memt = ev64260_obio_bs_tags[i];
409 1.4 matt
410 1.27 kiyohara datal = in32rb(gt_base + di->low_decode);
411 1.27 kiyohara datah = in32rb(gt_base + di->high_decode);
412 1.8 matt
413 1.8 matt if (GT_LowAddr_GET(datal) >= GT_HighAddr_GET(datal)) {
414 1.27 kiyohara ev64260_obio_bs_tags[i] = NULL;
415 1.8 matt continue;
416 1.8 matt }
417 1.8 matt memt->pbs_offset = GT_LowAddr_GET(datal);
418 1.8 matt memt->pbs_limit = GT_HighAddr_GET(datah) + 1 -
419 1.8 matt memt->pbs_offset;
420 1.8 matt
421 1.31 martin bus_space_init(memt, "obio2",
422 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
423 1.8 matt bs++;
424 1.8 matt }
425 1.4 matt
426 1.27 kiyohara datal = in32rb(gt_base + GT_PCI0_Mem0_Low_Decode);
427 1.27 kiyohara datah = in32rb(gt_base + GT_PCI0_Mem0_High_Decode);
428 1.9 matt #if defined(GT_PCI0_MEMBASE)
429 1.9 matt datal &= ~0xfff;
430 1.9 matt datal |= (GT_PCI0_MEMBASE >> 20);
431 1.27 kiyohara out32rb(gt_base + GT_PCI0_Mem0_Low_Decode, datal);
432 1.9 matt #endif
433 1.9 matt #if defined(GT_PCI0_MEMSIZE)
434 1.9 matt datah &= ~0xfff;
435 1.27 kiyohara datah |= (GT_PCI0_MEMSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
436 1.27 kiyohara out32rb(gt_base + GT_PCI0_Mem0_High_Decode, datal);
437 1.9 matt #endif
438 1.27 kiyohara ev64260_pci0_mem_bs_tag.pbs_base = GT_LowAddr_GET(datal);
439 1.27 kiyohara ev64260_pci0_mem_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1;
440 1.4 matt
441 1.31 martin bus_space_init(&ev64260_pci0_mem_bs_tag, "pci0-mem",
442 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
443 1.8 matt bs++;
444 1.4 matt
445 1.27 kiyohara #if 1 /* XXXXXX */
446 1.6 matt /*
447 1.7 matt * Make sure PCI0 Memory is BAT mapped.
448 1.7 matt */
449 1.8 matt if (GT_LowAddr_GET(datal) < GT_HighAddr_GET(datal))
450 1.27 kiyohara oea_iobat_add(ev64260_pci0_mem_bs_tag.pbs_base & SEGMENT_MASK,
451 1.27 kiyohara BAT_BL_256M);
452 1.27 kiyohara #endif
453 1.7 matt
454 1.7 matt /*
455 1.6 matt * Make sure that I/O space start at 0.
456 1.6 matt */
457 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_Remap, 0);
458 1.6 matt
459 1.27 kiyohara datal = in32rb(gt_base + GT_PCI0_IO_Low_Decode);
460 1.27 kiyohara datah = in32rb(gt_base + GT_PCI0_IO_High_Decode);
461 1.9 matt #if defined(GT_PCI0_IOBASE)
462 1.9 matt datal &= ~0xfff;
463 1.9 matt datal |= (GT_PCI0_IOBASE >> 20);
464 1.27 kiyohara out32rb(gt_base + GT_PCI0_IO_Low_Decode, datal);
465 1.9 matt #endif
466 1.9 matt #if defined(GT_PCI0_IOSIZE)
467 1.9 matt datah &= ~0xfff;
468 1.27 kiyohara datah |= (GT_PCI0_IOSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
469 1.27 kiyohara out32rb(gt_base + GT_PCI0_IO_High_Decode, datal);
470 1.9 matt #endif
471 1.27 kiyohara ev64260_pci0_io_bs_tag.pbs_offset = GT_LowAddr_GET(datal);
472 1.27 kiyohara ev64260_pci0_io_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1 -
473 1.27 kiyohara ev64260_pci0_io_bs_tag.pbs_offset;
474 1.4 matt
475 1.31 martin bus_space_init(&ev64260_pci0_io_bs_tag, "pci0-ioport",
476 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
477 1.8 matt bs++;
478 1.4 matt
479 1.27 kiyohara datal = in32rb(gt_base + GT_PCI1_Mem0_Low_Decode);
480 1.27 kiyohara datah = in32rb(gt_base + GT_PCI1_Mem0_High_Decode);
481 1.9 matt #if defined(GT_PCI1_MEMBASE)
482 1.9 matt datal &= ~0xfff;
483 1.9 matt datal |= (GT_PCI1_MEMBASE >> 20);
484 1.27 kiyohara out32rb(gt_base + GT_PCI1_Mem0_Low_Decode, datal);
485 1.9 matt #endif
486 1.9 matt #if defined(GT_PCI1_MEMSIZE)
487 1.9 matt datah &= ~0xfff;
488 1.27 kiyohara datah |= (GT_PCI1_MEMSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
489 1.27 kiyohara out32rb(gt_base + GT_PCI1_Mem0_High_Decode, datal);
490 1.9 matt #endif
491 1.27 kiyohara ev64260_pci1_mem_bs_tag.pbs_base = GT_LowAddr_GET(datal);
492 1.27 kiyohara ev64260_pci1_mem_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1;
493 1.4 matt
494 1.31 martin bus_space_init(&ev64260_pci1_mem_bs_tag, "pci1-mem",
495 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
496 1.8 matt bs++;
497 1.7 matt
498 1.27 kiyohara #if 1 /* XXXXXX */
499 1.7 matt /*
500 1.7 matt * Make sure PCI1 Memory is BAT mapped.
501 1.7 matt */
502 1.8 matt if (GT_LowAddr_GET(datal) < GT_HighAddr_GET(datal))
503 1.27 kiyohara oea_iobat_add(ev64260_pci1_mem_bs_tag.pbs_base & SEGMENT_MASK,
504 1.27 kiyohara BAT_BL_256M);
505 1.27 kiyohara #endif
506 1.4 matt
507 1.6 matt /*
508 1.6 matt * Make sure that I/O space start at 0.
509 1.6 matt */
510 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_Remap, 0);
511 1.6 matt
512 1.27 kiyohara datal = in32rb(gt_base + GT_PCI1_IO_Low_Decode);
513 1.27 kiyohara datah = in32rb(gt_base + GT_PCI1_IO_High_Decode);
514 1.9 matt #if defined(GT_PCI1_IOBASE)
515 1.9 matt datal &= ~0xfff;
516 1.9 matt datal |= (GT_PCI1_IOBASE >> 20);
517 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_Low_Decode, datal);
518 1.9 matt #endif
519 1.9 matt #if defined(GT_PCI1_IOSIZE)
520 1.9 matt datah &= ~0xfff;
521 1.27 kiyohara datah |= (GT_PCI1_IOSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
522 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_High_Decode, datal);
523 1.9 matt #endif
524 1.27 kiyohara ev64260_pci1_io_bs_tag.pbs_offset = GT_LowAddr_GET(datal);
525 1.27 kiyohara ev64260_pci1_io_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1 -
526 1.27 kiyohara ev64260_pci1_io_bs_tag.pbs_offset;
527 1.4 matt
528 1.31 martin bus_space_init(&ev64260_pci1_io_bs_tag, "pci1-ioport",
529 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
530 1.8 matt bs++;
531 1.27 kiyohara }
532 1.27 kiyohara
533 1.27 kiyohara static inline void
534 1.27 kiyohara gt_record_memory(int j, paddr_t start, paddr_t end, paddr_t endkernel)
535 1.27 kiyohara {
536 1.27 kiyohara physmemr[j].start = start;
537 1.27 kiyohara physmemr[j].size = end - start;
538 1.27 kiyohara if (start < endkernel)
539 1.27 kiyohara start = endkernel;
540 1.27 kiyohara availmemr[j].start = start;
541 1.27 kiyohara availmemr[j].size = end - start;
542 1.27 kiyohara }
543 1.4 matt
544 1.27 kiyohara static void
545 1.27 kiyohara gt_find_memory(paddr_t endkernel)
546 1.27 kiyohara {
547 1.27 kiyohara paddr_t start = ~0, end = 0;
548 1.27 kiyohara const struct gt_decode_info *di;
549 1.27 kiyohara int i, j = 0, first = 1;
550 1.27 kiyohara
551 1.27 kiyohara /*
552 1.27 kiyohara * Round kernel end to a page boundary.
553 1.27 kiyohara */
554 1.27 kiyohara for (i = 0; i < 4; i++) {
555 1.27 kiyohara paddr_t nstart, nend;
556 1.27 kiyohara
557 1.27 kiyohara di = &decode_regs[i];
558 1.27 kiyohara nstart = GT_LowAddr_GET(in32rb(gt_base + di->low_decode));
559 1.27 kiyohara nend = GT_HighAddr_GET(in32rb(gt_base + di->high_decode)) + 1;
560 1.27 kiyohara if (nstart >= nend)
561 1.27 kiyohara continue;
562 1.27 kiyohara if (first) {
563 1.27 kiyohara /*
564 1.27 kiyohara * First entry? Just remember it.
565 1.27 kiyohara */
566 1.27 kiyohara start = nstart;
567 1.27 kiyohara end = nend;
568 1.27 kiyohara first = 0;
569 1.27 kiyohara } else if (nstart == end) {
570 1.27 kiyohara /*
571 1.27 kiyohara * Contiguous? Just update the end.
572 1.27 kiyohara */
573 1.27 kiyohara end = nend;
574 1.27 kiyohara } else {
575 1.27 kiyohara /*
576 1.27 kiyohara * Disjoint? record it.
577 1.27 kiyohara */
578 1.27 kiyohara gt_record_memory(j, start, end, endkernel);
579 1.27 kiyohara start = nstart;
580 1.27 kiyohara end = nend;
581 1.27 kiyohara j++;
582 1.27 kiyohara }
583 1.27 kiyohara }
584 1.27 kiyohara gt_record_memory(j, start, end, endkernel);
585 1.4 matt }
586