5fe7b600a1
Core: * Add HWMON compat layer * New properties - input power limit - input voltage limit Drivers: * qcom-pon: add gen2 support * New driver for storing reboot move in NVMEM * New driver for Wilco EC charger configuration * simplify getting the adapter of a client -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEE72YNB0Y/i3JqeVQT2O7X88g7+poFAl0s0xgACgkQ2O7X88g7 +pqxFQ/9GmfgHpzZ+qQmpBR5zyw1+yrhls3BXYEgHtGM+3YZ6n1sF8Yl1eUYpviC ldvN3vHXaxRlG5eDBwMl3ScWZnaxMpZssigO3lL4o+kYng0c0xqaPZZYxA9oJNgn 0ertZrYcQZWmT82aRnjt2/p+8n+Hld6bv89PodWdLvsDvId1qQPXu5ILV0JL/QNK FMQepuaiRu9VXlyPCuWYwoOmKruZjLF7SOyis+I4e55U7lHeyCOySH/tZTTFgd+n hUpWm4ekc7YCAJVVJUQcdBtfNvQm1KtGkLSnSockH/636kP2fh5ESj76z8i5I6/6 yl7OrkCyhespqS9hGCKCPU95s8MQe8HurlGR8aIWHLJJMiv1hIVOq7n9Uj+mmdRS OkKQHo/RUxXn5ioCUF3F3NcB94/95f0AWrx3RXjeXd2kYlUmVKCHyaGjPT9WfSOe MUcLZwM+GsG+3SWBhPGqjuIhIGfBBuQk+mcYLPLP/j3emNeLByYEtEDhvoQbEooU TCyJGR+FGIAyjXcW/uZzxx8MiZPybSXo7a4j837Cx6sRNwZJ4V9Ve/7XdUy7DKD0 kOBH/ndJhoKJQkup+HEGmv/8os4K8gyW/kaiu718mS0oLDfQGDy0C0Y8BNoJnw4k /jo/1q0KY+8Hd6bxqbommA2ORAw7XsDZB7eWWC4gDqMXVcF1S6k= =fmGg -----END PGP SIGNATURE----- Merge tag 'for-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply Pull power supply and reset updates from Sebastian Reichel: "Core: - add HWMON compat layer - new properties: - input power limit - input voltage limit Drivers: - qcom-pon: add gen2 support - new driver for storing reboot move in NVMEM - new driver for Wilco EC charger configuration - simplify getting the adapter of a client" * tag 'for-v5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply: power: reset: nvmem-reboot-mode: add CONFIG_OF dependency power_supply: wilco_ec: Add charging config driver power: supply: cros: allow to set input voltage and current limit power: supply: add input power and voltage limit properties power: supply: fix semicolon.cocci warnings power: reset: nvmem-reboot-mode: use NVMEM as reboot mode write interface dt-bindings: power: reset: add document for NVMEM based reboot-mode reset: qcom-pon: Add support for gen2 pon dt-bindings: power: reset: qcom: Add qcom,pm8998-pon compatibility line power: supply: Add HWMON compatibility layer power: supply: sbs-manager: simplify getting the adapter of a client power: supply: rt9455_charger: simplify getting the adapter of a client power: supply: rt5033_battery: simplify getting the adapter of a client power: supply: max17042_battery: simplify getting the adapter of a client power: supply: max17040_battery: simplify getting the adapter of a client power: supply: max14656_charger_detector: simplify getting the adapter of a client power: supply: bq25890_charger: simplify getting the adapter of a client power: supply: bq24257_charger: simplify getting the adapter of a client power: supply: bq24190_charger: simplify getting the adapter of a client
180 lines
4.4 KiB
C
180 lines
4.4 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Fuel gauge driver for Richtek RT5033
|
|
*
|
|
* Copyright (C) 2014 Samsung Electronics, Co., Ltd.
|
|
* Author: Beomho Seo <beomho.seo@samsung.com>
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/power_supply.h>
|
|
#include <linux/mfd/rt5033-private.h>
|
|
#include <linux/mfd/rt5033.h>
|
|
|
|
static int rt5033_battery_get_capacity(struct i2c_client *client)
|
|
{
|
|
struct rt5033_battery *battery = i2c_get_clientdata(client);
|
|
u32 msb;
|
|
|
|
regmap_read(battery->regmap, RT5033_FUEL_REG_SOC_H, &msb);
|
|
|
|
return msb;
|
|
}
|
|
|
|
static int rt5033_battery_get_present(struct i2c_client *client)
|
|
{
|
|
struct rt5033_battery *battery = i2c_get_clientdata(client);
|
|
u32 val;
|
|
|
|
regmap_read(battery->regmap, RT5033_FUEL_REG_CONFIG_L, &val);
|
|
|
|
return (val & RT5033_FUEL_BAT_PRESENT) ? true : false;
|
|
}
|
|
|
|
static int rt5033_battery_get_watt_prop(struct i2c_client *client,
|
|
enum power_supply_property psp)
|
|
{
|
|
struct rt5033_battery *battery = i2c_get_clientdata(client);
|
|
unsigned int regh, regl;
|
|
int ret;
|
|
u32 msb, lsb;
|
|
|
|
switch (psp) {
|
|
case POWER_SUPPLY_PROP_VOLTAGE_NOW:
|
|
regh = RT5033_FUEL_REG_VBAT_H;
|
|
regl = RT5033_FUEL_REG_VBAT_L;
|
|
break;
|
|
case POWER_SUPPLY_PROP_VOLTAGE_AVG:
|
|
regh = RT5033_FUEL_REG_AVG_VOLT_H;
|
|
regl = RT5033_FUEL_REG_AVG_VOLT_L;
|
|
break;
|
|
case POWER_SUPPLY_PROP_VOLTAGE_OCV:
|
|
regh = RT5033_FUEL_REG_OCV_H;
|
|
regl = RT5033_FUEL_REG_OCV_L;
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
|
|
regmap_read(battery->regmap, regh, &msb);
|
|
regmap_read(battery->regmap, regl, &lsb);
|
|
|
|
ret = ((msb << 4) + (lsb >> 4)) * 1250 / 1000;
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int rt5033_battery_get_property(struct power_supply *psy,
|
|
enum power_supply_property psp,
|
|
union power_supply_propval *val)
|
|
{
|
|
struct rt5033_battery *battery = power_supply_get_drvdata(psy);
|
|
|
|
switch (psp) {
|
|
case POWER_SUPPLY_PROP_VOLTAGE_NOW:
|
|
case POWER_SUPPLY_PROP_VOLTAGE_AVG:
|
|
case POWER_SUPPLY_PROP_VOLTAGE_OCV:
|
|
val->intval = rt5033_battery_get_watt_prop(battery->client,
|
|
psp);
|
|
break;
|
|
case POWER_SUPPLY_PROP_PRESENT:
|
|
val->intval = rt5033_battery_get_present(battery->client);
|
|
break;
|
|
case POWER_SUPPLY_PROP_CAPACITY:
|
|
val->intval = rt5033_battery_get_capacity(battery->client);
|
|
break;
|
|
default:
|
|
return -EINVAL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static enum power_supply_property rt5033_battery_props[] = {
|
|
POWER_SUPPLY_PROP_VOLTAGE_NOW,
|
|
POWER_SUPPLY_PROP_VOLTAGE_AVG,
|
|
POWER_SUPPLY_PROP_VOLTAGE_OCV,
|
|
POWER_SUPPLY_PROP_PRESENT,
|
|
POWER_SUPPLY_PROP_CAPACITY,
|
|
};
|
|
|
|
static const struct regmap_config rt5033_battery_regmap_config = {
|
|
.reg_bits = 8,
|
|
.val_bits = 8,
|
|
.max_register = RT5033_FUEL_REG_END,
|
|
};
|
|
|
|
static const struct power_supply_desc rt5033_battery_desc = {
|
|
.name = "rt5033-battery",
|
|
.type = POWER_SUPPLY_TYPE_BATTERY,
|
|
.get_property = rt5033_battery_get_property,
|
|
.properties = rt5033_battery_props,
|
|
.num_properties = ARRAY_SIZE(rt5033_battery_props),
|
|
};
|
|
|
|
static int rt5033_battery_probe(struct i2c_client *client,
|
|
const struct i2c_device_id *id)
|
|
{
|
|
struct i2c_adapter *adapter = client->adapter;
|
|
struct power_supply_config psy_cfg = {};
|
|
struct rt5033_battery *battery;
|
|
u32 ret;
|
|
|
|
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
|
|
return -EIO;
|
|
|
|
battery = devm_kzalloc(&client->dev, sizeof(*battery), GFP_KERNEL);
|
|
if (!battery)
|
|
return -EINVAL;
|
|
|
|
battery->client = client;
|
|
battery->regmap = devm_regmap_init_i2c(client,
|
|
&rt5033_battery_regmap_config);
|
|
if (IS_ERR(battery->regmap)) {
|
|
dev_err(&client->dev, "Failed to initialize regmap\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
i2c_set_clientdata(client, battery);
|
|
psy_cfg.drv_data = battery;
|
|
|
|
battery->psy = power_supply_register(&client->dev,
|
|
&rt5033_battery_desc, &psy_cfg);
|
|
if (IS_ERR(battery->psy)) {
|
|
dev_err(&client->dev, "Failed to register power supply\n");
|
|
ret = PTR_ERR(battery->psy);
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int rt5033_battery_remove(struct i2c_client *client)
|
|
{
|
|
struct rt5033_battery *battery = i2c_get_clientdata(client);
|
|
|
|
power_supply_unregister(battery->psy);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct i2c_device_id rt5033_battery_id[] = {
|
|
{ "rt5033-battery", },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(i2c, rt5033_battery_id);
|
|
|
|
static struct i2c_driver rt5033_battery_driver = {
|
|
.driver = {
|
|
.name = "rt5033-battery",
|
|
},
|
|
.probe = rt5033_battery_probe,
|
|
.remove = rt5033_battery_remove,
|
|
.id_table = rt5033_battery_id,
|
|
};
|
|
module_i2c_driver(rt5033_battery_driver);
|
|
|
|
MODULE_DESCRIPTION("Richtek RT5033 fuel gauge driver");
|
|
MODULE_AUTHOR("Beomho Seo <beomho.seo@samsung.com>");
|
|
MODULE_LICENSE("GPL");
|