2 * Battery and Power Management code for the Sharp SL-C7xx and SL-Cxx00
5 * Copyright (c) 2004-2005 Richard Purdie
7 * Based on code written by Sharp for 2.4 kernels
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/interrupt.h>
21 #include <linux/platform_device.h>
23 #include <asm/hardware.h>
24 #include <asm/mach-types.h>
27 #include <asm/arch/pm.h>
28 #include <asm/arch/pxa-regs.h>
29 #include <asm/arch/sharpsl.h>
32 struct battery_thresh spitz_battery_levels_acin
[] = {
75 struct battery_thresh spitz_battery_levels_noac
[] = {
118 /* MAX1111 Commands */
119 #define MAXCTRL_PD0 1u << 0
120 #define MAXCTRL_PD1 1u << 1
121 #define MAXCTRL_SGL 1u << 2
122 #define MAXCTRL_UNI 1u << 3
123 #define MAXCTRL_SEL_SH 4
124 #define MAXCTRL_STR 1u << 7
129 int sharpsl_pm_pxa_read_max1111(int channel
)
131 return corgi_ssp_max1111_get((channel
<< MAXCTRL_SEL_SH
) | MAXCTRL_PD0
| MAXCTRL_PD1
132 | MAXCTRL_SGL
| MAXCTRL_UNI
| MAXCTRL_STR
);
135 void sharpsl_pm_pxa_init(void)
137 pxa_gpio_mode(sharpsl_pm
.machinfo
->gpio_acin
| GPIO_IN
);
138 pxa_gpio_mode(sharpsl_pm
.machinfo
->gpio_batfull
| GPIO_IN
);
139 pxa_gpio_mode(sharpsl_pm
.machinfo
->gpio_batlock
| GPIO_IN
);
141 /* Register interrupt handlers */
142 if (request_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_acin
), sharpsl_ac_isr
, SA_INTERRUPT
, "AC Input Detect", sharpsl_ac_isr
)) {
143 dev_err(sharpsl_pm
.dev
, "Could not get irq %d.\n", IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_acin
));
145 else set_irq_type(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_acin
),IRQT_BOTHEDGE
);
147 if (request_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batlock
), sharpsl_fatal_isr
, SA_INTERRUPT
, "Battery Cover", sharpsl_fatal_isr
)) {
148 dev_err(sharpsl_pm
.dev
, "Could not get irq %d.\n", IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batlock
));
150 else set_irq_type(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batlock
),IRQT_FALLING
);
152 if (sharpsl_pm
.machinfo
->gpio_fatal
) {
153 if (request_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_fatal
), sharpsl_fatal_isr
, SA_INTERRUPT
, "Fatal Battery", sharpsl_fatal_isr
)) {
154 dev_err(sharpsl_pm
.dev
, "Could not get irq %d.\n", IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_fatal
));
156 else set_irq_type(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_fatal
),IRQT_FALLING
);
159 if (!machine_is_corgi())
161 /* Register interrupt handler. */
162 if (request_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batfull
), sharpsl_chrg_full_isr
, SA_INTERRUPT
, "CO", sharpsl_chrg_full_isr
)) {
163 dev_err(sharpsl_pm
.dev
, "Could not get irq %d.\n", IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batfull
));
165 else set_irq_type(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batfull
),IRQT_RISING
);
169 void sharpsl_pm_pxa_remove(void)
171 free_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_acin
), sharpsl_ac_isr
);
172 free_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batlock
), sharpsl_fatal_isr
);
174 if (sharpsl_pm
.machinfo
->gpio_fatal
)
175 free_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_fatal
), sharpsl_fatal_isr
);
177 if (!machine_is_corgi())
178 free_irq(IRQ_GPIO(sharpsl_pm
.machinfo
->gpio_batfull
), sharpsl_chrg_full_isr
);