Home | History | Annotate | Line # | Download | only in i2c
sy8106a.c revision 1.4.2.1
      1  1.4.2.1    martin /* $NetBSD: sy8106a.c,v 1.4.2.1 2020/04/08 14:08:05 martin Exp $ */
      2      1.1  jmcneill 
      3      1.1  jmcneill /*-
      4      1.1  jmcneill  * Copyright (c) 2017 Jared McNeill <jmcneill (at) invisible.ca>
      5      1.1  jmcneill  * All rights reserved.
      6      1.1  jmcneill  *
      7      1.1  jmcneill  * Redistribution and use in source and binary forms, with or without
      8      1.1  jmcneill  * modification, are permitted provided that the following conditions
      9      1.1  jmcneill  * are met:
     10      1.1  jmcneill  * 1. Redistributions of source code must retain the above copyright
     11      1.1  jmcneill  *    notice, this list of conditions and the following disclaimer.
     12      1.1  jmcneill  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1  jmcneill  *    notice, this list of conditions and the following disclaimer in the
     14      1.1  jmcneill  *    documentation and/or other materials provided with the distribution.
     15      1.1  jmcneill  *
     16      1.1  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17      1.1  jmcneill  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18      1.1  jmcneill  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19      1.1  jmcneill  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20      1.1  jmcneill  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21      1.1  jmcneill  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22      1.1  jmcneill  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23      1.1  jmcneill  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24      1.1  jmcneill  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25      1.1  jmcneill  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26      1.1  jmcneill  * POSSIBILITY OF SUCH DAMAGE.
     27      1.1  jmcneill  */
     28      1.1  jmcneill 
     29      1.1  jmcneill #include <sys/cdefs.h>
     30  1.4.2.1    martin __KERNEL_RCSID(0, "$NetBSD: sy8106a.c,v 1.4.2.1 2020/04/08 14:08:05 martin Exp $");
     31      1.1  jmcneill 
     32      1.1  jmcneill #include <sys/param.h>
     33      1.1  jmcneill #include <sys/systm.h>
     34      1.1  jmcneill #include <sys/kernel.h>
     35      1.1  jmcneill #include <sys/device.h>
     36      1.1  jmcneill #include <sys/conf.h>
     37      1.1  jmcneill #include <sys/bus.h>
     38      1.1  jmcneill #include <sys/kmem.h>
     39      1.1  jmcneill 
     40      1.1  jmcneill #include <dev/i2c/i2cvar.h>
     41      1.1  jmcneill 
     42      1.1  jmcneill #include <dev/fdt/fdtvar.h>
     43      1.1  jmcneill 
     44      1.1  jmcneill #define	VOUT1_SEL		0x01
     45      1.1  jmcneill #define	 SEL_GO			__BIT(7)
     46      1.1  jmcneill #define	 SEL_VOLTAGE		__BITS(6,0)
     47      1.1  jmcneill #define	  SEL_VOLTAGE_BASE	680000	/* uV */
     48      1.1  jmcneill #define	  SEL_VOLTAGE_STEP	10000	/* uV */
     49      1.1  jmcneill #define	VOUT_COM		0x02
     50      1.1  jmcneill #define	 COM_DISABLE		__BIT(0)
     51      1.1  jmcneill #define	SYS_STATUS		0x06
     52      1.1  jmcneill 
     53      1.1  jmcneill struct sy8106a_softc {
     54      1.1  jmcneill 	device_t	sc_dev;
     55      1.1  jmcneill 	i2c_tag_t	sc_i2c;
     56      1.1  jmcneill 	i2c_addr_t	sc_addr;
     57      1.1  jmcneill 	int		sc_phandle;
     58      1.1  jmcneill 
     59      1.1  jmcneill 	u_int		sc_ramp_delay;
     60      1.1  jmcneill };
     61      1.1  jmcneill 
     62      1.4   thorpej static const struct device_compatible_entry compat_data[] = {
     63      1.4   thorpej 	{ "silergy,sy8106a",		0 },
     64      1.4   thorpej 	{ NULL,				0 }
     65      1.3   thorpej };
     66      1.3   thorpej 
     67      1.1  jmcneill static uint8_t
     68      1.1  jmcneill sy8106a_read(struct sy8106a_softc *sc, uint8_t reg, int flags)
     69      1.1  jmcneill {
     70      1.1  jmcneill 	uint8_t val = 0;
     71      1.1  jmcneill 	int error;
     72      1.1  jmcneill 
     73      1.1  jmcneill 	error = iic_exec(sc->sc_i2c, I2C_OP_READ_WITH_STOP, sc->sc_addr,
     74      1.1  jmcneill 	    &reg, 1, &val, 1, flags);
     75      1.1  jmcneill 	if (error != 0)
     76      1.1  jmcneill 		aprint_error_dev(sc->sc_dev, "error reading reg %#x: %d\n", reg, error);
     77      1.1  jmcneill 
     78      1.1  jmcneill 	return val;
     79      1.1  jmcneill }
     80      1.1  jmcneill 
     81      1.1  jmcneill static void
     82      1.1  jmcneill sy8106a_write(struct sy8106a_softc *sc, uint8_t reg, uint8_t val, int flags)
     83      1.1  jmcneill {
     84      1.1  jmcneill 	uint8_t buf[2];
     85      1.1  jmcneill 	int error;
     86      1.1  jmcneill 
     87      1.1  jmcneill 	buf[0] = reg;
     88      1.1  jmcneill 	buf[1] = val;
     89      1.1  jmcneill 
     90      1.1  jmcneill 	error = iic_exec(sc->sc_i2c, I2C_OP_WRITE_WITH_STOP, sc->sc_addr,
     91      1.1  jmcneill 	    NULL, 0, buf, 2, flags);
     92      1.1  jmcneill 	if (error != 0)
     93      1.1  jmcneill 		aprint_error_dev(sc->sc_dev, "error writing reg %#x: %d\n", reg, error);
     94      1.1  jmcneill }
     95      1.1  jmcneill 
     96  1.4.2.1    martin #define	I2C_READ(sc, reg)	sy8106a_read((sc), (reg), 0)
     97  1.4.2.1    martin #define	I2C_WRITE(sc, reg, val)	sy8106a_write((sc), (reg), (val), 0)
     98  1.4.2.1    martin #define	I2C_LOCK(sc)		iic_acquire_bus((sc)->sc_i2c, 0)
     99  1.4.2.1    martin #define	I2C_UNLOCK(sc)		iic_release_bus((sc)->sc_i2c, 0)
    100      1.1  jmcneill 
    101      1.1  jmcneill static int
    102      1.1  jmcneill sy8106a_acquire(device_t dev)
    103      1.1  jmcneill {
    104      1.1  jmcneill 	return 0;
    105      1.1  jmcneill }
    106      1.1  jmcneill 
    107      1.1  jmcneill static void
    108      1.1  jmcneill sy8106a_release(device_t dev)
    109      1.1  jmcneill {
    110      1.1  jmcneill }
    111      1.1  jmcneill 
    112      1.1  jmcneill static int
    113      1.1  jmcneill sy8106a_enable(device_t dev, bool enable)
    114      1.1  jmcneill {
    115      1.1  jmcneill 	struct sy8106a_softc * const sc = device_private(dev);
    116      1.1  jmcneill 	uint8_t val;
    117      1.1  jmcneill 
    118      1.1  jmcneill 	I2C_LOCK(sc);
    119      1.1  jmcneill 	val = I2C_READ(sc, VOUT_COM);
    120      1.1  jmcneill 	if (enable)
    121      1.1  jmcneill 		val &= ~COM_DISABLE;
    122      1.1  jmcneill 	else
    123      1.1  jmcneill 		val |= COM_DISABLE;
    124      1.1  jmcneill 	I2C_WRITE(sc, VOUT_COM, val);
    125      1.1  jmcneill 	I2C_UNLOCK(sc);
    126      1.1  jmcneill 
    127      1.1  jmcneill 	if (sc->sc_ramp_delay)
    128      1.1  jmcneill 		delay(sc->sc_ramp_delay);
    129      1.1  jmcneill 
    130      1.1  jmcneill 	return 0;
    131      1.1  jmcneill }
    132      1.1  jmcneill 
    133      1.1  jmcneill static int
    134      1.1  jmcneill sy8106a_set_voltage(device_t dev, u_int min_uvol, u_int max_uvol)
    135      1.1  jmcneill {
    136      1.1  jmcneill 	struct sy8106a_softc * const sc = device_private(dev);
    137      1.1  jmcneill 	uint8_t val, oval;
    138      1.1  jmcneill 	u_int cur_uvol;
    139      1.1  jmcneill 
    140      1.1  jmcneill 	I2C_LOCK(sc);
    141      1.1  jmcneill 
    142      1.1  jmcneill 	/* Get current voltage */
    143      1.1  jmcneill 	oval = I2C_READ(sc, VOUT1_SEL);
    144      1.1  jmcneill 	cur_uvol = __SHIFTOUT(oval, SEL_VOLTAGE) * SEL_VOLTAGE_STEP +
    145      1.1  jmcneill 	    SEL_VOLTAGE_BASE;
    146      1.1  jmcneill 
    147      1.1  jmcneill 	/* Set new voltage */
    148      1.1  jmcneill 	val = SEL_GO | ((min_uvol - SEL_VOLTAGE_BASE) / SEL_VOLTAGE_STEP);
    149      1.1  jmcneill 	I2C_WRITE(sc, VOUT1_SEL, val);
    150      1.1  jmcneill 
    151      1.1  jmcneill 	I2C_UNLOCK(sc);
    152      1.1  jmcneill 
    153      1.1  jmcneill 	/* Time to delay is based on the number of voltage steps */
    154      1.1  jmcneill 	if (sc->sc_ramp_delay)
    155      1.1  jmcneill 		delay((abs(cur_uvol - min_uvol) / SEL_VOLTAGE_STEP) * sc->sc_ramp_delay);
    156      1.1  jmcneill 
    157      1.1  jmcneill 	return 0;
    158      1.1  jmcneill }
    159      1.1  jmcneill 
    160      1.1  jmcneill static int
    161      1.1  jmcneill sy8106a_get_voltage(device_t dev, u_int *puvol)
    162      1.1  jmcneill {
    163      1.1  jmcneill 	struct sy8106a_softc * const sc = device_private(dev);
    164      1.1  jmcneill 	uint8_t val;
    165      1.1  jmcneill 
    166      1.1  jmcneill 	I2C_LOCK(sc);
    167      1.1  jmcneill 	val = I2C_READ(sc, VOUT1_SEL);
    168      1.1  jmcneill 	I2C_UNLOCK(sc);
    169      1.1  jmcneill 
    170      1.1  jmcneill 	*puvol = __SHIFTOUT(val, SEL_VOLTAGE) * SEL_VOLTAGE_STEP +
    171      1.1  jmcneill 	    SEL_VOLTAGE_BASE;
    172      1.1  jmcneill 
    173      1.1  jmcneill 	return 0;
    174      1.1  jmcneill }
    175      1.1  jmcneill 
    176      1.1  jmcneill static struct fdtbus_regulator_controller_func sy8106a_funcs = {
    177      1.1  jmcneill 	.acquire = sy8106a_acquire,
    178      1.1  jmcneill 	.release = sy8106a_release,
    179      1.1  jmcneill 	.enable = sy8106a_enable,
    180      1.1  jmcneill 	.set_voltage = sy8106a_set_voltage,
    181      1.1  jmcneill 	.get_voltage = sy8106a_get_voltage,
    182      1.1  jmcneill };
    183      1.1  jmcneill 
    184      1.1  jmcneill static int
    185      1.1  jmcneill sy8106a_match(device_t parent, cfdata_t match, void *aux)
    186      1.1  jmcneill {
    187      1.1  jmcneill 	struct i2c_attach_args *ia = aux;
    188      1.2   thorpej 	int match_result;
    189      1.1  jmcneill 
    190      1.4   thorpej 	if (iic_use_direct_match(ia, match, compat_data, &match_result))
    191      1.2   thorpej 		return match_result;
    192      1.2   thorpej 
    193      1.2   thorpej 	return 0;
    194      1.1  jmcneill }
    195      1.1  jmcneill 
    196      1.1  jmcneill static void
    197      1.1  jmcneill sy8106a_attach(device_t parent, device_t self, void *aux)
    198      1.1  jmcneill {
    199      1.1  jmcneill 	struct sy8106a_softc * const sc = device_private(self);
    200      1.1  jmcneill 	struct i2c_attach_args *ia = aux;
    201      1.1  jmcneill 
    202      1.1  jmcneill 	sc->sc_dev = self;
    203      1.1  jmcneill 	sc->sc_i2c = ia->ia_tag;
    204      1.1  jmcneill 	sc->sc_addr = ia->ia_addr;
    205      1.1  jmcneill 	sc->sc_phandle = ia->ia_cookie;
    206      1.1  jmcneill 
    207      1.1  jmcneill 	aprint_naive("\n");
    208      1.1  jmcneill 	aprint_normal(": Silergy SY8106A regulator\n");
    209      1.1  jmcneill 
    210      1.1  jmcneill 	of_getprop_uint32(sc->sc_phandle, "regulator-ramp-delay",
    211      1.1  jmcneill 	    &sc->sc_ramp_delay);
    212      1.1  jmcneill 
    213      1.1  jmcneill 	fdtbus_register_regulator_controller(self, sc->sc_phandle,
    214      1.1  jmcneill 	    &sy8106a_funcs);
    215      1.1  jmcneill }
    216      1.1  jmcneill 
    217      1.1  jmcneill CFATTACH_DECL_NEW(sy8106a, sizeof(struct sy8106a_softc),
    218      1.1  jmcneill     sy8106a_match, sy8106a_attach, NULL, NULL);
    219