gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
msr.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 Google
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * Authors: Gabe Black
29  */
30 
31 #include "arch/x86/regs/msr.hh"
32 
33 namespace X86ISA
34 {
35 
36 typedef MsrMap::value_type MsrVal;
37 
38 const MsrMap::value_type msrMapData[] = {
39  MsrVal(0x10, MISCREG_TSC),
41  MsrVal(0xFE, MISCREG_MTRRCAP),
45  MsrVal(0x179, MISCREG_MCG_CAP),
46  MsrVal(0x17A, MISCREG_MCG_STATUS),
47  MsrVal(0x17B, MISCREG_MCG_CTL),
80  MsrVal(0x277, MISCREG_PAT),
81  MsrVal(0x2FF, MISCREG_DEF_TYPE),
82  MsrVal(0x400, MISCREG_MC0_CTL),
83  MsrVal(0x404, MISCREG_MC1_CTL),
84  MsrVal(0x408, MISCREG_MC2_CTL),
85  MsrVal(0x40C, MISCREG_MC3_CTL),
86  MsrVal(0x410, MISCREG_MC4_CTL),
87  MsrVal(0x414, MISCREG_MC5_CTL),
88  MsrVal(0x418, MISCREG_MC6_CTL),
89  MsrVal(0x41C, MISCREG_MC7_CTL),
90  MsrVal(0x401, MISCREG_MC0_STATUS),
91  MsrVal(0x405, MISCREG_MC1_STATUS),
92  MsrVal(0x409, MISCREG_MC2_STATUS),
93  MsrVal(0x40D, MISCREG_MC3_STATUS),
94  MsrVal(0x411, MISCREG_MC4_STATUS),
95  MsrVal(0x415, MISCREG_MC5_STATUS),
96  MsrVal(0x419, MISCREG_MC6_STATUS),
97  MsrVal(0x41D, MISCREG_MC7_STATUS),
98  MsrVal(0x402, MISCREG_MC0_ADDR),
99  MsrVal(0x406, MISCREG_MC1_ADDR),
100  MsrVal(0x40A, MISCREG_MC2_ADDR),
101  MsrVal(0x40E, MISCREG_MC3_ADDR),
102  MsrVal(0x412, MISCREG_MC4_ADDR),
103  MsrVal(0x416, MISCREG_MC5_ADDR),
104  MsrVal(0x41A, MISCREG_MC6_ADDR),
105  MsrVal(0x41E, MISCREG_MC7_ADDR),
106  MsrVal(0x403, MISCREG_MC0_MISC),
107  MsrVal(0x407, MISCREG_MC1_MISC),
108  MsrVal(0x40B, MISCREG_MC2_MISC),
109  MsrVal(0x40F, MISCREG_MC3_MISC),
110  MsrVal(0x413, MISCREG_MC4_MISC),
111  MsrVal(0x417, MISCREG_MC5_MISC),
112  MsrVal(0x41B, MISCREG_MC6_MISC),
113  MsrVal(0x41F, MISCREG_MC7_MISC),
114  MsrVal(0xC0000080, MISCREG_EFER),
115  MsrVal(0xC0000081, MISCREG_STAR),
116  MsrVal(0xC0000082, MISCREG_LSTAR),
117  MsrVal(0xC0000083, MISCREG_CSTAR),
118  MsrVal(0xC0000084, MISCREG_SF_MASK),
119  MsrVal(0xC0000100, MISCREG_FS_BASE),
120  MsrVal(0xC0000101, MISCREG_GS_BASE),
121  MsrVal(0xC0000102, MISCREG_KERNEL_GS_BASE),
122  MsrVal(0xC0000103, MISCREG_TSC_AUX),
123  MsrVal(0xC0010000, MISCREG_PERF_EVT_SEL0),
124  MsrVal(0xC0010001, MISCREG_PERF_EVT_SEL1),
125  MsrVal(0xC0010002, MISCREG_PERF_EVT_SEL2),
126  MsrVal(0xC0010003, MISCREG_PERF_EVT_SEL3),
127  MsrVal(0xC0010004, MISCREG_PERF_EVT_CTR0),
128  MsrVal(0xC0010005, MISCREG_PERF_EVT_CTR1),
129  MsrVal(0xC0010006, MISCREG_PERF_EVT_CTR2),
130  MsrVal(0xC0010007, MISCREG_PERF_EVT_CTR3),
131  MsrVal(0xC0010010, MISCREG_SYSCFG),
132  MsrVal(0xC0010016, MISCREG_IORR_BASE0),
133  MsrVal(0xC0010017, MISCREG_IORR_BASE1),
134  MsrVal(0xC0010018, MISCREG_IORR_MASK0),
135  MsrVal(0xC0010019, MISCREG_IORR_MASK1),
136  MsrVal(0xC001001A, MISCREG_TOP_MEM),
137  MsrVal(0xC001001D, MISCREG_TOP_MEM2),
138  MsrVal(0xC0010114, MISCREG_VM_CR),
139  MsrVal(0xC0010115, MISCREG_IGNNE),
140  MsrVal(0xC0010116, MISCREG_SMM_CTL),
141  MsrVal(0xC0010117, MISCREG_VM_HSAVE_PA)
142 };
143 
144 static const unsigned msrMapSize = sizeof(msrMapData) / sizeof(msrMapData[0]);
145 
147 
148 bool
150 {
151  MsrMap::const_iterator it(msrMap.find(addr));
152  if (it == msrMap.end()) {
153  return false;
154  } else {
155  regNum = it->second;
156  return true;
157  }
158 }
159 
160 } // namespace X86ISA
MiscRegIndex
Definition: misc.hh:101
static const unsigned msrMapSize
Definition: msr.cc:144
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
bool msrAddrToIndex(MiscRegIndex &regNum, Addr addr)
Find and return the misc reg corresponding to an MSR address.
Definition: msr.cc:149
const MsrMap msrMap
Map between MSR addresses and their corresponding misc registers.
MsrMap::value_type MsrVal
Definition: msr.cc:36
const MsrMap::value_type msrMapData[]
Definition: msr.cc:38
Bitfield< 3 > addr
Definition: types.hh:81
std::unordered_map< Addr, MiscRegIndex > MsrMap
Definition: msr.hh:42

Generated on Fri Jun 9 2017 13:03:40 for gem5 by doxygen 1.8.6