Deleted Added
sdiff udiff text old ( 3817:7df12d77afc2 ) new ( 3825:9b5e6c4d3ecb )
full compact
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 * Authors: Ali Saidi
29 */
30
31#include "arch/sparc/miscregfile.hh"
32#include "base/bitfield.hh"
33#include "base/trace.hh"
34#include "cpu/base.hh"
35#include "cpu/thread_context.hh"
36
37using namespace SparcISA;
38
39void
40MiscRegFile::setFSRegWithEffect(int miscReg, const MiscReg &val,
41 ThreadContext *tc)
42{
43 int64_t time;
44 int oldLevel, newLevel;
45 switch (miscReg) {
46 /* Full system only ASRs */
47 case MISCREG_SOFTINT:
48 // Check if we are going to interrupt because of something
49 oldLevel = InterruptLevel(softint);
50 newLevel = InterruptLevel(val);
51 setReg(miscReg, val);
52 if (newLevel > oldLevel)
53 ; // MUST DO SOMETHING HERE TO TELL CPU TO LOOK FOR INTERRUPTS XXX
54 //tc->getCpuPtr()->checkInterrupts = true;
55 panic("SOFTINT not implemented\n");
56 break;
57
58 case MISCREG_SOFTINT_CLR:
59 return setRegWithEffect(miscReg, ~val & softint, tc);
60 case MISCREG_SOFTINT_SET:
61 return setRegWithEffect(miscReg, val | softint, tc);
62
63 case MISCREG_TICK_CMPR:
64 if (tickCompare == NULL)
65 tickCompare = new TickCompareEvent(this, tc);
66 setReg(miscReg, val);
67 if ((tick_cmpr & mask(63)) && tickCompare->scheduled())
68 tickCompare->deschedule();
69 time = (tick_cmpr & mask(63)) - (tick & mask(63));
70 if (!(tick_cmpr & ~mask(63)) && time > 0)
71 tickCompare->schedule(time * tc->getCpuPtr()->cycles(1));
72 break;
73
74 case MISCREG_STICK_CMPR:
75 if (sTickCompare == NULL)
76 sTickCompare = new STickCompareEvent(this, tc);
77 setReg(miscReg, val);
78 if ((stick_cmpr & mask(63)) && sTickCompare->scheduled())
79 sTickCompare->deschedule();
80 time = (stick_cmpr & mask(63)) - (stick & mask(63));
81 if (!(stick_cmpr & ~mask(63)) && time > 0)
82 sTickCompare->schedule(time * tc->getCpuPtr()->cycles(1));
83 break;
84
85 case MISCREG_PIL:
86 setReg(miscReg, val);
87 //tc->getCpuPtr()->checkInterrupts;
88 // MUST DO SOMETHING HERE TO TELL CPU TO LOOK FOR INTERRUPTS XXX
89 panic("PIL not implemented\n");
90 break;
91
92 case MISCREG_HVER:
93 panic("Shouldn't be writing HVER\n");
94
95 case MISCREG_HTBA:
96 // clear lower 7 bits on writes.
97 setReg(miscReg, val & ULL(~0x7FFF));
98 break;
99
100 case MISCREG_HSTICK_CMPR:
101 if (hSTickCompare == NULL)
102 hSTickCompare = new HSTickCompareEvent(this, tc);
103 setReg(miscReg, val);
104 if ((hstick_cmpr & mask(63)) && hSTickCompare->scheduled())
105 hSTickCompare->deschedule();
106 time = (hstick_cmpr & mask(63)) - (stick & mask(63));
107 if (!(hstick_cmpr & ~mask(63)) && time > 0)
108 hSTickCompare->schedule(time * tc->getCpuPtr()->cycles(1));
109 break;
110
111 case MISCREG_HPSTATE:
112 case MISCREG_HTSTATE:
113 case MISCREG_STRAND_STS_REG:
114 setReg(miscReg, val);
115 break;
116
117 default:
118 panic("Invalid write to FS misc register\n");
119 }
120}
121
122MiscReg
123MiscRegFile::readFSRegWithEffect(int miscReg, ThreadContext * tc)
124{
125 switch (miscReg) {
126
127 /* Privileged registers. */
128 case MISCREG_SOFTINT:
129 case MISCREG_TICK_CMPR:
130 case MISCREG_STICK_CMPR:
131 case MISCREG_PIL:
132 case MISCREG_HPSTATE:
133 case MISCREG_HINTP:
134 case MISCREG_HTSTATE:
135 case MISCREG_STRAND_STS_REG:
136 case MISCREG_HSTICK_CMPR:
137 return readReg(miscReg) ;
138
139 case MISCREG_HTBA:
140 return readReg(miscReg) & ULL(~0x7FFF);
141 case MISCREG_HVER:
142 return NWindows | MaxTL << 8 | MaxGL << 16;
143
144 default:
145 panic("Invalid read to FS misc register\n");
146 }
147}
148/*
149 In Niagra STICK==TICK so this isn't needed
150 case MISCREG_STICK:
151 SparcSystem *sys;
152 sys = dynamic_cast<SparcSystem*>(tc->getSystemPtr());
153 assert(sys != NULL);
154 return curTick/Clock::Int::ns - sys->sysTick | (stick & ~(mask(63)));
155*/
156
157
158
159void
160MiscRegFile::processTickCompare(ThreadContext *tc)
161{
162 panic("tick compare not implemented\n");
163}
164
165void
166MiscRegFile::processSTickCompare(ThreadContext *tc)
167{
168 panic("tick compare not implemented\n");
169}
170
171void
172MiscRegFile::processHSTickCompare(ThreadContext *tc)
173{
174 panic("tick compare not implemented\n");
175}
176