2014-09-12 19:15:04 +02:00
|
|
|
// See LICENSE for license details.
|
|
|
|
|
2013-01-25 08:56:45 +01:00
|
|
|
#include "htif_emulator.h"
|
2012-12-04 16:04:26 +01:00
|
|
|
#include "mm.h"
|
|
|
|
#include "mm_dramsim2.h"
|
2012-10-02 04:30:11 +02:00
|
|
|
#include <DirectC.h>
|
2013-01-25 08:56:45 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <sstream>
|
|
|
|
#include <iterator>
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2014-03-18 01:02:28 +01:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
extern int vcs_main(int argc, char** argv);
|
|
|
|
|
|
|
|
static htif_emulator_t* htif;
|
2013-01-25 08:56:45 +01:00
|
|
|
static unsigned htif_bytes;
|
2014-03-18 01:02:28 +01:00
|
|
|
static mm_t* mm;
|
|
|
|
static const char* loadmem;
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2014-03-18 09:35:08 +01:00
|
|
|
void htif_fini(vc_handle failure)
|
2014-03-18 01:02:28 +01:00
|
|
|
{
|
|
|
|
delete htif;
|
|
|
|
htif = NULL;
|
2014-03-18 09:35:08 +01:00
|
|
|
exit(vc_getScalar(failure));
|
2014-03-18 01:02:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
bool dramsim = false;
|
|
|
|
|
|
|
|
for (int i = 1; i < argc; i++)
|
|
|
|
{
|
|
|
|
if (!strcmp(argv[i], "+dramsim"))
|
|
|
|
dramsim = true;
|
|
|
|
else if (!strncmp(argv[i], "+loadmem=", 9))
|
|
|
|
loadmem = argv[i]+9;
|
|
|
|
}
|
|
|
|
|
|
|
|
mm = dramsim ? (mm_t*)(new mm_dramsim2_t) : (mm_t*)(new mm_magic_t);
|
|
|
|
htif = new htif_emulator_t(std::vector<std::string>(argv + 1, argv + argc));
|
|
|
|
|
|
|
|
vcs_main(argc, argv);
|
|
|
|
abort(); // should never get here
|
|
|
|
}
|
2012-10-02 04:30:11 +02:00
|
|
|
|
|
|
|
void memory_tick(
|
|
|
|
vc_handle mem_req_val,
|
|
|
|
vc_handle mem_req_rdy,
|
|
|
|
vc_handle mem_req_store,
|
|
|
|
vc_handle mem_req_addr,
|
|
|
|
vc_handle mem_req_tag,
|
|
|
|
|
|
|
|
vc_handle mem_req_data_val,
|
|
|
|
vc_handle mem_req_data_rdy,
|
|
|
|
vc_handle mem_req_data_bits,
|
|
|
|
|
|
|
|
vc_handle mem_resp_val,
|
2013-05-02 13:58:43 +02:00
|
|
|
vc_handle mem_resp_rdy,
|
2012-10-02 04:30:11 +02:00
|
|
|
vc_handle mem_resp_tag,
|
|
|
|
vc_handle mem_resp_data)
|
|
|
|
{
|
2013-05-02 13:58:43 +02:00
|
|
|
uint32_t req_data[mm->get_word_size()/sizeof(uint32_t)];
|
|
|
|
for (size_t i = 0; i < mm->get_word_size()/sizeof(uint32_t); i++)
|
2012-12-04 16:04:26 +01:00
|
|
|
req_data[i] = vc_4stVectorRef(mem_req_data_bits)[i].d;
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2012-12-04 16:04:26 +01:00
|
|
|
vc_putScalar(mem_req_rdy, mm->req_cmd_ready());
|
|
|
|
vc_putScalar(mem_req_data_rdy, mm->req_data_ready());
|
|
|
|
vc_putScalar(mem_resp_val, mm->resp_valid());
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2013-05-02 13:58:43 +02:00
|
|
|
vec32 d[mm->get_word_size()/sizeof(uint32_t)];
|
2012-12-04 16:04:26 +01:00
|
|
|
d[0].c = 0;
|
|
|
|
d[0].d = mm->resp_tag();
|
|
|
|
vc_put4stVector(mem_resp_tag, d);
|
|
|
|
|
2013-05-02 13:58:43 +02:00
|
|
|
for (size_t i = 0; i < mm->get_word_size()/sizeof(uint32_t); i++)
|
2012-12-04 16:04:26 +01:00
|
|
|
{
|
|
|
|
d[i].c = 0;
|
|
|
|
d[i].d = ((uint32_t*)mm->resp_data())[i];
|
|
|
|
}
|
|
|
|
vc_put4stVector(mem_resp_data, d);
|
|
|
|
|
|
|
|
mm->tick
|
|
|
|
(
|
2012-10-02 04:30:11 +02:00
|
|
|
vc_getScalar(mem_req_val),
|
|
|
|
vc_getScalar(mem_req_store),
|
|
|
|
vc_4stVectorRef(mem_req_addr)->d,
|
|
|
|
vc_4stVectorRef(mem_req_tag)->d,
|
|
|
|
vc_getScalar(mem_req_data_val),
|
2013-05-02 13:58:43 +02:00
|
|
|
req_data,
|
|
|
|
vc_getScalar(mem_resp_rdy)
|
2012-10-02 04:30:11 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-03-18 01:02:28 +01:00
|
|
|
void htif_init(vc_handle htif_width, vc_handle mem_width)
|
2012-10-02 04:30:11 +02:00
|
|
|
{
|
2013-05-02 13:58:43 +02:00
|
|
|
int mw = vc_4stVectorRef(mem_width)->d;
|
|
|
|
assert(mw && (mw & (mw-1)) == 0);
|
|
|
|
mm->init(MEM_SIZE, mw/8, LINE_SIZE);
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2014-03-18 01:02:28 +01:00
|
|
|
if (loadmem)
|
|
|
|
load_mem(mm->get_data(), loadmem);
|
|
|
|
|
2013-05-02 13:58:43 +02:00
|
|
|
vec32* w = vc_4stVectorRef(htif_width);
|
2013-01-25 08:56:45 +01:00
|
|
|
assert(w->d <= 32 && w->d % 8 == 0); // htif_tick assumes data fits in a vec32
|
|
|
|
htif_bytes = w->d/8;
|
2013-05-02 06:11:05 +02:00
|
|
|
}
|
|
|
|
|
2012-10-02 04:30:11 +02:00
|
|
|
void htif_tick
|
|
|
|
(
|
|
|
|
vc_handle htif_in_valid,
|
|
|
|
vc_handle htif_in_ready,
|
|
|
|
vc_handle htif_in_bits,
|
|
|
|
vc_handle htif_out_valid,
|
|
|
|
vc_handle htif_out_ready,
|
2013-01-25 08:56:45 +01:00
|
|
|
vc_handle htif_out_bits,
|
|
|
|
vc_handle exit
|
2012-10-02 04:30:11 +02:00
|
|
|
)
|
|
|
|
{
|
2013-01-25 08:56:45 +01:00
|
|
|
static bool peek_in_valid;
|
|
|
|
static uint32_t peek_in_bits;
|
|
|
|
if (vc_getScalar(htif_in_ready))
|
|
|
|
peek_in_valid = htif->recv_nonblocking(&peek_in_bits, htif_bytes);
|
|
|
|
|
|
|
|
vc_putScalar(htif_out_ready, 1);
|
|
|
|
if (vc_getScalar(htif_out_valid))
|
|
|
|
{
|
|
|
|
vec32* bits = vc_4stVectorRef(htif_out_bits);
|
|
|
|
htif->send(&bits->d, htif_bytes);
|
|
|
|
}
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2013-01-25 08:56:45 +01:00
|
|
|
vec32 bits = {0, 0};
|
|
|
|
bits.d = peek_in_bits;
|
|
|
|
vc_put4stVector(htif_in_bits, &bits);
|
|
|
|
vc_putScalar(htif_in_valid, peek_in_valid);
|
2012-10-02 04:30:11 +02:00
|
|
|
|
2013-05-02 13:58:43 +02:00
|
|
|
bits.d = htif->done() ? (htif->exit_code() << 1 | 1) : 0;
|
|
|
|
vc_put4stVector(exit, &bits);
|
2012-10-02 04:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|