malta_cchip.cc (8775:1e3ca5d77b53) malta_cchip.cc (9808:13ffc0066b76)
1/*
2 * Copyright (c) 2004-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: Ali Saidi
29 * Rick Strong
30 */
31
32/** @file
33 * Emulation of the Malta CChip CSRs
34 */
35
36#include <deque>
37#include <string>
38#include <vector>
39
40#include "base/trace.hh"
41#include "config/the_isa.hh"
42#include "cpu/intr_control.hh"
43#include "cpu/thread_context.hh"
44#include "debug/Malta.hh"
45#include "dev/mips/malta.hh"
46#include "dev/mips/malta_cchip.hh"
47#include "dev/mips/maltareg.h"
48#include "mem/packet.hh"
49#include "mem/packet_access.hh"
50#include "mem/port.hh"
51#include "params/MaltaCChip.hh"
52#include "sim/system.hh"
53
54using namespace std;
55using namespace TheISA;
56
57MaltaCChip::MaltaCChip(Params *p)
1/*
2 * Copyright (c) 2004-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: Ali Saidi
29 * Rick Strong
30 */
31
32/** @file
33 * Emulation of the Malta CChip CSRs
34 */
35
36#include <deque>
37#include <string>
38#include <vector>
39
40#include "base/trace.hh"
41#include "config/the_isa.hh"
42#include "cpu/intr_control.hh"
43#include "cpu/thread_context.hh"
44#include "debug/Malta.hh"
45#include "dev/mips/malta.hh"
46#include "dev/mips/malta_cchip.hh"
47#include "dev/mips/maltareg.h"
48#include "mem/packet.hh"
49#include "mem/packet_access.hh"
50#include "mem/port.hh"
51#include "params/MaltaCChip.hh"
52#include "sim/system.hh"
53
54using namespace std;
55using namespace TheISA;
56
57MaltaCChip::MaltaCChip(Params *p)
58 : BasicPioDevice(p), malta(p->malta)
58 : BasicPioDevice(p, 0xfffffff), malta(p->malta)
59{
60 warn("MaltaCCHIP::MaltaCChip() not implemented.");
61
59{
60 warn("MaltaCCHIP::MaltaCChip() not implemented.");
61
62 pioSize = 0xfffffff;
63 //Put back pointer in malta
64 malta->cchip = this;
65
66}
67
68Tick
69MaltaCChip::read(PacketPtr pkt)
70{
71 panic("MaltaCCHIP::read() not implemented.");
72 return pioDelay;
73 /*
74 DPRINTF(Malta, "read va=%#x size=%d\n", pkt->getAddr(), pkt->getSize());
75
76 assert(pkt->result == Packet::Unknown);
77 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
78
79 Addr regnum = (pkt->getAddr() - pioAddr) >> 6;
80 Addr daddr = (pkt->getAddr() - pioAddr);
81
82 pkt->allocate();
83 switch (pkt->getSize()) {
84
85 case sizeof(uint64_t):
86 if (daddr & TSDEV_CC_BDIMS)
87 {
88 pkt->set(dim[(daddr >> 4) & 0x3F]);
89 break;
90 }
91
92 if (daddr & TSDEV_CC_BDIRS)
93 {
94 pkt->set(dir[(daddr >> 4) & 0x3F]);
95 break;
96 }
97
98 switch(regnum) {
99 case TSDEV_CC_CSR:
100 pkt->set(0x0);
101 break;
102 case TSDEV_CC_MTR:
103 panic("TSDEV_CC_MTR not implemeted\n");
104 break;
105 case TSDEV_CC_MISC:
106 pkt->set((ipint << 8) & 0xF | (itint << 4) & 0xF |
107 (pkt->req->contextId() & 0x3));
108 break;
109 case TSDEV_CC_AAR0:
110 case TSDEV_CC_AAR1:
111 case TSDEV_CC_AAR2:
112 case TSDEV_CC_AAR3:
113 pkt->set(0);
114 break;
115 case TSDEV_CC_DIM0:
116 pkt->set(dim[0]);
117 break;
118 case TSDEV_CC_DIM1:
119 pkt->set(dim[1]);
120 break;
121 case TSDEV_CC_DIM2:
122 pkt->set(dim[2]);
123 break;
124 case TSDEV_CC_DIM3:
125 pkt->set(dim[3]);
126 break;
127 case TSDEV_CC_DIR0:
128 pkt->set(dir[0]);
129 break;
130 case TSDEV_CC_DIR1:
131 pkt->set(dir[1]);
132 break;
133 case TSDEV_CC_DIR2:
134 pkt->set(dir[2]);
135 break;
136 case TSDEV_CC_DIR3:
137 pkt->set(dir[3]);
138 break;
139 case TSDEV_CC_DRIR:
140 pkt->set(drir);
141 break;
142 case TSDEV_CC_PRBEN:
143 panic("TSDEV_CC_PRBEN not implemented\n");
144 break;
145 case TSDEV_CC_IIC0:
146 case TSDEV_CC_IIC1:
147 case TSDEV_CC_IIC2:
148 case TSDEV_CC_IIC3:
149 panic("TSDEV_CC_IICx not implemented\n");
150 break;
151 case TSDEV_CC_MPR0:
152 case TSDEV_CC_MPR1:
153 case TSDEV_CC_MPR2:
154 case TSDEV_CC_MPR3:
155 panic("TSDEV_CC_MPRx not implemented\n");
156 break;
157 case TSDEV_CC_IPIR:
158 pkt->set(ipint);
159 break;
160 case TSDEV_CC_ITIR:
161 pkt->set(itint);
162 break;
163 default:
164 panic("default in cchip read reached, accessing 0x%x\n");
165 } // uint64_t
166
167 break;
168 case sizeof(uint32_t):
169 case sizeof(uint16_t):
170 case sizeof(uint8_t):
171 default:
172 panic("invalid access size(?) for malta register!\n");
173 }
174 DPRINTF(Malta, "Malta CChip: read regnum=%#x size=%d data=%lld\n",
175 regnum, pkt->getSize(), pkt->get<uint64_t>());
176
177 pkt->result = Packet::Success;
178 return pioDelay;
179 */
180}
181
182Tick
183MaltaCChip::write(PacketPtr pkt)
184{
185 panic("MaltaCCHIP::write() not implemented.");
186 return pioDelay;
187 /*
188 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
189 Addr daddr = pkt->getAddr() - pioAddr;
190 Addr regnum = (pkt->getAddr() - pioAddr) >> 6 ;
191
192
193 assert(pkt->getSize() == sizeof(uint64_t));
194
195 DPRINTF(Malta, "write - addr=%#x value=%#x\n", pkt->getAddr(), pkt->get<uint64_t>());
196
197 bool supportedWrite = false;
198
199
200 if (daddr & TSDEV_CC_BDIMS)
201 {
202 int number = (daddr >> 4) & 0x3F;
203
204 uint64_t bitvector;
205 uint64_t olddim;
206 uint64_t olddir;
207
208 olddim = dim[number];
209 olddir = dir[number];
210 dim[number] = pkt->get<uint64_t>();
211 dir[number] = dim[number] & drir;
212 for(int x = 0; x < Malta::Max_CPUs; x++)
213 {
214 bitvector = ULL(1) << x;
215 // Figure out which bits have changed
216 if ((dim[number] & bitvector) != (olddim & bitvector))
217 {
218 // The bit is now set and it wasn't before (set)
219 if((dim[number] & bitvector) && (dir[number] & bitvector))
220 {
221 malta->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
222 DPRINTF(Malta, "dim write resulting in posting dir"
223 " interrupt to cpu %d\n", number);
224 }
225 else if ((olddir & bitvector) &&
226 !(dir[number] & bitvector))
227 {
228 // The bit was set and now its now clear and
229 // we were interrupting on that bit before
230 malta->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
231 DPRINTF(Malta, "dim write resulting in clear"
232 " dir interrupt to cpu %d\n", number);
233
234 }
235
236
237 }
238 }
239 } else {
240 switch(regnum) {
241 case TSDEV_CC_CSR:
242 panic("TSDEV_CC_CSR write\n");
243 case TSDEV_CC_MTR:
244 panic("TSDEV_CC_MTR write not implemented\n");
245 case TSDEV_CC_MISC:
246 uint64_t ipreq;
247 ipreq = (pkt->get<uint64_t>() >> 12) & 0xF;
248 //If it is bit 12-15, this is an IPI post
249 if (ipreq) {
250 reqIPI(ipreq);
251 supportedWrite = true;
252 }
253
254 //If it is bit 8-11, this is an IPI clear
255 uint64_t ipintr;
256 ipintr = (pkt->get<uint64_t>() >> 8) & 0xF;
257 if (ipintr) {
258 clearIPI(ipintr);
259 supportedWrite = true;
260 }
261
262 //If it is the 4-7th bit, clear the RTC interrupt
263 uint64_t itintr;
264 itintr = (pkt->get<uint64_t>() >> 4) & 0xF;
265 if (itintr) {
266 clearITI(itintr);
267 supportedWrite = true;
268 }
269
270 // ignore NXMs
271 if (pkt->get<uint64_t>() & 0x10000000)
272 supportedWrite = true;
273
274 if(!supportedWrite)
275 panic("TSDEV_CC_MISC write not implemented\n");
276
277 break;
278 case TSDEV_CC_AAR0:
279 case TSDEV_CC_AAR1:
280 case TSDEV_CC_AAR2:
281 case TSDEV_CC_AAR3:
282 panic("TSDEV_CC_AARx write not implemeted\n");
283 case TSDEV_CC_DIM0:
284 case TSDEV_CC_DIM1:
285 case TSDEV_CC_DIM2:
286 case TSDEV_CC_DIM3:
287 int number;
288 if(regnum == TSDEV_CC_DIM0)
289 number = 0;
290 else if(regnum == TSDEV_CC_DIM1)
291 number = 1;
292 else if(regnum == TSDEV_CC_DIM2)
293 number = 2;
294 else
295 number = 3;
296
297 uint64_t bitvector;
298 uint64_t olddim;
299 uint64_t olddir;
300
301 olddim = dim[number];
302 olddir = dir[number];
303 dim[number] = pkt->get<uint64_t>();
304 dir[number] = dim[number] & drir;
305 for(int x = 0; x < 64; x++)
306 {
307 bitvector = ULL(1) << x;
308 // Figure out which bits have changed
309 if ((dim[number] & bitvector) != (olddim & bitvector))
310 {
311 // The bit is now set and it wasn't before (set)
312 if((dim[number] & bitvector) && (dir[number] & bitvector))
313 {
314 malta->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
315 DPRINTF(Malta, "posting dir interrupt to cpu 0\n");
316 }
317 else if ((olddir & bitvector) &&
318 !(dir[number] & bitvector))
319 {
320 // The bit was set and now its now clear and
321 // we were interrupting on that bit before
322 malta->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
323 DPRINTF(Malta, "dim write resulting in clear"
324 " dir interrupt to cpu %d\n",
325 x);
326
327 }
328
329
330 }
331 }
332 break;
333 case TSDEV_CC_DIR0:
334 case TSDEV_CC_DIR1:
335 case TSDEV_CC_DIR2:
336 case TSDEV_CC_DIR3:
337 panic("TSDEV_CC_DIR write not implemented\n");
338 case TSDEV_CC_DRIR:
339 panic("TSDEV_CC_DRIR write not implemented\n");
340 case TSDEV_CC_PRBEN:
341 panic("TSDEV_CC_PRBEN write not implemented\n");
342 case TSDEV_CC_IIC0:
343 case TSDEV_CC_IIC1:
344 case TSDEV_CC_IIC2:
345 case TSDEV_CC_IIC3:
346 panic("TSDEV_CC_IICx write not implemented\n");
347 case TSDEV_CC_MPR0:
348 case TSDEV_CC_MPR1:
349 case TSDEV_CC_MPR2:
350 case TSDEV_CC_MPR3:
351 panic("TSDEV_CC_MPRx write not implemented\n");
352 case TSDEV_CC_IPIR:
353 clearIPI(pkt->get<uint64_t>());
354 break;
355 case TSDEV_CC_ITIR:
356 clearITI(pkt->get<uint64_t>());
357 break;
358 case TSDEV_CC_IPIQ:
359 reqIPI(pkt->get<uint64_t>());
360 break;
361 default:
362 panic("default in cchip read reached, accessing 0x%x\n");
363 } // swtich(regnum)
364 } // not BIG_TSUNAMI write
365 pkt->result = Packet::Success;
366 return pioDelay;
367 */
368}
369
370void
371MaltaCChip::clearIPI(uint64_t ipintr)
372{
373 panic("MaltaCCHIP::clear() not implemented.");
374 /*
375 int numcpus = malta->intrctrl->cpu->system->threadContexts.size();
376 assert(numcpus <= Malta::Max_CPUs);
377
378 if (ipintr) {
379 for (int cpunum=0; cpunum < numcpus; cpunum++) {
380 // Check each cpu bit
381 uint64_t cpumask = ULL(1) << cpunum;
382 if (ipintr & cpumask) {
383 // Check if there is a pending ipi
384 if (ipint & cpumask) {
385 ipint &= ~cpumask;
386 malta->intrctrl->clear(cpunum, TheISA::INTLEVEL_IRQ3, 0);
387 DPRINTF(IPI, "clear IPI IPI cpu=%d\n", cpunum);
388 }
389 else
390 warn("clear IPI for CPU=%d, but NO IPI\n", cpunum);
391 }
392 }
393 }
394 else
395 panic("Big IPI Clear, but not processors indicated\n");
396 */
397}
398
399void
400MaltaCChip::clearITI(uint64_t itintr)
401{
402 panic("MaltaCCHIP::clearITI() not implemented.");
403 /*
404 int numcpus = malta->intrctrl->cpu->system->threadContexts.size();
405 assert(numcpus <= Malta::Max_CPUs);
406
407 if (itintr) {
408 for (int i=0; i < numcpus; i++) {
409 uint64_t cpumask = ULL(1) << i;
410 if (itintr & cpumask & itint) {
411 malta->intrctrl->clear(i, TheISA::INTLEVEL_IRQ2, 0);
412 itint &= ~cpumask;
413 DPRINTF(Malta, "clearing rtc interrupt to cpu=%d\n", i);
414 }
415 }
416 }
417 else
418 panic("Big ITI Clear, but not processors indicated\n");
419 */
420}
421
422void
423MaltaCChip::reqIPI(uint64_t ipreq)
424{
425 panic("MaltaCCHIP::reqIPI() not implemented.");
426
427 /*
428 int numcpus = malta->intrctrl->cpu->system->threadContexts.size();
429 assert(numcpus <= Malta::Max_CPUs);
430
431 if (ipreq) {
432 for (int cpunum=0; cpunum < numcpus; cpunum++) {
433 // Check each cpu bit
434 uint64_t cpumask = ULL(1) << cpunum;
435 if (ipreq & cpumask) {
436 // Check if there is already an ipi (bits 8:11)
437 if (!(ipint & cpumask)) {
438 ipint |= cpumask;
439 malta->intrctrl->post(cpunum, TheISA::INTLEVEL_IRQ3, 0);
440 DPRINTF(IPI, "send IPI cpu=%d\n", cpunum);
441 }
442 else
443 warn("post IPI for CPU=%d, but IPI already\n", cpunum);
444 }
445 }
446 }
447 else
448 panic("Big IPI Request, but not processors indicated\n");
449 */
450
451}
452
453
454void
455MaltaCChip::postRTC()
456{
457 panic("MaltaCCHIP::postRTC() not implemented.");
458
459 /*
460 int size = malta->intrctrl->cpu->system->threadContexts.size();
461 assert(size <= Malta::Max_CPUs);
462
463 for (int i = 0; i < size; i++) {
464 uint64_t cpumask = ULL(1) << i;
465 if (!(cpumask & itint)) {
466 itint |= cpumask;
467 malta->intrctrl->post(i, TheISA::INTLEVEL_IRQ2, 0);
468 DPRINTF(Malta, "Posting RTC interrupt to cpu=%d", i);
469 }
470 }
471 */
472
473}
474
475void
476MaltaCChip::postIntr(uint32_t interrupt)
477{
478 uint64_t size = sys->threadContexts.size();
479 assert(size <= Malta::Max_CPUs);
480
481 for(int i=0; i < size; i++) {
482 //Note: Malta does not use index, but this was added to use the pre-existing implementation
483 malta->intrctrl->post(i, interrupt, 0);
484 DPRINTF(Malta, "posting interrupt to cpu %d,"
485 "interrupt %d\n",i, interrupt);
486 }
487
488}
489
490void
491MaltaCChip::clearIntr(uint32_t interrupt)
492{
493 uint64_t size = sys->threadContexts.size();
494 assert(size <= Malta::Max_CPUs);
495
496 for(int i=0; i < size; i++) {
497 //Note: Malta does not use index, but this was added to use the pre-existing implementation
498 malta->intrctrl->clear(i, interrupt, 0);
499 DPRINTF(Malta, "clearing interrupt to cpu %d,"
500 "interrupt %d\n",i, interrupt);
501 }
502}
503
504
505void
506MaltaCChip::serialize(std::ostream &os)
507{
508 // SERIALIZE_ARRAY(dim, Malta::Max_CPUs);
509 //SERIALIZE_ARRAY(dir, Malta::Max_CPUs);
510 //SERIALIZE_SCALAR(ipint);
511 //SERIALIZE_SCALAR(itint);
512 //SERIALIZE_SCALAR(drir);
513}
514
515void
516MaltaCChip::unserialize(Checkpoint *cp, const std::string &section)
517{
518 //UNSERIALIZE_ARRAY(dim, Malta::Max_CPUs);
519 //UNSERIALIZE_ARRAY(dir, Malta::Max_CPUs);
520 //UNSERIALIZE_SCALAR(ipint);
521 //UNSERIALIZE_SCALAR(itint);
522 //UNSERIALIZE_SCALAR(drir);
523}
524
525MaltaCChip *
526MaltaCChipParams::create()
527{
528 return new MaltaCChip(this);
529}
530
62 //Put back pointer in malta
63 malta->cchip = this;
64
65}
66
67Tick
68MaltaCChip::read(PacketPtr pkt)
69{
70 panic("MaltaCCHIP::read() not implemented.");
71 return pioDelay;
72 /*
73 DPRINTF(Malta, "read va=%#x size=%d\n", pkt->getAddr(), pkt->getSize());
74
75 assert(pkt->result == Packet::Unknown);
76 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
77
78 Addr regnum = (pkt->getAddr() - pioAddr) >> 6;
79 Addr daddr = (pkt->getAddr() - pioAddr);
80
81 pkt->allocate();
82 switch (pkt->getSize()) {
83
84 case sizeof(uint64_t):
85 if (daddr & TSDEV_CC_BDIMS)
86 {
87 pkt->set(dim[(daddr >> 4) & 0x3F]);
88 break;
89 }
90
91 if (daddr & TSDEV_CC_BDIRS)
92 {
93 pkt->set(dir[(daddr >> 4) & 0x3F]);
94 break;
95 }
96
97 switch(regnum) {
98 case TSDEV_CC_CSR:
99 pkt->set(0x0);
100 break;
101 case TSDEV_CC_MTR:
102 panic("TSDEV_CC_MTR not implemeted\n");
103 break;
104 case TSDEV_CC_MISC:
105 pkt->set((ipint << 8) & 0xF | (itint << 4) & 0xF |
106 (pkt->req->contextId() & 0x3));
107 break;
108 case TSDEV_CC_AAR0:
109 case TSDEV_CC_AAR1:
110 case TSDEV_CC_AAR2:
111 case TSDEV_CC_AAR3:
112 pkt->set(0);
113 break;
114 case TSDEV_CC_DIM0:
115 pkt->set(dim[0]);
116 break;
117 case TSDEV_CC_DIM1:
118 pkt->set(dim[1]);
119 break;
120 case TSDEV_CC_DIM2:
121 pkt->set(dim[2]);
122 break;
123 case TSDEV_CC_DIM3:
124 pkt->set(dim[3]);
125 break;
126 case TSDEV_CC_DIR0:
127 pkt->set(dir[0]);
128 break;
129 case TSDEV_CC_DIR1:
130 pkt->set(dir[1]);
131 break;
132 case TSDEV_CC_DIR2:
133 pkt->set(dir[2]);
134 break;
135 case TSDEV_CC_DIR3:
136 pkt->set(dir[3]);
137 break;
138 case TSDEV_CC_DRIR:
139 pkt->set(drir);
140 break;
141 case TSDEV_CC_PRBEN:
142 panic("TSDEV_CC_PRBEN not implemented\n");
143 break;
144 case TSDEV_CC_IIC0:
145 case TSDEV_CC_IIC1:
146 case TSDEV_CC_IIC2:
147 case TSDEV_CC_IIC3:
148 panic("TSDEV_CC_IICx not implemented\n");
149 break;
150 case TSDEV_CC_MPR0:
151 case TSDEV_CC_MPR1:
152 case TSDEV_CC_MPR2:
153 case TSDEV_CC_MPR3:
154 panic("TSDEV_CC_MPRx not implemented\n");
155 break;
156 case TSDEV_CC_IPIR:
157 pkt->set(ipint);
158 break;
159 case TSDEV_CC_ITIR:
160 pkt->set(itint);
161 break;
162 default:
163 panic("default in cchip read reached, accessing 0x%x\n");
164 } // uint64_t
165
166 break;
167 case sizeof(uint32_t):
168 case sizeof(uint16_t):
169 case sizeof(uint8_t):
170 default:
171 panic("invalid access size(?) for malta register!\n");
172 }
173 DPRINTF(Malta, "Malta CChip: read regnum=%#x size=%d data=%lld\n",
174 regnum, pkt->getSize(), pkt->get<uint64_t>());
175
176 pkt->result = Packet::Success;
177 return pioDelay;
178 */
179}
180
181Tick
182MaltaCChip::write(PacketPtr pkt)
183{
184 panic("MaltaCCHIP::write() not implemented.");
185 return pioDelay;
186 /*
187 assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
188 Addr daddr = pkt->getAddr() - pioAddr;
189 Addr regnum = (pkt->getAddr() - pioAddr) >> 6 ;
190
191
192 assert(pkt->getSize() == sizeof(uint64_t));
193
194 DPRINTF(Malta, "write - addr=%#x value=%#x\n", pkt->getAddr(), pkt->get<uint64_t>());
195
196 bool supportedWrite = false;
197
198
199 if (daddr & TSDEV_CC_BDIMS)
200 {
201 int number = (daddr >> 4) & 0x3F;
202
203 uint64_t bitvector;
204 uint64_t olddim;
205 uint64_t olddir;
206
207 olddim = dim[number];
208 olddir = dir[number];
209 dim[number] = pkt->get<uint64_t>();
210 dir[number] = dim[number] & drir;
211 for(int x = 0; x < Malta::Max_CPUs; x++)
212 {
213 bitvector = ULL(1) << x;
214 // Figure out which bits have changed
215 if ((dim[number] & bitvector) != (olddim & bitvector))
216 {
217 // The bit is now set and it wasn't before (set)
218 if((dim[number] & bitvector) && (dir[number] & bitvector))
219 {
220 malta->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
221 DPRINTF(Malta, "dim write resulting in posting dir"
222 " interrupt to cpu %d\n", number);
223 }
224 else if ((olddir & bitvector) &&
225 !(dir[number] & bitvector))
226 {
227 // The bit was set and now its now clear and
228 // we were interrupting on that bit before
229 malta->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
230 DPRINTF(Malta, "dim write resulting in clear"
231 " dir interrupt to cpu %d\n", number);
232
233 }
234
235
236 }
237 }
238 } else {
239 switch(regnum) {
240 case TSDEV_CC_CSR:
241 panic("TSDEV_CC_CSR write\n");
242 case TSDEV_CC_MTR:
243 panic("TSDEV_CC_MTR write not implemented\n");
244 case TSDEV_CC_MISC:
245 uint64_t ipreq;
246 ipreq = (pkt->get<uint64_t>() >> 12) & 0xF;
247 //If it is bit 12-15, this is an IPI post
248 if (ipreq) {
249 reqIPI(ipreq);
250 supportedWrite = true;
251 }
252
253 //If it is bit 8-11, this is an IPI clear
254 uint64_t ipintr;
255 ipintr = (pkt->get<uint64_t>() >> 8) & 0xF;
256 if (ipintr) {
257 clearIPI(ipintr);
258 supportedWrite = true;
259 }
260
261 //If it is the 4-7th bit, clear the RTC interrupt
262 uint64_t itintr;
263 itintr = (pkt->get<uint64_t>() >> 4) & 0xF;
264 if (itintr) {
265 clearITI(itintr);
266 supportedWrite = true;
267 }
268
269 // ignore NXMs
270 if (pkt->get<uint64_t>() & 0x10000000)
271 supportedWrite = true;
272
273 if(!supportedWrite)
274 panic("TSDEV_CC_MISC write not implemented\n");
275
276 break;
277 case TSDEV_CC_AAR0:
278 case TSDEV_CC_AAR1:
279 case TSDEV_CC_AAR2:
280 case TSDEV_CC_AAR3:
281 panic("TSDEV_CC_AARx write not implemeted\n");
282 case TSDEV_CC_DIM0:
283 case TSDEV_CC_DIM1:
284 case TSDEV_CC_DIM2:
285 case TSDEV_CC_DIM3:
286 int number;
287 if(regnum == TSDEV_CC_DIM0)
288 number = 0;
289 else if(regnum == TSDEV_CC_DIM1)
290 number = 1;
291 else if(regnum == TSDEV_CC_DIM2)
292 number = 2;
293 else
294 number = 3;
295
296 uint64_t bitvector;
297 uint64_t olddim;
298 uint64_t olddir;
299
300 olddim = dim[number];
301 olddir = dir[number];
302 dim[number] = pkt->get<uint64_t>();
303 dir[number] = dim[number] & drir;
304 for(int x = 0; x < 64; x++)
305 {
306 bitvector = ULL(1) << x;
307 // Figure out which bits have changed
308 if ((dim[number] & bitvector) != (olddim & bitvector))
309 {
310 // The bit is now set and it wasn't before (set)
311 if((dim[number] & bitvector) && (dir[number] & bitvector))
312 {
313 malta->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
314 DPRINTF(Malta, "posting dir interrupt to cpu 0\n");
315 }
316 else if ((olddir & bitvector) &&
317 !(dir[number] & bitvector))
318 {
319 // The bit was set and now its now clear and
320 // we were interrupting on that bit before
321 malta->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
322 DPRINTF(Malta, "dim write resulting in clear"
323 " dir interrupt to cpu %d\n",
324 x);
325
326 }
327
328
329 }
330 }
331 break;
332 case TSDEV_CC_DIR0:
333 case TSDEV_CC_DIR1:
334 case TSDEV_CC_DIR2:
335 case TSDEV_CC_DIR3:
336 panic("TSDEV_CC_DIR write not implemented\n");
337 case TSDEV_CC_DRIR:
338 panic("TSDEV_CC_DRIR write not implemented\n");
339 case TSDEV_CC_PRBEN:
340 panic("TSDEV_CC_PRBEN write not implemented\n");
341 case TSDEV_CC_IIC0:
342 case TSDEV_CC_IIC1:
343 case TSDEV_CC_IIC2:
344 case TSDEV_CC_IIC3:
345 panic("TSDEV_CC_IICx write not implemented\n");
346 case TSDEV_CC_MPR0:
347 case TSDEV_CC_MPR1:
348 case TSDEV_CC_MPR2:
349 case TSDEV_CC_MPR3:
350 panic("TSDEV_CC_MPRx write not implemented\n");
351 case TSDEV_CC_IPIR:
352 clearIPI(pkt->get<uint64_t>());
353 break;
354 case TSDEV_CC_ITIR:
355 clearITI(pkt->get<uint64_t>());
356 break;
357 case TSDEV_CC_IPIQ:
358 reqIPI(pkt->get<uint64_t>());
359 break;
360 default:
361 panic("default in cchip read reached, accessing 0x%x\n");
362 } // swtich(regnum)
363 } // not BIG_TSUNAMI write
364 pkt->result = Packet::Success;
365 return pioDelay;
366 */
367}
368
369void
370MaltaCChip::clearIPI(uint64_t ipintr)
371{
372 panic("MaltaCCHIP::clear() not implemented.");
373 /*
374 int numcpus = malta->intrctrl->cpu->system->threadContexts.size();
375 assert(numcpus <= Malta::Max_CPUs);
376
377 if (ipintr) {
378 for (int cpunum=0; cpunum < numcpus; cpunum++) {
379 // Check each cpu bit
380 uint64_t cpumask = ULL(1) << cpunum;
381 if (ipintr & cpumask) {
382 // Check if there is a pending ipi
383 if (ipint & cpumask) {
384 ipint &= ~cpumask;
385 malta->intrctrl->clear(cpunum, TheISA::INTLEVEL_IRQ3, 0);
386 DPRINTF(IPI, "clear IPI IPI cpu=%d\n", cpunum);
387 }
388 else
389 warn("clear IPI for CPU=%d, but NO IPI\n", cpunum);
390 }
391 }
392 }
393 else
394 panic("Big IPI Clear, but not processors indicated\n");
395 */
396}
397
398void
399MaltaCChip::clearITI(uint64_t itintr)
400{
401 panic("MaltaCCHIP::clearITI() not implemented.");
402 /*
403 int numcpus = malta->intrctrl->cpu->system->threadContexts.size();
404 assert(numcpus <= Malta::Max_CPUs);
405
406 if (itintr) {
407 for (int i=0; i < numcpus; i++) {
408 uint64_t cpumask = ULL(1) << i;
409 if (itintr & cpumask & itint) {
410 malta->intrctrl->clear(i, TheISA::INTLEVEL_IRQ2, 0);
411 itint &= ~cpumask;
412 DPRINTF(Malta, "clearing rtc interrupt to cpu=%d\n", i);
413 }
414 }
415 }
416 else
417 panic("Big ITI Clear, but not processors indicated\n");
418 */
419}
420
421void
422MaltaCChip::reqIPI(uint64_t ipreq)
423{
424 panic("MaltaCCHIP::reqIPI() not implemented.");
425
426 /*
427 int numcpus = malta->intrctrl->cpu->system->threadContexts.size();
428 assert(numcpus <= Malta::Max_CPUs);
429
430 if (ipreq) {
431 for (int cpunum=0; cpunum < numcpus; cpunum++) {
432 // Check each cpu bit
433 uint64_t cpumask = ULL(1) << cpunum;
434 if (ipreq & cpumask) {
435 // Check if there is already an ipi (bits 8:11)
436 if (!(ipint & cpumask)) {
437 ipint |= cpumask;
438 malta->intrctrl->post(cpunum, TheISA::INTLEVEL_IRQ3, 0);
439 DPRINTF(IPI, "send IPI cpu=%d\n", cpunum);
440 }
441 else
442 warn("post IPI for CPU=%d, but IPI already\n", cpunum);
443 }
444 }
445 }
446 else
447 panic("Big IPI Request, but not processors indicated\n");
448 */
449
450}
451
452
453void
454MaltaCChip::postRTC()
455{
456 panic("MaltaCCHIP::postRTC() not implemented.");
457
458 /*
459 int size = malta->intrctrl->cpu->system->threadContexts.size();
460 assert(size <= Malta::Max_CPUs);
461
462 for (int i = 0; i < size; i++) {
463 uint64_t cpumask = ULL(1) << i;
464 if (!(cpumask & itint)) {
465 itint |= cpumask;
466 malta->intrctrl->post(i, TheISA::INTLEVEL_IRQ2, 0);
467 DPRINTF(Malta, "Posting RTC interrupt to cpu=%d", i);
468 }
469 }
470 */
471
472}
473
474void
475MaltaCChip::postIntr(uint32_t interrupt)
476{
477 uint64_t size = sys->threadContexts.size();
478 assert(size <= Malta::Max_CPUs);
479
480 for(int i=0; i < size; i++) {
481 //Note: Malta does not use index, but this was added to use the pre-existing implementation
482 malta->intrctrl->post(i, interrupt, 0);
483 DPRINTF(Malta, "posting interrupt to cpu %d,"
484 "interrupt %d\n",i, interrupt);
485 }
486
487}
488
489void
490MaltaCChip::clearIntr(uint32_t interrupt)
491{
492 uint64_t size = sys->threadContexts.size();
493 assert(size <= Malta::Max_CPUs);
494
495 for(int i=0; i < size; i++) {
496 //Note: Malta does not use index, but this was added to use the pre-existing implementation
497 malta->intrctrl->clear(i, interrupt, 0);
498 DPRINTF(Malta, "clearing interrupt to cpu %d,"
499 "interrupt %d\n",i, interrupt);
500 }
501}
502
503
504void
505MaltaCChip::serialize(std::ostream &os)
506{
507 // SERIALIZE_ARRAY(dim, Malta::Max_CPUs);
508 //SERIALIZE_ARRAY(dir, Malta::Max_CPUs);
509 //SERIALIZE_SCALAR(ipint);
510 //SERIALIZE_SCALAR(itint);
511 //SERIALIZE_SCALAR(drir);
512}
513
514void
515MaltaCChip::unserialize(Checkpoint *cp, const std::string &section)
516{
517 //UNSERIALIZE_ARRAY(dim, Malta::Max_CPUs);
518 //UNSERIALIZE_ARRAY(dir, Malta::Max_CPUs);
519 //UNSERIALIZE_SCALAR(ipint);
520 //UNSERIALIZE_SCALAR(itint);
521 //UNSERIALIZE_SCALAR(drir);
522}
523
524MaltaCChip *
525MaltaCChipParams::create()
526{
527 return new MaltaCChip(this);
528}
529