1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 2005 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _SYS_CONTROLREGS_H 28*7c478bd9Sstevel@tonic-gate #define _SYS_CONTROLREGS_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate #ifndef _ASM 33*7c478bd9Sstevel@tonic-gate #include <sys/types.h> 34*7c478bd9Sstevel@tonic-gate #endif 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 37*7c478bd9Sstevel@tonic-gate extern "C" { 38*7c478bd9Sstevel@tonic-gate #endif 39*7c478bd9Sstevel@tonic-gate 40*7c478bd9Sstevel@tonic-gate /* 41*7c478bd9Sstevel@tonic-gate * This file describes the x86 architecture control registers which 42*7c478bd9Sstevel@tonic-gate * are part of the privileged architecture. 43*7c478bd9Sstevel@tonic-gate * 44*7c478bd9Sstevel@tonic-gate * Many of these definitions are shared between IA-32-style and 45*7c478bd9Sstevel@tonic-gate * AMD64-style processors. 46*7c478bd9Sstevel@tonic-gate */ 47*7c478bd9Sstevel@tonic-gate 48*7c478bd9Sstevel@tonic-gate /* CR0 Register */ 49*7c478bd9Sstevel@tonic-gate 50*7c478bd9Sstevel@tonic-gate #define CR0_PG 0x80000000 /* paging enabled */ 51*7c478bd9Sstevel@tonic-gate #define CR0_CD 0x40000000 /* cache disable */ 52*7c478bd9Sstevel@tonic-gate #define CR0_NW 0x20000000 /* not writethrough */ 53*7c478bd9Sstevel@tonic-gate #define CR0_AM 0x00040000 /* alignment mask */ 54*7c478bd9Sstevel@tonic-gate #define CR0_WP 0x00010000 /* write protect */ 55*7c478bd9Sstevel@tonic-gate #define CR0_NE 0x00000020 /* numeric error */ 56*7c478bd9Sstevel@tonic-gate #define CR0_ET 0x00000010 /* extension type */ 57*7c478bd9Sstevel@tonic-gate #define CR0_TS 0x00000008 /* task switch */ 58*7c478bd9Sstevel@tonic-gate #define CR0_EM 0x00000004 /* emulation */ 59*7c478bd9Sstevel@tonic-gate #define CR0_MP 0x00000002 /* monitor coprocessor */ 60*7c478bd9Sstevel@tonic-gate #define CR0_PE 0x00000001 /* protection enabled */ 61*7c478bd9Sstevel@tonic-gate 62*7c478bd9Sstevel@tonic-gate /* XX64 eliminate these compatibility defines */ 63*7c478bd9Sstevel@tonic-gate 64*7c478bd9Sstevel@tonic-gate #define CR0_CE CR0_CD 65*7c478bd9Sstevel@tonic-gate #define CR0_WT CR0_NW 66*7c478bd9Sstevel@tonic-gate 67*7c478bd9Sstevel@tonic-gate #define FMT_CR0 \ 68*7c478bd9Sstevel@tonic-gate "\20\40pg\37cd\36nw\35am\21wp\6ne\5et\4ts\3em\2mp\1pe" 69*7c478bd9Sstevel@tonic-gate 70*7c478bd9Sstevel@tonic-gate /* CR3 Register */ 71*7c478bd9Sstevel@tonic-gate 72*7c478bd9Sstevel@tonic-gate #define CR3_PCD 0x00000010 /* cache disable */ 73*7c478bd9Sstevel@tonic-gate #define CR3_PWT 0x00000008 /* write through */ 74*7c478bd9Sstevel@tonic-gate 75*7c478bd9Sstevel@tonic-gate #define FMT_CR3 "\20\5pcd\4pwt" 76*7c478bd9Sstevel@tonic-gate 77*7c478bd9Sstevel@tonic-gate /* CR4 Register */ 78*7c478bd9Sstevel@tonic-gate 79*7c478bd9Sstevel@tonic-gate #define CR4_VME 0x0001 /* virtual-8086 mode extensions */ 80*7c478bd9Sstevel@tonic-gate #define CR4_PVI 0x0002 /* protected-mode virtual interrupts */ 81*7c478bd9Sstevel@tonic-gate #define CR4_TSD 0x0004 /* time stamp disable */ 82*7c478bd9Sstevel@tonic-gate #define CR4_DE 0x0008 /* debugging extensions */ 83*7c478bd9Sstevel@tonic-gate #define CR4_PSE 0x0010 /* page size extensions */ 84*7c478bd9Sstevel@tonic-gate #define CR4_PAE 0x0020 /* physical address extension */ 85*7c478bd9Sstevel@tonic-gate #define CR4_MCE 0x0040 /* machine check enable */ 86*7c478bd9Sstevel@tonic-gate #define CR4_PGE 0x0080 /* page global enable */ 87*7c478bd9Sstevel@tonic-gate #define CR4_PCE 0x0100 /* perf-monitoring counter enable */ 88*7c478bd9Sstevel@tonic-gate #define CR4_OSFXSR 0x0200 /* OS fxsave/fxrstor support */ 89*7c478bd9Sstevel@tonic-gate #define CR4_OSXMMEXCPT 0x0400 /* OS unmasked exception support */ 90*7c478bd9Sstevel@tonic-gate 91*7c478bd9Sstevel@tonic-gate #define FMT_CR4 \ 92*7c478bd9Sstevel@tonic-gate "\20\13xmme\12fxsr\11pce\10pge\7mce\6pae\5pse\4de\3tsd\2pvi\1vme" 93*7c478bd9Sstevel@tonic-gate 94*7c478bd9Sstevel@tonic-gate /* Intel's SYSENTER configuration registers */ 95*7c478bd9Sstevel@tonic-gate 96*7c478bd9Sstevel@tonic-gate #define MSR_INTC_SEP_CS 0x174 /* kernel code selector MSR */ 97*7c478bd9Sstevel@tonic-gate #define MSR_INTC_SEP_ESP 0x175 /* kernel esp MSR */ 98*7c478bd9Sstevel@tonic-gate #define MSR_INTC_SEP_EIP 0x176 /* kernel eip MSR */ 99*7c478bd9Sstevel@tonic-gate 100*7c478bd9Sstevel@tonic-gate /* AMD's EFER register */ 101*7c478bd9Sstevel@tonic-gate 102*7c478bd9Sstevel@tonic-gate #define MSR_AMD_EFER 0xc0000080 /* extended feature enable MSR */ 103*7c478bd9Sstevel@tonic-gate 104*7c478bd9Sstevel@tonic-gate #define AMD_EFER_NXE 0x800 /* no-execute enable */ 105*7c478bd9Sstevel@tonic-gate #define AMD_EFER_LMA 0x400 /* long mode active (read-only) */ 106*7c478bd9Sstevel@tonic-gate #define AMD_EFER_LME 0x100 /* long mode enable */ 107*7c478bd9Sstevel@tonic-gate #define AMD_EFER_SCE 0x001 /* system call extensions */ 108*7c478bd9Sstevel@tonic-gate 109*7c478bd9Sstevel@tonic-gate #define FMT_AMD_EFER \ 110*7c478bd9Sstevel@tonic-gate "\20\14nxe\13lma\11lme\1sce" 111*7c478bd9Sstevel@tonic-gate 112*7c478bd9Sstevel@tonic-gate /* AMD's SYSCFG register */ 113*7c478bd9Sstevel@tonic-gate 114*7c478bd9Sstevel@tonic-gate #define MSR_AMD_SYSCFG 0xc0000010 /* system configuration MSR */ 115*7c478bd9Sstevel@tonic-gate 116*7c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_TOM2 0x200000 /* MtrrTom2En */ 117*7c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_MVDM 0x100000 /* MtrrVarDramEn */ 118*7c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_MFDM 0x080000 /* MtrrFixDramModEn */ 119*7c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_MFDE 0x040000 /* MtrrFixDramEn */ 120*7c478bd9Sstevel@tonic-gate 121*7c478bd9Sstevel@tonic-gate #define FMT_AMD_SYSCFG \ 122*7c478bd9Sstevel@tonic-gate "\20\26tom2\25mvdm\24mfdm\23mfde" 123*7c478bd9Sstevel@tonic-gate 124*7c478bd9Sstevel@tonic-gate /* AMD's syscall/sysret MSRs */ 125*7c478bd9Sstevel@tonic-gate 126*7c478bd9Sstevel@tonic-gate #define MSR_AMD_STAR 0xc0000081 /* %cs:%ss:%cs:%ss:%eip for syscall */ 127*7c478bd9Sstevel@tonic-gate #define MSR_AMD_LSTAR 0xc0000082 /* target %rip of 64-bit syscall */ 128*7c478bd9Sstevel@tonic-gate #define MSR_AMD_CSTAR 0xc0000083 /* target %rip of 32-bit syscall */ 129*7c478bd9Sstevel@tonic-gate #define MSR_AMD_SFMASK 0xc0000084 /* syscall flag mask */ 130*7c478bd9Sstevel@tonic-gate 131*7c478bd9Sstevel@tonic-gate /* AMD's FS.base and GS.base MSRs */ 132*7c478bd9Sstevel@tonic-gate 133*7c478bd9Sstevel@tonic-gate #define MSR_AMD_FSBASE 0xc0000100 /* 64-bit base address for %fs */ 134*7c478bd9Sstevel@tonic-gate #define MSR_AMD_GSBASE 0xc0000101 /* 64-bit base address for %gs */ 135*7c478bd9Sstevel@tonic-gate #define MSR_AMD_KGSBASE 0xc0000102 /* swapgs swaps this with gsbase */ 136*7c478bd9Sstevel@tonic-gate 137*7c478bd9Sstevel@tonic-gate /* AMD's configuration MSRs, weakly documented in the revision guide */ 138*7c478bd9Sstevel@tonic-gate 139*7c478bd9Sstevel@tonic-gate #define MSR_AMD_DC_CFG 0xc0011022 140*7c478bd9Sstevel@tonic-gate 141*7c478bd9Sstevel@tonic-gate #define AMD_DC_CFG_DIS_CNV_WC_SSO (UINT64_C(1) << 3) 142*7c478bd9Sstevel@tonic-gate #define AMD_DC_CFG_DIS_SMC_CHK_BUF (UINT64_C(1) << 10) 143*7c478bd9Sstevel@tonic-gate 144*7c478bd9Sstevel@tonic-gate /* AMD's HWCR MSR */ 145*7c478bd9Sstevel@tonic-gate #define MSR_AMD_HWCR 0xc0010015 146*7c478bd9Sstevel@tonic-gate 147*7c478bd9Sstevel@tonic-gate #define AMD_HWCR_FFDIS 0x40 /* set to disable TLB Flush Filter */ 148*7c478bd9Sstevel@tonic-gate 149*7c478bd9Sstevel@tonic-gate /* AMD */ 150*7c478bd9Sstevel@tonic-gate #define MSR_AMD_PATCHLEVEL 0x8b 151*7c478bd9Sstevel@tonic-gate 152*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 153*7c478bd9Sstevel@tonic-gate } 154*7c478bd9Sstevel@tonic-gate #endif 155*7c478bd9Sstevel@tonic-gate 156*7c478bd9Sstevel@tonic-gate #endif /* !_SYS_CONTROLREGS_H */ 157