17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5ee88d2b9Skchow * Common Development and Distribution License (the "License"). 6ee88d2b9Skchow * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 227af88ac7SKuriakose Kuruvilla * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. 23*799823bbSRobert Mustacchi * Copyright 2015, Joyent, Inc. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #ifndef _SYS_CONTROLREGS_H 277c478bd9Sstevel@tonic-gate #define _SYS_CONTROLREGS_H 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate #ifndef _ASM 307c478bd9Sstevel@tonic-gate #include <sys/types.h> 317c478bd9Sstevel@tonic-gate #endif 327c478bd9Sstevel@tonic-gate 337c478bd9Sstevel@tonic-gate #ifdef __cplusplus 347c478bd9Sstevel@tonic-gate extern "C" { 357c478bd9Sstevel@tonic-gate #endif 367c478bd9Sstevel@tonic-gate 377c478bd9Sstevel@tonic-gate /* 387c478bd9Sstevel@tonic-gate * This file describes the x86 architecture control registers which 397c478bd9Sstevel@tonic-gate * are part of the privileged architecture. 407c478bd9Sstevel@tonic-gate * 417c478bd9Sstevel@tonic-gate * Many of these definitions are shared between IA-32-style and 427c478bd9Sstevel@tonic-gate * AMD64-style processors. 437c478bd9Sstevel@tonic-gate */ 447c478bd9Sstevel@tonic-gate 457c478bd9Sstevel@tonic-gate /* CR0 Register */ 467c478bd9Sstevel@tonic-gate 477c478bd9Sstevel@tonic-gate #define CR0_PG 0x80000000 /* paging enabled */ 487c478bd9Sstevel@tonic-gate #define CR0_CD 0x40000000 /* cache disable */ 497c478bd9Sstevel@tonic-gate #define CR0_NW 0x20000000 /* not writethrough */ 507c478bd9Sstevel@tonic-gate #define CR0_AM 0x00040000 /* alignment mask */ 517c478bd9Sstevel@tonic-gate #define CR0_WP 0x00010000 /* write protect */ 527c478bd9Sstevel@tonic-gate #define CR0_NE 0x00000020 /* numeric error */ 537c478bd9Sstevel@tonic-gate #define CR0_ET 0x00000010 /* extension type */ 547c478bd9Sstevel@tonic-gate #define CR0_TS 0x00000008 /* task switch */ 557c478bd9Sstevel@tonic-gate #define CR0_EM 0x00000004 /* emulation */ 567c478bd9Sstevel@tonic-gate #define CR0_MP 0x00000002 /* monitor coprocessor */ 577c478bd9Sstevel@tonic-gate #define CR0_PE 0x00000001 /* protection enabled */ 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate /* XX64 eliminate these compatibility defines */ 607c478bd9Sstevel@tonic-gate 617c478bd9Sstevel@tonic-gate #define CR0_CE CR0_CD 627c478bd9Sstevel@tonic-gate #define CR0_WT CR0_NW 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gate #define FMT_CR0 \ 657c478bd9Sstevel@tonic-gate "\20\40pg\37cd\36nw\35am\21wp\6ne\5et\4ts\3em\2mp\1pe" 667c478bd9Sstevel@tonic-gate 67ae115bc7Smrj /* 68ae115bc7Smrj * Set the FPU-related control bits to explain to the processor that 69ae115bc7Smrj * we're managing FPU state: 70ae115bc7Smrj * - set monitor coprocessor (allow TS bit to control FPU) 71ae115bc7Smrj * - set numeric exception (disable IGNNE# mechanism) 72ae115bc7Smrj * - set task switch (#nm on first fp instruction) 73ae115bc7Smrj * - clear emulate math bit (cause we're not emulating!) 74ae115bc7Smrj */ 75ae115bc7Smrj #define CR0_ENABLE_FPU_FLAGS(cr) \ 76ae115bc7Smrj (((cr) | CR0_MP | CR0_NE | CR0_TS) & (uint32_t)~CR0_EM) 77ae115bc7Smrj 78ae115bc7Smrj /* 79ae115bc7Smrj * Set the FPU-related control bits to explain to the processor that 80ae115bc7Smrj * we're -not- managing FPU state: 81ae115bc7Smrj * - set emulate (all fp instructions cause #nm) 82ae115bc7Smrj * - clear monitor coprocessor (so fwait/wait doesn't #nm) 83ae115bc7Smrj */ 84ae115bc7Smrj #define CR0_DISABLE_FPU_FLAGS(cr) \ 85ae115bc7Smrj (((cr) | CR0_EM) & (uint32_t)~CR0_MP) 86ae115bc7Smrj 877c478bd9Sstevel@tonic-gate /* CR3 Register */ 887c478bd9Sstevel@tonic-gate 897c478bd9Sstevel@tonic-gate #define CR3_PCD 0x00000010 /* cache disable */ 907c478bd9Sstevel@tonic-gate #define CR3_PWT 0x00000008 /* write through */ 917c478bd9Sstevel@tonic-gate 927c478bd9Sstevel@tonic-gate #define FMT_CR3 "\20\5pcd\4pwt" 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gate /* CR4 Register */ 957c478bd9Sstevel@tonic-gate 967c478bd9Sstevel@tonic-gate #define CR4_VME 0x0001 /* virtual-8086 mode extensions */ 977c478bd9Sstevel@tonic-gate #define CR4_PVI 0x0002 /* protected-mode virtual interrupts */ 987c478bd9Sstevel@tonic-gate #define CR4_TSD 0x0004 /* time stamp disable */ 997c478bd9Sstevel@tonic-gate #define CR4_DE 0x0008 /* debugging extensions */ 1007c478bd9Sstevel@tonic-gate #define CR4_PSE 0x0010 /* page size extensions */ 1017c478bd9Sstevel@tonic-gate #define CR4_PAE 0x0020 /* physical address extension */ 1027c478bd9Sstevel@tonic-gate #define CR4_MCE 0x0040 /* machine check enable */ 1037c478bd9Sstevel@tonic-gate #define CR4_PGE 0x0080 /* page global enable */ 1047c478bd9Sstevel@tonic-gate #define CR4_PCE 0x0100 /* perf-monitoring counter enable */ 1057c478bd9Sstevel@tonic-gate #define CR4_OSFXSR 0x0200 /* OS fxsave/fxrstor support */ 1067c478bd9Sstevel@tonic-gate #define CR4_OSXMMEXCPT 0x0400 /* OS unmasked exception support */ 107ae115bc7Smrj /* 0x0800 reserved */ 108ae115bc7Smrj /* 0x1000 reserved */ 109ae115bc7Smrj #define CR4_VMXE 0x2000 110ae115bc7Smrj #define CR4_SMXE 0x4000 1117af88ac7SKuriakose Kuruvilla #define CR4_OSXSAVE 0x40000 /* OS xsave/xrestore support */ 112*799823bbSRobert Mustacchi #define CR4_SMEP 0x100000 /* NX for user pages in kernel */ 1137c478bd9Sstevel@tonic-gate 1147c478bd9Sstevel@tonic-gate #define FMT_CR4 \ 115*799823bbSRobert Mustacchi "\20\25smep\23osxsav\17smxe\16vmxe\13xmme\12fxsr\11pce\10pge" \ 116ae115bc7Smrj "\7mce\6pae\5pse\4de\3tsd\2pvi\1vme" 117ae115bc7Smrj 118ae115bc7Smrj /* 119ae115bc7Smrj * Enable the SSE-related control bits to explain to the processor that 120ae115bc7Smrj * we're managing XMM state and exceptions 121ae115bc7Smrj */ 122ae115bc7Smrj #define CR4_ENABLE_SSE_FLAGS(cr) \ 123ae115bc7Smrj ((cr) | CR4_OSFXSR | CR4_OSXMMEXCPT) 124ae115bc7Smrj 125ae115bc7Smrj /* 126ae115bc7Smrj * Disable the SSE-related control bits to explain to the processor 127ae115bc7Smrj * that we're NOT managing XMM state 128ae115bc7Smrj */ 129ae115bc7Smrj #define CR4_DISABLE_SSE_FLAGS(cr) \ 130ae115bc7Smrj ((cr) & ~(uint32_t)(CR4_OSFXSR | CR4_OSXMMEXCPT)) 1317c478bd9Sstevel@tonic-gate 1327c478bd9Sstevel@tonic-gate /* Intel's SYSENTER configuration registers */ 1337c478bd9Sstevel@tonic-gate 1347c478bd9Sstevel@tonic-gate #define MSR_INTC_SEP_CS 0x174 /* kernel code selector MSR */ 1357c478bd9Sstevel@tonic-gate #define MSR_INTC_SEP_ESP 0x175 /* kernel esp MSR */ 1367c478bd9Sstevel@tonic-gate #define MSR_INTC_SEP_EIP 0x176 /* kernel eip MSR */ 1377c478bd9Sstevel@tonic-gate 1382449e17fSsherrym /* Intel's microcode registers */ 1392449e17fSsherrym #define MSR_INTC_UCODE_WRITE 0x79 /* microcode write */ 1402449e17fSsherrym #define MSR_INTC_UCODE_REV 0x8b /* microcode revision */ 1412449e17fSsherrym #define INTC_UCODE_REV_SHIFT 32 /* Bits 63:32 */ 1422449e17fSsherrym 1432449e17fSsherrym /* Intel's platform identification */ 1442449e17fSsherrym #define MSR_INTC_PLATFORM_ID 0x17 1452449e17fSsherrym #define INTC_PLATFORM_ID_SHIFT 50 /* Bit 52:50 */ 1462449e17fSsherrym #define INTC_PLATFORM_ID_MASK 0x7 1472449e17fSsherrym 1487c478bd9Sstevel@tonic-gate /* AMD's EFER register */ 1497c478bd9Sstevel@tonic-gate 1507c478bd9Sstevel@tonic-gate #define MSR_AMD_EFER 0xc0000080 /* extended feature enable MSR */ 1517c478bd9Sstevel@tonic-gate 152ae115bc7Smrj #define AMD_EFER_FFXSR 0x4000 /* fast fxsave/fxrstor */ 153ae115bc7Smrj #define AMD_EFER_SVME 0x1000 /* svm enable */ 154ae115bc7Smrj #define AMD_EFER_NXE 0x0800 /* no-execute enable */ 155ae115bc7Smrj #define AMD_EFER_LMA 0x0400 /* long mode active (read-only) */ 156ae115bc7Smrj #define AMD_EFER_LME 0x0100 /* long mode enable */ 157ae115bc7Smrj #define AMD_EFER_SCE 0x0001 /* system call extensions */ 1587c478bd9Sstevel@tonic-gate 1597c478bd9Sstevel@tonic-gate #define FMT_AMD_EFER \ 160ae115bc7Smrj "\20\17ffxsr\15svme\14nxe\13lma\11lme\1sce" 1617c478bd9Sstevel@tonic-gate 1627c478bd9Sstevel@tonic-gate /* AMD's SYSCFG register */ 1637c478bd9Sstevel@tonic-gate 1647c478bd9Sstevel@tonic-gate #define MSR_AMD_SYSCFG 0xc0000010 /* system configuration MSR */ 1657c478bd9Sstevel@tonic-gate 1667c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_TOM2 0x200000 /* MtrrTom2En */ 1677c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_MVDM 0x100000 /* MtrrVarDramEn */ 1687c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_MFDM 0x080000 /* MtrrFixDramModEn */ 1697c478bd9Sstevel@tonic-gate #define AMD_SYSCFG_MFDE 0x040000 /* MtrrFixDramEn */ 1707c478bd9Sstevel@tonic-gate 1717c478bd9Sstevel@tonic-gate #define FMT_AMD_SYSCFG \ 1727c478bd9Sstevel@tonic-gate "\20\26tom2\25mvdm\24mfdm\23mfde" 1737c478bd9Sstevel@tonic-gate 1747c478bd9Sstevel@tonic-gate /* AMD's syscall/sysret MSRs */ 1757c478bd9Sstevel@tonic-gate 1767c478bd9Sstevel@tonic-gate #define MSR_AMD_STAR 0xc0000081 /* %cs:%ss:%cs:%ss:%eip for syscall */ 1777c478bd9Sstevel@tonic-gate #define MSR_AMD_LSTAR 0xc0000082 /* target %rip of 64-bit syscall */ 1787c478bd9Sstevel@tonic-gate #define MSR_AMD_CSTAR 0xc0000083 /* target %rip of 32-bit syscall */ 1797c478bd9Sstevel@tonic-gate #define MSR_AMD_SFMASK 0xc0000084 /* syscall flag mask */ 1807c478bd9Sstevel@tonic-gate 1817c478bd9Sstevel@tonic-gate /* AMD's FS.base and GS.base MSRs */ 1827c478bd9Sstevel@tonic-gate 1837c478bd9Sstevel@tonic-gate #define MSR_AMD_FSBASE 0xc0000100 /* 64-bit base address for %fs */ 1847c478bd9Sstevel@tonic-gate #define MSR_AMD_GSBASE 0xc0000101 /* 64-bit base address for %gs */ 1857c478bd9Sstevel@tonic-gate #define MSR_AMD_KGSBASE 0xc0000102 /* swapgs swaps this with gsbase */ 186ae115bc7Smrj #define MSR_AMD_TSCAUX 0xc0000103 /* %ecx value on rdtscp insn */ 1877c478bd9Sstevel@tonic-gate 1887c478bd9Sstevel@tonic-gate /* AMD's configuration MSRs, weakly documented in the revision guide */ 1897c478bd9Sstevel@tonic-gate 1907c478bd9Sstevel@tonic-gate #define MSR_AMD_DC_CFG 0xc0011022 1917c478bd9Sstevel@tonic-gate 1927c478bd9Sstevel@tonic-gate #define AMD_DC_CFG_DIS_CNV_WC_SSO (UINT64_C(1) << 3) 1937c478bd9Sstevel@tonic-gate #define AMD_DC_CFG_DIS_SMC_CHK_BUF (UINT64_C(1) << 10) 1947c478bd9Sstevel@tonic-gate 1957c478bd9Sstevel@tonic-gate /* AMD's HWCR MSR */ 1962201b277Skucharsk 1977c478bd9Sstevel@tonic-gate #define MSR_AMD_HWCR 0xc0010015 1987c478bd9Sstevel@tonic-gate 199512cf780Skchow #define AMD_HWCR_TLBCACHEDIS (UINT64_C(1) << 3) 2007aec1d6eScindi #define AMD_HWCR_FFDIS 0x00040 /* disable TLB Flush Filter */ 2017aec1d6eScindi #define AMD_HWCR_MCI_STATUS_WREN 0x40000 /* enable write of MCi_STATUS */ 2027c478bd9Sstevel@tonic-gate 2032201b277Skucharsk /* AMD's NorthBridge Config MSR, SHOULD ONLY BE WRITTEN TO BY BIOS */ 2042201b277Skucharsk 2052201b277Skucharsk #define MSR_AMD_NB_CFG 0xc001001f 2062201b277Skucharsk 2072201b277Skucharsk #define AMD_NB_CFG_SRQ_HEARTBEAT (UINT64_C(1) << 20) 208cb9f16ebSkchow #define AMD_NB_CFG_SRQ_SPR (UINT64_C(1) << 32) 2092201b277Skucharsk 210512cf780Skchow #define MSR_AMD_BU_CFG 0xc0011023 211512cf780Skchow 212512cf780Skchow #define AMD_BU_CFG_E298 (UINT64_C(1) << 1) 213512cf780Skchow 2145e54b56dSHans Rosenfeld #define MSR_AMD_DE_CFG 0xc0011029 2155e54b56dSHans Rosenfeld 2165e54b56dSHans Rosenfeld #define AMD_DE_CFG_E721 (UINT64_C(1)) 2175e54b56dSHans Rosenfeld 218512cf780Skchow /* AMD's osvw MSRs */ 219512cf780Skchow #define MSR_AMD_OSVW_ID_LEN 0xc0010140 220512cf780Skchow #define MSR_AMD_OSVW_STATUS 0xc0010141 221512cf780Skchow 222512cf780Skchow 223512cf780Skchow #define OSVW_ID_LEN_MASK 0xffffULL 224512cf780Skchow #define OSVW_ID_CNT_PER_MSR 64 225512cf780Skchow 226f78a91cdSjjc /* 227f78a91cdSjjc * Enable PCI Extended Configuration Space (ECS) on Greyhound 228f78a91cdSjjc */ 229f78a91cdSjjc #define AMD_GH_NB_CFG_EN_ECS (UINT64_C(1) << 46) 230f78a91cdSjjc 231adc586deSMark Johnson /* AMD microcode patch loader */ 2327c478bd9Sstevel@tonic-gate #define MSR_AMD_PATCHLEVEL 0x8b 233adc586deSMark Johnson #define MSR_AMD_PATCHLOADER 0xc0010020 2347c478bd9Sstevel@tonic-gate 2357c478bd9Sstevel@tonic-gate #ifdef __cplusplus 2367c478bd9Sstevel@tonic-gate } 2377c478bd9Sstevel@tonic-gate #endif 2387c478bd9Sstevel@tonic-gate 2397c478bd9Sstevel@tonic-gate #endif /* !_SYS_CONTROLREGS_H */ 240