1 /* $NetBSD: kvm_sparc.c,v 1.29 2008/01/15 13:57:42 ad Exp $ */
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software developed by the Computer Systems
8 * Engineering group at Lawrence Berkeley Laboratory under DARPA contract
9 * BG 91-66 and contributed to Berkeley.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/cdefs.h>
37 #if defined(LIBC_SCCS) && !defined(lint)
39 static char sccsid
[] = "@(#)kvm_sparc.c 8.1 (Berkeley) 6/4/93";
41 __RCSID("$NetBSD: kvm_sparc.c,v 1.29 2008/01/15 13:57:42 ad Exp $");
43 #endif /* LIBC_SCCS and not lint */
46 * Sparc machine dependent routines for kvm. Hopefully, the forthcoming
47 * vm code will one day obsolete this module.
50 #include <sys/param.h>
56 #include <sys/kcore.h>
61 #include <uvm/uvm_extern.h>
63 #include <sparc/pmap.h>
64 #include <sparc/kcore.h>
69 #include "kvm_private.h"
72 static int cputyp
= -1;
74 static int nptesg
; /* [sun4/sun4c] only */
77 #define VA_VPG(va) ((cputyp == CPU_SUN4C || cputyp == CPU_SUN4M) \
82 #define VA_OFF(va) (va & (kd->nbpg - 1))
84 int _kvm_kvatop44c
__P((kvm_t
*, u_long
, u_long
*));
85 int _kvm_kvatop4m
__P((kvm_t
*, u_long
, u_long
*));
86 int _kvm_kvatop4u
__P((kvm_t
*, u_long
, u_long
*));
90 * taken from /sys/arch/sparc64/include/kcore.h.
91 * this is the same as the sparc one, except for the kphys addition,
92 * so luckily we can use this here...
94 typedef struct sparc64_cpu_kcore_hdr
{
95 int cputype
; /* CPU type associated with this dump */
96 u_long kernbase
; /* copy of KERNBASE goes here */
97 int nmemseg
; /* # of physical memory segments */
98 u_long memsegoffset
; /* start of memseg array (relative */
99 /* to the start of this header) */
100 int nsegmap
; /* # of segmaps following */
101 u_long segmapoffset
; /* start of segmap array (relative */
102 /* to the start of this header) */
103 int npmeg
; /* # of PMEGs; [sun4/sun4c] only */
104 u_long pmegoffset
; /* start of pmeg array (relative */
105 /* to the start of this header) */
107 paddr_t kphys
; /* Physical address of 4MB locked TLB */
108 } sparc64_cpu_kcore_hdr_t
;
115 _kvm_err(kd
, kd
->program
, "_kvm_freevtop: internal error");
121 * Prepare for translation of kernel virtual addresses into offsets
122 * into crash dump files. We use the MMU specific goop written at the
123 * front of the crash dump by pmap_dumpmmu().
129 sparc64_cpu_kcore_hdr_t
*cpup
= kd
->cpu_data
;
131 switch (cputyp
= cpup
->cputype
) {
143 _kvm_err(kd
, kd
->program
, "Unsupported CPU type");
146 nptesg
= NBPSG
/ kd
->nbpg
;
151 * Translate a kernel virtual address to a physical address using the
152 * mapping information in kd->vm. Returns the result in pa, and returns
153 * the number of bytes that are contiguously available from this
154 * physical address. This routine is used only for crash dumps.
157 _kvm_kvatop(kd
, va
, pa
)
163 if (_kvm_initvtop(kd
) != 0)
169 return _kvm_kvatop44c(kd
, va
, pa
);
172 return _kvm_kvatop4m(kd
, va
, pa
);
176 return _kvm_kvatop4u(kd
, va
, pa
);
181 * (note: sun4 3-level MMU not yet supported)
184 _kvm_kvatop44c(kd
, va
, pa
)
190 sparc64_cpu_kcore_hdr_t
*cpup
= kd
->cpu_data
;
191 struct segmap
*sp
, *segmaps
;
194 u_long kernbase
= cpup
->kernbase
;
200 * Layout of CPU segment:
203 * phys_ram_seg_t[cpup->nmemseg];
204 * segmap[cpup->nsegmap];
205 * ptes[cpup->npmegs];
207 segmaps
= (struct segmap
*)((long)kd
->cpu_data
+ cpup
->segmapoffset
);
208 ptes
= (int *)((int)kd
->cpu_data
+ cpup
->pmegoffset
);
209 nkreg
= ((int)((-(unsigned)kernbase
) / NBPRG
));
215 sp
= &segmaps
[(vr
-nureg
)*NSEGRG
+ vs
];
216 if (sp
->sg_npte
== 0)
218 if (sp
->sg_pmeg
== cpup
->npmeg
- 1) /* =seginval */
220 pte
= ptes
[sp
->sg_pmeg
* nptesg
+ VA_VPG(va
)];
221 if ((pte
& PG_V
) != 0) {
222 long p
, off
= VA_OFF(va
);
224 p
= (pte
& PG_PFNUM
) << pgshift
;
226 return (kd
->nbpg
- off
);
229 _kvm_err(kd
, 0, "invalid address (%lx)", va
);
234 _kvm_kvatop4m(kd
, va
, pa
)
239 sparc64_cpu_kcore_hdr_t
*cpup
= kd
->cpu_data
;
243 struct segmap
*sp
, *segmaps
;
245 u_long kernbase
= cpup
->kernbase
;
251 * Layout of CPU segment:
254 * phys_ram_seg_t[cpup->nmemseg];
255 * segmap[cpup->nsegmap];
257 segmaps
= (struct segmap
*)((long)kd
->cpu_data
+ cpup
->segmapoffset
);
258 nkreg
= ((int)((-(unsigned)kernbase
) / NBPRG
));
264 sp
= &segmaps
[(vr
-nureg
)*NSEGRG
+ vs
];
265 if (sp
->sg_npte
== 0)
268 /* XXX - assume page tables in initial kernel DATA or BSS. */
269 foff
= _kvm_pa2off(kd
, (u_long
)&sp
->sg_pte
[VA_VPG(va
)] - kernbase
);
270 if (foff
== (off_t
)-1)
273 if (_kvm_pread(kd
, kd
->pmfd
, &pte
, sizeof(pte
), foff
) != sizeof(pte
)) {
274 _kvm_syserr(kd
, kd
->program
, "cannot read pte for %lx", va
);
278 if ((pte
& SRMMU_TETYPE
) == SRMMU_TEPTE
) {
279 long p
, off
= VA_OFF(va
);
281 p
= (pte
& SRMMU_PPNMASK
) << SRMMU_PPNPASHIFT
;
283 return (kd
->nbpg
- off
);
286 _kvm_err(kd
, 0, "invalid address (%lx)", va
);
291 * sparc64 pmap's 32-bit page table format
294 _kvm_kvatop4u(kd
, va
, pa
)
299 sparc64_cpu_kcore_hdr_t
*cpup
= kd
->cpu_data
;
303 int64_t kphys
= cpup
->kphys
;
304 u_long kernbase
= cpup
->kernbase
;
313 * 4MB locked TLB (text+data+BSS)
314 * Random other stuff.
316 if (va
>= kernbase
&& va
< kernbase
+ 4*1024*1024)
317 return (va
- kernbase
) + kphys
;
319 /* XXX: from sparc64/include/pmap.h */
320 #define SPARC64_PTSZ (kd->nbpg/8)
321 #define SPARC64_STSZ (SPARC64_PTSZ)
322 #define SPARC64_PTMASK (SPARC64_PTSZ-1)
323 #define SPARC64_PTSHIFT (13)
324 #define SPARC64_PDSHIFT (10+SPARC64_PTSHIFT)
325 #define SPARC64_STSHIFT (10+SPARC64_PDSHIFT)
326 #define SPARC64_STMASK (SPARC64_STSZ-1)
327 #define sparc64_va_to_seg(v) (int)((((int64_t)(v))>>SPARC64_STSHIFT)&SPARC64_STMASK)
328 #define sparc64_va_to_pte(v) (int)((((int64_t)(v))>>SPARC64_PTSHIFT)&SPARC64_PTMASK)
330 /* XXX: from sparc64/include/pte.h */
331 #define SPARC64_TLB_V 0x8000000000000000LL
332 #define SPARC64_TLB_PA_MASK 0x000001ffffffe000LL
335 * Layout of CPU segment:
338 * phys_ram_seg_t[cpup->nmemseg];
339 * segmap[cpup->nsegmap];
341 segmaps
= (int64_t **)((long)kd
->cpu_data
+ cpup
->segmapoffset
);
342 /* XXX XXX XXX _kvm_pa2off takes u_long and returns off_t..
343 should take off_t also!! */
345 ptes
= (int64_t *)(int)_kvm_pa2off(kd
, (u_long
)segmaps
[sparc64_va_to_seg(va
)]);
346 pte
= ptes
[sparc64_va_to_pte(va
)];
347 if ((pte
& SPARC64_TLB_V
) != 0)
348 return ((pte
& SPARC64_TLB_PA_MASK
) | (va
& (kd
->nbpg
- 1)));
350 _kvm_err(kd
, 0, "invalid address (%lx)", va
);
356 * Translate a physical address to a file-offset in the crash dump.
363 sparc64_cpu_kcore_hdr_t
*cpup
= kd
->cpu_data
;
369 * Layout of CPU segment:
372 * phys_ram_seg_t[cpup->nmemseg];
374 mp
= (phys_ram_seg_t
*)((int)kd
->cpu_data
+ cpup
->memsegoffset
);
377 /* Translate (sparse) pfnum to (packed) dump offset */
378 for (nmem
= cpup
->nmemseg
; --nmem
>= 0; mp
++) {
379 if (mp
->start
<= pa
&& pa
< mp
->start
+ mp
->size
)
384 _kvm_err(kd
, 0, "invalid address (%lx)", pa
);
388 return (kd
->dump_off
+ off
+ pa
- mp
->start
);
392 * Machine-dependent initialization for ALL open kvm descriptors,
393 * not just those for a kernel crash dump. Some architectures
394 * have to deal with these NOT being constants! (i.e. m68k)
401 extern struct ps_strings
*__ps_strings
;
403 max_uva
= (u_long
) (__ps_strings
+ 1);
404 kd
->usrstack
= max_uva
;
405 kd
->max_uva
= max_uva
;