pmap.h revision 209243
1187301Sgonzo/*-
2178172Simp * Copyright (c) 1991 Regents of the University of California.
3178172Simp * All rights reserved.
4178172Simp *
5178172Simp * This code is derived from software contributed to Berkeley by
6178172Simp * the Systems Programming Group of the University of Utah Computer
7178172Simp * Science Department and William Jolitz of UUNET Technologies Inc.
8178172Simp *
9178172Simp * Redistribution and use in source and binary forms, with or without
10178172Simp * modification, are permitted provided that the following conditions
11178172Simp * are met:
12178172Simp * 1. Redistributions of source code must retain the above copyright
13178172Simp *    notice, this list of conditions and the following disclaimer.
14178172Simp * 2. Redistributions in binary form must reproduce the above copyright
15178172Simp *    notice, this list of conditions and the following disclaimer in the
16178172Simp *    documentation and/or other materials provided with the distribution.
17178172Simp * 4. Neither the name of the University nor the names of its contributors
18178172Simp *    may be used to endorse or promote products derived from this software
19178172Simp *    without specific prior written permission.
20178172Simp *
21178172Simp * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22178172Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23178172Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24178172Simp * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25178172Simp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26178172Simp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27178172Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28178172Simp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29178172Simp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30178172Simp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31178172Simp * SUCH DAMAGE.
32178172Simp *
33178172Simp * Derived from hp300 version by Mike Hibler, this version by William
34178172Simp * Jolitz uses a recursive map [a pde points to the page directory] to
35178172Simp * map the page tables using the pagetables themselves. This is done to
36178172Simp * reduce the impact on kernel virtual memory for lots of sparse address
37178172Simp * space, and to reduce the cost of memory to each process.
38178172Simp *
39178172Simp *	from: hp300: @(#)pmap.h 7.2 (Berkeley) 12/16/90
40178172Simp *	from: @(#)pmap.h	7.4 (Berkeley) 5/12/91
41178172Simp *	from: src/sys/i386/include/pmap.h,v 1.65.2.2 2000/11/30 01:54:42 peter
42178172Simp *	JNPR: pmap.h,v 1.7.2.1 2007/09/10 07:44:12 girish
43178172Simp *      $FreeBSD: head/sys/mips/include/pmap.h 209243 2010-06-17 05:03:01Z jchandra $
44178172Simp */
45178172Simp
46178172Simp#ifndef _MACHINE_PMAP_H_
47178172Simp#define	_MACHINE_PMAP_H_
48178172Simp
49178172Simp#include <machine/vmparam.h>
50187301Sgonzo#include <machine/pte.h>
51178172Simp
52178172Simp#define	NKPT		120	/* actual number of kernel page tables */
53178172Simp#define	NUSERPGTBLS	(VM_MAXUSER_ADDRESS >> SEGSHIFT)
54178172Simp
55178172Simp#ifndef LOCORE
56178172Simp
57178172Simp#include <sys/queue.h>
58178172Simp#include <sys/_lock.h>
59178172Simp#include <sys/_mutex.h>
60178172Simp
61178172Simp/*
62178172Simp * Pmap stuff
63178172Simp */
64178172Simpstruct pv_entry;
65178172Simp
66178172Simpstruct md_page {
67178172Simp	int pv_list_count;
68178172Simp	int pv_flags;
69191735Salc	TAILQ_HEAD(, pv_entry) pv_list;
70178172Simp};
71178172Simp
72178172Simp#define	PV_TABLE_MOD		0x01	/* modified */
73178172Simp#define	PV_TABLE_REF		0x02	/* referenced */
74178172Simp
75178172Simp#define	ASID_BITS		8
76178172Simp#define	ASIDGEN_BITS		(32 - ASID_BITS)
77178172Simp#define	ASIDGEN_MASK		((1 << ASIDGEN_BITS) - 1)
78178172Simp
79178172Simpstruct pmap {
80178172Simp	pd_entry_t *pm_segtab;	/* KVA of segment table */
81191735Salc	TAILQ_HEAD(, pv_entry) pm_pvlist;	/* list of mappings in
82191735Salc						 * pmap */
83207410Skmacy	uint32_t	pm_gen_count;	/* generation count (pmap lock dropped) */
84207410Skmacy	u_int		pm_retries;
85178172Simp	int pm_active;		/* active on cpus */
86178172Simp	struct {
87178172Simp		u_int32_t asid:ASID_BITS;	/* TLB address space tag */
88178172Simp		u_int32_t gen:ASIDGEN_BITS;	/* its generation number */
89178172Simp	}      pm_asid[MAXSMPCPU];
90178172Simp	struct pmap_statistics pm_stats;	/* pmap statistics */
91178172Simp	struct vm_page *pm_ptphint;	/* pmap ptp hint */
92178172Simp	struct mtx pm_mtx;
93178172Simp};
94178172Simp
95178172Simptypedef struct pmap *pmap_t;
96178172Simp
97187301Sgonzo#ifdef	_KERNEL
98178172Simp
99178172Simppt_entry_t *pmap_pte(pmap_t, vm_offset_t);
100178172Simppd_entry_t pmap_segmap(pmap_t pmap, vm_offset_t va);
101178172Simpvm_offset_t pmap_kextract(vm_offset_t va);
102178172Simp
103178172Simp#define	vtophys(va)	pmap_kextract(((vm_offset_t) (va)))
104209243Sjchandra#define	pmap_asid(pmap)	(pmap)->pm_asid[PCPU_GET(cpuid)].asid
105178172Simp
106191735Salcextern struct pmap	kernel_pmap_store;
107191735Salc#define kernel_pmap	(&kernel_pmap_store)
108191735Salc
109178172Simp#define	PMAP_LOCK(pmap)		mtx_lock(&(pmap)->pm_mtx)
110178172Simp#define	PMAP_LOCK_ASSERT(pmap, type)	mtx_assert(&(pmap)->pm_mtx, (type))
111178172Simp#define	PMAP_LOCK_DESTROY(pmap) mtx_destroy(&(pmap)->pm_mtx)
112178172Simp#define	PMAP_LOCK_INIT(pmap)	mtx_init(&(pmap)->pm_mtx, "pmap", \
113178172Simp				    NULL, MTX_DEF)
114178172Simp#define	PMAP_LOCKED(pmap)	mtx_owned(&(pmap)->pm_mtx)
115178172Simp#define	PMAP_MTX(pmap)		(&(pmap)->pm_mtx)
116178172Simp#define	PMAP_TRYLOCK(pmap)	mtx_trylock(&(pmap)->pm_mtx)
117178172Simp#define	PMAP_UNLOCK(pmap)	mtx_unlock(&(pmap)->pm_mtx)
118178172Simp
119178172Simp#define PMAP_LGMEM_LOCK_INIT(sysmap) mtx_init(&(sysmap)->lock, "pmap-lgmem", \
120178172Simp				    "per-cpu-map", (MTX_DEF| MTX_DUPOK))
121178172Simp#define PMAP_LGMEM_LOCK(sysmap) mtx_lock(&(sysmap)->lock)
122178172Simp#define PMAP_LGMEM_UNLOCK(sysmap) mtx_unlock(&(sysmap)->lock)
123178172Simp#define PMAP_LGMEM_DESTROY(sysmap) mtx_destroy(&(sysmap)->lock)
124178172Simp
125178172Simp/*
126178172Simp * For each vm_page_t, there is a list of all currently valid virtual
127178172Simp * mappings of that page.  An entry is a pv_entry_t, the list is pv_table.
128178172Simp */
129178172Simptypedef struct pv_entry {
130178172Simp	pmap_t pv_pmap;		/* pmap where mapping lies */
131178172Simp	vm_offset_t pv_va;	/* virtual address for mapping */
132191735Salc	TAILQ_ENTRY(pv_entry) pv_list;
133191735Salc	TAILQ_ENTRY(pv_entry) pv_plist;
134178172Simp	vm_page_t pv_ptem;	/* VM page for pte */
135178172Simp	boolean_t pv_wired;	/* whether this entry is wired */
136178172Simp}       *pv_entry_t;
137178172Simp
138178172Simp
139178172Simp#if defined(DIAGNOSTIC)
140178172Simp#define	PMAP_DIAGNOSTIC
141178172Simp#endif
142178172Simp
143202031Simp/*
144202031Simp * physmem_desc[] is a superset of phys_avail[] and describes all the
145202031Simp * memory present in the system.
146202031Simp *
147202031Simp * phys_avail[] is similar but does not include the memory stolen by
148202031Simp * pmap_steal_memory().
149202031Simp *
150202031Simp * Each memory region is described by a pair of elements in the array
151202031Simp * so we can describe up to (PHYS_AVAIL_ENTRIES / 2) distinct memory
152202031Simp * regions.
153202031Simp */
154202031Simp#define	PHYS_AVAIL_ENTRIES	10
155202031Simpextern vm_offset_t phys_avail[PHYS_AVAIL_ENTRIES + 2];
156202031Simpextern vm_offset_t physmem_desc[PHYS_AVAIL_ENTRIES + 2];
157202031Simp
158178172Simpextern vm_offset_t virtual_avail;
159178172Simpextern vm_offset_t virtual_end;
160178172Simp
161195649Salc#define	pmap_page_get_memattr(m)	VM_MEMATTR_DEFAULT
162178172Simp#define	pmap_page_is_mapped(m)	(!TAILQ_EMPTY(&(m)->md.pv_list))
163195649Salc#define	pmap_page_set_memattr(m, ma)	(void)0
164178172Simp
165178172Simpvoid pmap_bootstrap(void);
166178172Simpvoid *pmap_mapdev(vm_offset_t, vm_size_t);
167178172Simpvoid pmap_unmapdev(vm_offset_t, vm_size_t);
168178172Simpvm_offset_t pmap_steal_memory(vm_size_t size);
169178172Simpvoid pmap_set_modified(vm_offset_t pa);
170178172Simpint page_is_managed(vm_offset_t pa);
171187327Simpvoid pmap_kenter(vm_offset_t va, vm_paddr_t pa);
172187327Simpvoid pmap_kremove(vm_offset_t va);
173178172Simpvoid *pmap_kenter_temporary(vm_paddr_t pa, int i);
174178172Simpvoid pmap_kenter_temporary_free(vm_paddr_t pa);
175178172Simpint pmap_compute_pages_to_dump(void);
176178172Simpvoid pmap_update_page(pmap_t pmap, vm_offset_t va, pt_entry_t pte);
177202031Simpvoid pmap_flush_pvcache(vm_page_t m);
178178172Simp
179178172Simp#endif				/* _KERNEL */
180178172Simp
181178172Simp#endif				/* !LOCORE */
182178172Simp
183178172Simp#endif				/* !_MACHINE_PMAP_H_ */
184