]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/ti/am335x/am335x_pmic.c
Garbage collect the no-longer-necessary MAX_IIC_DATA_SIZE (there is not a
[FreeBSD/FreeBSD.git] / sys / arm / ti / am335x / am335x_pmic.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2012 Damjan Marion <dmarion@Freebsd.org>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 /*
32 * TI TPS65217 PMIC companion chip for AM335x SoC sitting on I2C bus
33 */
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/eventhandler.h>
37 #include <sys/kernel.h>
38 #include <sys/module.h>
39 #include <sys/clock.h>
40 #include <sys/time.h>
41 #include <sys/bus.h>
42 #include <sys/proc.h>
43 #include <sys/reboot.h>
44 #include <sys/resource.h>
45 #include <sys/rman.h>
46
47 #include <dev/iicbus/iicbus.h>
48 #include <dev/iicbus/iiconf.h>
49
50 #include <dev/ofw/openfirm.h>
51 #include <dev/ofw/ofw_bus.h>
52 #include <dev/ofw/ofw_bus_subr.h>
53
54 #include <arm/ti/am335x/am335x_rtcvar.h>
55 #include <arm/ti/am335x/tps65217x.h>
56
57 #include "iicbus_if.h"
58
59 struct am335x_pmic_softc {
60         device_t                sc_dev;
61         uint32_t                sc_addr;
62         struct intr_config_hook enum_hook;
63         struct resource         *sc_irq_res;
64         void                    *sc_intrhand;
65 };
66
67 static const char *tps65217_voreg_c[4] = {"4.10V", "4.15V", "4.20V", "4.25V"};
68
69 static int am335x_pmic_bootverbose = 0;
70 TUNABLE_INT("hw.am335x_pmic.bootverbose", &am335x_pmic_bootverbose);
71 static char am335x_pmic_vo[6];
72 TUNABLE_STR("hw.am335x_pmic.vo", am335x_pmic_vo, sizeof(am335x_pmic_vo));
73
74 static void am335x_pmic_shutdown(void *, int);
75
76 static int
77 am335x_pmic_read(device_t dev, uint8_t addr, uint8_t *data, uint8_t size)
78 {
79         return (iicdev_readfrom(dev, addr, data, size, IIC_INTRWAIT));
80 }
81
82 static int
83 am335x_pmic_write(device_t dev, uint8_t address, uint8_t *data, uint8_t size)
84 {
85         return (iicdev_writeto(dev, address, data, size, IIC_INTRWAIT));
86 }
87
88 static void
89 am335x_pmic_intr(void *arg)
90 {
91         struct am335x_pmic_softc *sc = (struct am335x_pmic_softc *)arg;
92         struct tps65217_status_reg status_reg;
93         struct tps65217_int_reg int_reg;
94         int rv;
95         char notify_buf[16];
96
97         THREAD_SLEEPING_OK();
98         rv = am335x_pmic_read(sc->sc_dev, TPS65217_INT_REG, (uint8_t *)&int_reg, 1);
99         if (rv != 0) {
100                 device_printf(sc->sc_dev, "Cannot read interrupt register\n");
101                 THREAD_NO_SLEEPING();
102                 return;
103         }
104         rv = am335x_pmic_read(sc->sc_dev, TPS65217_STATUS_REG, (uint8_t *)&status_reg, 1);
105         if (rv != 0) {
106                 device_printf(sc->sc_dev, "Cannot read status register\n");
107                 THREAD_NO_SLEEPING();
108                 return;
109         }
110         THREAD_NO_SLEEPING();
111
112         if (int_reg.pbi && status_reg.pb)
113                 shutdown_nice(RB_POWEROFF);
114         if (int_reg.aci) {
115                 snprintf(notify_buf, sizeof(notify_buf), "notify=0x%02x",
116                     status_reg.acpwr);
117                 devctl_notify_f("ACPI", "ACAD", "power", notify_buf, M_NOWAIT);
118         }
119 }
120
121 static int
122 am335x_pmic_probe(device_t dev)
123 {
124         struct am335x_pmic_softc *sc;
125
126         if (!ofw_bus_is_compatible(dev, "ti,tps65217"))
127                 return (ENXIO);
128
129         sc = device_get_softc(dev);
130         sc->sc_dev = dev;
131         /* Convert to 8-bit addressing */
132         sc->sc_addr = iicbus_get_addr(dev);
133
134         device_set_desc(dev, "TI TPS65217 Power Management IC");
135
136         return (0);
137 }
138
139 static void
140 am335x_pmic_dump_chgconfig(device_t dev)
141 {
142         struct tps65217_chgconfig0_reg reg0;
143         struct tps65217_chgconfig1_reg reg1;
144         struct tps65217_chgconfig2_reg reg2;
145         struct tps65217_chgconfig3_reg reg3;
146         const char *e_d[] = {"enabled", "disabled"};
147         const char *d_e[] = {"disabled", "enabled"};
148         const char *i_a[] = {"inactive", "active"};
149         const char *f_t[] = {"false", "true"};
150         const char *timer_c[] = {"4h", "5h", "6h", "8h"};
151         const char *ntc_type_c[] = {"100k", "10k"};
152         const char *vprechg_c[] = {"2.9V", "2.5V"};
153         const char *trange_c[] = {"0-45 C", "0-60 C"};
154         const char *termif_c[] = {"2.5%", "7.5%", "15%", "18%"};
155         const char *pchrgt_c[] = {"30 min", "60 min"};
156         const char *dppmth_c[] = {"3.50V", "3.75V", "4.00V", "4.25V"};
157         const char *ichrg_c[] = {"300mA", "400mA", "500mA", "700mA"};
158
159         am335x_pmic_read(dev, TPS65217_CHGCONFIG0_REG, (uint8_t *)&reg0, 1);
160         device_printf(dev, " BAT TEMP/NTC ERROR: %s\n", f_t[reg0.battemp]);
161         device_printf(dev, " Pre-charge timer time-out: %s\n", f_t[reg0.pchgtout]);
162         device_printf(dev, " Charge timer time-out: %s\n", f_t[reg0.chgtout]);
163         device_printf(dev, " Charger active: %s\n", f_t[reg0.active]);
164         device_printf(dev, " Termination current detected: %s\n", f_t[reg0.termi]);
165         device_printf(dev, " Thermal suspend: %s\n", f_t[reg0.tsusp]);
166         device_printf(dev, " DPPM active: %s\n", f_t[reg0.dppm]);
167         device_printf(dev, " Thermal regulation: %s\n", i_a[reg0.treg]);
168
169         am335x_pmic_read(dev, TPS65217_CHGCONFIG1_REG, (uint8_t *)&reg1, 1);
170         device_printf(dev, " Charger: %s\n", d_e[reg1.chg_en]);
171         device_printf(dev, " Suspend charge: %s\n", i_a[reg1.susp]);
172         device_printf(dev, " Charge termination: %s\n", e_d[reg1.term]);
173         device_printf(dev, " Charger reset: %s\n", i_a[reg1.reset]);
174         device_printf(dev, " NTC TYPE: %s\n", ntc_type_c[reg1.ntc_type]);
175         device_printf(dev, " Safety timer: %s\n", d_e[reg1.tmr_en]);
176         device_printf(dev, " Charge safety timer: %s\n", timer_c[reg1.timer]);
177
178         am335x_pmic_read(dev, TPS65217_CHGCONFIG2_REG, (uint8_t *)&reg2, 1);
179         device_printf(dev, " Charge voltage: %s\n", tps65217_voreg_c[reg2.voreg]);
180         device_printf(dev, " Pre-charge to fast charge transition voltage: %s\n",
181             vprechg_c[reg2.vprechg]);
182         device_printf(dev, " Dynamic timer function: %s\n", d_e[reg2.dyntmr]);
183
184         am335x_pmic_read(dev, TPS65217_CHGCONFIG3_REG, (uint8_t *)&reg3, 1);
185         device_printf(dev, " Temperature range for charging: %s\n", trange_c[reg3.trange]);
186         device_printf(dev, " Termination current factor: %s\n", termif_c[reg3.termif]);
187         device_printf(dev, " Pre-charge time: %s\n", pchrgt_c[reg3.pchrgt]);
188         device_printf(dev, " Power path DPPM threshold: %s\n", dppmth_c[reg3.dppmth]);
189         device_printf(dev, " Charge current: %s\n", ichrg_c[reg3.ichrg]);
190 }
191
192 static void
193 am335x_pmic_setvo(device_t dev, uint8_t vo)
194 {
195         struct tps65217_chgconfig2_reg reg2;
196
197         am335x_pmic_read(dev, TPS65217_CHGCONFIG2_REG, (uint8_t *)&reg2, 1);
198         reg2.voreg = vo;
199         am335x_pmic_write(dev, TPS65217_CHGCONFIG2_REG, (uint8_t *)&reg2, 1);
200 }
201
202 static void
203 am335x_pmic_start(void *xdev)
204 {
205         struct am335x_pmic_softc *sc;
206         device_t dev = (device_t)xdev;
207         struct tps65217_status_reg status_reg;
208         struct tps65217_chipid_reg chipid_reg;
209         uint8_t reg, vo;
210         char name[20];
211         char pwr[4][11] = {"Battery", "USB", "AC", "USB and AC"};
212         int rv;
213
214         sc = device_get_softc(dev);
215
216         am335x_pmic_read(dev, TPS65217_CHIPID_REG, (uint8_t *)&chipid_reg, 1);
217         switch (chipid_reg.chip) {
218                 case TPS65217A:
219                         sprintf(name, "TPS65217A ver 1.%u", chipid_reg.rev);
220                         break;
221                 case TPS65217B:
222                         sprintf(name, "TPS65217B ver 1.%u", chipid_reg.rev);
223                         break;
224                 case TPS65217C:
225                         sprintf(name, "TPS65217C ver 1.%u", chipid_reg.rev);
226                         break;
227                 case TPS65217D:
228                         sprintf(name, "TPS65217D ver 1.%u", chipid_reg.rev);
229                         break;
230                 default:
231                         sprintf(name, "Unknown PMIC");
232         }
233
234         am335x_pmic_read(dev, TPS65217_STATUS_REG, (uint8_t *)&status_reg, 1);
235         device_printf(dev, "%s powered by %s\n", name,
236             pwr[status_reg.usbpwr | (status_reg.acpwr << 1)]);
237
238         if (am335x_pmic_vo[0] != '\0') {
239                 for (vo = 0; vo < 4; vo++) {
240                         if (strcmp(tps65217_voreg_c[vo], am335x_pmic_vo) == 0)
241                                 break;
242                 }
243                 if (vo == 4) {
244                         device_printf(dev, "WARNING: hw.am335x_pmic.vo=\"%s\""
245                             ": unsupported value\n", am335x_pmic_vo);
246                 } else {
247                         am335x_pmic_setvo(dev, vo);
248                 }
249         }
250
251         if (bootverbose || am335x_pmic_bootverbose) {
252                 am335x_pmic_dump_chgconfig(dev);
253         }
254
255         EVENTHANDLER_REGISTER(shutdown_final, am335x_pmic_shutdown, dev,
256             SHUTDOWN_PRI_LAST);
257
258         config_intrhook_disestablish(&sc->enum_hook);
259
260         /* Unmask all interrupts and clear pending status */
261         reg = 0;
262         am335x_pmic_write(dev, TPS65217_INT_REG, &reg, 1);
263         am335x_pmic_read(dev, TPS65217_INT_REG, &reg, 1);
264
265         if (sc->sc_irq_res != NULL) {
266                 rv = bus_setup_intr(dev, sc->sc_irq_res,
267                     INTR_TYPE_MISC | INTR_MPSAFE, NULL, am335x_pmic_intr,
268                     sc, &sc->sc_intrhand);
269                 if (rv != 0)
270                         device_printf(dev,
271                             "Unable to setup the irq handler.\n");
272         }
273 }
274
275 static int
276 am335x_pmic_attach(device_t dev)
277 {
278         struct am335x_pmic_softc *sc;
279         int rid;
280
281         sc = device_get_softc(dev);
282
283         rid = 0;
284         sc->sc_irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
285             RF_ACTIVE);
286         if (!sc->sc_irq_res) {
287                 device_printf(dev, "cannot allocate interrupt\n");
288                 /* return (ENXIO); */
289         }
290
291         sc->enum_hook.ich_func = am335x_pmic_start;
292         sc->enum_hook.ich_arg = dev;
293
294         if (config_intrhook_establish(&sc->enum_hook) != 0)
295                 return (ENOMEM);
296
297         return (0);
298 }
299
300 static void
301 am335x_pmic_shutdown(void *xdev, int howto)
302 {
303         device_t dev;
304         struct tps65217_status_reg reg;
305
306         if (!(howto & RB_POWEROFF))
307                 return;
308         dev = (device_t)xdev;
309         am335x_pmic_read(dev, TPS65217_STATUS_REG, (uint8_t *)&reg, 1);
310         /* Set the OFF bit on status register to start the shutdown sequence. */
311         reg.off = 1;
312         am335x_pmic_write(dev, TPS65217_STATUS_REG, (uint8_t *)&reg, 1);
313         /* Toggle pmic_pwr_enable to shutdown the PMIC. */
314         am335x_rtc_pmic_pwr_toggle();
315 }
316
317 static device_method_t am335x_pmic_methods[] = {
318         DEVMETHOD(device_probe,         am335x_pmic_probe),
319         DEVMETHOD(device_attach,        am335x_pmic_attach),
320         {0, 0},
321 };
322
323 static driver_t am335x_pmic_driver = {
324         "am335x_pmic",
325         am335x_pmic_methods,
326         sizeof(struct am335x_pmic_softc),
327 };
328
329 static devclass_t am335x_pmic_devclass;
330
331 DRIVER_MODULE(am335x_pmic, iicbus, am335x_pmic_driver, am335x_pmic_devclass, 0, 0);
332 MODULE_VERSION(am335x_pmic, 1);
333 MODULE_DEPEND(am335x_pmic, iicbus, 1, 1, 1);