Home | History | Annotate | Line # | Download | only in booke
booke_pmap.c revision 1.11
      1 /*	$NetBSD: booke_pmap.c,v 1.11 2012/01/27 19:48:39 para Exp $	*/
      2 /*-
      3  * Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
      4  * All rights reserved.
      5  *
      6  * This code is derived from software contributed to The NetBSD Foundation
      7  * by Raytheon BBN Technologies Corp and Defense Advanced Research Projects
      8  * Agency and which was developed by Matt Thomas of 3am Software Foundry.
      9  *
     10  * This material is based upon work supported by the Defense Advanced Research
     11  * Projects Agency and Space and Naval Warfare Systems Center, Pacific, under
     12  * Contract No. N66001-09-C-2073.
     13  * Approved for Public Release, Distribution Unlimited
     14  *
     15  * Redistribution and use in source and binary forms, with or without
     16  * modification, are permitted provided that the following conditions
     17  * are met:
     18  * 1. Redistributions of source code must retain the above copyright
     19  *    notice, this list of conditions and the following disclaimer.
     20  * 2. Redistributions in binary form must reproduce the above copyright
     21  *    notice, this list of conditions and the following disclaimer in the
     22  *    documentation and/or other materials provided with the distribution.
     23  *
     24  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     25  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     26  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     27  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     28  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     29  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     30  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     31  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     32  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     33  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     34  * POSSIBILITY OF SUCH DAMAGE.
     35  */
     36 
     37 #define __PMAP_PRIVATE
     38 
     39 #include <sys/cdefs.h>
     40 
     41 __KERNEL_RCSID(0, "$NetBSD: booke_pmap.c,v 1.11 2012/01/27 19:48:39 para Exp $");
     42 
     43 #include <sys/param.h>
     44 #include <sys/kcore.h>
     45 #include <sys/buf.h>
     46 
     47 #include <uvm/uvm.h>
     48 
     49 #include <machine/pmap.h>
     50 
     51 /*
     52  * Initialize the kernel pmap.
     53  */
     54 #ifdef MULTIPROCESSOR
     55 #define	PMAP_SIZE	offsetof(struct pmap, pm_pai[MAXCPUS])
     56 #else
     57 #define	PMAP_SIZE	sizeof(struct pmap)
     58 #endif
     59 
     60 CTASSERT(sizeof(struct pmap_segtab) == NBPG);
     61 
     62 void
     63 pmap_procwr(struct proc *p, vaddr_t va, size_t len)
     64 {
     65 	struct pmap * const pmap = p->p_vmspace->vm_map.pmap;
     66 	vsize_t off = va & PAGE_SIZE;
     67 
     68 	kpreempt_disable();
     69 	for (const vaddr_t eva = va + len; va < eva; off = 0) {
     70 		const vaddr_t segeva = min(va + len, va - off + PAGE_SIZE);
     71 		pt_entry_t * const ptep = pmap_pte_lookup(pmap, va);
     72 		if (ptep == NULL) {
     73 			va = segeva;
     74 			continue;
     75 		}
     76 		pt_entry_t pt_entry = *ptep;
     77 		if (!pte_valid_p(pt_entry) || !pte_exec_p(pt_entry)) {
     78 			va = segeva;
     79 			continue;
     80 		}
     81 		kpreempt_enable();
     82 		dcache_wb(pte_to_paddr(pt_entry), segeva - va);
     83 		icache_inv(pte_to_paddr(pt_entry), segeva - va);
     84 		kpreempt_disable();
     85 		va = segeva;
     86 	}
     87 	kpreempt_enable();
     88 }
     89 
     90 void
     91 pmap_md_page_syncicache(struct vm_page *pg, __cpuset_t onproc)
     92 {
     93 	/*
     94 	 * If onproc is empty, we could do a
     95 	 * pmap_page_protect(pg, VM_PROT_NONE) and remove all
     96 	 * mappings of the page and clear its execness.  Then
     97 	 * the next time page is faulted, it will get icache
     98 	 * synched.  But this is easier. :)
     99 	 */
    100 	paddr_t pa = VM_PAGE_TO_PHYS(pg);
    101 	dcache_wb_page(pa);
    102 	icache_inv_page(pa);
    103 }
    104 
    105 vaddr_t
    106 pmap_md_direct_map_paddr(paddr_t pa)
    107 {
    108 	return (vaddr_t) pa;
    109 }
    110 
    111 bool
    112 pmap_md_direct_mapped_vaddr_p(vaddr_t va)
    113 {
    114 	return va < VM_MIN_KERNEL_ADDRESS || VM_MAX_KERNEL_ADDRESS <= va;
    115 }
    116 
    117 paddr_t
    118 pmap_md_direct_mapped_vaddr_to_paddr(vaddr_t va)
    119 {
    120 	return (paddr_t) va;
    121 }
    122 
    123 /*
    124  *	Bootstrap the system enough to run with virtual memory.
    125  *	firstaddr is the first unused kseg0 address (not page aligned).
    126  */
    127 void
    128 pmap_bootstrap(vaddr_t startkernel, vaddr_t endkernel,
    129 	const phys_ram_seg_t *avail, size_t cnt)
    130 {
    131 	for (size_t i = 0; i < cnt; i++) {
    132 		printf(" uvm_page_physload(%#lx,%#lx,%#lx,%#lx,%d)",
    133 		    atop(avail[i].start),
    134 		    atop(avail[i].start + avail[i].size) - 1,
    135 		    atop(avail[i].start),
    136 		    atop(avail[i].start + avail[i].size) - 1,
    137 		    VM_FREELIST_DEFAULT);
    138 		uvm_page_physload(
    139 		    atop(avail[i].start),
    140 		    atop(avail[i].start + avail[i].size) - 1,
    141 		    atop(avail[i].start),
    142 		    atop(avail[i].start + avail[i].size) - 1,
    143 		    VM_FREELIST_DEFAULT);
    144 	}
    145 
    146 	pmap_tlb_info_init(&pmap_tlb0_info);		/* init the lock */
    147 
    148 	/*
    149 	 * Figure out how many PTE's are necessary to map the kernel.
    150 	 * We also reserve space for kmem_alloc_pageable() for vm_fork().
    151 	 */
    152 
    153 	/* Get size of buffer cache and set an upper limit */
    154 	buf_setvalimit((VM_MAX_KERNEL_ADDRESS - VM_MIN_KERNEL_ADDRESS) / 8);
    155 	vsize_t bufsz = buf_memcalc();
    156 	buf_setvalimit(bufsz);
    157 
    158 	vsize_t nsegtabs = pmap_round_seg(VM_PHYS_SIZE
    159 	    + (ubc_nwins << ubc_winshift)
    160 	    + bufsz
    161 	    + 16 * NCARGS
    162 	    + pager_map_size
    163 	    + maxproc * USPACE
    164 #ifdef SYSVSHM
    165 	    + NBPG * shminfo.shmall
    166 #endif
    167 	    + NBPG * 32 * 1024);
    168 
    169 	/*
    170 	 * Initialize `FYI' variables.	Note we're relying on
    171 	 * the fact that BSEARCH sorts the vm_physmem[] array
    172 	 * for us.  Must do this before uvm_pageboot_alloc()
    173 	 * can be called.
    174 	 */
    175 	pmap_limits.avail_start = vm_physmem[0].start << PGSHIFT;
    176 	pmap_limits.avail_end = vm_physmem[vm_nphysseg - 1].end << PGSHIFT;
    177 	const vsize_t max_nsegtabs =
    178 	    (pmap_round_seg(VM_MAX_KERNEL_ADDRESS)
    179 		- pmap_trunc_seg(VM_MIN_KERNEL_ADDRESS)) / NBSEG;
    180 	if (nsegtabs >= max_nsegtabs) {
    181 		pmap_limits.virtual_end = VM_MAX_KERNEL_ADDRESS;
    182 		nsegtabs = max_nsegtabs;
    183 	} else {
    184 		pmap_limits.virtual_end = VM_MIN_KERNEL_ADDRESS
    185 		    + nsegtabs * NBSEG;
    186 	}
    187 
    188 	pmap_pvlist_lock_init(curcpu()->ci_ci.dcache_line_size);
    189 
    190 	/*
    191 	 * Now actually allocate the kernel PTE array (must be done
    192 	 * after virtual_end is initialized).
    193 	 */
    194 	vaddr_t segtabs =
    195 	    uvm_pageboot_alloc(NBPG * nsegtabs + sizeof(struct pmap_segtab));
    196 
    197 	/*
    198 	 * Initialize the kernel's two-level page level.  This only wastes
    199 	 * an extra page for the segment table and allows the user/kernel
    200 	 * access to be common.
    201 	 */
    202 	struct pmap_segtab * const stp = (void *)segtabs;
    203 	segtabs += round_page(sizeof(struct pmap_segtab));
    204 	pt_entry_t **ptp = &stp->seg_tab[VM_MIN_KERNEL_ADDRESS >> SEGSHIFT];
    205 	for (u_int i = 0; i < nsegtabs; i++, segtabs += NBPG) {
    206 		*ptp++ = (void *)segtabs;
    207 	}
    208 	pmap_kernel()->pm_segtab = stp;
    209 	curcpu()->ci_pmap_kern_segtab = stp;
    210 	printf(" kern_segtab=%p", stp);
    211 
    212 #if 0
    213 	nsegtabs = (physmem + NPTEPG - 1) / NPTEPG;
    214 	segtabs = uvm_pageboot_alloc(NBPG * nsegtabs);
    215 	ptp = stp->seg_tab;
    216 	pt_entry_t pt_entry = PTE_M|PTE_xX|PTE_xR;
    217 	pt_entry_t *ptep = (void *)segtabs;
    218 	printf("%s: allocated %lu page table pages for mapping %u pages\n",
    219 	    __func__, nsegtabs, physmem);
    220 	for (u_int i = 0; i < nsegtabs; i++, segtabs += NBPG, ptp++) {
    221 		*ptp = ptep;
    222 		for (u_int j = 0; j < NPTEPG; j++, ptep++) {
    223 			*ptep = pt_entry;
    224 			pt_entry += NBPG;
    225 		}
    226 		printf(" [%u]=%p (%#x)", i, *ptp, **ptp);
    227 		pt_entry |= PTE_xW;
    228 		pt_entry &= ~PTE_xX;
    229 	}
    230 
    231 	/*
    232 	 * Now make everything before the kernel inaccessible.
    233 	 */
    234 	for (u_int i = 0; i < startkernel / NBPG; i += NBPG) {
    235 		stp->seg_tab[i >> SEGSHIFT][(i & SEGOFSET) >> PAGE_SHIFT] = 0;
    236 	}
    237 #endif
    238 
    239 	/*
    240 	 * Initialize the pools.
    241 	 */
    242 	pool_init(&pmap_pmap_pool, PMAP_SIZE, 0, 0, 0, "pmappl",
    243 	    &pool_allocator_nointr, IPL_NONE);
    244 	pool_init(&pmap_pv_pool, sizeof(struct pv_entry), 0, 0, 0, "pvpl",
    245 	    &pmap_pv_page_allocator, IPL_NONE);
    246 
    247 	tlb_set_asid(0);
    248 }
    249 
    250 struct vm_page *
    251 pmap_md_alloc_poolpage(int flags)
    252 {
    253 	/*
    254 	 * Any managed page works for us.
    255 	 */
    256 	return uvm_pagealloc(NULL, 0, NULL, flags);
    257 }
    258 
    259 void
    260 pmap_zero_page(paddr_t pa)
    261 {
    262 	dcache_zero_page(pa);
    263 
    264 	KASSERT(!VM_PAGEMD_EXECPAGE_P(VM_PAGE_TO_MD(PHYS_TO_VM_PAGE(pa))));
    265 }
    266 
    267 void
    268 pmap_copy_page(paddr_t src, paddr_t dst)
    269 {
    270 	const size_t line_size = curcpu()->ci_ci.dcache_line_size;
    271 	const paddr_t end = src + PAGE_SIZE;
    272 
    273 	while (src < end) {
    274 		__asm(
    275 			"dcbt	%2,%1"	"\n\t"	/* touch next src cachline */
    276 			"dcba	0,%1"	"\n\t" 	/* don't fetch dst cacheline */
    277 		    :: "b"(src), "b"(dst), "b"(line_size));
    278 		for (u_int i = 0;
    279 		     i < line_size;
    280 		     src += 32, dst += 32, i += 32) {
    281 			__asm(
    282 				"lmw	24,0(%0)" "\n\t"
    283 				"stmw	24,0(%1)"
    284 			    :: "b"(src), "b"(dst)
    285 			    : "r24", "r25", "r26", "r27",
    286 			      "r28", "r29", "r30", "r31");
    287 		}
    288 	}
    289 
    290 	KASSERT(!VM_PAGEMD_EXECPAGE_P(VM_PAGE_TO_MD(PHYS_TO_VM_PAGE(dst - PAGE_SIZE))));
    291 }
    292 
    293 void
    294 pmap_md_init(void)
    295 {
    296 
    297 	/* nothing for now */
    298 }
    299 
    300 bool
    301 pmap_md_io_vaddr_p(vaddr_t va)
    302 {
    303 	return va >= pmap_limits.avail_end
    304 	    && !(VM_MIN_KERNEL_ADDRESS <= va && va < VM_MAX_KERNEL_ADDRESS);
    305 }
    306 
    307 bool
    308 pmap_md_tlb_check_entry(void *ctx, vaddr_t va, tlb_asid_t asid, pt_entry_t pte)
    309 {
    310 	pmap_t pm = ctx;
    311         struct pmap_asid_info * const pai = PMAP_PAI(pm, curcpu()->ci_tlb_info);
    312 
    313 	if (asid != pai->pai_asid)
    314 		return true;
    315 
    316 	const pt_entry_t * const ptep = pmap_pte_lookup(pm, va);
    317 	KASSERT(ptep != NULL);
    318 	pt_entry_t xpte = *ptep;
    319 	xpte &= ~((xpte & (PTE_UNSYNCED|PTE_UNMODIFIED)) << 1);
    320 	xpte ^= xpte & (PTE_UNSYNCED|PTE_UNMODIFIED|PTE_WIRED);
    321 
    322 	KASSERTMSG(pte == xpte,
    323 	    "pm=%p va=%#"PRIxVADDR" asid=%u: TLB pte (%#x) != real pte (%#x/%#x)",
    324 	    pm, va, asid, pte, xpte, *ptep);
    325 
    326 	return true;
    327 }
    328 
    329 #ifdef MULTIPROCESSOR
    330 void
    331 pmap_md_tlb_info_attach(struct pmap_tlb_info *ti, struct cpu_info *ci)
    332 {
    333 	/* nothing */
    334 }
    335 #endif /* MULTIPROCESSOR */
    336