summaryrefslogtreecommitdiffstats
path: root/target/linux/xburst/files-2.6.32/drivers/power/jz4740-battery.c
blob: f4c18a57b5089d4d43b70baa4a5bf8e9783d21fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/*
 * Battery measurement code for Ingenic JZ SOC.
 *
 * based on tosa_battery.c
 *
 * Copyright (C) 2008 Marek Vasut <marek.vasut@gmail.com>
 * Copyright (C) 2009 Jiejing Zhang <kzjeef@gmail.com>
 *
 * 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>

#include <linux/power/jz4740-battery.h>
#include <linux/jz4740-adc.h>

struct jz_battery_info {
	struct power_supply bat;
	int bat_status;
	struct jz_batt_info *pdata;
	struct mutex work_lock;
	struct workqueue_struct *monitor_wqueue;
	struct delayed_work bat_work;
};

#define ps_to_jz_battery(x) container_of((x), struct jz_battery_info, bat);

/*********************************************************************
 *		Battery properties
 *********************************************************************/

static long jz_read_bat(struct power_supply *psy)
{
	struct jz_battery_info *bat_info = ps_to_jz_battery(psy);
	enum jz_adc_battery_scale scale;

	if (bat_info->pdata->max_voltag > 2500000)
		scale = JZ_ADC_BATTERY_SCALE_7V5;
	else
		scale = JZ_ADC_BATTERY_SCALE_2V5;

	return jz4740_adc_read_battery_voltage(psy->dev->parent->parent, scale);
}

static int jz_bat_get_capacity(struct power_supply *psy)
{
	int ret;
	struct jz_battery_info *bat_info = ps_to_jz_battery(psy);

	ret = jz_read_bat(psy);

	if (ret < 0)
		return ret;

	ret = (ret - bat_info->pdata->min_voltag) * 100
		/ (bat_info->pdata->max_voltag - bat_info->pdata->min_voltag);

	if (ret > 100)
		ret = 100;
	else if (ret < 0)
		ret = 0;

	return ret;
}

static int jz_bat_get_property(struct power_supply *psy,
				enum power_supply_property psp,
				union power_supply_propval *val)
{
	struct jz_battery_info *bat_info = ps_to_jz_battery(psy)
	
	switch (psp) {
	case POWER_SUPPLY_PROP_STATUS:
		val->intval = bat_info->bat_status;
		break;
	case POWER_SUPPLY_PROP_TECHNOLOGY:
		val->intval = bat_info->pdata->batt_tech;
		break;
	case POWER_SUPPLY_PROP_HEALTH:
		if(jz_read_bat(psy) < bat_info->pdata->min_voltag) {
			dev_dbg(psy->dev, "%s: battery is dead,"
				"voltage too low!\n", __func__);
			val->intval = POWER_SUPPLY_HEALTH_DEAD;
		} else {
			dev_dbg(psy->dev, "%s: battery is good,"
				"voltage normal.\n", __func__);
			val->intval = POWER_SUPPLY_HEALTH_GOOD;
		}
		break;
	case POWER_SUPPLY_PROP_CAPACITY:
		val->intval = jz_bat_get_capacity(psy);
		dev_dbg(psy->dev, "%s: battery_capacity = %d\n",
			__func__, val->intval);
		break;
	case POWER_SUPPLY_PROP_VOLTAGE_NOW:
		val->intval = jz_read_bat(psy);
		if (val->intval < 0)
			return val->intval;
		break;
	case POWER_SUPPLY_PROP_VOLTAGE_MAX:
	case POWER_SUPPLY_PROP_VOLTAGE_MAX_DESIGN:
		val->intval = bat_info->pdata->max_voltag;
		break;
	case POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN:
		val->intval = bat_info->pdata->min_voltag;
		break;
	case POWER_SUPPLY_PROP_PRESENT:
		val->intval = 1;
		break;
	default:
		return -EINVAL;
	}
	return 0;
}

static void jz_bat_external_power_changed(struct power_supply *psy)
{
	struct jz_battery_info *bat_info = ps_to_jz_battery(psy);
	
	cancel_delayed_work(&bat_info->bat_work);
	queue_delayed_work(bat_info->monitor_wqueue, &bat_info->bat_work, HZ / 8);
}

static char *status_text[] = {
	[POWER_SUPPLY_STATUS_UNKNOWN] =		"Unknown",
	[POWER_SUPPLY_STATUS_CHARGING] =	"Charging",
	[POWER_SUPPLY_STATUS_DISCHARGING] =	"Discharging",
	[POWER_SUPPLY_STATUS_NOT_CHARGING] =    "Not charging",
};

static void jz_bat_update(struct power_supply *psy)
{
	struct jz_battery_info *bat_info = ps_to_jz_battery(psy);
		
	int old_status = bat_info->bat_status;
	static unsigned long old_batt_vol = 0;
	unsigned long batt_vol = jz_read_bat(psy);
	
	mutex_lock(&bat_info->work_lock);

	if (gpio_is_valid(bat_info->pdata->charg_stat_gpio)) {
		if(!gpio_get_value(bat_info->pdata->charg_stat_gpio))
			bat_info->bat_status = POWER_SUPPLY_STATUS_CHARGING;
		else
			bat_info->bat_status = POWER_SUPPLY_STATUS_NOT_CHARGING;
		dev_dbg(psy->dev, "%s: battery status=%s\n",
			__func__, status_text[bat_info->bat_status]);
		
		if (old_status != bat_info->bat_status) {
			dev_dbg(psy->dev, "%s %s -> %s\n",
				psy->name,
				status_text[old_status],
				status_text[bat_info->bat_status]);

			power_supply_changed(psy);
		}
	}

	if (old_batt_vol - batt_vol > 50000) {
		dev_dbg(psy->dev, "voltage change : %ld -> %ld\n",
			old_batt_vol, batt_vol);
		power_supply_changed(psy);
		old_batt_vol = batt_vol;
	}

	mutex_unlock(&bat_info->work_lock);
}

