1 /* $NetBSD: kvm_i386pae.c,v 1.2 2014/02/19 20:21:22 dsl Exp $ */
4 * Copyright (c) 2010 Jean-Yves Migeon.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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.
15 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
16 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
28 #include <sys/cdefs.h>
29 __RCSID("$NetBSD: kvm_i386pae.c,v 1.2 2014/02/19 20:21:22 dsl Exp $");
32 * This will expose PAE functions, macros, definitions and constants.
33 * Note: this affects all virtual memory related functions. Only their
34 * PAE versions can be used below.
38 #include <sys/param.h>
40 #include <sys/kcore.h>
41 #include <sys/types.h>
48 #include <uvm/uvm_extern.h>
53 #include "kvm_private.h"
55 #include <i386/kcore.h>
56 #include <i386/pmap.h>
58 #include <i386/vmparam.h>
60 int _kvm_kvatop_i386pae(kvm_t
*, vaddr_t
, paddr_t
*);
63 * Used to translate a virtual address to a physical address for systems
64 * running under PAE mode. Three levels of virtual memory pages are handled
65 * here: the per-CPU L3 page, the 4 L2 PDs and the PTs.
68 _kvm_kvatop_i386pae(kvm_t
*kd
, vaddr_t va
, paddr_t
*pa
)
70 cpu_kcore_hdr_t
*cpu_kh
;
74 paddr_t pde_pa
, pte_pa
;
76 cpu_kh
= kd
->cpu_data
;
77 page_off
= va
& PGOFSET
;
80 * Find and read the PDE. Ignore the L3, as it is only a per-CPU
81 * page, not needed for kernel VA => PA translations.
82 * Remember that the 4 L2 pages are contiguous, so it is safe
83 * to increment pdppaddr to compute the address of the PDE.
84 * pdppaddr being PAGE_SIZE aligned, we mask the option bits.
86 pde_pa
= (cpu_kh
->pdppaddr
& PG_FRAME
) + (pl2_pi(va
) * sizeof(pde
));
87 if (_kvm_pread(kd
, kd
->pmfd
, (void *)&pde
, sizeof(pde
),
88 _kvm_pa2off(kd
, pde_pa
)) != sizeof(pde
)) {
89 _kvm_syserr(kd
, 0, "could not read PDE");
94 * Find and read the page table entry.
96 if ((pde
& PG_V
) == 0) {
97 _kvm_err(kd
, 0, "invalid translation (invalid PDE)");
100 if ((pde
& PG_PS
) != 0) {
102 * This is a 2MB page.
104 page_off
= va
& ((vaddr_t
)~PG_LGFRAME
);
105 *pa
= (pde
& PG_LGFRAME
) + page_off
;
106 return (int)(NBPD_L2
- page_off
);
109 pte_pa
= (pde
& PG_FRAME
) + (pl1_pi(va
) * sizeof(pt_entry_t
));
110 if (_kvm_pread(kd
, kd
->pmfd
, (void *) &pte
, sizeof(pte
),
111 _kvm_pa2off(kd
, pte_pa
)) != sizeof(pte
)) {
112 _kvm_syserr(kd
, 0, "could not read PTE");
117 * Validate the PTE and return the physical address.
119 if ((pte
& PG_V
) == 0) {
120 _kvm_err(kd
, 0, "invalid translation (invalid PTE)");
123 *pa
= (pte
& PG_FRAME
) + page_off
;
124 return (int)(NBPG
- page_off
);