blob: 39e265cfc86d1af6eefb5362a9a7cc2f5cedf189 [file] [log] [blame]
Richard Purdied72f25b2005-11-13 10:07:46 +00001/*
2 * Battery and Power Management code for the Sharp SL-C7xx
3 *
4 * Copyright (c) 2005 Richard Purdie
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/stat.h>
14#include <linux/init.h>
15#include <linux/kernel.h>
16#include <linux/delay.h>
Eric Miaoe63f5912010-01-08 13:32:46 +080017#include <linux/gpio.h>
Haojian Zhuang6f7c0472011-12-08 15:07:19 +080018#include <linux/gpio-pxa.h>
Richard Purdied72f25b2005-11-13 10:07:46 +000019#include <linux/interrupt.h>
20#include <linux/platform_device.h>
Russell King14fca612007-02-27 12:10:07 +000021#include <linux/apm-emulation.h>
22
Richard Purdied72f25b2005-11-13 10:07:46 +000023#include <asm/irq.h>
24#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/hardware.h>
Richard Purdied72f25b2005-11-13 10:07:46 +000026
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/corgi.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/pxa2xx-regs.h>
Eric Miao04e4ad22010-07-05 00:03:34 +080029#include <mach/sharpsl_pm.h>
Eric Miaoe63f5912010-01-08 13:32:46 +080030
31#include "generic.h"
Richard Purdied72f25b2005-11-13 10:07:46 +000032
Richard Purdief8703dc2006-06-19 19:58:52 +010033#define SHARPSL_CHARGE_ON_VOLT 0x99 /* 2.9V */
34#define SHARPSL_CHARGE_ON_TEMP 0xe0 /* 2.9V */
35#define SHARPSL_CHARGE_ON_ACIN_HIGH 0x9b /* 6V */
36#define SHARPSL_CHARGE_ON_ACIN_LOW 0x34 /* 2V */
37#define SHARPSL_FATAL_ACIN_VOLT 182 /* 3.45V */
38#define SHARPSL_FATAL_NOACIN_VOLT 170 /* 3.40V */
39
Eric Miaoe63f5912010-01-08 13:32:46 +080040static struct gpio charger_gpios[] = {
41 { CORGI_GPIO_ADC_TEMP_ON, GPIOF_OUT_INIT_LOW, "ADC Temp On" },
42 { CORGI_GPIO_CHRG_ON, GPIOF_OUT_INIT_LOW, "Charger On" },
43 { CORGI_GPIO_CHRG_UKN, GPIOF_OUT_INIT_LOW, "Charger Unknown" },
Haojian Zhuang9bf448c2011-10-17 13:37:23 +080044 { CORGI_GPIO_AC_IN, GPIOF_IN, "Charger Detection" },
Eric Miaoe63f5912010-01-08 13:32:46 +080045 { CORGI_GPIO_KEY_INT, GPIOF_IN, "Key Interrupt" },
Haojian Zhuang9bf448c2011-10-17 13:37:23 +080046 { CORGI_GPIO_WAKEUP, GPIOF_IN, "System wakeup notification" },
Eric Miaoe63f5912010-01-08 13:32:46 +080047};
48
Richard Purdied72f25b2005-11-13 10:07:46 +000049static void corgi_charger_init(void)
50{
Eric Miaoe63f5912010-01-08 13:32:46 +080051 gpio_request_array(ARRAY_AND_SIZE(charger_gpios));
Richard Purdied72f25b2005-11-13 10:07:46 +000052}
53
54static void corgi_measure_temp(int on)
55{
Eric Miaoe63f5912010-01-08 13:32:46 +080056 gpio_set_value(CORGI_GPIO_ADC_TEMP_ON, on);
Richard Purdied72f25b2005-11-13 10:07:46 +000057}
58
59static void corgi_charge(int on)
60{
61 if (on) {
62 if (machine_is_corgi() && (sharpsl_pm.flags & SHARPSL_SUSPENDED)) {
Eric Miaoe63f5912010-01-08 13:32:46 +080063 gpio_set_value(CORGI_GPIO_CHRG_ON, 0);
64 gpio_set_value(CORGI_GPIO_CHRG_UKN, 1);
Richard Purdied72f25b2005-11-13 10:07:46 +000065 } else {
Eric Miaoe63f5912010-01-08 13:32:46 +080066 gpio_set_value(CORGI_GPIO_CHRG_ON, 1);
67 gpio_set_value(CORGI_GPIO_CHRG_UKN, 0);
Richard Purdied72f25b2005-11-13 10:07:46 +000068 }
69 } else {
Eric Miaoe63f5912010-01-08 13:32:46 +080070 gpio_set_value(CORGI_GPIO_CHRG_ON, 0);
71 gpio_set_value(CORGI_GPIO_CHRG_UKN, 0);
Richard Purdied72f25b2005-11-13 10:07:46 +000072 }
73}
74
75static void corgi_discharge(int on)
76{
Eric Miaoe63f5912010-01-08 13:32:46 +080077 gpio_set_value(CORGI_GPIO_DISCHARGE_ON, on);
Richard Purdied72f25b2005-11-13 10:07:46 +000078}
79
80static void corgi_presuspend(void)
81{
Richard Purdied72f25b2005-11-13 10:07:46 +000082}
83
84static void corgi_postsuspend(void)
85{
86}
87
88/*
89 * Check what brought us out of the suspend.
90 * Return: 0 to sleep, otherwise wake
91 */
92static int corgi_should_wakeup(unsigned int resume_on_alarm)
93{
94 int is_resume = 0;
95
Haojian Zhuang9bf448c2011-10-17 13:37:23 +080096 dev_dbg(sharpsl_pm.dev, "PEDR = %x, GPIO_AC_IN = %d, "
97 "GPIO_CHRG_FULL = %d, GPIO_KEY_INT = %d, GPIO_WAKEUP = %d\n",
98 PEDR, gpio_get_value(CORGI_GPIO_AC_IN),
99 gpio_get_value(CORGI_GPIO_CHRG_FULL),
100 gpio_get_value(CORGI_GPIO_KEY_INT),
101 gpio_get_value(CORGI_GPIO_WAKEUP));
Richard Purdied72f25b2005-11-13 10:07:46 +0000102
103 if ((PEDR & GPIO_bit(CORGI_GPIO_AC_IN))) {
Richard Purdieb7557de2006-01-05 20:44:55 +0000104 if (sharpsl_pm.machinfo->read_devdata(SHARPSL_STATUS_ACIN)) {
Richard Purdied72f25b2005-11-13 10:07:46 +0000105 /* charge on */
106 dev_dbg(sharpsl_pm.dev, "ac insert\n");
107 sharpsl_pm.flags |= SHARPSL_DO_OFFLINE_CHRG;
108 } else {
109 /* charge off */
110 dev_dbg(sharpsl_pm.dev, "ac remove\n");
Richard Purdieb7557de2006-01-05 20:44:55 +0000111 sharpsl_pm_led(SHARPSL_LED_OFF);
112 sharpsl_pm.machinfo->charge(0);
Richard Purdied72f25b2005-11-13 10:07:46 +0000113 sharpsl_pm.charge_mode = CHRG_OFF;
114 }
115 }
116
117 if ((PEDR & GPIO_bit(CORGI_GPIO_CHRG_FULL)))
118 dev_dbg(sharpsl_pm.dev, "Charge full interrupt\n");
119
120 if (PEDR & GPIO_bit(CORGI_GPIO_KEY_INT))
121 is_resume |= GPIO_bit(CORGI_GPIO_KEY_INT);
122
123 if (PEDR & GPIO_bit(CORGI_GPIO_WAKEUP))
124 is_resume |= GPIO_bit(CORGI_GPIO_WAKEUP);
125
126 if (resume_on_alarm && (PEDR & PWER_RTC))
127 is_resume |= PWER_RTC;
128
129 dev_dbg(sharpsl_pm.dev, "is_resume: %x\n",is_resume);
130 return is_resume;
131}
132
133static unsigned long corgi_charger_wakeup(void)
134{
Haojian Zhuang9bf448c2011-10-17 13:37:23 +0800135 unsigned long ret;
136
137 ret = (!gpio_get_value(CORGI_GPIO_AC_IN) << GPIO_bit(CORGI_GPIO_AC_IN))
138 | (!gpio_get_value(CORGI_GPIO_KEY_INT)
139 << GPIO_bit(CORGI_GPIO_KEY_INT))
140 | (!gpio_get_value(CORGI_GPIO_WAKEUP)
141 << GPIO_bit(CORGI_GPIO_WAKEUP));
142 return ret;
Richard Purdied72f25b2005-11-13 10:07:46 +0000143}
144
Richard Purdieb7557de2006-01-05 20:44:55 +0000145unsigned long corgipm_read_devdata(int type)
Richard Purdied72f25b2005-11-13 10:07:46 +0000146{
Richard Purdieb7557de2006-01-05 20:44:55 +0000147 switch(type) {
148 case SHARPSL_STATUS_ACIN:
Haojian Zhuang9bf448c2011-10-17 13:37:23 +0800149 return !gpio_get_value(CORGI_GPIO_AC_IN);
Richard Purdieb7557de2006-01-05 20:44:55 +0000150 case SHARPSL_STATUS_LOCK:
Eric Miao05732d7e2010-07-04 23:45:36 +0800151 return gpio_get_value(sharpsl_pm.machinfo->gpio_batlock);
Richard Purdieb7557de2006-01-05 20:44:55 +0000152 case SHARPSL_STATUS_CHRGFULL:
Eric Miao05732d7e2010-07-04 23:45:36 +0800153 return gpio_get_value(sharpsl_pm.machinfo->gpio_batfull);
Richard Purdieb7557de2006-01-05 20:44:55 +0000154 case SHARPSL_STATUS_FATAL:
Eric Miao05732d7e2010-07-04 23:45:36 +0800155 return gpio_get_value(sharpsl_pm.machinfo->gpio_fatal);
Richard Purdieb7557de2006-01-05 20:44:55 +0000156 case SHARPSL_ACIN_VOLT:
157 return sharpsl_pm_pxa_read_max1111(MAX1111_ACIN_VOLT);
158 case SHARPSL_BATT_TEMP:
159 return sharpsl_pm_pxa_read_max1111(MAX1111_BATT_TEMP);
160 case SHARPSL_BATT_VOLT:
161 default:
162 return sharpsl_pm_pxa_read_max1111(MAX1111_BATT_VOLT);
163 }
Richard Purdied72f25b2005-11-13 10:07:46 +0000164}
165
166static struct sharpsl_charger_machinfo corgi_pm_machinfo = {
167 .init = corgi_charger_init,
Dmitry Eremin-Solenikovd48898a2009-03-28 18:18:52 +0300168 .exit = NULL,
Richard Purdied72f25b2005-11-13 10:07:46 +0000169 .gpio_batlock = CORGI_GPIO_BAT_COVER,
170 .gpio_acin = CORGI_GPIO_AC_IN,
171 .gpio_batfull = CORGI_GPIO_CHRG_FULL,
Richard Purdied72f25b2005-11-13 10:07:46 +0000172 .discharge = corgi_discharge,
173 .charge = corgi_charge,
Richard Purdied72f25b2005-11-13 10:07:46 +0000174 .measure_temp = corgi_measure_temp,
175 .presuspend = corgi_presuspend,
176 .postsuspend = corgi_postsuspend,
Richard Purdieb7557de2006-01-05 20:44:55 +0000177 .read_devdata = corgipm_read_devdata,
Richard Purdied72f25b2005-11-13 10:07:46 +0000178 .charger_wakeup = corgi_charger_wakeup,
179 .should_wakeup = corgi_should_wakeup,
Dmitry Baryshkov5cbff962008-10-28 20:26:40 +0300180#if defined(CONFIG_LCD_CORGI)
181 .backlight_limit = corgi_lcd_limit_intensity,
Russell King02a8e762008-04-20 17:15:32 +0100182#endif
Richard Purdief8703dc2006-06-19 19:58:52 +0100183 .charge_on_volt = SHARPSL_CHARGE_ON_VOLT,
184 .charge_on_temp = SHARPSL_CHARGE_ON_TEMP,
185 .charge_acin_high = SHARPSL_CHARGE_ON_ACIN_HIGH,
186 .charge_acin_low = SHARPSL_CHARGE_ON_ACIN_LOW,
187 .fatal_acin_volt = SHARPSL_FATAL_ACIN_VOLT,
188 .fatal_noacin_volt= SHARPSL_FATAL_NOACIN_VOLT,
189 .bat_levels = 40,
Pavel Machek0ba01eb2009-10-22 22:16:34 +0200190 .bat_levels_noac = sharpsl_battery_levels_noac,
191 .bat_levels_acin = sharpsl_battery_levels_acin,
Richard Purdied72f25b2005-11-13 10:07:46 +0000192 .status_high_acin = 188,
193 .status_low_acin = 178,
194 .status_high_noac = 185,
195 .status_low_noac = 175,
196};
197
198static struct platform_device *corgipm_device;
199
200static int __devinit corgipm_init(void)
201{
202 int ret;
203
Dmitry Baryshkov043fbc02008-05-31 16:16:54 +0100204 if (!machine_is_corgi() && !machine_is_shepherd()
205 && !machine_is_husky())
206 return -ENODEV;
207
Richard Purdied72f25b2005-11-13 10:07:46 +0000208 corgipm_device = platform_device_alloc("sharpsl-pm", -1);
209 if (!corgipm_device)
210 return -ENOMEM;
211
Richard Purdief8703dc2006-06-19 19:58:52 +0100212 if (!machine_is_corgi())
213 corgi_pm_machinfo.batfull_irq = 1;
214
Richard Purdied72f25b2005-11-13 10:07:46 +0000215 corgipm_device->dev.platform_data = &corgi_pm_machinfo;
216 ret = platform_device_add(corgipm_device);
217
218 if (ret)
219 platform_device_put(corgipm_device);
220
221 return ret;
222}
223
224static void corgipm_exit(void)
225{
226 platform_device_unregister(corgipm_device);
227}
228
229module_init(corgipm_init);
230module_exit(corgipm_exit);