2 * tps65910.c -- TI TPS6591x
4 * Copyright 2010 Texas Instruments Inc.
6 * Author: Graeme Gregory <gg@slimlogic.co.uk>
7 * Author: Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/init.h>
19 #include <linux/err.h>
20 #include <linux/slab.h>
21 #include <linux/i2c.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/irqdomain.h>
25 #include <linux/mfd/core.h>
26 #include <linux/regmap.h>
27 #include <linux/mfd/tps65910.h>
28 #include <linux/of_device.h>
30 static struct resource rtc_resources
[] = {
32 .start
= TPS65910_IRQ_RTC_ALARM
,
33 .end
= TPS65910_IRQ_RTC_ALARM
,
34 .flags
= IORESOURCE_IRQ
,
38 static struct mfd_cell tps65910s
[] = {
40 .name
= "tps65910-gpio",
43 .name
= "tps65910-pmic",
46 .name
= "tps65910-rtc",
47 .num_resources
= ARRAY_SIZE(rtc_resources
),
48 .resources
= &rtc_resources
[0],
51 .name
= "tps65910-power",
56 static const struct regmap_irq tps65911_irqs
[] = {
58 [TPS65911_IRQ_PWRHOLD_F
] = {
59 .mask
= INT_MSK_PWRHOLD_F_IT_MSK_MASK
,
62 [TPS65911_IRQ_VBAT_VMHI
] = {
63 .mask
= INT_MSK_VMBHI_IT_MSK_MASK
,
66 [TPS65911_IRQ_PWRON
] = {
67 .mask
= INT_MSK_PWRON_IT_MSK_MASK
,
70 [TPS65911_IRQ_PWRON_LP
] = {
71 .mask
= INT_MSK_PWRON_LP_IT_MSK_MASK
,
74 [TPS65911_IRQ_PWRHOLD_R
] = {
75 .mask
= INT_MSK_PWRHOLD_R_IT_MSK_MASK
,
78 [TPS65911_IRQ_HOTDIE
] = {
79 .mask
= INT_MSK_HOTDIE_IT_MSK_MASK
,
82 [TPS65911_IRQ_RTC_ALARM
] = {
83 .mask
= INT_MSK_RTC_ALARM_IT_MSK_MASK
,
86 [TPS65911_IRQ_RTC_PERIOD
] = {
87 .mask
= INT_MSK_RTC_PERIOD_IT_MSK_MASK
,
92 [TPS65911_IRQ_GPIO0_R
] = {
93 .mask
= INT_MSK2_GPIO0_R_IT_MSK_MASK
,
96 [TPS65911_IRQ_GPIO0_F
] = {
97 .mask
= INT_MSK2_GPIO0_F_IT_MSK_MASK
,
100 [TPS65911_IRQ_GPIO1_R
] = {
101 .mask
= INT_MSK2_GPIO1_R_IT_MSK_MASK
,
104 [TPS65911_IRQ_GPIO1_F
] = {
105 .mask
= INT_MSK2_GPIO1_F_IT_MSK_MASK
,
108 [TPS65911_IRQ_GPIO2_R
] = {
109 .mask
= INT_MSK2_GPIO2_R_IT_MSK_MASK
,
112 [TPS65911_IRQ_GPIO2_F
] = {
113 .mask
= INT_MSK2_GPIO2_F_IT_MSK_MASK
,
116 [TPS65911_IRQ_GPIO3_R
] = {
117 .mask
= INT_MSK2_GPIO3_R_IT_MSK_MASK
,
120 [TPS65911_IRQ_GPIO3_F
] = {
121 .mask
= INT_MSK2_GPIO3_F_IT_MSK_MASK
,
126 [TPS65911_IRQ_GPIO4_R
] = {
127 .mask
= INT_MSK3_GPIO4_R_IT_MSK_MASK
,
130 [TPS65911_IRQ_GPIO4_F
] = {
131 .mask
= INT_MSK3_GPIO4_F_IT_MSK_MASK
,
134 [TPS65911_IRQ_GPIO5_R
] = {
135 .mask
= INT_MSK3_GPIO5_R_IT_MSK_MASK
,
138 [TPS65911_IRQ_GPIO5_F
] = {
139 .mask
= INT_MSK3_GPIO5_F_IT_MSK_MASK
,
142 [TPS65911_IRQ_WTCHDG
] = {
143 .mask
= INT_MSK3_WTCHDG_IT_MSK_MASK
,
146 [TPS65911_IRQ_VMBCH2_H
] = {
147 .mask
= INT_MSK3_VMBCH2_H_IT_MSK_MASK
,
150 [TPS65911_IRQ_VMBCH2_L
] = {
151 .mask
= INT_MSK3_VMBCH2_L_IT_MSK_MASK
,
154 [TPS65911_IRQ_PWRDN
] = {
155 .mask
= INT_MSK3_PWRDN_IT_MSK_MASK
,
160 static const struct regmap_irq tps65910_irqs
[] = {
162 [TPS65910_IRQ_VBAT_VMBDCH
] = {
163 .mask
= TPS65910_INT_MSK_VMBDCH_IT_MSK_MASK
,
166 [TPS65910_IRQ_VBAT_VMHI
] = {
167 .mask
= TPS65910_INT_MSK_VMBHI_IT_MSK_MASK
,
170 [TPS65910_IRQ_PWRON
] = {
171 .mask
= TPS65910_INT_MSK_PWRON_IT_MSK_MASK
,
174 [TPS65910_IRQ_PWRON_LP
] = {
175 .mask
= TPS65910_INT_MSK_PWRON_LP_IT_MSK_MASK
,
178 [TPS65910_IRQ_PWRHOLD
] = {
179 .mask
= TPS65910_INT_MSK_PWRHOLD_IT_MSK_MASK
,
182 [TPS65910_IRQ_HOTDIE
] = {
183 .mask
= TPS65910_INT_MSK_HOTDIE_IT_MSK_MASK
,
186 [TPS65910_IRQ_RTC_ALARM
] = {
187 .mask
= TPS65910_INT_MSK_RTC_ALARM_IT_MSK_MASK
,
190 [TPS65910_IRQ_RTC_PERIOD
] = {
191 .mask
= TPS65910_INT_MSK_RTC_PERIOD_IT_MSK_MASK
,
196 [TPS65910_IRQ_GPIO_R
] = {
197 .mask
= TPS65910_INT_MSK2_GPIO0_F_IT_MSK_MASK
,
200 [TPS65910_IRQ_GPIO_F
] = {
201 .mask
= TPS65910_INT_MSK2_GPIO0_R_IT_MSK_MASK
,
206 static struct regmap_irq_chip tps65911_irq_chip
= {
208 .irqs
= tps65911_irqs
,
209 .num_irqs
= ARRAY_SIZE(tps65911_irqs
),
212 .status_base
= TPS65910_INT_STS
,
213 .mask_base
= TPS65910_INT_MSK
,
214 .ack_base
= TPS65910_INT_STS
,
217 static struct regmap_irq_chip tps65910_irq_chip
= {
219 .irqs
= tps65910_irqs
,
220 .num_irqs
= ARRAY_SIZE(tps65910_irqs
),
223 .status_base
= TPS65910_INT_STS
,
224 .mask_base
= TPS65910_INT_MSK
,
225 .ack_base
= TPS65910_INT_STS
,
228 static int tps65910_irq_init(struct tps65910
*tps65910
, int irq
,
229 struct tps65910_platform_data
*pdata
)
232 static struct regmap_irq_chip
*tps6591x_irqs_chip
;
235 dev_warn(tps65910
->dev
, "No interrupt support, no core IRQ\n");
240 dev_warn(tps65910
->dev
, "No interrupt support, no pdata\n");
244 switch (tps65910_chip_id(tps65910
)) {
246 tps6591x_irqs_chip
= &tps65910_irq_chip
;
249 tps6591x_irqs_chip
= &tps65911_irq_chip
;
253 tps65910
->chip_irq
= irq
;
254 ret
= regmap_add_irq_chip(tps65910
->regmap
, tps65910
->chip_irq
,
255 IRQF_ONESHOT
, pdata
->irq_base
,
256 tps6591x_irqs_chip
, &tps65910
->irq_data
);
258 dev_warn(tps65910
->dev
, "Failed to add irq_chip %d\n", ret
);
262 static int tps65910_irq_exit(struct tps65910
*tps65910
)
264 if (tps65910
->chip_irq
> 0)
265 regmap_del_irq_chip(tps65910
->chip_irq
, tps65910
->irq_data
);
269 static bool is_volatile_reg(struct device
*dev
, unsigned int reg
)
271 struct tps65910
*tps65910
= dev_get_drvdata(dev
);
274 * Caching all regulator registers.
275 * All regualator register address range is same for
276 * TPS65910 and TPS65911
278 if ((reg
>= TPS65910_VIO
) && (reg
<= TPS65910_VDAC
)) {
279 /* Check for non-existing register */
280 if (tps65910_chip_id(tps65910
) == TPS65910
)
281 if ((reg
== TPS65911_VDDCTRL_OP
) ||
282 (reg
== TPS65911_VDDCTRL_SR
))
289 static const struct regmap_config tps65910_regmap_config
= {
292 .volatile_reg
= is_volatile_reg
,
293 .max_register
= TPS65910_MAX_REGISTER
- 1,
294 .cache_type
= REGCACHE_RBTREE
,
297 static int tps65910_ck32k_init(struct tps65910
*tps65910
,
298 struct tps65910_board
*pmic_pdata
)
302 if (!pmic_pdata
->en_ck32k_xtal
)
305 ret
= tps65910_reg_clear_bits(tps65910
, TPS65910_DEVCTRL
,
306 DEVCTRL_CK32K_CTRL_MASK
);
308 dev_err(tps65910
->dev
, "clear ck32k_ctrl failed: %d\n", ret
);
315 static int tps65910_sleepinit(struct tps65910
*tps65910
,
316 struct tps65910_board
*pmic_pdata
)
318 struct device
*dev
= NULL
;
323 if (!pmic_pdata
->en_dev_slp
)
326 /* enabling SLEEP device state */
327 ret
= tps65910_reg_set_bits(tps65910
, TPS65910_DEVCTRL
,
328 DEVCTRL_DEV_SLP_MASK
);
330 dev_err(dev
, "set dev_slp failed: %d\n", ret
);
334 /* Return if there is no sleep keepon data. */
335 if (!pmic_pdata
->slp_keepon
)
338 if (pmic_pdata
->slp_keepon
->therm_keepon
) {
339 ret
= tps65910_reg_set_bits(tps65910
,
340 TPS65910_SLEEP_KEEP_RES_ON
,
341 SLEEP_KEEP_RES_ON_THERM_KEEPON_MASK
);
343 dev_err(dev
, "set therm_keepon failed: %d\n", ret
);
344 goto disable_dev_slp
;
348 if (pmic_pdata
->slp_keepon
->clkout32k_keepon
) {
349 ret
= tps65910_reg_set_bits(tps65910
,
350 TPS65910_SLEEP_KEEP_RES_ON
,
351 SLEEP_KEEP_RES_ON_CLKOUT32K_KEEPON_MASK
);
353 dev_err(dev
, "set clkout32k_keepon failed: %d\n", ret
);
354 goto disable_dev_slp
;
358 if (pmic_pdata
->slp_keepon
->i2chs_keepon
) {
359 ret
= tps65910_reg_set_bits(tps65910
,
360 TPS65910_SLEEP_KEEP_RES_ON
,
361 SLEEP_KEEP_RES_ON_I2CHS_KEEPON_MASK
);
363 dev_err(dev
, "set i2chs_keepon failed: %d\n", ret
);
364 goto disable_dev_slp
;
371 tps65910_reg_clear_bits(tps65910
, TPS65910_DEVCTRL
,
372 DEVCTRL_DEV_SLP_MASK
);
379 static struct of_device_id tps65910_of_match
[] = {
380 { .compatible
= "ti,tps65910", .data
= (void *)TPS65910
},
381 { .compatible
= "ti,tps65911", .data
= (void *)TPS65911
},
384 MODULE_DEVICE_TABLE(of
, tps65910_of_match
);
386 static struct tps65910_board
*tps65910_parse_dt(struct i2c_client
*client
,
389 struct device_node
*np
= client
->dev
.of_node
;
390 struct tps65910_board
*board_info
;
392 const struct of_device_id
*match
;
395 match
= of_match_device(tps65910_of_match
, &client
->dev
);
397 dev_err(&client
->dev
, "Failed to find matching dt id\n");
401 *chip_id
= (int)match
->data
;
403 board_info
= devm_kzalloc(&client
->dev
, sizeof(*board_info
),
406 dev_err(&client
->dev
, "Failed to allocate pdata\n");
410 ret
= of_property_read_u32(np
, "ti,vmbch-threshold", &prop
);
412 board_info
->vmbch_threshold
= prop
;
413 else if (*chip_id
== TPS65911
)
414 dev_warn(&client
->dev
, "VMBCH-Threshold not specified");
416 ret
= of_property_read_u32(np
, "ti,vmbch2-threshold", &prop
);
418 board_info
->vmbch2_threshold
= prop
;
419 else if (*chip_id
== TPS65911
)
420 dev_warn(&client
->dev
, "VMBCH2-Threshold not specified");
422 prop
= of_property_read_bool(np
, "ti,en-ck32k-xtal");
423 board_info
->en_ck32k_xtal
= prop
;
425 board_info
->irq
= client
->irq
;
426 board_info
->irq_base
= -1;
427 board_info
->pm_off
= of_property_read_bool(np
,
428 "ti,system-power-controller");
434 struct tps65910_board
*tps65910_parse_dt(struct i2c_client
*client
,
441 static struct i2c_client
*tps65910_i2c_client
;
442 static void tps65910_power_off(void)
444 struct tps65910
*tps65910
;
446 tps65910
= dev_get_drvdata(&tps65910_i2c_client
->dev
);
448 if (tps65910_reg_set_bits(tps65910
, TPS65910_DEVCTRL
,
449 DEVCTRL_PWR_OFF_MASK
) < 0)
452 tps65910_reg_clear_bits(tps65910
, TPS65910_DEVCTRL
,
453 DEVCTRL_DEV_ON_MASK
);
456 static int tps65910_i2c_probe(struct i2c_client
*i2c
,
457 const struct i2c_device_id
*id
)
459 struct tps65910
*tps65910
;
460 struct tps65910_board
*pmic_plat_data
;
461 struct tps65910_board
*of_pmic_plat_data
= NULL
;
462 struct tps65910_platform_data
*init_data
;
464 int chip_id
= id
->driver_data
;
466 pmic_plat_data
= dev_get_platdata(&i2c
->dev
);
468 if (!pmic_plat_data
&& i2c
->dev
.of_node
) {
469 pmic_plat_data
= tps65910_parse_dt(i2c
, &chip_id
);
470 of_pmic_plat_data
= pmic_plat_data
;
476 init_data
= devm_kzalloc(&i2c
->dev
, sizeof(*init_data
), GFP_KERNEL
);
477 if (init_data
== NULL
)
480 tps65910
= devm_kzalloc(&i2c
->dev
, sizeof(*tps65910
), GFP_KERNEL
);
481 if (tps65910
== NULL
)
484 tps65910
->of_plat_data
= of_pmic_plat_data
;
485 i2c_set_clientdata(i2c
, tps65910
);
486 tps65910
->dev
= &i2c
->dev
;
487 tps65910
->i2c_client
= i2c
;
488 tps65910
->id
= chip_id
;
490 tps65910
->regmap
= devm_regmap_init_i2c(i2c
, &tps65910_regmap_config
);
491 if (IS_ERR(tps65910
->regmap
)) {
492 ret
= PTR_ERR(tps65910
->regmap
);
493 dev_err(&i2c
->dev
, "regmap initialization failed: %d\n", ret
);
497 init_data
->irq
= pmic_plat_data
->irq
;
498 init_data
->irq_base
= pmic_plat_data
->irq_base
;
500 tps65910_irq_init(tps65910
, init_data
->irq
, init_data
);
501 tps65910_ck32k_init(tps65910
, pmic_plat_data
);
502 tps65910_sleepinit(tps65910
, pmic_plat_data
);
504 if (pmic_plat_data
->pm_off
&& !pm_power_off
) {
505 tps65910_i2c_client
= i2c
;
506 pm_power_off
= tps65910_power_off
;
509 ret
= mfd_add_devices(tps65910
->dev
, -1,
510 tps65910s
, ARRAY_SIZE(tps65910s
),
512 regmap_irq_get_domain(tps65910
->irq_data
));
514 dev_err(&i2c
->dev
, "mfd_add_devices failed: %d\n", ret
);
521 static int tps65910_i2c_remove(struct i2c_client
*i2c
)
523 struct tps65910
*tps65910
= i2c_get_clientdata(i2c
);
525 tps65910_irq_exit(tps65910
);
526 mfd_remove_devices(tps65910
->dev
);
531 static const struct i2c_device_id tps65910_i2c_id
[] = {
532 { "tps65910", TPS65910
},
533 { "tps65911", TPS65911
},
536 MODULE_DEVICE_TABLE(i2c
, tps65910_i2c_id
);
539 static struct i2c_driver tps65910_i2c_driver
= {
542 .owner
= THIS_MODULE
,
543 .of_match_table
= of_match_ptr(tps65910_of_match
),
545 .probe
= tps65910_i2c_probe
,
546 .remove
= tps65910_i2c_remove
,
547 .id_table
= tps65910_i2c_id
,
550 static int __init
tps65910_i2c_init(void)
552 return i2c_add_driver(&tps65910_i2c_driver
);
554 /* init early so consumer devices can complete system boot */
555 subsys_initcall(tps65910_i2c_init
);
557 static void __exit
tps65910_i2c_exit(void)
559 i2c_del_driver(&tps65910_i2c_driver
);
561 module_exit(tps65910_i2c_exit
);
563 MODULE_AUTHOR("Graeme Gregory <gg@slimlogic.co.uk>");
564 MODULE_AUTHOR("Jorge Eduardo Candelaria <jedu@slimlogic.co.uk>");
565 MODULE_DESCRIPTION("TPS6591x chip family multi-function driver");
566 MODULE_LICENSE("GPL");