Home | History | Annotate | Line # | Download | only in include
pmap.h revision 1.62
      1  1.62      agc /* $NetBSD: pmap.h,v 1.62 2003/08/07 16:26:33 agc Exp $ */
      2   1.1      cgd 
      3  1.11  thorpej /*-
      4  1.43  thorpej  * Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
      5  1.11  thorpej  * All rights reserved.
      6  1.11  thorpej  *
      7  1.11  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8  1.11  thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  1.11  thorpej  * NASA Ames Research Center and by Chris G. Demetriou.
     10  1.11  thorpej  *
     11  1.11  thorpej  * Redistribution and use in source and binary forms, with or without
     12  1.11  thorpej  * modification, are permitted provided that the following conditions
     13  1.11  thorpej  * are met:
     14  1.11  thorpej  * 1. Redistributions of source code must retain the above copyright
     15  1.11  thorpej  *    notice, this list of conditions and the following disclaimer.
     16  1.11  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.11  thorpej  *    notice, this list of conditions and the following disclaimer in the
     18  1.11  thorpej  *    documentation and/or other materials provided with the distribution.
     19  1.11  thorpej  * 3. All advertising materials mentioning features or use of this software
     20  1.11  thorpej  *    must display the following acknowledgement:
     21  1.11  thorpej  *	This product includes software developed by the NetBSD
     22  1.11  thorpej  *	Foundation, Inc. and its contributors.
     23  1.11  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.11  thorpej  *    contributors may be used to endorse or promote products derived
     25  1.11  thorpej  *    from this software without specific prior written permission.
     26  1.11  thorpej  *
     27  1.11  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.11  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.11  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.11  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.11  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.11  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.11  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.11  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.11  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.11  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.11  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     38  1.11  thorpej  */
     39  1.11  thorpej 
     40  1.11  thorpej /*
     41  1.11  thorpej  * Copyright (c) 1991, 1993
     42  1.11  thorpej  *	The Regents of the University of California.  All rights reserved.
     43  1.62      agc  *
     44  1.62      agc  * This code is derived from software contributed to Berkeley by
     45  1.62      agc  * the Systems Programming Group of the University of Utah Computer
     46  1.62      agc  * Science Department.
     47  1.62      agc  *
     48  1.62      agc  * Redistribution and use in source and binary forms, with or without
     49  1.62      agc  * modification, are permitted provided that the following conditions
     50  1.62      agc  * are met:
     51  1.62      agc  * 1. Redistributions of source code must retain the above copyright
     52  1.62      agc  *    notice, this list of conditions and the following disclaimer.
     53  1.62      agc  * 2. Redistributions in binary form must reproduce the above copyright
     54  1.62      agc  *    notice, this list of conditions and the following disclaimer in the
     55  1.62      agc  *    documentation and/or other materials provided with the distribution.
     56  1.62      agc  * 3. Neither the name of the University nor the names of its contributors
     57  1.62      agc  *    may be used to endorse or promote products derived from this software
     58  1.62      agc  *    without specific prior written permission.
     59  1.62      agc  *
     60  1.62      agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     61  1.62      agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     62  1.62      agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     63  1.62      agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     64  1.62      agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     65  1.62      agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     66  1.62      agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     67  1.62      agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     68  1.62      agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     69  1.62      agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     70  1.62      agc  * SUCH DAMAGE.
     71  1.62      agc  *
     72  1.62      agc  *	@(#)pmap.h	8.1 (Berkeley) 6/10/93
     73  1.62      agc  */
     74  1.62      agc 
     75  1.62      agc /*
     76  1.62      agc  * Copyright (c) 1987 Carnegie-Mellon University
     77  1.11  thorpej  *
     78  1.11  thorpej  * This code is derived from software contributed to Berkeley by
     79  1.11  thorpej  * the Systems Programming Group of the University of Utah Computer
     80  1.11  thorpej  * Science Department.
     81  1.11  thorpej  *
     82  1.11  thorpej  * Redistribution and use in source and binary forms, with or without
     83  1.11  thorpej  * modification, are permitted provided that the following conditions
     84  1.11  thorpej  * are met:
     85  1.11  thorpej  * 1. Redistributions of source code must retain the above copyright
     86  1.11  thorpej  *    notice, this list of conditions and the following disclaimer.
     87  1.11  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     88  1.11  thorpej  *    notice, this list of conditions and the following disclaimer in the
     89  1.11  thorpej  *    documentation and/or other materials provided with the distribution.
     90  1.11  thorpej  * 3. All advertising materials mentioning features or use of this software
     91  1.11  thorpej  *    must display the following acknowledgement:
     92  1.11  thorpej  *	This product includes software developed by the University of
     93  1.11  thorpej  *	California, Berkeley and its contributors.
     94  1.11  thorpej  * 4. Neither the name of the University nor the names of its contributors
     95  1.11  thorpej  *    may be used to endorse or promote products derived from this software
     96  1.11  thorpej  *    without specific prior written permission.
     97  1.11  thorpej  *
     98  1.11  thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     99  1.11  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    100  1.11  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    101  1.11  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    102  1.11  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    103  1.11  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    104  1.11  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    105  1.11  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    106  1.11  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    107  1.11  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    108  1.11  thorpej  * SUCH DAMAGE.
    109  1.11  thorpej  *
    110  1.11  thorpej  *	@(#)pmap.h	8.1 (Berkeley) 6/10/93
    111  1.11  thorpej  */
    112  1.11  thorpej 
    113  1.11  thorpej #ifndef	_PMAP_MACHINE_
    114  1.11  thorpej #define	_PMAP_MACHINE_
    115  1.11  thorpej 
    116  1.51      mrg #if defined(_KERNEL_OPT)
    117  1.26  thorpej #include "opt_multiprocessor.h"
    118  1.26  thorpej #endif
    119  1.26  thorpej 
    120  1.20  thorpej #include <sys/lock.h>
    121  1.11  thorpej #include <sys/queue.h>
    122  1.20  thorpej 
    123  1.11  thorpej #include <machine/pte.h>
    124  1.11  thorpej 
    125  1.11  thorpej /*
    126  1.11  thorpej  * Machine-dependent virtual memory state.
    127  1.11  thorpej  *
    128  1.11  thorpej  * If we ever support processor numbers higher than 63, we'll have to
    129  1.11  thorpej  * rethink the CPU mask.
    130  1.11  thorpej  *
    131  1.24  thorpej  * Note pm_asn and pm_asngen are arrays allocated in pmap_create().
    132  1.24  thorpej  * Their size is based on the PCS count from the HWRPB, and indexed
    133  1.24  thorpej  * by processor ID (from `whami').
    134  1.24  thorpej  *
    135  1.24  thorpej  * The kernel pmap is a special case; it gets statically-allocated
    136  1.24  thorpej  * arrays which hold enough for ALPHA_MAXPROCS.
    137  1.11  thorpej  */
    138  1.43  thorpej struct pmap_asn_info {
    139  1.43  thorpej 	unsigned int		pma_asn;	/* address space number */
    140  1.43  thorpej 	unsigned long		pma_asngen;	/* ASN generation number */
    141  1.43  thorpej };
    142  1.43  thorpej 
    143  1.11  thorpej struct pmap {
    144  1.30  thorpej 	TAILQ_ENTRY(pmap)	pm_list;	/* list of all pmaps */
    145  1.11  thorpej 	pt_entry_t		*pm_lev1map;	/* level 1 map */
    146  1.11  thorpej 	int			pm_count;	/* pmap reference count */
    147  1.20  thorpej 	struct simplelock	pm_slock;	/* lock on pmap */
    148  1.11  thorpej 	struct pmap_statistics	pm_stats;	/* pmap statistics */
    149  1.11  thorpej 	unsigned long		pm_cpus;	/* mask of CPUs using pmap */
    150  1.33  thorpej 	unsigned long		pm_needisync;	/* mask of CPUs needing isync */
    151  1.43  thorpej 	struct pmap_asn_info	pm_asni[1];	/* ASN information */
    152  1.43  thorpej 			/*	variable length		*/
    153  1.11  thorpej };
    154  1.43  thorpej typedef struct pmap	*pmap_t;
    155  1.11  thorpej 
    156  1.43  thorpej /*
    157  1.61     matt  * Compute the sizeof of a pmap structure.  Subtract one because one
    158  1.43  thorpej  * ASN info structure is already included in the pmap structure itself.
    159  1.43  thorpej  */
    160  1.43  thorpej #define	PMAP_SIZEOF(x)							\
    161  1.43  thorpej 	(ALIGN(sizeof(struct pmap) +					\
    162  1.43  thorpej 	       (sizeof(struct pmap_asn_info) * ((x) - 1))))
    163  1.11  thorpej 
    164  1.11  thorpej #define	PMAP_ASN_RESERVED	0	/* reserved for Lev1map users */
    165  1.11  thorpej 
    166  1.61     matt extern struct pmap	kernel_pmap_store[];
    167  1.11  thorpej 
    168  1.11  thorpej /*
    169  1.50      chs  * For each struct vm_page, there is a list of all currently valid virtual
    170  1.11  thorpej  * mappings of that page.  An entry is a pv_entry_t, the list is pv_table.
    171  1.11  thorpej  */
    172  1.11  thorpej typedef struct pv_entry {
    173  1.48  thorpej 	struct pv_entry	*pv_next;	/* next pv_entry on list */
    174  1.11  thorpej 	struct pmap	*pv_pmap;	/* pmap where mapping lies */
    175  1.23  thorpej 	vaddr_t		pv_va;		/* virtual address for mapping */
    176  1.29  thorpej 	pt_entry_t	*pv_pte;	/* PTE that maps the VA */
    177  1.11  thorpej } *pv_entry_t;
    178  1.11  thorpej 
    179  1.11  thorpej /* pvh_attrs */
    180  1.17  thorpej #define	PGA_MODIFIED		0x01		/* modified */
    181  1.17  thorpej #define	PGA_REFERENCED		0x02		/* referenced */
    182  1.16  thorpej 
    183  1.16  thorpej /* pvh_usage */
    184  1.16  thorpej #define	PGU_NORMAL		0		/* free or normal use */
    185  1.16  thorpej #define	PGU_PVENT		1		/* PV entries */
    186  1.16  thorpej #define	PGU_L1PT		2		/* level 1 page table */
    187  1.16  thorpej #define	PGU_L2PT		3		/* level 2 page table */
    188  1.16  thorpej #define	PGU_L3PT		4		/* level 3 page table */
    189  1.16  thorpej 
    190  1.11  thorpej #ifdef _KERNEL
    191  1.11  thorpej 
    192  1.12  thorpej #ifndef _LKM
    193  1.11  thorpej #include "opt_dec_kn8ae.h"			/* XXX */
    194  1.11  thorpej 
    195  1.27  thorpej #if defined(DEC_KN8AE)
    196  1.12  thorpej #define	_PMAP_MAY_USE_PROM_CONSOLE
    197  1.12  thorpej #endif
    198  1.26  thorpej 
    199  1.26  thorpej #if defined(MULTIPROCESSOR)
    200  1.38  thorpej struct cpu_info;
    201  1.38  thorpej struct trapframe;
    202  1.39  thorpej 
    203  1.39  thorpej void	pmap_do_reactivate(struct cpu_info *, struct trapframe *);
    204  1.38  thorpej 
    205  1.53  thorpej void	pmap_tlb_shootdown(pmap_t, vaddr_t, pt_entry_t, u_long *);
    206  1.53  thorpej void	pmap_tlb_shootnow(u_long);
    207  1.38  thorpej void	pmap_do_tlb_shootdown(struct cpu_info *, struct trapframe *);
    208  1.53  thorpej #define	PMAP_TLB_SHOOTDOWN_CPUSET_DECL		u_long shootset = 0;
    209  1.36  thorpej #define	PMAP_TLB_SHOOTDOWN(pm, va, pte)					\
    210  1.53  thorpej 	pmap_tlb_shootdown((pm), (va), (pte), &shootset)
    211  1.53  thorpej #define	PMAP_TLB_SHOOTNOW()						\
    212  1.53  thorpej 	pmap_tlb_shootnow(shootset)
    213  1.36  thorpej #else
    214  1.53  thorpej #define	PMAP_TLB_SHOOTDOWN_CPUSET_DECL		/* nothing */
    215  1.36  thorpej #define	PMAP_TLB_SHOOTDOWN(pm, va, pte)		/* nothing */
    216  1.53  thorpej #define	PMAP_TLB_SHOOTNOW()			/* nothing */
    217  1.26  thorpej #endif /* MULTIPROCESSOR */
    218  1.12  thorpej #endif /* _LKM */
    219  1.46  thorpej 
    220  1.61     matt #define pmap_kernel()			(kernel_pmap_store)
    221  1.11  thorpej 
    222  1.11  thorpej #define	pmap_resident_count(pmap)	((pmap)->pm_stats.resident_count)
    223  1.11  thorpej #define	pmap_wired_count(pmap)		((pmap)->pm_stats.wired_count)
    224  1.40  thorpej 
    225  1.49  thorpej #define	pmap_copy(dp, sp, da, l, sa)	/* nothing */
    226  1.54    chris #define	pmap_update(pmap)		/* nothing (yet) */
    227  1.55      chs 
    228  1.55      chs static __inline void
    229  1.56      chs pmap_remove_all(struct pmap *pmap)
    230  1.55      chs {
    231  1.55      chs 	/* Nothing. */
    232  1.55      chs }
    233  1.46  thorpej 
    234  1.46  thorpej #define	pmap_is_referenced(pg)						\
    235  1.47  thorpej 	(((pg)->mdpage.pvh_attrs & PGA_REFERENCED) != 0)
    236  1.46  thorpej #define	pmap_is_modified(pg)						\
    237  1.47  thorpej 	(((pg)->mdpage.pvh_attrs & PGA_MODIFIED) != 0)
    238  1.11  thorpej 
    239  1.11  thorpej extern	pt_entry_t *VPT;		/* Virtual Page Table */
    240  1.11  thorpej 
    241  1.11  thorpej #define	PMAP_STEAL_MEMORY		/* enable pmap_steal_memory() */
    242  1.37  thorpej #define	PMAP_GROWKERNEL			/* enable pmap_growkernel() */
    243  1.22  thorpej 
    244  1.22  thorpej /*
    245  1.22  thorpej  * Alternate mapping hooks for pool pages.  Avoids thrashing the TLB.
    246  1.22  thorpej  */
    247  1.22  thorpej #define	PMAP_MAP_POOLPAGE(pa)		ALPHA_PHYS_TO_K0SEG((pa))
    248  1.22  thorpej #define	PMAP_UNMAP_POOLPAGE(va)		ALPHA_K0SEG_TO_PHYS((va))
    249  1.59  thorpej 
    250  1.59  thorpej /*
    251  1.59  thorpej  * Other hooks for the pool allocator.
    252  1.59  thorpej  */
    253  1.60  nathanw #define	POOL_VTOPHYS(va)		ALPHA_K0SEG_TO_PHYS((vaddr_t) (va))
    254  1.45  thorpej 
    255  1.45  thorpej boolean_t			pmap_pageidlezero(paddr_t);
    256  1.45  thorpej #define	PMAP_PAGEIDLEZERO(pa)	pmap_pageidlezero((pa))
    257  1.11  thorpej 
    258  1.35  thorpej paddr_t vtophys(vaddr_t);
    259  1.11  thorpej 
    260  1.11  thorpej /* Machine-specific functions. */
    261  1.35  thorpej void	pmap_bootstrap(paddr_t ptaddr, u_int maxasn, u_long ncpuids);
    262  1.58  thorpej void	pmap_emulate_reference(struct lwp *p, vaddr_t v,
    263  1.35  thorpej 		int user, int write);
    264  1.11  thorpej #ifdef _PMAP_MAY_USE_PROM_CONSOLE
    265  1.35  thorpej int	pmap_uses_prom_console(void);
    266   1.8      cgd #endif
    267  1.11  thorpej 
    268  1.11  thorpej #define	pmap_pte_pa(pte)	(PG_PFNUM(*(pte)) << PGSHIFT)
    269  1.11  thorpej #define	pmap_pte_prot(pte)	(*(pte) & PG_PROT)
    270  1.11  thorpej #define	pmap_pte_w(pte)		(*(pte) & PG_WIRED)
    271  1.11  thorpej #define	pmap_pte_v(pte)		(*(pte) & PG_V)
    272  1.11  thorpej #define	pmap_pte_pv(pte)	(*(pte) & PG_PVLIST)
    273  1.11  thorpej #define	pmap_pte_asm(pte)	(*(pte) & PG_ASM)
    274  1.21  thorpej #define	pmap_pte_exec(pte)	(*(pte) & PG_EXEC)
    275  1.11  thorpej 
    276  1.11  thorpej #define	pmap_pte_set_w(pte, v)						\
    277  1.11  thorpej do {									\
    278  1.11  thorpej 	if (v)								\
    279  1.11  thorpej 		*(pte) |= PG_WIRED;					\
    280  1.11  thorpej 	else								\
    281  1.11  thorpej 		*(pte) &= ~PG_WIRED;					\
    282  1.11  thorpej } while (0)
    283  1.11  thorpej 
    284  1.11  thorpej #define	pmap_pte_w_chg(pte, nw)	((nw) ^ pmap_pte_w(pte))
    285  1.11  thorpej 
    286  1.11  thorpej #define	pmap_pte_set_prot(pte, np)					\
    287  1.11  thorpej do {									\
    288  1.11  thorpej 	*(pte) &= ~PG_PROT;						\
    289  1.11  thorpej 	*(pte) |= (np);							\
    290  1.11  thorpej } while (0)
    291  1.11  thorpej 
    292  1.11  thorpej #define	pmap_pte_prot_chg(pte, np) ((np) ^ pmap_pte_prot(pte))
    293  1.11  thorpej 
    294  1.35  thorpej static __inline pt_entry_t *pmap_l2pte(pmap_t, vaddr_t, pt_entry_t *);
    295  1.35  thorpej static __inline pt_entry_t *pmap_l3pte(pmap_t, vaddr_t, pt_entry_t *);
    296  1.11  thorpej 
    297  1.11  thorpej #define	pmap_l1pte(pmap, v)						\
    298  1.23  thorpej 	(&(pmap)->pm_lev1map[l1pte_index((vaddr_t)(v))])
    299  1.11  thorpej 
    300  1.11  thorpej static __inline pt_entry_t *
    301  1.15  thorpej pmap_l2pte(pmap, v, l1pte)
    302  1.11  thorpej 	pmap_t pmap;
    303  1.23  thorpej 	vaddr_t v;
    304  1.15  thorpej 	pt_entry_t *l1pte;
    305  1.11  thorpej {
    306  1.15  thorpej 	pt_entry_t *lev2map;
    307  1.11  thorpej 
    308  1.15  thorpej 	if (l1pte == NULL) {
    309  1.15  thorpej 		l1pte = pmap_l1pte(pmap, v);
    310  1.15  thorpej 		if (pmap_pte_v(l1pte) == 0)
    311  1.15  thorpej 			return (NULL);
    312  1.15  thorpej 	}
    313  1.11  thorpej 
    314  1.11  thorpej 	lev2map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l1pte));
    315  1.11  thorpej 	return (&lev2map[l2pte_index(v)]);
    316  1.11  thorpej }
    317  1.11  thorpej 
    318  1.11  thorpej static __inline pt_entry_t *
    319  1.15  thorpej pmap_l3pte(pmap, v, l2pte)
    320  1.11  thorpej 	pmap_t pmap;
    321  1.23  thorpej 	vaddr_t v;
    322  1.15  thorpej 	pt_entry_t *l2pte;
    323  1.11  thorpej {
    324  1.15  thorpej 	pt_entry_t *l1pte, *lev2map, *lev3map;
    325  1.11  thorpej 
    326  1.15  thorpej 	if (l2pte == NULL) {
    327  1.15  thorpej 		l1pte = pmap_l1pte(pmap, v);
    328  1.15  thorpej 		if (pmap_pte_v(l1pte) == 0)
    329  1.15  thorpej 			return (NULL);
    330  1.15  thorpej 
    331  1.15  thorpej 		lev2map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l1pte));
    332  1.15  thorpej 		l2pte = &lev2map[l2pte_index(v)];
    333  1.15  thorpej 		if (pmap_pte_v(l2pte) == 0)
    334  1.15  thorpej 			return (NULL);
    335  1.15  thorpej 	}
    336  1.11  thorpej 
    337  1.11  thorpej 	lev3map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l2pte));
    338  1.11  thorpej 	return (&lev3map[l3pte_index(v)]);
    339  1.11  thorpej }
    340  1.31  thorpej 
    341  1.31  thorpej /*
    342  1.31  thorpej  * Macros for locking pmap structures.
    343  1.31  thorpej  *
    344  1.32  thorpej  * Note that we if we access the kernel pmap in interrupt context, it
    345  1.32  thorpej  * is only to update statistics.  Since stats are updated using atomic
    346  1.32  thorpej  * operations, locking the kernel pmap is not necessary.  Therefore,
    347  1.32  thorpej  * it is not necessary to block interrupts when locking pmap strucutres.
    348  1.31  thorpej  */
    349  1.32  thorpej #define	PMAP_LOCK(pmap)		simple_lock(&(pmap)->pm_slock)
    350  1.32  thorpej #define	PMAP_UNLOCK(pmap)	simple_unlock(&(pmap)->pm_slock)
    351  1.33  thorpej 
    352  1.33  thorpej /*
    353  1.33  thorpej  * Macro for processing deferred I-stream synchronization.
    354  1.33  thorpej  *
    355  1.33  thorpej  * The pmap module may defer syncing the user I-stream until the
    356  1.33  thorpej  * return to userspace, since the IMB PALcode op can be quite
    357  1.33  thorpej  * expensive.  Since user instructions won't be executed until
    358  1.33  thorpej  * the return to userspace, this can be deferred until userret().
    359  1.33  thorpej  */
    360  1.33  thorpej #define	PMAP_USERRET(pmap)						\
    361  1.33  thorpej do {									\
    362  1.33  thorpej 	u_long cpu_mask = (1UL << cpu_number());			\
    363  1.33  thorpej 									\
    364  1.33  thorpej 	if ((pmap)->pm_needisync & cpu_mask) {				\
    365  1.34  thorpej 		atomic_clearbits_ulong(&(pmap)->pm_needisync,		\
    366  1.33  thorpej 		    cpu_mask);						\
    367  1.33  thorpej 		alpha_pal_imb();					\
    368  1.33  thorpej 	}								\
    369  1.33  thorpej } while (0)
    370  1.11  thorpej 
    371  1.11  thorpej #endif /* _KERNEL */
    372  1.11  thorpej 
    373  1.11  thorpej #endif /* _PMAP_MACHINE_ */
    374