machdep.c revision 1.32 1 1.32 cherry /* $NetBSD: machdep.c,v 1.32 2016/12/22 14:47:57 cherry 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.32 cherry __KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.32 2016/12/22 14:47:57 cherry 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.32 cherry uvm_md_init();
228 1.1 matt
229 1.1 matt /*
230 1.1 matt * Initialize pmap module.
231 1.1 matt */
232 1.1 matt pmap_bootstrap(startkernel, endkernel);
233 1.1 matt
234 1.22 ad #if NKSYMS || defined(DDB) || defined(MODULAR)
235 1.8 matt {
236 1.8 matt extern void *startsym, *endsym;
237 1.23 martin ksyms_addsyms_elf((int)((u_int)endsym - (u_int)startsym),
238 1.8 matt startsym, endsym);
239 1.8 matt }
240 1.1 matt #endif
241 1.1 matt #ifdef IPKDB
242 1.1 matt /*
243 1.1 matt * Now trap to IPKDB
244 1.1 matt */
245 1.1 matt ipkdb_init();
246 1.1 matt if (boothowto & RB_KDB)
247 1.1 matt ipkdb_connect(0);
248 1.1 matt #endif
249 1.1 matt }
250 1.1 matt
251 1.1 matt /*
252 1.1 matt * Machine dependent startup code.
253 1.1 matt */
254 1.1 matt void
255 1.8 matt cpu_startup(void)
256 1.1 matt {
257 1.1 matt register_t msr;
258 1.1 matt
259 1.1 matt oea_startup(NULL);
260 1.1 matt
261 1.27 kiyohara pic_init();
262 1.27 kiyohara discovery_pic = setup_discovery_pic();
263 1.27 kiyohara primary_pic = 0;
264 1.27 kiyohara discovery_gpp_pic[0] = setup_discovery_gpp_pic(discovery_pic, 0);
265 1.27 kiyohara discovery_gpp_pic[1] = setup_discovery_gpp_pic(discovery_pic, 8);
266 1.27 kiyohara discovery_gpp_pic[2] = setup_discovery_gpp_pic(discovery_pic, 16);
267 1.27 kiyohara discovery_gpp_pic[3] = setup_discovery_gpp_pic(discovery_pic, 24);
268 1.27 kiyohara /*
269 1.27 kiyohara * GPP interrupts establishes later.
270 1.27 kiyohara */
271 1.27 kiyohara
272 1.27 kiyohara oea_install_extint(pic_ext_intr);
273 1.27 kiyohara
274 1.1 matt /*
275 1.1 matt * Now that we have VM, malloc()s are OK in bus_space.
276 1.1 matt */
277 1.3 matt bus_space_mallocok();
278 1.1 matt
279 1.1 matt /*
280 1.1 matt * Now allow hardware interrupts.
281 1.1 matt */
282 1.27 kiyohara splraise(-1);
283 1.19 perry __asm volatile ("mfmsr %0; ori %0,%0,%1; mtmsr %0"
284 1.1 matt : "=r"(msr)
285 1.1 matt : "K"(PSL_EE));
286 1.1 matt }
287 1.1 matt
288 1.1 matt /*
289 1.1 matt * consinit
290 1.1 matt * Initialize system console.
291 1.1 matt */
292 1.1 matt void
293 1.8 matt consinit(void)
294 1.1 matt {
295 1.27 kiyohara
296 1.6 matt #ifdef MPSC_CONSOLE
297 1.6 matt /* PMON using MPSC0 @ 9600 */
298 1.27 kiyohara const int brg = GTMPSC_CRR_BRG0;
299 1.27 kiyohara const int baud = 9600;
300 1.27 kiyohara uint32_t cr;
301 1.27 kiyohara
302 1.27 kiyohara #if 1
303 1.27 kiyohara /*
304 1.27 kiyohara * XXX HACK FIXME
305 1.27 kiyohara * PMON output has not been flushed. give him a chance
306 1.27 kiyohara */
307 1.27 kiyohara DELAY(100000); /* XXX */
308 1.27 kiyohara #endif
309 1.27 kiyohara /* Setup MPSC Routing Registers */
310 1.27 kiyohara out32rb(gt_base + GTMPSC_MRR, GTMPSC_MRR_RES);
311 1.27 kiyohara cr = in32rb(gt_base + GTMPSC_RCRR);
312 1.27 kiyohara cr &= ~GTMPSC_CRR(MPSC_CONSOLE, GTMPSC_CRR_MASK);
313 1.27 kiyohara cr |= GTMPSC_CRR(MPSC_CONSOLE, brg);
314 1.27 kiyohara out32rb(gt_base + GTMPSC_RCRR, cr);
315 1.27 kiyohara out32rb(gt_base + GTMPSC_TCRR, cr);
316 1.27 kiyohara
317 1.27 kiyohara /* Setup Baud Rate Configuration Register of Baud Rate Generator */
318 1.27 kiyohara out32rb(gt_base + BRG_BCR(brg),
319 1.27 kiyohara BRG_BCR_EN | GT_MPSC_CLOCK_SOURCE | compute_cdv(baud));
320 1.27 kiyohara
321 1.27 kiyohara gtmpsccnattach(&ev64260_gt_bs_tag, &ev64260_bus_dma_tag, gt_base,
322 1.27 kiyohara MPSC_CONSOLE, brg, baud,
323 1.6 matt (TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8);
324 1.6 matt #else
325 1.4 matt /* PPCBOOT using COM1 @ 57600 */
326 1.12 thorpej comcnattach(>_obio2_bs_tag, 0, 57600,
327 1.12 thorpej COM_FREQ*2, COM_TYPE_NORMAL,
328 1.4 matt (TTYDEF_CFLAG & ~(CSIZE | CSTOPB | PARENB)) | CS8);
329 1.4 matt #endif
330 1.1 matt }
331 1.1 matt
332 1.1 matt /*
333 1.1 matt * Halt or reboot the machine after syncing/dumping according to howto.
334 1.1 matt */
335 1.1 matt void
336 1.8 matt cpu_reboot(int howto, char *what)
337 1.1 matt {
338 1.1 matt static int syncing;
339 1.1 matt static char str[256];
340 1.1 matt char *ap = str, *ap1 = ap;
341 1.1 matt
342 1.1 matt boothowto = howto;
343 1.1 matt if (!cold && !(howto & RB_NOSYNC) && !syncing) {
344 1.1 matt syncing = 1;
345 1.1 matt vfs_shutdown(); /* sync */
346 1.1 matt resettodr(); /* set wall clock */
347 1.1 matt }
348 1.1 matt splhigh();
349 1.1 matt if (howto & RB_HALT) {
350 1.1 matt doshutdownhooks();
351 1.21 dyoung pmf_system_shutdown(boothowto);
352 1.1 matt printf("halted\n\n");
353 1.1 matt cnhalt();
354 1.1 matt while(1);
355 1.1 matt }
356 1.1 matt if (!cold && (howto & RB_DUMP))
357 1.1 matt oea_dumpsys();
358 1.1 matt doshutdownhooks();
359 1.21 dyoung
360 1.21 dyoung pmf_system_shutdown(boothowto);
361 1.1 matt printf("rebooting\n\n");
362 1.1 matt if (what && *what) {
363 1.1 matt if (strlen(what) > sizeof str - 5)
364 1.1 matt printf("boot string too large, ignored\n");
365 1.1 matt else {
366 1.1 matt strcpy(str, what);
367 1.1 matt ap1 = ap = str + strlen(str);
368 1.1 matt *ap++ = ' ';
369 1.1 matt }
370 1.1 matt }
371 1.1 matt *ap++ = '-';
372 1.1 matt if (howto & RB_SINGLE)
373 1.1 matt *ap++ = 's';
374 1.1 matt if (howto & RB_KDB)
375 1.1 matt *ap++ = 'd';
376 1.1 matt *ap++ = 0;
377 1.1 matt if (ap[-2] == '-')
378 1.1 matt *ap1 = 0;
379 1.1 matt gt_watchdog_reset();
380 1.1 matt /* NOTREACHED */
381 1.1 matt while (1);
382 1.1 matt }
383 1.1 matt
384 1.8 matt void
385 1.27 kiyohara mem_regions(struct mem_region **mem, struct mem_region **avail)
386 1.8 matt {
387 1.8 matt
388 1.27 kiyohara *mem = physmemr;
389 1.27 kiyohara *avail = availmemr;
390 1.8 matt }
391 1.8 matt
392 1.27 kiyohara static void
393 1.4 matt gt_bus_space_init(void)
394 1.4 matt {
395 1.8 matt const struct gt_decode_info *di;
396 1.4 matt uint32_t datal, datah;
397 1.31 martin int bs, i;
398 1.4 matt
399 1.27 kiyohara bs = 0;
400 1.31 martin bus_space_init(&ev64260_gt_bs_tag, "gt",
401 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
402 1.27 kiyohara bs++;
403 1.4 matt
404 1.27 kiyohara for (i = 0, di = &decode_regs[4]; i < 5; i++, di++) {
405 1.27 kiyohara struct powerpc_bus_space *memt = ev64260_obio_bs_tags[i];
406 1.4 matt
407 1.27 kiyohara datal = in32rb(gt_base + di->low_decode);
408 1.27 kiyohara datah = in32rb(gt_base + di->high_decode);
409 1.8 matt
410 1.8 matt if (GT_LowAddr_GET(datal) >= GT_HighAddr_GET(datal)) {
411 1.27 kiyohara ev64260_obio_bs_tags[i] = NULL;
412 1.8 matt continue;
413 1.8 matt }
414 1.8 matt memt->pbs_offset = GT_LowAddr_GET(datal);
415 1.8 matt memt->pbs_limit = GT_HighAddr_GET(datah) + 1 -
416 1.8 matt memt->pbs_offset;
417 1.8 matt
418 1.31 martin bus_space_init(memt, "obio2",
419 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
420 1.8 matt bs++;
421 1.8 matt }
422 1.4 matt
423 1.27 kiyohara datal = in32rb(gt_base + GT_PCI0_Mem0_Low_Decode);
424 1.27 kiyohara datah = in32rb(gt_base + GT_PCI0_Mem0_High_Decode);
425 1.9 matt #if defined(GT_PCI0_MEMBASE)
426 1.9 matt datal &= ~0xfff;
427 1.9 matt datal |= (GT_PCI0_MEMBASE >> 20);
428 1.27 kiyohara out32rb(gt_base + GT_PCI0_Mem0_Low_Decode, datal);
429 1.9 matt #endif
430 1.9 matt #if defined(GT_PCI0_MEMSIZE)
431 1.9 matt datah &= ~0xfff;
432 1.27 kiyohara datah |= (GT_PCI0_MEMSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
433 1.27 kiyohara out32rb(gt_base + GT_PCI0_Mem0_High_Decode, datal);
434 1.9 matt #endif
435 1.27 kiyohara ev64260_pci0_mem_bs_tag.pbs_base = GT_LowAddr_GET(datal);
436 1.27 kiyohara ev64260_pci0_mem_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1;
437 1.4 matt
438 1.31 martin bus_space_init(&ev64260_pci0_mem_bs_tag, "pci0-mem",
439 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
440 1.8 matt bs++;
441 1.4 matt
442 1.27 kiyohara #if 1 /* XXXXXX */
443 1.6 matt /*
444 1.7 matt * Make sure PCI0 Memory is BAT mapped.
445 1.7 matt */
446 1.8 matt if (GT_LowAddr_GET(datal) < GT_HighAddr_GET(datal))
447 1.27 kiyohara oea_iobat_add(ev64260_pci0_mem_bs_tag.pbs_base & SEGMENT_MASK,
448 1.27 kiyohara BAT_BL_256M);
449 1.27 kiyohara #endif
450 1.7 matt
451 1.7 matt /*
452 1.6 matt * Make sure that I/O space start at 0.
453 1.6 matt */
454 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_Remap, 0);
455 1.6 matt
456 1.27 kiyohara datal = in32rb(gt_base + GT_PCI0_IO_Low_Decode);
457 1.27 kiyohara datah = in32rb(gt_base + GT_PCI0_IO_High_Decode);
458 1.9 matt #if defined(GT_PCI0_IOBASE)
459 1.9 matt datal &= ~0xfff;
460 1.9 matt datal |= (GT_PCI0_IOBASE >> 20);
461 1.27 kiyohara out32rb(gt_base + GT_PCI0_IO_Low_Decode, datal);
462 1.9 matt #endif
463 1.9 matt #if defined(GT_PCI0_IOSIZE)
464 1.9 matt datah &= ~0xfff;
465 1.27 kiyohara datah |= (GT_PCI0_IOSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
466 1.27 kiyohara out32rb(gt_base + GT_PCI0_IO_High_Decode, datal);
467 1.9 matt #endif
468 1.27 kiyohara ev64260_pci0_io_bs_tag.pbs_offset = GT_LowAddr_GET(datal);
469 1.27 kiyohara ev64260_pci0_io_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1 -
470 1.27 kiyohara ev64260_pci0_io_bs_tag.pbs_offset;
471 1.4 matt
472 1.31 martin bus_space_init(&ev64260_pci0_io_bs_tag, "pci0-ioport",
473 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
474 1.8 matt bs++;
475 1.4 matt
476 1.27 kiyohara datal = in32rb(gt_base + GT_PCI1_Mem0_Low_Decode);
477 1.27 kiyohara datah = in32rb(gt_base + GT_PCI1_Mem0_High_Decode);
478 1.9 matt #if defined(GT_PCI1_MEMBASE)
479 1.9 matt datal &= ~0xfff;
480 1.9 matt datal |= (GT_PCI1_MEMBASE >> 20);
481 1.27 kiyohara out32rb(gt_base + GT_PCI1_Mem0_Low_Decode, datal);
482 1.9 matt #endif
483 1.9 matt #if defined(GT_PCI1_MEMSIZE)
484 1.9 matt datah &= ~0xfff;
485 1.27 kiyohara datah |= (GT_PCI1_MEMSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
486 1.27 kiyohara out32rb(gt_base + GT_PCI1_Mem0_High_Decode, datal);
487 1.9 matt #endif
488 1.27 kiyohara ev64260_pci1_mem_bs_tag.pbs_base = GT_LowAddr_GET(datal);
489 1.27 kiyohara ev64260_pci1_mem_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1;
490 1.4 matt
491 1.31 martin bus_space_init(&ev64260_pci1_mem_bs_tag, "pci1-mem",
492 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
493 1.8 matt bs++;
494 1.7 matt
495 1.27 kiyohara #if 1 /* XXXXXX */
496 1.7 matt /*
497 1.7 matt * Make sure PCI1 Memory is BAT mapped.
498 1.7 matt */
499 1.8 matt if (GT_LowAddr_GET(datal) < GT_HighAddr_GET(datal))
500 1.27 kiyohara oea_iobat_add(ev64260_pci1_mem_bs_tag.pbs_base & SEGMENT_MASK,
501 1.27 kiyohara BAT_BL_256M);
502 1.27 kiyohara #endif
503 1.4 matt
504 1.6 matt /*
505 1.6 matt * Make sure that I/O space start at 0.
506 1.6 matt */
507 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_Remap, 0);
508 1.6 matt
509 1.27 kiyohara datal = in32rb(gt_base + GT_PCI1_IO_Low_Decode);
510 1.27 kiyohara datah = in32rb(gt_base + GT_PCI1_IO_High_Decode);
511 1.9 matt #if defined(GT_PCI1_IOBASE)
512 1.9 matt datal &= ~0xfff;
513 1.9 matt datal |= (GT_PCI1_IOBASE >> 20);
514 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_Low_Decode, datal);
515 1.9 matt #endif
516 1.9 matt #if defined(GT_PCI1_IOSIZE)
517 1.9 matt datah &= ~0xfff;
518 1.27 kiyohara datah |= (GT_PCI1_IOSIZE + GT_LowAddr_GET(datal) - 1) >> 20;
519 1.27 kiyohara out32rb(gt_base + GT_PCI1_IO_High_Decode, datal);
520 1.9 matt #endif
521 1.27 kiyohara ev64260_pci1_io_bs_tag.pbs_offset = GT_LowAddr_GET(datal);
522 1.27 kiyohara ev64260_pci1_io_bs_tag.pbs_limit = GT_HighAddr_GET(datah) + 1 -
523 1.27 kiyohara ev64260_pci1_io_bs_tag.pbs_offset;
524 1.4 matt
525 1.31 martin bus_space_init(&ev64260_pci1_io_bs_tag, "pci1-ioport",
526 1.8 matt ex_storage[bs], sizeof(ex_storage[bs]));
527 1.8 matt bs++;
528 1.27 kiyohara }
529 1.27 kiyohara
530 1.27 kiyohara static inline void
531 1.27 kiyohara gt_record_memory(int j, paddr_t start, paddr_t end, paddr_t endkernel)
532 1.27 kiyohara {
533 1.27 kiyohara physmemr[j].start = start;
534 1.27 kiyohara physmemr[j].size = end - start;
535 1.27 kiyohara if (start < endkernel)
536 1.27 kiyohara start = endkernel;
537 1.27 kiyohara availmemr[j].start = start;
538 1.27 kiyohara availmemr[j].size = end - start;
539 1.27 kiyohara }
540 1.4 matt
541 1.27 kiyohara static void
542 1.27 kiyohara gt_find_memory(paddr_t endkernel)
543 1.27 kiyohara {
544 1.27 kiyohara paddr_t start = ~0, end = 0;
545 1.27 kiyohara const struct gt_decode_info *di;
546 1.27 kiyohara int i, j = 0, first = 1;
547 1.27 kiyohara
548 1.27 kiyohara /*
549 1.27 kiyohara * Round kernel end to a page boundary.
550 1.27 kiyohara */
551 1.27 kiyohara for (i = 0; i < 4; i++) {
552 1.27 kiyohara paddr_t nstart, nend;
553 1.27 kiyohara
554 1.27 kiyohara di = &decode_regs[i];
555 1.27 kiyohara nstart = GT_LowAddr_GET(in32rb(gt_base + di->low_decode));
556 1.27 kiyohara nend = GT_HighAddr_GET(in32rb(gt_base + di->high_decode)) + 1;
557 1.27 kiyohara if (nstart >= nend)
558 1.27 kiyohara continue;
559 1.27 kiyohara if (first) {
560 1.27 kiyohara /*
561 1.27 kiyohara * First entry? Just remember it.
562 1.27 kiyohara */
563 1.27 kiyohara start = nstart;
564 1.27 kiyohara end = nend;
565 1.27 kiyohara first = 0;
566 1.27 kiyohara } else if (nstart == end) {
567 1.27 kiyohara /*
568 1.27 kiyohara * Contiguous? Just update the end.
569 1.27 kiyohara */
570 1.27 kiyohara end = nend;
571 1.27 kiyohara } else {
572 1.27 kiyohara /*
573 1.27 kiyohara * Disjoint? record it.
574 1.27 kiyohara */
575 1.27 kiyohara gt_record_memory(j, start, end, endkernel);
576 1.27 kiyohara start = nstart;
577 1.27 kiyohara end = nend;
578 1.27 kiyohara j++;
579 1.27 kiyohara }
580 1.27 kiyohara }
581 1.27 kiyohara gt_record_memory(j, start, end, endkernel);
582 1.4 matt }
583