tsunami_cchip.cc revision 4762
1892SN/A/*
21762SN/A * Copyright (c) 2004-2005 The Regents of The University of Michigan
3892SN/A * All rights reserved.
4892SN/A *
5892SN/A * Redistribution and use in source and binary forms, with or without
6892SN/A * modification, are permitted provided that the following conditions are
7892SN/A * met: redistributions of source code must retain the above copyright
8892SN/A * notice, this list of conditions and the following disclaimer;
9892SN/A * redistributions in binary form must reproduce the above copyright
10892SN/A * notice, this list of conditions and the following disclaimer in the
11892SN/A * documentation and/or other materials provided with the distribution;
12892SN/A * neither the name of the copyright holders nor the names of its
13892SN/A * contributors may be used to endorse or promote products derived from
14892SN/A * this software without specific prior written permission.
15892SN/A *
16892SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17892SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18892SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19892SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20892SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21892SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22892SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23892SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24892SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25892SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26892SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665SN/A *
282665SN/A * Authors: Ali Saidi
292665SN/A *          Ron Dreslinski
30892SN/A */
31767SN/A
321730SN/A/** @file
33798SN/A * Emulation of the Tsunami CChip CSRs
34767SN/A */
35767SN/A
36767SN/A#include <deque>
37767SN/A#include <string>
38767SN/A#include <vector>
39767SN/A
402432SN/A#include "arch/alpha/ev5.hh"
41767SN/A#include "base/trace.hh"
423348SN/A#include "cpu/intr_control.hh"
433348SN/A#include "cpu/thread_context.hh"
443540Sgblack@eecs.umich.edu#include "dev/alpha/tsunami.hh"
453540Sgblack@eecs.umich.edu#include "dev/alpha/tsunami_cchip.hh"
463540Sgblack@eecs.umich.edu#include "dev/alpha/tsunamireg.h"
473348SN/A#include "mem/packet.hh"
483348SN/A#include "mem/packet_access.hh"
492523SN/A#include "mem/port.hh"
504762Snate@binkert.org#include "params/TsunamiCChip.hh"
51767SN/A#include "sim/system.hh"
52767SN/A
53767SN/Ausing namespace std;
542107SN/A//Should this be AlphaISA?
552107SN/Ausing namespace TheISA;
56767SN/A
574762Snate@binkert.orgTsunamiCChip::TsunamiCChip(const Params *p)
582523SN/A    : BasicPioDevice(p), tsunami(p->tsunami)
59767SN/A{
603846Shsul@eecs.umich.edu    pioSize = 0x10000000;
61909SN/A
62767SN/A    drir = 0;
631290SN/A    ipint = 0;
641290SN/A    itint = 0;
651290SN/A
661290SN/A    for (int x = 0; x < Tsunami::Max_CPUs; x++)
671290SN/A    {
681290SN/A        dim[x] = 0;
691290SN/A        dir[x] = 0;
701290SN/A    }
71775SN/A
72775SN/A    //Put back pointer in tsunami
73775SN/A    tsunami->cchip = this;
74767SN/A}
75767SN/A
762523SN/ATick
773349SN/ATsunamiCChip::read(PacketPtr pkt)
78767SN/A{
792641SN/A    DPRINTF(Tsunami, "read  va=%#x size=%d\n", pkt->getAddr(), pkt->getSize());
80767SN/A
812641SN/A    assert(pkt->result == Packet::Unknown);
822641SN/A    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
831290SN/A
842641SN/A    Addr regnum = (pkt->getAddr() - pioAddr) >> 6;
852641SN/A    Addr daddr = (pkt->getAddr() - pioAddr);
86767SN/A
872630SN/A    pkt->allocate();
882641SN/A    switch (pkt->getSize()) {
89767SN/A
90767SN/A      case sizeof(uint64_t):
913875Sbinkertn@umich.edu          pkt->set<uint64_t>(0);
923875Sbinkertn@umich.edu
931290SN/A          if (daddr & TSDEV_CC_BDIMS)
941290SN/A          {
952630SN/A              pkt->set(dim[(daddr >> 4) & 0x3F]);
962523SN/A              break;
971290SN/A          }
981290SN/A
991290SN/A          if (daddr & TSDEV_CC_BDIRS)
1001290SN/A          {
1012630SN/A              pkt->set(dir[(daddr >> 4) & 0x3F]);
1022523SN/A              break;
1031290SN/A          }
1041290SN/A
1051290SN/A          switch(regnum) {
106767SN/A              case TSDEV_CC_CSR:
1072630SN/A                  pkt->set(0x0);
1082523SN/A                  break;
109767SN/A              case TSDEV_CC_MTR:
110767SN/A                  panic("TSDEV_CC_MTR not implemeted\n");
1112523SN/A                   break;
112767SN/A              case TSDEV_CC_MISC:
1132630SN/A                  pkt->set((ipint << 8) & 0xF | (itint << 4) & 0xF |
1142630SN/A                                     (pkt->req->getCpuNum() & 0x3));
1152523SN/A                  break;
116767SN/A              case TSDEV_CC_AAR0:
117767SN/A              case TSDEV_CC_AAR1:
118767SN/A              case TSDEV_CC_AAR2:
119767SN/A              case TSDEV_CC_AAR3:
1202630SN/A                  pkt->set(0);
1212523SN/A                  break;
122767SN/A              case TSDEV_CC_DIM0:
1232630SN/A                  pkt->set(dim[0]);
1242523SN/A                  break;
125767SN/A              case TSDEV_CC_DIM1:
1262630SN/A                  pkt->set(dim[1]);
1272523SN/A                  break;
128767SN/A              case TSDEV_CC_DIM2:
1292630SN/A                  pkt->set(dim[2]);
1302523SN/A                  break;
131767SN/A              case TSDEV_CC_DIM3:
1322630SN/A                  pkt->set(dim[3]);
1332523SN/A                  break;
134767SN/A              case TSDEV_CC_DIR0:
1352630SN/A                  pkt->set(dir[0]);
1362523SN/A                  break;
137767SN/A              case TSDEV_CC_DIR1:
1382630SN/A                  pkt->set(dir[1]);
1392523SN/A                  break;
140767SN/A              case TSDEV_CC_DIR2:
1412630SN/A                  pkt->set(dir[2]);
1422523SN/A                  break;
143767SN/A              case TSDEV_CC_DIR3:
1442630SN/A                  pkt->set(dir[3]);
1452523SN/A                  break;
146767SN/A              case TSDEV_CC_DRIR:
1472630SN/A                  pkt->set(drir);
1482523SN/A                  break;
149767SN/A              case TSDEV_CC_PRBEN:
150767SN/A                  panic("TSDEV_CC_PRBEN not implemented\n");
1512523SN/A                  break;
152767SN/A              case TSDEV_CC_IIC0:
153767SN/A              case TSDEV_CC_IIC1:
154767SN/A              case TSDEV_CC_IIC2:
155767SN/A              case TSDEV_CC_IIC3:
156767SN/A                  panic("TSDEV_CC_IICx not implemented\n");
1572523SN/A                  break;
158767SN/A              case TSDEV_CC_MPR0:
159767SN/A              case TSDEV_CC_MPR1:
160767SN/A              case TSDEV_CC_MPR2:
161767SN/A              case TSDEV_CC_MPR3:
162767SN/A                  panic("TSDEV_CC_MPRx not implemented\n");
1632523SN/A                  break;
1641290SN/A              case TSDEV_CC_IPIR:
1652630SN/A                  pkt->set(ipint);
1662523SN/A                  break;
1671290SN/A              case TSDEV_CC_ITIR:
1682630SN/A                  pkt->set(itint);
1692523SN/A                  break;
170768SN/A              default:
171768SN/A                  panic("default in cchip read reached, accessing 0x%x\n");
172767SN/A           } // uint64_t
173767SN/A
174767SN/A      break;
175767SN/A      case sizeof(uint32_t):
176767SN/A      case sizeof(uint16_t):
177767SN/A      case sizeof(uint8_t):
178767SN/A      default:
179768SN/A        panic("invalid access size(?) for tsunami register!\n");
180767SN/A    }
1812549SN/A    DPRINTF(Tsunami, "Tsunami CChip: read  regnum=%#x size=%d data=%lld\n",
1822641SN/A            regnum, pkt->getSize(), pkt->get<uint64_t>());
183767SN/A
1842641SN/A    pkt->result = Packet::Success;
1852523SN/A    return pioDelay;
186767SN/A}
187767SN/A
1882523SN/ATick
1893349SN/ATsunamiCChip::write(PacketPtr pkt)
190767SN/A{
1912641SN/A    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
1922641SN/A    Addr daddr = pkt->getAddr() - pioAddr;
1932641SN/A    Addr regnum = (pkt->getAddr() - pioAddr) >> 6 ;
1942539SN/A
1952523SN/A
1962641SN/A    assert(pkt->getSize() == sizeof(uint64_t));
1972523SN/A
1982641SN/A    DPRINTF(Tsunami, "write - addr=%#x value=%#x\n", pkt->getAddr(), pkt->get<uint64_t>());
199767SN/A
200830SN/A    bool supportedWrite = false;
201830SN/A
202767SN/A
2032539SN/A    if (daddr & TSDEV_CC_BDIMS)
2042539SN/A    {
2052539SN/A        int number = (daddr >> 4) & 0x3F;
2061290SN/A
2072539SN/A        uint64_t bitvector;
2082539SN/A        uint64_t olddim;
2092539SN/A        uint64_t olddir;
2101290SN/A
2112539SN/A        olddim = dim[number];
2122539SN/A        olddir = dir[number];
2132630SN/A        dim[number] = pkt->get<uint64_t>();
2142539SN/A        dir[number] = dim[number] & drir;
2152539SN/A        for(int x = 0; x < Tsunami::Max_CPUs; x++)
2162539SN/A        {
2172539SN/A            bitvector = ULL(1) << x;
2182539SN/A            // Figure out which bits have changed
2192539SN/A            if ((dim[number] & bitvector) != (olddim & bitvector))
2202539SN/A            {
2212539SN/A                // The bit is now set and it wasn't before (set)
2222539SN/A                if((dim[number] & bitvector) && (dir[number] & bitvector))
2232539SN/A                {
2242539SN/A                    tsunami->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
2252539SN/A                    DPRINTF(Tsunami, "dim write resulting in posting dir"
2262539SN/A                            " interrupt to cpu %d\n", number);
2272539SN/A                }
2282539SN/A                else if ((olddir & bitvector) &&
2292539SN/A                        !(dir[number] & bitvector))
2302539SN/A                {
2312539SN/A                    // The bit was set and now its now clear and
2322539SN/A                    // we were interrupting on that bit before
2332539SN/A                    tsunami->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
2342539SN/A                    DPRINTF(Tsunami, "dim write resulting in clear"
2352539SN/A                            " dir interrupt to cpu %d\n", number);
2361290SN/A
2371074SN/A                }
2381074SN/A
2392539SN/A
2402539SN/A            }
2412539SN/A        }
2422539SN/A    } else {
2432539SN/A        switch(regnum) {
2442539SN/A          case TSDEV_CC_CSR:
2452539SN/A              panic("TSDEV_CC_CSR write\n");
2462539SN/A          case TSDEV_CC_MTR:
2472539SN/A              panic("TSDEV_CC_MTR write not implemented\n");
2482539SN/A          case TSDEV_CC_MISC:
2492539SN/A            uint64_t ipreq;
2502630SN/A            ipreq = (pkt->get<uint64_t>() >> 12) & 0xF;
2512539SN/A            //If it is bit 12-15, this is an IPI post
2522539SN/A            if (ipreq) {
2532539SN/A                reqIPI(ipreq);
2542539SN/A                supportedWrite = true;
2552539SN/A            }
2562539SN/A
2572539SN/A            //If it is bit 8-11, this is an IPI clear
2582539SN/A            uint64_t ipintr;
2592630SN/A            ipintr = (pkt->get<uint64_t>() >> 8) & 0xF;
2602539SN/A            if (ipintr) {
2612539SN/A                clearIPI(ipintr);
2622539SN/A                supportedWrite = true;
2632539SN/A            }
2642539SN/A
2652539SN/A            //If it is the 4-7th bit, clear the RTC interrupt
2662539SN/A            uint64_t itintr;
2672630SN/A              itintr = (pkt->get<uint64_t>() >> 4) & 0xF;
2682539SN/A            if (itintr) {
2692539SN/A                  clearITI(itintr);
2702539SN/A                supportedWrite = true;
2712539SN/A            }
2722539SN/A
2732539SN/A              // ignore NXMs
2742630SN/A              if (pkt->get<uint64_t>() & 0x10000000)
2752539SN/A                  supportedWrite = true;
2762539SN/A
2772539SN/A            if(!supportedWrite)
2782539SN/A                  panic("TSDEV_CC_MISC write not implemented\n");
2792539SN/A
2802549SN/A            break;
2812539SN/A            case TSDEV_CC_AAR0:
2822539SN/A            case TSDEV_CC_AAR1:
2832539SN/A            case TSDEV_CC_AAR2:
2842539SN/A            case TSDEV_CC_AAR3:
2852539SN/A                panic("TSDEV_CC_AARx write not implemeted\n");
2862539SN/A            case TSDEV_CC_DIM0:
2872539SN/A            case TSDEV_CC_DIM1:
2882539SN/A            case TSDEV_CC_DIM2:
2892539SN/A            case TSDEV_CC_DIM3:
2902539SN/A                int number;
2912539SN/A                if(regnum == TSDEV_CC_DIM0)
2922539SN/A                    number = 0;
2932539SN/A                else if(regnum == TSDEV_CC_DIM1)
2942539SN/A                    number = 1;
2952539SN/A                else if(regnum == TSDEV_CC_DIM2)
2962539SN/A                    number = 2;
2972539SN/A                else
2982539SN/A                    number = 3;
2992539SN/A
3002539SN/A                uint64_t bitvector;
3012539SN/A                uint64_t olddim;
3022539SN/A                uint64_t olddir;
3032539SN/A
3042539SN/A                olddim = dim[number];
3052539SN/A                olddir = dir[number];
3062630SN/A                dim[number] = pkt->get<uint64_t>();
3072539SN/A                dir[number] = dim[number] & drir;
3082539SN/A                for(int x = 0; x < 64; x++)
3092539SN/A                {
3102539SN/A                    bitvector = ULL(1) << x;
3112539SN/A                    // Figure out which bits have changed
3122539SN/A                    if ((dim[number] & bitvector) != (olddim & bitvector))
3132539SN/A                    {
3142539SN/A                        // The bit is now set and it wasn't before (set)
3152539SN/A                        if((dim[number] & bitvector) && (dir[number] & bitvector))
3162539SN/A                        {
3172539SN/A                          tsunami->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
3182539SN/A                          DPRINTF(Tsunami, "posting dir interrupt to cpu 0\n");
3192539SN/A                        }
3202539SN/A                        else if ((olddir & bitvector) &&
3212539SN/A                                !(dir[number] & bitvector))
3222539SN/A                        {
3232539SN/A                            // The bit was set and now its now clear and
3242539SN/A                            // we were interrupting on that bit before
3252539SN/A                            tsunami->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
3262539SN/A                          DPRINTF(Tsunami, "dim write resulting in clear"
3272539SN/A                                    " dir interrupt to cpu %d\n",
3282539SN/A                                    x);
3292539SN/A
3302539SN/A                        }
3312539SN/A
3322539SN/A
3332539SN/A                    }
3341074SN/A                }
3352539SN/A                break;
3362539SN/A            case TSDEV_CC_DIR0:
3372539SN/A            case TSDEV_CC_DIR1:
3382539SN/A            case TSDEV_CC_DIR2:
3392539SN/A            case TSDEV_CC_DIR3:
3402539SN/A                panic("TSDEV_CC_DIR write not implemented\n");
3412539SN/A            case TSDEV_CC_DRIR:
3422539SN/A                panic("TSDEV_CC_DRIR write not implemented\n");
3432539SN/A            case TSDEV_CC_PRBEN:
3442539SN/A                panic("TSDEV_CC_PRBEN write not implemented\n");
3452539SN/A            case TSDEV_CC_IIC0:
3462539SN/A            case TSDEV_CC_IIC1:
3472539SN/A            case TSDEV_CC_IIC2:
3482539SN/A            case TSDEV_CC_IIC3:
3492539SN/A                panic("TSDEV_CC_IICx write not implemented\n");
3502539SN/A            case TSDEV_CC_MPR0:
3512539SN/A            case TSDEV_CC_MPR1:
3522539SN/A            case TSDEV_CC_MPR2:
3532539SN/A            case TSDEV_CC_MPR3:
3542539SN/A                panic("TSDEV_CC_MPRx write not implemented\n");
3552539SN/A            case TSDEV_CC_IPIR:
3562630SN/A                clearIPI(pkt->get<uint64_t>());
3572539SN/A                break;
3582539SN/A            case TSDEV_CC_ITIR:
3592630SN/A                clearITI(pkt->get<uint64_t>());
3602539SN/A                break;
3612539SN/A            case TSDEV_CC_IPIQ:
3622630SN/A                reqIPI(pkt->get<uint64_t>());
3632539SN/A                break;
3642539SN/A            default:
3652539SN/A              panic("default in cchip read reached, accessing 0x%x\n");
3662539SN/A        }  // swtich(regnum)
3672539SN/A    } // not BIG_TSUNAMI write
3682641SN/A    pkt->result = Packet::Success;
3692539SN/A    return pioDelay;
370767SN/A}
371767SN/A
372767SN/Avoid
3731290SN/ATsunamiCChip::clearIPI(uint64_t ipintr)
3741290SN/A{
3754103Ssaidi@eecs.umich.edu    int numcpus = sys->threadContexts.size();
3761290SN/A    assert(numcpus <= Tsunami::Max_CPUs);
3771290SN/A
3781290SN/A    if (ipintr) {
3791290SN/A        for (int cpunum=0; cpunum < numcpus; cpunum++) {
3801290SN/A            // Check each cpu bit
3811290SN/A            uint64_t cpumask = ULL(1) << cpunum;
3821290SN/A            if (ipintr & cpumask) {
3831290SN/A                // Check if there is a pending ipi
3841290SN/A                if (ipint & cpumask) {
3851290SN/A                    ipint &= ~cpumask;
3861290SN/A                    tsunami->intrctrl->clear(cpunum, TheISA::INTLEVEL_IRQ3, 0);
3871290SN/A                    DPRINTF(IPI, "clear IPI IPI cpu=%d\n", cpunum);
3881290SN/A                }
3891290SN/A                else
3901290SN/A                    warn("clear IPI for CPU=%d, but NO IPI\n", cpunum);
3911290SN/A            }
3921290SN/A        }
3931290SN/A    }
3941290SN/A    else
3951290SN/A        panic("Big IPI Clear, but not processors indicated\n");
3961290SN/A}
3971290SN/A
3981290SN/Avoid
3991290SN/ATsunamiCChip::clearITI(uint64_t itintr)
4001290SN/A{
4014103Ssaidi@eecs.umich.edu    int numcpus = sys->threadContexts.size();
4021290SN/A    assert(numcpus <= Tsunami::Max_CPUs);
4031290SN/A
4041290SN/A    if (itintr) {
4051290SN/A        for (int i=0; i < numcpus; i++) {
4061290SN/A            uint64_t cpumask = ULL(1) << i;
4071290SN/A            if (itintr & cpumask & itint) {
4081290SN/A                tsunami->intrctrl->clear(i, TheISA::INTLEVEL_IRQ2, 0);
4091290SN/A                itint &= ~cpumask;
4101290SN/A                DPRINTF(Tsunami, "clearing rtc interrupt to cpu=%d\n", i);
4111290SN/A            }
4121290SN/A        }
4131290SN/A    }
4141290SN/A    else
4151290SN/A        panic("Big ITI Clear, but not processors indicated\n");
4161290SN/A}
4171290SN/A
4181290SN/Avoid
4191290SN/ATsunamiCChip::reqIPI(uint64_t ipreq)
4201290SN/A{
4214103Ssaidi@eecs.umich.edu    int numcpus = sys->threadContexts.size();
4221290SN/A    assert(numcpus <= Tsunami::Max_CPUs);
4231290SN/A
4241290SN/A    if (ipreq) {
4251290SN/A        for (int cpunum=0; cpunum < numcpus; cpunum++) {
4261290SN/A            // Check each cpu bit
4271290SN/A            uint64_t cpumask = ULL(1) << cpunum;
4281290SN/A            if (ipreq & cpumask) {
4291290SN/A                // Check if there is already an ipi (bits 8:11)
4301290SN/A                if (!(ipint & cpumask)) {
4311290SN/A                    ipint  |= cpumask;
4321290SN/A                    tsunami->intrctrl->post(cpunum, TheISA::INTLEVEL_IRQ3, 0);
4331290SN/A                    DPRINTF(IPI, "send IPI cpu=%d\n", cpunum);
4341290SN/A                }
4351290SN/A                else
4361290SN/A                    warn("post IPI for CPU=%d, but IPI already\n", cpunum);
4371290SN/A            }
4381290SN/A        }
4391290SN/A    }
4401290SN/A    else
4411290SN/A        panic("Big IPI Request, but not processors indicated\n");
4421290SN/A}
4431290SN/A
4441290SN/A
4451290SN/Avoid
446831SN/ATsunamiCChip::postRTC()
447831SN/A{
4484103Ssaidi@eecs.umich.edu    int size = sys->threadContexts.size();
4491290SN/A    assert(size <= Tsunami::Max_CPUs);
450831SN/A
451831SN/A    for (int i = 0; i < size; i++) {
4521290SN/A        uint64_t cpumask = ULL(1) << i;
4532539SN/A       if (!(cpumask & itint)) {
4542539SN/A           itint |= cpumask;
4552539SN/A           tsunami->intrctrl->post(i, TheISA::INTLEVEL_IRQ2, 0);
4564739Sstever@eecs.umich.edu           DPRINTF(Tsunami, "Posting RTC interrupt to cpu=%d\n", i);
4572539SN/A       }
458831SN/A    }
459831SN/A
460831SN/A}
461831SN/A
462831SN/Avoid
463817SN/ATsunamiCChip::postDRIR(uint32_t interrupt)
464777SN/A{
4651290SN/A    uint64_t bitvector = ULL(1) << interrupt;
4664103Ssaidi@eecs.umich.edu    uint64_t size = sys->threadContexts.size();
4671290SN/A    assert(size <= Tsunami::Max_CPUs);
468777SN/A    drir |= bitvector;
4691290SN/A
470831SN/A    for(int i=0; i < size; i++) {
471817SN/A        dir[i] = dim[i] & drir;
4722539SN/A       if (dim[i] & bitvector) {
4732539SN/A              tsunami->intrctrl->post(i, TheISA::INTLEVEL_IRQ1, interrupt);
4742539SN/A              DPRINTF(Tsunami, "posting dir interrupt to cpu %d,"
475817SN/A                        "interrupt %d\n",i, interrupt);
4762539SN/A       }
477777SN/A    }
478777SN/A}
479777SN/A
480777SN/Avoid
481817SN/ATsunamiCChip::clearDRIR(uint32_t interrupt)
482777SN/A{
4831290SN/A    uint64_t bitvector = ULL(1) << interrupt;
4844103Ssaidi@eecs.umich.edu    uint64_t size = sys->threadContexts.size();
4851290SN/A    assert(size <= Tsunami::Max_CPUs);
4861290SN/A
487817SN/A    if (drir & bitvector)
488817SN/A    {
489817SN/A        drir &= ~bitvector;
490831SN/A        for(int i=0; i < size; i++) {
4912539SN/A           if (dir[i] & bitvector) {
4922539SN/A               tsunami->intrctrl->clear(i, TheISA::INTLEVEL_IRQ1, interrupt);
4932539SN/A               DPRINTF(Tsunami, "clearing dir interrupt to cpu %d,"
494817SN/A                    "interrupt %d\n",i, interrupt);
495777SN/A
4962539SN/A           }
4972539SN/A           dir[i] = dim[i] & drir;
498777SN/A        }
499777SN/A    }
500817SN/A    else
501817SN/A        DPRINTF(Tsunami, "Spurrious clear? interrupt %d\n", interrupt);
502777SN/A}
503777SN/A
504909SN/A
505777SN/Avoid
506767SN/ATsunamiCChip::serialize(std::ostream &os)
507767SN/A{
508811SN/A    SERIALIZE_ARRAY(dim, Tsunami::Max_CPUs);
509811SN/A    SERIALIZE_ARRAY(dir, Tsunami::Max_CPUs);
5101290SN/A    SERIALIZE_SCALAR(ipint);
5111290SN/A    SERIALIZE_SCALAR(itint);
512811SN/A    SERIALIZE_SCALAR(drir);
513767SN/A}
514767SN/A
515767SN/Avoid
516767SN/ATsunamiCChip::unserialize(Checkpoint *cp, const std::string &section)
517767SN/A{
518811SN/A    UNSERIALIZE_ARRAY(dim, Tsunami::Max_CPUs);
519811SN/A    UNSERIALIZE_ARRAY(dir, Tsunami::Max_CPUs);
5201290SN/A    UNSERIALIZE_SCALAR(ipint);
5211290SN/A    UNSERIALIZE_SCALAR(itint);
522811SN/A    UNSERIALIZE_SCALAR(drir);
523767SN/A}
524767SN/A
5254762Snate@binkert.orgTsunamiCChip *
5264762Snate@binkert.orgTsunamiCChipParams::create()
527767SN/A{
5284762Snate@binkert.org    return new TsunamiCChip(this);
529767SN/A}
530