2004-01-15 23:29:35 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* @file
|
2004-02-05 19:05:20 +01:00
|
|
|
* Emulation of the Tsunami CChip CSRs
|
2004-01-15 23:29:35 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <deque>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/trace.hh"
|
|
|
|
#include "cpu/exec_context.hh"
|
|
|
|
#include "dev/console.hh"
|
|
|
|
#include "dev/tsunami_cchip.hh"
|
|
|
|
#include "dev/tsunamireg.h"
|
|
|
|
#include "dev/tsunami.hh"
|
2004-01-28 03:36:46 +01:00
|
|
|
#include "cpu/intr_control.hh"
|
2004-01-15 23:29:35 +01:00
|
|
|
#include "mem/functional_mem/memory_control.hh"
|
|
|
|
#include "sim/builder.hh"
|
|
|
|
#include "sim/system.hh"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2004-02-10 06:19:43 +01:00
|
|
|
TsunamiCChip::TsunamiCChip(const string &name, Tsunami *t, Addr a,
|
|
|
|
MemoryController *mmu)
|
|
|
|
: FunctionalMemory(name), addr(a), tsunami(t)
|
2004-01-15 23:29:35 +01:00
|
|
|
{
|
2004-02-10 06:19:43 +01:00
|
|
|
mmu->add_child(this, Range<Addr>(addr, addr + size));
|
|
|
|
|
2004-01-15 23:29:35 +01:00
|
|
|
for(int i=0; i < Tsunami::Max_CPUs; i++) {
|
|
|
|
dim[i] = 0;
|
|
|
|
dir[i] = 0;
|
2004-01-29 01:18:29 +01:00
|
|
|
dirInterrupting[i] = false;
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
drir = 0;
|
2004-01-28 03:36:46 +01:00
|
|
|
misc = 0;
|
|
|
|
RTCInterrupting = false;
|
|
|
|
|
|
|
|
//Put back pointer in tsunami
|
|
|
|
tsunami->cchip = this;
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Fault
|
2004-02-03 22:59:40 +01:00
|
|
|
TsunamiCChip::read(MemReqPtr &req, uint8_t *data)
|
2004-01-15 23:29:35 +01:00
|
|
|
{
|
2004-01-22 02:14:10 +01:00
|
|
|
DPRINTF(Tsunami, "read va=%#x size=%d\n",
|
2004-01-15 23:29:35 +01:00
|
|
|
req->vaddr, req->size);
|
|
|
|
|
2004-02-11 04:35:18 +01:00
|
|
|
Addr daddr = (req->paddr - (addr & PA_IMPL_MASK)) >> 6;
|
2004-01-29 02:23:40 +01:00
|
|
|
ExecContext *xc = req->xc;
|
2004-01-15 23:29:35 +01:00
|
|
|
|
|
|
|
switch (req->size) {
|
|
|
|
|
|
|
|
case sizeof(uint64_t):
|
|
|
|
switch(daddr) {
|
|
|
|
case TSDEV_CC_CSR:
|
|
|
|
*(uint64_t*)data = 0x0;
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_MTR:
|
|
|
|
panic("TSDEV_CC_MTR not implemeted\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_MISC:
|
2004-01-29 02:23:40 +01:00
|
|
|
*(uint64_t*)data = misc | (xc->cpu_id & 0x3);
|
2004-01-15 23:29:35 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_AAR0:
|
|
|
|
case TSDEV_CC_AAR1:
|
|
|
|
case TSDEV_CC_AAR2:
|
|
|
|
case TSDEV_CC_AAR3:
|
|
|
|
panic("TSDEV_CC_AARx not implemeted\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM0:
|
|
|
|
*(uint64_t*)data = dim[0];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM1:
|
|
|
|
*(uint64_t*)data = dim[1];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM2:
|
|
|
|
*(uint64_t*)data = dim[2];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM3:
|
|
|
|
*(uint64_t*)data = dim[3];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIR0:
|
|
|
|
*(uint64_t*)data = dir[0];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIR1:
|
|
|
|
*(uint64_t*)data = dir[1];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIR2:
|
|
|
|
*(uint64_t*)data = dir[2];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIR3:
|
|
|
|
*(uint64_t*)data = dir[3];
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DRIR:
|
|
|
|
*(uint64_t*)data = drir;
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_PRBEN:
|
|
|
|
panic("TSDEV_CC_PRBEN not implemented\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_IIC0:
|
|
|
|
case TSDEV_CC_IIC1:
|
|
|
|
case TSDEV_CC_IIC2:
|
|
|
|
case TSDEV_CC_IIC3:
|
|
|
|
panic("TSDEV_CC_IICx not implemented\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_MPR0:
|
|
|
|
case TSDEV_CC_MPR1:
|
|
|
|
case TSDEV_CC_MPR2:
|
|
|
|
case TSDEV_CC_MPR3:
|
|
|
|
panic("TSDEV_CC_MPRx not implemented\n");
|
|
|
|
return No_Fault;
|
2004-01-22 02:14:10 +01:00
|
|
|
default:
|
|
|
|
panic("default in cchip read reached, accessing 0x%x\n");
|
2004-01-15 23:29:35 +01:00
|
|
|
} // uint64_t
|
|
|
|
|
|
|
|
break;
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
case sizeof(uint8_t):
|
|
|
|
default:
|
2004-01-22 02:14:10 +01:00
|
|
|
panic("invalid access size(?) for tsunami register!\n");
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
DPRINTFN("Tsunami CChip ERROR: read daddr=%#x size=%d\n", daddr, req->size);
|
|
|
|
|
|
|
|
return No_Fault;
|
|
|
|
}
|
|
|
|
|
|
|
|
Fault
|
2004-02-03 22:59:40 +01:00
|
|
|
TsunamiCChip::write(MemReqPtr &req, const uint8_t *data)
|
2004-01-15 23:29:35 +01:00
|
|
|
{
|
2004-01-22 02:14:10 +01:00
|
|
|
DPRINTF(Tsunami, "write - va=%#x size=%d \n",
|
2004-01-15 23:29:35 +01:00
|
|
|
req->vaddr, req->size);
|
|
|
|
|
2004-02-11 04:35:18 +01:00
|
|
|
Addr daddr = (req->paddr - (addr & PA_IMPL_MASK)) >> 6;
|
2004-01-15 23:29:35 +01:00
|
|
|
|
|
|
|
switch (req->size) {
|
|
|
|
|
|
|
|
case sizeof(uint64_t):
|
|
|
|
switch(daddr) {
|
|
|
|
case TSDEV_CC_CSR:
|
|
|
|
panic("TSDEV_CC_CSR write\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_MTR:
|
|
|
|
panic("TSDEV_CC_MTR write not implemented\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_MISC:
|
2004-01-28 03:36:46 +01:00
|
|
|
//If it is the seventh bit, clear the RTC interrupt
|
2004-01-29 00:12:52 +01:00
|
|
|
if ((*(uint64_t*) data) & (1<<4)) {
|
2004-01-28 03:36:46 +01:00
|
|
|
RTCInterrupting = false;
|
|
|
|
tsunami->intrctrl->clear(0, TheISA::INTLEVEL_IRQ2, 0);
|
2004-01-29 00:12:52 +01:00
|
|
|
DPRINTF(Tsunami, "clearing rtc interrupt\n");
|
|
|
|
misc &= ~(1<<4);
|
2004-01-28 03:36:46 +01:00
|
|
|
} else panic("TSDEV_CC_MISC write not implemented\n");
|
2004-01-15 23:29:35 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_AAR0:
|
|
|
|
case TSDEV_CC_AAR1:
|
|
|
|
case TSDEV_CC_AAR2:
|
|
|
|
case TSDEV_CC_AAR3:
|
|
|
|
panic("TSDEV_CC_AARx write not implemeted\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM0:
|
|
|
|
case TSDEV_CC_DIM1:
|
|
|
|
case TSDEV_CC_DIM2:
|
|
|
|
case TSDEV_CC_DIM3:
|
2004-02-16 05:56:44 +01:00
|
|
|
int number;
|
|
|
|
if(daddr == TSDEV_CC_DIM0)
|
|
|
|
number = 0;
|
|
|
|
else if(daddr == TSDEV_CC_DIM1)
|
|
|
|
number = 1;
|
|
|
|
else if(daddr == TSDEV_CC_DIM2)
|
|
|
|
number = 2;
|
|
|
|
else
|
|
|
|
number = 3;
|
|
|
|
|
2004-02-16 22:04:34 +01:00
|
|
|
uint64_t bitvector;
|
|
|
|
uint64_t olddim;
|
|
|
|
uint64_t olddir;
|
|
|
|
|
2004-02-16 05:56:44 +01:00
|
|
|
olddim = dim[number];
|
2004-02-16 22:04:34 +01:00
|
|
|
olddir = dir[number];
|
2004-02-16 05:56:44 +01:00
|
|
|
dim[number] = *(uint64_t*)data;
|
|
|
|
dir[number] = dim[number] & drir;
|
|
|
|
for(int x = 0; x < 64; x++)
|
|
|
|
{
|
2004-02-16 22:04:34 +01:00
|
|
|
bitvector = (uint64_t)1 << x;
|
2004-02-16 05:56:44 +01:00
|
|
|
// Figure out which bits have changed
|
|
|
|
if ((dim[number] & bitvector) != (olddim & bitvector))
|
|
|
|
{
|
|
|
|
// The bit is now set and it wasn't before (set)
|
|
|
|
if((dim[number] & bitvector) && (dir[number] & bitvector))
|
|
|
|
{
|
2004-02-16 07:33:43 +01:00
|
|
|
tsunami->intrctrl->post(number, TheISA::INTLEVEL_IRQ1, x);
|
2004-02-16 05:56:44 +01:00
|
|
|
DPRINTF(Tsunami, "posting dir interrupt to cpu 0\n");
|
|
|
|
}
|
2004-02-16 22:04:34 +01:00
|
|
|
else if ((olddir & bitvector) &&
|
|
|
|
!(dir[number] & bitvector))
|
2004-02-16 05:56:44 +01:00
|
|
|
{
|
|
|
|
// The bit was set and now its now clear and
|
|
|
|
// we were interrupting on that bit before
|
2004-02-16 07:33:43 +01:00
|
|
|
tsunami->intrctrl->clear(number, TheISA::INTLEVEL_IRQ1, x);
|
2004-02-16 05:56:44 +01:00
|
|
|
DPRINTF(Tsunami, "dim write resulting in clear"
|
|
|
|
"dir interrupt to cpu 0\n");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2004-01-29 01:18:29 +01:00
|
|
|
}
|
2004-01-15 23:29:35 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIR0:
|
|
|
|
case TSDEV_CC_DIR1:
|
|
|
|
case TSDEV_CC_DIR2:
|
|
|
|
case TSDEV_CC_DIR3:
|
|
|
|
panic("TSDEV_CC_DIR write not implemented\n");
|
|
|
|
case TSDEV_CC_DRIR:
|
|
|
|
panic("TSDEV_CC_DRIR write not implemented\n");
|
|
|
|
case TSDEV_CC_PRBEN:
|
|
|
|
panic("TSDEV_CC_PRBEN write not implemented\n");
|
|
|
|
case TSDEV_CC_IIC0:
|
|
|
|
case TSDEV_CC_IIC1:
|
|
|
|
case TSDEV_CC_IIC2:
|
|
|
|
case TSDEV_CC_IIC3:
|
|
|
|
panic("TSDEV_CC_IICx write not implemented\n");
|
|
|
|
case TSDEV_CC_MPR0:
|
|
|
|
case TSDEV_CC_MPR1:
|
|
|
|
case TSDEV_CC_MPR2:
|
|
|
|
case TSDEV_CC_MPR3:
|
|
|
|
panic("TSDEV_CC_MPRx write not implemented\n");
|
2004-01-22 02:14:10 +01:00
|
|
|
default:
|
|
|
|
panic("default in cchip read reached, accessing 0x%x\n");
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case sizeof(uint32_t):
|
|
|
|
case sizeof(uint16_t):
|
|
|
|
case sizeof(uint8_t):
|
|
|
|
default:
|
2004-01-22 02:14:10 +01:00
|
|
|
panic("invalid access size(?) for tsunami register!\n");
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTFN("Tsunami ERROR: write daddr=%#x size=%d\n", daddr, req->size);
|
|
|
|
|
|
|
|
return No_Fault;
|
|
|
|
}
|
|
|
|
|
2004-01-29 01:18:29 +01:00
|
|
|
void
|
2004-02-16 05:56:44 +01:00
|
|
|
TsunamiCChip::postDRIR(uint32_t interrupt)
|
2004-01-29 01:18:29 +01:00
|
|
|
{
|
2004-02-16 22:04:34 +01:00
|
|
|
uint64_t bitvector = (uint64_t)0x1 << interrupt;
|
2004-01-29 01:18:29 +01:00
|
|
|
drir |= bitvector;
|
|
|
|
for(int i=0; i < Tsunami::Max_CPUs; i++) {
|
2004-02-16 05:56:44 +01:00
|
|
|
dir[i] = dim[i] & drir;
|
|
|
|
if (dim[i] & bitvector) {
|
2004-02-16 07:33:43 +01:00
|
|
|
tsunami->intrctrl->post(i, TheISA::INTLEVEL_IRQ1, interrupt);
|
2004-02-16 05:56:44 +01:00
|
|
|
DPRINTF(Tsunami, "posting dir interrupt to cpu %d,"
|
|
|
|
"interrupt %d\n",i, interrupt);
|
2004-01-29 01:18:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-02-16 05:56:44 +01:00
|
|
|
TsunamiCChip::clearDRIR(uint32_t interrupt)
|
2004-01-29 01:18:29 +01:00
|
|
|
{
|
2004-02-16 22:04:34 +01:00
|
|
|
uint64_t bitvector = (uint64_t)0x1 << interrupt;
|
2004-02-16 05:56:44 +01:00
|
|
|
if (drir & bitvector)
|
|
|
|
{
|
|
|
|
drir &= ~bitvector;
|
|
|
|
for(int i=0; i < Tsunami::Max_CPUs; i++) {
|
|
|
|
if (dir[i] & bitvector) {
|
2004-02-16 07:33:43 +01:00
|
|
|
tsunami->intrctrl->clear(i, TheISA::INTLEVEL_IRQ1, interrupt);
|
2004-02-16 05:56:44 +01:00
|
|
|
DPRINTF(Tsunami, "clearing dir interrupt to cpu %d,"
|
|
|
|
"interrupt %d\n",i, interrupt);
|
2004-01-29 01:18:29 +01:00
|
|
|
|
2004-02-16 05:56:44 +01:00
|
|
|
}
|
|
|
|
dir[i] = dim[i] & drir;
|
2004-01-29 01:18:29 +01:00
|
|
|
}
|
|
|
|
}
|
2004-02-16 05:56:44 +01:00
|
|
|
else
|
|
|
|
DPRINTF(Tsunami, "Spurrious clear? interrupt %d\n", interrupt);
|
2004-01-29 01:18:29 +01:00
|
|
|
}
|
|
|
|
|
2004-01-15 23:29:35 +01:00
|
|
|
void
|
|
|
|
TsunamiCChip::serialize(std::ostream &os)
|
|
|
|
{
|
2004-02-11 21:32:30 +01:00
|
|
|
SERIALIZE_ARRAY(dim, Tsunami::Max_CPUs);
|
|
|
|
SERIALIZE_ARRAY(dir, Tsunami::Max_CPUs);
|
|
|
|
SERIALIZE_ARRAY(dirInterrupting, Tsunami::Max_CPUs);
|
|
|
|
SERIALIZE_SCALAR(drir);
|
|
|
|
SERIALIZE_SCALAR(misc);
|
|
|
|
SERIALIZE_SCALAR(RTCInterrupting);
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiCChip::unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
2004-02-11 21:32:30 +01:00
|
|
|
UNSERIALIZE_ARRAY(dim, Tsunami::Max_CPUs);
|
|
|
|
UNSERIALIZE_ARRAY(dir, Tsunami::Max_CPUs);
|
|
|
|
UNSERIALIZE_ARRAY(dirInterrupting, Tsunami::Max_CPUs);
|
|
|
|
UNSERIALIZE_SCALAR(drir);
|
|
|
|
UNSERIALIZE_SCALAR(misc);
|
|
|
|
UNSERIALIZE_SCALAR(RTCInterrupting);
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BEGIN_DECLARE_SIM_OBJECT_PARAMS(TsunamiCChip)
|
|
|
|
|
2004-01-28 03:36:46 +01:00
|
|
|
SimObjectParam<Tsunami *> tsunami;
|
2004-01-15 23:29:35 +01:00
|
|
|
SimObjectParam<MemoryController *> mmu;
|
|
|
|
Param<Addr> addr;
|
|
|
|
|
|
|
|
END_DECLARE_SIM_OBJECT_PARAMS(TsunamiCChip)
|
|
|
|
|
|
|
|
BEGIN_INIT_SIM_OBJECT_PARAMS(TsunamiCChip)
|
|
|
|
|
2004-01-28 03:36:46 +01:00
|
|
|
INIT_PARAM(tsunami, "Tsunami"),
|
2004-01-15 23:29:35 +01:00
|
|
|
INIT_PARAM(mmu, "Memory Controller"),
|
2004-02-10 06:19:43 +01:00
|
|
|
INIT_PARAM(addr, "Device Address")
|
2004-01-15 23:29:35 +01:00
|
|
|
|
|
|
|
END_INIT_SIM_OBJECT_PARAMS(TsunamiCChip)
|
|
|
|
|
|
|
|
CREATE_SIM_OBJECT(TsunamiCChip)
|
|
|
|
{
|
2004-02-10 06:19:43 +01:00
|
|
|
return new TsunamiCChip(getInstanceName(), tsunami, addr, mmu);
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_SIM_OBJECT("TsunamiCChip", TsunamiCChip)
|