37 #include "debug/Quiesce.hh" 38 #include "debug/Timer.hh" 52 if (pil < 14 && softint & 0x10000)
56 if (pil < 14 && softint & 0x1)
62 for (
int bit = 15; bit > 0; --bit) {
63 if (1 << bit & softint && bit > pil)
75 {
"asi",
"tick",
"fprs",
"pcr",
"pic",
76 "gsr",
"softint_set",
"softint_clr",
"softint",
"tick_cmpr",
77 "stick",
"stick_cmpr",
78 "tpc",
"tnpc",
"tstate",
"tt",
"privtick",
"tba",
"pstate",
"tl",
81 "hpstate",
"htstate",
"hintp",
"htba",
"hver",
"strand_sts_reg",
83 "fsr",
"prictx",
"secctx",
"partId",
"lsuCtrlReg",
84 "scratch0",
"scratch1",
"scratch2",
"scratch3",
"scratch4",
85 "scratch5",
"scratch6",
"scratch7",
"cpuMondoHead",
"cpuMondoTail",
86 "devMondoHead",
"devMondoTail",
"resErrorHead",
"resErrorTail",
87 "nresErrorHead",
"nresErrorTail",
"TlbData" };
88 return miscRegName[
index];
100 setMiscRegNoEffect(miscReg, val);;
109 if (tickCompare == NULL)
111 setMiscRegNoEffect(miscReg, val);
112 if ((tick_cmpr & ~
mask(63)) && tickCompare->scheduled())
114 time = (tick_cmpr &
mask(63)) - (tick &
mask(63));
115 if (!(tick_cmpr & ~
mask(63)) && time > 0) {
116 if (tickCompare->scheduled())
120 DPRINTF(Timer,
"writing to TICK compare register value %#X\n", val);
124 if (sTickCompare == NULL)
126 setMiscRegNoEffect(miscReg, val);
127 if ((stick_cmpr & ~
mask(63)) && sTickCompare->scheduled())
129 time = ((int64_t)(stick_cmpr &
mask(63)) - (int64_t)stick) -
131 if (!(stick_cmpr & ~
mask(63)) && time > 0) {
132 if (sTickCompare->scheduled())
136 DPRINTF(Timer,
"writing to sTICK compare register value %#X\n", val);
140 setMiscRegNoEffect(miscReg, val);
144 setMiscRegNoEffect(miscReg, val);
149 panic(
"Shouldn't be writing HVER\n");
152 setMiscRegNoEffect(miscReg, val);
161 setMiscRegNoEffect(miscReg, val &
ULL(~0x7FFF));
166 setMiscRegNoEffect(miscReg, val);
167 if (cpu_mondo_head != cpu_mondo_tail)
174 setMiscRegNoEffect(miscReg, val);
175 if (dev_mondo_head != dev_mondo_tail)
182 setMiscRegNoEffect(miscReg, val);
183 if (res_error_head != res_error_tail)
190 setMiscRegNoEffect(miscReg, val);
195 if (hSTickCompare == NULL)
197 setMiscRegNoEffect(miscReg, val);
198 if ((hstick_cmpr & ~
mask(63)) && hSTickCompare->scheduled())
200 time = ((int64_t)(hstick_cmpr &
mask(63)) - (int64_t)stick) -
202 if (!(hstick_cmpr & ~
mask(63)) && time > 0) {
203 if (hSTickCompare->scheduled())
207 DPRINTF(Timer,
"writing to hsTICK compare register value %#X\n", val);
212 HPSTATE newVal =
val;
215 setMiscRegNoEffect(miscReg, newVal);
217 if (newVal.tlz &&
tl == 0 && !newVal.hpriv)
224 setMiscRegNoEffect(miscReg, val);
229 panic(
"No support for setting spec_en bit\n");
230 setMiscRegNoEffect(miscReg,
bits(val,0,0));
231 if (!
bits(val,0,0)) {
232 DPRINTF(Quiesce,
"Cpu executed quiescing instruction\n");
241 panic(
"Invalid write to FS misc register %s\n",
269 return readMiscRegNoEffect(miscReg) ;
272 return readMiscRegNoEffect(miscReg) &
ULL(~0x7FFF);
275 return ULL(0x3e) << 48 |
287 temp = readMiscRegNoEffect(miscReg) & (STS::active | STS::speculative);
297 temp |= STS::st_run << (STS::shft_fsm0 -
298 ((x & 0x3) * (STS::shft_fsm0-STS::shft_fsm1)));
302 temp |= STS::st_idle << (STS::shft_fsm0 -
303 ((x & 0x3) * (STS::shft_fsm0-STS::shft_fsm1)));
306 temp |= STS::st_halt << (STS::shft_fsm0 -
307 ((x & 0x3) * (STS::shft_fsm0-STS::shft_fsm1)));
310 panic(
"What state are we in?!\n");
316 panic(
"Invalid read to FS misc register\n");
323 panic(
"tick compare not implemented\n");
335 delay = ((int64_t)(stick_cmpr &
mask(63)) - (int64_t)stick) -
337 assert(delay >= 0 &&
"stick compare missed interrupt cycle");
340 DPRINTF(Timer,
"STick compare cycle reached at %#x\n",
341 (stick_cmpr &
mask(63)));
362 delay = ((int64_t)(hstick_cmpr &
mask(63)) - (int64_t)stick) -
364 assert(delay >= 0 &&
"hstick compare missed interrupt cycle");
367 DPRINTF(Timer,
"HSTick compare cycle reached at %#x\n",
368 (stick_cmpr &
mask(63)));
#define panic(...)
This implements a cprintf based panic() function.
virtual System * getSystemPtr()=0
Cycles is a wrapper class for representing cycle counts, i.e.
virtual ::Kernel::Statistics * getKernelStats()=0
void processSTickCompare(ThreadContext *tc)
void clearInterrupt(ThreadID tid, int int_num, int index)
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Overload hash function for BasicBlockRange type.
virtual BaseCPU * getCpuPtr()=0
const char *const miscRegName[]
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void processTickCompare(ThreadContext *tc)
Process a tick compare event and generate an interrupt on the cpu if appropriate. ...
void processHSTickCompare(ThreadContext *tc)
Hyper privileged registers.
static string getMiscRegName(RegIndex index)
std::vector< ThreadContext * > threadContexts
void deschedule(Event &event)
virtual void suspend()=0
Set the status to Suspended.
unsigned numContexts() const
void schedule(Event &event, Tick when)
#define ULL(N)
uint64_t constant
Tick clockEdge(Cycles cycles=Cycles(0)) const
Determine the tick when a cycle begins, by default the current one, but the argument also enables the...
RegVal readFSReg(int miscReg, ThreadContext *tc)
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
virtual ContextID contextId() const =0
virtual Status status() const =0
void checkSoftInt(ThreadContext *tc)
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
void postInterrupt(ThreadID tid, int int_num, int index)
void setFSReg(int miscReg, RegVal val, ThreadContext *tc)