static enum power_supply_property jz_bat_main_props[] = {
	POWER_SUPPLY_PROP_STATUS,
	POWER_SUPPLY_PROP_TECHNOLOGY,
	POWER_SUPPLY_PROP_HEALTH,
	POWER_SUPPLY_PROP_CAPACITY, /* in percents! */
	POWER_SUPPLY_PROP_VOLTAGE_NOW,
	POWER_SUPPLY_PROP_VOLTAGE_MAX,
	POWER_SUPPLY_PROP_VOLTAGE_MIN_DESIGN,
	POWER_SUPPLY_PROP_PRESENT,
};

struct power_supply bat_ps = {
	.name			= "battery",
	.type			= POWER_SUPPLY_TYPE_BATTERY,
	.properties		= jz_bat_main_props,
	.num_properties		= ARRAY_SIZE(jz_bat_main_props),
	.get_property		= jz_bat_get_property,
	.external_power_changed = jz_bat_external_power_changed,
	.use_for_apm		= 1,
};

static void jz_bat_work(struct work_struct *work)
{
	/* query interval too small will increase system workload*/
	const int interval = HZ * 30;
	struct jz_battery_info *bat_info = container_of(work,struct jz_battery_info, bat_work.work);

	jz_bat_update(&bat_info->bat);
	queue_delayed_work(bat_info->monitor_wqueue,
			   &bat_info->bat_work, interval);
}

#ifdef CONFIG_PM
static int jz_bat_suspend(struct platform_device *pdev, pm_message_t state)
{
	struct jz_battery_info *bat_info = platform_get_drvdata(pdev);
	
	bat_info->bat_status =  POWER_SUPPLY_STATUS_UNKNOWN;

	return 0;
}

static int jz_bat_resume(struct platform_device *pdev)
{
	struct jz_battery_info *bat_info = platform_get_drvdata(pdev);

	bat_info->bat_status =  POWER_SUPPLY_STATUS_UNKNOWN;

	cancel_delayed_work(&bat_info->bat_work);
	queue_delayed_work(bat_info->monitor_wqueue, &bat_info->bat_work, HZ/10);

	return 0;
}
#else
#define jz_bat_suspend NULL
#define jz_bat_resume NULL
#endif

static int jz_bat_probe(struct platform_device *pdev)
{
	int ret = 0;
	struct jz_battery_info *bat_info;

	if (!pdev->dev.platform_data) {
		dev_err(&pdev->dev, "Please set battery info\n");
		return -EINVAL;
	}

	bat_info = kzalloc(sizeof(struct jz_battery_info), GFP_KERNEL);

	if (!bat_info) {
		return -ENOMEM;
	}

	platform_set_drvdata(pdev, bat_info);
	bat_info->pdata = pdev->dev.platform_data;
	bat_info->bat = bat_ps;
	mutex_init(&bat_info->work_lock);
	INIT_DELAYED_WORK(&bat_info->bat_work, jz_bat_work);

	if (gpio_is_valid(bat_info->pdata->charg_stat_gpio)) {
		ret = gpio_request(bat_info->pdata->charg_stat_gpio, "CHARG STAT");
		if (ret) {
			dev_err(&pdev->dev, "charger state gpio request failed.\n");
			goto err_charg_gpio_request;
		}
		ret = gpio_direction_input(bat_info->pdata->charg_stat_gpio);
		if (ret) {
			dev_err(&pdev->dev, "charger state gpio set direction failed.\n");
			goto err_charg_gpio_direction;
		}

		ret = power_supply_register(&pdev->dev, &bat_info->bat);
		if (ret) {
			dev_err(&pdev->dev, "power supply battery register failed.\n");
			goto err_power_register_bat;
		} else {
			bat_info->monitor_wqueue = create_singlethread_workqueue("jz_battery");
			if (!bat_info->monitor_wqueue) {
				return -ESRCH;
			}
			queue_delayed_work(bat_info->monitor_wqueue, &bat_info->bat_work, HZ * 1);
		}
	}
	printk(KERN_INFO "jz_bat init success.\n");
	return ret;

err_power_register_bat:
err_charg_gpio_direction:
	gpio_free(bat_info->pdata->charg_stat_gpio);
err_charg_gpio_request:
	kfree(bat_info);
	return ret;
}

static int jz_bat_remove(struct platform_device *pdev)
{
	struct jz_battery_info *bat_info = platform_get_drvdata(pdev);

	if (bat_info->pdata) {
		if (gpio_is_valid(bat_info->pdata->charg_stat_gpio))
			gpio_free(bat_info->pdata->charg_stat_gpio);
	}

	power_supply_unregister(&bat_ps);

	return 0;
}

static struct platform_driver jz_bat_driver = {
	.probe		= jz_bat_probe,
	.remove		= __devexit_p(jz_bat_remove),
	.suspend	= jz_bat_suspend,
	.resume		= jz_bat_resume,
	.driver = {
		.name = "jz4740-battery",
		.owner = THIS_MODULE,
	},
};

static int __init jz_bat_init(void)
{
	return platform_driver_register(&jz_bat_driver);
}
module_init(jz_bat_init);

static void __exit jz_bat_exit(void)
{
	platform_driver_unregister(&jz_bat_driver);
}
module_exit(jz_bat_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Jiejing Zhang <kzjeef@gmail.com>");
MODULE_DESCRIPTION("JZ4720/JZ4740 SoC battery driver");