gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
asi.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006 The Regents of The University of Michigan
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 #ifndef __ARCH_SPARC_ASI_HH__
30 #define __ARCH_SPARC_ASI_HH__
31 
32 namespace SparcISA
33 {
34 
35 enum ASI {
36  ASI_IMPLICIT = 0x00,
37  /* Priveleged ASIs */
38  // 0x00-0x03 implementation dependent
39  ASI_NUCLEUS = 0x4,
40  ASI_N = 0x4,
41  // 0x05-0x0B implementation dependent
42  ASI_NL = 0xC,
44  // 0x0D-0x0F implementation dependent
45  ASI_AIUP = 0x10,
47  ASI_AIUS = 0x11,
49  // 0x12-0x13 implementation dependent
50  ASI_REAL = 0x14,
51  ASI_REAL_IO = 0x15,
52  ASI_BLK_AIUP = 0x16,
54  ASI_BLK_AIUS = 0x17,
56  ASI_AIUP_L = 0x18,
58  ASI_AIUS_L = 0x19,
60  // 0x1A-0x1B implementation dependent
61  ASI_REAL_L = 0x1C,
63  ASI_REAL_IO_L = 0x1D,
70  ASI_MMU = 0x21,
71  ASI_LDTX_AIUP = 0x22,
73  ASI_LDTX_AIUS = 0x23,
75  ASI_QUAD_LDD = 0x24,
76  ASI_QUEUE = 0x25,
79  ASI_LDTX_N = 0x27,
83  // 0x28-0x29 implementation dependent
92  ASI_LTX_L = 0x2C,
94  // 0x2D implementation dependent
97  ASI_LDTX_NL = 0x2F,
99  // 0x20 implementation dependent
103  // 0x34 implementation dependent
107  // 0x38 implementation dependent
111  // 0x3C implementation dependent
117  // 0x41 implementation dependent
121  // 0x43 implementation dependent
134  ASI_IMMU = 0x50,
137  // 0x53 implementation dependent
142  ASI_DMMU = 0x58,
151  // 0x61-0x62 implementation dependent
153  // 0x64-0x65 implementation dependent
156  // 0x68-0x71 implementation dependent
160  // 0x74-0x7F reserved
161  /* Unpriveleged ASIs */
162  ASI_P = 0x80,
164  ASI_S = 0x81,
166  ASI_PNF = 0x82,
168  ASI_SNF = 0x83,
170  // 0x84-0x87 reserved
171  ASI_PL = 0x88,
173  ASI_SL = 0x89,
175  ASI_PNFL = 0x8A,
177  ASI_SNFL = 0x8B,
179  // 0x8C-0xBF reserved
180  ASI_PST8_P = 0xC0,
182  ASI_PST8_S = 0xC1,
184  ASI_PST16_P = 0xC2,
186  ASI_PST16_S = 0xC3,
188  ASI_PST32_P = 0xC4,
190  ASI_PST32_S = 0xC5,
192  // 0xC6-0xC7 implementation dependent
193  ASI_PST8_PL = 0xC8,
195  ASI_PST8_SL = 0xC9,
197  ASI_PST16_PL = 0xCA,
199  ASI_PST16_SL = 0xCB,
201  ASI_PST32_PL = 0xCC,
203  ASI_PST32_SL = 0xCD,
205  // 0xCE-0xCF implementation dependent
206  ASI_FL8_P = 0xD0,
208  ASI_FL8_S = 0xD1,
210  ASI_FL16_P = 0xD2,
212  ASI_FL16_S = 0xD3,
214  // 0xD4-0xD7 implementation dependent
215  ASI_FL8_PL = 0xD8,
217  ASI_FL8_SL = 0xD9,
219  ASI_FL16_PL = 0xDA,
221  ASI_FL16_SL = 0xDB,
223  // 0xDC-0xDF implementation dependent
224  // 0xE0-0xE1 reserved
225  ASI_LDTX_P = 0xE2,
227  ASI_LDTX_S = 0xE3,
229  // 0xE4-0xE9 implementation dependent
230  ASI_LDTX_PL = 0xEA,
232  ASI_LDTX_SL = 0xEB,
234  // 0xEC-0xEF implementation dependent
235  ASI_BLK_P = 0xF0,
237  ASI_BLK_S = 0xF1,
239  // 0xF2-0xF7 implementation dependent
240  ASI_BLK_PL = 0xF8,
242  ASI_BLK_SL = 0xF9,
244  // 0xFA-0xFF implementation dependent
245  MAX_ASI = 0xFF
246 };
247 
248 // Functions that classify an asi
249 bool asiIsBlock(ASI);
250 bool asiIsPrimary(ASI);
251 bool asiIsSecondary(ASI);
252 bool asiIsNucleus(ASI);
253 bool asiIsAsIfUser(ASI);
254 bool asiIsIO(ASI);
255 bool asiIsReal(ASI);
256 bool asiIsLittle(ASI);
257 bool asiIsTwin(ASI);
258 bool asiIsPartialStore(ASI);
259 bool asiIsFloatingLoad(ASI);
260 bool asiIsNoFault(ASI);
261 bool asiIsScratchPad(ASI);
262 bool asiIsCmt(ASI);
263 bool asiIsQueue(ASI);
264 bool asiIsDtlb(ASI);
265 bool asiIsMmu(ASI);
266 bool asiIsUnPriv(ASI);
267 bool asiIsPriv(ASI);
268 bool asiIsHPriv(ASI);
269 bool asiIsReg(ASI);
270 bool asiIsInterrupt(ASI);
271 bool asiIsSparcError(ASI);
272 };
273 
274 #endif // __ARCH_SPARC_ASI_HH__
bool asiIsDtlb(ASI)
bool asiIsReal(ASI asi)
Definition: asi.cc:139
bool asiIsSparcError(ASI asi)
Definition: asi.cc:309
bool asiIsFloatingLoad(ASI asi)
Definition: asi.cc:217
bool asiIsPriv(ASI asi)
Definition: asi.cc:288
bool asiIsIO(ASI asi)
Definition: asi.cc:132
bool asiIsQueue(ASI asi)
Definition: asi.cc:253
bool asiIsPrimary(ASI asi)
Definition: asi.cc:48
bool asiIsBlock(ASI asi)
Definition: asi.cc:35
bool asiIsReg(ASI asi)
Definition: asi.cc:301
bool asiIsHPriv(ASI asi)
Definition: asi.cc:295
bool asiIsScratchPad(ASI asi)
Definition: asi.cc:239
bool asiIsNoFault(ASI asi)
Definition: asi.cc:230
Definition: asi.cc:31
bool asiIsUnPriv(ASI asi)
Definition: asi.cc:282
bool asiIsCmt(ASI asi)
Definition: asi.cc:246
bool asiIsTwin(ASI asi)
Definition: asi.cc:185
bool asiIsInterrupt(ASI asi)
Definition: asi.cc:259
bool asiIsMmu(ASI asi)
Definition: asi.cc:267
bool asiIsAsIfUser(ASI asi)
Definition: asi.cc:115
bool asiIsLittle(ASI asi)
Definition: asi.cc:150
bool asiIsNucleus(ASI asi)
Definition: asi.cc:106
bool asiIsSecondary(ASI asi)
Definition: asi.cc:77
ASI
Definition: asi.hh:35
bool asiIsPartialStore(ASI asi)
Definition: asi.cc:200

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