2018-08-08 00:21:06 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//
|
|
|
|
// max17040_battery.c
|
|
|
|
// fuel-gauge systems for lithium-ion (Li+) batteries
|
|
|
|
//
|
|
|
|
// Copyright (C) 2009 Samsung Electronics
|
|
|
|
// Minkyu Kang <mk7.kang@samsung.com>
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/delay.h>
|
2019-12-05 23:44:06 +08:00
|
|
|
#include <linux/interrupt.h>
|
2009-06-05 14:33:04 +08:00
|
|
|
#include <linux/power_supply.h>
|
|
|
|
#include <linux/max17040_battery.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
#define MAX17040_VCELL 0x02
|
|
|
|
#define MAX17040_SOC 0x04
|
|
|
|
#define MAX17040_MODE 0x06
|
|
|
|
#define MAX17040_VER 0x08
|
|
|
|
#define MAX17040_RCOMP 0x0C
|
|
|
|
#define MAX17040_CMD 0xFE
|
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
#define MAX17040_DELAY 1000
|
|
|
|
#define MAX17040_BATTERY_FULL 95
|
|
|
|
|
2019-12-05 23:44:09 +08:00
|
|
|
#define MAX17040_ATHD_MASK 0xFFC0
|
|
|
|
#define MAX17040_ATHD_DEFAULT_POWER_UP 4
|
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
struct max17040_chip {
|
|
|
|
struct i2c_client *client;
|
|
|
|
struct delayed_work work;
|
2015-03-12 15:44:11 +08:00
|
|
|
struct power_supply *battery;
|
2009-06-05 14:33:04 +08:00
|
|
|
struct max17040_platform_data *pdata;
|
|
|
|
|
|
|
|
/* State Of Connect */
|
|
|
|
int online;
|
|
|
|
/* battery voltage */
|
|
|
|
int vcell;
|
|
|
|
/* battery capacity */
|
|
|
|
int soc;
|
|
|
|
/* State Of Charge */
|
|
|
|
int status;
|
2019-12-05 23:44:09 +08:00
|
|
|
/* Low alert threshold from 32% to 1% of the State of Charge */
|
|
|
|
u32 low_soc_alert;
|
2009-06-05 14:33:04 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int max17040_get_property(struct power_supply *psy,
|
|
|
|
enum power_supply_property psp,
|
|
|
|
union power_supply_propval *val)
|
|
|
|
{
|
2015-03-12 15:44:11 +08:00
|
|
|
struct max17040_chip *chip = power_supply_get_drvdata(psy);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
switch (psp) {
|
|
|
|
case POWER_SUPPLY_PROP_STATUS:
|
|
|
|
val->intval = chip->status;
|
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_ONLINE:
|
|
|
|
val->intval = chip->online;
|
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_VOLTAGE_NOW:
|
|
|
|
val->intval = chip->vcell;
|
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_CAPACITY:
|
|
|
|
val->intval = chip->soc;
|
|
|
|
break;
|
2020-07-06 08:10:03 +08:00
|
|
|
case POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN:
|
|
|
|
val->intval = chip->low_soc_alert;
|
|
|
|
break;
|
2009-06-05 14:33:04 +08:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
static int max17040_write_reg(struct i2c_client *client, int reg, u16 value)
|
2009-06-05 14:33:04 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
ret = i2c_smbus_write_word_swapped(client, reg, value);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
dev_err(&client->dev, "%s: err %d\n", __func__, ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int max17040_read_reg(struct i2c_client *client, int reg)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
ret = i2c_smbus_read_word_swapped(client, reg);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
dev_err(&client->dev, "%s: err %d\n", __func__, ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void max17040_reset(struct i2c_client *client)
|
|
|
|
{
|
2016-09-21 22:17:34 +08:00
|
|
|
max17040_write_reg(client, MAX17040_CMD, 0x0054);
|
2009-06-05 14:33:04 +08:00
|
|
|
}
|
|
|
|
|
2019-12-05 23:44:09 +08:00
|
|
|
static int max17040_set_low_soc_alert(struct i2c_client *client, u32 level)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
u16 data;
|
|
|
|
|
|
|
|
level = 32 - level;
|
|
|
|
data = max17040_read_reg(client, MAX17040_RCOMP);
|
|
|
|
/* clear the alrt bit and set LSb 5 bits */
|
|
|
|
data &= MAX17040_ATHD_MASK;
|
|
|
|
data |= level;
|
|
|
|
ret = max17040_write_reg(client, MAX17040_RCOMP, data);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
static void max17040_get_vcell(struct i2c_client *client)
|
|
|
|
{
|
|
|
|
struct max17040_chip *chip = i2c_get_clientdata(client);
|
2016-09-21 22:17:34 +08:00
|
|
|
u16 vcell;
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
vcell = max17040_read_reg(client, MAX17040_VCELL);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2020-05-05 06:12:58 +08:00
|
|
|
chip->vcell = (vcell >> 4) * 1250;
|
2009-06-05 14:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void max17040_get_soc(struct i2c_client *client)
|
|
|
|
{
|
|
|
|
struct max17040_chip *chip = i2c_get_clientdata(client);
|
2016-09-21 22:17:34 +08:00
|
|
|
u16 soc;
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
soc = max17040_read_reg(client, MAX17040_SOC);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
chip->soc = (soc >> 8);
|
2009-06-05 14:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void max17040_get_version(struct i2c_client *client)
|
|
|
|
{
|
2016-09-21 22:17:34 +08:00
|
|
|
u16 version;
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
version = max17040_read_reg(client, MAX17040_VER);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2016-09-21 22:17:34 +08:00
|
|
|
dev_info(&client->dev, "MAX17040 Fuel-Gauge Ver 0x%x\n", version);
|
2009-06-05 14:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void max17040_get_online(struct i2c_client *client)
|
|
|
|
{
|
|
|
|
struct max17040_chip *chip = i2c_get_clientdata(client);
|
|
|
|
|
2014-01-30 21:32:45 +08:00
|
|
|
if (chip->pdata && chip->pdata->battery_online)
|
2009-06-05 14:33:04 +08:00
|
|
|
chip->online = chip->pdata->battery_online();
|
|
|
|
else
|
|
|
|
chip->online = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void max17040_get_status(struct i2c_client *client)
|
|
|
|
{
|
|
|
|
struct max17040_chip *chip = i2c_get_clientdata(client);
|
|
|
|
|
2014-01-30 21:32:45 +08:00
|
|
|
if (!chip->pdata || !chip->pdata->charger_online
|
|
|
|
|| !chip->pdata->charger_enable) {
|
2009-06-05 14:33:04 +08:00
|
|
|
chip->status = POWER_SUPPLY_STATUS_UNKNOWN;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chip->pdata->charger_online()) {
|
|
|
|
if (chip->pdata->charger_enable())
|
|
|
|
chip->status = POWER_SUPPLY_STATUS_CHARGING;
|
|
|
|
else
|
|
|
|
chip->status = POWER_SUPPLY_STATUS_NOT_CHARGING;
|
|
|
|
} else {
|
|
|
|
chip->status = POWER_SUPPLY_STATUS_DISCHARGING;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chip->soc > MAX17040_BATTERY_FULL)
|
|
|
|
chip->status = POWER_SUPPLY_STATUS_FULL;
|
|
|
|
}
|
|
|
|
|
2019-12-05 23:44:09 +08:00
|
|
|
static int max17040_get_of_data(struct max17040_chip *chip)
|
|
|
|
{
|
|
|
|
struct device *dev = &chip->client->dev;
|
|
|
|
|
|
|
|
chip->low_soc_alert = MAX17040_ATHD_DEFAULT_POWER_UP;
|
|
|
|
device_property_read_u32(dev,
|
|
|
|
"maxim,alert-low-soc-level",
|
|
|
|
&chip->low_soc_alert);
|
|
|
|
|
|
|
|
if (chip->low_soc_alert <= 0 || chip->low_soc_alert >= 33)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-12-05 23:44:06 +08:00
|
|
|
static void max17040_check_changes(struct i2c_client *client)
|
|
|
|
{
|
|
|
|
max17040_get_vcell(client);
|
|
|
|
max17040_get_soc(client);
|
|
|
|
max17040_get_online(client);
|
|
|
|
max17040_get_status(client);
|
|
|
|
}
|
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
static void max17040_work(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct max17040_chip *chip;
|
2019-12-05 23:44:10 +08:00
|
|
|
int last_soc, last_status;
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
chip = container_of(work, struct max17040_chip, work.work);
|
2019-12-05 23:44:10 +08:00
|
|
|
|
|
|
|
/* store SOC and status to check changes */
|
|
|
|
last_soc = chip->soc;
|
|
|
|
last_status = chip->status;
|
2019-12-05 23:44:06 +08:00
|
|
|
max17040_check_changes(chip->client);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2019-12-05 23:44:10 +08:00
|
|
|
/* check changes and send uevent */
|
|
|
|
if (last_soc != chip->soc || last_status != chip->status)
|
|
|
|
power_supply_changed(chip->battery);
|
|
|
|
|
2015-02-24 17:54:46 +08:00
|
|
|
queue_delayed_work(system_power_efficient_wq, &chip->work,
|
|
|
|
MAX17040_DELAY);
|
2009-06-05 14:33:04 +08:00
|
|
|
}
|
|
|
|
|
2019-12-05 23:44:06 +08:00
|
|
|
static irqreturn_t max17040_thread_handler(int id, void *dev)
|
|
|
|
{
|
|
|
|
struct max17040_chip *chip = dev;
|
|
|
|
struct i2c_client *client = chip->client;
|
|
|
|
|
|
|
|
dev_warn(&client->dev, "IRQ: Alert battery low level");
|
|
|
|
/* read registers */
|
|
|
|
max17040_check_changes(chip->client);
|
|
|
|
|
|
|
|
/* send uevent */
|
|
|
|
power_supply_changed(chip->battery);
|
|
|
|
|
2019-12-05 23:44:09 +08:00
|
|
|
/* reset alert bit */
|
|
|
|
max17040_set_low_soc_alert(client, chip->low_soc_alert);
|
|
|
|
|
2019-12-05 23:44:06 +08:00
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int max17040_enable_alert_irq(struct max17040_chip *chip)
|
|
|
|
{
|
|
|
|
struct i2c_client *client = chip->client;
|
|
|
|
unsigned int flags;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT;
|
|
|
|
ret = devm_request_threaded_irq(&client->dev, client->irq, NULL,
|
|
|
|
max17040_thread_handler, flags,
|
|
|
|
chip->battery->desc->name, chip);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2020-07-06 08:10:03 +08:00
|
|
|
static int max17040_prop_writeable(struct power_supply *psy,
|
|
|
|
enum power_supply_property psp)
|
|
|
|
{
|
|
|
|
switch (psp) {
|
|
|
|
case POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN:
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int max17040_set_property(struct power_supply *psy,
|
|
|
|
enum power_supply_property psp,
|
|
|
|
const union power_supply_propval *val)
|
|
|
|
{
|
|
|
|
struct max17040_chip *chip = power_supply_get_drvdata(psy);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
switch (psp) {
|
|
|
|
case POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN:
|
|
|
|
/* alert threshold can be programmed from 1% up to 32% */
|
|
|
|
if ((val->intval < 1) || (val->intval > 32)) {
|
|
|
|
ret = -EINVAL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = max17040_set_low_soc_alert(chip->client, val->intval);
|
|
|
|
chip->low_soc_alert = val->intval;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
static enum power_supply_property max17040_battery_props[] = {
|
|
|
|
POWER_SUPPLY_PROP_STATUS,
|
|
|
|
POWER_SUPPLY_PROP_ONLINE,
|
|
|
|
POWER_SUPPLY_PROP_VOLTAGE_NOW,
|
|
|
|
POWER_SUPPLY_PROP_CAPACITY,
|
2020-07-06 08:10:03 +08:00
|
|
|
POWER_SUPPLY_PROP_CAPACITY_ALERT_MIN,
|
2009-06-05 14:33:04 +08:00
|
|
|
};
|
|
|
|
|
2015-03-12 15:44:11 +08:00
|
|
|
static const struct power_supply_desc max17040_battery_desc = {
|
2020-07-06 08:10:03 +08:00
|
|
|
.name = "battery",
|
|
|
|
.type = POWER_SUPPLY_TYPE_BATTERY,
|
|
|
|
.get_property = max17040_get_property,
|
|
|
|
.set_property = max17040_set_property,
|
|
|
|
.property_is_writeable = max17040_prop_writeable,
|
|
|
|
.properties = max17040_battery_props,
|
|
|
|
.num_properties = ARRAY_SIZE(max17040_battery_props),
|
2015-03-12 15:44:11 +08:00
|
|
|
};
|
|
|
|
|
2012-11-20 02:22:23 +08:00
|
|
|
static int max17040_probe(struct i2c_client *client,
|
2009-06-05 14:33:04 +08:00
|
|
|
const struct i2c_device_id *id)
|
|
|
|
{
|
2019-06-08 18:55:59 +08:00
|
|
|
struct i2c_adapter *adapter = client->adapter;
|
2015-03-12 15:44:11 +08:00
|
|
|
struct power_supply_config psy_cfg = {};
|
2009-06-05 14:33:04 +08:00
|
|
|
struct max17040_chip *chip;
|
2019-12-05 23:44:09 +08:00
|
|
|
int ret;
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
|
|
|
|
return -EIO;
|
|
|
|
|
2013-01-06 12:53:25 +08:00
|
|
|
chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);
|
2009-06-05 14:33:04 +08:00
|
|
|
if (!chip)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
chip->client = client;
|
|
|
|
chip->pdata = client->dev.platform_data;
|
2019-12-05 23:44:09 +08:00
|
|
|
ret = max17040_get_of_data(chip);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(&client->dev,
|
|
|
|
"failed: low SOC alert OF data out of bounds\n");
|
|
|
|
return ret;
|
|
|
|
}
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
i2c_set_clientdata(client, chip);
|
2015-03-12 15:44:11 +08:00
|
|
|
psy_cfg.drv_data = chip;
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2015-03-12 15:44:11 +08:00
|
|
|
chip->battery = power_supply_register(&client->dev,
|
|
|
|
&max17040_battery_desc, &psy_cfg);
|
|
|
|
if (IS_ERR(chip->battery)) {
|
2009-06-05 14:33:04 +08:00
|
|
|
dev_err(&client->dev, "failed: power supply register\n");
|
2015-03-12 15:44:11 +08:00
|
|
|
return PTR_ERR(chip->battery);
|
2009-06-05 14:33:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
max17040_reset(client);
|
|
|
|
max17040_get_version(client);
|
|
|
|
|
2019-12-05 23:44:06 +08:00
|
|
|
/* check interrupt */
|
|
|
|
if (client->irq && of_device_is_compatible(client->dev.of_node,
|
|
|
|
"maxim,max77836-battery")) {
|
2019-12-05 23:44:09 +08:00
|
|
|
ret = max17040_set_low_soc_alert(client, chip->low_soc_alert);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(&client->dev,
|
|
|
|
"Failed to set low SOC alert: err %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
2019-12-05 23:44:06 +08:00
|
|
|
|
|
|
|
ret = max17040_enable_alert_irq(chip);
|
|
|
|
if (ret) {
|
|
|
|
client->irq = 0;
|
|
|
|
dev_warn(&client->dev,
|
|
|
|
"Failed to get IRQ err %d\n", ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-22 04:18:23 +08:00
|
|
|
INIT_DEFERRABLE_WORK(&chip->work, max17040_work);
|
2015-02-24 17:54:46 +08:00
|
|
|
queue_delayed_work(system_power_efficient_wq, &chip->work,
|
|
|
|
MAX17040_DELAY);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-11-20 02:26:07 +08:00
|
|
|
static int max17040_remove(struct i2c_client *client)
|
2009-06-05 14:33:04 +08:00
|
|
|
{
|
|
|
|
struct max17040_chip *chip = i2c_get_clientdata(client);
|
|
|
|
|
2015-03-12 15:44:11 +08:00
|
|
|
power_supply_unregister(chip->battery);
|
2009-06-05 14:33:04 +08:00
|
|
|
cancel_delayed_work(&chip->work);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-10 21:34:06 +08:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2013-03-10 21:34:06 +08:00
|
|
|
static int max17040_suspend(struct device *dev)
|
2009-06-05 14:33:04 +08:00
|
|
|
{
|
2013-03-10 21:34:06 +08:00
|
|
|
struct i2c_client *client = to_i2c_client(dev);
|
2009-06-05 14:33:04 +08:00
|
|
|
struct max17040_chip *chip = i2c_get_clientdata(client);
|
|
|
|
|
|
|
|
cancel_delayed_work(&chip->work);
|
2019-12-05 23:44:06 +08:00
|
|
|
|
2020-01-10 18:05:40 +08:00
|
|
|
if (client->irq && device_may_wakeup(dev))
|
|
|
|
enable_irq_wake(client->irq);
|
2019-12-05 23:44:06 +08:00
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-10 21:34:06 +08:00
|
|
|
static int max17040_resume(struct device *dev)
|
2009-06-05 14:33:04 +08:00
|
|
|
{
|
2013-03-10 21:34:06 +08:00
|
|
|
struct i2c_client *client = to_i2c_client(dev);
|
2009-06-05 14:33:04 +08:00
|
|
|
struct max17040_chip *chip = i2c_get_clientdata(client);
|
|
|
|
|
2015-02-24 17:54:46 +08:00
|
|
|
queue_delayed_work(system_power_efficient_wq, &chip->work,
|
|
|
|
MAX17040_DELAY);
|
2019-12-05 23:44:06 +08:00
|
|
|
|
2020-01-10 18:05:40 +08:00
|
|
|
if (client->irq && device_may_wakeup(dev))
|
|
|
|
disable_irq_wake(client->irq);
|
2019-12-05 23:44:06 +08:00
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-10 21:34:06 +08:00
|
|
|
static SIMPLE_DEV_PM_OPS(max17040_pm_ops, max17040_suspend, max17040_resume);
|
|
|
|
#define MAX17040_PM_OPS (&max17040_pm_ops)
|
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
#else
|
|
|
|
|
2013-03-10 21:34:06 +08:00
|
|
|
#define MAX17040_PM_OPS NULL
|
2009-06-05 14:33:04 +08:00
|
|
|
|
2013-03-10 21:34:06 +08:00
|
|
|
#endif /* CONFIG_PM_SLEEP */
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
static const struct i2c_device_id max17040_id[] = {
|
2014-09-12 14:53:58 +08:00
|
|
|
{ "max17040" },
|
|
|
|
{ "max77836-battery" },
|
2009-06-05 14:33:04 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, max17040_id);
|
|
|
|
|
2017-03-15 11:43:49 +08:00
|
|
|
static const struct of_device_id max17040_of_match[] = {
|
|
|
|
{ .compatible = "maxim,max17040" },
|
|
|
|
{ .compatible = "maxim,max77836-battery" },
|
|
|
|
{ },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, max17040_of_match);
|
|
|
|
|
2009-06-05 14:33:04 +08:00
|
|
|
static struct i2c_driver max17040_i2c_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "max17040",
|
2017-03-15 11:43:49 +08:00
|
|
|
.of_match_table = max17040_of_match,
|
2013-03-10 21:34:06 +08:00
|
|
|
.pm = MAX17040_PM_OPS,
|
2009-06-05 14:33:04 +08:00
|
|
|
},
|
|
|
|
.probe = max17040_probe,
|
2012-11-20 02:20:40 +08:00
|
|
|
.remove = max17040_remove,
|
2009-06-05 14:33:04 +08:00
|
|
|
.id_table = max17040_id,
|
|
|
|
};
|
2012-01-21 14:42:54 +08:00
|
|
|
module_i2c_driver(max17040_i2c_driver);
|
2009-06-05 14:33:04 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Minkyu Kang <mk7.kang@samsung.com>");
|
|
|
|
MODULE_DESCRIPTION("MAX17040 Fuel Gauge");
|
|
|
|
MODULE_LICENSE("GPL");
|