blob: 9134d9d075692ca6c377ad63e9e8b430a827aeca [file] [log] [blame]
Alek Du89507782010-07-13 10:56:25 +01001/* Moorestown PMIC GPIO (access through IPC) driver
2 * Copyright (c) 2008 - 2009, Intel Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 */
17
18/* Supports:
19 * Moorestown platform PMIC chip
20 */
21
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/interrupt.h>
25#include <linux/delay.h>
26#include <linux/stddef.h>
27#include <linux/slab.h>
28#include <linux/ioport.h>
29#include <linux/init.h>
30#include <linux/io.h>
31#include <linux/gpio.h>
Alek Du89507782010-07-13 10:56:25 +010032#include <asm/intel_scu_ipc.h>
33#include <linux/device.h>
34#include <linux/intel_pmic_gpio.h>
35#include <linux/platform_device.h>
36
37#define DRIVER_NAME "pmic_gpio"
38
39/* register offset that IPC driver should use
40 * 8 GPIO + 8 GPOSW (6 controllable) + 8GPO
41 */
42enum pmic_gpio_register {
43 GPIO0 = 0xE0,
44 GPIO7 = 0xE7,
45 GPIOINT = 0xE8,
46 GPOSWCTL0 = 0xEC,
47 GPOSWCTL5 = 0xF1,
48 GPO = 0xF4,
49};
50
51/* bits definition for GPIO & GPOSW */
52#define GPIO_DRV 0x01
53#define GPIO_DIR 0x02
54#define GPIO_DIN 0x04
55#define GPIO_DOU 0x08
56#define GPIO_INTCTL 0x30
57#define GPIO_DBC 0xc0
58
59#define GPOSW_DRV 0x01
60#define GPOSW_DOU 0x08
61#define GPOSW_RDRV 0x30
62
63
64#define NUM_GPIO 24
65
66struct pmic_gpio_irq {
67 spinlock_t lock;
68 u32 trigger[NUM_GPIO];
69 u32 dirty;
70 struct work_struct work;
71};
72
73
74struct pmic_gpio {
75 struct gpio_chip chip;
76 struct pmic_gpio_irq irqtypes;
77 void *gpiointr;
78 int irq;
79 unsigned irq_base;
80};
81
82static void pmic_program_irqtype(int gpio, int type)
83{
84 if (type & IRQ_TYPE_EDGE_RISING)
85 intel_scu_ipc_update_register(GPIO0 + gpio, 0x20, 0x20);
86 else
87 intel_scu_ipc_update_register(GPIO0 + gpio, 0x00, 0x20);
88
89 if (type & IRQ_TYPE_EDGE_FALLING)
90 intel_scu_ipc_update_register(GPIO0 + gpio, 0x10, 0x10);
91 else
92 intel_scu_ipc_update_register(GPIO0 + gpio, 0x00, 0x10);
93};
94
95static void pmic_irqtype_work(struct work_struct *work)
96{
97 struct pmic_gpio_irq *t =
98 container_of(work, struct pmic_gpio_irq, work);
99 unsigned long flags;
100 int i;
101 u16 type;
102
103 spin_lock_irqsave(&t->lock, flags);
104 /* As we drop the lock, we may need multiple scans if we race the
105 pmic_irq_type function */
106 while (t->dirty) {
107 /*
108 * For each pin that has the dirty bit set send an IPC
109 * message to configure the hardware via the PMIC
110 */
111 for (i = 0; i < NUM_GPIO; i++) {
112 if (!(t->dirty & (1 << i)))
113 continue;
114 t->dirty &= ~(1 << i);
115 /* We can't trust the array entry or dirty
116 once the lock is dropped */
117 type = t->trigger[i];
118 spin_unlock_irqrestore(&t->lock, flags);
119 pmic_program_irqtype(i, type);
120 spin_lock_irqsave(&t->lock, flags);
121 }
122 }
123 spin_unlock_irqrestore(&t->lock, flags);
124}
125
126static int pmic_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
127{
128 if (offset > 8) {
129 printk(KERN_ERR
130 "%s: only pin 0-7 support input\n", __func__);
131 return -1;/* we only have 8 GPIO can use as input */
132 }
133 return intel_scu_ipc_update_register(GPIO0 + offset,
134 GPIO_DIR, GPIO_DIR);
135}
136
137static int pmic_gpio_direction_output(struct gpio_chip *chip,
138 unsigned offset, int value)
139{
140 int rc = 0;
141
142 if (offset < 8)/* it is GPIO */
143 rc = intel_scu_ipc_update_register(GPIO0 + offset,
Alek Duffcfff32010-10-04 16:40:35 +0100144 GPIO_DRV | (value ? GPIO_DOU : 0),
145 GPIO_DRV | GPIO_DOU | GPIO_DIR);
Alek Du89507782010-07-13 10:56:25 +0100146 else if (offset < 16)/* it is GPOSW */
147 rc = intel_scu_ipc_update_register(GPOSWCTL0 + offset - 8,
Alek Duffcfff32010-10-04 16:40:35 +0100148 GPOSW_DRV | (value ? GPOSW_DOU : 0),
149 GPOSW_DRV | GPOSW_DOU | GPOSW_RDRV);
Alek Du89507782010-07-13 10:56:25 +0100150 else if (offset > 15 && offset < 24)/* it is GPO */
151 rc = intel_scu_ipc_update_register(GPO,
Alek Duffcfff32010-10-04 16:40:35 +0100152 value ? 1 << (offset - 16) : 0,
153 1 << (offset - 16));
Alek Du89507782010-07-13 10:56:25 +0100154 else {
155 printk(KERN_ERR
156 "%s: invalid PMIC GPIO pin %d!\n", __func__, offset);
157 WARN_ON(1);
158 }
159
160 return rc;
161}
162
163static int pmic_gpio_get(struct gpio_chip *chip, unsigned offset)
164{
165 u8 r;
166 int ret;
167
168 /* we only have 8 GPIO pins we can use as input */
169 if (offset > 8)
170 return -EOPNOTSUPP;
171 ret = intel_scu_ipc_ioread8(GPIO0 + offset, &r);
172 if (ret < 0)
173 return ret;
174 return r & GPIO_DIN;
175}
176
177static void pmic_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
178{
179 if (offset < 8)/* it is GPIO */
180 intel_scu_ipc_update_register(GPIO0 + offset,
Alek Duffcfff32010-10-04 16:40:35 +0100181 GPIO_DRV | (value ? GPIO_DOU : 0),
182 GPIO_DRV | GPIO_DOU);
Alek Du89507782010-07-13 10:56:25 +0100183 else if (offset < 16)/* it is GPOSW */
184 intel_scu_ipc_update_register(GPOSWCTL0 + offset - 8,
Alek Duffcfff32010-10-04 16:40:35 +0100185 GPOSW_DRV | (value ? GPOSW_DOU : 0),
186 GPOSW_DRV | GPOSW_DOU | GPOSW_RDRV);
Alek Du89507782010-07-13 10:56:25 +0100187 else if (offset > 15 && offset < 24) /* it is GPO */
188 intel_scu_ipc_update_register(GPO,
Alek Duffcfff32010-10-04 16:40:35 +0100189 value ? 1 << (offset - 16) : 0,
190 1 << (offset - 16));
Alek Du89507782010-07-13 10:56:25 +0100191}
192
Thomas Gleixnercb8e5e62011-02-05 10:46:30 +0000193static int pmic_irq_type(struct irq_data *data, unsigned type)
Alek Du89507782010-07-13 10:56:25 +0100194{
Thomas Gleixnercb8e5e62011-02-05 10:46:30 +0000195 struct pmic_gpio *pg = irq_data_get_irq_chip_data(data);
196 u32 gpio = data->irq - pg->irq_base;
Alek Du89507782010-07-13 10:56:25 +0100197 unsigned long flags;
198
Axel Lin41196172010-10-08 17:54:31 +0800199 if (gpio >= pg->chip.ngpio)
Alek Du89507782010-07-13 10:56:25 +0100200 return -EINVAL;
201
202 spin_lock_irqsave(&pg->irqtypes.lock, flags);
203 pg->irqtypes.trigger[gpio] = type;
204 pg->irqtypes.dirty |= (1 << gpio);
205 spin_unlock_irqrestore(&pg->irqtypes.lock, flags);
206 schedule_work(&pg->irqtypes.work);
207 return 0;
208}
209
Alek Du89507782010-07-13 10:56:25 +0100210static int pmic_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
211{
212 struct pmic_gpio *pg = container_of(chip, struct pmic_gpio, chip);
213
214 return pg->irq_base + offset;
215}
216
217/* the gpiointr register is read-clear, so just do nothing. */
Thomas Gleixnercb8e5e62011-02-05 10:46:30 +0000218static void pmic_irq_unmask(struct irq_data *data) { }
Alek Du89507782010-07-13 10:56:25 +0100219
Thomas Gleixnercb8e5e62011-02-05 10:46:30 +0000220static void pmic_irq_mask(struct irq_data *data) { }
Alek Du89507782010-07-13 10:56:25 +0100221
222static struct irq_chip pmic_irqchip = {
223 .name = "PMIC-GPIO",
Thomas Gleixnercb8e5e62011-02-05 10:46:30 +0000224 .irq_mask = pmic_irq_mask,
225 .irq_unmask = pmic_irq_unmask,
226 .irq_set_type = pmic_irq_type,
Alek Du89507782010-07-13 10:56:25 +0100227};
228
229static void pmic_irq_handler(unsigned irq, struct irq_desc *desc)
230{
231 struct pmic_gpio *pg = (struct pmic_gpio *)get_irq_data(irq);
232 u8 intsts = *((u8 *)pg->gpiointr + 4);
233 int gpio;
234
235 for (gpio = 0; gpio < 8; gpio++) {
236 if (intsts & (1 << gpio)) {
237 pr_debug("pmic pin %d triggered\n", gpio);
238 generic_handle_irq(pg->irq_base + gpio);
239 }
240 }
Thomas Gleixner180e9d12011-02-05 10:46:28 +0000241 desc->chip->irq_eoi(get_irq_desc_chip_data(desc));
Alek Du89507782010-07-13 10:56:25 +0100242}
243
244static int __devinit platform_pmic_gpio_probe(struct platform_device *pdev)
245{
246 struct device *dev = &pdev->dev;
247 int irq = platform_get_irq(pdev, 0);
248 struct intel_pmic_gpio_platform_data *pdata = dev->platform_data;
249
250 struct pmic_gpio *pg;
251 int retval;
252 int i;
253
254 if (irq < 0) {
255 dev_dbg(dev, "no IRQ line\n");
256 return -EINVAL;
257 }
258
259 if (!pdata || !pdata->gpio_base || !pdata->irq_base) {
260 dev_dbg(dev, "incorrect or missing platform data\n");
261 return -EINVAL;
262 }
263
264 pg = kzalloc(sizeof(*pg), GFP_KERNEL);
265 if (!pg)
266 return -ENOMEM;
267
268 dev_set_drvdata(dev, pg);
269
270 pg->irq = irq;
271 /* setting up SRAM mapping for GPIOINT register */
272 pg->gpiointr = ioremap_nocache(pdata->gpiointr, 8);
273 if (!pg->gpiointr) {
274 printk(KERN_ERR "%s: Can not map GPIOINT.\n", __func__);
275 retval = -EINVAL;
276 goto err2;
277 }
278 pg->irq_base = pdata->irq_base;
279 pg->chip.label = "intel_pmic";
280 pg->chip.direction_input = pmic_gpio_direction_input;
281 pg->chip.direction_output = pmic_gpio_direction_output;
282 pg->chip.get = pmic_gpio_get;
283 pg->chip.set = pmic_gpio_set;
284 pg->chip.to_irq = pmic_gpio_to_irq;
285 pg->chip.base = pdata->gpio_base;
286 pg->chip.ngpio = NUM_GPIO;
287 pg->chip.can_sleep = 1;
288 pg->chip.dev = dev;
289
290 INIT_WORK(&pg->irqtypes.work, pmic_irqtype_work);
291 spin_lock_init(&pg->irqtypes.lock);
292
293 pg->chip.dev = dev;
294 retval = gpiochip_add(&pg->chip);
295 if (retval) {
296 printk(KERN_ERR "%s: Can not add pmic gpio chip.\n", __func__);
297 goto err;
298 }
299 set_irq_data(pg->irq, pg);
300 set_irq_chained_handler(pg->irq, pmic_irq_handler);
301 for (i = 0; i < 8; i++) {
302 set_irq_chip_and_handler_name(i + pg->irq_base, &pmic_irqchip,
303 handle_simple_irq, "demux");
304 set_irq_chip_data(i + pg->irq_base, pg);
305 }
306 return 0;
307err:
308 iounmap(pg->gpiointr);
309err2:
310 kfree(pg);
311 return retval;
312}
313
314/* at the same time, register a platform driver
315 * this supports the sfi 0.81 fw */
316static struct platform_driver platform_pmic_gpio_driver = {
317 .driver = {
318 .name = DRIVER_NAME,
319 .owner = THIS_MODULE,
320 },
321 .probe = platform_pmic_gpio_probe,
322};
323
324static int __init platform_pmic_gpio_init(void)
325{
326 return platform_driver_register(&platform_pmic_gpio_driver);
327}
328
329subsys_initcall(platform_pmic_gpio_init);
330
331MODULE_AUTHOR("Alek Du <alek.du@intel.com>");
332MODULE_DESCRIPTION("Intel Moorestown PMIC GPIO driver");
333MODULE_LICENSE("GPL v2");