Home | History | Annotate | Line # | Download | only in include
pmap3x.h revision 1.16.4.2
      1  1.16.4.2  nathanw /*	$NetBSD: pmap3x.h,v 1.16.4.2 2002/10/18 02:40:22 nathanw Exp $	*/
      2  1.16.4.2  nathanw 
      3  1.16.4.2  nathanw /*-
      4  1.16.4.2  nathanw  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5  1.16.4.2  nathanw  * All rights reserved.
      6  1.16.4.2  nathanw  *
      7  1.16.4.2  nathanw  * This code is derived from software contributed to The NetBSD Foundation
      8  1.16.4.2  nathanw  * by Jeremy Cooper.
      9  1.16.4.2  nathanw  *
     10  1.16.4.2  nathanw  * Redistribution and use in source and binary forms, with or without
     11  1.16.4.2  nathanw  * modification, are permitted provided that the following conditions
     12  1.16.4.2  nathanw  * are met:
     13  1.16.4.2  nathanw  * 1. Redistributions of source code must retain the above copyright
     14  1.16.4.2  nathanw  *    notice, this list of conditions and the following disclaimer.
     15  1.16.4.2  nathanw  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.16.4.2  nathanw  *    notice, this list of conditions and the following disclaimer in the
     17  1.16.4.2  nathanw  *    documentation and/or other materials provided with the distribution.
     18  1.16.4.2  nathanw  * 3. All advertising materials mentioning features or use of this software
     19  1.16.4.2  nathanw  *    must display the following acknowledgement:
     20  1.16.4.2  nathanw  *        This product includes software developed by the NetBSD
     21  1.16.4.2  nathanw  *        Foundation, Inc. and its contributors.
     22  1.16.4.2  nathanw  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.16.4.2  nathanw  *    contributors may be used to endorse or promote products derived
     24  1.16.4.2  nathanw  *    from this software without specific prior written permission.
     25  1.16.4.2  nathanw  *
     26  1.16.4.2  nathanw  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.16.4.2  nathanw  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.16.4.2  nathanw  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.16.4.2  nathanw  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.16.4.2  nathanw  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.16.4.2  nathanw  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.16.4.2  nathanw  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.16.4.2  nathanw  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.16.4.2  nathanw  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.16.4.2  nathanw  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.16.4.2  nathanw  * POSSIBILITY OF SUCH DAMAGE.
     37  1.16.4.2  nathanw  */
     38  1.16.4.2  nathanw 
     39  1.16.4.2  nathanw /*
     40  1.16.4.2  nathanw  * Physical map structures exported to the VM code.
     41  1.16.4.2  nathanw  * XXX - Does user-level code really see this struct?
     42  1.16.4.2  nathanw  */
     43  1.16.4.2  nathanw 
     44  1.16.4.2  nathanw struct pmap {
     45  1.16.4.2  nathanw 	struct a_tmgr_struct	*pm_a_tmgr; 	/* Level-A table manager */
     46  1.16.4.2  nathanw 	u_long              	pm_a_phys;  	/* MMU level-A phys addr */
     47  1.16.4.2  nathanw 	struct simplelock	pm_lock;    	/* lock on pmap */
     48  1.16.4.2  nathanw 	int             	pm_refcount;	/* reference count */
     49  1.16.4.2  nathanw 	int             	pm_version;
     50  1.16.4.2  nathanw };
     51  1.16.4.2  nathanw 
     52  1.16.4.2  nathanw #ifdef _KERNEL
     53  1.16.4.2  nathanw extern	struct pmap 	kernel_pmap;
     54  1.16.4.2  nathanw #define	pmap_kernel()	(&kernel_pmap)
     55  1.16.4.2  nathanw 
     56  1.16.4.2  nathanw /* Common function for pmap_resident_count(), pmap_wired_count() */
     57  1.16.4.2  nathanw segsz_t pmap_count __P((pmap_t, int));
     58  1.16.4.2  nathanw 
     59  1.16.4.2  nathanw /* This needs to be a macro for kern_sysctl.c */
     60  1.16.4.2  nathanw #define	pmap_resident_count(pmap)	(pmap_count((pmap), 0))
     61  1.16.4.2  nathanw 
     62  1.16.4.2  nathanw /* This needs to be a macro for vm_mmap.c */
     63  1.16.4.2  nathanw #define	pmap_wired_count(pmap)  	(pmap_count((pmap), 1))
     64  1.16.4.2  nathanw 
     65  1.16.4.2  nathanw /* We use the PA plus some low bits for device mmap. */
     66  1.16.4.2  nathanw #define pmap_phys_address(addr) 	(addr)
     67  1.16.4.2  nathanw 
     68  1.16.4.2  nathanw #define	pmap_update(pmap)		/* nothing (yet) */
     69  1.16.4.2  nathanw 
     70  1.16.4.2  nathanw /* Map a given physical region to a virtual region */
     71  1.16.4.2  nathanw vaddr_t pmap_map __P((vaddr_t, paddr_t, paddr_t, int));
     72  1.16.4.2  nathanw 
     73  1.16.4.2  nathanw static __inline void
     74  1.16.4.2  nathanw pmap_remove_all(struct pmap *pmap)
     75  1.16.4.2  nathanw {
     76  1.16.4.2  nathanw 	/* Nothing. */
     77  1.16.4.2  nathanw }
     78  1.16.4.2  nathanw 
     79  1.16.4.2  nathanw /*
     80  1.16.4.2  nathanw  * Flags to tell pmap_enter `this is not to be cached', etc.
     81  1.16.4.2  nathanw  * Since physical addresses are always aligned, we can use
     82  1.16.4.2  nathanw  * the low order bits for this.
     83  1.16.4.2  nathanw  */
     84  1.16.4.2  nathanw #define	PMAP_VME16	0x10	/* pmap will add the necessary offset */
     85  1.16.4.2  nathanw #define	PMAP_VME32	0x20	/* etc. */
     86  1.16.4.2  nathanw #define	PMAP_NC		0x40	/* tells pmap_enter to set PTE_CI */
     87  1.16.4.2  nathanw #define	PMAP_SPEC	0xFF	/* mask to get all above. */
     88  1.16.4.2  nathanw 
     89  1.16.4.2  nathanw #endif	/* _KERNEL */
     90