NetBSD/sys/arch/mips/include/pte.h
matt e544d50473 Major merge forward from matt-nb5-mips64.
New fixup code.
New common SPL code.
New common interrupt code.
Move related variables into structures.
Cleanup locore (move MD variable into it).
Kill StudlyCaps
Use PCU for FPU
2011-02-20 07:45:46 +00:00

273 lines
7.6 KiB
C

/* $NetBSD: pte.h,v 1.20 2011/02/20 07:45:47 matt Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* 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.
*
* 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.
*
* 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 1996 The Board of Trustees of The Leland Stanford
* Junior University. All Rights Reserved.
*
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. Stanford University
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*/
#ifndef __MIPS_PTE_H__
#define __MIPS_PTE_H__
#include <mips/mips1_pte.h>
#include <mips/mips3_pte.h>
#define PG_ASID 0x000000ff /* Address space ID */
#ifndef _LOCORE
#include <mips/cpu.h>
typedef union pt_entry {
uint32_t pt_entry; /* for copying, etc. */
struct mips1_pte pt_mips1_pte; /* for getting to bits by name */
struct mips3_pte pt_mips3_pte;
} pt_entry_t;
/*
* Macros/inline functions to hide PTE format differences.
*/
#define mips_pg_nv_bit() (MIPS1_PG_NV) /* same on mips1 and mips3 */
bool pmap_is_page_ro_p(struct pmap *pmap, vaddr_t, uint32_t);
/* MIPS1-only */
#if defined(MIPS1) && !defined(MIPS3_PLUS)
#define mips_pg_v(entry) ((entry) & MIPS1_PG_V)
#define mips_pg_wired(entry) ((entry) & MIPS1_PG_WIRED)
#define mips_pg_m_bit() (MIPS1_PG_D)
#define mips_pg_rw_bit() (MIPS1_PG_RW) /* no RW bits for mips1 */
#define mips_pg_ro_bit() (MIPS1_PG_RO)
#define mips_pg_ropage_bit() (MIPS1_PG_RO) /* XXX not MIPS1_PG_ROPAGE? */
#define mips_pg_rwpage_bit() (MIPS1_PG_RWPAGE)
#define mips_pg_rwncpage_bit() (MIPS1_PG_RWNCPAGE)
#define mips_pg_cwpage_bit() (MIPS1_PG_CWPAGE)
#define mips_pg_cwncpage_bit() (MIPS1_PG_CWNCPAGE)
#define mips_pg_global_bit() (MIPS1_PG_G)
#define mips_pg_wired_bit() (MIPS1_PG_WIRED)
#define PTE_TO_PADDR(pte) MIPS1_PTE_TO_PADDR((pte))
#define PAGE_IS_RDONLY(pte, va) MIPS1_PAGE_IS_RDONLY((pte), (va))
#define mips_tlbpfn_to_paddr(x) mips1_tlbpfn_to_paddr((vaddr_t)(x))
#define mips_paddr_to_tlbpfn(x) mips1_paddr_to_tlbpfn((x))
#endif /* mips1 */
/* MIPS3 (or greater) only */
#if !defined(MIPS1) && defined(MIPS3_PLUS)
#define mips_pg_v(entry) ((entry) & MIPS3_PG_V)
#define mips_pg_wired(entry) ((entry) & MIPS3_PG_WIRED)
#define mips_pg_m_bit() (MIPS3_PG_D)
#define mips_pg_rw_bit() (MIPS3_PG_D)
#define mips_pg_ro_bit() (MIPS3_PG_RO)
#define mips_pg_ropage_bit() (MIPS3_PG_ROPAGE)
#define mips_pg_rwpage_bit() (MIPS3_PG_RWPAGE)
#define mips_pg_rwncpage_bit() (MIPS3_PG_RWNCPAGE)
#define mips_pg_cwpage_bit() (MIPS3_PG_CWPAGE)
#define mips_pg_cwncpage_bit() (MIPS3_PG_CWNCPAGE)
#define mips_pg_global_bit() (MIPS3_PG_G)
#define mips_pg_wired_bit() (MIPS3_PG_WIRED)
#define PTE_TO_PADDR(pte) MIPS3_PTE_TO_PADDR((pte))
#define PAGE_IS_RDONLY(pte, va) MIPS3_PAGE_IS_RDONLY((pte), (va))
#define mips_tlbpfn_to_paddr(x) mips3_tlbpfn_to_paddr((vaddr_t)(x))
#define mips_paddr_to_tlbpfn(x) mips3_paddr_to_tlbpfn((x))
#endif /* mips3 */
/* MIPS1 and MIPS3 (or greater) */
#if defined(MIPS1) && defined(MIPS3_PLUS)
static __inline bool
mips_pg_v(uint32_t entry),
mips_pg_wired(uint32_t entry),
PAGE_IS_RDONLY(uint32_t pte, vaddr_t va);
static __inline uint32_t
mips_pg_wired_bit(void) __pure,
mips_pg_m_bit(void) __pure,
mips_pg_ro_bit(void) __pure,
mips_pg_rw_bit(void) __pure,
mips_pg_ropage_bit(void) __pure,
mips_pg_cwpage_bit(void) __pure,
mips_pg_rwpage_bit(void) __pure,
mips_pg_global_bit(void) __pure;
static __inline paddr_t PTE_TO_PADDR(uint32_t pte) __pure;
static __inline bool PAGE_IS_RDONLY(uint32_t pte, vaddr_t va) __pure;
static __inline paddr_t mips_tlbpfn_to_paddr(uint32_t pfn) __pure;
static __inline uint32_t mips_paddr_to_tlbpfn(paddr_t pa) __pure;
static __inline bool
mips_pg_v(uint32_t entry)
{
if (MIPS_HAS_R4K_MMU)
return (entry & MIPS3_PG_V) != 0;
return (entry & MIPS1_PG_V) != 0;
}
static __inline bool
mips_pg_wired(uint32_t entry)
{
if (MIPS_HAS_R4K_MMU)
return (entry & MIPS3_PG_WIRED) != 0;
return (entry & MIPS1_PG_WIRED) != 0;
}
static __inline uint32_t
mips_pg_m_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_D);
return (MIPS1_PG_D);
}
static __inline unsigned int
mips_pg_ro_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_RO);
return (MIPS1_PG_RO);
}
static __inline unsigned int
mips_pg_rw_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_D);
return (MIPS1_PG_RW);
}
static __inline unsigned int
mips_pg_ropage_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_ROPAGE);
return (MIPS1_PG_RO);
}
static __inline unsigned int
mips_pg_rwpage_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_RWPAGE);
return (MIPS1_PG_RWPAGE);
}
static __inline unsigned int
mips_pg_cwpage_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_CWPAGE);
return (MIPS1_PG_CWPAGE);
}
static __inline unsigned int
mips_pg_global_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_G);
return (MIPS1_PG_G);
}
static __inline unsigned int
mips_pg_wired_bit(void)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PG_WIRED);
return (MIPS1_PG_WIRED);
}
static __inline paddr_t
PTE_TO_PADDR(uint32_t pte)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PTE_TO_PADDR(pte));
return (MIPS1_PTE_TO_PADDR(pte));
}
static __inline bool
PAGE_IS_RDONLY(uint32_t pte, vaddr_t va)
{
if (MIPS_HAS_R4K_MMU)
return (MIPS3_PAGE_IS_RDONLY(pte, va));
return (MIPS1_PAGE_IS_RDONLY(pte, va));
}
static __inline paddr_t
mips_tlbpfn_to_paddr(uint32_t pfn)
{
if (MIPS_HAS_R4K_MMU)
return (mips3_tlbpfn_to_paddr(pfn));
return (mips1_tlbpfn_to_paddr(pfn));
}
static __inline uint32_t
mips_paddr_to_tlbpfn(paddr_t pa)
{
if (MIPS_HAS_R4K_MMU)
return (mips3_paddr_to_tlbpfn(pa));
return (mips1_paddr_to_tlbpfn(pa));
}
#endif
#endif /* ! _LOCORE */
#if defined(_KERNEL) && !defined(_LOCORE)
/*
* Kernel virtual address to page table entry and visa versa.
*/
#define kvtopte(va) \
(Sysmap + (((vaddr_t)(va) - VM_MIN_KERNEL_ADDRESS) >> PGSHIFT))
#define ptetokv(pte) \
((((pt_entry_t *)(pte) - Sysmap) << PGSHIFT) + VM_MIN_KERNEL_ADDRESS)
extern pt_entry_t *Sysmap; /* kernel pte table */
extern u_int Sysmapsize; /* number of pte's in Sysmap */
#endif /* defined(_KERNEL) && !defined(_LOCORE) */
#endif /* __MIPS_PTE_H__ */