Home | History | Annotate | Line # | Download | only in include
      1  1.100    andvar /* $NetBSD: pmap.h,v 1.100 2025/07/15 22:15:03 andvar Exp $ */
      2    1.1       cgd 
      3   1.11   thorpej /*-
      4   1.69        ad  * Copyright (c) 1998, 1999, 2000, 2001, 2007 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  *
     20   1.11   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21   1.11   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22   1.11   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23   1.11   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24   1.11   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25   1.11   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26   1.11   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27   1.11   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28   1.11   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29   1.11   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30   1.11   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     31   1.11   thorpej  */
     32   1.11   thorpej 
     33   1.77      matt /*
     34   1.11   thorpej  * Copyright (c) 1991, 1993
     35   1.11   thorpej  *	The Regents of the University of California.  All rights reserved.
     36   1.62       agc  *
     37   1.62       agc  * This code is derived from software contributed to Berkeley by
     38   1.62       agc  * the Systems Programming Group of the University of Utah Computer
     39   1.62       agc  * Science Department.
     40   1.62       agc  *
     41   1.62       agc  * Redistribution and use in source and binary forms, with or without
     42   1.62       agc  * modification, are permitted provided that the following conditions
     43   1.62       agc  * are met:
     44   1.62       agc  * 1. Redistributions of source code must retain the above copyright
     45   1.62       agc  *    notice, this list of conditions and the following disclaimer.
     46   1.62       agc  * 2. Redistributions in binary form must reproduce the above copyright
     47   1.62       agc  *    notice, this list of conditions and the following disclaimer in the
     48   1.62       agc  *    documentation and/or other materials provided with the distribution.
     49   1.62       agc  * 3. Neither the name of the University nor the names of its contributors
     50   1.62       agc  *    may be used to endorse or promote products derived from this software
     51   1.62       agc  *    without specific prior written permission.
     52   1.62       agc  *
     53   1.62       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     54   1.62       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     55   1.62       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     56   1.62       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     57   1.62       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     58   1.62       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     59   1.62       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     60   1.62       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     61   1.62       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     62   1.62       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     63   1.62       agc  * SUCH DAMAGE.
     64   1.62       agc  *
     65   1.62       agc  *	@(#)pmap.h	8.1 (Berkeley) 6/10/93
     66   1.62       agc  */
     67   1.62       agc 
     68   1.77      matt /*
     69   1.62       agc  * Copyright (c) 1987 Carnegie-Mellon University
     70   1.11   thorpej  *
     71   1.11   thorpej  * This code is derived from software contributed to Berkeley by
     72   1.11   thorpej  * the Systems Programming Group of the University of Utah Computer
     73   1.11   thorpej  * Science Department.
     74   1.11   thorpej  *
     75   1.11   thorpej  * Redistribution and use in source and binary forms, with or without
     76   1.11   thorpej  * modification, are permitted provided that the following conditions
     77   1.11   thorpej  * are met:
     78   1.11   thorpej  * 1. Redistributions of source code must retain the above copyright
     79   1.11   thorpej  *    notice, this list of conditions and the following disclaimer.
     80   1.11   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     81   1.11   thorpej  *    notice, this list of conditions and the following disclaimer in the
     82   1.11   thorpej  *    documentation and/or other materials provided with the distribution.
     83   1.11   thorpej  * 3. All advertising materials mentioning features or use of this software
     84   1.11   thorpej  *    must display the following acknowledgement:
     85   1.11   thorpej  *	This product includes software developed by the University of
     86   1.11   thorpej  *	California, Berkeley and its contributors.
     87   1.11   thorpej  * 4. Neither the name of the University nor the names of its contributors
     88   1.11   thorpej  *    may be used to endorse or promote products derived from this software
     89   1.11   thorpej  *    without specific prior written permission.
     90   1.11   thorpej  *
     91   1.11   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     92   1.11   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     93   1.11   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     94   1.11   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     95   1.11   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     96   1.11   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     97   1.11   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     98   1.11   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     99   1.11   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    100   1.11   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    101   1.11   thorpej  * SUCH DAMAGE.
    102   1.11   thorpej  *
    103   1.11   thorpej  *	@(#)pmap.h	8.1 (Berkeley) 6/10/93
    104   1.11   thorpej  */
    105   1.11   thorpej 
    106   1.11   thorpej #ifndef	_PMAP_MACHINE_
    107   1.11   thorpej #define	_PMAP_MACHINE_
    108   1.11   thorpej 
    109   1.51       mrg #if defined(_KERNEL_OPT)
    110   1.26   thorpej #include "opt_multiprocessor.h"
    111   1.26   thorpej #endif
    112   1.26   thorpej 
    113   1.99  riastrad #include <sys/param.h>
    114   1.99  riastrad #include <sys/types.h>
    115   1.99  riastrad 
    116   1.69        ad #include <sys/mutex.h>
    117   1.11   thorpej #include <sys/queue.h>
    118   1.20   thorpej 
    119   1.11   thorpej #include <machine/pte.h>
    120   1.11   thorpej 
    121   1.11   thorpej /*
    122   1.11   thorpej  * Machine-dependent virtual memory state.
    123   1.11   thorpej  *
    124   1.11   thorpej  * If we ever support processor numbers higher than 63, we'll have to
    125   1.11   thorpej  * rethink the CPU mask.
    126   1.11   thorpej  *
    127   1.24   thorpej  * Note pm_asn and pm_asngen are arrays allocated in pmap_create().
    128   1.24   thorpej  * Their size is based on the PCS count from the HWRPB, and indexed
    129   1.83   thorpej  * by processor ID (from `whami').  This is all padded to COHERENCY_UNIT
    130   1.83   thorpej  * to avoid false sharing.
    131   1.24   thorpej  *
    132   1.83   thorpej  * The kernel pmap is a special case; since the kernel uses only ASM
    133   1.83   thorpej  * mappings and uses a reserved ASN to keep the TLB clean, we don't
    134   1.83   thorpej  * allocate any ASN info for the kernel pmap at all.
    135   1.24   thorpej  * arrays which hold enough for ALPHA_MAXPROCS.
    136   1.11   thorpej  */
    137   1.89   thorpej 
    138   1.89   thorpej LIST_HEAD(pmap_pagelist, vm_page);
    139   1.95   thorpej LIST_HEAD(pmap_pvlist, pv_entry);
    140   1.89   thorpej 
    141   1.86   thorpej struct pmap_percpu {
    142   1.86   thorpej 	unsigned int		pmc_asn;	/* address space number */
    143   1.86   thorpej 	unsigned int		pmc_pad0;
    144   1.86   thorpej 	unsigned long		pmc_asngen;	/* ASN generation number */
    145   1.87   thorpej 	unsigned int		pmc_needisync;	/* CPU needes isync */
    146   1.87   thorpej 	unsigned int		pmc_pad1;
    147   1.88   thorpej 	pt_entry_t		*pmc_lev1map;	/* level 1 map */
    148   1.88   thorpej 	unsigned long		pmc_padN[(COHERENCY_UNIT / 8) - 4];
    149   1.43   thorpej };
    150   1.43   thorpej 
    151   1.83   thorpej struct pmap {	/* pmaps are aligned to COHERENCY_UNIT boundaries */
    152   1.83   thorpej 		/* pmaps are locked by hashed mutexes */
    153   1.88   thorpej 	unsigned long		pm_cpus;	/* [ 0] CPUs using pmap */
    154   1.88   thorpej 	struct pmap_statistics	pm_stats;	/* [ 8] statistics */
    155   1.88   thorpej 	unsigned int		pm_count;	/* [24] reference count */
    156   1.88   thorpej 	unsigned int		__pm_spare0;	/* [28] spare field */
    157   1.90   thorpej 	struct pmap_pagelist	pm_ptpages;	/* [32] list of PT pages */
    158   1.95   thorpej 	struct pmap_pvlist	pm_pvents;	/* [40] list of PV entries */
    159   1.83   thorpej 	TAILQ_ENTRY(pmap)	pm_list;	/* [48] list of all pmaps */
    160   1.83   thorpej 	/* -- COHERENCY_UNIT boundary -- */
    161   1.86   thorpej 	struct pmap_percpu	pm_percpu[];	/* [64] per-CPU data */
    162   1.43   thorpej 			/*	variable length		*/
    163   1.11   thorpej };
    164   1.11   thorpej 
    165   1.43   thorpej #define	PMAP_SIZEOF(x)							\
    166   1.86   thorpej 	(ALIGN(offsetof(struct pmap, pm_percpu[(x)])))
    167   1.11   thorpej 
    168   1.83   thorpej #define	PMAP_ASN_KERNEL		0	/* kernel-reserved ASN */
    169   1.83   thorpej #define	PMAP_ASN_FIRST_USER	1	/* first user ASN */
    170   1.83   thorpej #define	PMAP_ASNGEN_INVALID	0	/* reserved (invalid) ASN generation */
    171  1.100    andvar #define	PMAP_ASNGEN_INITIAL	1	/* first valid generation */
    172   1.11   thorpej 
    173   1.11   thorpej /*
    174   1.50       chs  * For each struct vm_page, there is a list of all currently valid virtual
    175   1.11   thorpej  * mappings of that page.  An entry is a pv_entry_t, the list is pv_table.
    176   1.11   thorpej  */
    177   1.11   thorpej typedef struct pv_entry {
    178   1.94   thorpej 	struct pv_entry	*pv_next;	/* next pv_entry on page list */
    179   1.94   thorpej 	LIST_ENTRY(pv_entry) pv_link;	/* link on owning pmap's list */
    180   1.11   thorpej 	struct pmap	*pv_pmap;	/* pmap where mapping lies */
    181   1.23   thorpej 	vaddr_t		pv_va;		/* virtual address for mapping */
    182   1.29   thorpej 	pt_entry_t	*pv_pte;	/* PTE that maps the VA */
    183   1.11   thorpej } *pv_entry_t;
    184   1.11   thorpej 
    185   1.93   thorpej /* attrs in pvh_listx */
    186   1.93   thorpej #define	PGA_MODIFIED		0x01UL		/* modified */
    187   1.93   thorpej #define	PGA_REFERENCED		0x02UL		/* referenced */
    188   1.93   thorpej #define	PGA_ATTRS		(PGA_MODIFIED | PGA_REFERENCED)
    189   1.16   thorpej 
    190   1.16   thorpej /* pvh_usage */
    191   1.16   thorpej #define	PGU_NORMAL		0		/* free or normal use */
    192   1.16   thorpej #define	PGU_PVENT		1		/* PV entries */
    193   1.16   thorpej #define	PGU_L1PT		2		/* level 1 page table */
    194   1.16   thorpej #define	PGU_L2PT		3		/* level 2 page table */
    195   1.16   thorpej #define	PGU_L3PT		4		/* level 3 page table */
    196   1.16   thorpej 
    197   1.11   thorpej #ifdef _KERNEL
    198   1.11   thorpej 
    199   1.70        ad #include <sys/atomic.h>
    200   1.70        ad 
    201   1.38   thorpej struct cpu_info;
    202   1.38   thorpej struct trapframe;
    203   1.39   thorpej 
    204   1.83   thorpej void	pmap_init_cpu(struct cpu_info *);
    205   1.83   thorpej #if defined(MULTIPROCESSOR)
    206   1.83   thorpej void	pmap_tlb_shootdown_ipi(struct cpu_info *, struct trapframe *);
    207   1.26   thorpej #endif /* MULTIPROCESSOR */
    208   1.46   thorpej 
    209   1.11   thorpej #define	pmap_resident_count(pmap)	((pmap)->pm_stats.resident_count)
    210   1.11   thorpej #define	pmap_wired_count(pmap)		((pmap)->pm_stats.wired_count)
    211   1.40   thorpej 
    212   1.49   thorpej #define	pmap_copy(dp, sp, da, l, sa)	/* nothing */
    213   1.54     chris #define	pmap_update(pmap)		/* nothing (yet) */
    214   1.55       chs 
    215   1.46   thorpej #define	pmap_is_referenced(pg)						\
    216   1.93   thorpej 	(((pg)->mdpage.pvh_listx & PGA_REFERENCED) != 0)
    217   1.46   thorpej #define	pmap_is_modified(pg)						\
    218   1.93   thorpej 	(((pg)->mdpage.pvh_listx & PGA_MODIFIED) != 0)
    219   1.11   thorpej 
    220   1.11   thorpej #define	PMAP_STEAL_MEMORY		/* enable pmap_steal_memory() */
    221   1.37   thorpej #define	PMAP_GROWKERNEL			/* enable pmap_growkernel() */
    222   1.22   thorpej 
    223   1.80   thorpej #define	PMAP_DIRECT
    224   1.80   thorpej #define	PMAP_DIRECT_MAP(pa)		ALPHA_PHYS_TO_K0SEG((pa))
    225   1.80   thorpej #define	PMAP_DIRECT_UNMAP(va)		ALPHA_K0SEG_TO_PHYS((va))
    226   1.80   thorpej 
    227   1.80   thorpej static __inline int
    228   1.80   thorpej pmap_direct_process(paddr_t pa, voff_t pgoff, size_t len,
    229   1.80   thorpej     int (*process)(void *, size_t, void *), void *arg)
    230   1.80   thorpej {
    231   1.80   thorpej 	vaddr_t va = PMAP_DIRECT_MAP(pa);
    232   1.80   thorpej 
    233   1.80   thorpej 	return process((void *)(va + pgoff), len, arg);
    234   1.80   thorpej }
    235   1.80   thorpej 
    236   1.22   thorpej /*
    237   1.22   thorpej  * Alternate mapping hooks for pool pages.  Avoids thrashing the TLB.
    238   1.22   thorpej  */
    239   1.80   thorpej #define	PMAP_MAP_POOLPAGE(pa)		PMAP_DIRECT_MAP(pa)
    240   1.80   thorpej #define	PMAP_UNMAP_POOLPAGE(va)		PMAP_DIRECT_UNMAP(va)
    241   1.59   thorpej 
    242   1.59   thorpej /*
    243   1.59   thorpej  * Other hooks for the pool allocator.
    244   1.59   thorpej  */
    245   1.60   nathanw #define	POOL_VTOPHYS(va)		ALPHA_K0SEG_TO_PHYS((vaddr_t) (va))
    246   1.45   thorpej 
    247   1.68   thorpej bool	pmap_pageidlezero(paddr_t);
    248   1.45   thorpej #define	PMAP_PAGEIDLEZERO(pa)	pmap_pageidlezero((pa))
    249   1.11   thorpej 
    250   1.35   thorpej paddr_t vtophys(vaddr_t);
    251   1.11   thorpej 
    252   1.11   thorpej /* Machine-specific functions. */
    253   1.63       chs void	pmap_bootstrap(paddr_t, u_int, u_long);
    254   1.63       chs int	pmap_emulate_reference(struct lwp *, vaddr_t, int, int);
    255   1.11   thorpej 
    256   1.11   thorpej #define	pmap_pte_pa(pte)	(PG_PFNUM(*(pte)) << PGSHIFT)
    257   1.11   thorpej #define	pmap_pte_prot(pte)	(*(pte) & PG_PROT)
    258   1.11   thorpej #define	pmap_pte_w(pte)		(*(pte) & PG_WIRED)
    259   1.11   thorpej #define	pmap_pte_v(pte)		(*(pte) & PG_V)
    260   1.11   thorpej #define	pmap_pte_pv(pte)	(*(pte) & PG_PVLIST)
    261   1.11   thorpej #define	pmap_pte_asm(pte)	(*(pte) & PG_ASM)
    262   1.21   thorpej #define	pmap_pte_exec(pte)	(*(pte) & PG_EXEC)
    263   1.11   thorpej 
    264   1.11   thorpej #define	pmap_pte_set_w(pte, v)						\
    265   1.11   thorpej do {									\
    266   1.11   thorpej 	if (v)								\
    267   1.11   thorpej 		*(pte) |= PG_WIRED;					\
    268   1.11   thorpej 	else								\
    269   1.11   thorpej 		*(pte) &= ~PG_WIRED;					\
    270   1.11   thorpej } while (0)
    271   1.11   thorpej 
    272   1.11   thorpej #define	pmap_pte_w_chg(pte, nw)	((nw) ^ pmap_pte_w(pte))
    273   1.11   thorpej 
    274   1.11   thorpej #define	pmap_pte_set_prot(pte, np)					\
    275   1.11   thorpej do {									\
    276   1.11   thorpej 	*(pte) &= ~PG_PROT;						\
    277   1.11   thorpej 	*(pte) |= (np);							\
    278   1.11   thorpej } while (0)
    279   1.11   thorpej 
    280   1.11   thorpej #define	pmap_pte_prot_chg(pte, np) ((np) ^ pmap_pte_prot(pte))
    281   1.11   thorpej 
    282   1.85   thorpej static __inline pt_entry_t *
    283   1.88   thorpej pmap_lev1map(pmap_t pmap)
    284   1.85   thorpej {
    285   1.88   thorpej 	if (__predict_false(pmap == pmap_kernel())) {
    286   1.88   thorpej 		return kernel_lev1map;
    287   1.88   thorpej 	}
    288   1.88   thorpej 	/*
    289   1.88   thorpej 	 * We're just reading a per-CPU field that's the same on
    290   1.88   thorpej 	 * all CPUs, so don't bother disabling preemption around
    291   1.88   thorpej 	 * this.
    292   1.88   thorpej 	 */
    293   1.88   thorpej 	return pmap->pm_percpu[cpu_number()].pmc_lev1map;
    294   1.88   thorpej }
    295   1.88   thorpej 
    296   1.88   thorpej static __inline pt_entry_t *
    297   1.88   thorpej pmap_l1pte(pt_entry_t *lev1map, vaddr_t v)
    298   1.88   thorpej {
    299   1.88   thorpej 	KASSERT(lev1map != NULL);
    300   1.88   thorpej 	return &lev1map[l1pte_index(v)];
    301   1.85   thorpej }
    302   1.11   thorpej 
    303   1.66     perry static __inline pt_entry_t *
    304   1.88   thorpej pmap_l2pte(pt_entry_t *lev1map, vaddr_t v, 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.88   thorpej 		l1pte = pmap_l1pte(lev1map, v);
    310   1.15   thorpej 		if (pmap_pte_v(l1pte) == 0)
    311   1.85   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.85   thorpej 	return &lev2map[l2pte_index(v)];
    316   1.11   thorpej }
    317   1.11   thorpej 
    318   1.66     perry static __inline pt_entry_t *
    319   1.88   thorpej pmap_l3pte(pt_entry_t *lev1map, vaddr_t v, pt_entry_t *l2pte)
    320   1.11   thorpej {
    321   1.15   thorpej 	pt_entry_t *l1pte, *lev2map, *lev3map;
    322   1.11   thorpej 
    323   1.15   thorpej 	if (l2pte == NULL) {
    324   1.88   thorpej 		l1pte = pmap_l1pte(lev1map, v);
    325   1.15   thorpej 		if (pmap_pte_v(l1pte) == 0)
    326   1.85   thorpej 			return NULL;
    327   1.15   thorpej 
    328   1.15   thorpej 		lev2map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l1pte));
    329   1.15   thorpej 		l2pte = &lev2map[l2pte_index(v)];
    330   1.15   thorpej 		if (pmap_pte_v(l2pte) == 0)
    331   1.85   thorpej 			return NULL;
    332   1.15   thorpej 	}
    333   1.11   thorpej 
    334   1.11   thorpej 	lev3map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l2pte));
    335   1.85   thorpej 	return &lev3map[l3pte_index(v)];
    336   1.11   thorpej }
    337   1.31   thorpej 
    338   1.31   thorpej /*
    339   1.33   thorpej  * Macro for processing deferred I-stream synchronization.
    340   1.33   thorpej  *
    341   1.33   thorpej  * The pmap module may defer syncing the user I-stream until the
    342   1.33   thorpej  * return to userspace, since the IMB PALcode op can be quite
    343   1.33   thorpej  * expensive.  Since user instructions won't be executed until
    344   1.33   thorpej  * the return to userspace, this can be deferred until userret().
    345   1.33   thorpej  */
    346   1.33   thorpej #define	PMAP_USERRET(pmap)						\
    347   1.33   thorpej do {									\
    348   1.87   thorpej 	const unsigned long cpu_id = cpu_number();			\
    349   1.33   thorpej 									\
    350   1.87   thorpej 	if ((pmap)->pm_percpu[cpu_id].pmc_needisync) {			\
    351   1.87   thorpej 		(pmap)->pm_percpu[cpu_id].pmc_needisync = 0;		\
    352   1.33   thorpej 		alpha_pal_imb();					\
    353   1.33   thorpej 	}								\
    354   1.33   thorpej } while (0)
    355   1.11   thorpej 
    356   1.76  uebayasi /*
    357   1.76  uebayasi  * pmap-specific data store in the vm_page structure.
    358   1.76  uebayasi  */
    359   1.76  uebayasi #define	__HAVE_VM_PAGE_MD
    360   1.76  uebayasi struct vm_page_md {
    361   1.97   thorpej 	uintptr_t pvh_listx;		/* pv_entry list + attrs */
    362   1.97   thorpej 	/*
    363   1.97   thorpej 	 * XXX These fields are only needed for pages that are used
    364   1.97   thorpej 	 * as PT pages.  It would be nice to find safely-unused fields
    365   1.97   thorpej 	 * in the vm_page structure that could be used instead.
    366   1.98   thorpej 	 *
    367   1.98   thorpej 	 * (Only 11 bits are needed ... we need to be able to count from
    368   1.98   thorpej 	 * 0-1025 ... 1025 because sometimes we need to take an extra
    369   1.98   thorpej 	 * reference temporarily in pmap_enter().)
    370   1.97   thorpej 	 */
    371   1.97   thorpej 	unsigned int pvh_physpgrefs;	/* # refs as a PT page */
    372   1.97   thorpej 	unsigned int pvh_spare0;	/* XXX spare field */
    373   1.76  uebayasi };
    374   1.76  uebayasi 
    375   1.97   thorpej /* Reference counting for page table pages. */
    376   1.97   thorpej #define	PHYSPAGE_REFCNT(pg)						\
    377   1.97   thorpej 	atomic_load_relaxed(&(pg)->mdpage.pvh_physpgrefs)
    378   1.97   thorpej #define	PHYSPAGE_REFCNT_SET(pg, v)					\
    379   1.97   thorpej 	atomic_store_relaxed(&(pg)->mdpage.pvh_physpgrefs, (v))
    380   1.97   thorpej #define	PHYSPAGE_REFCNT_INC(pg)						\
    381   1.97   thorpej 	atomic_inc_uint_nv(&(pg)->mdpage.pvh_physpgrefs)
    382   1.97   thorpej #define	PHYSPAGE_REFCNT_DEC(pg)						\
    383   1.97   thorpej 	atomic_dec_uint_nv(&(pg)->mdpage.pvh_physpgrefs)
    384   1.97   thorpej 
    385   1.92   thorpej #define	VM_MDPAGE_PVS(pg)						\
    386   1.93   thorpej 	((struct pv_entry *)((pg)->mdpage.pvh_listx & ~3UL))
    387   1.92   thorpej 
    388   1.76  uebayasi #define	VM_MDPAGE_INIT(pg)						\
    389   1.76  uebayasi do {									\
    390   1.93   thorpej 	(pg)->mdpage.pvh_listx = 0UL;					\
    391   1.76  uebayasi } while (/*CONSTCOND*/0)
    392   1.76  uebayasi 
    393   1.11   thorpej #endif /* _KERNEL */
    394   1.11   thorpej 
    395   1.11   thorpej #endif /* _PMAP_MACHINE_ */
    396