xref: /openbmc/linux/drivers/power/supply/generic-adc-battery.c (revision 1ac731c529cd4d6adbce134754b51ff7d822b145)
1ca0f6e0dSSebastian Reichel // SPDX-License-Identifier: GPL-2.0
28c0984e5SSebastian Reichel /*
3ca0f6e0dSSebastian Reichel  * Generic battery driver using IIO
48c0984e5SSebastian Reichel  * Copyright (C) 2012, Anish Kumar <anish198519851985@gmail.com>
5ca0f6e0dSSebastian Reichel  * Copyright (c) 2023, Sebastian Reichel <sre@kernel.org>
68c0984e5SSebastian Reichel  */
78c0984e5SSebastian Reichel #include <linux/interrupt.h>
88c0984e5SSebastian Reichel #include <linux/platform_device.h>
98c0984e5SSebastian Reichel #include <linux/power_supply.h>
10b0327ffbSLinus Walleij #include <linux/gpio/consumer.h>
118c0984e5SSebastian Reichel #include <linux/err.h>
128c0984e5SSebastian Reichel #include <linux/timer.h>
138c0984e5SSebastian Reichel #include <linux/jiffies.h>
148c0984e5SSebastian Reichel #include <linux/errno.h>
158c0984e5SSebastian Reichel #include <linux/init.h>
168c0984e5SSebastian Reichel #include <linux/module.h>
178c0984e5SSebastian Reichel #include <linux/slab.h>
188c0984e5SSebastian Reichel #include <linux/iio/consumer.h>
198c0984e5SSebastian Reichel #include <linux/iio/types.h>
20165663adSSebastian Reichel #include <linux/of.h>
2193297ef6SSebastian Reichel #include <linux/devm-helpers.h>
228c0984e5SSebastian Reichel 
238c0984e5SSebastian Reichel #define JITTER_DEFAULT 10 /* hope 10ms is enough */
248c0984e5SSebastian Reichel 
258c0984e5SSebastian Reichel enum gab_chan_type {
268c0984e5SSebastian Reichel 	GAB_VOLTAGE = 0,
278c0984e5SSebastian Reichel 	GAB_CURRENT,
288c0984e5SSebastian Reichel 	GAB_POWER,
2933088c05SSebastian Reichel 	GAB_TEMP,
308c0984e5SSebastian Reichel 	GAB_MAX_CHAN_TYPE
318c0984e5SSebastian Reichel };
328c0984e5SSebastian Reichel 
338c0984e5SSebastian Reichel /*
348c0984e5SSebastian Reichel  * gab_chan_name suggests the standard channel names for commonly used
358c0984e5SSebastian Reichel  * channel types.
368c0984e5SSebastian Reichel  */
378c0984e5SSebastian Reichel static const char *const gab_chan_name[] = {
388c0984e5SSebastian Reichel 	[GAB_VOLTAGE]	= "voltage",
398c0984e5SSebastian Reichel 	[GAB_CURRENT]	= "current",
408c0984e5SSebastian Reichel 	[GAB_POWER]	= "power",
4133088c05SSebastian Reichel 	[GAB_TEMP]	= "temperature",
428c0984e5SSebastian Reichel };
438c0984e5SSebastian Reichel 
448c0984e5SSebastian Reichel struct gab {
458c0984e5SSebastian Reichel 	struct power_supply *psy;
468c0984e5SSebastian Reichel 	struct power_supply_desc psy_desc;
478c0984e5SSebastian Reichel 	struct iio_channel *channel[GAB_MAX_CHAN_TYPE];
488c0984e5SSebastian Reichel 	struct delayed_work bat_work;
498c0984e5SSebastian Reichel 	int status;
50b0327ffbSLinus Walleij 	struct gpio_desc *charge_finished;
518c0984e5SSebastian Reichel };
528c0984e5SSebastian Reichel 
to_generic_bat(struct power_supply * psy)538c0984e5SSebastian Reichel static struct gab *to_generic_bat(struct power_supply *psy)
548c0984e5SSebastian Reichel {
558c0984e5SSebastian Reichel 	return power_supply_get_drvdata(psy);
568c0984e5SSebastian Reichel }
578c0984e5SSebastian Reichel 
gab_ext_power_changed(struct power_supply * psy)588c0984e5SSebastian Reichel static void gab_ext_power_changed(struct power_supply *psy)
598c0984e5SSebastian Reichel {
608c0984e5SSebastian Reichel 	struct gab *adc_bat = to_generic_bat(psy);
618c0984e5SSebastian Reichel 
628c0984e5SSebastian Reichel 	schedule_delayed_work(&adc_bat->bat_work, msecs_to_jiffies(0));
638c0984e5SSebastian Reichel }
648c0984e5SSebastian Reichel 
658c0984e5SSebastian Reichel static const enum power_supply_property gab_props[] = {
668c0984e5SSebastian Reichel 	POWER_SUPPLY_PROP_STATUS,
678c0984e5SSebastian Reichel };
688c0984e5SSebastian Reichel 
698c0984e5SSebastian Reichel /*
708c0984e5SSebastian Reichel  * This properties are set based on the received platform data and this
718c0984e5SSebastian Reichel  * should correspond one-to-one with enum chan_type.
728c0984e5SSebastian Reichel  */
738c0984e5SSebastian Reichel static const enum power_supply_property gab_dyn_props[] = {
748c0984e5SSebastian Reichel 	POWER_SUPPLY_PROP_VOLTAGE_NOW,
758c0984e5SSebastian Reichel 	POWER_SUPPLY_PROP_CURRENT_NOW,
768c0984e5SSebastian Reichel 	POWER_SUPPLY_PROP_POWER_NOW,
7733088c05SSebastian Reichel 	POWER_SUPPLY_PROP_TEMP,
788c0984e5SSebastian Reichel };
798c0984e5SSebastian Reichel 
gab_charge_finished(struct gab * adc_bat)808c0984e5SSebastian Reichel static bool gab_charge_finished(struct gab *adc_bat)
818c0984e5SSebastian Reichel {
82b0327ffbSLinus Walleij 	if (!adc_bat->charge_finished)
838c0984e5SSebastian Reichel 		return false;
84b0327ffbSLinus Walleij 	return gpiod_get_value(adc_bat->charge_finished);
858c0984e5SSebastian Reichel }
868c0984e5SSebastian Reichel 
gab_read_channel(struct gab * adc_bat,enum gab_chan_type channel,int * result)87*7cc7478eSSebastian Reichel static int gab_read_channel(struct gab *adc_bat, enum gab_chan_type channel,
888c0984e5SSebastian Reichel 		int *result)
898c0984e5SSebastian Reichel {
908c0984e5SSebastian Reichel 	int ret;
918c0984e5SSebastian Reichel 
929489d1bdSSebastian Reichel 	ret = iio_read_channel_processed(adc_bat->channel[channel], result);
938c0984e5SSebastian Reichel 	if (ret < 0)
944fc1befbSSebastian Reichel 		dev_err(&adc_bat->psy->dev, "read channel error: %d\n", ret);
9544263f50SSebastian Reichel 	else
9644263f50SSebastian Reichel 		*result *= 1000;
9744263f50SSebastian Reichel 
988c0984e5SSebastian Reichel 	return ret;
998c0984e5SSebastian Reichel }
1008c0984e5SSebastian Reichel 
gab_get_property(struct power_supply * psy,enum power_supply_property psp,union power_supply_propval * val)1018c0984e5SSebastian Reichel static int gab_get_property(struct power_supply *psy,
1028c0984e5SSebastian Reichel 		enum power_supply_property psp, union power_supply_propval *val)
1038c0984e5SSebastian Reichel {
1041b27bf79SSebastian Reichel 	struct gab *adc_bat = to_generic_bat(psy);
1058c0984e5SSebastian Reichel 
1068c0984e5SSebastian Reichel 	switch (psp) {
1078c0984e5SSebastian Reichel 	case POWER_SUPPLY_PROP_STATUS:
1081b27bf79SSebastian Reichel 		val->intval = adc_bat->status;
1091b27bf79SSebastian Reichel 		return 0;
1108c0984e5SSebastian Reichel 	case POWER_SUPPLY_PROP_VOLTAGE_NOW:
111*7cc7478eSSebastian Reichel 		return gab_read_channel(adc_bat, GAB_VOLTAGE, &val->intval);
1128c0984e5SSebastian Reichel 	case POWER_SUPPLY_PROP_CURRENT_NOW:
113*7cc7478eSSebastian Reichel 		return gab_read_channel(adc_bat, GAB_CURRENT, &val->intval);
1148c0984e5SSebastian Reichel 	case POWER_SUPPLY_PROP_POWER_NOW:
115*7cc7478eSSebastian Reichel 		return gab_read_channel(adc_bat, GAB_POWER, &val->intval);
11633088c05SSebastian Reichel 	case POWER_SUPPLY_PROP_TEMP:
117*7cc7478eSSebastian Reichel 		return gab_read_channel(adc_bat, GAB_TEMP, &val->intval);
1188c0984e5SSebastian Reichel 	default:
1198c0984e5SSebastian Reichel 		return -EINVAL;
1208c0984e5SSebastian Reichel 	}
1218c0984e5SSebastian Reichel }
1228c0984e5SSebastian Reichel 
gab_work(struct work_struct * work)1238c0984e5SSebastian Reichel static void gab_work(struct work_struct *work)
1248c0984e5SSebastian Reichel {
1258c0984e5SSebastian Reichel 	struct gab *adc_bat;
1268c0984e5SSebastian Reichel 	struct delayed_work *delayed_work;
1278c0984e5SSebastian Reichel 	int status;
1288c0984e5SSebastian Reichel 
1298c0984e5SSebastian Reichel 	delayed_work = to_delayed_work(work);
1308c0984e5SSebastian Reichel 	adc_bat = container_of(delayed_work, struct gab, bat_work);
1318c0984e5SSebastian Reichel 	status = adc_bat->status;
1328c0984e5SSebastian Reichel 
133*7cc7478eSSebastian Reichel 	if (!power_supply_am_i_supplied(adc_bat->psy))
1348c0984e5SSebastian Reichel 		adc_bat->status =  POWER_SUPPLY_STATUS_DISCHARGING;
1358c0984e5SSebastian Reichel 	else if (gab_charge_finished(adc_bat))
1368c0984e5SSebastian Reichel 		adc_bat->status = POWER_SUPPLY_STATUS_NOT_CHARGING;
1378c0984e5SSebastian Reichel 	else
1388c0984e5SSebastian Reichel 		adc_bat->status = POWER_SUPPLY_STATUS_CHARGING;
1398c0984e5SSebastian Reichel 
1408c0984e5SSebastian Reichel 	if (status != adc_bat->status)
1418c0984e5SSebastian Reichel 		power_supply_changed(adc_bat->psy);
1428c0984e5SSebastian Reichel }
1438c0984e5SSebastian Reichel 
gab_charged(int irq,void * dev_id)1448c0984e5SSebastian Reichel static irqreturn_t gab_charged(int irq, void *dev_id)
1458c0984e5SSebastian Reichel {
1468c0984e5SSebastian Reichel 	struct gab *adc_bat = dev_id;
1478c0984e5SSebastian Reichel 
1488c0984e5SSebastian Reichel 	schedule_delayed_work(&adc_bat->bat_work,
149c8f573f3SSebastian Reichel 			      msecs_to_jiffies(JITTER_DEFAULT));
150c8f573f3SSebastian Reichel 
1518c0984e5SSebastian Reichel 	return IRQ_HANDLED;
1528c0984e5SSebastian Reichel }
1538c0984e5SSebastian Reichel 
gab_probe(struct platform_device * pdev)1548c0984e5SSebastian Reichel static int gab_probe(struct platform_device *pdev)
1558c0984e5SSebastian Reichel {
1568c0984e5SSebastian Reichel 	struct gab *adc_bat;
1578c0984e5SSebastian Reichel 	struct power_supply_desc *psy_desc;
1588c0984e5SSebastian Reichel 	struct power_supply_config psy_cfg = {};
159191e6bcfSSebastian Reichel 	enum power_supply_property *properties;
1608c0984e5SSebastian Reichel 	int ret = 0;
1618c0984e5SSebastian Reichel 	int chan;
162932d4744SH. Nikolaus Schaller 	int index = ARRAY_SIZE(gab_props);
163a427503eSH. Nikolaus Schaller 	bool any = false;
1648c0984e5SSebastian Reichel 
1658c0984e5SSebastian Reichel 	adc_bat = devm_kzalloc(&pdev->dev, sizeof(*adc_bat), GFP_KERNEL);
1662f25b975SSebastian Reichel 	if (!adc_bat)
1678c0984e5SSebastian Reichel 		return -ENOMEM;
1688c0984e5SSebastian Reichel 
169165663adSSebastian Reichel 	psy_cfg.of_node = pdev->dev.of_node;
1708c0984e5SSebastian Reichel 	psy_cfg.drv_data = adc_bat;
1718c0984e5SSebastian Reichel 	psy_desc = &adc_bat->psy_desc;
1721b27bf79SSebastian Reichel 	psy_desc->name = dev_name(&pdev->dev);
1738c0984e5SSebastian Reichel 
1748c0984e5SSebastian Reichel 	/* bootup default values for the battery */
1758c0984e5SSebastian Reichel 	adc_bat->status = POWER_SUPPLY_STATUS_DISCHARGING;
1768c0984e5SSebastian Reichel 	psy_desc->type = POWER_SUPPLY_TYPE_BATTERY;
1778c0984e5SSebastian Reichel 	psy_desc->get_property = gab_get_property;
1788c0984e5SSebastian Reichel 	psy_desc->external_power_changed = gab_ext_power_changed;
1798c0984e5SSebastian Reichel 
1808c0984e5SSebastian Reichel 	/*
1818c0984e5SSebastian Reichel 	 * copying the static properties and allocating extra memory for holding
1828c0984e5SSebastian Reichel 	 * the extra configurable properties received from platform data.
1838c0984e5SSebastian Reichel 	 */
18493297ef6SSebastian Reichel 	properties = devm_kcalloc(&pdev->dev,
18593297ef6SSebastian Reichel 				  ARRAY_SIZE(gab_props) +
1868c0984e5SSebastian Reichel 				  ARRAY_SIZE(gab_chan_name),
187191e6bcfSSebastian Reichel 				  sizeof(*properties),
1888c0984e5SSebastian Reichel 				  GFP_KERNEL);
18993297ef6SSebastian Reichel 	if (!properties)
19093297ef6SSebastian Reichel 		return -ENOMEM;
1918c0984e5SSebastian Reichel 
192191e6bcfSSebastian Reichel 	memcpy(properties, gab_props, sizeof(gab_props));
1938c0984e5SSebastian Reichel 
1948c0984e5SSebastian Reichel 	/*
1958c0984e5SSebastian Reichel 	 * getting channel from iio and copying the battery properties
1968c0984e5SSebastian Reichel 	 * based on the channel supported by consumer device.
1978c0984e5SSebastian Reichel 	 */
1988c0984e5SSebastian Reichel 	for (chan = 0; chan < ARRAY_SIZE(gab_chan_name); chan++) {
19993297ef6SSebastian Reichel 		adc_bat->channel[chan] = devm_iio_channel_get(&pdev->dev, gab_chan_name[chan]);
2008c0984e5SSebastian Reichel 		if (IS_ERR(adc_bat->channel[chan])) {
2018c0984e5SSebastian Reichel 			ret = PTR_ERR(adc_bat->channel[chan]);
20293297ef6SSebastian Reichel 			if (ret != -ENODEV)
20393297ef6SSebastian Reichel 				return dev_err_probe(&pdev->dev, ret, "Failed to get ADC channel %s\n", gab_chan_name[chan]);
2048c0984e5SSebastian Reichel 			adc_bat->channel[chan] = NULL;
20593297ef6SSebastian Reichel 		} else if (adc_bat->channel[chan]) {
2068c0984e5SSebastian Reichel 			/* copying properties for supported channels only */
207a427503eSH. Nikolaus Schaller 			int index2;
208a427503eSH. Nikolaus Schaller 
209a427503eSH. Nikolaus Schaller 			for (index2 = 0; index2 < index; index2++) {
210191e6bcfSSebastian Reichel 				if (properties[index2] == gab_dyn_props[chan])
211a427503eSH. Nikolaus Schaller 					break;	/* already known */
212a427503eSH. Nikolaus Schaller 			}
213a427503eSH. Nikolaus Schaller 			if (index2 == index)	/* really new */
214191e6bcfSSebastian Reichel 				properties[index++] = gab_dyn_props[chan];
215a427503eSH. Nikolaus Schaller 			any = true;
2168c0984e5SSebastian Reichel 		}
2178c0984e5SSebastian Reichel 	}
2188c0984e5SSebastian Reichel 
2198c0984e5SSebastian Reichel 	/* none of the channels are supported so let's bail out */
22093297ef6SSebastian Reichel 	if (!any)
22193297ef6SSebastian Reichel 		return dev_err_probe(&pdev->dev, -ENODEV, "Failed to get any ADC channel\n");
2228c0984e5SSebastian Reichel 
2238c0984e5SSebastian Reichel 	/*
2248c0984e5SSebastian Reichel 	 * Total number of properties is equal to static properties
2258c0984e5SSebastian Reichel 	 * plus the dynamic properties.Some properties may not be set
2268c0984e5SSebastian Reichel 	 * as come channels may be not be supported by the device.So
2278c0984e5SSebastian Reichel 	 * we need to take care of that.
2288c0984e5SSebastian Reichel 	 */
229191e6bcfSSebastian Reichel 	psy_desc->properties = properties;
230932d4744SH. Nikolaus Schaller 	psy_desc->num_properties = index;
2318c0984e5SSebastian Reichel 
23293297ef6SSebastian Reichel 	adc_bat->psy = devm_power_supply_register(&pdev->dev, psy_desc, &psy_cfg);
23393297ef6SSebastian Reichel 	if (IS_ERR(adc_bat->psy))
23493297ef6SSebastian Reichel 		return dev_err_probe(&pdev->dev, PTR_ERR(adc_bat->psy), "Failed to register power-supply device\n");
2358c0984e5SSebastian Reichel 
23693297ef6SSebastian Reichel 	ret = devm_delayed_work_autocancel(&pdev->dev, &adc_bat->bat_work, gab_work);
23793297ef6SSebastian Reichel 	if (ret)
23893297ef6SSebastian Reichel 		return dev_err_probe(&pdev->dev, ret, "Failed to register delayed work\n");
2398c0984e5SSebastian Reichel 
24093297ef6SSebastian Reichel 	adc_bat->charge_finished = devm_gpiod_get_optional(&pdev->dev, "charged", GPIOD_IN);
241b0327ffbSLinus Walleij 	if (adc_bat->charge_finished) {
2428c0984e5SSebastian Reichel 		int irq;
2438c0984e5SSebastian Reichel 
244b0327ffbSLinus Walleij 		irq = gpiod_to_irq(adc_bat->charge_finished);
24593297ef6SSebastian Reichel 		ret = devm_request_any_context_irq(&pdev->dev, irq, gab_charged,
2468c0984e5SSebastian Reichel 				IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
2478c0984e5SSebastian Reichel 				"battery charged", adc_bat);
2488c0984e5SSebastian Reichel 		if (ret < 0)
24993297ef6SSebastian Reichel 			return dev_err_probe(&pdev->dev, ret, "Failed to register irq\n");
2508c0984e5SSebastian Reichel 	}
2518c0984e5SSebastian Reichel 
2528c0984e5SSebastian Reichel 	platform_set_drvdata(pdev, adc_bat);
2538c0984e5SSebastian Reichel 
2548c0984e5SSebastian Reichel 	/* Schedule timer to check current status */
2558c0984e5SSebastian Reichel 	schedule_delayed_work(&adc_bat->bat_work,
2568c0984e5SSebastian Reichel 			msecs_to_jiffies(0));
2578c0984e5SSebastian Reichel 	return 0;
2588c0984e5SSebastian Reichel }
2598c0984e5SSebastian Reichel 
gab_suspend(struct device * dev)260756e142aSRahul Bedarkar static int __maybe_unused gab_suspend(struct device *dev)
2618c0984e5SSebastian Reichel {
2628c0984e5SSebastian Reichel 	struct gab *adc_bat = dev_get_drvdata(dev);
2638c0984e5SSebastian Reichel 
2648c0984e5SSebastian Reichel 	cancel_delayed_work_sync(&adc_bat->bat_work);
2658c0984e5SSebastian Reichel 	adc_bat->status = POWER_SUPPLY_STATUS_UNKNOWN;
2668c0984e5SSebastian Reichel 	return 0;
2678c0984e5SSebastian Reichel }
2688c0984e5SSebastian Reichel 
gab_resume(struct device * dev)269756e142aSRahul Bedarkar static int __maybe_unused gab_resume(struct device *dev)
2708c0984e5SSebastian Reichel {
2718c0984e5SSebastian Reichel 	struct gab *adc_bat = dev_get_drvdata(dev);
2728c0984e5SSebastian Reichel 
2738c0984e5SSebastian Reichel 	/* Schedule timer to check current status */
2748c0984e5SSebastian Reichel 	schedule_delayed_work(&adc_bat->bat_work,
275c8f573f3SSebastian Reichel 			      msecs_to_jiffies(JITTER_DEFAULT));
276c8f573f3SSebastian Reichel 
2778c0984e5SSebastian Reichel 	return 0;
2788c0984e5SSebastian Reichel }
2798c0984e5SSebastian Reichel 
280756e142aSRahul Bedarkar static SIMPLE_DEV_PM_OPS(gab_pm_ops, gab_suspend, gab_resume);
2818c0984e5SSebastian Reichel 
282165663adSSebastian Reichel static const struct of_device_id gab_match[] = {
283165663adSSebastian Reichel 	{ .compatible = "adc-battery" },
284165663adSSebastian Reichel 	{ }
285165663adSSebastian Reichel };
286165663adSSebastian Reichel MODULE_DEVICE_TABLE(of, gab_match);
287165663adSSebastian Reichel 
2888c0984e5SSebastian Reichel static struct platform_driver gab_driver = {
2898c0984e5SSebastian Reichel 	.driver		= {
2908c0984e5SSebastian Reichel 		.name	= "generic-adc-battery",
291756e142aSRahul Bedarkar 		.pm	= &gab_pm_ops,
292165663adSSebastian Reichel 		.of_match_table = gab_match,
2938c0984e5SSebastian Reichel 	},
2948c0984e5SSebastian Reichel 	.probe		= gab_probe,
2958c0984e5SSebastian Reichel };
2968c0984e5SSebastian Reichel module_platform_driver(gab_driver);
2978c0984e5SSebastian Reichel 
2988c0984e5SSebastian Reichel MODULE_AUTHOR("anish kumar <anish198519851985@gmail.com>");
2998c0984e5SSebastian Reichel MODULE_DESCRIPTION("generic battery driver using IIO");
3008c0984e5SSebastian Reichel MODULE_LICENSE("GPL");
301