DBusSimplePlugin AHB bridge add hazard checking, pass tests

This commit is contained in:
Dolu1990 2019-03-28 11:41:49 +01:00
parent 53c05c31c7
commit ad27007c3c
3 changed files with 72 additions and 5 deletions

View File

@ -141,10 +141,10 @@ object VexRiscvAhbLite3ForSim{
plugin.iBus.setAsDirectionLess() //Unset IO properties of iBus plugin.iBus.setAsDirectionLess() //Unset IO properties of iBus
master(plugin.iBus.toAhbLite3Master()).setName("iBusAhbLite3") master(plugin.iBus.toAhbLite3Master()).setName("iBusAhbLite3")
} }
// case plugin: DBusSimplePlugin => { case plugin: DBusSimplePlugin => {
// plugin.dBus.setAsDirectionLess() plugin.dBus.setAsDirectionLess()
// master(plugin.dBus.toAhbLite3Master()).setName("dBusAhbLite3") master(plugin.dBus.toAhbLite3Master(avoidWriteToReadHazard = true)).setName("dBusAhbLite3")
// } }
// case plugin: IBusCachedPlugin => { // case plugin: IBusCachedPlugin => {
// plugin.iBus.setAsDirectionLess() //Unset IO properties of iBus // plugin.iBus.setAsDirectionLess() //Unset IO properties of iBus
// iBus = master(plugin.iBus.toAvalon()) // iBus = master(plugin.iBus.toAvalon())

View File

@ -204,7 +204,7 @@ case class DBusSimpleBus() extends Bundle with IMasterSlave{
def toAhbLite3Master(): AhbLite3Master = { def toAhbLite3Master(avoidWriteToReadHazard : Boolean): AhbLite3Master = {
val bus = AhbLite3Master(DBusSimpleBus.getAhbLite3Config()) val bus = AhbLite3Master(DBusSimpleBus.getAhbLite3Config())
bus.HADDR := this.cmd.address bus.HADDR := this.cmd.address
bus.HWRITE := this.cmd.wr bus.HWRITE := this.cmd.wr
@ -220,6 +220,16 @@ case class DBusSimpleBus() extends Bundle with IMasterSlave{
this.rsp.ready := bus.HREADY this.rsp.ready := bus.HREADY
this.rsp.data := bus.HRDATA this.rsp.data := bus.HRDATA
this.rsp.error := bus.HRESP this.rsp.error := bus.HRESP
if(avoidWriteToReadHazard) {
val writeDataPhase = RegNextWhen(bus.HTRANS === 2 && bus.HWRITE, bus.HREADY) init (False)
val potentialHazard = this.cmd.valid && !this.cmd.wr && writeDataPhase
when(potentialHazard) {
bus.HTRANS := 0
this.cmd.ready := False
}
}
bus bus
} }

View File

@ -1572,6 +1572,60 @@ public:
}; };
#endif #endif
#ifdef DBUS_SIMPLE_AHBLITE3
class DBusSimpleAhbLite3 : public SimElement{
public:
Workspace *ws;
VVexRiscv* top;
uint32_t dBusAhbLite3_HADDR, dBusAhbLite3_HSIZE, dBusAhbLite3_HTRANS, dBusAhbLite3_HWRITE;
DBusSimpleAhbLite3(Workspace* ws){
this->ws = ws;
this->top = ws->top;
}
virtual void onReset(){
top->dBusAhbLite3_HREADY = 1;
top->dBusAhbLite3_HRESP = 0;
dBusAhbLite3_HTRANS = 0;
}
virtual void preCycle(){
if(top->dBusAhbLite3_HREADY && dBusAhbLite3_HTRANS == 2 && dBusAhbLite3_HWRITE){
uint32_t data = top->dBusAhbLite3_HWDATA;
bool error;
ws->dBusAccess(dBusAhbLite3_HADDR, 1, dBusAhbLite3_HSIZE, ((1 << (1 << dBusAhbLite3_HSIZE))-1) << (dBusAhbLite3_HADDR & 0x3),&data,&error);
}
if(top->dBusAhbLite3_HREADY){
dBusAhbLite3_HADDR = top->dBusAhbLite3_HADDR ;
dBusAhbLite3_HSIZE = top->dBusAhbLite3_HSIZE ;
dBusAhbLite3_HTRANS = top->dBusAhbLite3_HTRANS ;
dBusAhbLite3_HWRITE = top->dBusAhbLite3_HWRITE ;
}
}
virtual void postCycle(){
if(ws->iStall)
top->dBusAhbLite3_HREADY = (!ws->iStall || VL_RANDOM_I(7) < 100);
top->dBusAhbLite3_HRDATA = VL_RANDOM_I(32);
top->dBusAhbLite3_HRESP = VL_RANDOM_I(1);
if(top->dBusAhbLite3_HREADY && dBusAhbLite3_HTRANS == 2 && !dBusAhbLite3_HWRITE){
bool error;
ws->dBusAccess(dBusAhbLite3_HADDR, 0, dBusAhbLite3_HSIZE, ((1 << (1 << dBusAhbLite3_HSIZE))-1) << (dBusAhbLite3_HADDR & 0x3),&top->dBusAhbLite3_HRDATA,&error);
top->dBusAhbLite3_HRESP = error;
}
}
};
#endif
#if defined(DBUS_CACHED_WISHBONE) || defined(DBUS_SIMPLE_WISHBONE) #if defined(DBUS_CACHED_WISHBONE) || defined(DBUS_SIMPLE_WISHBONE)
#include <queue> #include <queue>
@ -2065,6 +2119,9 @@ void Workspace::fillSimELements(){
#ifdef DBUS_SIMPLE_AVALON #ifdef DBUS_SIMPLE_AVALON
simElements.push_back(new DBusSimpleAvalon(this)); simElements.push_back(new DBusSimpleAvalon(this));
#endif #endif
#ifdef DBUS_SIMPLE_AHBLITE3
simElements.push_back(new DBusSimpleAhbLite3(this));
#endif
#ifdef DBUS_CACHED #ifdef DBUS_CACHED
simElements.push_back(new DBusCached(this)); simElements.push_back(new DBusCached(this));
#endif #endif