Skip to content
Snippets Groups Projects
Commit 545ddf2a authored by Adam Wujek's avatar Adam Wujek
Browse files

[FEATURE: #335] userspace/tools/wrs_dump_shmem: adjustments for RISC-V as softpll


Changes of "sequence" and "irq_cnt" were not due to the change to he RISC-V

Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent cda9831d
Branches
Tags
No related merge requests found
......@@ -803,9 +803,9 @@ int dump_rtu_mem(struct wrs_shm_head *head)
struct dump_info spll_stats_info[] = {
DUMP_FIELD(uint32_t, magic), /* 0x5b1157a7 = SPLLSTAT ?;)*/
DUMP_FIELD(int, ver),
DUMP_FIELD(int, sequence),
DUMP_FIELD(unsigned, sequence),
DUMP_FIELD(spll_mode, mode),
DUMP_FIELD(int, irq_cnt),
DUMP_FIELD(unsigned, irq_cnt),
DUMP_FIELD(spll_seq_state, seq_state),
DUMP_FIELD(spll_align_state, align_state),
DUMP_FIELD(int, H_lock),
......@@ -814,10 +814,10 @@ struct dump_info spll_stats_info[] = {
DUMP_FIELD(int, M_y),
DUMP_FIELD(int, del_cnt),
DUMP_FIELD(int, start_cnt),
DUMP_FIELD_SIZE(char_e, commit_id, 32),
DUMP_FIELD_SIZE(char_e, build_date, 16),
DUMP_FIELD_SIZE(char_e, build_time, 16),
DUMP_FIELD_SIZE(char_e, build_by, 32),
DUMP_FIELD_SIZE(char, commit_id, 32),
DUMP_FIELD_SIZE(char, build_date, 16),
DUMP_FIELD_SIZE(char, build_time, 16),
DUMP_FIELD_SIZE(char, build_by, 32),
DUMP_FIELD(int, ext_pps_latency_ps),
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment