summaryrefslogtreecommitdiff
path: root/sys/dev/fdt
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2018-07-31 10:09:26 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2018-07-31 10:09:26 +0000
commit2301953add704c6b701742a96f489b22c7004b0a (patch)
treef08afcddb2c7ddde49a323f2a1f6fa783a5a08c0 /sys/dev/fdt
parent81e80321f2391595271153b2feb6a15db951c131 (diff)
Implement setting the voltage of the regulators.
Diffstat (limited to 'sys/dev/fdt')
-rw-r--r--sys/dev/fdt/rkpmic.c29
1 files changed, 25 insertions, 4 deletions
diff --git a/sys/dev/fdt/rkpmic.c b/sys/dev/fdt/rkpmic.c
index 56ef4fdae33..4ef4226bbcc 100644
--- a/sys/dev/fdt/rkpmic.c
+++ b/sys/dev/fdt/rkpmic.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rkpmic.c,v 1.5 2018/04/07 22:35:27 kettenis Exp $ */
+/* $OpenBSD: rkpmic.c,v 1.6 2018/07/31 10:09:25 kettenis Exp $ */
/*
* Copyright (c) 2017 Mark Kettenis <kettenis@openbsd.org>
*
@@ -156,6 +156,7 @@ struct rkpmic_regulator {
};
uint32_t rkpmic_get_voltage(void *);
+int rkpmic_set_voltage(void *, uint32_t);
void
rkpmic_attach_regulator(struct rkpmic_softc *sc, int node)
@@ -185,6 +186,7 @@ rkpmic_attach_regulator(struct rkpmic_softc *sc, int node)
rr->rr_rd.rd_node = node;
rr->rr_rd.rd_cookie = rr;
rr->rr_rd.rd_get_voltage = rkpmic_get_voltage;
+ rr->rr_rd.rd_set_voltage = rkpmic_set_voltage;
regulator_register(&rr->rr_rd);
}
@@ -192,10 +194,29 @@ uint32_t
rkpmic_get_voltage(void *cookie)
{
struct rkpmic_regulator *rr = cookie;
- uint8_t value;
+ uint8_t vsel;
- value = rkpmic_reg_read(rr->rr_sc, rr->rr_reg);
- return rr->rr_base + (value & rr->rr_mask) * rr->rr_delta;
+ vsel = rkpmic_reg_read(rr->rr_sc, rr->rr_reg);
+ return rr->rr_base + (vsel & rr->rr_mask) * rr->rr_delta;
+}
+
+int
+rkpmic_set_voltage(void *cookie, uint32_t voltage)
+{
+ struct rkpmic_regulator *rr = cookie;
+ uint32_t vmin = rr->rr_base;
+ uint32_t vmax = vmin + rr->rr_mask * rr->rr_delta;
+ uint8_t vsel;
+
+ if (voltage < vmin || voltage > vmax)
+ return EINVAL;
+
+ vsel = rkpmic_reg_read(rr->rr_sc, rr->rr_reg);
+ vsel &= ~rr->rr_mask;
+ vsel |= (voltage - rr->rr_base) / rr->rr_delta;
+ rkpmic_reg_write(rr->rr_sc, rr->rr_reg, vsel);
+
+ return 0;
}
int