2004-01-15 23:29:35 +01:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/* @file
|
|
|
|
* Tsunami CChip (processor, memory, or IO)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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-01-28 03:36:46 +01:00
|
|
|
TsunamiCChip::TsunamiCChip(const string &name, Tsunami *t,
|
2004-01-15 23:29:35 +01:00
|
|
|
Addr addr, Addr mask, MemoryController *mmu)
|
2004-01-28 03:36:46 +01:00
|
|
|
: MmapDevice(name, addr, mask, mmu), tsunami(t)
|
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
|
|
|
|
TsunamiCChip::read(MemReqPtr req, uint8_t *data)
|
|
|
|
{
|
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);
|
|
|
|
|
|
|
|
Addr daddr = (req->paddr & addr_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
|
|
|
|
TsunamiCChip::write(MemReqPtr req, const uint8_t *data)
|
|
|
|
{
|
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);
|
|
|
|
|
|
|
|
Addr daddr = (req->paddr & addr_mask) >> 6;
|
|
|
|
|
|
|
|
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:
|
|
|
|
dim[0] = *(uint64_t*)data;
|
2004-01-29 01:18:29 +01:00
|
|
|
if (dim[0] & drir) {
|
|
|
|
dir[0] = dim[0] & drir;
|
|
|
|
if (!dirInterrupting[0]) {
|
|
|
|
dirInterrupting[0] = true;
|
|
|
|
tsunami->intrctrl->post(0, TheISA::INTLEVEL_IRQ1, 0);
|
|
|
|
DPRINTF(Tsunami, "posting dir interrupt to cpu 0\n");
|
|
|
|
}
|
|
|
|
}
|
2004-01-15 23:29:35 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM1:
|
|
|
|
dim[1] = *(uint64_t*)data;
|
2004-01-29 01:18:29 +01:00
|
|
|
if (dim[1] & drir) {
|
|
|
|
dir[1] = dim[1] & drir;
|
|
|
|
if (!dirInterrupting[1]) {
|
|
|
|
dirInterrupting[1] = true;
|
|
|
|
tsunami->intrctrl->post(1, TheISA::INTLEVEL_IRQ1, 0);
|
|
|
|
DPRINTF(Tsunami, "posting dir interrupt to cpu 1\n");
|
|
|
|
}
|
|
|
|
}
|
2004-01-15 23:29:35 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM2:
|
|
|
|
dim[2] = *(uint64_t*)data;
|
2004-01-29 01:18:29 +01:00
|
|
|
if (dim[2] & drir) {
|
|
|
|
dir[2] = dim[2] & drir;
|
|
|
|
if (!dirInterrupting[2]) {
|
|
|
|
dirInterrupting[2] = true;
|
|
|
|
tsunami->intrctrl->post(2, TheISA::INTLEVEL_IRQ1, 0);
|
|
|
|
DPRINTF(Tsunami, "posting dir interrupt to cpu 2\n");
|
|
|
|
}
|
|
|
|
}
|
2004-01-15 23:29:35 +01:00
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DIM3:
|
|
|
|
dim[3] = *(uint64_t*)data;
|
2004-01-29 01:18:29 +01:00
|
|
|
if ((dim[3] & drir) /*And Not Already Int*/) {
|
|
|
|
dir[3] = dim[3] & drir;
|
|
|
|
if (!dirInterrupting[3]) {
|
|
|
|
dirInterrupting[3] = true;
|
|
|
|
tsunami->intrctrl->post(3, TheISA::INTLEVEL_IRQ1, 0);
|
|
|
|
DPRINTF(Tsunami, "posting dir interrupt to cpu 3\n");
|
|
|
|
}
|
|
|
|
}
|
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");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_DRIR:
|
|
|
|
panic("TSDEV_CC_DRIR write not implemented\n");
|
|
|
|
return No_Fault;
|
|
|
|
case TSDEV_CC_PRBEN:
|
|
|
|
panic("TSDEV_CC_PRBEN write 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 write 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 write 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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
TsunamiCChip::postDRIR(uint64_t bitvector)
|
|
|
|
{
|
|
|
|
drir |= bitvector;
|
|
|
|
for(int i=0; i < Tsunami::Max_CPUs; i++) {
|
|
|
|
if (bitvector & dim[i]) {
|
|
|
|
dir[i] |= bitvector;
|
|
|
|
if (!dirInterrupting[i]) {
|
|
|
|
dirInterrupting[i] = true;
|
|
|
|
tsunami->intrctrl->post(i, TheISA::INTLEVEL_IRQ1, 0);
|
|
|
|
DPRINTF(Tsunami, "posting dir interrupt to cpu %d\n",i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiCChip::clearDRIR(uint64_t bitvector)
|
|
|
|
{
|
|
|
|
drir &= ~bitvector;
|
|
|
|
for(int i=0; i < Tsunami::Max_CPUs; i++) {
|
|
|
|
dir[i] &= ~bitvector;
|
|
|
|
if (!dir[i]) {
|
|
|
|
dirInterrupting[i] = false;
|
|
|
|
tsunami->intrctrl->clear(i, TheISA::INTLEVEL_IRQ1, 0);
|
|
|
|
DPRINTF(Tsunami, "clearing dir interrupt to cpu %d\n", i);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-15 23:29:35 +01:00
|
|
|
void
|
|
|
|
TsunamiCChip::serialize(std::ostream &os)
|
|
|
|
{
|
|
|
|
// code should be written
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TsunamiCChip::unserialize(Checkpoint *cp, const std::string §ion)
|
|
|
|
{
|
|
|
|
//code should be written
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
Param<Addr> mask;
|
|
|
|
|
|
|
|
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"),
|
|
|
|
INIT_PARAM(addr, "Device Address"),
|
|
|
|
INIT_PARAM(mask, "Address Mask")
|
|
|
|
|
|
|
|
END_INIT_SIM_OBJECT_PARAMS(TsunamiCChip)
|
|
|
|
|
|
|
|
CREATE_SIM_OBJECT(TsunamiCChip)
|
|
|
|
{
|
2004-01-28 03:36:46 +01:00
|
|
|
return new TsunamiCChip(getInstanceName(), tsunami, addr, mask, mmu);
|
2004-01-15 23:29:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
REGISTER_SIM_OBJECT("TsunamiCChip", TsunamiCChip)
|