1/*
2 * Copyright (c) 2002-2005 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 * Authors: Ron Dreslinski
29 * Steve Reinhardt
30 * Ali Saidi
31 */
32
33/**
34 * @file Decleration of a request, the overall memory request consisting of
35 the parts of the request that are persistent throughout the transaction.
36 */
37
38#ifndef __MEM_REQUEST_HH__
39#define __MEM_REQUEST_HH__
40
41#include "arch/isa_traits.hh"
42
43class Request;
44
45typedef Request* RequestPtr;
46
47
48/** The request is a Load locked/store conditional. */
49const unsigned LOCKED = 0x001;
50/** The virtual address is also the physical address. */
51const unsigned PHYSICAL = 0x002;
52/** The request is an ALPHA VPTE pal access (hw_ld). */
53const unsigned VPTE = 0x004;
54/** Use the alternate mode bits in ALPHA. */
55const unsigned ALTMODE = 0x008;
56/** The request is to an uncacheable address. */
57const unsigned UNCACHEABLE = 0x010;
58/** The request should not cause a page fault. */
59const unsigned NO_FAULT = 0x020;
60/** The request should be prefetched into the exclusive state. */
61const unsigned PF_EXCLUSIVE = 0x100;
62/** The request should be marked as LRU. */
63const unsigned EVICT_NEXT = 0x200;
64/** The request should ignore unaligned access faults */
65const unsigned NO_ALIGN_FAULT = 0x400;
66/** The request was an instruction read. */
67const unsigned INST_READ = 0x800;
68
69class Request
70{
71 private:
72 /**
73 * The physical address of the request. Valid only if validPaddr
74 * is set. */
75 Addr paddr;
76
77 /**
78 * The size of the request. This field must be set when vaddr or
79 * paddr is written via setVirt() or setPhys(), so it is always
80 * valid as long as one of the address fields is valid. */
81 int size;
82
83 /** Flag structure for the request. */
84 uint32_t flags;
85
86 /**
87 * The time this request was started. Used to calculate
88 * latencies. This field is set to curTick any time paddr or vaddr
89 * is written. */
90 Tick time;
91
92 /** The address space ID. */
93 int asid;
94 /** The virtual address of the request. */
95 Addr vaddr;
96
97 /** The return value of store conditional. */
98 uint64_t scResult;
99
100 /** The cpu number (for statistics, typically). */
101 int cpuNum;
102 /** The requesting thread id (for statistics, typically). */
103 int threadNum;
104
105 /** program counter of initiating access; for tracing/debugging */
106 Addr pc;
107
108 /** Whether or not paddr is valid (has been written yet). */
109 bool validPaddr;
110 /** Whether or not the asid & vaddr are valid. */
111 bool validAsidVaddr;
112 /** Whether or not the sc result is valid. */
113 bool validScResult;
114 /** Whether or not the cpu number & thread ID are valid. */
115 bool validCpuAndThreadNums;
116 /** Whether or not the pc is valid. */
117 bool validPC;
118
119 public:
120 /** Minimal constructor. No fields are initialized. */
121 Request()
122 : validPaddr(false), validAsidVaddr(false),
123 validScResult(false), validCpuAndThreadNums(false), validPC(false)
124 {}
125
126 /**
127 * Constructor for physical (e.g. device) requests. Initializes
128 * just physical address, size, flags, and timestamp (to curTick).
129 * These fields are adequate to perform a request. */
130 Request(Addr _paddr, int _size, int _flags)
131 : validCpuAndThreadNums(false)
132 { setPhys(_paddr, _size, _flags); }
133
134 Request(int _asid, Addr _vaddr, int _size, int _flags, Addr _pc,
135 int _cpuNum, int _threadNum)
136 {
137 setThreadContext(_cpuNum, _threadNum);
138 setVirt(_asid, _vaddr, _size, _flags, _pc);
139 }
140
141 /**
142 * Set up CPU and thread numbers. */
143 void setThreadContext(int _cpuNum, int _threadNum)
144 {
145 cpuNum = _cpuNum;
146 threadNum = _threadNum;
147 validCpuAndThreadNums = true;
148 }
149
150 /**
151 * Set up a physical (e.g. device) request in a previously
152 * allocated Request object. */
153 void setPhys(Addr _paddr, int _size, int _flags)
154 {
155 paddr = _paddr;
156 size = _size;
157 flags = _flags;
158 time = curTick;
159 validPaddr = true;
160 validAsidVaddr = false;
161 validPC = false;
162 validScResult = false;
163 }
164
165 /**
166 * Set up a virtual (e.g., CPU) request in a previously
167 * allocated Request object. */
168 void setVirt(int _asid, Addr _vaddr, int _size, int _flags, Addr _pc)
169 {
170 asid = _asid;
171 vaddr = _vaddr;
172 size = _size;
173 flags = _flags;
174 pc = _pc;
175 time = curTick;
176 validPaddr = false;
177 validAsidVaddr = true;
178 validPC = true;
179 validScResult = false;
180 }
181
182 /** Set just the physical address. This should only be used to
183 * record the result of a translation, and thus the vaddr must be
184 * valid before this method is called. Otherwise, use setPhys()
185 * to guarantee that the size and flags are also set.
186 */
187 void setPaddr(Addr _paddr)
188 {
189 assert(validAsidVaddr);
190 paddr = _paddr;
191 validPaddr = true;
192 }
193
194 /** Accessor for paddr. */
195 Addr getPaddr() { assert(validPaddr); return paddr; }
196
197 /** Accessor for size. */
198 int getSize() { assert(validPaddr || validAsidVaddr); return size; }
199 /** Accessor for time. */
200 Tick getTime() { assert(validPaddr || validAsidVaddr); return time; }
201
202 /** Accessor for flags. */
203 uint32_t getFlags() { assert(validPaddr || validAsidVaddr); return flags; }
204 /** Accessor for paddr. */
205 void setFlags(uint32_t _flags)
206 { assert(validPaddr || validAsidVaddr); flags = _flags; }
207
208 /** Accessor function for vaddr.*/
209 Addr getVaddr() { assert(validAsidVaddr); return vaddr; }
210
211 /** Accessor function for asid.*/
212 int getAsid() { assert(validAsidVaddr); return asid; }
213
214 /** Accessor function to check if sc result is valid. */
215 bool scResultValid() { return validScResult; }
216 /** Accessor function for store conditional return value.*/
217 uint64_t getScResult() { assert(validScResult); return scResult; }
218 /** Accessor function for store conditional return value.*/
219 void setScResult(uint64_t _scResult)
220 { scResult = _scResult; validScResult = true; }
221
222 /** Accessor function for cpu number.*/
223 int getCpuNum() { assert(validCpuAndThreadNums); return cpuNum; }
224 /** Accessor function for thread number.*/
225 int getThreadNum() { assert(validCpuAndThreadNums); return threadNum; }
226
227 /** Accessor function for pc.*/
228 Addr getPC() { assert(validPC); return pc; }
229
230 /** Accessor Function to Check Cacheability. */
231 bool isUncacheable() { return getFlags() & UNCACHEABLE; }
232
233 bool isInstRead() { return getFlags() & INST_READ; }
234
235 friend class Packet;
236};
237
238#endif // __MEM_REQUEST_HH__