blob: 67e2707af4bce0228c1f570680b2c127b1c6c06e [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Graeme Gregory27c67502011-05-02 16:19:46 -05002/*
Paul Gortmakera8799de2019-01-13 13:36:42 -05003 * tps65910.c -- TI TPS6591x chip family multi-function driver
Graeme Gregory27c67502011-05-02 16:19:46 -05004 *
5 * Copyright 2010 Texas Instruments Inc.
6 *
7 * Author: Graeme Gregory <gg@slimlogic.co.uk>
8 * Author: Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>
Graeme Gregory27c67502011-05-02 16:19:46 -05009 */
10
Graeme Gregory27c67502011-05-02 16:19:46 -050011#include <linux/init.h>
Laxman Dewangandc9913a2012-02-21 18:21:34 +053012#include <linux/err.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050013#include <linux/slab.h>
14#include <linux/i2c.h>
Laxman Dewangan4aab3fa2012-11-13 19:33:58 +053015#include <linux/interrupt.h>
16#include <linux/irq.h>
17#include <linux/irqdomain.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050018#include <linux/mfd/core.h>
Laxman Dewangandc9913a2012-02-21 18:21:34 +053019#include <linux/regmap.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050020#include <linux/mfd/tps65910.h>
Sachin Kamat1fead3f2013-10-16 14:26:55 +053021#include <linux/of.h>
Rhyland Kleincd4209c2012-05-11 11:36:26 +020022#include <linux/of_device.h>
Graeme Gregory27c67502011-05-02 16:19:46 -050023
Rikard Falkeborn0aefed02020-09-22 21:26:54 +020024static const struct resource rtc_resources[] = {
Venu Byravarasu5863eab2012-09-21 16:25:36 +053025 {
26 .start = TPS65910_IRQ_RTC_ALARM,
27 .end = TPS65910_IRQ_RTC_ALARM,
28 .flags = IORESOURCE_IRQ,
29 }
30};
31
Geert Uytterhoeven30fe2b52013-11-18 14:33:02 +010032static const struct mfd_cell tps65910s[] = {
Graeme Gregory27c67502011-05-02 16:19:46 -050033 {
Laxman Dewangan32df9862012-05-11 15:07:44 +020034 .name = "tps65910-gpio",
35 },
36 {
Graeme Gregory27c67502011-05-02 16:19:46 -050037 .name = "tps65910-pmic",
38 },
39 {
40 .name = "tps65910-rtc",
Venu Byravarasu5863eab2012-09-21 16:25:36 +053041 .num_resources = ARRAY_SIZE(rtc_resources),
42 .resources = &rtc_resources[0],
Graeme Gregory27c67502011-05-02 16:19:46 -050043 },
44 {
45 .name = "tps65910-power",
46 },
47};
48
49
Laxman Dewangan4aab3fa2012-11-13 19:33:58 +053050static const struct regmap_irq tps65911_irqs[] = {
51 /* INT_STS */
52 [TPS65911_IRQ_PWRHOLD_F] = {
53 .mask = INT_MSK_PWRHOLD_F_IT_MSK_MASK,
54 .reg_offset = 0,
55 },
56 [TPS65911_IRQ_VBAT_VMHI] = {
57 .mask = INT_MSK_VMBHI_IT_MSK_MASK,
58 .reg_offset = 0,
59 },
60 [TPS65911_IRQ_PWRON] = {
61 .mask = INT_MSK_PWRON_IT_MSK_MASK,
62 .reg_offset = 0,
63 },
64 [TPS65911_IRQ_PWRON_LP] = {
65 .mask = INT_MSK_PWRON_LP_IT_MSK_MASK,
66 .reg_offset = 0,
67 },
68 [TPS65911_IRQ_PWRHOLD_R] = {
69 .mask = INT_MSK_PWRHOLD_R_IT_MSK_MASK,
70 .reg_offset = 0,
71 },
72 [TPS65911_IRQ_HOTDIE] = {
73 .mask = INT_MSK_HOTDIE_IT_MSK_MASK,
74 .reg_offset = 0,
75 },
76 [TPS65911_IRQ_RTC_ALARM] = {
77 .mask = INT_MSK_RTC_ALARM_IT_MSK_MASK,
78 .reg_offset = 0,
79 },
80 [TPS65911_IRQ_RTC_PERIOD] = {
81 .mask = INT_MSK_RTC_PERIOD_IT_MSK_MASK,
82 .reg_offset = 0,
83 },
84
85 /* INT_STS2 */
86 [TPS65911_IRQ_GPIO0_R] = {
87 .mask = INT_MSK2_GPIO0_R_IT_MSK_MASK,
88 .reg_offset = 1,
89 },
90 [TPS65911_IRQ_GPIO0_F] = {
91 .mask = INT_MSK2_GPIO0_F_IT_MSK_MASK,
92 .reg_offset = 1,
93 },
94 [TPS65911_IRQ_GPIO1_R] = {
95 .mask = INT_MSK2_GPIO1_R_IT_MSK_MASK,
96 .reg_offset = 1,
97 },
98 [TPS65911_IRQ_GPIO1_F] = {
99 .mask = INT_MSK2_GPIO1_F_IT_MSK_MASK,
100 .reg_offset = 1,
101 },
102 [TPS65911_IRQ_GPIO2_R] = {
103 .mask = INT_MSK2_GPIO2_R_IT_MSK_MASK,
104 .reg_offset = 1,
105 },
106 [TPS65911_IRQ_GPIO2_F] = {
107 .mask = INT_MSK2_GPIO2_F_IT_MSK_MASK,
108 .reg_offset = 1,
109 },
110 [TPS65911_IRQ_GPIO3_R] = {
111 .mask = INT_MSK2_GPIO3_R_IT_MSK_MASK,
112 .reg_offset = 1,
113 },
114 [TPS65911_IRQ_GPIO3_F] = {
115 .mask = INT_MSK2_GPIO3_F_IT_MSK_MASK,
116 .reg_offset = 1,
117 },
118
119 /* INT_STS2 */
120 [TPS65911_IRQ_GPIO4_R] = {
121 .mask = INT_MSK3_GPIO4_R_IT_MSK_MASK,
122 .reg_offset = 2,
123 },
124 [TPS65911_IRQ_GPIO4_F] = {
125 .mask = INT_MSK3_GPIO4_F_IT_MSK_MASK,
126 .reg_offset = 2,
127 },
128 [TPS65911_IRQ_GPIO5_R] = {
129 .mask = INT_MSK3_GPIO5_R_IT_MSK_MASK,
130 .reg_offset = 2,
131 },
132 [TPS65911_IRQ_GPIO5_F] = {
133 .mask = INT_MSK3_GPIO5_F_IT_MSK_MASK,
134 .reg_offset = 2,
135 },
136 [TPS65911_IRQ_WTCHDG] = {
137 .mask = INT_MSK3_WTCHDG_IT_MSK_MASK,
138 .reg_offset = 2,
139 },
140 [TPS65911_IRQ_VMBCH2_H] = {
141 .mask = INT_MSK3_VMBCH2_H_IT_MSK_MASK,
142 .reg_offset = 2,
143 },
144 [TPS65911_IRQ_VMBCH2_L] = {
145 .mask = INT_MSK3_VMBCH2_L_IT_MSK_MASK,
146 .reg_offset = 2,
147 },
148 [TPS65911_IRQ_PWRDN] = {
149 .mask = INT_MSK3_PWRDN_IT_MSK_MASK,
150 .reg_offset = 2,
151 },
152};
153
154static const struct regmap_irq tps65910_irqs[] = {
155 /* INT_STS */
156 [TPS65910_IRQ_VBAT_VMBDCH] = {
157 .mask = TPS65910_INT_MSK_VMBDCH_IT_MSK_MASK,
158 .reg_offset = 0,
159 },
160 [TPS65910_IRQ_VBAT_VMHI] = {
161 .mask = TPS65910_INT_MSK_VMBHI_IT_MSK_MASK,
162 .reg_offset = 0,
163 },
164 [TPS65910_IRQ_PWRON] = {
165 .mask = TPS65910_INT_MSK_PWRON_IT_MSK_MASK,
166 .reg_offset = 0,
167 },
168 [TPS65910_IRQ_PWRON_LP] = {
169 .mask = TPS65910_INT_MSK_PWRON_LP_IT_MSK_MASK,
170 .reg_offset = 0,
171 },
172 [TPS65910_IRQ_PWRHOLD] = {
173 .mask = TPS65910_INT_MSK_PWRHOLD_IT_MSK_MASK,
174 .reg_offset = 0,
175 },
176 [TPS65910_IRQ_HOTDIE] = {
177 .mask = TPS65910_INT_MSK_HOTDIE_IT_MSK_MASK,
178 .reg_offset = 0,
179 },
180 [TPS65910_IRQ_RTC_ALARM] = {
181 .mask = TPS65910_INT_MSK_RTC_ALARM_IT_MSK_MASK,
182 .reg_offset = 0,
183 },
184 [TPS65910_IRQ_RTC_PERIOD] = {
185 .mask = TPS65910_INT_MSK_RTC_PERIOD_IT_MSK_MASK,
186 .reg_offset = 0,
187 },
188
189 /* INT_STS2 */
190 [TPS65910_IRQ_GPIO_R] = {
191 .mask = TPS65910_INT_MSK2_GPIO0_F_IT_MSK_MASK,
192 .reg_offset = 1,
193 },
194 [TPS65910_IRQ_GPIO_F] = {
195 .mask = TPS65910_INT_MSK2_GPIO0_R_IT_MSK_MASK,
196 .reg_offset = 1,
197 },
198};
199
200static struct regmap_irq_chip tps65911_irq_chip = {
201 .name = "tps65910",
202 .irqs = tps65911_irqs,
203 .num_irqs = ARRAY_SIZE(tps65911_irqs),
204 .num_regs = 3,
205 .irq_reg_stride = 2,
206 .status_base = TPS65910_INT_STS,
207 .mask_base = TPS65910_INT_MSK,
Kim, Milo0582c0f2012-11-29 06:42:12 +0000208 .ack_base = TPS65910_INT_STS,
Laxman Dewangan4aab3fa2012-11-13 19:33:58 +0530209};
210
211static struct regmap_irq_chip tps65910_irq_chip = {
212 .name = "tps65910",
213 .irqs = tps65910_irqs,
214 .num_irqs = ARRAY_SIZE(tps65910_irqs),
215 .num_regs = 2,
216 .irq_reg_stride = 2,
217 .status_base = TPS65910_INT_STS,
218 .mask_base = TPS65910_INT_MSK,
Kim, Milo0582c0f2012-11-29 06:42:12 +0000219 .ack_base = TPS65910_INT_STS,
Laxman Dewangan4aab3fa2012-11-13 19:33:58 +0530220};
221
222static int tps65910_irq_init(struct tps65910 *tps65910, int irq,
223 struct tps65910_platform_data *pdata)
224{
Markus Elfringdae3be32018-03-09 09:06:14 +0100225 int ret;
Laxman Dewangan4aab3fa2012-11-13 19:33:58 +0530226 static struct regmap_irq_chip *tps6591x_irqs_chip;
227
228 if (!irq) {
229 dev_warn(tps65910->dev, "No interrupt support, no core IRQ\n");
230 return -EINVAL;
231 }
232
233 if (!pdata) {
234 dev_warn(tps65910->dev, "No interrupt support, no pdata\n");
235 return -EINVAL;
236 }
237
238 switch (tps65910_chip_id(tps65910)) {
239 case TPS65910:
240 tps6591x_irqs_chip = &tps65910_irq_chip;
241 break;
242 case TPS65911:
243 tps6591x_irqs_chip = &tps65911_irq_chip;
244 break;
245 }
246
247 tps65910->chip_irq = irq;
Laxman Dewangan6167c5b2016-04-21 17:55:57 +0530248 ret = devm_regmap_add_irq_chip(tps65910->dev, tps65910->regmap,
249 tps65910->chip_irq,
250 IRQF_ONESHOT, pdata->irq_base,
251 tps6591x_irqs_chip, &tps65910->irq_data);
Krzysztof Kozlowski483e2df2014-03-12 16:50:44 +0100252 if (ret < 0) {
Laxman Dewangan4aab3fa2012-11-13 19:33:58 +0530253 dev_warn(tps65910->dev, "Failed to add irq_chip %d\n", ret);
Krzysztof Kozlowski483e2df2014-03-12 16:50:44 +0100254 tps65910->chip_irq = 0;
255 }
Laxman Dewangan4aab3fa2012-11-13 19:33:58 +0530256 return ret;
257}
258
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530259static bool is_volatile_reg(struct device *dev, unsigned int reg)
260{
261 struct tps65910 *tps65910 = dev_get_drvdata(dev);
262
263 /*
264 * Caching all regulator registers.
265 * All regualator register address range is same for
266 * TPS65910 and TPS65911
267 */
268 if ((reg >= TPS65910_VIO) && (reg <= TPS65910_VDAC)) {
269 /* Check for non-existing register */
270 if (tps65910_chip_id(tps65910) == TPS65910)
271 if ((reg == TPS65911_VDDCTRL_OP) ||
272 (reg == TPS65911_VDDCTRL_SR))
273 return true;
274 return false;
275 }
276 return true;
277}
278
Laxman Dewangan39ecb032012-03-07 18:46:05 +0530279static const struct regmap_config tps65910_regmap_config = {
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530280 .reg_bits = 8,
281 .val_bits = 8,
282 .volatile_reg = is_volatile_reg,
Laxman Dewangan3bf6bf92012-05-09 18:40:54 +0530283 .max_register = TPS65910_MAX_REGISTER - 1,
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530284 .cache_type = REGCACHE_RBTREE,
285};
286
Bill Pembertonf791be42012-11-19 13:23:04 -0500287static int tps65910_ck32k_init(struct tps65910 *tps65910,
Johan Hovold712db992012-06-28 12:20:21 +0200288 struct tps65910_board *pmic_pdata)
289{
Johan Hovold712db992012-06-28 12:20:21 +0200290 int ret;
291
Johan Hovoldd02e83c2012-07-11 15:44:33 +0200292 if (!pmic_pdata->en_ck32k_xtal)
293 return 0;
294
Michał Mirosław28faad72020-09-27 01:59:17 +0200295 ret = regmap_clear_bits(tps65910->regmap, TPS65910_DEVCTRL,
Lee Jones4f278592020-11-04 14:49:05 +0000296 DEVCTRL_CK32K_CTRL_MASK);
Johan Hovoldd02e83c2012-07-11 15:44:33 +0200297 if (ret < 0) {
298 dev_err(tps65910->dev, "clear ck32k_ctrl failed: %d\n", ret);
299 return ret;
Johan Hovold712db992012-06-28 12:20:21 +0200300 }
301
302 return 0;
303}
304
Bill Pembertonf791be42012-11-19 13:23:04 -0500305static int tps65910_sleepinit(struct tps65910 *tps65910,
Laxman Dewangan201cf052012-04-18 12:13:51 +0200306 struct tps65910_board *pmic_pdata)
307{
Markus Elfringda257ef2018-03-09 09:10:09 +0100308 struct device *dev;
Markus Elfringdae3be32018-03-09 09:06:14 +0100309 int ret;
Laxman Dewangan201cf052012-04-18 12:13:51 +0200310
Laxman Dewangan201cf052012-04-18 12:13:51 +0200311 if (!pmic_pdata->en_dev_slp)
312 return 0;
313
Markus Elfring71bc4f12018-03-09 09:19:42 +0100314 dev = tps65910->dev;
315
Laxman Dewangan201cf052012-04-18 12:13:51 +0200316 /* enabling SLEEP device state */
Michał Mirosław28faad72020-09-27 01:59:17 +0200317 ret = regmap_set_bits(tps65910->regmap, TPS65910_DEVCTRL,
Lee Jones4f278592020-11-04 14:49:05 +0000318 DEVCTRL_DEV_SLP_MASK);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200319 if (ret < 0) {
320 dev_err(dev, "set dev_slp failed: %d\n", ret);
321 goto err_sleep_init;
322 }
323
Michał Mirosława9bc67d2017-06-14 21:04:14 +0200324 if (pmic_pdata->slp_keepon.therm_keepon) {
Michał Mirosław28faad72020-09-27 01:59:17 +0200325 ret = regmap_set_bits(tps65910->regmap,
Lee Jones4f278592020-11-04 14:49:05 +0000326 TPS65910_SLEEP_KEEP_RES_ON,
327 SLEEP_KEEP_RES_ON_THERM_KEEPON_MASK);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200328 if (ret < 0) {
329 dev_err(dev, "set therm_keepon failed: %d\n", ret);
330 goto disable_dev_slp;
331 }
332 }
333
Michał Mirosława9bc67d2017-06-14 21:04:14 +0200334 if (pmic_pdata->slp_keepon.clkout32k_keepon) {
Michał Mirosław28faad72020-09-27 01:59:17 +0200335 ret = regmap_set_bits(tps65910->regmap,
Lee Jones4f278592020-11-04 14:49:05 +0000336 TPS65910_SLEEP_KEEP_RES_ON,
337 SLEEP_KEEP_RES_ON_CLKOUT32K_KEEPON_MASK);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200338 if (ret < 0) {
339 dev_err(dev, "set clkout32k_keepon failed: %d\n", ret);
340 goto disable_dev_slp;
341 }
342 }
343
Michał Mirosława9bc67d2017-06-14 21:04:14 +0200344 if (pmic_pdata->slp_keepon.i2chs_keepon) {
Michał Mirosław28faad72020-09-27 01:59:17 +0200345 ret = regmap_set_bits(tps65910->regmap,
Lee Jones4f278592020-11-04 14:49:05 +0000346 TPS65910_SLEEP_KEEP_RES_ON,
347 SLEEP_KEEP_RES_ON_I2CHS_KEEPON_MASK);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200348 if (ret < 0) {
349 dev_err(dev, "set i2chs_keepon failed: %d\n", ret);
350 goto disable_dev_slp;
351 }
352 }
353
354 return 0;
355
356disable_dev_slp:
Michał Mirosław28faad72020-09-27 01:59:17 +0200357 regmap_clear_bits(tps65910->regmap, TPS65910_DEVCTRL,
Lee Jones4f278592020-11-04 14:49:05 +0000358 DEVCTRL_DEV_SLP_MASK);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200359
360err_sleep_init:
361 return ret;
362}
363
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200364#ifdef CONFIG_OF
Jingoo Hanc0dfbfe2014-05-07 17:15:48 +0900365static const struct of_device_id tps65910_of_match[] = {
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200366 { .compatible = "ti,tps65910", .data = (void *)TPS65910},
367 { .compatible = "ti,tps65911", .data = (void *)TPS65911},
368 { },
369};
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200370
371static struct tps65910_board *tps65910_parse_dt(struct i2c_client *client,
Lee Jones01a0f4a2014-07-02 14:34:13 +0100372 unsigned long *chip_id)
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200373{
374 struct device_node *np = client->dev.of_node;
375 struct tps65910_board *board_info;
376 unsigned int prop;
377 const struct of_device_id *match;
Markus Elfringdae3be32018-03-09 09:06:14 +0100378 int ret;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200379
380 match = of_match_device(tps65910_of_match, &client->dev);
381 if (!match) {
382 dev_err(&client->dev, "Failed to find matching dt id\n");
383 return NULL;
384 }
385
Lee Jones01a0f4a2014-07-02 14:34:13 +0100386 *chip_id = (unsigned long)match->data;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200387
388 board_info = devm_kzalloc(&client->dev, sizeof(*board_info),
389 GFP_KERNEL);
Markus Elfring93e879e2018-03-09 09:00:59 +0100390 if (!board_info)
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200391 return NULL;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200392
393 ret = of_property_read_u32(np, "ti,vmbch-threshold", &prop);
394 if (!ret)
395 board_info->vmbch_threshold = prop;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200396
397 ret = of_property_read_u32(np, "ti,vmbch2-threshold", &prop);
398 if (!ret)
399 board_info->vmbch2_threshold = prop;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200400
Johan Hovoldbcc1dd42012-06-28 12:20:22 +0200401 prop = of_property_read_bool(np, "ti,en-ck32k-xtal");
402 board_info->en_ck32k_xtal = prop;
403
Michał Mirosława9bc67d2017-06-14 21:04:14 +0200404 prop = of_property_read_bool(np, "ti,sleep-enable");
405 board_info->en_dev_slp = prop;
406
407 prop = of_property_read_bool(np, "ti,sleep-keep-therm");
408 board_info->slp_keepon.therm_keepon = prop;
409
410 prop = of_property_read_bool(np, "ti,sleep-keep-ck32k");
411 board_info->slp_keepon.clkout32k_keepon = prop;
412
413 prop = of_property_read_bool(np, "ti,sleep-keep-hsclk");
414 board_info->slp_keepon.i2chs_keepon = prop;
415
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200416 board_info->irq = client->irq;
417 board_info->irq_base = -1;
Bill Huangb079fa722012-08-19 18:07:56 -0700418 board_info->pm_off = of_property_read_bool(np,
419 "ti,system-power-controller");
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200420
421 return board_info;
422}
423#else
Samuel Ortiz7f65f742012-05-11 15:10:28 +0200424static inline
425struct tps65910_board *tps65910_parse_dt(struct i2c_client *client,
Lee Jones01a0f4a2014-07-02 14:34:13 +0100426 unsigned long *chip_id)
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200427{
428 return NULL;
429}
430#endif
Laxman Dewangan201cf052012-04-18 12:13:51 +0200431
Bill Huangb079fa722012-08-19 18:07:56 -0700432static struct i2c_client *tps65910_i2c_client;
433static void tps65910_power_off(void)
434{
435 struct tps65910 *tps65910;
436
437 tps65910 = dev_get_drvdata(&tps65910_i2c_client->dev);
438
Dmitry Osipenko129989d2020-11-15 23:45:05 +0300439 regmap_update_bits(tps65910->regmap, TPS65910_DEVCTRL,
440 DEVCTRL_DEV_OFF_MASK | DEVCTRL_DEV_ON_MASK,
441 DEVCTRL_DEV_OFF_MASK);
Bill Huangb079fa722012-08-19 18:07:56 -0700442}
443
Bill Pembertonf791be42012-11-19 13:23:04 -0500444static int tps65910_i2c_probe(struct i2c_client *i2c,
Lee Jones01a0f4a2014-07-02 14:34:13 +0100445 const struct i2c_device_id *id)
Graeme Gregory27c67502011-05-02 16:19:46 -0500446{
447 struct tps65910 *tps65910;
Graeme Gregory2537df72011-05-02 16:19:52 -0500448 struct tps65910_board *pmic_plat_data;
Laxman Dewangancb8d8652012-05-19 02:01:41 +0530449 struct tps65910_board *of_pmic_plat_data = NULL;
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500450 struct tps65910_platform_data *init_data;
Lee Jones01a0f4a2014-07-02 14:34:13 +0100451 unsigned long chip_id = id->driver_data;
Markus Elfringdae3be32018-03-09 09:06:14 +0100452 int ret;
Graeme Gregory27c67502011-05-02 16:19:46 -0500453
Graeme Gregory2537df72011-05-02 16:19:52 -0500454 pmic_plat_data = dev_get_platdata(&i2c->dev);
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200455
Laxman Dewangancb8d8652012-05-19 02:01:41 +0530456 if (!pmic_plat_data && i2c->dev.of_node) {
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200457 pmic_plat_data = tps65910_parse_dt(i2c, &chip_id);
Laxman Dewangancb8d8652012-05-19 02:01:41 +0530458 of_pmic_plat_data = pmic_plat_data;
459 }
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200460
Graeme Gregory2537df72011-05-02 16:19:52 -0500461 if (!pmic_plat_data)
462 return -EINVAL;
463
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200464 init_data = devm_kzalloc(&i2c->dev, sizeof(*init_data), GFP_KERNEL);
Graeme Gregorye3471bd2011-05-02 16:20:04 -0500465 if (init_data == NULL)
466 return -ENOMEM;
467
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200468 tps65910 = devm_kzalloc(&i2c->dev, sizeof(*tps65910), GFP_KERNEL);
469 if (tps65910 == NULL)
Graeme Gregory27c67502011-05-02 16:19:46 -0500470 return -ENOMEM;
471
Laxman Dewangancb8d8652012-05-19 02:01:41 +0530472 tps65910->of_plat_data = of_pmic_plat_data;
Graeme Gregory27c67502011-05-02 16:19:46 -0500473 i2c_set_clientdata(i2c, tps65910);
474 tps65910->dev = &i2c->dev;
475 tps65910->i2c_client = i2c;
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200476 tps65910->id = chip_id;
Graeme Gregory27c67502011-05-02 16:19:46 -0500477
Arnout Vandecappelle (Essensium/Mind)be1c7702014-08-22 17:30:56 +0200478 /* Work around silicon erratum SWCZ010: the tps65910 may miss the
479 * first I2C transfer. So issue a dummy transfer before the first
480 * real transfer.
481 */
482 i2c_master_send(i2c, "", 1);
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200483 tps65910->regmap = devm_regmap_init_i2c(i2c, &tps65910_regmap_config);
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530484 if (IS_ERR(tps65910->regmap)) {
485 ret = PTR_ERR(tps65910->regmap);
486 dev_err(&i2c->dev, "regmap initialization failed: %d\n", ret);
Laxman Dewangan63fe7de2012-05-11 12:36:57 +0200487 return ret;
Laxman Dewangandc9913a2012-02-21 18:21:34 +0530488 }
489
Jesper Juhlb1224cd2011-07-13 23:22:26 +0200490 init_data->irq = pmic_plat_data->irq;
Laxman Dewangan17731402012-01-18 20:19:16 +0530491 init_data->irq_base = pmic_plat_data->irq_base;
Jesper Juhlb1224cd2011-07-13 23:22:26 +0200492
Afzal Mohammed1e351a92011-12-14 16:05:35 +0530493 tps65910_irq_init(tps65910, init_data->irq, init_data);
Johan Hovoldd02e83c2012-07-11 15:44:33 +0200494 tps65910_ck32k_init(tps65910, pmic_plat_data);
Laxman Dewangan201cf052012-04-18 12:13:51 +0200495 tps65910_sleepinit(tps65910, pmic_plat_data);
496
Bill Huangb079fa722012-08-19 18:07:56 -0700497 if (pmic_plat_data->pm_off && !pm_power_off) {
Dmitry Osipenko7620ad02021-11-24 22:01:04 +0300498 /*
499 * The PWR_OFF bit needs to be set separately, before
500 * transitioning to the OFF state. It enables the "sequential"
501 * power-off mode on TPS65911, it's a NO-OP on TPS65910.
502 */
503 ret = regmap_set_bits(tps65910->regmap, TPS65910_DEVCTRL,
504 DEVCTRL_PWR_OFF_MASK);
505 if (ret) {
506 dev_err(&i2c->dev, "failed to set power-off mode: %d\n",
507 ret);
508 return ret;
509 }
510
Bill Huangb079fa722012-08-19 18:07:56 -0700511 tps65910_i2c_client = i2c;
512 pm_power_off = tps65910_power_off;
513 }
514
Laxman Dewanganf3466e72016-04-08 00:13:13 +0530515 ret = devm_mfd_add_devices(tps65910->dev, -1,
516 tps65910s, ARRAY_SIZE(tps65910s),
517 NULL, 0,
518 regmap_irq_get_domain(tps65910->irq_data));
Laxman Dewangan10ecb802012-11-13 19:33:56 +0530519 if (ret < 0) {
520 dev_err(&i2c->dev, "mfd_add_devices failed: %d\n", ret);
521 return ret;
522 }
523
Graeme Gregory27c67502011-05-02 16:19:46 -0500524 return ret;
525}
526
Graeme Gregory27c67502011-05-02 16:19:46 -0500527static const struct i2c_device_id tps65910_i2c_id[] = {
Jorge Eduardo Candelaria79557052011-05-16 18:34:59 -0500528 { "tps65910", TPS65910 },
529 { "tps65911", TPS65911 },
Graeme Gregory27c67502011-05-02 16:19:46 -0500530 { }
531};
Graeme Gregory27c67502011-05-02 16:19:46 -0500532
533static struct i2c_driver tps65910_i2c_driver = {
534 .driver = {
535 .name = "tps65910",
Rhyland Kleincd4209c2012-05-11 11:36:26 +0200536 .of_match_table = of_match_ptr(tps65910_of_match),
Graeme Gregory27c67502011-05-02 16:19:46 -0500537 },
538 .probe = tps65910_i2c_probe,
Graeme Gregory27c67502011-05-02 16:19:46 -0500539 .id_table = tps65910_i2c_id,
540};
541
542static int __init tps65910_i2c_init(void)
543{
544 return i2c_add_driver(&tps65910_i2c_driver);
545}
546/* init early so consumer devices can complete system boot */
547subsys_initcall(tps65910_i2c_init);