tsunami_cchip.cc revision 5714
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->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
821290SN/A
832641SN/A    Addr regnum = (pkt->getAddr() - pioAddr) >> 6;
842641SN/A    Addr daddr = (pkt->getAddr() - pioAddr);
85767SN/A
862630SN/A    pkt->allocate();
872641SN/A    switch (pkt->getSize()) {
88767SN/A
89767SN/A      case sizeof(uint64_t):
903875Sbinkertn@umich.edu          pkt->set<uint64_t>(0);
913875Sbinkertn@umich.edu
921290SN/A          if (daddr & TSDEV_CC_BDIMS)
931290SN/A          {
942630SN/A              pkt->set(dim[(daddr >> 4) & 0x3F]);
952523SN/A              break;
961290SN/A          }
971290SN/A
981290SN/A          if (daddr & TSDEV_CC_BDIRS)
991290SN/A          {
1002630SN/A              pkt->set(dir[(daddr >> 4) & 0x3F]);
1012523SN/A              break;
1021290SN/A          }
1031290SN/A
1041290SN/A          switch(regnum) {
105767SN/A              case TSDEV_CC_CSR:
1062630SN/A                  pkt->set(0x0);
1072523SN/A                  break;
108767SN/A              case TSDEV_CC_MTR:
109767SN/A                  panic("TSDEV_CC_MTR not implemeted\n");
1102523SN/A                   break;
111767SN/A              case TSDEV_CC_MISC:
1125570Snate@binkert.org                  pkt->set(((ipint << 8) & 0xF) | ((itint << 4) & 0xF) |
1135714Shsul@eecs.umich.edu                                     (pkt->req->contextId() & 0x3));
1145714Shsul@eecs.umich.edu                  // currently, FS cannot handle MT so contextId and
1155714Shsul@eecs.umich.edu                  // cpuId are effectively the same, don't know if it will
1165714Shsul@eecs.umich.edu                  // matter if FS becomes MT enabled.  I suspect no because
1175714Shsul@eecs.umich.edu                  // we are currently able to boot up to 64 procs anyway
1185714Shsul@eecs.umich.edu                  // which would render the CPUID of this register useless
1195714Shsul@eecs.umich.edu                  // anyway
1202523SN/A                  break;
121767SN/A              case TSDEV_CC_AAR0:
122767SN/A              case TSDEV_CC_AAR1:
123767SN/A              case TSDEV_CC_AAR2:
124767SN/A              case TSDEV_CC_AAR3:
1252630SN/A                  pkt->set(0);
1262523SN/A                  break;
127767SN/A              case TSDEV_CC_DIM0:
1282630SN/A                  pkt->set(dim[0]);
1292523SN/A                  break;
130767SN/A              case TSDEV_CC_DIM1:
1312630SN/A                  pkt->set(dim[1]);
1322523SN/A                  break;
133767SN/A              case TSDEV_CC_DIM2:
1342630SN/A                  pkt->set(dim[2]);
1352523SN/A                  break;
136767SN/A              case TSDEV_CC_DIM3:
1372630SN/A                  pkt->set(dim[3]);
1382523SN/A                  break;
139767SN/A              case TSDEV_CC_DIR0:
1402630SN/A                  pkt->set(dir[0]);
1412523SN/A                  break;
142767SN/A              case TSDEV_CC_DIR1:
1432630SN/A                  pkt->set(dir[1]);
1442523SN/A                  break;
145767SN/A              case TSDEV_CC_DIR2:
1462630SN/A                  pkt->set(dir[2]);
1472523SN/A                  break;
148767SN/A              case TSDEV_CC_DIR3:
1492630SN/A                  pkt->set(dir[3]);
1502523SN/A                  break;
151767SN/A              case TSDEV_CC_DRIR:
1522630SN/A                  pkt->set(drir);
1532523SN/A                  break;
154767SN/A              case TSDEV_CC_PRBEN:
155767SN/A                  panic("TSDEV_CC_PRBEN not implemented\n");
1562523SN/A                  break;
157767SN/A              case TSDEV_CC_IIC0:
158767SN/A              case TSDEV_CC_IIC1:
159767SN/A              case TSDEV_CC_IIC2:
160767SN/A              case TSDEV_CC_IIC3:
161767SN/A                  panic("TSDEV_CC_IICx not implemented\n");
1622523SN/A                  break;
163767SN/A              case TSDEV_CC_MPR0:
164767SN/A              case TSDEV_CC_MPR1:
165767SN/A              case TSDEV_CC_MPR2:
166767SN/A              case TSDEV_CC_MPR3:
167767SN/A                  panic("TSDEV_CC_MPRx not implemented\n");
1682523SN/A                  break;
1691290SN/A              case TSDEV_CC_IPIR:
1702630SN/A                  pkt->set(ipint);
1712523SN/A                  break;
1721290SN/A              case TSDEV_CC_ITIR:
1732630SN/A                  pkt->set(itint);
1742523SN/A                  break;
175768SN/A              default:
176768SN/A                  panic("default in cchip read reached, accessing 0x%x\n");
177767SN/A           } // uint64_t
178767SN/A
179767SN/A      break;
180767SN/A      case sizeof(uint32_t):
181767SN/A      case sizeof(uint16_t):
182767SN/A      case sizeof(uint8_t):
183767SN/A      default:
184768SN/A        panic("invalid access size(?) for tsunami register!\n");
185767SN/A    }
1862549SN/A    DPRINTF(Tsunami, "Tsunami CChip: read  regnum=%#x size=%d data=%lld\n",
1872641SN/A            regnum, pkt->getSize(), pkt->get<uint64_t>());
188767SN/A
1894870Sstever@eecs.umich.edu    pkt->makeAtomicResponse();
1902523SN/A    return pioDelay;
191767SN/A}
192767SN/A
1932523SN/ATick
1943349SN/ATsunamiCChip::write(PacketPtr pkt)
195767SN/A{
1962641SN/A    assert(pkt->getAddr() >= pioAddr && pkt->getAddr() < pioAddr + pioSize);
1972641SN/A    Addr daddr = pkt->getAddr() - pioAddr;
1982641SN/A    Addr regnum = (pkt->getAddr() - pioAddr) >> 6 ;
1992539SN/A
2002523SN/A
2012641SN/A    assert(pkt->getSize() == sizeof(uint64_t));
2022523SN/A
2032641SN/A    DPRINTF(Tsunami, "write - addr=%#x value=%#x\n", pkt->getAddr(), pkt->get<uint64_t>());
204767SN/A
205830SN/A    bool supportedWrite = false;
206830SN/A
207767SN/A
2082539SN/A    if (daddr & TSDEV_CC_BDIMS)
2092539SN/A    {
2102539SN/A        int number = (daddr >> 4) & 0x3F;
2111290SN/A
2122539SN/A        uint64_t bitvector;
2132539SN/A        uint64_t olddim;
2142539SN/A        uint64_t olddir;
2151290SN/A
2162539SN/A        olddim = dim[number];
2172539SN/A        olddir = dir[number];
2182630SN/A        dim[number] = pkt->get<uint64_t>();
2192539SN/A        dir[number] = dim[number] & drir;
2202539SN/A        for(int x = 0; x < Tsunami::Max_CPUs; x++)
2212539SN/A        {
2222539SN/A            bitvector = ULL(1) << x;
2232539SN/A            // Figure out which bits have changed
2242539SN/A            if ((dim[number] & bitvector) != (olddim & bitvector))
2252539SN/A            {
2262539SN/A                // The bit is now set and it wasn't before (set)
2272539SN/A                if((dim[number] & bitvector) && (dir[number] & bitvector))
2282539SN/A                {
2292539SN/A                    tsunami->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
2302539SN/A                    DPRINTF(Tsunami, "dim write resulting in posting dir"
2312539SN/A                            " interrupt to cpu %d\n", number);
2322539SN/A                }
2332539SN/A                else if ((olddir & bitvector) &&
2342539SN/A                        !(dir[number] & bitvector))
2352539SN/A                {
2362539SN/A                    // The bit was set and now its now clear and
2372539SN/A                    // we were interrupting on that bit before
2382539SN/A                    tsunami->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
2392539SN/A                    DPRINTF(Tsunami, "dim write resulting in clear"
2402539SN/A                            " dir interrupt to cpu %d\n", number);
2411290SN/A
2421074SN/A                }
2431074SN/A
2442539SN/A
2452539SN/A            }
2462539SN/A        }
2472539SN/A    } else {
2482539SN/A        switch(regnum) {
2492539SN/A          case TSDEV_CC_CSR:
2502539SN/A              panic("TSDEV_CC_CSR write\n");
2512539SN/A          case TSDEV_CC_MTR:
2522539SN/A              panic("TSDEV_CC_MTR write not implemented\n");
2532539SN/A          case TSDEV_CC_MISC:
2542539SN/A            uint64_t ipreq;
2552630SN/A            ipreq = (pkt->get<uint64_t>() >> 12) & 0xF;
2562539SN/A            //If it is bit 12-15, this is an IPI post
2572539SN/A            if (ipreq) {
2582539SN/A                reqIPI(ipreq);
2592539SN/A                supportedWrite = true;
2602539SN/A            }
2612539SN/A
2622539SN/A            //If it is bit 8-11, this is an IPI clear
2632539SN/A            uint64_t ipintr;
2642630SN/A            ipintr = (pkt->get<uint64_t>() >> 8) & 0xF;
2652539SN/A            if (ipintr) {
2662539SN/A                clearIPI(ipintr);
2672539SN/A                supportedWrite = true;
2682539SN/A            }
2692539SN/A
2702539SN/A            //If it is the 4-7th bit, clear the RTC interrupt
2712539SN/A            uint64_t itintr;
2722630SN/A              itintr = (pkt->get<uint64_t>() >> 4) & 0xF;
2732539SN/A            if (itintr) {
2742539SN/A                  clearITI(itintr);
2752539SN/A                supportedWrite = true;
2762539SN/A            }
2772539SN/A
2782539SN/A              // ignore NXMs
2792630SN/A              if (pkt->get<uint64_t>() & 0x10000000)
2802539SN/A                  supportedWrite = true;
2812539SN/A
2822539SN/A            if(!supportedWrite)
2832539SN/A                  panic("TSDEV_CC_MISC write not implemented\n");
2842539SN/A
2852549SN/A            break;
2862539SN/A            case TSDEV_CC_AAR0:
2872539SN/A            case TSDEV_CC_AAR1:
2882539SN/A            case TSDEV_CC_AAR2:
2892539SN/A            case TSDEV_CC_AAR3:
2902539SN/A                panic("TSDEV_CC_AARx write not implemeted\n");
2912539SN/A            case TSDEV_CC_DIM0:
2922539SN/A            case TSDEV_CC_DIM1:
2932539SN/A            case TSDEV_CC_DIM2:
2942539SN/A            case TSDEV_CC_DIM3:
2952539SN/A                int number;
2962539SN/A                if(regnum == TSDEV_CC_DIM0)
2972539SN/A                    number = 0;
2982539SN/A                else if(regnum == TSDEV_CC_DIM1)
2992539SN/A                    number = 1;
3002539SN/A                else if(regnum == TSDEV_CC_DIM2)
3012539SN/A                    number = 2;
3022539SN/A                else
3032539SN/A                    number = 3;
3042539SN/A
3052539SN/A                uint64_t bitvector;
3062539SN/A                uint64_t olddim;
3072539SN/A                uint64_t olddir;
3082539SN/A
3092539SN/A                olddim = dim[number];
3102539SN/A                olddir = dir[number];
3112630SN/A                dim[number] = pkt->get<uint64_t>();
3122539SN/A                dir[number] = dim[number] & drir;
3132539SN/A                for(int x = 0; x < 64; x++)
3142539SN/A                {
3152539SN/A                    bitvector = ULL(1) << x;
3162539SN/A                    // Figure out which bits have changed
3172539SN/A                    if ((dim[number] & bitvector) != (olddim & bitvector))
3182539SN/A                    {
3192539SN/A                        // The bit is now set and it wasn't before (set)
3202539SN/A                        if((dim[number] & bitvector) && (dir[number] & bitvector))
3212539SN/A                        {
3222539SN/A                          tsunami->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
3232539SN/A                          DPRINTF(Tsunami, "posting dir interrupt to cpu 0\n");
3242539SN/A                        }
3252539SN/A                        else if ((olddir & bitvector) &&
3262539SN/A                                !(dir[number] & bitvector))
3272539SN/A                        {
3282539SN/A                            // The bit was set and now its now clear and
3292539SN/A                            // we were interrupting on that bit before
3302539SN/A                            tsunami->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
3312539SN/A                          DPRINTF(Tsunami, "dim write resulting in clear"
3322539SN/A                                    " dir interrupt to cpu %d\n",
3332539SN/A                                    x);
3342539SN/A
3352539SN/A                        }
3362539SN/A
3372539SN/A
3382539SN/A                    }
3391074SN/A                }
3402539SN/A                break;
3412539SN/A            case TSDEV_CC_DIR0:
3422539SN/A            case TSDEV_CC_DIR1:
3432539SN/A            case TSDEV_CC_DIR2:
3442539SN/A            case TSDEV_CC_DIR3:
3452539SN/A                panic("TSDEV_CC_DIR write not implemented\n");
3462539SN/A            case TSDEV_CC_DRIR:
3472539SN/A                panic("TSDEV_CC_DRIR write not implemented\n");
3482539SN/A            case TSDEV_CC_PRBEN:
3492539SN/A                panic("TSDEV_CC_PRBEN write not implemented\n");
3502539SN/A            case TSDEV_CC_IIC0:
3512539SN/A            case TSDEV_CC_IIC1:
3522539SN/A            case TSDEV_CC_IIC2:
3532539SN/A            case TSDEV_CC_IIC3:
3542539SN/A                panic("TSDEV_CC_IICx write not implemented\n");
3552539SN/A            case TSDEV_CC_MPR0:
3562539SN/A            case TSDEV_CC_MPR1:
3572539SN/A            case TSDEV_CC_MPR2:
3582539SN/A            case TSDEV_CC_MPR3:
3592539SN/A                panic("TSDEV_CC_MPRx write not implemented\n");
3602539SN/A            case TSDEV_CC_IPIR:
3612630SN/A                clearIPI(pkt->get<uint64_t>());
3622539SN/A                break;
3632539SN/A            case TSDEV_CC_ITIR:
3642630SN/A                clearITI(pkt->get<uint64_t>());
3652539SN/A                break;
3662539SN/A            case TSDEV_CC_IPIQ:
3672630SN/A                reqIPI(pkt->get<uint64_t>());
3682539SN/A                break;
3692539SN/A            default:
3702539SN/A              panic("default in cchip read reached, accessing 0x%x\n");
3712539SN/A        }  // swtich(regnum)
3722539SN/A    } // not BIG_TSUNAMI write
3734870Sstever@eecs.umich.edu    pkt->makeAtomicResponse();
3742539SN/A    return pioDelay;
375767SN/A}
376767SN/A
377767SN/Avoid
3781290SN/ATsunamiCChip::clearIPI(uint64_t ipintr)
3791290SN/A{
3804103Ssaidi@eecs.umich.edu    int numcpus = sys->threadContexts.size();
3811290SN/A    assert(numcpus <= Tsunami::Max_CPUs);
3821290SN/A
3831290SN/A    if (ipintr) {
3841290SN/A        for (int cpunum=0; cpunum < numcpus; cpunum++) {
3851290SN/A            // Check each cpu bit
3861290SN/A            uint64_t cpumask = ULL(1) << cpunum;
3871290SN/A            if (ipintr & cpumask) {
3881290SN/A                // Check if there is a pending ipi
3891290SN/A                if (ipint & cpumask) {
3901290SN/A                    ipint &= ~cpumask;
3911290SN/A                    tsunami->intrctrl->clear(cpunum, TheISA::INTLEVEL_IRQ3, 0);
3921290SN/A                    DPRINTF(IPI, "clear IPI IPI cpu=%d\n", cpunum);
3931290SN/A                }
3941290SN/A                else
3951290SN/A                    warn("clear IPI for CPU=%d, but NO IPI\n", cpunum);
3961290SN/A            }
3971290SN/A        }
3981290SN/A    }
3991290SN/A    else
4001290SN/A        panic("Big IPI Clear, but not processors indicated\n");
4011290SN/A}
4021290SN/A
4031290SN/Avoid
4041290SN/ATsunamiCChip::clearITI(uint64_t itintr)
4051290SN/A{
4064103Ssaidi@eecs.umich.edu    int numcpus = sys->threadContexts.size();
4071290SN/A    assert(numcpus <= Tsunami::Max_CPUs);
4081290SN/A
4091290SN/A    if (itintr) {
4101290SN/A        for (int i=0; i < numcpus; i++) {
4111290SN/A            uint64_t cpumask = ULL(1) << i;
4121290SN/A            if (itintr & cpumask & itint) {
4131290SN/A                tsunami->intrctrl->clear(i, TheISA::INTLEVEL_IRQ2, 0);
4141290SN/A                itint &= ~cpumask;
4151290SN/A                DPRINTF(Tsunami, "clearing rtc interrupt to cpu=%d\n", i);
4161290SN/A            }
4171290SN/A        }
4181290SN/A    }
4191290SN/A    else
4201290SN/A        panic("Big ITI Clear, but not processors indicated\n");
4211290SN/A}
4221290SN/A
4231290SN/Avoid
4241290SN/ATsunamiCChip::reqIPI(uint64_t ipreq)
4251290SN/A{
4264103Ssaidi@eecs.umich.edu    int numcpus = sys->threadContexts.size();
4271290SN/A    assert(numcpus <= Tsunami::Max_CPUs);
4281290SN/A
4291290SN/A    if (ipreq) {
4301290SN/A        for (int cpunum=0; cpunum < numcpus; cpunum++) {
4311290SN/A            // Check each cpu bit
4321290SN/A            uint64_t cpumask = ULL(1) << cpunum;
4331290SN/A            if (ipreq & cpumask) {
4341290SN/A                // Check if there is already an ipi (bits 8:11)
4351290SN/A                if (!(ipint & cpumask)) {
4361290SN/A                    ipint  |= cpumask;
4371290SN/A                    tsunami->intrctrl->post(cpunum, TheISA::INTLEVEL_IRQ3, 0);
4381290SN/A                    DPRINTF(IPI, "send IPI cpu=%d\n", cpunum);
4391290SN/A                }
4401290SN/A                else
4411290SN/A                    warn("post IPI for CPU=%d, but IPI already\n", cpunum);
4421290SN/A            }
4431290SN/A        }
4441290SN/A    }
4451290SN/A    else
4461290SN/A        panic("Big IPI Request, but not processors indicated\n");
4471290SN/A}
4481290SN/A
4491290SN/A
4501290SN/Avoid
451831SN/ATsunamiCChip::postRTC()
452831SN/A{
4534103Ssaidi@eecs.umich.edu    int size = sys->threadContexts.size();
4541290SN/A    assert(size <= Tsunami::Max_CPUs);
455831SN/A
456831SN/A    for (int i = 0; i < size; i++) {
4571290SN/A        uint64_t cpumask = ULL(1) << i;
4582539SN/A       if (!(cpumask & itint)) {
4592539SN/A           itint |= cpumask;
4602539SN/A           tsunami->intrctrl->post(i, TheISA::INTLEVEL_IRQ2, 0);
4614739Sstever@eecs.umich.edu           DPRINTF(Tsunami, "Posting RTC interrupt to cpu=%d\n", i);
4622539SN/A       }
463831SN/A    }
464831SN/A
465831SN/A}
466831SN/A
467831SN/Avoid
468817SN/ATsunamiCChip::postDRIR(uint32_t interrupt)
469777SN/A{
4701290SN/A    uint64_t bitvector = ULL(1) << interrupt;
4714103Ssaidi@eecs.umich.edu    uint64_t size = sys->threadContexts.size();
4721290SN/A    assert(size <= Tsunami::Max_CPUs);
473777SN/A    drir |= bitvector;
4741290SN/A
475831SN/A    for(int i=0; i < size; i++) {
476817SN/A        dir[i] = dim[i] & drir;
4772539SN/A       if (dim[i] & bitvector) {
4782539SN/A              tsunami->intrctrl->post(i, TheISA::INTLEVEL_IRQ1, interrupt);
4792539SN/A              DPRINTF(Tsunami, "posting dir interrupt to cpu %d,"
480817SN/A                        "interrupt %d\n",i, interrupt);
4812539SN/A       }
482777SN/A    }
483777SN/A}
484777SN/A
485777SN/Avoid
486817SN/ATsunamiCChip::clearDRIR(uint32_t interrupt)
487777SN/A{
4881290SN/A    uint64_t bitvector = ULL(1) << interrupt;
4894103Ssaidi@eecs.umich.edu    uint64_t size = sys->threadContexts.size();
4901290SN/A    assert(size <= Tsunami::Max_CPUs);
4911290SN/A
492817SN/A    if (drir & bitvector)
493817SN/A    {
494817SN/A        drir &= ~bitvector;
495831SN/A        for(int i=0; i < size; i++) {
4962539SN/A           if (dir[i] & bitvector) {
4972539SN/A               tsunami->intrctrl->clear(i, TheISA::INTLEVEL_IRQ1, interrupt);
4982539SN/A               DPRINTF(Tsunami, "clearing dir interrupt to cpu %d,"
499817SN/A                    "interrupt %d\n",i, interrupt);
500777SN/A
5012539SN/A           }
5022539SN/A           dir[i] = dim[i] & drir;
503777SN/A        }
504777SN/A    }
505817SN/A    else
506817SN/A        DPRINTF(Tsunami, "Spurrious clear? interrupt %d\n", interrupt);
507777SN/A}
508777SN/A
509909SN/A
510777SN/Avoid
511767SN/ATsunamiCChip::serialize(std::ostream &os)
512767SN/A{
513811SN/A    SERIALIZE_ARRAY(dim, Tsunami::Max_CPUs);
514811SN/A    SERIALIZE_ARRAY(dir, Tsunami::Max_CPUs);
5151290SN/A    SERIALIZE_SCALAR(ipint);
5161290SN/A    SERIALIZE_SCALAR(itint);
517811SN/A    SERIALIZE_SCALAR(drir);
518767SN/A}
519767SN/A
520767SN/Avoid
521767SN/ATsunamiCChip::unserialize(Checkpoint *cp, const std::string &section)
522767SN/A{
523811SN/A    UNSERIALIZE_ARRAY(dim, Tsunami::Max_CPUs);
524811SN/A    UNSERIALIZE_ARRAY(dir, Tsunami::Max_CPUs);
5251290SN/A    UNSERIALIZE_SCALAR(ipint);
5261290SN/A    UNSERIALIZE_SCALAR(itint);
527811SN/A    UNSERIALIZE_SCALAR(drir);
528767SN/A}
529767SN/A
5304762Snate@binkert.orgTsunamiCChip *
5314762Snate@binkert.orgTsunamiCChipParams::create()
532767SN/A{
5334762Snate@binkert.org    return new TsunamiCChip(this);
534767SN/A}
535