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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <sys/types.h>
#include <sys/sysmacros.h>
#include <sys/systm.h>
#include <sys/mman.h>
#include <sys/buf.h>
#include <sys/vmem.h>
#include <sys/cmn_err.h>
#include <sys/debug.h>
#include <sys/machparam.h>
#include <vm/page.h>
#include <vm/seg_kmem.h>
#include <vm/seg_kpm.h>
#ifdef __sparc
#include <sys/cpu_module.h>
#define BP_FLUSH(addr, size) flush_instr_mem((void *)addr, size);
#else
#define BP_FLUSH(addr, size)
#endif
static vmem_t *bp_map_arena;
static size_t bp_align;
static uint_t bp_devload_flags = PROT_READ | PROT_WRITE | HAT_NOSYNC;
int bp_max_cache = 1 << 17; /* 128K default; tunable */
int bp_mapin_kpm_enable = 1; /* enable default; tunable */
static void *
bp_vmem_alloc(vmem_t *vmp, size_t size, int vmflag)
{
return (vmem_xalloc(vmp, size, bp_align, 0, 0, NULL, NULL, vmflag));
}
void
bp_init(size_t align, uint_t devload_flags)
{
bp_align = MAX(align, PAGESIZE);
bp_devload_flags |= devload_flags;
if (bp_align <= bp_max_cache)
bp_map_arena = vmem_create("bp_map", NULL, 0, bp_align,
bp_vmem_alloc, vmem_free, heap_arena,
MIN(8 * bp_align, bp_max_cache), VM_SLEEP);
}
/*
* common routine so can be called with/without VM_SLEEP
*/
void *
bp_mapin_common(struct buf *bp, int flag)
{
struct as *as;
pfn_t pfnum;
page_t *pp;
page_t **pplist;
caddr_t kaddr;
caddr_t addr;
uintptr_t off;
size_t size;
pgcnt_t npages;
int color;
/* return if already mapped in, no pageio/physio, or physio to kas */
if ((bp->b_flags & B_REMAPPED) ||
!(bp->b_flags & (B_PAGEIO | B_PHYS)) ||
(((bp->b_flags & (B_PAGEIO | B_PHYS)) == B_PHYS) &&
((bp->b_proc == NULL) || (bp->b_proc->p_as == &kas))))
return (bp->b_un.b_addr);
ASSERT((bp->b_flags & (B_PAGEIO | B_PHYS)) != (B_PAGEIO | B_PHYS));
addr = (caddr_t)bp->b_un.b_addr;
off = (uintptr_t)addr & PAGEOFFSET;
size = P2ROUNDUP(bp->b_bcount + off, PAGESIZE);
npages = btop(size);
/* Fastpath single page IO to locked memory by using kpm. */
if ((bp->b_flags & (B_SHADOW | B_PAGEIO)) && (npages == 1) &&
kpm_enable && bp_mapin_kpm_enable) {
if (bp->b_flags & B_SHADOW)
pp = *bp->b_shadow;
else
pp = bp->b_pages;
kaddr = hat_kpm_mapin(pp, NULL);
bp->b_un.b_addr = kaddr + off;
bp->b_flags |= B_REMAPPED;
return (bp->b_un.b_addr);
}
/*
* Allocate kernel virtual space for remapping.
*/
color = bp_color(bp);
ASSERT(color < bp_align);
if (bp_map_arena != NULL) {
kaddr = (caddr_t)vmem_alloc(bp_map_arena,
P2ROUNDUP(color + size, bp_align), flag);
if (kaddr == NULL)
return (NULL);
kaddr += color;
} else {
kaddr = vmem_xalloc(heap_arena, size, bp_align, color,
0, NULL, NULL, flag);
if (kaddr == NULL)
return (NULL);
}
ASSERT(P2PHASE((uintptr_t)kaddr, bp_align) == color);
/*
* Map bp into the virtual space we just allocated.
*/
if (bp->b_flags & B_PAGEIO) {
pp = bp->b_pages;
pplist = NULL;
} else if (bp->b_flags & B_SHADOW) {
pp = NULL;
pplist = bp->b_shadow;
} else {
pp = NULL;
pplist = NULL;
if (bp->b_proc == NULL || (as = bp->b_proc->p_as) == NULL)
as = &kas;
}
bp->b_flags |= B_REMAPPED;
bp->b_un.b_addr = kaddr + off;
while (npages-- != 0) {
if (pp) {
pfnum = pp->p_pagenum;
pp = pp->p_next;
} else if (pplist == NULL) {
pfnum = hat_getpfnum(as->a_hat,
(caddr_t)((uintptr_t)addr & MMU_PAGEMASK));
if (pfnum == PFN_INVALID)
panic("bp_mapin_common: hat_getpfnum for"
" addr %p failed\n", (void *)addr);
addr += PAGESIZE;
} else {
pfnum = (*pplist)->p_pagenum;
pplist++;
}
hat_devload(kas.a_hat, kaddr, PAGESIZE, pfnum,
bp_devload_flags, HAT_LOAD_LOCK);
kaddr += PAGESIZE;
}
return (bp->b_un.b_addr);
}
/*
* Convert bp for pageio/physio to a kernel addressable location.
*/
void
bp_mapin(struct buf *bp)
{
(void) bp_mapin_common(bp, VM_SLEEP);
}
/*
* Release all the resources associated with a previous bp_mapin() call.
*/
void
bp_mapout(struct buf *bp)
{
caddr_t addr;
uintptr_t off;
uintptr_t base;
uintptr_t color;
size_t size;
pgcnt_t npages;
page_t *pp;
if ((bp->b_flags & B_REMAPPED) == 0)
return;
addr = bp->b_un.b_addr;
off = (uintptr_t)addr & PAGEOFFSET;
size = P2ROUNDUP(bp->b_bcount + off, PAGESIZE);
npages = btop(size);
bp->b_un.b_addr = (caddr_t)off; /* debugging aid */
if ((bp->b_flags & (B_SHADOW | B_PAGEIO)) && (npages == 1) &&
kpm_enable && bp_mapin_kpm_enable) {
if (bp->b_flags & B_SHADOW)
pp = *bp->b_shadow;
else
pp = bp->b_pages;
addr = (caddr_t)((uintptr_t)addr & MMU_PAGEMASK);
hat_kpm_mapout(pp, NULL, addr);
bp->b_flags &= ~B_REMAPPED;
return;
}
base = (uintptr_t)addr & MMU_PAGEMASK;
BP_FLUSH(base, size);
hat_unload(kas.a_hat, (void *)base, size,
HAT_UNLOAD_NOSYNC | HAT_UNLOAD_UNLOCK);
if (bp_map_arena != NULL) {
color = P2PHASE(base, bp_align);
vmem_free(bp_map_arena, (void *)(base - color),
P2ROUNDUP(color + size, bp_align));
} else
vmem_free(heap_arena, (void *)base, size);
bp->b_flags &= ~B_REMAPPED;
}
|