1062944ccSEmmanuel Vadot /*-
2062944ccSEmmanuel Vadot * Copyright (c) 2016 Jared McNeill <jmcneill@invisible.ca>
3062944ccSEmmanuel Vadot *
4062944ccSEmmanuel Vadot * Redistribution and use in source and binary forms, with or without
5062944ccSEmmanuel Vadot * modification, are permitted provided that the following conditions
6062944ccSEmmanuel Vadot * are met:
7062944ccSEmmanuel Vadot * 1. Redistributions of source code must retain the above copyright
8062944ccSEmmanuel Vadot * notice, this list of conditions and the following disclaimer.
9062944ccSEmmanuel Vadot * 2. Redistributions in binary form must reproduce the above copyright
10062944ccSEmmanuel Vadot * notice, this list of conditions and the following disclaimer in the
11062944ccSEmmanuel Vadot * documentation and/or other materials provided with the distribution.
12062944ccSEmmanuel Vadot *
13062944ccSEmmanuel Vadot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14062944ccSEmmanuel Vadot * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15062944ccSEmmanuel Vadot * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16062944ccSEmmanuel Vadot * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17062944ccSEmmanuel Vadot * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
18062944ccSEmmanuel Vadot * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19062944ccSEmmanuel Vadot * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
20062944ccSEmmanuel Vadot * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
21062944ccSEmmanuel Vadot * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22062944ccSEmmanuel Vadot * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23062944ccSEmmanuel Vadot * SUCH DAMAGE.
24062944ccSEmmanuel Vadot */
25062944ccSEmmanuel Vadot
26062944ccSEmmanuel Vadot /*
27062944ccSEmmanuel Vadot * Silergy Corp. SY8106A buck regulator
28062944ccSEmmanuel Vadot */
29062944ccSEmmanuel Vadot
30062944ccSEmmanuel Vadot #include <sys/param.h>
31062944ccSEmmanuel Vadot #include <sys/systm.h>
32062944ccSEmmanuel Vadot #include <sys/bus.h>
33062944ccSEmmanuel Vadot #include <sys/rman.h>
34062944ccSEmmanuel Vadot #include <sys/kernel.h>
35062944ccSEmmanuel Vadot #include <sys/reboot.h>
36062944ccSEmmanuel Vadot #include <sys/module.h>
37062944ccSEmmanuel Vadot
38062944ccSEmmanuel Vadot #include <dev/iicbus/iicbus.h>
39062944ccSEmmanuel Vadot #include <dev/iicbus/iiconf.h>
40062944ccSEmmanuel Vadot
41062944ccSEmmanuel Vadot #include <dev/ofw/ofw_bus.h>
42062944ccSEmmanuel Vadot #include <dev/ofw/ofw_bus_subr.h>
43062944ccSEmmanuel Vadot
44*b2f0caf1SEmmanuel Vadot #include <dev/regulator/regulator.h>
45062944ccSEmmanuel Vadot
46062944ccSEmmanuel Vadot #include "iicbus_if.h"
47062944ccSEmmanuel Vadot #include "regdev_if.h"
48062944ccSEmmanuel Vadot
49062944ccSEmmanuel Vadot #define VOUT1_SEL 0x01
50062944ccSEmmanuel Vadot #define SEL_GO (1 << 7)
51062944ccSEmmanuel Vadot #define SEL_VOLTAGE_MASK 0x7f
52062944ccSEmmanuel Vadot #define SEL_VOLTAGE_BASE 680000 /* uV */
53062944ccSEmmanuel Vadot #define SEL_VOLTAGE_STEP 10000 /* uV */
54062944ccSEmmanuel Vadot #define VOUT_COM 0x02
55062944ccSEmmanuel Vadot #define COM_DISABLE (1 << 0)
56062944ccSEmmanuel Vadot #define SYS_STATUS 0x06
57062944ccSEmmanuel Vadot
58062944ccSEmmanuel Vadot static struct ofw_compat_data compat_data[] = {
59062944ccSEmmanuel Vadot { "silergy,sy8106a", 1 },
60062944ccSEmmanuel Vadot { NULL, 0 }
61062944ccSEmmanuel Vadot };
62062944ccSEmmanuel Vadot
63062944ccSEmmanuel Vadot struct sy8106a_reg_sc {
64062944ccSEmmanuel Vadot struct regnode *regnode;
65062944ccSEmmanuel Vadot device_t base_dev;
66062944ccSEmmanuel Vadot phandle_t xref;
67062944ccSEmmanuel Vadot struct regnode_std_param *param;
68062944ccSEmmanuel Vadot };
69062944ccSEmmanuel Vadot
70062944ccSEmmanuel Vadot struct sy8106a_softc {
71062944ccSEmmanuel Vadot uint16_t addr;
72062944ccSEmmanuel Vadot
73062944ccSEmmanuel Vadot /* Regulator */
74062944ccSEmmanuel Vadot struct sy8106a_reg_sc *reg;
75062944ccSEmmanuel Vadot };
76062944ccSEmmanuel Vadot
77062944ccSEmmanuel Vadot static int
sy8106a_read(device_t dev,uint8_t reg,uint8_t * data,uint8_t size)78062944ccSEmmanuel Vadot sy8106a_read(device_t dev, uint8_t reg, uint8_t *data, uint8_t size)
79062944ccSEmmanuel Vadot {
80062944ccSEmmanuel Vadot struct sy8106a_softc *sc;
81062944ccSEmmanuel Vadot struct iic_msg msg[2];
82062944ccSEmmanuel Vadot
83062944ccSEmmanuel Vadot sc = device_get_softc(dev);
84062944ccSEmmanuel Vadot
85062944ccSEmmanuel Vadot msg[0].slave = sc->addr;
86062944ccSEmmanuel Vadot msg[0].flags = IIC_M_WR;
87062944ccSEmmanuel Vadot msg[0].len = 1;
88062944ccSEmmanuel Vadot msg[0].buf = ®
89062944ccSEmmanuel Vadot
90062944ccSEmmanuel Vadot msg[1].slave = sc->addr;
91062944ccSEmmanuel Vadot msg[1].flags = IIC_M_RD;
92062944ccSEmmanuel Vadot msg[1].len = size;
93062944ccSEmmanuel Vadot msg[1].buf = data;
94062944ccSEmmanuel Vadot
95062944ccSEmmanuel Vadot return (iicbus_transfer(dev, msg, 2));
96062944ccSEmmanuel Vadot }
97062944ccSEmmanuel Vadot
98062944ccSEmmanuel Vadot static int
sy8106a_write(device_t dev,uint8_t reg,uint8_t val)99062944ccSEmmanuel Vadot sy8106a_write(device_t dev, uint8_t reg, uint8_t val)
100062944ccSEmmanuel Vadot {
101062944ccSEmmanuel Vadot struct sy8106a_softc *sc;
102062944ccSEmmanuel Vadot struct iic_msg msg;
103062944ccSEmmanuel Vadot uint8_t buffer[2];
104062944ccSEmmanuel Vadot
105062944ccSEmmanuel Vadot sc = device_get_softc(dev);
106062944ccSEmmanuel Vadot
107062944ccSEmmanuel Vadot buffer[0] = reg;
108062944ccSEmmanuel Vadot buffer[1] = val;
109062944ccSEmmanuel Vadot
110062944ccSEmmanuel Vadot msg.slave = sc->addr;
111062944ccSEmmanuel Vadot msg.flags = IIC_M_WR;
112062944ccSEmmanuel Vadot msg.len = 2;
113062944ccSEmmanuel Vadot msg.buf = buffer;
114062944ccSEmmanuel Vadot
115062944ccSEmmanuel Vadot return (iicbus_transfer(dev, &msg, 1));
116062944ccSEmmanuel Vadot }
117062944ccSEmmanuel Vadot
118062944ccSEmmanuel Vadot static int
sy8106a_regnode_init(struct regnode * regnode)119062944ccSEmmanuel Vadot sy8106a_regnode_init(struct regnode *regnode)
120062944ccSEmmanuel Vadot {
121062944ccSEmmanuel Vadot return (0);
122062944ccSEmmanuel Vadot }
123062944ccSEmmanuel Vadot
124062944ccSEmmanuel Vadot static int
sy8106a_regnode_enable(struct regnode * regnode,bool enable,int * udelay)125062944ccSEmmanuel Vadot sy8106a_regnode_enable(struct regnode *regnode, bool enable, int *udelay)
126062944ccSEmmanuel Vadot {
127062944ccSEmmanuel Vadot struct sy8106a_reg_sc *sc;
128062944ccSEmmanuel Vadot uint8_t val;
129062944ccSEmmanuel Vadot
130062944ccSEmmanuel Vadot sc = regnode_get_softc(regnode);
131062944ccSEmmanuel Vadot
132062944ccSEmmanuel Vadot sy8106a_read(sc->base_dev, VOUT_COM, &val, 1);
133062944ccSEmmanuel Vadot if (enable)
134062944ccSEmmanuel Vadot val &= ~COM_DISABLE;
135062944ccSEmmanuel Vadot else
136062944ccSEmmanuel Vadot val |= COM_DISABLE;
137062944ccSEmmanuel Vadot sy8106a_write(sc->base_dev, VOUT_COM, val);
138062944ccSEmmanuel Vadot
139062944ccSEmmanuel Vadot *udelay = sc->param->ramp_delay;
140062944ccSEmmanuel Vadot
141062944ccSEmmanuel Vadot return (0);
142062944ccSEmmanuel Vadot }
143062944ccSEmmanuel Vadot
144062944ccSEmmanuel Vadot static int
sy8106a_regnode_set_voltage(struct regnode * regnode,int min_uvolt,int max_uvolt,int * udelay)145062944ccSEmmanuel Vadot sy8106a_regnode_set_voltage(struct regnode *regnode, int min_uvolt,
146062944ccSEmmanuel Vadot int max_uvolt, int *udelay)
147062944ccSEmmanuel Vadot {
148062944ccSEmmanuel Vadot struct sy8106a_reg_sc *sc;
149062944ccSEmmanuel Vadot int cur_uvolt;
150062944ccSEmmanuel Vadot uint8_t val, oval;
151062944ccSEmmanuel Vadot
152062944ccSEmmanuel Vadot sc = regnode_get_softc(regnode);
153062944ccSEmmanuel Vadot
154062944ccSEmmanuel Vadot /* Get current voltage */
155062944ccSEmmanuel Vadot sy8106a_read(sc->base_dev, VOUT1_SEL, &oval, 1);
156062944ccSEmmanuel Vadot cur_uvolt = (oval & SEL_VOLTAGE_MASK) * SEL_VOLTAGE_STEP +
157062944ccSEmmanuel Vadot SEL_VOLTAGE_BASE;
158062944ccSEmmanuel Vadot
159062944ccSEmmanuel Vadot /* Set new voltage */
160062944ccSEmmanuel Vadot val = SEL_GO | ((min_uvolt - SEL_VOLTAGE_BASE) / SEL_VOLTAGE_STEP);
161062944ccSEmmanuel Vadot sy8106a_write(sc->base_dev, VOUT1_SEL, val);
162062944ccSEmmanuel Vadot
163062944ccSEmmanuel Vadot /* Time to delay is based on the number of voltage steps */
164062944ccSEmmanuel Vadot *udelay = sc->param->ramp_delay *
165062944ccSEmmanuel Vadot (abs(cur_uvolt - min_uvolt) / SEL_VOLTAGE_STEP);
166062944ccSEmmanuel Vadot
167062944ccSEmmanuel Vadot return (0);
168062944ccSEmmanuel Vadot }
169062944ccSEmmanuel Vadot
170062944ccSEmmanuel Vadot static int
sy8106a_regnode_get_voltage(struct regnode * regnode,int * uvolt)171062944ccSEmmanuel Vadot sy8106a_regnode_get_voltage(struct regnode *regnode, int *uvolt)
172062944ccSEmmanuel Vadot {
173062944ccSEmmanuel Vadot struct sy8106a_reg_sc *sc;
174062944ccSEmmanuel Vadot uint8_t val;
175062944ccSEmmanuel Vadot
176062944ccSEmmanuel Vadot sc = regnode_get_softc(regnode);
177062944ccSEmmanuel Vadot
178062944ccSEmmanuel Vadot sy8106a_read(sc->base_dev, VOUT1_SEL, &val, 1);
179062944ccSEmmanuel Vadot *uvolt = (val & SEL_VOLTAGE_MASK) * SEL_VOLTAGE_STEP +
180062944ccSEmmanuel Vadot SEL_VOLTAGE_BASE;
181062944ccSEmmanuel Vadot
182062944ccSEmmanuel Vadot return (0);
183062944ccSEmmanuel Vadot }
184062944ccSEmmanuel Vadot
185062944ccSEmmanuel Vadot static regnode_method_t sy8106a_regnode_methods[] = {
186062944ccSEmmanuel Vadot /* Regulator interface */
187062944ccSEmmanuel Vadot REGNODEMETHOD(regnode_init, sy8106a_regnode_init),
188062944ccSEmmanuel Vadot REGNODEMETHOD(regnode_enable, sy8106a_regnode_enable),
189062944ccSEmmanuel Vadot REGNODEMETHOD(regnode_set_voltage, sy8106a_regnode_set_voltage),
190062944ccSEmmanuel Vadot REGNODEMETHOD(regnode_get_voltage, sy8106a_regnode_get_voltage),
191062944ccSEmmanuel Vadot REGNODEMETHOD_END
192062944ccSEmmanuel Vadot };
193062944ccSEmmanuel Vadot DEFINE_CLASS_1(sy8106a_regnode, sy8106a_regnode_class, sy8106a_regnode_methods,
194062944ccSEmmanuel Vadot sizeof(struct sy8106a_reg_sc), regnode_class);
195062944ccSEmmanuel Vadot
196062944ccSEmmanuel Vadot static struct sy8106a_reg_sc *
sy8106a_reg_attach(device_t dev,phandle_t node)197062944ccSEmmanuel Vadot sy8106a_reg_attach(device_t dev, phandle_t node)
198062944ccSEmmanuel Vadot {
199062944ccSEmmanuel Vadot struct sy8106a_reg_sc *reg_sc;
200062944ccSEmmanuel Vadot struct regnode_init_def initdef;
201062944ccSEmmanuel Vadot struct regnode *regnode;
202062944ccSEmmanuel Vadot
203062944ccSEmmanuel Vadot memset(&initdef, 0, sizeof(initdef));
204062944ccSEmmanuel Vadot regulator_parse_ofw_stdparam(dev, node, &initdef);
205062944ccSEmmanuel Vadot initdef.id = 0;
206062944ccSEmmanuel Vadot initdef.ofw_node = node;
207062944ccSEmmanuel Vadot regnode = regnode_create(dev, &sy8106a_regnode_class, &initdef);
208062944ccSEmmanuel Vadot if (regnode == NULL) {
209062944ccSEmmanuel Vadot device_printf(dev, "cannot create regulator\n");
210062944ccSEmmanuel Vadot return (NULL);
211062944ccSEmmanuel Vadot }
212062944ccSEmmanuel Vadot
213062944ccSEmmanuel Vadot reg_sc = regnode_get_softc(regnode);
214062944ccSEmmanuel Vadot reg_sc->regnode = regnode;
215062944ccSEmmanuel Vadot reg_sc->base_dev = dev;
216062944ccSEmmanuel Vadot reg_sc->xref = OF_xref_from_node(node);
217062944ccSEmmanuel Vadot reg_sc->param = regnode_get_stdparam(regnode);
218062944ccSEmmanuel Vadot
219062944ccSEmmanuel Vadot regnode_register(regnode);
220062944ccSEmmanuel Vadot
221062944ccSEmmanuel Vadot return (reg_sc);
222062944ccSEmmanuel Vadot }
223062944ccSEmmanuel Vadot
224062944ccSEmmanuel Vadot static int
sy8106a_regdev_map(device_t dev,phandle_t xref,int ncells,pcell_t * cells,intptr_t * num)225062944ccSEmmanuel Vadot sy8106a_regdev_map(device_t dev, phandle_t xref, int ncells, pcell_t *cells,
226062944ccSEmmanuel Vadot intptr_t *num)
227062944ccSEmmanuel Vadot {
228062944ccSEmmanuel Vadot struct sy8106a_softc *sc;
229062944ccSEmmanuel Vadot
230062944ccSEmmanuel Vadot sc = device_get_softc(dev);
231062944ccSEmmanuel Vadot
232062944ccSEmmanuel Vadot if (sc->reg->xref != xref)
233062944ccSEmmanuel Vadot return (ENXIO);
234062944ccSEmmanuel Vadot
235062944ccSEmmanuel Vadot *num = 0;
236062944ccSEmmanuel Vadot
237062944ccSEmmanuel Vadot return (0);
238062944ccSEmmanuel Vadot }
239062944ccSEmmanuel Vadot
240062944ccSEmmanuel Vadot static int
sy8106a_probe(device_t dev)241062944ccSEmmanuel Vadot sy8106a_probe(device_t dev)
242062944ccSEmmanuel Vadot {
243062944ccSEmmanuel Vadot if (!ofw_bus_status_okay(dev))
244062944ccSEmmanuel Vadot return (ENXIO);
245062944ccSEmmanuel Vadot
246062944ccSEmmanuel Vadot if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
247062944ccSEmmanuel Vadot return (ENXIO);
248062944ccSEmmanuel Vadot
249062944ccSEmmanuel Vadot device_set_desc(dev, "Silergy SY8106A regulator");
250062944ccSEmmanuel Vadot
251062944ccSEmmanuel Vadot return (BUS_PROBE_DEFAULT);
252062944ccSEmmanuel Vadot }
253062944ccSEmmanuel Vadot
254062944ccSEmmanuel Vadot static int
sy8106a_attach(device_t dev)255062944ccSEmmanuel Vadot sy8106a_attach(device_t dev)
256062944ccSEmmanuel Vadot {
257062944ccSEmmanuel Vadot struct sy8106a_softc *sc;
258062944ccSEmmanuel Vadot phandle_t node;
259062944ccSEmmanuel Vadot
260062944ccSEmmanuel Vadot sc = device_get_softc(dev);
261062944ccSEmmanuel Vadot node = ofw_bus_get_node(dev);
262062944ccSEmmanuel Vadot
263062944ccSEmmanuel Vadot sc->addr = iicbus_get_addr(dev);
264062944ccSEmmanuel Vadot
265062944ccSEmmanuel Vadot sc->reg = sy8106a_reg_attach(dev, node);
266062944ccSEmmanuel Vadot if (sc->reg == NULL) {
267062944ccSEmmanuel Vadot device_printf(dev, "cannot attach regulator\n");
268062944ccSEmmanuel Vadot return (ENXIO);
269062944ccSEmmanuel Vadot }
270062944ccSEmmanuel Vadot
271062944ccSEmmanuel Vadot return (0);
272062944ccSEmmanuel Vadot }
273062944ccSEmmanuel Vadot
274062944ccSEmmanuel Vadot static device_method_t sy8106a_methods[] = {
275062944ccSEmmanuel Vadot /* Device interface */
276062944ccSEmmanuel Vadot DEVMETHOD(device_probe, sy8106a_probe),
277062944ccSEmmanuel Vadot DEVMETHOD(device_attach, sy8106a_attach),
278062944ccSEmmanuel Vadot
279062944ccSEmmanuel Vadot /* Regdev interface */
280062944ccSEmmanuel Vadot DEVMETHOD(regdev_map, sy8106a_regdev_map),
281062944ccSEmmanuel Vadot
282062944ccSEmmanuel Vadot DEVMETHOD_END
283062944ccSEmmanuel Vadot };
284062944ccSEmmanuel Vadot
285062944ccSEmmanuel Vadot static driver_t sy8106a_driver = {
286062944ccSEmmanuel Vadot "sy8106a",
287062944ccSEmmanuel Vadot sy8106a_methods,
288062944ccSEmmanuel Vadot sizeof(struct sy8106a_softc),
289062944ccSEmmanuel Vadot };
290062944ccSEmmanuel Vadot
291062944ccSEmmanuel Vadot EARLY_DRIVER_MODULE(sy8106a, iicbus, sy8106a_driver, 0, 0, BUS_PASS_RESOURCE);
292062944ccSEmmanuel Vadot MODULE_VERSION(sy8106a, 1);
293062944ccSEmmanuel Vadot MODULE_DEPEND(sy8106a, iicbus, 1, 1, 1);
294062944ccSEmmanuel Vadot IICBUS_FDT_PNP_INFO(compat_data);
295