* wip * reorg * update sv int * apb4 working * apb3 working * version bump + ignore runner warning * remove redundant check * adding log on failure * cleaning up verilator version issue * devcontainer * Fix missing libpython in GitHub Actions CI environment (#21) * Initial plan * Install libpython in GitHub Actions for cocotb tests Co-authored-by: arnavsacheti <36746504+arnavsacheti@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: arnavsacheti <36746504+arnavsacheti@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
106 lines
1.9 KiB
Plaintext
106 lines
1.9 KiB
Plaintext
regfile port_rf {
|
|
reg {
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} port_enable[0:0];
|
|
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} port_speed[3:1];
|
|
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} port_width[8:4];
|
|
} control @ 0x0;
|
|
|
|
reg {
|
|
field {
|
|
sw = r;
|
|
hw = w;
|
|
reset = 0x0;
|
|
} error_count[15:0];
|
|
|
|
field {
|
|
sw = r;
|
|
hw = w;
|
|
reset = 0x0;
|
|
} retry_count[31:16];
|
|
} counters @ 0x4;
|
|
|
|
reg {
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} qos[7:0];
|
|
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} virtual_channel[9:8];
|
|
} qos @ 0x8;
|
|
};
|
|
|
|
addrmap asymmetric_bus {
|
|
reg {
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} control[3:0];
|
|
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} id[15:4];
|
|
} control @ 0x0;
|
|
|
|
reg {
|
|
field {
|
|
sw = r;
|
|
hw = w;
|
|
reset = 0x0;
|
|
} status_flags[19:0];
|
|
} status @ 0x4;
|
|
|
|
reg {
|
|
regwidth = 64;
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x00abcdef;
|
|
} timestamp_low[31:0];
|
|
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x00123456;
|
|
} timestamp_high[55:32];
|
|
} timestamp @ 0x8;
|
|
|
|
reg {
|
|
regwidth = 128;
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x0;
|
|
} extended_id[63:0];
|
|
|
|
field {
|
|
sw = rw;
|
|
hw = rw;
|
|
reset = 0x1;
|
|
} parity[64:64];
|
|
} extended @ 0x10;
|
|
|
|
port_rf port[6] @ 0x40 += 0x20;
|
|
};
|