mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 22:33:08 +00:00
sys/param.h was manually adjusted to not define __NetBSD_Version__ since it will be defined by the compiler.
57 lines
1.3 KiB
C
Vendored
57 lines
1.3 KiB
C
Vendored
/* $NetBSD: pmap.h,v 1.42.4.1 2023/12/29 20:21:39 martin Exp $ */
|
|
|
|
#ifndef _POWERPC_PMAP_H_
|
|
#define _POWERPC_PMAP_H_
|
|
|
|
#ifdef _KERNEL_OPT
|
|
#include "opt_ppcarch.h"
|
|
#include "opt_modular.h"
|
|
#endif
|
|
|
|
#if !defined(_MODULE)
|
|
|
|
#if defined(PPC_BOOKE)
|
|
#include <powerpc/booke/pmap.h>
|
|
#elif defined(PPC_IBM4XX)
|
|
#include <powerpc/ibm4xx/pmap.h>
|
|
#elif defined(PPC_OEA) || defined (PPC_OEA64) || defined (PPC_OEA64_BRIDGE)
|
|
#include <powerpc/oea/pmap.h>
|
|
#elif defined(_KERNEL)
|
|
#error unknown PPC variant
|
|
#endif
|
|
|
|
#ifndef PMAP_DIRECT_MAPPED_LEN
|
|
#define PMAP_DIRECT_MAPPED_LEN (~0UL)
|
|
#endif
|
|
|
|
#endif /* !_MODULE */
|
|
|
|
#if !defined(_LOCORE) && (defined(MODULAR) || defined(_MODULE))
|
|
/*
|
|
* Both BOOKE and OEA use __HAVE_VM_PAGE_MD but IBM4XX doesn't so define
|
|
* a compatible vm_page_md so that struct vm_page is the same size for all
|
|
* PPC variants.
|
|
*/
|
|
#ifndef __HAVE_VM_PAGE_MD
|
|
#define __HAVE_VM_PAGE_MD
|
|
#define VM_MDPAGE_INIT(pg) __nothing
|
|
|
|
struct vm_page_md {
|
|
uintptr_t mdpg_dummy[5];
|
|
};
|
|
#endif /* !__HAVE_VM_PAGE_MD */
|
|
|
|
__CTASSERT(sizeof(struct vm_page_md) == sizeof(uintptr_t)*5);
|
|
|
|
#ifndef __HAVE_PMAP_PV_TRACK
|
|
/*
|
|
* We need empty stubs for modules shared with all sub-archs.
|
|
*/
|
|
#define __HAVE_PMAP_PV_TRACK
|
|
#define PMAP_PV_TRACK_ONLY_STUBS
|
|
#include <uvm/pmap/pmap_pvt.h>
|
|
#endif /* !__HAVE_PMAP_PV_TRACK */
|
|
|
|
#endif /* !LOCORE && (MODULAR || _MODULE) */
|
|
|
|
#endif /* !_POWERPC_PMAP_H_ */ |