1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * AXP20X and AXP22X PMICs' ACIN power supply driver
5 * Copyright (C) 2016 Free Electrons
6 * Quentin Schulz <quentin.schulz@free-electrons.com>
9 #include <linux/device.h>
10 #include <linux/init.h>
11 #include <linux/interrupt.h>
12 #include <linux/kernel.h>
13 #include <linux/mfd/axp20x.h>
14 #include <linux/module.h>
16 #include <linux/of_device.h>
17 #include <linux/platform_device.h>
19 #include <linux/power_supply.h>
20 #include <linux/regmap.h>
21 #include <linux/slab.h>
22 #include <linux/iio/consumer.h>
24 #define AXP20X_PWR_STATUS_ACIN_PRESENT BIT(7)
25 #define AXP20X_PWR_STATUS_ACIN_AVAIL BIT(6)
27 #define AXP813_ACIN_PATH_SEL BIT(7)
28 #define AXP813_ACIN_PATH_SEL_TO_BIT(x) (!!(x) << 7)
30 #define AXP813_VHOLD_MASK GENMASK(5, 3)
31 #define AXP813_VHOLD_UV_TO_BIT(x) ((((x) / 100000) - 40) << 3)
32 #define AXP813_VHOLD_REG_TO_UV(x) \
33 (((((x) & AXP813_VHOLD_MASK) >> 3) + 40) * 100000)
35 #define AXP813_CURR_LIMIT_MASK GENMASK(2, 0)
36 #define AXP813_CURR_LIMIT_UA_TO_BIT(x) (((x) / 500000) - 3)
37 #define AXP813_CURR_LIMIT_REG_TO_UA(x) \
38 ((((x) & AXP813_CURR_LIMIT_MASK) + 3) * 500000)
40 #define DRVNAME "axp20x-ac-power-supply"
42 struct axp20x_ac_power
{
43 struct regmap
*regmap
;
44 struct power_supply
*supply
;
45 struct iio_channel
*acin_v
;
46 struct iio_channel
*acin_i
;
47 bool has_acin_path_sel
;
48 unsigned int num_irqs
;
52 static irqreturn_t
axp20x_ac_power_irq(int irq
, void *devid
)
54 struct axp20x_ac_power
*power
= devid
;
56 power_supply_changed(power
->supply
);
61 static int axp20x_ac_power_get_property(struct power_supply
*psy
,
62 enum power_supply_property psp
,
63 union power_supply_propval
*val
)
65 struct axp20x_ac_power
*power
= power_supply_get_drvdata(psy
);
69 case POWER_SUPPLY_PROP_HEALTH
:
70 ret
= regmap_read(power
->regmap
, AXP20X_PWR_INPUT_STATUS
, ®
);
74 if (reg
& AXP20X_PWR_STATUS_ACIN_PRESENT
) {
75 val
->intval
= POWER_SUPPLY_HEALTH_GOOD
;
79 val
->intval
= POWER_SUPPLY_HEALTH_UNKNOWN
;
82 case POWER_SUPPLY_PROP_PRESENT
:
83 ret
= regmap_read(power
->regmap
, AXP20X_PWR_INPUT_STATUS
, ®
);
87 val
->intval
= !!(reg
& AXP20X_PWR_STATUS_ACIN_PRESENT
);
90 case POWER_SUPPLY_PROP_ONLINE
:
91 ret
= regmap_read(power
->regmap
, AXP20X_PWR_INPUT_STATUS
, ®
);
95 val
->intval
= !!(reg
& AXP20X_PWR_STATUS_ACIN_AVAIL
);
97 /* ACIN_PATH_SEL disables ACIN even if ACIN_AVAIL is set. */
98 if (val
->intval
&& power
->has_acin_path_sel
) {
99 ret
= regmap_read(power
->regmap
, AXP813_ACIN_PATH_CTRL
,
104 val
->intval
= !!(reg
& AXP813_ACIN_PATH_SEL
);
109 case POWER_SUPPLY_PROP_VOLTAGE_NOW
:
110 ret
= iio_read_channel_processed(power
->acin_v
, &val
->intval
);
114 /* IIO framework gives mV but Power Supply framework gives uV */
119 case POWER_SUPPLY_PROP_CURRENT_NOW
:
120 ret
= iio_read_channel_processed(power
->acin_i
, &val
->intval
);
124 /* IIO framework gives mA but Power Supply framework gives uA */
129 case POWER_SUPPLY_PROP_VOLTAGE_MIN
:
130 ret
= regmap_read(power
->regmap
, AXP813_ACIN_PATH_CTRL
, ®
);
134 val
->intval
= AXP813_VHOLD_REG_TO_UV(reg
);
138 case POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT
:
139 ret
= regmap_read(power
->regmap
, AXP813_ACIN_PATH_CTRL
, ®
);
143 val
->intval
= AXP813_CURR_LIMIT_REG_TO_UA(reg
);
144 /* AXP813 datasheet defines values 11x as 4000mA */
145 if (val
->intval
> 4000000)
146 val
->intval
= 4000000;
157 static int axp813_ac_power_set_property(struct power_supply
*psy
,
158 enum power_supply_property psp
,
159 const union power_supply_propval
*val
)
161 struct axp20x_ac_power
*power
= power_supply_get_drvdata(psy
);
164 case POWER_SUPPLY_PROP_ONLINE
:
165 return regmap_update_bits(power
->regmap
, AXP813_ACIN_PATH_CTRL
,
166 AXP813_ACIN_PATH_SEL
,
167 AXP813_ACIN_PATH_SEL_TO_BIT(val
->intval
));
169 case POWER_SUPPLY_PROP_VOLTAGE_MIN
:
170 if (val
->intval
< 4000000 || val
->intval
> 4700000)
173 return regmap_update_bits(power
->regmap
, AXP813_ACIN_PATH_CTRL
,
175 AXP813_VHOLD_UV_TO_BIT(val
->intval
));
177 case POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT
:
178 if (val
->intval
< 1500000 || val
->intval
> 4000000)
181 return regmap_update_bits(power
->regmap
, AXP813_ACIN_PATH_CTRL
,
182 AXP813_CURR_LIMIT_MASK
,
183 AXP813_CURR_LIMIT_UA_TO_BIT(val
->intval
));
192 static int axp813_ac_power_prop_writeable(struct power_supply
*psy
,
193 enum power_supply_property psp
)
195 return psp
== POWER_SUPPLY_PROP_ONLINE
||
196 psp
== POWER_SUPPLY_PROP_VOLTAGE_MIN
||
197 psp
== POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT
;
200 static enum power_supply_property axp20x_ac_power_properties
[] = {
201 POWER_SUPPLY_PROP_HEALTH
,
202 POWER_SUPPLY_PROP_PRESENT
,
203 POWER_SUPPLY_PROP_ONLINE
,
204 POWER_SUPPLY_PROP_VOLTAGE_NOW
,
205 POWER_SUPPLY_PROP_CURRENT_NOW
,
208 static enum power_supply_property axp22x_ac_power_properties
[] = {
209 POWER_SUPPLY_PROP_HEALTH
,
210 POWER_SUPPLY_PROP_PRESENT
,
211 POWER_SUPPLY_PROP_ONLINE
,
214 static enum power_supply_property axp813_ac_power_properties
[] = {
215 POWER_SUPPLY_PROP_HEALTH
,
216 POWER_SUPPLY_PROP_PRESENT
,
217 POWER_SUPPLY_PROP_ONLINE
,
218 POWER_SUPPLY_PROP_VOLTAGE_MIN
,
219 POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT
,
222 static const struct power_supply_desc axp20x_ac_power_desc
= {
224 .type
= POWER_SUPPLY_TYPE_MAINS
,
225 .properties
= axp20x_ac_power_properties
,
226 .num_properties
= ARRAY_SIZE(axp20x_ac_power_properties
),
227 .get_property
= axp20x_ac_power_get_property
,
230 static const struct power_supply_desc axp22x_ac_power_desc
= {
232 .type
= POWER_SUPPLY_TYPE_MAINS
,
233 .properties
= axp22x_ac_power_properties
,
234 .num_properties
= ARRAY_SIZE(axp22x_ac_power_properties
),
235 .get_property
= axp20x_ac_power_get_property
,
238 static const struct power_supply_desc axp813_ac_power_desc
= {
240 .type
= POWER_SUPPLY_TYPE_MAINS
,
241 .properties
= axp813_ac_power_properties
,
242 .num_properties
= ARRAY_SIZE(axp813_ac_power_properties
),
243 .property_is_writeable
= axp813_ac_power_prop_writeable
,
244 .get_property
= axp20x_ac_power_get_property
,
245 .set_property
= axp813_ac_power_set_property
,
248 static const char * const axp20x_irq_names
[] = {
254 const struct power_supply_desc
*power_desc
;
255 const char * const *irq_names
;
256 unsigned int num_irq_names
;
261 static const struct axp_data axp20x_data
= {
262 .power_desc
= &axp20x_ac_power_desc
,
263 .irq_names
= axp20x_irq_names
,
264 .num_irq_names
= ARRAY_SIZE(axp20x_irq_names
),
266 .acin_path_sel
= false,
269 static const struct axp_data axp22x_data
= {
270 .power_desc
= &axp22x_ac_power_desc
,
271 .irq_names
= axp20x_irq_names
,
272 .num_irq_names
= ARRAY_SIZE(axp20x_irq_names
),
274 .acin_path_sel
= false,
277 static const struct axp_data axp813_data
= {
278 .power_desc
= &axp813_ac_power_desc
,
279 .irq_names
= axp20x_irq_names
,
280 .num_irq_names
= ARRAY_SIZE(axp20x_irq_names
),
282 .acin_path_sel
= true,
285 #ifdef CONFIG_PM_SLEEP
286 static int axp20x_ac_power_suspend(struct device
*dev
)
288 struct axp20x_ac_power
*power
= dev_get_drvdata(dev
);
292 * Allow wake via ACIN_PLUGIN only.
294 * As nested threaded IRQs are not automatically disabled during
295 * suspend, we must explicitly disable the remainder of the IRQs.
297 if (device_may_wakeup(&power
->supply
->dev
))
298 enable_irq_wake(power
->irqs
[i
++]);
299 while (i
< power
->num_irqs
)
300 disable_irq(power
->irqs
[i
++]);
305 static int axp20x_ac_power_resume(struct device
*dev
)
307 struct axp20x_ac_power
*power
= dev_get_drvdata(dev
);
310 if (device_may_wakeup(&power
->supply
->dev
))
311 disable_irq_wake(power
->irqs
[i
++]);
312 while (i
< power
->num_irqs
)
313 enable_irq(power
->irqs
[i
++]);
319 static SIMPLE_DEV_PM_OPS(axp20x_ac_power_pm_ops
, axp20x_ac_power_suspend
,
320 axp20x_ac_power_resume
);
322 static int axp20x_ac_power_probe(struct platform_device
*pdev
)
324 struct axp20x_dev
*axp20x
= dev_get_drvdata(pdev
->dev
.parent
);
325 struct power_supply_config psy_cfg
= {};
326 struct axp20x_ac_power
*power
;
327 const struct axp_data
*axp_data
;
330 if (!of_device_is_available(pdev
->dev
.of_node
))
334 dev_err(&pdev
->dev
, "Parent drvdata not set\n");
338 axp_data
= of_device_get_match_data(&pdev
->dev
);
340 power
= devm_kzalloc(&pdev
->dev
,
341 struct_size(power
, irqs
, axp_data
->num_irq_names
),
346 if (axp_data
->acin_adc
) {
347 power
->acin_v
= devm_iio_channel_get(&pdev
->dev
, "acin_v");
348 if (IS_ERR(power
->acin_v
)) {
349 if (PTR_ERR(power
->acin_v
) == -ENODEV
)
350 return -EPROBE_DEFER
;
351 return PTR_ERR(power
->acin_v
);
354 power
->acin_i
= devm_iio_channel_get(&pdev
->dev
, "acin_i");
355 if (IS_ERR(power
->acin_i
)) {
356 if (PTR_ERR(power
->acin_i
) == -ENODEV
)
357 return -EPROBE_DEFER
;
358 return PTR_ERR(power
->acin_i
);
362 power
->regmap
= dev_get_regmap(pdev
->dev
.parent
, NULL
);
363 power
->has_acin_path_sel
= axp_data
->acin_path_sel
;
364 power
->num_irqs
= axp_data
->num_irq_names
;
366 platform_set_drvdata(pdev
, power
);
368 psy_cfg
.of_node
= pdev
->dev
.of_node
;
369 psy_cfg
.drv_data
= power
;
371 power
->supply
= devm_power_supply_register(&pdev
->dev
,
372 axp_data
->power_desc
,
374 if (IS_ERR(power
->supply
))
375 return PTR_ERR(power
->supply
);
377 /* Request irqs after registering, as irqs may trigger immediately */
378 for (i
= 0; i
< axp_data
->num_irq_names
; i
++) {
379 irq
= platform_get_irq_byname(pdev
, axp_data
->irq_names
[i
]);
381 dev_err(&pdev
->dev
, "No IRQ for %s: %d\n",
382 axp_data
->irq_names
[i
], irq
);
385 power
->irqs
[i
] = regmap_irq_get_virq(axp20x
->regmap_irqc
, irq
);
386 ret
= devm_request_any_context_irq(&pdev
->dev
, power
->irqs
[i
],
387 axp20x_ac_power_irq
, 0,
390 dev_err(&pdev
->dev
, "Error requesting %s IRQ: %d\n",
391 axp_data
->irq_names
[i
], ret
);
399 static const struct of_device_id axp20x_ac_power_match
[] = {
401 .compatible
= "x-powers,axp202-ac-power-supply",
402 .data
= &axp20x_data
,
404 .compatible
= "x-powers,axp221-ac-power-supply",
405 .data
= &axp22x_data
,
407 .compatible
= "x-powers,axp813-ac-power-supply",
408 .data
= &axp813_data
,
409 }, { /* sentinel */ }
411 MODULE_DEVICE_TABLE(of
, axp20x_ac_power_match
);
413 static struct platform_driver axp20x_ac_power_driver
= {
414 .probe
= axp20x_ac_power_probe
,
417 .of_match_table
= axp20x_ac_power_match
,
418 .pm
= &axp20x_ac_power_pm_ops
,
422 module_platform_driver(axp20x_ac_power_driver
);
424 MODULE_AUTHOR("Quentin Schulz <quentin.schulz@free-electrons.com>");
425 MODULE_DESCRIPTION("AXP20X and AXP22X PMICs' AC power supply driver");
426 MODULE_LICENSE("GPL");