2010-01-11 04:44:45 +00:00
|
|
|
/*
|
|
|
|
* Battery measurement code for Ingenic JZ SOC.
|
|
|
|
*
|
2010-02-03 16:08:01 +00:00
|
|
|
* Copyright (C) 2009 Jiejing Zhang <kzjeef@gmail.com>
|
|
|
|
* Copyright (C) 2010, Lars-Peter Clausen <lars@metafoo.de>
|
|
|
|
*
|
2010-01-11 04:44:45 +00:00
|
|
|
* based on tosa_battery.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Marek Vasut <marek.vasut@gmail.com>
|
2010-02-03 16:08:01 +00:00
|
|
|
*
|
2010-01-11 04:44:45 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/power_supply.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/gpio.h>
|
2010-02-03 16:08:01 +00:00
|
|
|
#include <linux/interrupt.h>
|
2010-01-11 04:44:45 +00:00
|
|
|
|
|
|
|
#include <linux/power/jz4740-battery.h>
|
|
|
|
#include <linux/jz4740-adc.h>
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
struct jz_battery {
|
|
|
|
struct jz_battery_platform_data *pdata;
|
|
|
|
|
|
|
|
int charge_irq;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
int status;
|
|
|
|
long voltage;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
struct power_supply battery;
|
|
|
|
struct delayed_work work;
|
|
|
|
};
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static inline struct jz_battery *psy_to_jz_battery(struct power_supply *psy)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
return container_of(psy, struct jz_battery, battery);
|
|
|
|
}
|
|
|
|
|
|
|
|
static long jz_battery_read_voltage(struct jz_battery *jz_battery)
|
|
|
|
{
|
|
|
|
struct device *adc = jz_battery->battery.dev->parent->parent;
|
2010-01-11 04:44:45 +00:00
|
|
|
enum jz_adc_battery_scale scale;
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
if (jz_battery->pdata->info.voltage_max_design > 2500000)
|
2010-01-11 04:44:45 +00:00
|
|
|
scale = JZ_ADC_BATTERY_SCALE_7V5;
|
|
|
|
else
|
|
|
|
scale = JZ_ADC_BATTERY_SCALE_2V5;
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
return jz4740_adc_read_battery_voltage(adc, scale);
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static int jz_battery_get_capacity(struct power_supply *psy)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
struct jz_battery *jz_battery = psy_to_jz_battery(psy);
|
|
|
|
struct power_supply_info *info = &jz_battery->pdata->info;
|
|
|
|
long voltage;
|
2010-01-11 04:44:45 +00:00
|
|
|
int ret;
|
2010-02-03 16:08:01 +00:00
|
|
|
int voltage_span;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
voltage = jz_battery_read_voltage(jz_battery);
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
if (voltage < 0)
|
|
|
|
return voltage;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
voltage_span = info->voltage_max_design - info->voltage_min_design;
|
|
|
|
ret = ((voltage - info->voltage_min_design) * 100) / voltage_span;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
|
|
|
if (ret > 100)
|
|
|
|
ret = 100;
|
|
|
|
else if (ret < 0)
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static int jz_battery_get_property(struct power_supply *psy,
|
2010-01-11 04:44:45 +00:00
|
|
|
enum power_supply_property psp,
|
|
|
|
union power_supply_propval *val)
|
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
struct jz_battery *jz_battery = psy_to_jz_battery(psy);
|
|
|
|
struct power_supply_info *info = &jz_battery->pdata->info;
|
|
|
|
long voltage;
|
|
|
|
|
2010-01-11 04:44:45 +00:00
|
|
|
switch (psp) {
|
|
|
|
case POWER_SUPPLY_PROP_STATUS:
|
2010-02-03 16:08:01 +00:00
|
|
|
val->intval = jz_battery->status;
|
2010-01-11 04:44:45 +00:00
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_TECHNOLOGY:
|
2010-02-03 16:08:01 +00:00
|
|
|
val->intval = jz_battery->pdata->info.technology;
|
2010-01-11 04:44:45 +00:00
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_HEALTH:
|
2010-02-03 16:08:01 +00:00
|
|
|
voltage = jz_battery_read_voltage(jz_battery);
|
|
|
|
if (voltage < info->voltage_min_design)
|
2010-01-11 04:44:45 +00:00
|
|
|
val->intval = POWER_SUPPLY_HEALTH_DEAD;
|
2010-02-03 16:08:01 +00:00
|
|
|
else
|
2010-01-11 04:44:45 +00:00
|
|
|
val->intval = POWER_SUPPLY_HEALTH_GOOD;
|
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_CAPACITY:
|
2010-02-03 16:08:01 +00:00
|
|
|
val->intval = jz_battery_get_capacity(psy);
|
2010-01-11 04:44:45 +00:00
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_VOLTAGE_NOW:
|
2010-02-03 16:08:01 +00:00
|
|
|
val->intval = jz_battery_read_voltage(jz_battery);
|
2010-01-11 04:44:45 +00:00
|
|
|
if (val->intval < 0)
|
|
|
|
return val->intval;
|
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
|
2010-02-03 16:08:01 +00:00
|
|
|
val->intval = info->voltage_max_design;
|
2010-01-11 04:44:45 +00:00
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
|
2010-02-03 16:08:01 +00:00
|
|
|
val->intval = info->voltage_min_design;
|
2010-01-11 04:44:45 +00:00
|
|
|
break;
|
|
|
|
case POWER_SUPPLY_PROP_PRESENT:
|
|
|
|
val->intval = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static void jz_battery_external_power_changed(struct power_supply *psy)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
struct jz_battery *jz_battery = psy_to_jz_battery(psy);
|
|
|
|
|
|
|
|
cancel_delayed_work(&jz_battery->work);
|
|
|
|
schedule_delayed_work(&jz_battery->work, 0);
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static irqreturn_t jz_battery_charge_irq(int irq, void *data)
|
|
|
|
{
|
|
|
|
struct jz_battery *jz_battery = data;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
cancel_delayed_work(&jz_battery->work);
|
|
|
|
schedule_delayed_work(&jz_battery->work, 0);
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void jz_battery_update(struct jz_battery *jz_battery)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
int status;
|
|
|
|
long voltage;
|
|
|
|
long voltage_difference;
|
|
|
|
bool has_changed = 0;
|
|
|
|
|
|
|
|
if (gpio_is_valid(jz_battery->pdata->gpio_charge)) {
|
|
|
|
int is_charging;
|
|
|
|
|
|
|
|
is_charging = gpio_get_value(jz_battery->pdata->gpio_charge);
|
|
|
|
is_charging ^= jz_battery->pdata->gpio_charge_active_low;
|
|
|
|
if (is_charging)
|
|
|
|
status = POWER_SUPPLY_STATUS_CHARGING;
|
2010-01-11 04:44:45 +00:00
|
|
|
else
|
2010-02-03 16:08:01 +00:00
|
|
|
status = POWER_SUPPLY_STATUS_NOT_CHARGING;
|
|
|
|
|
|
|
|
if (status != jz_battery->status) {
|
|
|
|
jz_battery->status = status;
|
|
|
|
has_changed = 1;
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
voltage = jz_battery_read_voltage(jz_battery);
|
|
|
|
voltage_difference = voltage - jz_battery->voltage;
|
|
|
|
if (voltage_difference > 50000 || voltage_difference < 50000) {
|
|
|
|
jz_battery->voltage = voltage;
|
|
|
|
has_changed = 1;
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
2010-02-03 16:08:01 +00:00
|
|
|
if (has_changed)
|
|
|
|
power_supply_changed(&jz_battery->battery);
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static enum power_supply_property jz_battery_properties[] = {
|
2010-01-11 04:44:45 +00:00
|
|
|
POWER_SUPPLY_PROP_STATUS,
|
|
|
|
POWER_SUPPLY_PROP_TECHNOLOGY,
|
|
|
|
POWER_SUPPLY_PROP_HEALTH,
|
2010-02-03 16:08:01 +00:00
|
|
|
POWER_SUPPLY_PROP_CAPACITY,
|
2010-01-11 04:44:45 +00:00
|
|
|
POWER_SUPPLY_PROP_VOLTAGE_NOW,
|
2010-02-03 16:08:01 +00:00
|
|
|
POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN,
|
2010-01-11 04:44:45 +00:00
|
|
|
POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
|
|
|
|
POWER_SUPPLY_PROP_PRESENT,
|
|
|
|
};
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static void jz_battery_work(struct work_struct *work)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
/* Too small interval will increase system workload */
|
2010-01-11 04:44:45 +00:00
|
|
|
const int interval = HZ * 30;
|
2010-02-03 16:08:01 +00:00
|
|
|
struct jz_battery *jz_battery = container_of(work, struct jz_battery,
|
|
|
|
work.work);
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
jz_battery_update(jz_battery);
|
|
|
|
schedule_delayed_work(&jz_battery->work, interval);
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static int jz_battery_probe(struct platform_device *pdev)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2010-02-03 16:08:01 +00:00
|
|
|
struct jz_battery_platform_data *pdata = pdev->dev.platform_data;
|
|
|
|
struct jz_battery *jz_battery;
|
|
|
|
struct power_supply *battery;
|
2010-02-03 13:16:23 +00:00
|
|
|
|
|
|
|
if (!pdev->dev.platform_data) {
|
2010-02-03 16:08:01 +00:00
|
|
|
dev_err(&pdev->dev, "No platform data\n");
|
2010-02-03 13:16:23 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
jz_battery = kzalloc(sizeof(*jz_battery), GFP_KERNEL);
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
if (!jz_battery) {
|
|
|
|
dev_err(&pdev->dev, "Failed to allocate driver structure\n");
|
2010-01-11 04:44:45 +00:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
battery = &jz_battery->battery;
|
|
|
|
battery->name = pdata->info.name;
|
|
|
|
battery->type = POWER_SUPPLY_TYPE_BATTERY;
|
|
|
|
battery->properties = jz_battery_properties;
|
|
|
|
battery->num_properties = ARRAY_SIZE(jz_battery_properties);
|
|
|
|
battery->get_property = jz_battery_get_property;
|
|
|
|
battery->external_power_changed = jz_battery_external_power_changed;
|
|
|
|
battery->use_for_apm = 1;
|
|
|
|
|
|
|
|
jz_battery->pdata = pdata;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
INIT_DELAYED_WORK(&jz_battery->work, jz_battery_work);
|
|
|
|
|
|
|
|
if (gpio_is_valid(pdata->gpio_charge)) {
|
|
|
|
ret = gpio_request(pdata->gpio_charge, dev_name(&pdev->dev));
|
2010-01-11 04:44:45 +00:00
|
|
|
if (ret) {
|
|
|
|
dev_err(&pdev->dev, "charger state gpio request failed.\n");
|
2010-02-03 16:08:01 +00:00
|
|
|
goto err_free;
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
2010-02-03 16:08:01 +00:00
|
|
|
ret = gpio_direction_input(pdata->gpio_charge);
|
2010-01-11 04:44:45 +00:00
|
|
|
if (ret) {
|
|
|
|
dev_err(&pdev->dev, "charger state gpio set direction failed.\n");
|
2010-02-03 16:08:01 +00:00
|
|
|
goto err_free_gpio;
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
jz_battery->charge_irq = gpio_to_irq(pdata->gpio_charge);
|
|
|
|
|
|
|
|
if (jz_battery->charge_irq >= 0) {
|
|
|
|
ret = request_irq(jz_battery->charge_irq,
|
|
|
|
jz_battery_charge_irq,
|
|
|
|
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
|
|
|
|
dev_name(&pdev->dev), jz_battery);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(&pdev->dev, "Failed to request charge irq: %d\n", ret);
|
|
|
|
goto err_free_gpio;
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
}
|
2010-02-03 16:08:01 +00:00
|
|
|
} else {
|
|
|
|
jz_battery->charge_irq = -1;
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
|
|
|
|
ret = power_supply_register(&pdev->dev, &jz_battery->battery);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(&pdev->dev, "power supply battery register failed.\n");
|
|
|
|
goto err_free_irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
platform_set_drvdata(pdev, jz_battery);
|
|
|
|
schedule_delayed_work(&jz_battery->work, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_free_irq:
|
|
|
|
if (jz_battery->charge_irq >= 0)
|
|
|
|
free_irq(jz_battery->charge_irq, jz_battery);
|
|
|
|
err_free_gpio:
|
|
|
|
if (gpio_is_valid(pdata->gpio_charge))
|
|
|
|
gpio_free(jz_battery->pdata->gpio_charge);
|
|
|
|
err_free:
|
|
|
|
kfree(jz_battery);
|
2010-01-11 04:44:45 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static int jz_battery_remove(struct platform_device *pdev)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
struct jz_battery *jz_battery = platform_get_drvdata(pdev);
|
2010-02-03 13:16:23 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
cancel_delayed_work_sync(&jz_battery->work);
|
|
|
|
|
|
|
|
if (gpio_is_valid(jz_battery->pdata->gpio_charge)) {
|
|
|
|
if (jz_battery->charge_irq >= 0)
|
|
|
|
free_irq(jz_battery->charge_irq, jz_battery);
|
|
|
|
gpio_free(jz_battery->pdata->gpio_charge);
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
power_supply_unregister(&jz_battery->battery);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_PM
|
|
|
|
static int jz_battery_suspend(struct platform_device *pdev, pm_message_t state)
|
|
|
|
{
|
|
|
|
struct jz_battery *jz_battery = platform_get_drvdata(pdev);
|
|
|
|
|
|
|
|
cancel_delayed_work_sync(&jz_battery->work);
|
|
|
|
jz_battery->status = POWER_SUPPLY_STATUS_UNKNOWN;
|
2010-01-11 04:44:45 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static int jz_battery_resume(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct jz_battery *jz_battery = platform_get_drvdata(pdev);
|
|
|
|
|
|
|
|
schedule_delayed_work(&jz_battery->work, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define jz_battery_suspend NULL
|
|
|
|
#define jz_battery_resume NULL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct platform_driver jz_battery_driver = {
|
|
|
|
.probe = jz_battery_probe,
|
|
|
|
.remove = __devexit_p(jz_battery_remove),
|
|
|
|
.suspend = jz_battery_suspend,
|
|
|
|
.resume = jz_battery_resume,
|
2010-01-11 04:44:45 +00:00
|
|
|
.driver = {
|
|
|
|
.name = "jz4740-battery",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static int __init jz_battery_init(void)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
return platform_driver_register(&jz_battery_driver);
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
2010-02-03 16:08:01 +00:00
|
|
|
module_init(jz_battery_init);
|
2010-01-11 04:44:45 +00:00
|
|
|
|
2010-02-03 16:08:01 +00:00
|
|
|
static void __exit jz_battery_exit(void)
|
2010-01-11 04:44:45 +00:00
|
|
|
{
|
2010-02-03 16:08:01 +00:00
|
|
|
platform_driver_unregister(&jz_battery_driver);
|
2010-01-11 04:44:45 +00:00
|
|
|
}
|
2010-02-03 16:08:01 +00:00
|
|
|
module_exit(jz_battery_exit);
|
2010-01-11 04:44:45 +00:00
|
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_AUTHOR("Jiejing Zhang <kzjeef@gmail.com>");
|
|
|
|
MODULE_DESCRIPTION("JZ4720/JZ4740 SoC battery driver");
|