Home | History | Annotate | Line # | Download | only in include
pte.h revision 1.18
      1 /* $NetBSD: pte.h,v 1.18 1998/03/12 07:29:21 thorpej Exp $ */
      2 
      3 /*-
      4  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  * NASA Ames Research Center.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. All advertising materials mentioning features or use of this software
     20  *    must display the following acknowledgement:
     21  *	This product includes software developed by the NetBSD
     22  *	Foundation, Inc. and its contributors.
     23  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  *    contributors may be used to endorse or promote products derived
     25  *    from this software without specific prior written permission.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  * POSSIBILITY OF SUCH DAMAGE.
     38  */
     39 
     40 /*
     41  * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
     42  * All rights reserved.
     43  *
     44  * Author: Chris G. Demetriou
     45  *
     46  * Permission to use, copy, modify and distribute this software and
     47  * its documentation is hereby granted, provided that both the copyright
     48  * notice and this permission notice appear in all copies of the
     49  * software, derivative works or modified versions, and any portions
     50  * thereof, and that both notices appear in supporting documentation.
     51  *
     52  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     53  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     54  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     55  *
     56  * Carnegie Mellon requests users of this software to return to
     57  *
     58  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     59  *  School of Computer Science
     60  *  Carnegie Mellon University
     61  *  Pittsburgh PA 15213-3890
     62  *
     63  * any improvements or extensions that they make and grant Carnegie the
     64  * rights to redistribute these changes.
     65  */
     66 
     67 #ifndef _ALPHA_PTE_H_
     68 #define	_ALPHA_PTE_H_
     69 
     70 /*
     71  * Alpha page table entry.
     72  * Things which are in the VMS PALcode but not in the OSF PALcode
     73  * are marked with "(VMS)".
     74  *
     75  * This information derived from pp. (II) 3-3 - (II) 3-6 and
     76  * (III) 3-3 - (III) 3-5 of the "Alpha Architecture Reference Manual" by
     77  * Richard L. Sites.
     78  */
     79 
     80 /*
     81  * Alpha Page Table Entry
     82  */
     83 
     84 #include <machine/alpha_cpu.h>
     85 
     86 typedef	alpha_pt_entry_t	pt_entry_t;
     87 
     88 #define	PT_ENTRY_NULL	((pt_entry_t *) 0)
     89 #define	PTESHIFT	3			/* pte size == 1 << PTESHIFT */
     90 
     91 #define	PG_V		ALPHA_PTE_VALID
     92 #define	PG_NV		0
     93 #define	PG_FOR		ALPHA_PTE_FAULT_ON_READ
     94 #define	PG_FOW		ALPHA_PTE_FAULT_ON_WRITE
     95 #define	PG_FOE		ALPHA_PTE_FAULT_ON_EXECUTE
     96 #define	PG_ASM		ALPHA_PTE_ASM
     97 #define	PG_GH		ALPHA_PTE_GRANULARITY
     98 #define	PG_KRE		ALPHA_PTE_KR
     99 #define	PG_URE		ALPHA_PTE_UR
    100 #define	PG_KWE		ALPHA_PTE_KW
    101 #define	PG_UWE		ALPHA_PTE_UW
    102 #define	PG_PROT		ALPHA_PTE_PROT
    103 #define	PG_RSVD		0x000000000000cc80	/* Reserved fpr hardware */
    104 #define	PG_WIRED	0x0000000000010000	/* Wired. [SOFTWARE] */
    105 #define	PG_FRAME	ALPHA_PTE_RAME
    106 #define	PG_SHIFT	32
    107 #define	PG_PFNUM(x)	ALPHA_PTE_TO_PFN(x)
    108 
    109 #define	NPTEPG_SHIFT	(PAGE_SHIFT - PTESHIFT)
    110 #define	NPTEPG		(1 << NPTEPG_SHIFT)
    111 
    112 #define	PTEMASK		(NPTEPG - 1)
    113 
    114 #define	l3pte_index(va)	\
    115 	(((vm_offset_t)(va) >> PAGE_SHIFT) & PTEMASK)
    116 
    117 #define	l2pte_index(va)	\
    118 	(((vm_offset_t)(va) >> (PAGE_SHIFT + NPTEPG_SHIFT)) & PTEMASK)
    119 
    120 #define	l1pte_index(va) \
    121 	(((vm_offset_t)(va) >> (PAGE_SHIFT + 2 * NPTEPG_SHIFT)) & PTEMASK)
    122 
    123 #define	VPT_INDEX(va)	\
    124 	(((vm_offset_t)(va) >> PAGE_SHIFT) & ((1 << 3 * NPTEPG_SHIFT) - 1))
    125 
    126 /* Space mapped by one level 1 PTE */
    127 #define	ALPHA_L1SEG_SIZE	(1L << ((2 * NPTEPG_SHIFT) + PAGE_SHIFT))
    128 
    129 /* Space mapped by one level 2 PTE */
    130 #define	ALPHA_L2SEG_SIZE	(1L << (NPTEPG_SHIFT + PAGE_SHIFT))
    131 
    132 #define	alpha_trunc_l1seg(x)	(((u_long)(x)) & ~(ALPHA_L1SEG_SIZE-1))
    133 #define	alpha_trunc_l2seg(x)	(((u_long)(x)) & ~(ALPHA_L2SEG_SIZE-1))
    134 
    135 #ifdef _KERNEL
    136 extern	pt_entry_t *Lev1map;		/* kernel level 1 page table */
    137 #endif /* _KERNEL */
    138 
    139 #endif /* ! _ALPHA_PTE_H_ */
    140