2001-09-11 01:19:08 +04:00
|
|
|
/* $NetBSD: pmap.h,v 1.54 2001/09/10 21:19:09 chris Exp $ */
|
1995-02-14 02:06:39 +03:00
|
|
|
|
1998-03-26 05:18:03 +03:00
|
|
|
/*-
|
2001-04-25 00:11:53 +04:00
|
|
|
* Copyright (c) 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
|
1998-03-26 05:18:03 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
|
|
|
|
* NASA Ames Research Center and by Chris G. Demetriou.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1987 Carnegie-Mellon University
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* the Systems Programming Group of the University of Utah Computer
|
|
|
|
* Science Department.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)pmap.h 8.1 (Berkeley) 6/10/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PMAP_MACHINE_
|
|
|
|
#define _PMAP_MACHINE_
|
|
|
|
|
2001-05-30 15:57:16 +04:00
|
|
|
#if defined(_KERNEL_OPT)
|
1999-02-24 22:22:16 +03:00
|
|
|
#include "opt_multiprocessor.h"
|
|
|
|
#endif
|
|
|
|
|
1998-05-20 08:05:50 +04:00
|
|
|
#include <sys/lock.h>
|
1998-03-26 05:18:03 +03:00
|
|
|
#include <sys/queue.h>
|
1998-05-20 08:05:50 +04:00
|
|
|
|
1998-03-26 05:18:03 +03:00
|
|
|
#include <machine/pte.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Machine-dependent virtual memory state.
|
|
|
|
*
|
|
|
|
* If we ever support processor numbers higher than 63, we'll have to
|
|
|
|
* rethink the CPU mask.
|
|
|
|
*
|
1998-09-22 07:58:10 +04:00
|
|
|
* Note pm_asn and pm_asngen are arrays allocated in pmap_create().
|
|
|
|
* Their size is based on the PCS count from the HWRPB, and indexed
|
|
|
|
* by processor ID (from `whami').
|
|
|
|
*
|
|
|
|
* The kernel pmap is a special case; it gets statically-allocated
|
|
|
|
* arrays which hold enough for ALPHA_MAXPROCS.
|
1998-03-26 05:18:03 +03:00
|
|
|
*/
|
2001-04-25 00:11:53 +04:00
|
|
|
struct pmap_asn_info {
|
|
|
|
unsigned int pma_asn; /* address space number */
|
|
|
|
unsigned long pma_asngen; /* ASN generation number */
|
|
|
|
};
|
|
|
|
|
1998-03-26 05:18:03 +03:00
|
|
|
struct pmap {
|
1999-05-24 02:37:02 +04:00
|
|
|
TAILQ_ENTRY(pmap) pm_list; /* list of all pmaps */
|
1998-03-26 05:18:03 +03:00
|
|
|
pt_entry_t *pm_lev1map; /* level 1 map */
|
|
|
|
int pm_count; /* pmap reference count */
|
1998-05-20 08:05:50 +04:00
|
|
|
struct simplelock pm_slock; /* lock on pmap */
|
1998-03-26 05:18:03 +03:00
|
|
|
struct pmap_statistics pm_stats; /* pmap statistics */
|
|
|
|
unsigned long pm_cpus; /* mask of CPUs using pmap */
|
2000-03-01 05:22:03 +03:00
|
|
|
unsigned long pm_needisync; /* mask of CPUs needing isync */
|
2001-04-25 00:11:53 +04:00
|
|
|
struct pmap_asn_info pm_asni[1]; /* ASN information */
|
|
|
|
/* variable length */
|
1998-03-26 05:18:03 +03:00
|
|
|
};
|
|
|
|
typedef struct pmap *pmap_t;
|
|
|
|
|
2001-04-25 00:11:53 +04:00
|
|
|
/*
|
|
|
|
* Compute the sizeo of a pmap structure. Subtract one because one
|
|
|
|
* ASN info structure is already included in the pmap structure itself.
|
|
|
|
*/
|
|
|
|
#define PMAP_SIZEOF(x) \
|
|
|
|
(ALIGN(sizeof(struct pmap) + \
|
|
|
|
(sizeof(struct pmap_asn_info) * ((x) - 1))))
|
|
|
|
|
1998-03-26 05:18:03 +03:00
|
|
|
#define PMAP_ASN_RESERVED 0 /* reserved for Lev1map users */
|
|
|
|
|
2001-04-25 00:11:53 +04:00
|
|
|
extern u_long kernel_pmap_store[];
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
/*
|
2001-05-27 01:27:02 +04:00
|
|
|
* For each struct vm_page, there is a list of all currently valid virtual
|
1998-03-26 05:18:03 +03:00
|
|
|
* mappings of that page. An entry is a pv_entry_t, the list is pv_table.
|
|
|
|
*/
|
|
|
|
typedef struct pv_entry {
|
2001-05-01 06:53:05 +04:00
|
|
|
struct pv_entry *pv_next; /* next pv_entry on list */
|
1998-03-26 05:18:03 +03:00
|
|
|
struct pmap *pv_pmap; /* pmap where mapping lies */
|
1998-08-14 20:50:00 +04:00
|
|
|
vaddr_t pv_va; /* virtual address for mapping */
|
1999-05-23 21:49:07 +04:00
|
|
|
pt_entry_t *pv_pte; /* PTE that maps the VA */
|
1998-03-26 05:18:03 +03:00
|
|
|
} *pv_entry_t;
|
|
|
|
|
|
|
|
/* pvh_attrs */
|
1998-05-19 04:29:03 +04:00
|
|
|
#define PGA_MODIFIED 0x01 /* modified */
|
|
|
|
#define PGA_REFERENCED 0x02 /* referenced */
|
1998-05-19 04:20:21 +04:00
|
|
|
|
|
|
|
/* pvh_usage */
|
|
|
|
#define PGU_NORMAL 0 /* free or normal use */
|
|
|
|
#define PGU_PVENT 1 /* PV entries */
|
|
|
|
#define PGU_L1PT 2 /* level 1 page table */
|
|
|
|
#define PGU_L2PT 3 /* level 2 page table */
|
|
|
|
#define PGU_L3PT 4 /* level 3 page table */
|
|
|
|
|
1998-03-26 05:18:03 +03:00
|
|
|
#ifdef _KERNEL
|
|
|
|
|
1998-03-26 05:53:21 +03:00
|
|
|
#ifndef _LKM
|
|
|
|
#include "opt_new_scc_driver.h"
|
1998-03-26 05:18:03 +03:00
|
|
|
#include "opt_dec_3000_300.h" /* XXX */
|
|
|
|
#include "opt_dec_3000_500.h" /* XXX */
|
|
|
|
#include "opt_dec_kn8ae.h" /* XXX */
|
|
|
|
|
1998-03-26 05:53:21 +03:00
|
|
|
#if defined(NEW_SCC_DRIVER)
|
1999-04-16 02:15:38 +04:00
|
|
|
#if defined(DEC_KN8AE)
|
1998-03-26 05:53:21 +03:00
|
|
|
#define _PMAP_MAY_USE_PROM_CONSOLE
|
|
|
|
#endif
|
|
|
|
#else /* ! NEW_SCC_DRIVER */
|
|
|
|
#if defined(DEC_3000_300) \
|
|
|
|
|| defined(DEC_3000_500) \
|
1998-03-26 05:18:03 +03:00
|
|
|
|| defined(DEC_KN8AE) /* XXX */
|
|
|
|
#define _PMAP_MAY_USE_PROM_CONSOLE /* XXX */
|
|
|
|
#endif /* XXX */
|
1998-03-26 05:53:21 +03:00
|
|
|
#endif /* NEW_SCC_DRIVER */
|
1999-02-24 22:22:16 +03:00
|
|
|
|
|
|
|
#if defined(MULTIPROCESSOR)
|
2000-11-22 11:39:46 +03:00
|
|
|
struct cpu_info;
|
|
|
|
struct trapframe;
|
|
|
|
|
2001-04-20 20:22:33 +04:00
|
|
|
void pmap_do_reactivate(struct cpu_info *, struct trapframe *);
|
|
|
|
|
2001-07-16 01:57:01 +04:00
|
|
|
void pmap_tlb_shootdown(pmap_t, vaddr_t, pt_entry_t, u_long *);
|
|
|
|
void pmap_tlb_shootnow(u_long);
|
2000-11-22 11:39:46 +03:00
|
|
|
void pmap_do_tlb_shootdown(struct cpu_info *, struct trapframe *);
|
2001-07-16 01:57:01 +04:00
|
|
|
#define PMAP_TLB_SHOOTDOWN_CPUSET_DECL u_long shootset = 0;
|
2000-08-26 07:27:44 +04:00
|
|
|
#define PMAP_TLB_SHOOTDOWN(pm, va, pte) \
|
2001-07-16 01:57:01 +04:00
|
|
|
pmap_tlb_shootdown((pm), (va), (pte), &shootset)
|
|
|
|
#define PMAP_TLB_SHOOTNOW() \
|
|
|
|
pmap_tlb_shootnow(shootset)
|
2000-08-26 07:27:44 +04:00
|
|
|
#else
|
2001-07-16 01:57:01 +04:00
|
|
|
#define PMAP_TLB_SHOOTDOWN_CPUSET_DECL /* nothing */
|
2000-08-26 07:27:44 +04:00
|
|
|
#define PMAP_TLB_SHOOTDOWN(pm, va, pte) /* nothing */
|
2001-07-16 01:57:01 +04:00
|
|
|
#define PMAP_TLB_SHOOTNOW() /* nothing */
|
1999-02-24 22:22:16 +03:00
|
|
|
#endif /* MULTIPROCESSOR */
|
1998-03-26 05:53:21 +03:00
|
|
|
#endif /* _LKM */
|
2001-04-30 02:44:31 +04:00
|
|
|
|
|
|
|
#define pmap_kernel() ((pmap_t) (&kernel_pmap_store[0]))
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
#define pmap_resident_count(pmap) ((pmap)->pm_stats.resident_count)
|
|
|
|
#define pmap_wired_count(pmap) ((pmap)->pm_stats.wired_count)
|
|
|
|
|
2001-05-01 09:33:12 +04:00
|
|
|
#define pmap_copy(dp, sp, da, l, sa) /* nothing */
|
2001-09-11 01:19:08 +04:00
|
|
|
#define pmap_update(pmap) /* nothing (yet) */
|
2001-04-22 03:51:14 +04:00
|
|
|
|
2001-04-30 02:44:31 +04:00
|
|
|
#define pmap_is_referenced(pg) \
|
2001-05-01 06:19:13 +04:00
|
|
|
(((pg)->mdpage.pvh_attrs & PGA_REFERENCED) != 0)
|
2001-04-30 02:44:31 +04:00
|
|
|
#define pmap_is_modified(pg) \
|
2001-05-01 06:19:13 +04:00
|
|
|
(((pg)->mdpage.pvh_attrs & PGA_MODIFIED) != 0)
|
2001-04-30 02:44:31 +04:00
|
|
|
|
1998-03-26 05:18:03 +03:00
|
|
|
extern pt_entry_t *VPT; /* Virtual Page Table */
|
|
|
|
|
|
|
|
#define PMAP_STEAL_MEMORY /* enable pmap_steal_memory() */
|
2000-11-19 06:16:34 +03:00
|
|
|
#define PMAP_GROWKERNEL /* enable pmap_growkernel() */
|
1998-03-26 05:18:03 +03:00
|
|
|
|
1998-07-25 00:32:07 +04:00
|
|
|
/*
|
|
|
|
* Alternate mapping hooks for pool pages. Avoids thrashing the TLB.
|
|
|
|
*/
|
|
|
|
#define PMAP_MAP_POOLPAGE(pa) ALPHA_PHYS_TO_K0SEG((pa))
|
|
|
|
#define PMAP_UNMAP_POOLPAGE(va) ALPHA_K0SEG_TO_PHYS((va))
|
|
|
|
|
2001-04-29 10:54:03 +04:00
|
|
|
boolean_t pmap_pageidlezero(paddr_t);
|
|
|
|
#define PMAP_PAGEIDLEZERO(pa) pmap_pageidlezero((pa))
|
|
|
|
|
2000-06-08 07:10:06 +04:00
|
|
|
paddr_t vtophys(vaddr_t);
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
/* Machine-specific functions. */
|
2000-06-08 07:10:06 +04:00
|
|
|
void pmap_bootstrap(paddr_t ptaddr, u_int maxasn, u_long ncpuids);
|
|
|
|
void pmap_emulate_reference(struct proc *p, vaddr_t v,
|
|
|
|
int user, int write);
|
1998-03-26 05:18:03 +03:00
|
|
|
#ifdef _PMAP_MAY_USE_PROM_CONSOLE
|
2000-06-08 07:10:06 +04:00
|
|
|
int pmap_uses_prom_console(void);
|
1996-07-10 02:22:25 +04:00
|
|
|
#endif
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
#define pmap_pte_pa(pte) (PG_PFNUM(*(pte)) << PGSHIFT)
|
|
|
|
#define pmap_pte_prot(pte) (*(pte) & PG_PROT)
|
|
|
|
#define pmap_pte_w(pte) (*(pte) & PG_WIRED)
|
|
|
|
#define pmap_pte_v(pte) (*(pte) & PG_V)
|
|
|
|
#define pmap_pte_pv(pte) (*(pte) & PG_PVLIST)
|
|
|
|
#define pmap_pte_asm(pte) (*(pte) & PG_ASM)
|
1998-06-11 09:10:41 +04:00
|
|
|
#define pmap_pte_exec(pte) (*(pte) & PG_EXEC)
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
#define pmap_pte_set_w(pte, v) \
|
|
|
|
do { \
|
|
|
|
if (v) \
|
|
|
|
*(pte) |= PG_WIRED; \
|
|
|
|
else \
|
|
|
|
*(pte) &= ~PG_WIRED; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define pmap_pte_w_chg(pte, nw) ((nw) ^ pmap_pte_w(pte))
|
|
|
|
|
|
|
|
#define pmap_pte_set_prot(pte, np) \
|
|
|
|
do { \
|
|
|
|
*(pte) &= ~PG_PROT; \
|
|
|
|
*(pte) |= (np); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define pmap_pte_prot_chg(pte, np) ((np) ^ pmap_pte_prot(pte))
|
|
|
|
|
2000-06-08 07:10:06 +04:00
|
|
|
static __inline pt_entry_t *pmap_l2pte(pmap_t, vaddr_t, pt_entry_t *);
|
|
|
|
static __inline pt_entry_t *pmap_l3pte(pmap_t, vaddr_t, pt_entry_t *);
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
#define pmap_l1pte(pmap, v) \
|
1998-08-14 20:50:00 +04:00
|
|
|
(&(pmap)->pm_lev1map[l1pte_index((vaddr_t)(v))])
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
static __inline pt_entry_t *
|
1998-04-27 23:07:03 +04:00
|
|
|
pmap_l2pte(pmap, v, l1pte)
|
1998-03-26 05:18:03 +03:00
|
|
|
pmap_t pmap;
|
1998-08-14 20:50:00 +04:00
|
|
|
vaddr_t v;
|
1998-04-27 23:07:03 +04:00
|
|
|
pt_entry_t *l1pte;
|
1998-03-26 05:18:03 +03:00
|
|
|
{
|
1998-04-27 23:07:03 +04:00
|
|
|
pt_entry_t *lev2map;
|
1998-03-26 05:18:03 +03:00
|
|
|
|
1998-04-27 23:07:03 +04:00
|
|
|
if (l1pte == NULL) {
|
|
|
|
l1pte = pmap_l1pte(pmap, v);
|
|
|
|
if (pmap_pte_v(l1pte) == 0)
|
|
|
|
return (NULL);
|
|
|
|
}
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
lev2map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l1pte));
|
|
|
|
return (&lev2map[l2pte_index(v)]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline pt_entry_t *
|
1998-04-27 23:07:03 +04:00
|
|
|
pmap_l3pte(pmap, v, l2pte)
|
1998-03-26 05:18:03 +03:00
|
|
|
pmap_t pmap;
|
1998-08-14 20:50:00 +04:00
|
|
|
vaddr_t v;
|
1998-04-27 23:07:03 +04:00
|
|
|
pt_entry_t *l2pte;
|
1998-03-26 05:18:03 +03:00
|
|
|
{
|
1998-04-27 23:07:03 +04:00
|
|
|
pt_entry_t *l1pte, *lev2map, *lev3map;
|
|
|
|
|
|
|
|
if (l2pte == NULL) {
|
|
|
|
l1pte = pmap_l1pte(pmap, v);
|
|
|
|
if (pmap_pte_v(l1pte) == 0)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
lev2map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l1pte));
|
|
|
|
l2pte = &lev2map[l2pte_index(v)];
|
|
|
|
if (pmap_pte_v(l2pte) == 0)
|
|
|
|
return (NULL);
|
|
|
|
}
|
1998-03-26 05:18:03 +03:00
|
|
|
|
|
|
|
lev3map = (pt_entry_t *)ALPHA_PHYS_TO_K0SEG(pmap_pte_pa(l2pte));
|
|
|
|
return (&lev3map[l3pte_index(v)]);
|
|
|
|
}
|
|
|
|
|
1999-05-25 00:11:58 +04:00
|
|
|
/*
|
|
|
|
* Macros for locking pmap structures.
|
|
|
|
*
|
1999-11-28 22:53:11 +03:00
|
|
|
* Note that we if we access the kernel pmap in interrupt context, it
|
|
|
|
* is only to update statistics. Since stats are updated using atomic
|
|
|
|
* operations, locking the kernel pmap is not necessary. Therefore,
|
|
|
|
* it is not necessary to block interrupts when locking pmap strucutres.
|
1999-05-25 00:11:58 +04:00
|
|
|
*/
|
1999-11-28 22:53:11 +03:00
|
|
|
#define PMAP_LOCK(pmap) simple_lock(&(pmap)->pm_slock)
|
|
|
|
#define PMAP_UNLOCK(pmap) simple_unlock(&(pmap)->pm_slock)
|
1999-05-25 00:11:58 +04:00
|
|
|
|
2000-03-01 05:22:03 +03:00
|
|
|
/*
|
|
|
|
* Macro for processing deferred I-stream synchronization.
|
|
|
|
*
|
|
|
|
* The pmap module may defer syncing the user I-stream until the
|
|
|
|
* return to userspace, since the IMB PALcode op can be quite
|
|
|
|
* expensive. Since user instructions won't be executed until
|
|
|
|
* the return to userspace, this can be deferred until userret().
|
|
|
|
*/
|
|
|
|
#define PMAP_USERRET(pmap) \
|
|
|
|
do { \
|
|
|
|
u_long cpu_mask = (1UL << cpu_number()); \
|
|
|
|
\
|
|
|
|
if ((pmap)->pm_needisync & cpu_mask) { \
|
2000-05-23 09:12:53 +04:00
|
|
|
atomic_clearbits_ulong(&(pmap)->pm_needisync, \
|
2000-03-01 05:22:03 +03:00
|
|
|
cpu_mask); \
|
|
|
|
alpha_pal_imb(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
1998-03-26 05:18:03 +03:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
|
|
|
#endif /* _PMAP_MACHINE_ */
|