blob: bd6571e0097a8be17b8fe3c27db173f3c8d9438b [file] [log] [blame]
Alek Du8bf02612009-09-22 16:46:36 -07001/* langwell_gpio.c Moorestown platform Langwell chip GPIO 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 Langwell chip.
Alek Du8081c842010-05-26 14:42:25 -070020 * Medfield platform Penwell chip.
Alan Cox72b43792010-10-27 15:33:23 -070021 * Whitney point.
Alek Du8bf02612009-09-22 16:46:36 -070022 */
23
24#include <linux/module.h>
25#include <linux/pci.h>
Alan Cox72b43792010-10-27 15:33:23 -070026#include <linux/platform_device.h>
Alek Du8bf02612009-09-22 16:46:36 -070027#include <linux/kernel.h>
28#include <linux/delay.h>
29#include <linux/stddef.h>
30#include <linux/interrupt.h>
31#include <linux/init.h>
32#include <linux/irq.h>
33#include <linux/io.h>
34#include <linux/gpio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Kristen Carlson Accardi78128032011-05-10 14:23:45 +010036#include <linux/pm_runtime.h>
Alek Du8bf02612009-09-22 16:46:36 -070037
Alek Du8081c842010-05-26 14:42:25 -070038/*
39 * Langwell chip has 64 pins and thus there are 2 32bit registers to control
40 * each feature, while Penwell chip has 96 pins for each block, and need 3 32bit
41 * registers to control them, so we only define the order here instead of a
42 * structure, to get a bit offset for a pin (use GPDR as an example):
43 *
44 * nreg = ngpio / 32;
45 * reg = offset / 32;
46 * bit = offset % 32;
47 * reg_addr = reg_base + GPDR * nreg * 4 + reg * 4;
48 *
49 * so the bit of reg_addr is to control pin offset's GPDR feature
50*/
51
52enum GPIO_REG {
53 GPLR = 0, /* pin level read-only */
54 GPDR, /* pin direction */
55 GPSR, /* pin set */
56 GPCR, /* pin clear */
57 GRER, /* rising edge detect */
58 GFER, /* falling edge detect */
59 GEDR, /* edge detect result */
Alek Du8bf02612009-09-22 16:46:36 -070060};
61
62struct lnw_gpio {
63 struct gpio_chip chip;
Alek Du8081c842010-05-26 14:42:25 -070064 void *reg_base;
Alek Du8bf02612009-09-22 16:46:36 -070065 spinlock_t lock;
66 unsigned irq_base;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +010067 struct pci_dev *pdev;
Alek Du8bf02612009-09-22 16:46:36 -070068};
69
Alek Du8081c842010-05-26 14:42:25 -070070static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned offset,
71 enum GPIO_REG reg_type)
Alek Du8bf02612009-09-22 16:46:36 -070072{
73 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
Alek Du8081c842010-05-26 14:42:25 -070074 unsigned nreg = chip->ngpio / 32;
Alek Du8bf02612009-09-22 16:46:36 -070075 u8 reg = offset / 32;
Alek Du8081c842010-05-26 14:42:25 -070076 void __iomem *ptr;
Alek Du8bf02612009-09-22 16:46:36 -070077
Alek Du8081c842010-05-26 14:42:25 -070078 ptr = (void __iomem *)(lnw->reg_base + reg_type * nreg * 4 + reg * 4);
79 return ptr;
80}
81
82static int lnw_gpio_get(struct gpio_chip *chip, unsigned offset)
83{
84 void __iomem *gplr = gpio_reg(chip, offset, GPLR);
85
Alek Du8bf02612009-09-22 16:46:36 -070086 return readl(gplr) & BIT(offset % 32);
87}
88
89static void lnw_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
90{
Alek Du8bf02612009-09-22 16:46:36 -070091 void __iomem *gpsr, *gpcr;
92
93 if (value) {
Alek Du8081c842010-05-26 14:42:25 -070094 gpsr = gpio_reg(chip, offset, GPSR);
Alek Du8bf02612009-09-22 16:46:36 -070095 writel(BIT(offset % 32), gpsr);
96 } else {
Alek Du8081c842010-05-26 14:42:25 -070097 gpcr = gpio_reg(chip, offset, GPCR);
Alek Du8bf02612009-09-22 16:46:36 -070098 writel(BIT(offset % 32), gpcr);
99 }
100}
101
102static int lnw_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
103{
104 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
Alek Du8081c842010-05-26 14:42:25 -0700105 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700106 u32 value;
107 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700108
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100109 if (lnw->pdev)
110 pm_runtime_get(&lnw->pdev->dev);
111
Alek Du8bf02612009-09-22 16:46:36 -0700112 spin_lock_irqsave(&lnw->lock, flags);
113 value = readl(gpdr);
114 value &= ~BIT(offset % 32);
115 writel(value, gpdr);
116 spin_unlock_irqrestore(&lnw->lock, flags);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100117
118 if (lnw->pdev)
119 pm_runtime_put(&lnw->pdev->dev);
120
Alek Du8bf02612009-09-22 16:46:36 -0700121 return 0;
122}
123
124static int lnw_gpio_direction_output(struct gpio_chip *chip,
125 unsigned offset, int value)
126{
127 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
Alek Du8081c842010-05-26 14:42:25 -0700128 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700129 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700130
131 lnw_gpio_set(chip, offset, value);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100132
133 if (lnw->pdev)
134 pm_runtime_get(&lnw->pdev->dev);
135
Alek Du8bf02612009-09-22 16:46:36 -0700136 spin_lock_irqsave(&lnw->lock, flags);
137 value = readl(gpdr);
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700138 value |= BIT(offset % 32);
Alek Du8bf02612009-09-22 16:46:36 -0700139 writel(value, gpdr);
140 spin_unlock_irqrestore(&lnw->lock, flags);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100141
142 if (lnw->pdev)
143 pm_runtime_put(&lnw->pdev->dev);
144
Alek Du8bf02612009-09-22 16:46:36 -0700145 return 0;
146}
147
148static int lnw_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
149{
150 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
151 return lnw->irq_base + offset;
152}
153
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800154static int lnw_irq_type(struct irq_data *d, unsigned type)
Alek Du8bf02612009-09-22 16:46:36 -0700155{
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800156 struct lnw_gpio *lnw = irq_data_get_irq_chip_data(d);
157 u32 gpio = d->irq - lnw->irq_base;
Alek Du8bf02612009-09-22 16:46:36 -0700158 unsigned long flags;
159 u32 value;
Alek Du8081c842010-05-26 14:42:25 -0700160 void __iomem *grer = gpio_reg(&lnw->chip, gpio, GRER);
161 void __iomem *gfer = gpio_reg(&lnw->chip, gpio, GFER);
Alek Du8bf02612009-09-22 16:46:36 -0700162
Roel Kluin4efec622009-12-15 16:46:18 -0800163 if (gpio >= lnw->chip.ngpio)
Alek Du8bf02612009-09-22 16:46:36 -0700164 return -EINVAL;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100165
166 if (lnw->pdev)
167 pm_runtime_get(&lnw->pdev->dev);
168
Alek Du8bf02612009-09-22 16:46:36 -0700169 spin_lock_irqsave(&lnw->lock, flags);
170 if (type & IRQ_TYPE_EDGE_RISING)
171 value = readl(grer) | BIT(gpio % 32);
172 else
173 value = readl(grer) & (~BIT(gpio % 32));
174 writel(value, grer);
175
176 if (type & IRQ_TYPE_EDGE_FALLING)
177 value = readl(gfer) | BIT(gpio % 32);
178 else
179 value = readl(gfer) & (~BIT(gpio % 32));
180 writel(value, gfer);
181 spin_unlock_irqrestore(&lnw->lock, flags);
182
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100183 if (lnw->pdev)
184 pm_runtime_put(&lnw->pdev->dev);
185
Alek Du8bf02612009-09-22 16:46:36 -0700186 return 0;
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700187}
Alek Du8bf02612009-09-22 16:46:36 -0700188
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800189static void lnw_irq_unmask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700190{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700191}
Alek Du8bf02612009-09-22 16:46:36 -0700192
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800193static void lnw_irq_mask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700194{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700195}
Alek Du8bf02612009-09-22 16:46:36 -0700196
197static struct irq_chip lnw_irqchip = {
198 .name = "LNW-GPIO",
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800199 .irq_mask = lnw_irq_mask,
200 .irq_unmask = lnw_irq_unmask,
201 .irq_set_type = lnw_irq_type,
Alek Du8bf02612009-09-22 16:46:36 -0700202};
203
Alek Du8081c842010-05-26 14:42:25 -0700204static DEFINE_PCI_DEVICE_TABLE(lnw_gpio_ids) = { /* pin number */
205 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x080f), .driver_data = 64 },
206 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081f), .driver_data = 96 },
207 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081a), .driver_data = 96 },
Alek Du8bf02612009-09-22 16:46:36 -0700208 { 0, }
209};
210MODULE_DEVICE_TABLE(pci, lnw_gpio_ids);
211
212static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
213{
Thomas Gleixner20e2aa92011-03-17 19:32:49 +0000214 struct irq_data *data = irq_desc_get_irq_data(desc);
215 struct lnw_gpio *lnw = irq_data_get_irq_handler_data(data);
216 struct irq_chip *chip = irq_data_get_irq_chip(data);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000217 u32 base, gpio, mask;
Thomas Gleixner732063b2011-03-17 19:32:55 +0000218 unsigned long pending;
Alek Du8bf02612009-09-22 16:46:36 -0700219 void __iomem *gedr;
Alek Du8bf02612009-09-22 16:46:36 -0700220
221 /* check GPIO controller to check which pin triggered the interrupt */
Alek Du8081c842010-05-26 14:42:25 -0700222 for (base = 0; base < lnw->chip.ngpio; base += 32) {
223 gedr = gpio_reg(&lnw->chip, base, GEDR);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000224 pending = readl(gedr);
Thomas Gleixner732063b2011-03-17 19:32:55 +0000225 while (pending) {
226 gpio = __ffs(pending) - 1;
Thomas Gleixner84bead62011-03-17 19:32:58 +0000227 mask = BIT(gpio);
228 pending &= ~mask;
229 /* Clear before handling so we can't lose an edge */
230 writel(mask, gedr);
Thomas Gleixner732063b2011-03-17 19:32:55 +0000231 generic_handle_irq(lnw->irq_base + base + gpio);
232 }
Alek Du8bf02612009-09-22 16:46:36 -0700233 }
Feng Tang0766d202011-01-25 15:07:15 -0800234
Thomas Gleixner20e2aa92011-03-17 19:32:49 +0000235 chip->irq_eoi(data);
Alek Du8bf02612009-09-22 16:46:36 -0700236}
237
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100238#ifdef CONFIG_PM
239static int lnw_gpio_runtime_resume(struct device *dev)
240{
241 return 0;
242}
243
244static int lnw_gpio_runtime_suspend(struct device *dev)
245{
246 return 0;
247}
248
249static int lnw_gpio_runtime_idle(struct device *dev)
250{
251 int err = pm_schedule_suspend(dev, 500);
252
253 if (!err)
254 return 0;
255
256 return -EBUSY;
257}
258
259#else
260#define lnw_gpio_runtime_suspend NULL
261#define lnw_gpio_runtime_resume NULL
262#define lnw_gpio_runtime_idle NULL
263#endif
264
265static const struct dev_pm_ops lnw_gpio_pm_ops = {
266 .runtime_suspend = lnw_gpio_runtime_suspend,
267 .runtime_resume = lnw_gpio_runtime_resume,
268 .runtime_idle = lnw_gpio_runtime_idle,
269};
270
Alek Du8bf02612009-09-22 16:46:36 -0700271static int __devinit lnw_gpio_probe(struct pci_dev *pdev,
272 const struct pci_device_id *id)
273{
274 void *base;
275 int i;
276 resource_size_t start, len;
277 struct lnw_gpio *lnw;
278 u32 irq_base;
279 u32 gpio_base;
280 int retval = 0;
281
282 retval = pci_enable_device(pdev);
283 if (retval)
284 goto done;
285
286 retval = pci_request_regions(pdev, "langwell_gpio");
287 if (retval) {
288 dev_err(&pdev->dev, "error requesting resources\n");
289 goto err2;
290 }
291 /* get the irq_base from bar1 */
292 start = pci_resource_start(pdev, 1);
293 len = pci_resource_len(pdev, 1);
294 base = ioremap_nocache(start, len);
295 if (!base) {
296 dev_err(&pdev->dev, "error mapping bar1\n");
297 goto err3;
298 }
299 irq_base = *(u32 *)base;
300 gpio_base = *((u32 *)base + 1);
301 /* release the IO mapping, since we already get the info from bar1 */
302 iounmap(base);
303 /* get the register base from bar0 */
304 start = pci_resource_start(pdev, 0);
305 len = pci_resource_len(pdev, 0);
306 base = ioremap_nocache(start, len);
307 if (!base) {
308 dev_err(&pdev->dev, "error mapping bar0\n");
309 retval = -EFAULT;
310 goto err3;
311 }
312
313 lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
314 if (!lnw) {
315 dev_err(&pdev->dev, "can't allocate langwell_gpio chip data\n");
316 retval = -ENOMEM;
317 goto err4;
318 }
319 lnw->reg_base = base;
320 lnw->irq_base = irq_base;
321 lnw->chip.label = dev_name(&pdev->dev);
322 lnw->chip.direction_input = lnw_gpio_direction_input;
323 lnw->chip.direction_output = lnw_gpio_direction_output;
324 lnw->chip.get = lnw_gpio_get;
325 lnw->chip.set = lnw_gpio_set;
326 lnw->chip.to_irq = lnw_gpio_to_irq;
327 lnw->chip.base = gpio_base;
Alek Du8081c842010-05-26 14:42:25 -0700328 lnw->chip.ngpio = id->driver_data;
Alek Du8bf02612009-09-22 16:46:36 -0700329 lnw->chip.can_sleep = 0;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100330 lnw->pdev = pdev;
Alek Du8bf02612009-09-22 16:46:36 -0700331 pci_set_drvdata(pdev, lnw);
332 retval = gpiochip_add(&lnw->chip);
333 if (retval) {
334 dev_err(&pdev->dev, "langwell gpiochip_add error %d\n", retval);
335 goto err5;
336 }
Thomas Gleixner674db902011-03-17 19:32:52 +0000337 irq_set_handler_data(pdev->irq, lnw);
338 irq_set_chained_handler(pdev->irq, lnw_irq_handler);
Alek Du8bf02612009-09-22 16:46:36 -0700339 for (i = 0; i < lnw->chip.ngpio; i++) {
Thomas Gleixner674db902011-03-17 19:32:52 +0000340 irq_set_chip_and_handler_name(i + lnw->irq_base, &lnw_irqchip,
341 handle_simple_irq, "demux");
342 irq_set_chip_data(i + lnw->irq_base, lnw);
Alek Du8bf02612009-09-22 16:46:36 -0700343 }
344
345 spin_lock_init(&lnw->lock);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100346
347 pm_runtime_put_noidle(&pdev->dev);
348 pm_runtime_allow(&pdev->dev);
349
Alek Du8bf02612009-09-22 16:46:36 -0700350 goto done;
351err5:
352 kfree(lnw);
353err4:
354 iounmap(base);
355err3:
356 pci_release_regions(pdev);
357err2:
358 pci_disable_device(pdev);
359done:
360 return retval;
361}
362
363static struct pci_driver lnw_gpio_driver = {
364 .name = "langwell_gpio",
365 .id_table = lnw_gpio_ids,
366 .probe = lnw_gpio_probe,
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100367 .driver = {
368 .pm = &lnw_gpio_pm_ops,
369 },
Alek Du8bf02612009-09-22 16:46:36 -0700370};
371
Alan Cox72b43792010-10-27 15:33:23 -0700372
373static int __devinit wp_gpio_probe(struct platform_device *pdev)
374{
375 struct lnw_gpio *lnw;
376 struct gpio_chip *gc;
377 struct resource *rc;
378 int retval = 0;
379
380 rc = platform_get_resource(pdev, IORESOURCE_MEM, 0);
381 if (!rc)
382 return -EINVAL;
383
384 lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
385 if (!lnw) {
386 dev_err(&pdev->dev,
387 "can't allocate whitneypoint_gpio chip data\n");
388 return -ENOMEM;
389 }
390 lnw->reg_base = ioremap_nocache(rc->start, resource_size(rc));
391 if (lnw->reg_base == NULL) {
392 retval = -EINVAL;
393 goto err_kmalloc;
394 }
395 spin_lock_init(&lnw->lock);
396 gc = &lnw->chip;
397 gc->label = dev_name(&pdev->dev);
398 gc->owner = THIS_MODULE;
399 gc->direction_input = lnw_gpio_direction_input;
400 gc->direction_output = lnw_gpio_direction_output;
401 gc->get = lnw_gpio_get;
402 gc->set = lnw_gpio_set;
403 gc->to_irq = NULL;
404 gc->base = 0;
405 gc->ngpio = 64;
406 gc->can_sleep = 0;
407 retval = gpiochip_add(gc);
408 if (retval) {
409 dev_err(&pdev->dev, "whitneypoint gpiochip_add error %d\n",
410 retval);
411 goto err_ioremap;
412 }
413 platform_set_drvdata(pdev, lnw);
414 return 0;
415err_ioremap:
416 iounmap(lnw->reg_base);
417err_kmalloc:
418 kfree(lnw);
419 return retval;
420}
421
422static int __devexit wp_gpio_remove(struct platform_device *pdev)
423{
424 struct lnw_gpio *lnw = platform_get_drvdata(pdev);
425 int err;
426 err = gpiochip_remove(&lnw->chip);
427 if (err)
428 dev_err(&pdev->dev, "failed to remove gpio_chip.\n");
429 iounmap(lnw->reg_base);
430 kfree(lnw);
431 platform_set_drvdata(pdev, NULL);
432 return 0;
433}
434
435static struct platform_driver wp_gpio_driver = {
436 .probe = wp_gpio_probe,
437 .remove = __devexit_p(wp_gpio_remove),
438 .driver = {
439 .name = "wp_gpio",
440 .owner = THIS_MODULE,
441 },
442};
443
Alek Du8bf02612009-09-22 16:46:36 -0700444static int __init lnw_gpio_init(void)
445{
Alan Cox72b43792010-10-27 15:33:23 -0700446 int ret;
447 ret = pci_register_driver(&lnw_gpio_driver);
448 if (ret < 0)
449 return ret;
450 ret = platform_driver_register(&wp_gpio_driver);
451 if (ret < 0)
452 pci_unregister_driver(&lnw_gpio_driver);
453 return ret;
Alek Du8bf02612009-09-22 16:46:36 -0700454}
455
456device_initcall(lnw_gpio_init);