gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules 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 
29 #include "arch/x86/regs/msr.hh"
30 
31 namespace X86ISA
32 {
33 
34 typedef MsrMap::value_type MsrVal;
35 
36 const MsrMap::value_type msrMapData[] = {
37  MsrVal(0x10, MISCREG_TSC),
39  MsrVal(0xFE, MISCREG_MTRRCAP),
43  MsrVal(0x179, MISCREG_MCG_CAP),
44  MsrVal(0x17A, MISCREG_MCG_STATUS),
45  MsrVal(0x17B, MISCREG_MCG_CTL),
78  MsrVal(0x277, MISCREG_PAT),
79  MsrVal(0x2FF, MISCREG_DEF_TYPE),
80  MsrVal(0x400, MISCREG_MC0_CTL),
81  MsrVal(0x404, MISCREG_MC1_CTL),
82  MsrVal(0x408, MISCREG_MC2_CTL),
83  MsrVal(0x40C, MISCREG_MC3_CTL),
84  MsrVal(0x410, MISCREG_MC4_CTL),
85  MsrVal(0x414, MISCREG_MC5_CTL),
86  MsrVal(0x418, MISCREG_MC6_CTL),
87  MsrVal(0x41C, MISCREG_MC7_CTL),
88  MsrVal(0x401, MISCREG_MC0_STATUS),
89  MsrVal(0x405, MISCREG_MC1_STATUS),
90  MsrVal(0x409, MISCREG_MC2_STATUS),
91  MsrVal(0x40D, MISCREG_MC3_STATUS),
92  MsrVal(0x411, MISCREG_MC4_STATUS),
93  MsrVal(0x415, MISCREG_MC5_STATUS),
94  MsrVal(0x419, MISCREG_MC6_STATUS),
95  MsrVal(0x41D, MISCREG_MC7_STATUS),
96  MsrVal(0x402, MISCREG_MC0_ADDR),
97  MsrVal(0x406, MISCREG_MC1_ADDR),
98  MsrVal(0x40A, MISCREG_MC2_ADDR),
99  MsrVal(0x40E, MISCREG_MC3_ADDR),
100  MsrVal(0x412, MISCREG_MC4_ADDR),
101  MsrVal(0x416, MISCREG_MC5_ADDR),
102  MsrVal(0x41A, MISCREG_MC6_ADDR),
103  MsrVal(0x41E, MISCREG_MC7_ADDR),
104  MsrVal(0x403, MISCREG_MC0_MISC),
105  MsrVal(0x407, MISCREG_MC1_MISC),
106  MsrVal(0x40B, MISCREG_MC2_MISC),
107  MsrVal(0x40F, MISCREG_MC3_MISC),
108  MsrVal(0x413, MISCREG_MC4_MISC),
109  MsrVal(0x417, MISCREG_MC5_MISC),
110  MsrVal(0x41B, MISCREG_MC6_MISC),
111  MsrVal(0x41F, MISCREG_MC7_MISC),
112  MsrVal(0xC0000080, MISCREG_EFER),
113  MsrVal(0xC0000081, MISCREG_STAR),
114  MsrVal(0xC0000082, MISCREG_LSTAR),
115  MsrVal(0xC0000083, MISCREG_CSTAR),
116  MsrVal(0xC0000084, MISCREG_SF_MASK),
117  MsrVal(0xC0000100, MISCREG_FS_BASE),
118  MsrVal(0xC0000101, MISCREG_GS_BASE),
119  MsrVal(0xC0000102, MISCREG_KERNEL_GS_BASE),
120  MsrVal(0xC0000103, MISCREG_TSC_AUX),
121  MsrVal(0xC0010000, MISCREG_PERF_EVT_SEL0),
122  MsrVal(0xC0010001, MISCREG_PERF_EVT_SEL1),
123  MsrVal(0xC0010002, MISCREG_PERF_EVT_SEL2),
124  MsrVal(0xC0010003, MISCREG_PERF_EVT_SEL3),
125  MsrVal(0xC0010004, MISCREG_PERF_EVT_CTR0),
126  MsrVal(0xC0010005, MISCREG_PERF_EVT_CTR1),
127  MsrVal(0xC0010006, MISCREG_PERF_EVT_CTR2),
128  MsrVal(0xC0010007, MISCREG_PERF_EVT_CTR3),
129  MsrVal(0xC0010010, MISCREG_SYSCFG),
130  MsrVal(0xC0010016, MISCREG_IORR_BASE0),
131  MsrVal(0xC0010017, MISCREG_IORR_BASE1),
132  MsrVal(0xC0010018, MISCREG_IORR_MASK0),
133  MsrVal(0xC0010019, MISCREG_IORR_MASK1),
134  MsrVal(0xC001001A, MISCREG_TOP_MEM),
135  MsrVal(0xC001001D, MISCREG_TOP_MEM2),
136  MsrVal(0xC0010114, MISCREG_VM_CR),
137  MsrVal(0xC0010115, MISCREG_IGNNE),
138  MsrVal(0xC0010116, MISCREG_SMM_CTL),
139  MsrVal(0xC0010117, MISCREG_VM_HSAVE_PA)
140 };
141 
142 static const unsigned msrMapSize = sizeof(msrMapData) / sizeof(msrMapData[0]);
143 
144 const MsrMap msrMap(msrMapData, msrMapData + msrMapSize);
145 
146 bool
148 {
149  MsrMap::const_iterator it(msrMap.find(addr));
150  if (it == msrMap.end()) {
151  return false;
152  } else {
153  regNum = it->second;
154  return true;
155  }
156 }
157 
158 } // namespace X86ISA
MiscRegIndex
Definition: misc.hh:100
static const unsigned msrMapSize
Definition: msr.cc:142
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
bool msrAddrToIndex(MiscRegIndex &regNum, Addr addr)
Find and return the misc reg corresponding to an MSR address.
Definition: msr.cc:147
const MsrMap msrMap
Map between MSR addresses and their corresponding misc registers.
MsrMap::value_type MsrVal
Definition: msr.cc:34
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
const MsrMap::value_type msrMapData[]
Definition: msr.cc:36
Bitfield< 3 > addr
Definition: types.hh:79
std::unordered_map< Addr, MiscRegIndex > MsrMap
Definition: msr.hh:40

Generated on Thu May 28 2020 16:21:29 for gem5 by doxygen 1.8.13