Module Name: src
Committed By: jmcneill
Date: Fri May 4 21:09:55 UTC 2018
Modified Files:
src/sys/arch/evbarm/conf: GENERIC64 SUNXI
src/sys/dev/i2c: files.i2c
Added Files:
src/sys/dev/i2c: axppmic.c
Removed Files:
src/sys/dev/i2c: axp806.c
Log Message:
Rename axp806pmic to axppmic, and add support for AXP803.
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/evbarm/conf/GENERIC64
cvs rdiff -u -r1.69 -r1.70 src/sys/arch/evbarm/conf/SUNXI
cvs rdiff -u -r1.4 -r0 src/sys/dev/i2c/axp806.c
cvs rdiff -u -r0 -r1.1 src/sys/dev/i2c/axppmic.c
cvs rdiff -u -r1.89 -r1.90 src/sys/dev/i2c/files.i2c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/evbarm/conf/GENERIC64
diff -u src/sys/arch/evbarm/conf/GENERIC64:1.10 src/sys/arch/evbarm/conf/GENERIC64:1.11
--- src/sys/arch/evbarm/conf/GENERIC64:1.10 Thu May 3 01:17:04 2018
+++ src/sys/arch/evbarm/conf/GENERIC64 Fri May 4 21:09:55 2018
@@ -1,5 +1,5 @@
#
-# $NetBSD: GENERIC64,v 1.10 2018/05/03 01:17:04 jmcneill Exp $
+# $NetBSD: GENERIC64,v 1.11 2018/05/04 21:09:55 jmcneill Exp $
#
# GENERIC ARM (aarch64) kernel
#
@@ -209,8 +209,8 @@ titemp* at iic?
seeprom* at iic?
as3722pmic* at iic?
as3722reg* at as3722pmic?
-axp806pmic* at iic? # AXP805/806 Power Management IC
-axp806reg* at axp806pmic?
+axppmic* at iic? # X-Powers AXP Power Management IC
+axpreg* at axppmic?
max77620pmic* at iic?
pcf8563rtc* at iic? # PCF8563 RTC
tcagpio* at iic?
Index: src/sys/arch/evbarm/conf/SUNXI
diff -u src/sys/arch/evbarm/conf/SUNXI:1.69 src/sys/arch/evbarm/conf/SUNXI:1.70
--- src/sys/arch/evbarm/conf/SUNXI:1.69 Thu May 3 01:17:04 2018
+++ src/sys/arch/evbarm/conf/SUNXI Fri May 4 21:09:55 2018
@@ -1,5 +1,5 @@
#
-# $NetBSD: SUNXI,v 1.69 2018/05/03 01:17:04 jmcneill Exp $
+# $NetBSD: SUNXI,v 1.70 2018/05/04 21:09:55 jmcneill Exp $
#
# Allwinner sunxi family
#
@@ -245,8 +245,8 @@ wskbd* at tcakp? console ?
axp20x* at iic? # AXP209 Power Management IC
axp20xreg* at axp20x?
axp22x* at iic? # AXP221 Power Management IC
-axp806pmic* at iic? # AXP805/806 Power Management IC
-axp806reg* at axp806pmic?
+axppmic* at iic? # X-Powers AXP Power Management IC
+axpreg* at axppmic?
sy8106a* at iic? # Silergy SY81061 regulator
pcf8563rtc* at iic? # PCF8563 RTC
seeprom* at iic? # AT24Cxx Serial EEPROM
Index: src/sys/dev/i2c/files.i2c
diff -u src/sys/dev/i2c/files.i2c:1.89 src/sys/dev/i2c/files.i2c:1.90
--- src/sys/dev/i2c/files.i2c:1.89 Thu May 3 02:10:17 2018
+++ src/sys/dev/i2c/files.i2c Fri May 4 21:09:55 2018
@@ -1,4 +1,4 @@
-# $NetBSD: files.i2c,v 1.89 2018/05/03 02:10:17 jmcneill Exp $
+# $NetBSD: files.i2c,v 1.90 2018/05/04 21:09:55 jmcneill Exp $
obsolete defflag opt_i2cbus.h I2C_SCAN
define i2cbus { }
@@ -232,12 +232,12 @@ device axp22x: sysmon_envsys
attach axp22x at iic
file dev/i2c/axp22x.c axp22x
-# AXP806 Power Management Unit
-device axp806pmic { }: sysmon_taskq
-device axp806reg: axp806pmic
-attach axp806pmic at iic
-attach axp806reg at axp806pmic
-file dev/i2c/axp806.c axp806pmic needs-flag
+# X-Powers AXP Power Management IC
+device axppmic { }: sysmon_taskq
+device axpreg: axppmic
+attach axppmic at iic
+attach axpreg at axppmic
+file dev/i2c/axppmic.c axppmic
# AXP809 Power Management Unit
device axp809pm
Added files:
Index: src/sys/dev/i2c/axppmic.c
diff -u /dev/null src/sys/dev/i2c/axppmic.c:1.1
--- /dev/null Fri May 4 21:09:55 2018
+++ src/sys/dev/i2c/axppmic.c Fri May 4 21:09:55 2018
@@ -0,0 +1,516 @@
+/* $NetBSD: axppmic.c,v 1.1 2018/05/04 21:09:55 jmcneill Exp $ */
+
+/*-
+ * Copyright (c) 2014-2018 Jared McNeill <[email protected]>
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: axppmic.c,v 1.1 2018/05/04 21:09:55 jmcneill Exp $");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/kernel.h>
+#include <sys/device.h>
+#include <sys/conf.h>
+#include <sys/bus.h>
+#include <sys/kmem.h>
+
+#include <dev/i2c/i2cvar.h>
+
+#include <dev/sysmon/sysmonvar.h>
+#include <dev/sysmon/sysmon_taskq.h>
+
+#include <dev/fdt/fdtvar.h>
+
+#define AXP_POWER_DISABLE_REG 0x32
+#define AXP_POWER_DISABLE_CTRL __BIT(7)
+
+#define AXP_IRQ_ENABLE_REG(n) (0x40 + (n) - 1)
+#define AXP_IRQ2_POKSIRQ __BIT(1)
+#define AXP_IRQ_STATUS_REG(n) (0x48 + (n) - 1)
+
+struct axppmic_ctrl {
+ device_t c_dev;
+
+ const char * c_name;
+ u_int c_min;
+ u_int c_max;
+ u_int c_step1;
+ u_int c_step1cnt;
+ u_int c_step2;
+ u_int c_step2cnt;
+
+ uint8_t c_enable_reg;
+ uint8_t c_enable_mask;
+
+ uint8_t c_voltage_reg;
+ uint8_t c_voltage_mask;
+};
+
+#define AXP_CTRL(name, min, max, step, ereg, emask, vreg, vmask) \
+ { .c_name = (name), .c_min = (min), .c_max = (max), \
+ .c_step1 = (step), .c_step1cnt = (((max) - (min)) / (step)) + 1, \
+ .c_step2 = 0, .c_step2cnt = 0, \
+ .c_enable_reg = (ereg), .c_enable_mask = (emask), \
+ .c_voltage_reg = (vreg), .c_voltage_mask = (vmask) }
+
+#define AXP_CTRL2(name, min, max, step1, step1cnt, step2, step2cnt, ereg, emask, vreg, vmask) \
+ { .c_name = (name), .c_min = (min), .c_max = (max), \
+ .c_step1 = (step1), .c_step1cnt = (step1cnt), \
+ .c_step2 = (step2), .c_step2cnt = (step2cnt), \
+ .c_enable_reg = (ereg), .c_enable_mask = (emask), \
+ .c_voltage_reg = (vreg), .c_voltage_mask = (vmask) }
+
+static const struct axppmic_ctrl axp803_ctrls[] = {
+ AXP_CTRL("dldo1", 700, 3300, 100,
+ 0x12, __BIT(3), 0x15, __BITS(4,0)),
+ AXP_CTRL2("dldo2", 700, 4200, 100, 28, 200, 4,
+ 0x12, __BIT(4), 0x16, __BITS(4,0)),
+ AXP_CTRL("dldo3", 700, 3300, 100,
+ 0x12, __BIT(5), 0x17, __BITS(4,0)),
+ AXP_CTRL("dldo4", 700, 3300, 100,
+ 0x12, __BIT(6), 0x18, __BITS(4,0)),
+ AXP_CTRL("eldo1", 700, 1900, 50,
+ 0x12, __BIT(0), 0x19, __BITS(4,0)),
+ AXP_CTRL("eldo2", 700, 1900, 50,
+ 0x12, __BIT(1), 0x1a, __BITS(4,0)),
+ AXP_CTRL("eldo3", 700, 1900, 50,
+ 0x12, __BIT(2), 0x1b, __BITS(4,0)),
+ AXP_CTRL("fldo1", 700, 1450, 50,
+ 0x13, __BIT(2), 0x1c, __BITS(3,0)),
+ AXP_CTRL("fldo2", 700, 1450, 50,
+ 0x13, __BIT(3), 0x1d, __BITS(3,0)),
+ AXP_CTRL("dcdc1", 1600, 3400, 100,
+ 0x10, __BIT(0), 0x20, __BITS(4,0)),
+ AXP_CTRL2("dcdc2", 500, 1300, 10, 71, 20, 5,
+ 0x10, __BIT(1), 0x21, __BITS(6,0)),
+ AXP_CTRL2("dcdc3", 500, 1300, 10, 71, 20, 5,
+ 0x10, __BIT(2), 0x22, __BITS(6,0)),
+ AXP_CTRL2("dcdc4", 500, 1300, 10, 71, 20, 5,
+ 0x10, __BIT(3), 0x23, __BITS(6,0)),
+ AXP_CTRL2("dcdc5", 800, 1840, 10, 33, 20, 36,
+ 0x10, __BIT(4), 0x24, __BITS(6,0)),
+ AXP_CTRL2("dcdc6", 600, 1520, 10, 51, 20, 21,
+ 0x10, __BIT(5), 0x25, __BITS(6,0)),
+ AXP_CTRL("aldo1", 700, 3300, 100,
+ 0x13, __BIT(5), 0x28, __BITS(4,0)),
+ AXP_CTRL("aldo2", 700, 3300, 100,
+ 0x13, __BIT(6), 0x29, __BITS(4,0)),
+ AXP_CTRL("aldo3", 700, 3300, 100,
+ 0x13, __BIT(7), 0x2a, __BITS(4,0)),
+};
+
+static const struct axppmic_ctrl axp805_ctrls[] = {
+ AXP_CTRL2("dcdca", 600, 1520, 10, 51, 20, 21,
+ 0x10, __BIT(0), 0x12, __BITS(6,0)),
+ AXP_CTRL("dcdcb", 1000, 2550, 50,
+ 0x10, __BIT(1), 0x13, __BITS(4,0)),
+ AXP_CTRL2("dcdcc", 600, 1520, 10, 51, 20, 21,
+ 0x10, __BIT(2), 0x14, __BITS(6,0)),
+ AXP_CTRL2("dcdcd", 600, 3300, 20, 46, 100, 18,
+ 0x10, __BIT(3), 0x15, __BITS(5,0)),
+ AXP_CTRL("dcdce", 1100, 3400, 100,
+ 0x10, __BIT(4), 0x16, __BITS(4,0)),
+ AXP_CTRL("aldo1", 700, 3300, 100,
+ 0x10, __BIT(5), 0x17, __BITS(4,0)),
+ AXP_CTRL("aldo2", 700, 3400, 100,
+ 0x10, __BIT(6), 0x18, __BITS(4,0)),
+ AXP_CTRL("aldo3", 700, 3300, 100,
+ 0x10, __BIT(7), 0x19, __BITS(4,0)),
+ AXP_CTRL("bldo1", 700, 1900, 100,
+ 0x11, __BIT(0), 0x20, __BITS(3,0)),
+ AXP_CTRL("bldo2", 700, 1900, 100,
+ 0x11, __BIT(1), 0x21, __BITS(3,0)),
+ AXP_CTRL("bldo3", 700, 1900, 100,
+ 0x11, __BIT(2), 0x22, __BITS(3,0)),
+ AXP_CTRL("bldo4", 700, 1900, 100,
+ 0x11, __BIT(3), 0x23, __BITS(3,0)),
+ AXP_CTRL("cldo1", 700, 3300, 100,
+ 0x11, __BIT(4), 0x24, __BITS(4,0)),
+ AXP_CTRL2("cldo2", 700, 4200, 100, 28, 200, 4,
+ 0x11, __BIT(5), 0x25, __BITS(4,0)),
+ AXP_CTRL("cldo3", 700, 3300, 100,
+ 0x11, __BIT(6), 0x26, __BITS(4,0)),
+};
+
+struct axppmic_config {
+ const char *name;
+ const struct axppmic_ctrl *controls;
+ u_int ncontrols;
+ u_int irq_regs;
+};
+
+struct axppmic_softc {
+ device_t sc_dev;
+ i2c_tag_t sc_i2c;
+ i2c_addr_t sc_addr;
+ int sc_phandle;
+
+ struct sysmon_pswitch sc_smpsw;
+
+ u_int sc_nirq;
+};
+
+struct axpreg_softc {
+ device_t sc_dev;
+ i2c_tag_t sc_i2c;
+ i2c_addr_t sc_addr;
+ const struct axppmic_ctrl *sc_ctrl;
+
+ u_int sc_nirq;
+};
+
+struct axpreg_attach_args {
+ const struct axppmic_ctrl *reg_ctrl;
+ int reg_phandle;
+ i2c_tag_t reg_i2c;
+ i2c_addr_t reg_addr;
+};
+
+static const struct axppmic_config axp803_config = {
+ .name = "AXP803",
+ .controls = axp803_ctrls,
+ .ncontrols = __arraycount(axp803_ctrls),
+ .irq_regs = 6,
+};
+
+static const struct axppmic_config axp805_config = {
+ .name = "AXP805/806",
+ .controls = axp805_ctrls,
+ .ncontrols = __arraycount(axp805_ctrls),
+ .irq_regs = 2,
+};
+
+static const struct of_compat_data compat_data[] = {
+ { "x-powers,axp803", (uintptr_t)&axp803_config },
+ { "x-powers,axp805", (uintptr_t)&axp805_config },
+ { "x-powers,axp806", (uintptr_t)&axp805_config },
+ { NULL }
+};
+
+static int
+axppmic_read(i2c_tag_t tag, i2c_addr_t addr, uint8_t reg, uint8_t *val, int flags)
+{
+ return iic_smbus_read_byte(tag, addr, reg, val, flags);
+}
+
+static int
+axppmic_write(i2c_tag_t tag, i2c_addr_t addr, uint8_t reg, uint8_t val, int flags)
+{
+ return iic_smbus_write_byte(tag, addr, reg, val, flags);
+}
+
+static int
+axppmic_set_voltage(i2c_tag_t tag, i2c_addr_t addr, const struct axppmic_ctrl *c, u_int min, u_int max)
+{
+ const int flags = (cold ? I2C_F_POLL : 0);
+ u_int vol, reg_val;
+ int nstep, error;
+ uint8_t val;
+
+ if (!c->c_voltage_mask)
+ return EINVAL;
+
+ if (min < c->c_min || min > c->c_max)
+ return EINVAL;
+
+ reg_val = 0;
+ nstep = 1;
+ vol = c->c_min;
+
+ for (nstep = 0; nstep < c->c_step1cnt && vol < min; nstep++) {
+ ++reg_val;
+ vol += c->c_step1;
+ }
+ for (nstep = 0; nstep < c->c_step2cnt && vol < min; nstep++) {
+ ++reg_val;
+ vol += c->c_step2;
+ }
+
+ if (vol > max)
+ return EINVAL;
+
+ iic_acquire_bus(tag, flags);
+ if ((error = axppmic_read(tag, addr, c->c_voltage_reg, &val, flags)) == 0) {
+ val &= ~c->c_voltage_mask;
+ val |= __SHIFTIN(reg_val, c->c_voltage_mask);
+ error = axppmic_write(tag, addr, c->c_voltage_reg, val, flags);
+ }
+ iic_release_bus(tag, flags);
+
+ return error;
+}
+
+static int
+axppmic_get_voltage(i2c_tag_t tag, i2c_addr_t addr, const struct axppmic_ctrl *c, u_int *pvol)
+{
+ const int flags = (cold ? I2C_F_POLL : 0);
+ int reg_val, error;
+ uint8_t val;
+
+ if (!c->c_voltage_mask)
+ return EINVAL;
+
+ iic_acquire_bus(tag, flags);
+ error = axppmic_read(tag, addr, c->c_voltage_reg, &val, flags);
+ iic_release_bus(tag, flags);
+ if (error)
+ return error;
+
+ reg_val = __SHIFTOUT(val, c->c_voltage_mask);
+ if (reg_val < c->c_step1cnt) {
+ *pvol = c->c_min + reg_val * c->c_step1;
+ } else {
+ *pvol = c->c_min + (c->c_step1cnt * c->c_step1) +
+ ((reg_val - c->c_step1cnt) * c->c_step2);
+ }
+
+ return 0;
+}
+
+static void
+axppmic_power_poweroff(device_t dev)
+{
+ struct axppmic_softc *sc = device_private(dev);
+
+ delay(1000000);
+
+ iic_acquire_bus(sc->sc_i2c, I2C_F_POLL);
+ axppmic_write(sc->sc_i2c, sc->sc_addr, AXP_POWER_DISABLE_REG, AXP_POWER_DISABLE_CTRL, I2C_F_POLL);
+ iic_release_bus(sc->sc_i2c, I2C_F_POLL);
+}
+
+static struct fdtbus_power_controller_func axppmic_power_funcs = {
+ .poweroff = axppmic_power_poweroff,
+};
+
+static void
+axppmic_task_shut(void *priv)
+{
+ struct axppmic_softc *sc = priv;
+
+ sysmon_pswitch_event(&sc->sc_smpsw, PSWITCH_EVENT_PRESSED);
+}
+
+static int
+axppmic_intr(void *priv)
+{
+ struct axppmic_softc *sc = priv;
+ const int flags = I2C_F_POLL;
+ uint8_t stat;
+
+ iic_acquire_bus(sc->sc_i2c, flags);
+ if (sc->sc_nirq >= 2 && axppmic_read(sc->sc_i2c, sc->sc_addr, AXP_IRQ_STATUS_REG(2), &stat, flags) == 0) {
+ if (stat & AXP_IRQ2_POKSIRQ)
+ sysmon_task_queue_sched(0, axppmic_task_shut, sc);
+
+ axppmic_write(sc->sc_i2c, sc->sc_addr, AXP_IRQ_STATUS_REG(2), stat, flags);
+ }
+ iic_release_bus(sc->sc_i2c, flags);
+
+ return 1;
+}
+
+static int
+axppmic_match(device_t parent, cfdata_t match, void *aux)
+{
+ struct i2c_attach_args *ia = aux;
+
+ if (ia->ia_name != NULL) {
+ if (ia->ia_cookie)
+ return of_match_compat_data(ia->ia_cookie, compat_data);
+ else
+ return 0;
+ }
+
+ return 1;
+}
+
+static void
+axppmic_attach(device_t parent, device_t self, void *aux)
+{
+ struct axppmic_softc *sc = device_private(self);
+ const struct axppmic_config *c;
+ struct axpreg_attach_args aaa;
+ struct i2c_attach_args *ia = aux;
+ int phandle, child, i;
+ uint32_t irq_mask;
+ void *ih;
+
+ c = (void *)of_search_compatible(ia->ia_cookie, compat_data)->data;
+
+ sc->sc_dev = self;
+ sc->sc_i2c = ia->ia_tag;
+ sc->sc_addr = ia->ia_addr;
+ sc->sc_phandle = ia->ia_cookie;
+ sc->sc_nirq = c->irq_regs;
+
+ aprint_naive("\n");
+ aprint_normal(": %s\n", c->name);
+
+ sc->sc_smpsw.smpsw_name = device_xname(self);
+ sc->sc_smpsw.smpsw_type = PSWITCH_TYPE_POWER;
+ sysmon_pswitch_register(&sc->sc_smpsw);
+
+ iic_acquire_bus(sc->sc_i2c, I2C_F_POLL);
+ for (i = 1; i <= sc->sc_nirq; i++) {
+ irq_mask = 0;
+ if (i == 2)
+ irq_mask |= AXP_IRQ2_POKSIRQ;
+ axppmic_write(sc->sc_i2c, sc->sc_addr, AXP_IRQ_ENABLE_REG(i), irq_mask, I2C_F_POLL);
+ }
+ iic_release_bus(sc->sc_i2c, I2C_F_POLL);
+
+ ih = fdtbus_intr_establish(sc->sc_phandle, 0, IPL_VM, FDT_INTR_MPSAFE,
+ axppmic_intr, sc);
+ if (ih == NULL) {
+ aprint_error_dev(self, "WARNING: couldn't establish interrupt handler\n");
+ }
+
+ fdtbus_register_power_controller(sc->sc_dev, sc->sc_phandle,
+ &axppmic_power_funcs);
+
+ phandle = of_find_firstchild_byname(sc->sc_phandle, "regulators");
+ if (phandle <= 0)
+ return;
+
+ aaa.reg_i2c = sc->sc_i2c;
+ aaa.reg_addr = sc->sc_addr;
+ for (i = 0; i < c->ncontrols; i++) {
+ const struct axppmic_ctrl *ctrl = &c->controls[i];
+ child = of_find_firstchild_byname(phandle, ctrl->c_name);
+ if (child <= 0)
+ continue;
+ aaa.reg_ctrl = ctrl;
+ aaa.reg_phandle = child;
+ config_found(sc->sc_dev, &aaa, NULL);
+ }
+}
+
+static int
+axpreg_acquire(device_t dev)
+{
+ return 0;
+}
+
+static void
+axpreg_release(device_t dev)
+{
+}
+
+static int
+axpreg_enable(device_t dev, bool enable)
+{
+ struct axpreg_softc *sc = device_private(dev);
+ const struct axppmic_ctrl *c = sc->sc_ctrl;
+ const int flags = (cold ? I2C_F_POLL : 0);
+ uint8_t val;
+ int error;
+
+ if (!c->c_enable_mask)
+ return EINVAL;
+
+ iic_acquire_bus(sc->sc_i2c, flags);
+ if ((error = axppmic_read(sc->sc_i2c, sc->sc_addr, c->c_enable_reg, &val, flags)) == 0) {
+ if (enable)
+ val |= c->c_enable_mask;
+ else
+ val &= ~c->c_enable_mask;
+ error = axppmic_write(sc->sc_i2c, sc->sc_addr, c->c_enable_reg, val, flags);
+ }
+ iic_release_bus(sc->sc_i2c, flags);
+
+ return error;
+}
+
+static int
+axpreg_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
+{
+ struct axpreg_softc *sc = device_private(dev);
+ const struct axppmic_ctrl *c = sc->sc_ctrl;
+
+ return axppmic_set_voltage(sc->sc_i2c, sc->sc_addr, c,
+ min_uvol / 1000, max_uvol / 1000);
+}
+
+static int
+axpreg_get_voltage(device_t dev, u_int *puvol)
+{
+ struct axpreg_softc *sc = device_private(dev);
+ const struct axppmic_ctrl *c = sc->sc_ctrl;
+ int error;
+ u_int vol;
+
+ error = axppmic_get_voltage(sc->sc_i2c, sc->sc_addr, c, &vol);
+ if (error)
+ return error;
+
+ *puvol = vol * 1000;
+ return 0;
+}
+
+static struct fdtbus_regulator_controller_func axpreg_funcs = {
+ .acquire = axpreg_acquire,
+ .release = axpreg_release,
+ .enable = axpreg_enable,
+ .set_voltage = axpreg_set_voltage,
+ .get_voltage = axpreg_get_voltage,
+};
+
+static int
+axpreg_match(device_t parent, cfdata_t match, void *aux)
+{
+ return 1;
+}
+
+static void
+axpreg_attach(device_t parent, device_t self, void *aux)
+{
+ struct axpreg_softc *sc = device_private(self);
+ struct axpreg_attach_args *aaa = aux;
+ const int phandle = aaa->reg_phandle;
+ const char *name;
+
+ sc->sc_dev = self;
+ sc->sc_i2c = aaa->reg_i2c;
+ sc->sc_addr = aaa->reg_addr;
+ sc->sc_ctrl = aaa->reg_ctrl;
+
+ fdtbus_register_regulator_controller(self, phandle,
+ &axpreg_funcs);
+
+ aprint_naive("\n");
+ name = fdtbus_get_string(phandle, "regulator-name");
+ if (name)
+ aprint_normal(": %s\n", name);
+ else
+ aprint_normal("\n");
+}
+
+CFATTACH_DECL_NEW(axppmic, sizeof(struct axppmic_softc),
+ axppmic_match, axppmic_attach, NULL, NULL);
+
+CFATTACH_DECL_NEW(axpreg, sizeof(struct axpreg_softc),
+ axpreg_match, axpreg_attach, NULL, NULL);