xref: /freebsd/sys/powerpc/booke/pmap.c (revision 92b14858b44dc4b3b57154a10e9de1b39d791e41)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (C) 2007-2009 Semihalf, Rafal Jaworowski <raj@semihalf.com>
5  * Copyright (C) 2006 Semihalf, Marian Balakowicz <m8@semihalf.com>
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
20  * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
22  * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Some hw specific parts of this pmap were derived or influenced
29  * by NetBSD's ibm4xx pmap module. More generic code is shared with
30  * a few other pmap modules from the FreeBSD tree.
31  */
32 
33  /*
34   * VM layout notes:
35   *
36   * Kernel and user threads run within one common virtual address space
37   * defined by AS=0.
38   *
39   * 32-bit pmap:
40   * Virtual address space layout:
41   * -----------------------------
42   * 0x0000_0000 - 0x7fff_ffff	: user process
43   * 0x8000_0000 - 0xbfff_ffff	: pmap_mapdev()-ed area (PCI/PCIE etc.)
44   * 0xc000_0000 - 0xc0ff_ffff	: kernel reserved
45   *   0xc000_0000 - data_end	: kernel code+data, env, metadata etc.
46   * 0xc100_0000 - 0xffff_ffff	: KVA
47   *   0xc100_0000 - 0xc100_3fff : reserved for page zero/copy
48   *   0xc100_4000 - 0xc200_3fff : reserved for ptbl bufs
49   *   0xc200_4000 - 0xc200_8fff : guard page + kstack0
50   *   0xc200_9000 - 0xfeef_ffff	: actual free KVA space
51   *
52   * 64-bit pmap:
53   * Virtual address space layout:
54   * -----------------------------
55   * 0x0000_0000_0000_0000 - 0xbfff_ffff_ffff_ffff      : user process
56   *   0x0000_0000_0000_0000 - 0x8fff_ffff_ffff_ffff    : text, data, heap, maps, libraries
57   *   0x9000_0000_0000_0000 - 0xafff_ffff_ffff_ffff    : mmio region
58   *   0xb000_0000_0000_0000 - 0xbfff_ffff_ffff_ffff    : stack
59   * 0xc000_0000_0000_0000 - 0xcfff_ffff_ffff_ffff      : kernel reserved
60   *   0xc000_0000_0000_0000 - endkernel-1              : kernel code & data
61   *               endkernel - msgbufp-1                : flat device tree
62   *                 msgbufp - kernel_pdir-1            : message buffer
63   *             kernel_pdir - kernel_pp2d-1            : kernel page directory
64   *             kernel_pp2d - .                        : kernel pointers to page directory
65   *      pmap_zero_copy_min - crashdumpmap-1           : reserved for page zero/copy
66   *            crashdumpmap - ptbl_buf_pool_vabase-1   : reserved for ptbl bufs
67   *    ptbl_buf_pool_vabase - virtual_avail-1          : user page directories and page tables
68   *           virtual_avail - 0xcfff_ffff_ffff_ffff    : actual free KVA space
69   * 0xd000_0000_0000_0000 - 0xdfff_ffff_ffff_ffff      : coprocessor region
70   * 0xe000_0000_0000_0000 - 0xefff_ffff_ffff_ffff      : mmio region
71   * 0xf000_0000_0000_0000 - 0xffff_ffff_ffff_ffff      : direct map
72   *   0xf000_0000_0000_0000 - +Maxmem                  : physmem map
73   *                         - 0xffff_ffff_ffff_ffff    : device direct map
74   */
75 
76 #include <sys/cdefs.h>
77 __FBSDID("$FreeBSD$");
78 
79 #include "opt_ddb.h"
80 #include "opt_kstack_pages.h"
81 
82 #include <sys/param.h>
83 #include <sys/conf.h>
84 #include <sys/malloc.h>
85 #include <sys/ktr.h>
86 #include <sys/proc.h>
87 #include <sys/user.h>
88 #include <sys/queue.h>
89 #include <sys/systm.h>
90 #include <sys/kernel.h>
91 #include <sys/kerneldump.h>
92 #include <sys/linker.h>
93 #include <sys/msgbuf.h>
94 #include <sys/lock.h>
95 #include <sys/mutex.h>
96 #include <sys/rwlock.h>
97 #include <sys/sched.h>
98 #include <sys/smp.h>
99 #include <sys/vmmeter.h>
100 
101 #include <vm/vm.h>
102 #include <vm/vm_page.h>
103 #include <vm/vm_kern.h>
104 #include <vm/vm_pageout.h>
105 #include <vm/vm_extern.h>
106 #include <vm/vm_object.h>
107 #include <vm/vm_param.h>
108 #include <vm/vm_map.h>
109 #include <vm/vm_pager.h>
110 #include <vm/vm_phys.h>
111 #include <vm/vm_pagequeue.h>
112 #include <vm/uma.h>
113 
114 #include <machine/_inttypes.h>
115 #include <machine/cpu.h>
116 #include <machine/pcb.h>
117 #include <machine/platform.h>
118 
119 #include <machine/tlb.h>
120 #include <machine/spr.h>
121 #include <machine/md_var.h>
122 #include <machine/mmuvar.h>
123 #include <machine/pmap.h>
124 #include <machine/pte.h>
125 
126 #include <ddb/ddb.h>
127 
128 #include "mmu_if.h"
129 
130 #define	SPARSE_MAPDEV
131 #ifdef  DEBUG
132 #define debugf(fmt, args...) printf(fmt, ##args)
133 #else
134 #define debugf(fmt, args...)
135 #endif
136 
137 #ifdef __powerpc64__
138 #define	PRI0ptrX	"016lx"
139 #else
140 #define	PRI0ptrX	"08x"
141 #endif
142 
143 #define TODO			panic("%s: not implemented", __func__);
144 
145 extern unsigned char _etext[];
146 extern unsigned char _end[];
147 
148 extern uint32_t *bootinfo;
149 
150 vm_paddr_t kernload;
151 vm_offset_t kernstart;
152 vm_size_t kernsize;
153 
154 /* Message buffer and tables. */
155 static vm_offset_t data_start;
156 static vm_size_t data_end;
157 
158 /* Phys/avail memory regions. */
159 static struct mem_region *availmem_regions;
160 static int availmem_regions_sz;
161 static struct mem_region *physmem_regions;
162 static int physmem_regions_sz;
163 
164 #ifndef __powerpc64__
165 /* Reserved KVA space and mutex for mmu_booke_zero_page. */
166 static vm_offset_t zero_page_va;
167 static struct mtx zero_page_mutex;
168 
169 /* Reserved KVA space and mutex for mmu_booke_copy_page. */
170 static vm_offset_t copy_page_src_va;
171 static vm_offset_t copy_page_dst_va;
172 static struct mtx copy_page_mutex;
173 #endif
174 
175 static struct mtx tlbivax_mutex;
176 
177 /**************************************************************************/
178 /* PMAP */
179 /**************************************************************************/
180 
181 static int mmu_booke_enter_locked(mmu_t, pmap_t, vm_offset_t, vm_page_t,
182     vm_prot_t, u_int flags, int8_t psind);
183 
184 unsigned int kptbl_min;		/* Index of the first kernel ptbl. */
185 unsigned int kernel_ptbls;	/* Number of KVA ptbls. */
186 #ifdef __powerpc64__
187 unsigned int kernel_pdirs;
188 #endif
189 static uma_zone_t ptbl_root_zone;
190 
191 /*
192  * If user pmap is processed with mmu_booke_remove and the resident count
193  * drops to 0, there are no more pages to remove, so we need not continue.
194  */
195 #define PMAP_REMOVE_DONE(pmap) \
196 	((pmap) != kernel_pmap && (pmap)->pm_stats.resident_count == 0)
197 
198 #if defined(COMPAT_FREEBSD32) || !defined(__powerpc64__)
199 extern int elf32_nxstack;
200 #endif
201 
202 /**************************************************************************/
203 /* TLB and TID handling */
204 /**************************************************************************/
205 
206 /* Translation ID busy table */
207 static volatile pmap_t tidbusy[MAXCPU][TID_MAX + 1];
208 
209 /*
210  * TLB0 capabilities (entry, way numbers etc.). These can vary between e500
211  * core revisions and should be read from h/w registers during early config.
212  */
213 uint32_t tlb0_entries;
214 uint32_t tlb0_ways;
215 uint32_t tlb0_entries_per_way;
216 uint32_t tlb1_entries;
217 
218 #define TLB0_ENTRIES		(tlb0_entries)
219 #define TLB0_WAYS		(tlb0_ways)
220 #define TLB0_ENTRIES_PER_WAY	(tlb0_entries_per_way)
221 
222 #define TLB1_ENTRIES (tlb1_entries)
223 
224 static tlbtid_t tid_alloc(struct pmap *);
225 
226 #ifdef DDB
227 #ifdef __powerpc64__
228 static void tlb_print_entry(int, uint32_t, uint64_t, uint32_t, uint32_t);
229 #else
230 static void tlb_print_entry(int, uint32_t, uint32_t, uint32_t, uint32_t);
231 #endif
232 #endif
233 
234 static void tlb1_read_entry(tlb_entry_t *, unsigned int);
235 static void tlb1_write_entry(tlb_entry_t *, unsigned int);
236 static int tlb1_iomapped(int, vm_paddr_t, vm_size_t, vm_offset_t *);
237 static vm_size_t tlb1_mapin_region(vm_offset_t, vm_paddr_t, vm_size_t, int);
238 
239 static __inline uint32_t tlb_calc_wimg(vm_paddr_t pa, vm_memattr_t ma);
240 
241 static vm_size_t tsize2size(unsigned int);
242 static unsigned int size2tsize(vm_size_t);
243 static unsigned long ilog2(unsigned long);
244 
245 static void set_mas4_defaults(void);
246 
247 static inline void tlb0_flush_entry(vm_offset_t);
248 static inline unsigned int tlb0_tableidx(vm_offset_t, unsigned int);
249 
250 /**************************************************************************/
251 /* Page table management */
252 /**************************************************************************/
253 
254 static struct rwlock_padalign pvh_global_lock;
255 
256 /* Data for the pv entry allocation mechanism */
257 static uma_zone_t pvzone;
258 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0;
259 
260 #define PV_ENTRY_ZONE_MIN	2048	/* min pv entries in uma zone */
261 
262 #ifndef PMAP_SHPGPERPROC
263 #define PMAP_SHPGPERPROC	200
264 #endif
265 
266 static vm_paddr_t pte_vatopa(mmu_t, pmap_t, vm_offset_t);
267 static int pte_enter(mmu_t, pmap_t, vm_page_t, vm_offset_t, uint32_t, boolean_t);
268 static int pte_remove(mmu_t, pmap_t, vm_offset_t, uint8_t);
269 static pte_t *pte_find(mmu_t, pmap_t, vm_offset_t);
270 static void kernel_pte_alloc(vm_offset_t, vm_offset_t, vm_offset_t);
271 
272 static pv_entry_t pv_alloc(void);
273 static void pv_free(pv_entry_t);
274 static void pv_insert(pmap_t, vm_offset_t, vm_page_t);
275 static void pv_remove(pmap_t, vm_offset_t, vm_page_t);
276 
277 static void booke_pmap_init_qpages(void);
278 
279 static inline void tlb_miss_lock(void);
280 static inline void tlb_miss_unlock(void);
281 
282 #ifdef SMP
283 extern tlb_entry_t __boot_tlb1[];
284 void pmap_bootstrap_ap(volatile uint32_t *);
285 #endif
286 
287 /*
288  * Kernel MMU interface
289  */
290 static void		mmu_booke_clear_modify(mmu_t, vm_page_t);
291 static void		mmu_booke_copy(mmu_t, pmap_t, pmap_t, vm_offset_t,
292     vm_size_t, vm_offset_t);
293 static void		mmu_booke_copy_page(mmu_t, vm_page_t, vm_page_t);
294 static void		mmu_booke_copy_pages(mmu_t, vm_page_t *,
295     vm_offset_t, vm_page_t *, vm_offset_t, int);
296 static int		mmu_booke_enter(mmu_t, pmap_t, vm_offset_t, vm_page_t,
297     vm_prot_t, u_int flags, int8_t psind);
298 static void		mmu_booke_enter_object(mmu_t, pmap_t, vm_offset_t, vm_offset_t,
299     vm_page_t, vm_prot_t);
300 static void		mmu_booke_enter_quick(mmu_t, pmap_t, vm_offset_t, vm_page_t,
301     vm_prot_t);
302 static vm_paddr_t	mmu_booke_extract(mmu_t, pmap_t, vm_offset_t);
303 static vm_page_t	mmu_booke_extract_and_hold(mmu_t, pmap_t, vm_offset_t,
304     vm_prot_t);
305 static void		mmu_booke_init(mmu_t);
306 static boolean_t	mmu_booke_is_modified(mmu_t, vm_page_t);
307 static boolean_t	mmu_booke_is_prefaultable(mmu_t, pmap_t, vm_offset_t);
308 static boolean_t	mmu_booke_is_referenced(mmu_t, vm_page_t);
309 static int		mmu_booke_ts_referenced(mmu_t, vm_page_t);
310 static vm_offset_t	mmu_booke_map(mmu_t, vm_offset_t *, vm_paddr_t, vm_paddr_t,
311     int);
312 static int		mmu_booke_mincore(mmu_t, pmap_t, vm_offset_t,
313     vm_paddr_t *);
314 static void		mmu_booke_object_init_pt(mmu_t, pmap_t, vm_offset_t,
315     vm_object_t, vm_pindex_t, vm_size_t);
316 static boolean_t	mmu_booke_page_exists_quick(mmu_t, pmap_t, vm_page_t);
317 static void		mmu_booke_page_init(mmu_t, vm_page_t);
318 static int		mmu_booke_page_wired_mappings(mmu_t, vm_page_t);
319 static void		mmu_booke_pinit(mmu_t, pmap_t);
320 static void		mmu_booke_pinit0(mmu_t, pmap_t);
321 static void		mmu_booke_protect(mmu_t, pmap_t, vm_offset_t, vm_offset_t,
322     vm_prot_t);
323 static void		mmu_booke_qenter(mmu_t, vm_offset_t, vm_page_t *, int);
324 static void		mmu_booke_qremove(mmu_t, vm_offset_t, int);
325 static void		mmu_booke_release(mmu_t, pmap_t);
326 static void		mmu_booke_remove(mmu_t, pmap_t, vm_offset_t, vm_offset_t);
327 static void		mmu_booke_remove_all(mmu_t, vm_page_t);
328 static void		mmu_booke_remove_write(mmu_t, vm_page_t);
329 static void		mmu_booke_unwire(mmu_t, pmap_t, vm_offset_t, vm_offset_t);
330 static void		mmu_booke_zero_page(mmu_t, vm_page_t);
331 static void		mmu_booke_zero_page_area(mmu_t, vm_page_t, int, int);
332 static void		mmu_booke_activate(mmu_t, struct thread *);
333 static void		mmu_booke_deactivate(mmu_t, struct thread *);
334 static void		mmu_booke_bootstrap(mmu_t, vm_offset_t, vm_offset_t);
335 static void		*mmu_booke_mapdev(mmu_t, vm_paddr_t, vm_size_t);
336 static void		*mmu_booke_mapdev_attr(mmu_t, vm_paddr_t, vm_size_t, vm_memattr_t);
337 static void		mmu_booke_unmapdev(mmu_t, vm_offset_t, vm_size_t);
338 static vm_paddr_t	mmu_booke_kextract(mmu_t, vm_offset_t);
339 static void		mmu_booke_kenter(mmu_t, vm_offset_t, vm_paddr_t);
340 static void		mmu_booke_kenter_attr(mmu_t, vm_offset_t, vm_paddr_t, vm_memattr_t);
341 static void		mmu_booke_kremove(mmu_t, vm_offset_t);
342 static boolean_t	mmu_booke_dev_direct_mapped(mmu_t, vm_paddr_t, vm_size_t);
343 static void		mmu_booke_sync_icache(mmu_t, pmap_t, vm_offset_t,
344     vm_size_t);
345 static void		mmu_booke_dumpsys_map(mmu_t, vm_paddr_t pa, size_t,
346     void **);
347 static void		mmu_booke_dumpsys_unmap(mmu_t, vm_paddr_t pa, size_t,
348     void *);
349 static void		mmu_booke_scan_init(mmu_t);
350 static vm_offset_t	mmu_booke_quick_enter_page(mmu_t mmu, vm_page_t m);
351 static void		mmu_booke_quick_remove_page(mmu_t mmu, vm_offset_t addr);
352 static int		mmu_booke_change_attr(mmu_t mmu, vm_offset_t addr,
353     vm_size_t sz, vm_memattr_t mode);
354 static int		mmu_booke_map_user_ptr(mmu_t mmu, pmap_t pm,
355     volatile const void *uaddr, void **kaddr, size_t ulen, size_t *klen);
356 static int		mmu_booke_decode_kernel_ptr(mmu_t mmu, vm_offset_t addr,
357     int *is_user, vm_offset_t *decoded_addr);
358 static void		mmu_booke_page_array_startup(mmu_t , long);
359 
360 
361 static mmu_method_t mmu_booke_methods[] = {
362 	/* pmap dispatcher interface */
363 	MMUMETHOD(mmu_clear_modify,	mmu_booke_clear_modify),
364 	MMUMETHOD(mmu_copy,		mmu_booke_copy),
365 	MMUMETHOD(mmu_copy_page,	mmu_booke_copy_page),
366 	MMUMETHOD(mmu_copy_pages,	mmu_booke_copy_pages),
367 	MMUMETHOD(mmu_enter,		mmu_booke_enter),
368 	MMUMETHOD(mmu_enter_object,	mmu_booke_enter_object),
369 	MMUMETHOD(mmu_enter_quick,	mmu_booke_enter_quick),
370 	MMUMETHOD(mmu_extract,		mmu_booke_extract),
371 	MMUMETHOD(mmu_extract_and_hold,	mmu_booke_extract_and_hold),
372 	MMUMETHOD(mmu_init,		mmu_booke_init),
373 	MMUMETHOD(mmu_is_modified,	mmu_booke_is_modified),
374 	MMUMETHOD(mmu_is_prefaultable,	mmu_booke_is_prefaultable),
375 	MMUMETHOD(mmu_is_referenced,	mmu_booke_is_referenced),
376 	MMUMETHOD(mmu_ts_referenced,	mmu_booke_ts_referenced),
377 	MMUMETHOD(mmu_map,		mmu_booke_map),
378 	MMUMETHOD(mmu_mincore,		mmu_booke_mincore),
379 	MMUMETHOD(mmu_object_init_pt,	mmu_booke_object_init_pt),
380 	MMUMETHOD(mmu_page_exists_quick,mmu_booke_page_exists_quick),
381 	MMUMETHOD(mmu_page_init,	mmu_booke_page_init),
382 	MMUMETHOD(mmu_page_wired_mappings, mmu_booke_page_wired_mappings),
383 	MMUMETHOD(mmu_pinit,		mmu_booke_pinit),
384 	MMUMETHOD(mmu_pinit0,		mmu_booke_pinit0),
385 	MMUMETHOD(mmu_protect,		mmu_booke_protect),
386 	MMUMETHOD(mmu_qenter,		mmu_booke_qenter),
387 	MMUMETHOD(mmu_qremove,		mmu_booke_qremove),
388 	MMUMETHOD(mmu_release,		mmu_booke_release),
389 	MMUMETHOD(mmu_remove,		mmu_booke_remove),
390 	MMUMETHOD(mmu_remove_all,	mmu_booke_remove_all),
391 	MMUMETHOD(mmu_remove_write,	mmu_booke_remove_write),
392 	MMUMETHOD(mmu_sync_icache,	mmu_booke_sync_icache),
393 	MMUMETHOD(mmu_unwire,		mmu_booke_unwire),
394 	MMUMETHOD(mmu_zero_page,	mmu_booke_zero_page),
395 	MMUMETHOD(mmu_zero_page_area,	mmu_booke_zero_page_area),
396 	MMUMETHOD(mmu_activate,		mmu_booke_activate),
397 	MMUMETHOD(mmu_deactivate,	mmu_booke_deactivate),
398 	MMUMETHOD(mmu_quick_enter_page, mmu_booke_quick_enter_page),
399 	MMUMETHOD(mmu_quick_remove_page, mmu_booke_quick_remove_page),
400 	MMUMETHOD(mmu_page_array_startup,	mmu_booke_page_array_startup),
401 
402 	/* Internal interfaces */
403 	MMUMETHOD(mmu_bootstrap,	mmu_booke_bootstrap),
404 	MMUMETHOD(mmu_dev_direct_mapped,mmu_booke_dev_direct_mapped),
405 	MMUMETHOD(mmu_mapdev,		mmu_booke_mapdev),
406 	MMUMETHOD(mmu_mapdev_attr,	mmu_booke_mapdev_attr),
407 	MMUMETHOD(mmu_kenter,		mmu_booke_kenter),
408 	MMUMETHOD(mmu_kenter_attr,	mmu_booke_kenter_attr),
409 	MMUMETHOD(mmu_kextract,		mmu_booke_kextract),
410 	MMUMETHOD(mmu_kremove,		mmu_booke_kremove),
411 	MMUMETHOD(mmu_unmapdev,		mmu_booke_unmapdev),
412 	MMUMETHOD(mmu_change_attr,	mmu_booke_change_attr),
413 	MMUMETHOD(mmu_map_user_ptr,	mmu_booke_map_user_ptr),
414 	MMUMETHOD(mmu_decode_kernel_ptr, mmu_booke_decode_kernel_ptr),
415 
416 	/* dumpsys() support */
417 	MMUMETHOD(mmu_dumpsys_map,	mmu_booke_dumpsys_map),
418 	MMUMETHOD(mmu_dumpsys_unmap,	mmu_booke_dumpsys_unmap),
419 	MMUMETHOD(mmu_scan_init,	mmu_booke_scan_init),
420 
421 	{ 0, 0 }
422 };
423 
424 MMU_DEF(booke_mmu, MMU_TYPE_BOOKE, mmu_booke_methods, 0);
425 
426 #ifdef __powerpc64__
427 #include "pmap_64.c"
428 #else
429 #include "pmap_32.c"
430 #endif
431 
432 static vm_offset_t tlb1_map_base = VM_MAPDEV_BASE;
433 
434 static __inline uint32_t
435 tlb_calc_wimg(vm_paddr_t pa, vm_memattr_t ma)
436 {
437 	uint32_t attrib;
438 	int i;
439 
440 	if (ma != VM_MEMATTR_DEFAULT) {
441 		switch (ma) {
442 		case VM_MEMATTR_UNCACHEABLE:
443 			return (MAS2_I | MAS2_G);
444 		case VM_MEMATTR_WRITE_COMBINING:
445 		case VM_MEMATTR_WRITE_BACK:
446 		case VM_MEMATTR_PREFETCHABLE:
447 			return (MAS2_I);
448 		case VM_MEMATTR_WRITE_THROUGH:
449 			return (MAS2_W | MAS2_M);
450 		case VM_MEMATTR_CACHEABLE:
451 			return (MAS2_M);
452 		}
453 	}
454 
455 	/*
456 	 * Assume the page is cache inhibited and access is guarded unless
457 	 * it's in our available memory array.
458 	 */
459 	attrib = _TLB_ENTRY_IO;
460 	for (i = 0; i < physmem_regions_sz; i++) {
461 		if ((pa >= physmem_regions[i].mr_start) &&
462 		    (pa < (physmem_regions[i].mr_start +
463 		     physmem_regions[i].mr_size))) {
464 			attrib = _TLB_ENTRY_MEM;
465 			break;
466 		}
467 	}
468 
469 	return (attrib);
470 }
471 
472 static inline void
473 tlb_miss_lock(void)
474 {
475 #ifdef SMP
476 	struct pcpu *pc;
477 
478 	if (!smp_started)
479 		return;
480 
481 	STAILQ_FOREACH(pc, &cpuhead, pc_allcpu) {
482 		if (pc != pcpup) {
483 
484 			CTR3(KTR_PMAP, "%s: tlb miss LOCK of CPU=%d, "
485 			    "tlb_lock=%p", __func__, pc->pc_cpuid, pc->pc_booke.tlb_lock);
486 
487 			KASSERT((pc->pc_cpuid != PCPU_GET(cpuid)),
488 			    ("tlb_miss_lock: tried to lock self"));
489 
490 			tlb_lock(pc->pc_booke.tlb_lock);
491 
492 			CTR1(KTR_PMAP, "%s: locked", __func__);
493 		}
494 	}
495 #endif
496 }
497 
498 static inline void
499 tlb_miss_unlock(void)
500 {
501 #ifdef SMP
502 	struct pcpu *pc;
503 
504 	if (!smp_started)
505 		return;
506 
507 	STAILQ_FOREACH(pc, &cpuhead, pc_allcpu) {
508 		if (pc != pcpup) {
509 			CTR2(KTR_PMAP, "%s: tlb miss UNLOCK of CPU=%d",
510 			    __func__, pc->pc_cpuid);
511 
512 			tlb_unlock(pc->pc_booke.tlb_lock);
513 
514 			CTR1(KTR_PMAP, "%s: unlocked", __func__);
515 		}
516 	}
517 #endif
518 }
519 
520 /* Return number of entries in TLB0. */
521 static __inline void
522 tlb0_get_tlbconf(void)
523 {
524 	uint32_t tlb0_cfg;
525 
526 	tlb0_cfg = mfspr(SPR_TLB0CFG);
527 	tlb0_entries = tlb0_cfg & TLBCFG_NENTRY_MASK;
528 	tlb0_ways = (tlb0_cfg & TLBCFG_ASSOC_MASK) >> TLBCFG_ASSOC_SHIFT;
529 	tlb0_entries_per_way = tlb0_entries / tlb0_ways;
530 }
531 
532 /* Return number of entries in TLB1. */
533 static __inline void
534 tlb1_get_tlbconf(void)
535 {
536 	uint32_t tlb1_cfg;
537 
538 	tlb1_cfg = mfspr(SPR_TLB1CFG);
539 	tlb1_entries = tlb1_cfg & TLBCFG_NENTRY_MASK;
540 }
541 
542 /**************************************************************************/
543 /* Page table related */
544 /**************************************************************************/
545 
546 /* Allocate pv_entry structure. */
547 pv_entry_t
548 pv_alloc(void)
549 {
550 	pv_entry_t pv;
551 
552 	pv_entry_count++;
553 	if (pv_entry_count > pv_entry_high_water)
554 		pagedaemon_wakeup(0); /* XXX powerpc NUMA */
555 	pv = uma_zalloc(pvzone, M_NOWAIT);
556 
557 	return (pv);
558 }
559 
560 /* Free pv_entry structure. */
561 static __inline void
562 pv_free(pv_entry_t pve)
563 {
564 
565 	pv_entry_count--;
566 	uma_zfree(pvzone, pve);
567 }
568 
569 
570 /* Allocate and initialize pv_entry structure. */
571 static void
572 pv_insert(pmap_t pmap, vm_offset_t va, vm_page_t m)
573 {
574 	pv_entry_t pve;
575 
576 	//int su = (pmap == kernel_pmap);
577 	//debugf("pv_insert: s (su = %d pmap = 0x%08x va = 0x%08x m = 0x%08x)\n", su,
578 	//	(u_int32_t)pmap, va, (u_int32_t)m);
579 
580 	pve = pv_alloc();
581 	if (pve == NULL)
582 		panic("pv_insert: no pv entries!");
583 
584 	pve->pv_pmap = pmap;
585 	pve->pv_va = va;
586 
587 	/* add to pv_list */
588 	PMAP_LOCK_ASSERT(pmap, MA_OWNED);
589 	rw_assert(&pvh_global_lock, RA_WLOCKED);
590 
591 	TAILQ_INSERT_TAIL(&m->md.pv_list, pve, pv_link);
592 
593 	//debugf("pv_insert: e\n");
594 }
595 
596 /* Destroy pv entry. */
597 static void
598 pv_remove(pmap_t pmap, vm_offset_t va, vm_page_t m)
599 {
600 	pv_entry_t pve;
601 
602 	//int su = (pmap == kernel_pmap);
603 	//debugf("pv_remove: s (su = %d pmap = 0x%08x va = 0x%08x)\n", su, (u_int32_t)pmap, va);
604 
605 	PMAP_LOCK_ASSERT(pmap, MA_OWNED);
606 	rw_assert(&pvh_global_lock, RA_WLOCKED);
607 
608 	/* find pv entry */
609 	TAILQ_FOREACH(pve, &m->md.pv_list, pv_link) {
610 		if ((pmap == pve->pv_pmap) && (va == pve->pv_va)) {
611 			/* remove from pv_list */
612 			TAILQ_REMOVE(&m->md.pv_list, pve, pv_link);
613 			if (TAILQ_EMPTY(&m->md.pv_list))
614 				vm_page_aflag_clear(m, PGA_WRITEABLE);
615 
616 			/* free pv entry struct */
617 			pv_free(pve);
618 			break;
619 		}
620 	}
621 
622 	//debugf("pv_remove: e\n");
623 }
624 
625 /**************************************************************************/
626 /* PMAP related */
627 /**************************************************************************/
628 
629 /*
630  * This is called during booke_init, before the system is really initialized.
631  */
632 static void
633 mmu_booke_bootstrap(mmu_t mmu, vm_offset_t start, vm_offset_t kernelend)
634 {
635 	vm_paddr_t phys_kernelend;
636 	struct mem_region *mp, *mp1;
637 	int cnt, i, j;
638 	vm_paddr_t s, e, sz;
639 	vm_paddr_t physsz, hwphyssz;
640 	u_int phys_avail_count;
641 	vm_size_t kstack0_sz;
642 	vm_offset_t kernel_pdir, kstack0;
643 	vm_paddr_t kstack0_phys;
644 	void *dpcpu;
645 	vm_offset_t kernel_ptbl_root;
646 
647 	debugf("mmu_booke_bootstrap: entered\n");
648 
649 	/* Set interesting system properties */
650 #ifdef __powerpc64__
651 	hw_direct_map = 1;
652 #else
653 	hw_direct_map = 0;
654 #endif
655 #if defined(COMPAT_FREEBSD32) || !defined(__powerpc64__)
656 	elf32_nxstack = 1;
657 #endif
658 
659 	/* Initialize invalidation mutex */
660 	mtx_init(&tlbivax_mutex, "tlbivax", NULL, MTX_SPIN);
661 
662 	/* Read TLB0 size and associativity. */
663 	tlb0_get_tlbconf();
664 
665 	/*
666 	 * Align kernel start and end address (kernel image).
667 	 * Note that kernel end does not necessarily relate to kernsize.
668 	 * kernsize is the size of the kernel that is actually mapped.
669 	 */
670 	data_start = round_page(kernelend);
671 	data_end = data_start;
672 
673 	/* Allocate the dynamic per-cpu area. */
674 	dpcpu = (void *)data_end;
675 	data_end += DPCPU_SIZE;
676 
677 	/* Allocate space for the message buffer. */
678 	msgbufp = (struct msgbuf *)data_end;
679 	data_end += msgbufsize;
680 	debugf(" msgbufp at 0x%"PRI0ptrX" end = 0x%"PRI0ptrX"\n",
681 	    (uintptr_t)msgbufp, data_end);
682 
683 	data_end = round_page(data_end);
684 
685 #ifdef __powerpc64__
686 	kernel_ptbl_root = data_end;
687 	data_end += PP2D_NENTRIES * sizeof(pte_t**);
688 #else
689 	/* Allocate space for ptbl_bufs. */
690 	ptbl_bufs = (struct ptbl_buf *)data_end;
691 	data_end += sizeof(struct ptbl_buf) * PTBL_BUFS;
692 	debugf(" ptbl_bufs at 0x%"PRI0ptrX" end = 0x%"PRI0ptrX"\n",
693 	    (uintptr_t)ptbl_bufs, data_end);
694 
695 	data_end = round_page(data_end);
696 	kernel_ptbl_root = data_end;
697 	data_end += PDIR_NENTRIES * sizeof(pte_t*);
698 #endif
699 
700 	/* Allocate PTE tables for kernel KVA. */
701 	kernel_pdir = data_end;
702 	kernel_ptbls = howmany(VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS,
703 	    PDIR_SIZE);
704 #ifdef __powerpc64__
705 	kernel_pdirs = howmany(kernel_ptbls, PDIR_NENTRIES);
706 	data_end += kernel_pdirs * PDIR_PAGES * PAGE_SIZE;
707 #endif
708 	data_end += kernel_ptbls * PTBL_PAGES * PAGE_SIZE;
709 	debugf(" kernel ptbls: %d\n", kernel_ptbls);
710 	debugf(" kernel pdir at 0x%"PRI0ptrX" end = 0x%"PRI0ptrX"\n",
711 	    kernel_pdir, data_end);
712 
713 	/* Retrieve phys/avail mem regions */
714 	mem_regions(&physmem_regions, &physmem_regions_sz,
715 	    &availmem_regions, &availmem_regions_sz);
716 
717 	if (PHYS_AVAIL_ENTRIES < availmem_regions_sz)
718 		panic("mmu_booke_bootstrap: phys_avail too small");
719 
720 	data_end = round_page(data_end);
721 	vm_page_array = (vm_page_t)data_end;
722 	/*
723 	 * Get a rough idea (upper bound) on the size of the page array.  The
724 	 * vm_page_array will not handle any more pages than we have in the
725 	 * avail_regions array, and most likely much less.
726 	 */
727 	sz = 0;
728 	for (mp = availmem_regions; mp->mr_size; mp++) {
729 		sz += mp->mr_size;
730 	}
731 	sz = (round_page(sz) / (PAGE_SIZE + sizeof(struct vm_page)));
732 	data_end += round_page(sz * sizeof(struct vm_page));
733 
734 	/* Pre-round up to 1MB.  This wastes some space, but saves TLB entries */
735 	data_end = roundup2(data_end, 1 << 20);
736 
737 	debugf(" data_end: 0x%"PRI0ptrX"\n", data_end);
738 	debugf(" kernstart: %#zx\n", kernstart);
739 	debugf(" kernsize: %#zx\n", kernsize);
740 
741 	if (data_end - kernstart > kernsize) {
742 		kernsize += tlb1_mapin_region(kernstart + kernsize,
743 		    kernload + kernsize, (data_end - kernstart) - kernsize,
744 		    _TLB_ENTRY_MEM);
745 	}
746 	data_end = kernstart + kernsize;
747 	debugf(" updated data_end: 0x%"PRI0ptrX"\n", data_end);
748 
749 	/*
750 	 * Clear the structures - note we can only do it safely after the
751 	 * possible additional TLB1 translations are in place (above) so that
752 	 * all range up to the currently calculated 'data_end' is covered.
753 	 */
754 	dpcpu_init(dpcpu, 0);
755 #ifdef __powerpc64__
756 	memset((void *)kernel_pdir, 0,
757 	    kernel_pdirs * PDIR_PAGES * PAGE_SIZE +
758 	    kernel_ptbls * PTBL_PAGES * PAGE_SIZE);
759 #else
760 	memset((void *)ptbl_bufs, 0, sizeof(struct ptbl_buf) * PTBL_SIZE);
761 	memset((void *)kernel_pdir, 0, kernel_ptbls * PTBL_PAGES * PAGE_SIZE);
762 #endif
763 
764 	/*******************************************************/
765 	/* Set the start and end of kva. */
766 	/*******************************************************/
767 	virtual_avail = round_page(data_end);
768 	virtual_end = VM_MAX_KERNEL_ADDRESS;
769 
770 #ifndef __powerpc64__
771 	/* Allocate KVA space for page zero/copy operations. */
772 	zero_page_va = virtual_avail;
773 	virtual_avail += PAGE_SIZE;
774 	copy_page_src_va = virtual_avail;
775 	virtual_avail += PAGE_SIZE;
776 	copy_page_dst_va = virtual_avail;
777 	virtual_avail += PAGE_SIZE;
778 	debugf("zero_page_va = 0x%"PRI0ptrX"\n", zero_page_va);
779 	debugf("copy_page_src_va = 0x%"PRI0ptrX"\n", copy_page_src_va);
780 	debugf("copy_page_dst_va = 0x%"PRI0ptrX"\n", copy_page_dst_va);
781 
782 	/* Initialize page zero/copy mutexes. */
783 	mtx_init(&zero_page_mutex, "mmu_booke_zero_page", NULL, MTX_DEF);
784 	mtx_init(&copy_page_mutex, "mmu_booke_copy_page", NULL, MTX_DEF);
785 
786 	/* Allocate KVA space for ptbl bufs. */
787 	ptbl_buf_pool_vabase = virtual_avail;
788 	virtual_avail += PTBL_BUFS * PTBL_PAGES * PAGE_SIZE;
789 	debugf("ptbl_buf_pool_vabase = 0x%"PRI0ptrX" end = 0x%"PRI0ptrX"\n",
790 	    ptbl_buf_pool_vabase, virtual_avail);
791 #endif
792 
793 	/* Calculate corresponding physical addresses for the kernel region. */
794 	phys_kernelend = kernload + kernsize;
795 	debugf("kernel image and allocated data:\n");
796 	debugf(" kernload    = 0x%09jx\n", (uintmax_t)kernload);
797 	debugf(" kernstart   = 0x%"PRI0ptrX"\n", kernstart);
798 	debugf(" kernsize    = 0x%"PRI0ptrX"\n", kernsize);
799 
800 	/*
801 	 * Remove kernel physical address range from avail regions list. Page
802 	 * align all regions.  Non-page aligned memory isn't very interesting
803 	 * to us.  Also, sort the entries for ascending addresses.
804 	 */
805 
806 	sz = 0;
807 	cnt = availmem_regions_sz;
808 	debugf("processing avail regions:\n");
809 	for (mp = availmem_regions; mp->mr_size; mp++) {
810 		s = mp->mr_start;
811 		e = mp->mr_start + mp->mr_size;
812 		debugf(" %09jx-%09jx -> ", (uintmax_t)s, (uintmax_t)e);
813 		/* Check whether this region holds all of the kernel. */
814 		if (s < kernload && e > phys_kernelend) {
815 			availmem_regions[cnt].mr_start = phys_kernelend;
816 			availmem_regions[cnt++].mr_size = e - phys_kernelend;
817 			e = kernload;
818 		}
819 		/* Look whether this regions starts within the kernel. */
820 		if (s >= kernload && s < phys_kernelend) {
821 			if (e <= phys_kernelend)
822 				goto empty;
823 			s = phys_kernelend;
824 		}
825 		/* Now look whether this region ends within the kernel. */
826 		if (e > kernload && e <= phys_kernelend) {
827 			if (s >= kernload)
828 				goto empty;
829 			e = kernload;
830 		}
831 		/* Now page align the start and size of the region. */
832 		s = round_page(s);
833 		e = trunc_page(e);
834 		if (e < s)
835 			e = s;
836 		sz = e - s;
837 		debugf("%09jx-%09jx = %jx\n",
838 		    (uintmax_t)s, (uintmax_t)e, (uintmax_t)sz);
839 
840 		/* Check whether some memory is left here. */
841 		if (sz == 0) {
842 		empty:
843 			memmove(mp, mp + 1,
844 			    (cnt - (mp - availmem_regions)) * sizeof(*mp));
845 			cnt--;
846 			mp--;
847 			continue;
848 		}
849 
850 		/* Do an insertion sort. */
851 		for (mp1 = availmem_regions; mp1 < mp; mp1++)
852 			if (s < mp1->mr_start)
853 				break;
854 		if (mp1 < mp) {
855 			memmove(mp1 + 1, mp1, (char *)mp - (char *)mp1);
856 			mp1->mr_start = s;
857 			mp1->mr_size = sz;
858 		} else {
859 			mp->mr_start = s;
860 			mp->mr_size = sz;
861 		}
862 	}
863 	availmem_regions_sz = cnt;
864 
865 	/*******************************************************/
866 	/* Steal physical memory for kernel stack from the end */
867 	/* of the first avail region                           */
868 	/*******************************************************/
869 	kstack0_sz = kstack_pages * PAGE_SIZE;
870 	kstack0_phys = availmem_regions[0].mr_start +
871 	    availmem_regions[0].mr_size;
872 	kstack0_phys -= kstack0_sz;
873 	availmem_regions[0].mr_size -= kstack0_sz;
874 
875 	/*******************************************************/
876 	/* Fill in phys_avail table, based on availmem_regions */
877 	/*******************************************************/
878 	phys_avail_count = 0;
879 	physsz = 0;
880 	hwphyssz = 0;
881 	TUNABLE_ULONG_FETCH("hw.physmem", (u_long *) &hwphyssz);
882 
883 	debugf("fill in phys_avail:\n");
884 	for (i = 0, j = 0; i < availmem_regions_sz; i++, j += 2) {
885 
886 		debugf(" region: 0x%jx - 0x%jx (0x%jx)\n",
887 		    (uintmax_t)availmem_regions[i].mr_start,
888 		    (uintmax_t)availmem_regions[i].mr_start +
889 		        availmem_regions[i].mr_size,
890 		    (uintmax_t)availmem_regions[i].mr_size);
891 
892 		if (hwphyssz != 0 &&
893 		    (physsz + availmem_regions[i].mr_size) >= hwphyssz) {
894 			debugf(" hw.physmem adjust\n");
895 			if (physsz < hwphyssz) {
896 				phys_avail[j] = availmem_regions[i].mr_start;
897 				phys_avail[j + 1] =
898 				    availmem_regions[i].mr_start +
899 				    hwphyssz - physsz;
900 				physsz = hwphyssz;
901 				phys_avail_count++;
902 				dump_avail[j] = phys_avail[j];
903 				dump_avail[j + 1] = phys_avail[j + 1];
904 			}
905 			break;
906 		}
907 
908 		phys_avail[j] = availmem_regions[i].mr_start;
909 		phys_avail[j + 1] = availmem_regions[i].mr_start +
910 		    availmem_regions[i].mr_size;
911 		phys_avail_count++;
912 		physsz += availmem_regions[i].mr_size;
913 		dump_avail[j] = phys_avail[j];
914 		dump_avail[j + 1] = phys_avail[j + 1];
915 	}
916 	physmem = btoc(physsz);
917 
918 	/* Calculate the last available physical address. */
919 	for (i = 0; phys_avail[i + 2] != 0; i += 2)
920 		;
921 	Maxmem = powerpc_btop(phys_avail[i + 1]);
922 
923 	debugf("Maxmem = 0x%08lx\n", Maxmem);
924 	debugf("phys_avail_count = %d\n", phys_avail_count);
925 	debugf("physsz = 0x%09jx physmem = %jd (0x%09jx)\n",
926 	    (uintmax_t)physsz, (uintmax_t)physmem, (uintmax_t)physmem);
927 
928 #ifdef __powerpc64__
929 	/*
930 	 * Map the physical memory contiguously in TLB1.
931 	 * Round so it fits into a single mapping.
932 	 */
933 	tlb1_mapin_region(DMAP_BASE_ADDRESS, 0,
934 	    phys_avail[i + 1], _TLB_ENTRY_MEM);
935 #endif
936 
937 	/*******************************************************/
938 	/* Initialize (statically allocated) kernel pmap. */
939 	/*******************************************************/
940 	PMAP_LOCK_INIT(kernel_pmap);
941 #ifdef __powerpc64__
942 	kernel_pmap->pm_pp2d = (pte_t ***)kernel_ptbl_root;
943 #else
944 	kptbl_min = VM_MIN_KERNEL_ADDRESS / PDIR_SIZE;
945 	kernel_pmap->pm_pdir = (pte_t **)kernel_ptbl_root;
946 #endif
947 
948 	debugf("kernel_pmap = 0x%"PRI0ptrX"\n", (uintptr_t)kernel_pmap);
949 	kernel_pte_alloc(virtual_avail, kernstart, kernel_pdir);
950 	for (i = 0; i < MAXCPU; i++) {
951 		kernel_pmap->pm_tid[i] = TID_KERNEL;
952 
953 		/* Initialize each CPU's tidbusy entry 0 with kernel_pmap */
954 		tidbusy[i][TID_KERNEL] = kernel_pmap;
955 	}
956 
957 	/* Mark kernel_pmap active on all CPUs */
958 	CPU_FILL(&kernel_pmap->pm_active);
959 
960  	/*
961 	 * Initialize the global pv list lock.
962 	 */
963 	rw_init(&pvh_global_lock, "pmap pv global");
964 
965 	/*******************************************************/
966 	/* Final setup */
967 	/*******************************************************/
968 
969 	/* Enter kstack0 into kernel map, provide guard page */
970 	kstack0 = virtual_avail + KSTACK_GUARD_PAGES * PAGE_SIZE;
971 	thread0.td_kstack = kstack0;
972 	thread0.td_kstack_pages = kstack_pages;
973 
974 	debugf("kstack_sz = 0x%08jx\n", (uintmax_t)kstack0_sz);
975 	debugf("kstack0_phys at 0x%09jx - 0x%09jx\n",
976 	    (uintmax_t)kstack0_phys, (uintmax_t)kstack0_phys + kstack0_sz);
977 	debugf("kstack0 at 0x%"PRI0ptrX" - 0x%"PRI0ptrX"\n",
978 	    kstack0, kstack0 + kstack0_sz);
979 
980 	virtual_avail += KSTACK_GUARD_PAGES * PAGE_SIZE + kstack0_sz;
981 	for (i = 0; i < kstack_pages; i++) {
982 		mmu_booke_kenter(mmu, kstack0, kstack0_phys);
983 		kstack0 += PAGE_SIZE;
984 		kstack0_phys += PAGE_SIZE;
985 	}
986 
987 	pmap_bootstrapped = 1;
988 
989 	debugf("virtual_avail = %"PRI0ptrX"\n", virtual_avail);
990 	debugf("virtual_end   = %"PRI0ptrX"\n", virtual_end);
991 
992 	debugf("mmu_booke_bootstrap: exit\n");
993 }
994 
995 #ifdef SMP
996 void
997 tlb1_ap_prep(void)
998 {
999 	tlb_entry_t *e, tmp;
1000 	unsigned int i;
1001 
1002 	/* Prepare TLB1 image for AP processors */
1003 	e = __boot_tlb1;
1004 	for (i = 0; i < TLB1_ENTRIES; i++) {
1005 		tlb1_read_entry(&tmp, i);
1006 
1007 		if ((tmp.mas1 & MAS1_VALID) && (tmp.mas2 & _TLB_ENTRY_SHARED))
1008 			memcpy(e++, &tmp, sizeof(tmp));
1009 	}
1010 }
1011 
1012 void
1013 pmap_bootstrap_ap(volatile uint32_t *trcp __unused)
1014 {
1015 	int i;
1016 
1017 	/*
1018 	 * Finish TLB1 configuration: the BSP already set up its TLB1 and we
1019 	 * have the snapshot of its contents in the s/w __boot_tlb1[] table
1020 	 * created by tlb1_ap_prep(), so use these values directly to
1021 	 * (re)program AP's TLB1 hardware.
1022 	 *
1023 	 * Start at index 1 because index 0 has the kernel map.
1024 	 */
1025 	for (i = 1; i < TLB1_ENTRIES; i++) {
1026 		if (__boot_tlb1[i].mas1 & MAS1_VALID)
1027 			tlb1_write_entry(&__boot_tlb1[i], i);
1028 	}
1029 
1030 	set_mas4_defaults();
1031 }
1032 #endif
1033 
1034 static void
1035 booke_pmap_init_qpages(void)
1036 {
1037 	struct pcpu *pc;
1038 	int i;
1039 
1040 	CPU_FOREACH(i) {
1041 		pc = pcpu_find(i);
1042 		pc->pc_qmap_addr = kva_alloc(PAGE_SIZE);
1043 		if (pc->pc_qmap_addr == 0)
1044 			panic("pmap_init_qpages: unable to allocate KVA");
1045 	}
1046 }
1047 
1048 SYSINIT(qpages_init, SI_SUB_CPU, SI_ORDER_ANY, booke_pmap_init_qpages, NULL);
1049 
1050 /*
1051  * Get the physical page address for the given pmap/virtual address.
1052  */
1053 static vm_paddr_t
1054 mmu_booke_extract(mmu_t mmu, pmap_t pmap, vm_offset_t va)
1055 {
1056 	vm_paddr_t pa;
1057 
1058 	PMAP_LOCK(pmap);
1059 	pa = pte_vatopa(mmu, pmap, va);
1060 	PMAP_UNLOCK(pmap);
1061 
1062 	return (pa);
1063 }
1064 
1065 /*
1066  * Extract the physical page address associated with the given
1067  * kernel virtual address.
1068  */
1069 static vm_paddr_t
1070 mmu_booke_kextract(mmu_t mmu, vm_offset_t va)
1071 {
1072 	tlb_entry_t e;
1073 	vm_paddr_t p = 0;
1074 	int i;
1075 
1076 #ifdef __powerpc64__
1077 	if (va >= DMAP_BASE_ADDRESS && va <= DMAP_MAX_ADDRESS)
1078 		return (DMAP_TO_PHYS(va));
1079 #endif
1080 
1081 	if (va >= VM_MIN_KERNEL_ADDRESS && va <= VM_MAX_KERNEL_ADDRESS)
1082 		p = pte_vatopa(mmu, kernel_pmap, va);
1083 
1084 	if (p == 0) {
1085 		/* Check TLB1 mappings */
1086 		for (i = 0; i < TLB1_ENTRIES; i++) {
1087 			tlb1_read_entry(&e, i);
1088 			if (!(e.mas1 & MAS1_VALID))
1089 				continue;
1090 			if (va >= e.virt && va < e.virt + e.size)
1091 				return (e.phys + (va - e.virt));
1092 		}
1093 	}
1094 
1095 	return (p);
1096 }
1097 
1098 /*
1099  * Initialize the pmap module.
1100  * Called by vm_init, to initialize any structures that the pmap
1101  * system needs to map virtual memory.
1102  */
1103 static void
1104 mmu_booke_init(mmu_t mmu)
1105 {
1106 	int shpgperproc = PMAP_SHPGPERPROC;
1107 
1108 	/*
1109 	 * Initialize the address space (zone) for the pv entries.  Set a
1110 	 * high water mark so that the system can recover from excessive
1111 	 * numbers of pv entries.
1112 	 */
1113 	pvzone = uma_zcreate("PV ENTRY", sizeof(struct pv_entry), NULL, NULL,
1114 	    NULL, NULL, UMA_ALIGN_PTR, UMA_ZONE_VM | UMA_ZONE_NOFREE);
1115 
1116 	TUNABLE_INT_FETCH("vm.pmap.shpgperproc", &shpgperproc);
1117 	pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count;
1118 
1119 	TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max);
1120 	pv_entry_high_water = 9 * (pv_entry_max / 10);
1121 
1122 	uma_zone_reserve_kva(pvzone, pv_entry_max);
1123 
1124 	/* Pre-fill pvzone with initial number of pv entries. */
1125 	uma_prealloc(pvzone, PV_ENTRY_ZONE_MIN);
1126 
1127 	/* Create a UMA zone for page table roots. */
1128 	ptbl_root_zone = uma_zcreate("pmap root", PMAP_ROOT_SIZE,
1129 	    NULL, NULL, NULL, NULL, UMA_ALIGN_CACHE, UMA_ZONE_VM);
1130 
1131 	/* Initialize ptbl allocation. */
1132 	ptbl_init();
1133 }
1134 
1135 /*
1136  * Map a list of wired pages into kernel virtual address space.  This is
1137  * intended for temporary mappings which do not need page modification or
1138  * references recorded.  Existing mappings in the region are overwritten.
1139  */
1140 static void
1141 mmu_booke_qenter(mmu_t mmu, vm_offset_t sva, vm_page_t *m, int count)
1142 {
1143 	vm_offset_t va;
1144 
1145 	va = sva;
1146 	while (count-- > 0) {
1147 		mmu_booke_kenter(mmu, va, VM_PAGE_TO_PHYS(*m));
1148 		va += PAGE_SIZE;
1149 		m++;
1150 	}
1151 }
1152 
1153 /*
1154  * Remove page mappings from kernel virtual address space.  Intended for
1155  * temporary mappings entered by mmu_booke_qenter.
1156  */
1157 static void
1158 mmu_booke_qremove(mmu_t mmu, vm_offset_t sva, int count)
1159 {
1160 	vm_offset_t va;
1161 
1162 	va = sva;
1163 	while (count-- > 0) {
1164 		mmu_booke_kremove(mmu, va);
1165 		va += PAGE_SIZE;
1166 	}
1167 }
1168 
1169 /*
1170  * Map a wired page into kernel virtual address space.
1171  */
1172 static void
1173 mmu_booke_kenter(mmu_t mmu, vm_offset_t va, vm_paddr_t pa)
1174 {
1175 
1176 	mmu_booke_kenter_attr(mmu, va, pa, VM_MEMATTR_DEFAULT);
1177 }
1178 
1179 static void
1180 mmu_booke_kenter_attr(mmu_t mmu, vm_offset_t va, vm_paddr_t pa, vm_memattr_t ma)
1181 {
1182 	uint32_t flags;
1183 	pte_t *pte;
1184 
1185 	KASSERT(((va >= VM_MIN_KERNEL_ADDRESS) &&
1186 	    (va <= VM_MAX_KERNEL_ADDRESS)), ("mmu_booke_kenter: invalid va"));
1187 
1188 	flags = PTE_SR | PTE_SW | PTE_SX | PTE_WIRED | PTE_VALID;
1189 	flags |= tlb_calc_wimg(pa, ma) << PTE_MAS2_SHIFT;
1190 	flags |= PTE_PS_4KB;
1191 
1192 	pte = pte_find(mmu, kernel_pmap, va);
1193 	KASSERT((pte != NULL), ("mmu_booke_kenter: invalid va.  NULL PTE"));
1194 
1195 	mtx_lock_spin(&tlbivax_mutex);
1196 	tlb_miss_lock();
1197 
1198 	if (PTE_ISVALID(pte)) {
1199 
1200 		CTR1(KTR_PMAP, "%s: replacing entry!", __func__);
1201 
1202 		/* Flush entry from TLB0 */
1203 		tlb0_flush_entry(va);
1204 	}
1205 
1206 	*pte = PTE_RPN_FROM_PA(pa) | flags;
1207 
1208 	//debugf("mmu_booke_kenter: pdir_idx = %d ptbl_idx = %d va=0x%08x "
1209 	//		"pa=0x%08x rpn=0x%08x flags=0x%08x\n",
1210 	//		pdir_idx, ptbl_idx, va, pa, pte->rpn, pte->flags);
1211 
1212 	/* Flush the real memory from the instruction cache. */
1213 	if ((flags & (PTE_I | PTE_G)) == 0)
1214 		__syncicache((void *)va, PAGE_SIZE);
1215 
1216 	tlb_miss_unlock();
1217 	mtx_unlock_spin(&tlbivax_mutex);
1218 }
1219 
1220 /*
1221  * Remove a page from kernel page table.
1222  */
1223 static void
1224 mmu_booke_kremove(mmu_t mmu, vm_offset_t va)
1225 {
1226 	pte_t *pte;
1227 
1228 	CTR2(KTR_PMAP,"%s: s (va = 0x%"PRI0ptrX")\n", __func__, va);
1229 
1230 	KASSERT(((va >= VM_MIN_KERNEL_ADDRESS) &&
1231 	    (va <= VM_MAX_KERNEL_ADDRESS)),
1232 	    ("mmu_booke_kremove: invalid va"));
1233 
1234 	pte = pte_find(mmu, kernel_pmap, va);
1235 
1236 	if (!PTE_ISVALID(pte)) {
1237 
1238 		CTR1(KTR_PMAP, "%s: invalid pte", __func__);
1239 
1240 		return;
1241 	}
1242 
1243 	mtx_lock_spin(&tlbivax_mutex);
1244 	tlb_miss_lock();
1245 
1246 	/* Invalidate entry in TLB0, update PTE. */
1247 	tlb0_flush_entry(va);
1248 	*pte = 0;
1249 
1250 	tlb_miss_unlock();
1251 	mtx_unlock_spin(&tlbivax_mutex);
1252 }
1253 
1254 /*
1255  * Provide a kernel pointer corresponding to a given userland pointer.
1256  * The returned pointer is valid until the next time this function is
1257  * called in this thread. This is used internally in copyin/copyout.
1258  */
1259 int
1260 mmu_booke_map_user_ptr(mmu_t mmu, pmap_t pm, volatile const void *uaddr,
1261     void **kaddr, size_t ulen, size_t *klen)
1262 {
1263 
1264 	if (trunc_page((uintptr_t)uaddr + ulen) > VM_MAXUSER_ADDRESS)
1265 		return (EFAULT);
1266 
1267 	*kaddr = (void *)(uintptr_t)uaddr;
1268 	if (klen)
1269 		*klen = ulen;
1270 
1271 	return (0);
1272 }
1273 
1274 /*
1275  * Figure out where a given kernel pointer (usually in a fault) points
1276  * to from the VM's perspective, potentially remapping into userland's
1277  * address space.
1278  */
1279 static int
1280 mmu_booke_decode_kernel_ptr(mmu_t mmu, vm_offset_t addr, int *is_user,
1281     vm_offset_t *decoded_addr)
1282 {
1283 
1284 	if (trunc_page(addr) <= VM_MAXUSER_ADDRESS)
1285 		*is_user = 1;
1286 	else
1287 		*is_user = 0;
1288 
1289 	*decoded_addr = addr;
1290 	return (0);
1291 }
1292 
1293 /*
1294  * Initialize pmap associated with process 0.
1295  */
1296 static void
1297 mmu_booke_pinit0(mmu_t mmu, pmap_t pmap)
1298 {
1299 
1300 	PMAP_LOCK_INIT(pmap);
1301 	mmu_booke_pinit(mmu, pmap);
1302 	PCPU_SET(curpmap, pmap);
1303 }
1304 
1305 /*
1306  * Insert the given physical page at the specified virtual address in the
1307  * target physical map with the protection requested. If specified the page
1308  * will be wired down.
1309  */
1310 static int
1311 mmu_booke_enter(mmu_t mmu, pmap_t pmap, vm_offset_t va, vm_page_t m,
1312     vm_prot_t prot, u_int flags, int8_t psind)
1313 {
1314 	int error;
1315 
1316 	rw_wlock(&pvh_global_lock);
1317 	PMAP_LOCK(pmap);
1318 	error = mmu_booke_enter_locked(mmu, pmap, va, m, prot, flags, psind);
1319 	PMAP_UNLOCK(pmap);
1320 	rw_wunlock(&pvh_global_lock);
1321 	return (error);
1322 }
1323 
1324 static int
1325 mmu_booke_enter_locked(mmu_t mmu, pmap_t pmap, vm_offset_t va, vm_page_t m,
1326     vm_prot_t prot, u_int pmap_flags, int8_t psind __unused)
1327 {
1328 	pte_t *pte;
1329 	vm_paddr_t pa;
1330 	uint32_t flags;
1331 	int error, su, sync;
1332 
1333 	pa = VM_PAGE_TO_PHYS(m);
1334 	su = (pmap == kernel_pmap);
1335 	sync = 0;
1336 
1337 	//debugf("mmu_booke_enter_locked: s (pmap=0x%08x su=%d tid=%d m=0x%08x va=0x%08x "
1338 	//		"pa=0x%08x prot=0x%08x flags=%#x)\n",
1339 	//		(u_int32_t)pmap, su, pmap->pm_tid,
1340 	//		(u_int32_t)m, va, pa, prot, flags);
1341 
1342 	if (su) {
1343 		KASSERT(((va >= virtual_avail) &&
1344 		    (va <= VM_MAX_KERNEL_ADDRESS)),
1345 		    ("mmu_booke_enter_locked: kernel pmap, non kernel va"));
1346 	} else {
1347 		KASSERT((va <= VM_MAXUSER_ADDRESS),
1348 		    ("mmu_booke_enter_locked: user pmap, non user va"));
1349 	}
1350 	if ((m->oflags & VPO_UNMANAGED) == 0) {
1351 		if ((pmap_flags & PMAP_ENTER_QUICK_LOCKED) == 0)
1352 			VM_PAGE_OBJECT_BUSY_ASSERT(m);
1353 		else
1354 			VM_OBJECT_ASSERT_LOCKED(m->object);
1355 	}
1356 
1357 	PMAP_LOCK_ASSERT(pmap, MA_OWNED);
1358 
1359 	/*
1360 	 * If there is an existing mapping, and the physical address has not
1361 	 * changed, must be protection or wiring change.
1362 	 */
1363 	if (((pte = pte_find(mmu, pmap, va)) != NULL) &&
1364 	    (PTE_ISVALID(pte)) && (PTE_PA(pte) == pa)) {
1365 
1366 		/*
1367 		 * Before actually updating pte->flags we calculate and
1368 		 * prepare its new value in a helper var.
1369 		 */
1370 		flags = *pte;
1371 		flags &= ~(PTE_UW | PTE_UX | PTE_SW | PTE_SX | PTE_MODIFIED);
1372 
1373 		/* Wiring change, just update stats. */
1374 		if ((pmap_flags & PMAP_ENTER_WIRED) != 0) {
1375 			if (!PTE_ISWIRED(pte)) {
1376 				flags |= PTE_WIRED;
1377 				pmap->pm_stats.wired_count++;
1378 			}
1379 		} else {
1380 			if (PTE_ISWIRED(pte)) {
1381 				flags &= ~PTE_WIRED;
1382 				pmap->pm_stats.wired_count--;
1383 			}
1384 		}
1385 
1386 		if (prot & VM_PROT_WRITE) {
1387 			/* Add write permissions. */
1388 			flags |= PTE_SW;
1389 			if (!su)
1390 				flags |= PTE_UW;
1391 
1392 			if ((flags & PTE_MANAGED) != 0)
1393 				vm_page_aflag_set(m, PGA_WRITEABLE);
1394 		} else {
1395 			/* Handle modified pages, sense modify status. */
1396 
1397 			/*
1398 			 * The PTE_MODIFIED flag could be set by underlying
1399 			 * TLB misses since we last read it (above), possibly
1400 			 * other CPUs could update it so we check in the PTE
1401 			 * directly rather than rely on that saved local flags
1402 			 * copy.
1403 			 */
1404 			if (PTE_ISMODIFIED(pte))
1405 				vm_page_dirty(m);
1406 		}
1407 
1408 		if (prot & VM_PROT_EXECUTE) {
1409 			flags |= PTE_SX;
1410 			if (!su)
1411 				flags |= PTE_UX;
1412 
1413 			/*
1414 			 * Check existing flags for execute permissions: if we
1415 			 * are turning execute permissions on, icache should
1416 			 * be flushed.
1417 			 */
1418 			if ((*pte & (PTE_UX | PTE_SX)) == 0)
1419 				sync++;
1420 		}
1421 
1422 		flags &= ~PTE_REFERENCED;
1423 
1424 		/*
1425 		 * The new flags value is all calculated -- only now actually
1426 		 * update the PTE.
1427 		 */
1428 		mtx_lock_spin(&tlbivax_mutex);
1429 		tlb_miss_lock();
1430 
1431 		tlb0_flush_entry(va);
1432 		*pte &= ~PTE_FLAGS_MASK;
1433 		*pte |= flags;
1434 
1435 		tlb_miss_unlock();
1436 		mtx_unlock_spin(&tlbivax_mutex);
1437 
1438 	} else {
1439 		/*
1440 		 * If there is an existing mapping, but it's for a different
1441 		 * physical address, pte_enter() will delete the old mapping.
1442 		 */
1443 		//if ((pte != NULL) && PTE_ISVALID(pte))
1444 		//	debugf("mmu_booke_enter_locked: replace\n");
1445 		//else
1446 		//	debugf("mmu_booke_enter_locked: new\n");
1447 
1448 		/* Now set up the flags and install the new mapping. */
1449 		flags = (PTE_SR | PTE_VALID);
1450 		flags |= PTE_M;
1451 
1452 		if (!su)
1453 			flags |= PTE_UR;
1454 
1455 		if (prot & VM_PROT_WRITE) {
1456 			flags |= PTE_SW;
1457 			if (!su)
1458 				flags |= PTE_UW;
1459 
1460 			if ((m->oflags & VPO_UNMANAGED) == 0)
1461 				vm_page_aflag_set(m, PGA_WRITEABLE);
1462 		}
1463 
1464 		if (prot & VM_PROT_EXECUTE) {
1465 			flags |= PTE_SX;
1466 			if (!su)
1467 				flags |= PTE_UX;
1468 		}
1469 
1470 		/* If its wired update stats. */
1471 		if ((pmap_flags & PMAP_ENTER_WIRED) != 0)
1472 			flags |= PTE_WIRED;
1473 
1474 		error = pte_enter(mmu, pmap, m, va, flags,
1475 		    (pmap_flags & PMAP_ENTER_NOSLEEP) != 0);
1476 		if (error != 0)
1477 			return (KERN_RESOURCE_SHORTAGE);
1478 
1479 		if ((flags & PMAP_ENTER_WIRED) != 0)
1480 			pmap->pm_stats.wired_count++;
1481 
1482 		/* Flush the real memory from the instruction cache. */
1483 		if (prot & VM_PROT_EXECUTE)
1484 			sync++;
1485 	}
1486 
1487 	if (sync && (su || pmap == PCPU_GET(curpmap))) {
1488 		__syncicache((void *)va, PAGE_SIZE);
1489 		sync = 0;
1490 	}
1491 
1492 	return (KERN_SUCCESS);
1493 }
1494 
1495 /*
1496  * Maps a sequence of resident pages belonging to the same object.
1497  * The sequence begins with the given page m_start.  This page is
1498  * mapped at the given virtual address start.  Each subsequent page is
1499  * mapped at a virtual address that is offset from start by the same
1500  * amount as the page is offset from m_start within the object.  The
1501  * last page in the sequence is the page with the largest offset from
1502  * m_start that can be mapped at a virtual address less than the given
1503  * virtual address end.  Not every virtual page between start and end
1504  * is mapped; only those for which a resident page exists with the
1505  * corresponding offset from m_start are mapped.
1506  */
1507 static void
1508 mmu_booke_enter_object(mmu_t mmu, pmap_t pmap, vm_offset_t start,
1509     vm_offset_t end, vm_page_t m_start, vm_prot_t prot)
1510 {
1511 	vm_page_t m;
1512 	vm_pindex_t diff, psize;
1513 
1514 	VM_OBJECT_ASSERT_LOCKED(m_start->object);
1515 
1516 	psize = atop(end - start);
1517 	m = m_start;
1518 	rw_wlock(&pvh_global_lock);
1519 	PMAP_LOCK(pmap);
1520 	while (m != NULL && (diff = m->pindex - m_start->pindex) < psize) {
1521 		mmu_booke_enter_locked(mmu, pmap, start + ptoa(diff), m,
1522 		    prot & (VM_PROT_READ | VM_PROT_EXECUTE),
1523 		    PMAP_ENTER_NOSLEEP | PMAP_ENTER_QUICK_LOCKED, 0);
1524 		m = TAILQ_NEXT(m, listq);
1525 	}
1526 	PMAP_UNLOCK(pmap);
1527 	rw_wunlock(&pvh_global_lock);
1528 }
1529 
1530 static void
1531 mmu_booke_enter_quick(mmu_t mmu, pmap_t pmap, vm_offset_t va, vm_page_t m,
1532     vm_prot_t prot)
1533 {
1534 
1535 	rw_wlock(&pvh_global_lock);
1536 	PMAP_LOCK(pmap);
1537 	mmu_booke_enter_locked(mmu, pmap, va, m,
1538 	    prot & (VM_PROT_READ | VM_PROT_EXECUTE), PMAP_ENTER_NOSLEEP |
1539 	    PMAP_ENTER_QUICK_LOCKED, 0);
1540 	PMAP_UNLOCK(pmap);
1541 	rw_wunlock(&pvh_global_lock);
1542 }
1543 
1544 /*
1545  * Remove the given range of addresses from the specified map.
1546  *
1547  * It is assumed that the start and end are properly rounded to the page size.
1548  */
1549 static void
1550 mmu_booke_remove(mmu_t mmu, pmap_t pmap, vm_offset_t va, vm_offset_t endva)
1551 {
1552 	pte_t *pte;
1553 	uint8_t hold_flag;
1554 
1555 	int su = (pmap == kernel_pmap);
1556 
1557 	//debugf("mmu_booke_remove: s (su = %d pmap=0x%08x tid=%d va=0x%08x endva=0x%08x)\n",
1558 	//		su, (u_int32_t)pmap, pmap->pm_tid, va, endva);
1559 
1560 	if (su) {
1561 		KASSERT(((va >= virtual_avail) &&
1562 		    (va <= VM_MAX_KERNEL_ADDRESS)),
1563 		    ("mmu_booke_remove: kernel pmap, non kernel va"));
1564 	} else {
1565 		KASSERT((va <= VM_MAXUSER_ADDRESS),
1566 		    ("mmu_booke_remove: user pmap, non user va"));
1567 	}
1568 
1569 	if (PMAP_REMOVE_DONE(pmap)) {
1570 		//debugf("mmu_booke_remove: e (empty)\n");
1571 		return;
1572 	}
1573 
1574 	hold_flag = PTBL_HOLD_FLAG(pmap);
1575 	//debugf("mmu_booke_remove: hold_flag = %d\n", hold_flag);
1576 
1577 	rw_wlock(&pvh_global_lock);
1578 	PMAP_LOCK(pmap);
1579 	for (; va < endva; va += PAGE_SIZE) {
1580 		pte = pte_find(mmu, pmap, va);
1581 		if ((pte != NULL) && PTE_ISVALID(pte))
1582 			pte_remove(mmu, pmap, va, hold_flag);
1583 	}
1584 	PMAP_UNLOCK(pmap);
1585 	rw_wunlock(&pvh_global_lock);
1586 
1587 	//debugf("mmu_booke_remove: e\n");
1588 }
1589 
1590 /*
1591  * Remove physical page from all pmaps in which it resides.
1592  */
1593 static void
1594 mmu_booke_remove_all(mmu_t mmu, vm_page_t m)
1595 {
1596 	pv_entry_t pv, pvn;
1597 	uint8_t hold_flag;
1598 
1599 	rw_wlock(&pvh_global_lock);
1600 	TAILQ_FOREACH_SAFE(pv, &m->md.pv_list, pv_link, pvn) {
1601 		PMAP_LOCK(pv->pv_pmap);
1602 		hold_flag = PTBL_HOLD_FLAG(pv->pv_pmap);
1603 		pte_remove(mmu, pv->pv_pmap, pv->pv_va, hold_flag);
1604 		PMAP_UNLOCK(pv->pv_pmap);
1605 	}
1606 	vm_page_aflag_clear(m, PGA_WRITEABLE);
1607 	rw_wunlock(&pvh_global_lock);
1608 }
1609 
1610 /*
1611  * Map a range of physical addresses into kernel virtual address space.
1612  */
1613 static vm_offset_t
1614 mmu_booke_map(mmu_t mmu, vm_offset_t *virt, vm_paddr_t pa_start,
1615     vm_paddr_t pa_end, int prot)
1616 {
1617 	vm_offset_t sva = *virt;
1618 	vm_offset_t va = sva;
1619 
1620 #ifdef __powerpc64__
1621 	/* XXX: Handle memory not starting at 0x0. */
1622 	if (pa_end < ctob(Maxmem))
1623 		return (PHYS_TO_DMAP(pa_start));
1624 #endif
1625 
1626 	while (pa_start < pa_end) {
1627 		mmu_booke_kenter(mmu, va, pa_start);
1628 		va += PAGE_SIZE;
1629 		pa_start += PAGE_SIZE;
1630 	}
1631 	*virt = va;
1632 
1633 	return (sva);
1634 }
1635 
1636 /*
1637  * The pmap must be activated before it's address space can be accessed in any
1638  * way.
1639  */
1640 static void
1641 mmu_booke_activate(mmu_t mmu, struct thread *td)
1642 {
1643 	pmap_t pmap;
1644 	u_int cpuid;
1645 
1646 	pmap = &td->td_proc->p_vmspace->vm_pmap;
1647 
1648 	CTR5(KTR_PMAP, "%s: s (td = %p, proc = '%s', id = %d, pmap = 0x%"PRI0ptrX")",
1649 	    __func__, td, td->td_proc->p_comm, td->td_proc->p_pid, pmap);
1650 
1651 	KASSERT((pmap != kernel_pmap), ("mmu_booke_activate: kernel_pmap!"));
1652 
1653 	sched_pin();
1654 
1655 	cpuid = PCPU_GET(cpuid);
1656 	CPU_SET_ATOMIC(cpuid, &pmap->pm_active);
1657 	PCPU_SET(curpmap, pmap);
1658 
1659 	if (pmap->pm_tid[cpuid] == TID_NONE)
1660 		tid_alloc(pmap);
1661 
1662 	/* Load PID0 register with pmap tid value. */
1663 	mtspr(SPR_PID0, pmap->pm_tid[cpuid]);
1664 	__asm __volatile("isync");
1665 
1666 	mtspr(SPR_DBCR0, td->td_pcb->pcb_cpu.booke.dbcr0);
1667 
1668 	sched_unpin();
1669 
1670 	CTR3(KTR_PMAP, "%s: e (tid = %d for '%s')", __func__,
1671 	    pmap->pm_tid[PCPU_GET(cpuid)], td->td_proc->p_comm);
1672 }
1673 
1674 /*
1675  * Deactivate the specified process's address space.
1676  */
1677 static void
1678 mmu_booke_deactivate(mmu_t mmu, struct thread *td)
1679 {
1680 	pmap_t pmap;
1681 
1682 	pmap = &td->td_proc->p_vmspace->vm_pmap;
1683 
1684 	CTR5(KTR_PMAP, "%s: td=%p, proc = '%s', id = %d, pmap = 0x%"PRI0ptrX,
1685 	    __func__, td, td->td_proc->p_comm, td->td_proc->p_pid, pmap);
1686 
1687 	td->td_pcb->pcb_cpu.booke.dbcr0 = mfspr(SPR_DBCR0);
1688 
1689 	CPU_CLR_ATOMIC(PCPU_GET(cpuid), &pmap->pm_active);
1690 	PCPU_SET(curpmap, NULL);
1691 }
1692 
1693 /*
1694  * Copy the range specified by src_addr/len
1695  * from the source map to the range dst_addr/len
1696  * in the destination map.
1697  *
1698  * This routine is only advisory and need not do anything.
1699  */
1700 static void
1701 mmu_booke_copy(mmu_t mmu, pmap_t dst_pmap, pmap_t src_pmap,
1702     vm_offset_t dst_addr, vm_size_t len, vm_offset_t src_addr)
1703 {
1704 
1705 }
1706 
1707 /*
1708  * Set the physical protection on the specified range of this map as requested.
1709  */
1710 static void
1711 mmu_booke_protect(mmu_t mmu, pmap_t pmap, vm_offset_t sva, vm_offset_t eva,
1712     vm_prot_t prot)
1713 {
1714 	vm_offset_t va;
1715 	vm_page_t m;
1716 	pte_t *pte;
1717 
1718 	if ((prot & VM_PROT_READ) == VM_PROT_NONE) {
1719 		mmu_booke_remove(mmu, pmap, sva, eva);
1720 		return;
1721 	}
1722 
1723 	if (prot & VM_PROT_WRITE)
1724 		return;
1725 
1726 	PMAP_LOCK(pmap);
1727 	for (va = sva; va < eva; va += PAGE_SIZE) {
1728 		if ((pte = pte_find(mmu, pmap, va)) != NULL) {
1729 			if (PTE_ISVALID(pte)) {
1730 				m = PHYS_TO_VM_PAGE(PTE_PA(pte));
1731 
1732 				mtx_lock_spin(&tlbivax_mutex);
1733 				tlb_miss_lock();
1734 
1735 				/* Handle modified pages. */
1736 				if (PTE_ISMODIFIED(pte) && PTE_ISMANAGED(pte))
1737 					vm_page_dirty(m);
1738 
1739 				tlb0_flush_entry(va);
1740 				*pte &= ~(PTE_UW | PTE_SW | PTE_MODIFIED);
1741 
1742 				tlb_miss_unlock();
1743 				mtx_unlock_spin(&tlbivax_mutex);
1744 			}
1745 		}
1746 	}
1747 	PMAP_UNLOCK(pmap);
1748 }
1749 
1750 /*
1751  * Clear the write and modified bits in each of the given page's mappings.
1752  */
1753 static void
1754 mmu_booke_remove_write(mmu_t mmu, vm_page_t m)
1755 {
1756 	pv_entry_t pv;
1757 	pte_t *pte;
1758 
1759 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
1760 	    ("mmu_booke_remove_write: page %p is not managed", m));
1761 	vm_page_assert_busied(m);
1762 
1763 	if (!pmap_page_is_write_mapped(m))
1764 	        return;
1765 	rw_wlock(&pvh_global_lock);
1766 	TAILQ_FOREACH(pv, &m->md.pv_list, pv_link) {
1767 		PMAP_LOCK(pv->pv_pmap);
1768 		if ((pte = pte_find(mmu, pv->pv_pmap, pv->pv_va)) != NULL) {
1769 			if (PTE_ISVALID(pte)) {
1770 				m = PHYS_TO_VM_PAGE(PTE_PA(pte));
1771 
1772 				mtx_lock_spin(&tlbivax_mutex);
1773 				tlb_miss_lock();
1774 
1775 				/* Handle modified pages. */
1776 				if (PTE_ISMODIFIED(pte))
1777 					vm_page_dirty(m);
1778 
1779 				/* Flush mapping from TLB0. */
1780 				*pte &= ~(PTE_UW | PTE_SW | PTE_MODIFIED);
1781 
1782 				tlb_miss_unlock();
1783 				mtx_unlock_spin(&tlbivax_mutex);
1784 			}
1785 		}
1786 		PMAP_UNLOCK(pv->pv_pmap);
1787 	}
1788 	vm_page_aflag_clear(m, PGA_WRITEABLE);
1789 	rw_wunlock(&pvh_global_lock);
1790 }
1791 
1792 /*
1793  * Atomically extract and hold the physical page with the given
1794  * pmap and virtual address pair if that mapping permits the given
1795  * protection.
1796  */
1797 static vm_page_t
1798 mmu_booke_extract_and_hold(mmu_t mmu, pmap_t pmap, vm_offset_t va,
1799     vm_prot_t prot)
1800 {
1801 	pte_t *pte;
1802 	vm_page_t m;
1803 	uint32_t pte_wbit;
1804 
1805 	m = NULL;
1806 	PMAP_LOCK(pmap);
1807 	pte = pte_find(mmu, pmap, va);
1808 	if ((pte != NULL) && PTE_ISVALID(pte)) {
1809 		if (pmap == kernel_pmap)
1810 			pte_wbit = PTE_SW;
1811 		else
1812 			pte_wbit = PTE_UW;
1813 
1814 		if ((*pte & pte_wbit) != 0 || (prot & VM_PROT_WRITE) == 0) {
1815 			m = PHYS_TO_VM_PAGE(PTE_PA(pte));
1816 			if (!vm_page_wire_mapped(m))
1817 				m = NULL;
1818 		}
1819 	}
1820 	PMAP_UNLOCK(pmap);
1821 	return (m);
1822 }
1823 
1824 /*
1825  * Initialize a vm_page's machine-dependent fields.
1826  */
1827 static void
1828 mmu_booke_page_init(mmu_t mmu, vm_page_t m)
1829 {
1830 
1831 	m->md.pv_tracked = 0;
1832 	TAILQ_INIT(&m->md.pv_list);
1833 }
1834 
1835 /*
1836  * Return whether or not the specified physical page was modified
1837  * in any of physical maps.
1838  */
1839 static boolean_t
1840 mmu_booke_is_modified(mmu_t mmu, vm_page_t m)
1841 {
1842 	pte_t *pte;
1843 	pv_entry_t pv;
1844 	boolean_t rv;
1845 
1846 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
1847 	    ("mmu_booke_is_modified: page %p is not managed", m));
1848 	rv = FALSE;
1849 
1850 	/*
1851 	 * If the page is not busied then this check is racy.
1852 	 */
1853 	if (!pmap_page_is_write_mapped(m))
1854 		return (FALSE);
1855 
1856 	rw_wlock(&pvh_global_lock);
1857 	TAILQ_FOREACH(pv, &m->md.pv_list, pv_link) {
1858 		PMAP_LOCK(pv->pv_pmap);
1859 		if ((pte = pte_find(mmu, pv->pv_pmap, pv->pv_va)) != NULL &&
1860 		    PTE_ISVALID(pte)) {
1861 			if (PTE_ISMODIFIED(pte))
1862 				rv = TRUE;
1863 		}
1864 		PMAP_UNLOCK(pv->pv_pmap);
1865 		if (rv)
1866 			break;
1867 	}
1868 	rw_wunlock(&pvh_global_lock);
1869 	return (rv);
1870 }
1871 
1872 /*
1873  * Return whether or not the specified virtual address is eligible
1874  * for prefault.
1875  */
1876 static boolean_t
1877 mmu_booke_is_prefaultable(mmu_t mmu, pmap_t pmap, vm_offset_t addr)
1878 {
1879 
1880 	return (FALSE);
1881 }
1882 
1883 /*
1884  * Return whether or not the specified physical page was referenced
1885  * in any physical maps.
1886  */
1887 static boolean_t
1888 mmu_booke_is_referenced(mmu_t mmu, vm_page_t m)
1889 {
1890 	pte_t *pte;
1891 	pv_entry_t pv;
1892 	boolean_t rv;
1893 
1894 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
1895 	    ("mmu_booke_is_referenced: page %p is not managed", m));
1896 	rv = FALSE;
1897 	rw_wlock(&pvh_global_lock);
1898 	TAILQ_FOREACH(pv, &m->md.pv_list, pv_link) {
1899 		PMAP_LOCK(pv->pv_pmap);
1900 		if ((pte = pte_find(mmu, pv->pv_pmap, pv->pv_va)) != NULL &&
1901 		    PTE_ISVALID(pte)) {
1902 			if (PTE_ISREFERENCED(pte))
1903 				rv = TRUE;
1904 		}
1905 		PMAP_UNLOCK(pv->pv_pmap);
1906 		if (rv)
1907 			break;
1908 	}
1909 	rw_wunlock(&pvh_global_lock);
1910 	return (rv);
1911 }
1912 
1913 /*
1914  * Clear the modify bits on the specified physical page.
1915  */
1916 static void
1917 mmu_booke_clear_modify(mmu_t mmu, vm_page_t m)
1918 {
1919 	pte_t *pte;
1920 	pv_entry_t pv;
1921 
1922 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
1923 	    ("mmu_booke_clear_modify: page %p is not managed", m));
1924 	vm_page_assert_busied(m);
1925 
1926 	if (!pmap_page_is_write_mapped(m))
1927 	        return;
1928 
1929 	rw_wlock(&pvh_global_lock);
1930 	TAILQ_FOREACH(pv, &m->md.pv_list, pv_link) {
1931 		PMAP_LOCK(pv->pv_pmap);
1932 		if ((pte = pte_find(mmu, pv->pv_pmap, pv->pv_va)) != NULL &&
1933 		    PTE_ISVALID(pte)) {
1934 			mtx_lock_spin(&tlbivax_mutex);
1935 			tlb_miss_lock();
1936 
1937 			if (*pte & (PTE_SW | PTE_UW | PTE_MODIFIED)) {
1938 				tlb0_flush_entry(pv->pv_va);
1939 				*pte &= ~(PTE_SW | PTE_UW | PTE_MODIFIED |
1940 				    PTE_REFERENCED);
1941 			}
1942 
1943 			tlb_miss_unlock();
1944 			mtx_unlock_spin(&tlbivax_mutex);
1945 		}
1946 		PMAP_UNLOCK(pv->pv_pmap);
1947 	}
1948 	rw_wunlock(&pvh_global_lock);
1949 }
1950 
1951 /*
1952  * Return a count of reference bits for a page, clearing those bits.
1953  * It is not necessary for every reference bit to be cleared, but it
1954  * is necessary that 0 only be returned when there are truly no
1955  * reference bits set.
1956  *
1957  * As an optimization, update the page's dirty field if a modified bit is
1958  * found while counting reference bits.  This opportunistic update can be
1959  * performed at low cost and can eliminate the need for some future calls
1960  * to pmap_is_modified().  However, since this function stops after
1961  * finding PMAP_TS_REFERENCED_MAX reference bits, it may not detect some
1962  * dirty pages.  Those dirty pages will only be detected by a future call
1963  * to pmap_is_modified().
1964  */
1965 static int
1966 mmu_booke_ts_referenced(mmu_t mmu, vm_page_t m)
1967 {
1968 	pte_t *pte;
1969 	pv_entry_t pv;
1970 	int count;
1971 
1972 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
1973 	    ("mmu_booke_ts_referenced: page %p is not managed", m));
1974 	count = 0;
1975 	rw_wlock(&pvh_global_lock);
1976 	TAILQ_FOREACH(pv, &m->md.pv_list, pv_link) {
1977 		PMAP_LOCK(pv->pv_pmap);
1978 		if ((pte = pte_find(mmu, pv->pv_pmap, pv->pv_va)) != NULL &&
1979 		    PTE_ISVALID(pte)) {
1980 			if (PTE_ISMODIFIED(pte))
1981 				vm_page_dirty(m);
1982 			if (PTE_ISREFERENCED(pte)) {
1983 				mtx_lock_spin(&tlbivax_mutex);
1984 				tlb_miss_lock();
1985 
1986 				tlb0_flush_entry(pv->pv_va);
1987 				*pte &= ~PTE_REFERENCED;
1988 
1989 				tlb_miss_unlock();
1990 				mtx_unlock_spin(&tlbivax_mutex);
1991 
1992 				if (++count >= PMAP_TS_REFERENCED_MAX) {
1993 					PMAP_UNLOCK(pv->pv_pmap);
1994 					break;
1995 				}
1996 			}
1997 		}
1998 		PMAP_UNLOCK(pv->pv_pmap);
1999 	}
2000 	rw_wunlock(&pvh_global_lock);
2001 	return (count);
2002 }
2003 
2004 /*
2005  * Clear the wired attribute from the mappings for the specified range of
2006  * addresses in the given pmap.  Every valid mapping within that range must
2007  * have the wired attribute set.  In contrast, invalid mappings cannot have
2008  * the wired attribute set, so they are ignored.
2009  *
2010  * The wired attribute of the page table entry is not a hardware feature, so
2011  * there is no need to invalidate any TLB entries.
2012  */
2013 static void
2014 mmu_booke_unwire(mmu_t mmu, pmap_t pmap, vm_offset_t sva, vm_offset_t eva)
2015 {
2016 	vm_offset_t va;
2017 	pte_t *pte;
2018 
2019 	PMAP_LOCK(pmap);
2020 	for (va = sva; va < eva; va += PAGE_SIZE) {
2021 		if ((pte = pte_find(mmu, pmap, va)) != NULL &&
2022 		    PTE_ISVALID(pte)) {
2023 			if (!PTE_ISWIRED(pte))
2024 				panic("mmu_booke_unwire: pte %p isn't wired",
2025 				    pte);
2026 			*pte &= ~PTE_WIRED;
2027 			pmap->pm_stats.wired_count--;
2028 		}
2029 	}
2030 	PMAP_UNLOCK(pmap);
2031 
2032 }
2033 
2034 /*
2035  * Return true if the pmap's pv is one of the first 16 pvs linked to from this
2036  * page.  This count may be changed upwards or downwards in the future; it is
2037  * only necessary that true be returned for a small subset of pmaps for proper
2038  * page aging.
2039  */
2040 static boolean_t
2041 mmu_booke_page_exists_quick(mmu_t mmu, pmap_t pmap, vm_page_t m)
2042 {
2043 	pv_entry_t pv;
2044 	int loops;
2045 	boolean_t rv;
2046 
2047 	KASSERT((m->oflags & VPO_UNMANAGED) == 0,
2048 	    ("mmu_booke_page_exists_quick: page %p is not managed", m));
2049 	loops = 0;
2050 	rv = FALSE;
2051 	rw_wlock(&pvh_global_lock);
2052 	TAILQ_FOREACH(pv, &m->md.pv_list, pv_link) {
2053 		if (pv->pv_pmap == pmap) {
2054 			rv = TRUE;
2055 			break;
2056 		}
2057 		if (++loops >= 16)
2058 			break;
2059 	}
2060 	rw_wunlock(&pvh_global_lock);
2061 	return (rv);
2062 }
2063 
2064 /*
2065  * Return the number of managed mappings to the given physical page that are
2066  * wired.
2067  */
2068 static int
2069 mmu_booke_page_wired_mappings(mmu_t mmu, vm_page_t m)
2070 {
2071 	pv_entry_t pv;
2072 	pte_t *pte;
2073 	int count = 0;
2074 
2075 	if ((m->oflags & VPO_UNMANAGED) != 0)
2076 		return (count);
2077 	rw_wlock(&pvh_global_lock);
2078 	TAILQ_FOREACH(pv, &m->md.pv_list, pv_link) {
2079 		PMAP_LOCK(pv->pv_pmap);
2080 		if ((pte = pte_find(mmu, pv->pv_pmap, pv->pv_va)) != NULL)
2081 			if (PTE_ISVALID(pte) && PTE_ISWIRED(pte))
2082 				count++;
2083 		PMAP_UNLOCK(pv->pv_pmap);
2084 	}
2085 	rw_wunlock(&pvh_global_lock);
2086 	return (count);
2087 }
2088 
2089 static int
2090 mmu_booke_dev_direct_mapped(mmu_t mmu, vm_paddr_t pa, vm_size_t size)
2091 {
2092 	int i;
2093 	vm_offset_t va;
2094 
2095 	/*
2096 	 * This currently does not work for entries that
2097 	 * overlap TLB1 entries.
2098 	 */
2099 	for (i = 0; i < TLB1_ENTRIES; i ++) {
2100 		if (tlb1_iomapped(i, pa, size, &va) == 0)
2101 			return (0);
2102 	}
2103 
2104 	return (EFAULT);
2105 }
2106 
2107 void
2108 mmu_booke_dumpsys_map(mmu_t mmu, vm_paddr_t pa, size_t sz, void **va)
2109 {
2110 	vm_paddr_t ppa;
2111 	vm_offset_t ofs;
2112 	vm_size_t gran;
2113 
2114 	/* Minidumps are based on virtual memory addresses. */
2115 	if (do_minidump) {
2116 		*va = (void *)(vm_offset_t)pa;
2117 		return;
2118 	}
2119 
2120 	/* Raw physical memory dumps don't have a virtual address. */
2121 	/* We always map a 256MB page at 256M. */
2122 	gran = 256 * 1024 * 1024;
2123 	ppa = rounddown2(pa, gran);
2124 	ofs = pa - ppa;
2125 	*va = (void *)gran;
2126 	tlb1_set_entry((vm_offset_t)va, ppa, gran, _TLB_ENTRY_IO);
2127 
2128 	if (sz > (gran - ofs))
2129 		tlb1_set_entry((vm_offset_t)(va + gran), ppa + gran, gran,
2130 		    _TLB_ENTRY_IO);
2131 }
2132 
2133 void
2134 mmu_booke_dumpsys_unmap(mmu_t mmu, vm_paddr_t pa, size_t sz, void *va)
2135 {
2136 	vm_paddr_t ppa;
2137 	vm_offset_t ofs;
2138 	vm_size_t gran;
2139 	tlb_entry_t e;
2140 	int i;
2141 
2142 	/* Minidumps are based on virtual memory addresses. */
2143 	/* Nothing to do... */
2144 	if (do_minidump)
2145 		return;
2146 
2147 	for (i = 0; i < TLB1_ENTRIES; i++) {
2148 		tlb1_read_entry(&e, i);
2149 		if (!(e.mas1 & MAS1_VALID))
2150 			break;
2151 	}
2152 
2153 	/* Raw physical memory dumps don't have a virtual address. */
2154 	i--;
2155 	e.mas1 = 0;
2156 	e.mas2 = 0;
2157 	e.mas3 = 0;
2158 	tlb1_write_entry(&e, i);
2159 
2160 	gran = 256 * 1024 * 1024;
2161 	ppa = rounddown2(pa, gran);
2162 	ofs = pa - ppa;
2163 	if (sz > (gran - ofs)) {
2164 		i--;
2165 		e.mas1 = 0;
2166 		e.mas2 = 0;
2167 		e.mas3 = 0;
2168 		tlb1_write_entry(&e, i);
2169 	}
2170 }
2171 
2172 extern struct dump_pa dump_map[PHYS_AVAIL_SZ + 1];
2173 
2174 void
2175 mmu_booke_scan_init(mmu_t mmu)
2176 {
2177 	vm_offset_t va;
2178 	pte_t *pte;
2179 	int i;
2180 
2181 	if (!do_minidump) {
2182 		/* Initialize phys. segments for dumpsys(). */
2183 		memset(&dump_map, 0, sizeof(dump_map));
2184 		mem_regions(&physmem_regions, &physmem_regions_sz, &availmem_regions,
2185 		    &availmem_regions_sz);
2186 		for (i = 0; i < physmem_regions_sz; i++) {
2187 			dump_map[i].pa_start = physmem_regions[i].mr_start;
2188 			dump_map[i].pa_size = physmem_regions[i].mr_size;
2189 		}
2190 		return;
2191 	}
2192 
2193 	/* Virtual segments for minidumps: */
2194 	memset(&dump_map, 0, sizeof(dump_map));
2195 
2196 	/* 1st: kernel .data and .bss. */
2197 	dump_map[0].pa_start = trunc_page((uintptr_t)_etext);
2198 	dump_map[0].pa_size =
2199 	    round_page((uintptr_t)_end) - dump_map[0].pa_start;
2200 
2201 	/* 2nd: msgbuf and tables (see pmap_bootstrap()). */
2202 	dump_map[1].pa_start = data_start;
2203 	dump_map[1].pa_size = data_end - data_start;
2204 
2205 	/* 3rd: kernel VM. */
2206 	va = dump_map[1].pa_start + dump_map[1].pa_size;
2207 	/* Find start of next chunk (from va). */
2208 	while (va < virtual_end) {
2209 		/* Don't dump the buffer cache. */
2210 		if (va >= kmi.buffer_sva && va < kmi.buffer_eva) {
2211 			va = kmi.buffer_eva;
2212 			continue;
2213 		}
2214 		pte = pte_find(mmu, kernel_pmap, va);
2215 		if (pte != NULL && PTE_ISVALID(pte))
2216 			break;
2217 		va += PAGE_SIZE;
2218 	}
2219 	if (va < virtual_end) {
2220 		dump_map[2].pa_start = va;
2221 		va += PAGE_SIZE;
2222 		/* Find last page in chunk. */
2223 		while (va < virtual_end) {
2224 			/* Don't run into the buffer cache. */
2225 			if (va == kmi.buffer_sva)
2226 				break;
2227 			pte = pte_find(mmu, kernel_pmap, va);
2228 			if (pte == NULL || !PTE_ISVALID(pte))
2229 				break;
2230 			va += PAGE_SIZE;
2231 		}
2232 		dump_map[2].pa_size = va - dump_map[2].pa_start;
2233 	}
2234 }
2235 
2236 /*
2237  * Map a set of physical memory pages into the kernel virtual address space.
2238  * Return a pointer to where it is mapped. This routine is intended to be used
2239  * for mapping device memory, NOT real memory.
2240  */
2241 static void *
2242 mmu_booke_mapdev(mmu_t mmu, vm_paddr_t pa, vm_size_t size)
2243 {
2244 
2245 	return (mmu_booke_mapdev_attr(mmu, pa, size, VM_MEMATTR_DEFAULT));
2246 }
2247 
2248 static int
2249 tlb1_find_pa(vm_paddr_t pa, tlb_entry_t *e)
2250 {
2251 	int i;
2252 
2253 	for (i = 0; i < TLB1_ENTRIES; i++) {
2254 		tlb1_read_entry(e, i);
2255 		if ((e->mas1 & MAS1_VALID) == 0)
2256 			return (i);
2257 	}
2258 	return (-1);
2259 }
2260 
2261 static void *
2262 mmu_booke_mapdev_attr(mmu_t mmu, vm_paddr_t pa, vm_size_t size, vm_memattr_t ma)
2263 {
2264 	tlb_entry_t e;
2265 	vm_paddr_t tmppa;
2266 #ifndef __powerpc64__
2267 	uintptr_t tmpva;
2268 #endif
2269 	uintptr_t va;
2270 	vm_size_t sz;
2271 	int i;
2272 	int wimge;
2273 
2274 	/*
2275 	 * Check if this is premapped in TLB1.
2276 	 */
2277 	sz = size;
2278 	tmppa = pa;
2279 	va = ~0;
2280 	wimge = tlb_calc_wimg(pa, ma);
2281 	for (i = 0; i < TLB1_ENTRIES; i++) {
2282 		tlb1_read_entry(&e, i);
2283 		if (!(e.mas1 & MAS1_VALID))
2284 			continue;
2285 		if (wimge != (e.mas2 & (MAS2_WIMGE_MASK & ~_TLB_ENTRY_SHARED)))
2286 			continue;
2287 		if (tmppa >= e.phys && tmppa < e.phys + e.size) {
2288 			va = e.virt + (pa - e.phys);
2289 			tmppa = e.phys + e.size;
2290 			sz -= MIN(sz, e.size);
2291 			while (sz > 0 && (i = tlb1_find_pa(tmppa, &e)) != -1) {
2292 				if (wimge != (e.mas2 & (MAS2_WIMGE_MASK & ~_TLB_ENTRY_SHARED)))
2293 					break;
2294 				sz -= MIN(sz, e.size);
2295 				tmppa = e.phys + e.size;
2296 			}
2297 			if (sz != 0)
2298 				break;
2299 			return ((void *)va);
2300 		}
2301 	}
2302 
2303 	size = roundup(size, PAGE_SIZE);
2304 
2305 #ifdef __powerpc64__
2306 	KASSERT(pa < VM_MAPDEV_PA_MAX,
2307 	    ("Unsupported physical address! %lx", pa));
2308 	va = VM_MAPDEV_BASE + pa;
2309 #else
2310 	/*
2311 	 * The device mapping area is between VM_MAXUSER_ADDRESS and
2312 	 * VM_MIN_KERNEL_ADDRESS.  This gives 1GB of device addressing.
2313 	 */
2314 #ifdef SPARSE_MAPDEV
2315 	/*
2316 	 * With a sparse mapdev, align to the largest starting region.  This
2317 	 * could feasibly be optimized for a 'best-fit' alignment, but that
2318 	 * calculation could be very costly.
2319 	 * Align to the smaller of:
2320 	 * - first set bit in overlap of (pa & size mask)
2321 	 * - largest size envelope
2322 	 *
2323 	 * It's possible the device mapping may start at a PA that's not larger
2324 	 * than the size mask, so we need to offset in to maximize the TLB entry
2325 	 * range and minimize the number of used TLB entries.
2326 	 */
2327 	do {
2328 	    tmpva = tlb1_map_base;
2329 	    sz = ffsl((~((1 << flsl(size-1)) - 1)) & pa);
2330 	    sz = sz ? min(roundup(sz + 3, 4), flsl(size) - 1) : flsl(size) - 1;
2331 	    va = roundup(tlb1_map_base, 1 << sz) | (((1 << sz) - 1) & pa);
2332 	} while (!atomic_cmpset_int(&tlb1_map_base, tmpva, va + size));
2333 	va = atomic_fetchadd_int(&tlb1_map_base, size);
2334 #endif
2335 #endif
2336 
2337 	if (tlb1_mapin_region(va, pa, size, tlb_calc_wimg(pa, ma)) != size)
2338 		return (NULL);
2339 
2340 	return ((void *)va);
2341 }
2342 
2343 /*
2344  * 'Unmap' a range mapped by mmu_booke_mapdev().
2345  */
2346 static void
2347 mmu_booke_unmapdev(mmu_t mmu, vm_offset_t va, vm_size_t size)
2348 {
2349 #ifdef SUPPORTS_SHRINKING_TLB1
2350 	vm_offset_t base, offset;
2351 
2352 	/*
2353 	 * Unmap only if this is inside kernel virtual space.
2354 	 */
2355 	if ((va >= VM_MIN_KERNEL_ADDRESS) && (va <= VM_MAX_KERNEL_ADDRESS)) {
2356 		base = trunc_page(va);
2357 		offset = va & PAGE_MASK;
2358 		size = roundup(offset + size, PAGE_SIZE);
2359 		kva_free(base, size);
2360 	}
2361 #endif
2362 }
2363 
2364 /*
2365  * mmu_booke_object_init_pt preloads the ptes for a given object into the
2366  * specified pmap. This eliminates the blast of soft faults on process startup
2367  * and immediately after an mmap.
2368  */
2369 static void
2370 mmu_booke_object_init_pt(mmu_t mmu, pmap_t pmap, vm_offset_t addr,
2371     vm_object_t object, vm_pindex_t pindex, vm_size_t size)
2372 {
2373 
2374 	VM_OBJECT_ASSERT_WLOCKED(object);
2375 	KASSERT(object->type == OBJT_DEVICE || object->type == OBJT_SG,
2376 	    ("mmu_booke_object_init_pt: non-device object"));
2377 }
2378 
2379 /*
2380  * Perform the pmap work for mincore.
2381  */
2382 static int
2383 mmu_booke_mincore(mmu_t mmu, pmap_t pmap, vm_offset_t addr,
2384     vm_paddr_t *pap)
2385 {
2386 
2387 	/* XXX: this should be implemented at some point */
2388 	return (0);
2389 }
2390 
2391 static int
2392 mmu_booke_change_attr(mmu_t mmu, vm_offset_t addr, vm_size_t sz,
2393     vm_memattr_t mode)
2394 {
2395 	vm_offset_t va;
2396 	pte_t *pte;
2397 	int i, j;
2398 	tlb_entry_t e;
2399 
2400 	addr = trunc_page(addr);
2401 
2402 	/* Only allow changes to mapped kernel addresses.  This includes:
2403 	 * - KVA
2404 	 * - DMAP (powerpc64)
2405 	 * - Device mappings
2406 	 */
2407 	if (addr <= VM_MAXUSER_ADDRESS ||
2408 #ifdef __powerpc64__
2409 	    (addr >= tlb1_map_base && addr < DMAP_BASE_ADDRESS) ||
2410 	    (addr > DMAP_MAX_ADDRESS && addr < VM_MIN_KERNEL_ADDRESS) ||
2411 #else
2412 	    (addr >= tlb1_map_base && addr < VM_MIN_KERNEL_ADDRESS) ||
2413 #endif
2414 	    (addr > VM_MAX_KERNEL_ADDRESS))
2415 		return (EINVAL);
2416 
2417 	/* Check TLB1 mappings */
2418 	for (i = 0; i < TLB1_ENTRIES; i++) {
2419 		tlb1_read_entry(&e, i);
2420 		if (!(e.mas1 & MAS1_VALID))
2421 			continue;
2422 		if (addr >= e.virt && addr < e.virt + e.size)
2423 			break;
2424 	}
2425 	if (i < TLB1_ENTRIES) {
2426 		/* Only allow full mappings to be modified for now. */
2427 		/* Validate the range. */
2428 		for (j = i, va = addr; va < addr + sz; va += e.size, j++) {
2429 			tlb1_read_entry(&e, j);
2430 			if (va != e.virt || (sz - (va - addr) < e.size))
2431 				return (EINVAL);
2432 		}
2433 		for (va = addr; va < addr + sz; va += e.size, i++) {
2434 			tlb1_read_entry(&e, i);
2435 			e.mas2 &= ~MAS2_WIMGE_MASK;
2436 			e.mas2 |= tlb_calc_wimg(e.phys, mode);
2437 
2438 			/*
2439 			 * Write it out to the TLB.  Should really re-sync with other
2440 			 * cores.
2441 			 */
2442 			tlb1_write_entry(&e, i);
2443 		}
2444 		return (0);
2445 	}
2446 
2447 	/* Not in TLB1, try through pmap */
2448 	/* First validate the range. */
2449 	for (va = addr; va < addr + sz; va += PAGE_SIZE) {
2450 		pte = pte_find(mmu, kernel_pmap, va);
2451 		if (pte == NULL || !PTE_ISVALID(pte))
2452 			return (EINVAL);
2453 	}
2454 
2455 	mtx_lock_spin(&tlbivax_mutex);
2456 	tlb_miss_lock();
2457 	for (va = addr; va < addr + sz; va += PAGE_SIZE) {
2458 		pte = pte_find(mmu, kernel_pmap, va);
2459 		*pte &= ~(PTE_MAS2_MASK << PTE_MAS2_SHIFT);
2460 		*pte |= tlb_calc_wimg(PTE_PA(pte), mode) << PTE_MAS2_SHIFT;
2461 		tlb0_flush_entry(va);
2462 	}
2463 	tlb_miss_unlock();
2464 	mtx_unlock_spin(&tlbivax_mutex);
2465 
2466 	return (0);
2467 }
2468 
2469 static void
2470 mmu_booke_page_array_startup(mmu_t mmu, long pages)
2471 {
2472 	vm_page_array_size = pages;
2473 }
2474 
2475 /**************************************************************************/
2476 /* TID handling */
2477 /**************************************************************************/
2478 
2479 /*
2480  * Allocate a TID. If necessary, steal one from someone else.
2481  * The new TID is flushed from the TLB before returning.
2482  */
2483 static tlbtid_t
2484 tid_alloc(pmap_t pmap)
2485 {
2486 	tlbtid_t tid;
2487 	int thiscpu;
2488 
2489 	KASSERT((pmap != kernel_pmap), ("tid_alloc: kernel pmap"));
2490 
2491 	CTR2(KTR_PMAP, "%s: s (pmap = %p)", __func__, pmap);
2492 
2493 	thiscpu = PCPU_GET(cpuid);
2494 
2495 	tid = PCPU_GET(booke.tid_next);
2496 	if (tid > TID_MAX)
2497 		tid = TID_MIN;
2498 	PCPU_SET(booke.tid_next, tid + 1);
2499 
2500 	/* If we are stealing TID then clear the relevant pmap's field */
2501 	if (tidbusy[thiscpu][tid] != NULL) {
2502 
2503 		CTR2(KTR_PMAP, "%s: warning: stealing tid %d", __func__, tid);
2504 
2505 		tidbusy[thiscpu][tid]->pm_tid[thiscpu] = TID_NONE;
2506 
2507 		/* Flush all entries from TLB0 matching this TID. */
2508 		tid_flush(tid);
2509 	}
2510 
2511 	tidbusy[thiscpu][tid] = pmap;
2512 	pmap->pm_tid[thiscpu] = tid;
2513 	__asm __volatile("msync; isync");
2514 
2515 	CTR3(KTR_PMAP, "%s: e (%02d next = %02d)", __func__, tid,
2516 	    PCPU_GET(booke.tid_next));
2517 
2518 	return (tid);
2519 }
2520 
2521 /**************************************************************************/
2522 /* TLB0 handling */
2523 /**************************************************************************/
2524 
2525 /* Convert TLB0 va and way number to tlb0[] table index. */
2526 static inline unsigned int
2527 tlb0_tableidx(vm_offset_t va, unsigned int way)
2528 {
2529 	unsigned int idx;
2530 
2531 	idx = (way * TLB0_ENTRIES_PER_WAY);
2532 	idx += (va & MAS2_TLB0_ENTRY_IDX_MASK) >> MAS2_TLB0_ENTRY_IDX_SHIFT;
2533 	return (idx);
2534 }
2535 
2536 /*
2537  * Invalidate TLB0 entry.
2538  */
2539 static inline void
2540 tlb0_flush_entry(vm_offset_t va)
2541 {
2542 
2543 	CTR2(KTR_PMAP, "%s: s va=0x%08x", __func__, va);
2544 
2545 	mtx_assert(&tlbivax_mutex, MA_OWNED);
2546 
2547 	__asm __volatile("tlbivax 0, %0" :: "r"(va & MAS2_EPN_MASK));
2548 	__asm __volatile("isync; msync");
2549 	__asm __volatile("tlbsync; msync");
2550 
2551 	CTR1(KTR_PMAP, "%s: e", __func__);
2552 }
2553 
2554 
2555 /**************************************************************************/
2556 /* TLB1 handling */
2557 /**************************************************************************/
2558 
2559 /*
2560  * TLB1 mapping notes:
2561  *
2562  * TLB1[0]	Kernel text and data.
2563  * TLB1[1-15]	Additional kernel text and data mappings (if required), PCI
2564  *		windows, other devices mappings.
2565  */
2566 
2567  /*
2568  * Read an entry from given TLB1 slot.
2569  */
2570 void
2571 tlb1_read_entry(tlb_entry_t *entry, unsigned int slot)
2572 {
2573 	register_t msr;
2574 	uint32_t mas0;
2575 
2576 	KASSERT((entry != NULL), ("%s(): Entry is NULL!", __func__));
2577 
2578 	msr = mfmsr();
2579 	__asm __volatile("wrteei 0");
2580 
2581 	mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(slot);
2582 	mtspr(SPR_MAS0, mas0);
2583 	__asm __volatile("isync; tlbre");
2584 
2585 	entry->mas1 = mfspr(SPR_MAS1);
2586 	entry->mas2 = mfspr(SPR_MAS2);
2587 	entry->mas3 = mfspr(SPR_MAS3);
2588 
2589 	switch ((mfpvr() >> 16) & 0xFFFF) {
2590 	case FSL_E500v2:
2591 	case FSL_E500mc:
2592 	case FSL_E5500:
2593 	case FSL_E6500:
2594 		entry->mas7 = mfspr(SPR_MAS7);
2595 		break;
2596 	default:
2597 		entry->mas7 = 0;
2598 		break;
2599 	}
2600 	__asm __volatile("wrtee %0" :: "r"(msr));
2601 
2602 	entry->virt = entry->mas2 & MAS2_EPN_MASK;
2603 	entry->phys = ((vm_paddr_t)(entry->mas7 & MAS7_RPN) << 32) |
2604 	    (entry->mas3 & MAS3_RPN);
2605 	entry->size =
2606 	    tsize2size((entry->mas1 & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT);
2607 }
2608 
2609 struct tlbwrite_args {
2610 	tlb_entry_t *e;
2611 	unsigned int idx;
2612 };
2613 
2614 static uint32_t
2615 tlb1_find_free(void)
2616 {
2617 	tlb_entry_t e;
2618 	int i;
2619 
2620 	for (i = 0; i < TLB1_ENTRIES; i++) {
2621 		tlb1_read_entry(&e, i);
2622 		if ((e.mas1 & MAS1_VALID) == 0)
2623 			return (i);
2624 	}
2625 	return (-1);
2626 }
2627 
2628 static void
2629 tlb1_write_entry_int(void *arg)
2630 {
2631 	struct tlbwrite_args *args = arg;
2632 	uint32_t idx, mas0;
2633 
2634 	idx = args->idx;
2635 	if (idx == -1) {
2636 		idx = tlb1_find_free();
2637 		if (idx == -1)
2638 			panic("No free TLB1 entries!\n");
2639 	}
2640 	/* Select entry */
2641 	mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(idx);
2642 
2643 	mtspr(SPR_MAS0, mas0);
2644 	mtspr(SPR_MAS1, args->e->mas1);
2645 	mtspr(SPR_MAS2, args->e->mas2);
2646 	mtspr(SPR_MAS3, args->e->mas3);
2647 	switch ((mfpvr() >> 16) & 0xFFFF) {
2648 	case FSL_E500mc:
2649 	case FSL_E5500:
2650 	case FSL_E6500:
2651 		mtspr(SPR_MAS8, 0);
2652 		/* FALLTHROUGH */
2653 	case FSL_E500v2:
2654 		mtspr(SPR_MAS7, args->e->mas7);
2655 		break;
2656 	default:
2657 		break;
2658 	}
2659 
2660 	__asm __volatile("isync; tlbwe; isync; msync");
2661 
2662 }
2663 
2664 static void
2665 tlb1_write_entry_sync(void *arg)
2666 {
2667 	/* Empty synchronization point for smp_rendezvous(). */
2668 }
2669 
2670 /*
2671  * Write given entry to TLB1 hardware.
2672  */
2673 static void
2674 tlb1_write_entry(tlb_entry_t *e, unsigned int idx)
2675 {
2676 	struct tlbwrite_args args;
2677 
2678 	args.e = e;
2679 	args.idx = idx;
2680 
2681 #ifdef SMP
2682 	if ((e->mas2 & _TLB_ENTRY_SHARED) && smp_started) {
2683 		mb();
2684 		smp_rendezvous(tlb1_write_entry_sync,
2685 		    tlb1_write_entry_int,
2686 		    tlb1_write_entry_sync, &args);
2687 	} else
2688 #endif
2689 	{
2690 		register_t msr;
2691 
2692 		msr = mfmsr();
2693 		__asm __volatile("wrteei 0");
2694 		tlb1_write_entry_int(&args);
2695 		__asm __volatile("wrtee %0" :: "r"(msr));
2696 	}
2697 }
2698 
2699 /*
2700  * Convert TLB TSIZE value to mapped region size.
2701  */
2702 static vm_size_t
2703 tsize2size(unsigned int tsize)
2704 {
2705 
2706 	/*
2707 	 * size = 4^tsize KB
2708 	 * size = 4^tsize * 2^10 = 2^(2 * tsize - 10)
2709 	 */
2710 
2711 	return ((1 << (2 * tsize)) * 1024);
2712 }
2713 
2714 /*
2715  * Convert region size (must be power of 4) to TLB TSIZE value.
2716  */
2717 static unsigned int
2718 size2tsize(vm_size_t size)
2719 {
2720 
2721 	return (ilog2(size) / 2 - 5);
2722 }
2723 
2724 /*
2725  * Register permanent kernel mapping in TLB1.
2726  *
2727  * Entries are created starting from index 0 (current free entry is
2728  * kept in tlb1_idx) and are not supposed to be invalidated.
2729  */
2730 int
2731 tlb1_set_entry(vm_offset_t va, vm_paddr_t pa, vm_size_t size,
2732     uint32_t flags)
2733 {
2734 	tlb_entry_t e;
2735 	uint32_t ts, tid;
2736 	int tsize, index;
2737 
2738 	/* First try to update an existing entry. */
2739 	for (index = 0; index < TLB1_ENTRIES; index++) {
2740 		tlb1_read_entry(&e, index);
2741 		/* Check if we're just updating the flags, and update them. */
2742 		if (e.phys == pa && e.virt == va && e.size == size) {
2743 			e.mas2 = (va & MAS2_EPN_MASK) | flags;
2744 			tlb1_write_entry(&e, index);
2745 			return (0);
2746 		}
2747 	}
2748 
2749 	/* Convert size to TSIZE */
2750 	tsize = size2tsize(size);
2751 
2752 	tid = (TID_KERNEL << MAS1_TID_SHIFT) & MAS1_TID_MASK;
2753 	/* XXX TS is hard coded to 0 for now as we only use single address space */
2754 	ts = (0 << MAS1_TS_SHIFT) & MAS1_TS_MASK;
2755 
2756 	e.phys = pa;
2757 	e.virt = va;
2758 	e.size = size;
2759 	e.mas1 = MAS1_VALID | MAS1_IPROT | ts | tid;
2760 	e.mas1 |= ((tsize << MAS1_TSIZE_SHIFT) & MAS1_TSIZE_MASK);
2761 	e.mas2 = (va & MAS2_EPN_MASK) | flags;
2762 
2763 	/* Set supervisor RWX permission bits */
2764 	e.mas3 = (pa & MAS3_RPN) | MAS3_SR | MAS3_SW | MAS3_SX;
2765 	e.mas7 = (pa >> 32) & MAS7_RPN;
2766 
2767 	tlb1_write_entry(&e, -1);
2768 
2769 	return (0);
2770 }
2771 
2772 /*
2773  * Map in contiguous RAM region into the TLB1.
2774  */
2775 static vm_size_t
2776 tlb1_mapin_region(vm_offset_t va, vm_paddr_t pa, vm_size_t size, int wimge)
2777 {
2778 	vm_offset_t base;
2779 	vm_size_t mapped, sz, ssize;
2780 
2781 	mapped = 0;
2782 	base = va;
2783 	ssize = size;
2784 
2785 	while (size > 0) {
2786 		sz = 1UL << (ilog2(size) & ~1);
2787 		/* Align size to PA */
2788 		if (pa % sz != 0) {
2789 			do {
2790 				sz >>= 2;
2791 			} while (pa % sz != 0);
2792 		}
2793 		/* Now align from there to VA */
2794 		if (va % sz != 0) {
2795 			do {
2796 				sz >>= 2;
2797 			} while (va % sz != 0);
2798 		}
2799 #ifdef __powerpc64__
2800 		/*
2801 		 * Clamp TLB1 entries to 4G.
2802 		 *
2803 		 * While the e6500 supports up to 1TB mappings, the e5500
2804 		 * only supports up to 4G mappings. (0b1011)
2805 		 *
2806 		 * If any e6500 machines capable of supporting a very
2807 		 * large amount of memory appear in the future, we can
2808 		 * revisit this.
2809 		 *
2810 		 * For now, though, since we have plenty of space in TLB1,
2811 		 * always avoid creating entries larger than 4GB.
2812 		 */
2813 		sz = MIN(sz, 1UL << 32);
2814 #endif
2815 		if (bootverbose)
2816 			printf("Wiring VA=%p to PA=%jx (size=%lx)\n",
2817 			    (void *)va, (uintmax_t)pa, (long)sz);
2818 		if (tlb1_set_entry(va, pa, sz,
2819 		    _TLB_ENTRY_SHARED | wimge) < 0)
2820 			return (mapped);
2821 		size -= sz;
2822 		pa += sz;
2823 		va += sz;
2824 	}
2825 
2826 	mapped = (va - base);
2827 	if (bootverbose)
2828 		printf("mapped size 0x%"PRIxPTR" (wasted space 0x%"PRIxPTR")\n",
2829 		    mapped, mapped - ssize);
2830 
2831 	return (mapped);
2832 }
2833 
2834 /*
2835  * TLB1 initialization routine, to be called after the very first
2836  * assembler level setup done in locore.S.
2837  */
2838 void
2839 tlb1_init()
2840 {
2841 	vm_offset_t mas2;
2842 	uint32_t mas0, mas1, mas3, mas7;
2843 	uint32_t tsz;
2844 
2845 	tlb1_get_tlbconf();
2846 
2847 	mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(0);
2848 	mtspr(SPR_MAS0, mas0);
2849 	__asm __volatile("isync; tlbre");
2850 
2851 	mas1 = mfspr(SPR_MAS1);
2852 	mas2 = mfspr(SPR_MAS2);
2853 	mas3 = mfspr(SPR_MAS3);
2854 	mas7 = mfspr(SPR_MAS7);
2855 
2856 	kernload =  ((vm_paddr_t)(mas7 & MAS7_RPN) << 32) |
2857 	    (mas3 & MAS3_RPN);
2858 
2859 	tsz = (mas1 & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT;
2860 	kernsize += (tsz > 0) ? tsize2size(tsz) : 0;
2861 	kernstart = trunc_page(mas2);
2862 
2863 	/* Setup TLB miss defaults */
2864 	set_mas4_defaults();
2865 }
2866 
2867 /*
2868  * pmap_early_io_unmap() should be used in short conjunction with
2869  * pmap_early_io_map(), as in the following snippet:
2870  *
2871  * x = pmap_early_io_map(...);
2872  * <do something with x>
2873  * pmap_early_io_unmap(x, size);
2874  *
2875  * And avoiding more allocations between.
2876  */
2877 void
2878 pmap_early_io_unmap(vm_offset_t va, vm_size_t size)
2879 {
2880 	int i;
2881 	tlb_entry_t e;
2882 	vm_size_t isize;
2883 
2884 	size = roundup(size, PAGE_SIZE);
2885 	isize = size;
2886 	for (i = 0; i < TLB1_ENTRIES && size > 0; i++) {
2887 		tlb1_read_entry(&e, i);
2888 		if (!(e.mas1 & MAS1_VALID))
2889 			continue;
2890 		if (va <= e.virt && (va + isize) >= (e.virt + e.size)) {
2891 			size -= e.size;
2892 			e.mas1 &= ~MAS1_VALID;
2893 			tlb1_write_entry(&e, i);
2894 		}
2895 	}
2896 	if (tlb1_map_base == va + isize)
2897 		tlb1_map_base -= isize;
2898 }
2899 
2900 vm_offset_t
2901 pmap_early_io_map(vm_paddr_t pa, vm_size_t size)
2902 {
2903 	vm_paddr_t pa_base;
2904 	vm_offset_t va, sz;
2905 	int i;
2906 	tlb_entry_t e;
2907 
2908 	KASSERT(!pmap_bootstrapped, ("Do not use after PMAP is up!"));
2909 
2910 	for (i = 0; i < TLB1_ENTRIES; i++) {
2911 		tlb1_read_entry(&e, i);
2912 		if (!(e.mas1 & MAS1_VALID))
2913 			continue;
2914 		if (pa >= e.phys && (pa + size) <=
2915 		    (e.phys + e.size))
2916 			return (e.virt + (pa - e.phys));
2917 	}
2918 
2919 	pa_base = rounddown(pa, PAGE_SIZE);
2920 	size = roundup(size + (pa - pa_base), PAGE_SIZE);
2921 	tlb1_map_base = roundup2(tlb1_map_base, 1 << (ilog2(size) & ~1));
2922 	va = tlb1_map_base + (pa - pa_base);
2923 
2924 	do {
2925 		sz = 1 << (ilog2(size) & ~1);
2926 		tlb1_set_entry(tlb1_map_base, pa_base, sz,
2927 		    _TLB_ENTRY_SHARED | _TLB_ENTRY_IO);
2928 		size -= sz;
2929 		pa_base += sz;
2930 		tlb1_map_base += sz;
2931 	} while (size > 0);
2932 
2933 	return (va);
2934 }
2935 
2936 void
2937 pmap_track_page(pmap_t pmap, vm_offset_t va)
2938 {
2939 	vm_paddr_t pa;
2940 	vm_page_t page;
2941 	struct pv_entry *pve;
2942 
2943 	va = trunc_page(va);
2944 	pa = pmap_kextract(va);
2945 	page = PHYS_TO_VM_PAGE(pa);
2946 
2947 	rw_wlock(&pvh_global_lock);
2948 	PMAP_LOCK(pmap);
2949 
2950 	TAILQ_FOREACH(pve, &page->md.pv_list, pv_link) {
2951 		if ((pmap == pve->pv_pmap) && (va == pve->pv_va)) {
2952 			goto out;
2953 		}
2954 	}
2955 	page->md.pv_tracked = true;
2956 	pv_insert(pmap, va, page);
2957 out:
2958 	PMAP_UNLOCK(pmap);
2959 	rw_wunlock(&pvh_global_lock);
2960 }
2961 
2962 
2963 /*
2964  * Setup MAS4 defaults.
2965  * These values are loaded to MAS0-2 on a TLB miss.
2966  */
2967 static void
2968 set_mas4_defaults(void)
2969 {
2970 	uint32_t mas4;
2971 
2972 	/* Defaults: TLB0, PID0, TSIZED=4K */
2973 	mas4 = MAS4_TLBSELD0;
2974 	mas4 |= (TLB_SIZE_4K << MAS4_TSIZED_SHIFT) & MAS4_TSIZED_MASK;
2975 #ifdef SMP
2976 	mas4 |= MAS4_MD;
2977 #endif
2978 	mtspr(SPR_MAS4, mas4);
2979 	__asm __volatile("isync");
2980 }
2981 
2982 
2983 /*
2984  * Return 0 if the physical IO range is encompassed by one of the
2985  * the TLB1 entries, otherwise return related error code.
2986  */
2987 static int
2988 tlb1_iomapped(int i, vm_paddr_t pa, vm_size_t size, vm_offset_t *va)
2989 {
2990 	uint32_t prot;
2991 	vm_paddr_t pa_start;
2992 	vm_paddr_t pa_end;
2993 	unsigned int entry_tsize;
2994 	vm_size_t entry_size;
2995 	tlb_entry_t e;
2996 
2997 	*va = (vm_offset_t)NULL;
2998 
2999 	tlb1_read_entry(&e, i);
3000 	/* Skip invalid entries */
3001 	if (!(e.mas1 & MAS1_VALID))
3002 		return (EINVAL);
3003 
3004 	/*
3005 	 * The entry must be cache-inhibited, guarded, and r/w
3006 	 * so it can function as an i/o page
3007 	 */
3008 	prot = e.mas2 & (MAS2_I | MAS2_G);
3009 	if (prot != (MAS2_I | MAS2_G))
3010 		return (EPERM);
3011 
3012 	prot = e.mas3 & (MAS3_SR | MAS3_SW);
3013 	if (prot != (MAS3_SR | MAS3_SW))
3014 		return (EPERM);
3015 
3016 	/* The address should be within the entry range. */
3017 	entry_tsize = (e.mas1 & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT;
3018 	KASSERT((entry_tsize), ("tlb1_iomapped: invalid entry tsize"));
3019 
3020 	entry_size = tsize2size(entry_tsize);
3021 	pa_start = (((vm_paddr_t)e.mas7 & MAS7_RPN) << 32) |
3022 	    (e.mas3 & MAS3_RPN);
3023 	pa_end = pa_start + entry_size;
3024 
3025 	if ((pa < pa_start) || ((pa + size) > pa_end))
3026 		return (ERANGE);
3027 
3028 	/* Return virtual address of this mapping. */
3029 	*va = (e.mas2 & MAS2_EPN_MASK) + (pa - pa_start);
3030 	return (0);
3031 }
3032 
3033 #ifdef DDB
3034 /* Print out contents of the MAS registers for each TLB0 entry */
3035 static void
3036 #ifdef __powerpc64__
3037 tlb_print_entry(int i, uint32_t mas1, uint64_t mas2, uint32_t mas3,
3038 #else
3039 tlb_print_entry(int i, uint32_t mas1, uint32_t mas2, uint32_t mas3,
3040 #endif
3041     uint32_t mas7)
3042 {
3043 	int as;
3044 	char desc[3];
3045 	tlbtid_t tid;
3046 	vm_size_t size;
3047 	unsigned int tsize;
3048 
3049 	desc[2] = '\0';
3050 	if (mas1 & MAS1_VALID)
3051 		desc[0] = 'V';
3052 	else
3053 		desc[0] = ' ';
3054 
3055 	if (mas1 & MAS1_IPROT)
3056 		desc[1] = 'P';
3057 	else
3058 		desc[1] = ' ';
3059 
3060 	as = (mas1 & MAS1_TS_MASK) ? 1 : 0;
3061 	tid = MAS1_GETTID(mas1);
3062 
3063 	tsize = (mas1 & MAS1_TSIZE_MASK) >> MAS1_TSIZE_SHIFT;
3064 	size = 0;
3065 	if (tsize)
3066 		size = tsize2size(tsize);
3067 
3068 	printf("%3d: (%s) [AS=%d] "
3069 	    "sz = 0x%jx tsz = %d tid = %d mas1 = 0x%08x "
3070 	    "mas2(va) = 0x%"PRI0ptrX" mas3(pa) = 0x%08x mas7 = 0x%08x\n",
3071 	    i, desc, as, (uintmax_t)size, tsize, tid, mas1, mas2, mas3, mas7);
3072 }
3073 
3074 DB_SHOW_COMMAND(tlb0, tlb0_print_tlbentries)
3075 {
3076 	uint32_t mas0, mas1, mas3, mas7;
3077 #ifdef __powerpc64__
3078 	uint64_t mas2;
3079 #else
3080 	uint32_t mas2;
3081 #endif
3082 	int entryidx, way, idx;
3083 
3084 	printf("TLB0 entries:\n");
3085 	for (way = 0; way < TLB0_WAYS; way ++)
3086 		for (entryidx = 0; entryidx < TLB0_ENTRIES_PER_WAY; entryidx++) {
3087 
3088 			mas0 = MAS0_TLBSEL(0) | MAS0_ESEL(way);
3089 			mtspr(SPR_MAS0, mas0);
3090 
3091 			mas2 = entryidx << MAS2_TLB0_ENTRY_IDX_SHIFT;
3092 			mtspr(SPR_MAS2, mas2);
3093 
3094 			__asm __volatile("isync; tlbre");
3095 
3096 			mas1 = mfspr(SPR_MAS1);
3097 			mas2 = mfspr(SPR_MAS2);
3098 			mas3 = mfspr(SPR_MAS3);
3099 			mas7 = mfspr(SPR_MAS7);
3100 
3101 			idx = tlb0_tableidx(mas2, way);
3102 			tlb_print_entry(idx, mas1, mas2, mas3, mas7);
3103 		}
3104 }
3105 
3106 /*
3107  * Print out contents of the MAS registers for each TLB1 entry
3108  */
3109 DB_SHOW_COMMAND(tlb1, tlb1_print_tlbentries)
3110 {
3111 	uint32_t mas0, mas1, mas3, mas7;
3112 #ifdef __powerpc64__
3113 	uint64_t mas2;
3114 #else
3115 	uint32_t mas2;
3116 #endif
3117 	int i;
3118 
3119 	printf("TLB1 entries:\n");
3120 	for (i = 0; i < TLB1_ENTRIES; i++) {
3121 
3122 		mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(i);
3123 		mtspr(SPR_MAS0, mas0);
3124 
3125 		__asm __volatile("isync; tlbre");
3126 
3127 		mas1 = mfspr(SPR_MAS1);
3128 		mas2 = mfspr(SPR_MAS2);
3129 		mas3 = mfspr(SPR_MAS3);
3130 		mas7 = mfspr(SPR_MAS7);
3131 
3132 		tlb_print_entry(i, mas1, mas2, mas3, mas7);
3133 	}
3134 }
3135 #endif
3136