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

[FEATURE: #333] userspace/libwr/include/libwr: uplift softpll_export.h (SPLL_STATS_VER==6)


Add:
--main_pll_kp
--main_pll_ki
--helper_pll_kp
--helper_pll_ki

Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent 1db810c8
Branches
Tags
No related merge requests found
......@@ -60,7 +60,7 @@
#define ALIGN_STATE_WAIT_CLKIN 9
#define ALIGN_STATE_WAIT_PLOCK 10
#define SPLL_STATS_VER 5
#define SPLL_STATS_VER 6
#define SPLL_STATS_MAGIC 0x5b1157a7
#define SPLL_LOOP_HELPER -1
#define SPLL_LOOP_MAIN 0
......@@ -89,6 +89,10 @@ struct spll_stats {
int start_cnt;
struct spll_build_id build_id;
int ext_pps_latency_ps;
int main_pll_kp;
int main_pll_ki;
int helper_pll_kp;
int helper_pll_ki;
};
extern struct spll_stats *stats;
......
......@@ -814,6 +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(int, main_pll_kp),
DUMP_FIELD(int, main_pll_ki),
DUMP_FIELD(int, helper_pll_kp),
DUMP_FIELD(int, helper_pll_ki),
DUMP_FIELD_SIZE(char, build_id.commit_id, 32),
DUMP_FIELD_SIZE(char, build_id.build_date, 16),
DUMP_FIELD_SIZE(char, build_id.build_time, 16),
......
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