1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/* $OpenBSD: pmap.h,v 1.4 2010/12/06 20:57:18 miod Exp $ */
/*
* Copyright (c) 2005, Miodrag Vallat
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _SOLBOURNE_PMAP_H_
#define _SOLBOURNE_PMAP_H_
#include <machine/pte.h>
/*
* PMAP structure
*/
struct pmap {
pd_entry_t *pm_segtab; /* first level table */
paddr_t pm_psegtab; /* pa of above */
int pm_refcount; /* reference count */
struct simplelock pm_lock;
struct pmap_statistics pm_stats; /* pmap statistics */
};
typedef struct pmap *pmap_t;
/*
* Extra constants passed in the low bits of pa in pmap_enter() to
* request specific memory attributes.
*/
#define PMAP_NC 1
#define PMAP_OBIO PMAP_NC
#define PMAP_BWS 2
/*
* Macro to pass iospace bits in the low bits of pa in pmap_enter().
* Provided for source code compatibility - we don't need such bits.
*/
#define PMAP_IOENC(x) 0
#ifdef _KERNEL
extern struct pmap kernel_pmap_store;
#define kvm_recache(addr, npages) kvm_setcache(addr, npages, 1)
#define kvm_uncache(addr, npages) kvm_setcache(addr, npages, 0)
#define pmap_copy(a,b,c,d,e) do { /* nothing */ } while (0)
#define pmap_deactivate(p) do { /* nothing */ } while (0)
#define pmap_kernel() (&kernel_pmap_store)
#define pmap_phys_address(frame) ptoa(frame)
#define pmap_resident_count(p) ((p)->pm_stats.resident_count)
#define pmap_update(p) do { /* nothing */ } while (0)
#define pmap_wired_count(p) ((p)->pm_stats.wired_count)
#define pmap_remove_holes(map) do { /* nothing */ } while (0)
#define PMAP_PREFER(fo, ap) pmap_prefer((fo), (ap))
struct proc;
void kvm_setcache(caddr_t, int, int);
void switchexit(struct proc *); /* locore.s */
void pmap_bootstrap(size_t);
void pmap_cache_enable(void);
void pmap_changeprot(pmap_t, vaddr_t, vm_prot_t, int);
vaddr_t pmap_map(vaddr_t, paddr_t, paddr_t, int);
int pmap_pa_exists(paddr_t);
vaddr_t pmap_prefer(vaddr_t, vaddr_t);
void pmap_release(pmap_t);
void pmap_redzone(void);
void pmap_virtual_space(vaddr_t *, vaddr_t *);
void pmap_writetext(unsigned char *, int);
#endif /* _KERNEL */
#endif /* _SOLBOURNE_PMAP_H_ */
|