Home
last modified time | relevance | path

Searched refs:PG_N (Results 1 – 10 of 10) sorted by relevance

/openbsd/sys/arch/i386/include/
H A Dpte.h59 #define PG_N 0x00000010 /* non-cacheable */ macro
73 #define PG_UCMINUS (PG_N) /* UC but mtrr can override */
74 #define PG_UC (PG_WT | PG_N) /* hard UC */
/openbsd/sys/arch/amd64/include/
H A Dpte.h115 #define PG_N 0x0000000000000010UL /* non-cacheable */ macro
144 #define PG_UCMINUS (PG_N) /* UC but mtrr can override */
145 #define PG_UC (PG_WT | PG_N) /* hard UC */
/openbsd/sys/dev/pci/drm/include/asm/
H A Dpgtable.h40 #define _PAGE_PCD PG_N
/openbsd/sys/arch/i386/i386/
H A Dlapic.c93 pmap_pte_set(va, lapic_base, PG_RW | PG_V | PG_N); in lapic_map()
96 pmap_enter_special(va, lapic_base, PROT_READ | PROT_WRITE, PG_N); in lapic_map()
H A Dpmap.c848 ((pa & PMAP_NOCACHE) ? PG_N : 0) | in pmap_kenter_pa()
851 if (pa & PMAP_NOCACHE && (bits & PG_N) == 0) in pmap_kenter_pa()
2401 npte |= PG_N; in pmap_enter_86()
2430 if (nocache && (opte & PG_N) == 0) in pmap_enter_86()
H A Dpmapae.c752 bits = ptp[l1idx] & (PG_PROT|PG_N|PG_WT); in pmap_bootstrap_pae()
1834 npte |= PG_N; in pmap_enter_pae()
1863 if (nocache && (opte & PG_N) == 0) in pmap_enter_pae()
/openbsd/regress/sys/arch/amd64/dump_tables/
H A Ddump_tables.c161 e & PG_N ? 'N' : '-', in pflags()
/openbsd/sys/arch/amd64/amd64/
H A Dgenassym.cf155 export PG_N
H A Dpmap.c512 ((pa & PMAP_NOCACHE) ? PG_N : 0) | in pmap_kenter_pa()
529 if ((pa & PMAP_NOCACHE && (opte & PG_N) == 0) || in pmap_kenter_pa()
2394 pd[l1idx] |= PG_G | (ptes[offs] & (PG_N | PG_WT)); in pmap_enter_special()
2914 npte |= PG_N; in pmap_enter()
2942 if (nocache && (opte & PG_N) == 0) in pmap_enter()
2947 if (nocache && (opte & PG_N) == 0) /* XXX impossible? */ in pmap_enter()
H A Dlapic.c226 *pte = lapic_base | PG_RW | PG_V | PG_N | PG_G | pg_nx; in lapic_map()