summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/reg_script.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/reg_script.c b/src/lib/reg_script.c
index e03a8e4bb8..d7c4577e0c 100644
--- a/src/lib/reg_script.c
+++ b/src/lib/reg_script.c
@@ -263,6 +263,8 @@ static uint32_t reg_script_read_iosf(struct reg_script_context *ctx)
return iosf_ushphy_read(step->reg);
case IOSF_PORT_SCC:
return iosf_scc_read(step->reg);
+ case IOSF_PORT_LPSS:
+ return iosf_lpss_read(step->reg);
case IOSF_PORT_CCU:
return iosf_ccu_read(step->reg);
}
@@ -297,6 +299,9 @@ static void reg_script_write_iosf(struct reg_script_context *ctx)
case IOSF_PORT_SCC:
iosf_scc_write(step->reg, step->value);
break;
+ case IOSF_PORT_LPSS:
+ iosf_lpss_write(step->reg, step->value);
+ break;
case IOSF_PORT_CCU:
iosf_ccu_write(step->reg, step->value);
break;