blob: d2eb57c60e0ed874c2e68790c14ac2d0d0531ada [file] [log] [blame]
Grant Likelyc103de22011-06-04 18:38:28 -06001/*
2 * Moorestown platform Langwell chip GPIO driver
3 *
Alek Du8bf02612009-09-22 16:46:36 -07004 * Copyright (c) 2008 - 2009, Intel Corporation.
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 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20/* Supports:
21 * Moorestown platform Langwell chip.
Alek Du8081c842010-05-26 14:42:25 -070022 * Medfield platform Penwell chip.
Alan Cox72b43792010-10-27 15:33:23 -070023 * Whitney point.
Alek Du8bf02612009-09-22 16:46:36 -070024 */
25
26#include <linux/module.h>
27#include <linux/pci.h>
Alan Cox72b43792010-10-27 15:33:23 -070028#include <linux/platform_device.h>
Alek Du8bf02612009-09-22 16:46:36 -070029#include <linux/kernel.h>
30#include <linux/delay.h>
31#include <linux/stddef.h>
32#include <linux/interrupt.h>
33#include <linux/init.h>
34#include <linux/irq.h>
35#include <linux/io.h>
36#include <linux/gpio.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Kristen Carlson Accardi78128032011-05-10 14:23:45 +010038#include <linux/pm_runtime.h>
Alek Du8bf02612009-09-22 16:46:36 -070039
Alek Du8081c842010-05-26 14:42:25 -070040/*
41 * Langwell chip has 64 pins and thus there are 2 32bit registers to control
42 * each feature, while Penwell chip has 96 pins for each block, and need 3 32bit
43 * registers to control them, so we only define the order here instead of a
44 * structure, to get a bit offset for a pin (use GPDR as an example):
45 *
46 * nreg = ngpio / 32;
47 * reg = offset / 32;
48 * bit = offset % 32;
49 * reg_addr = reg_base + GPDR * nreg * 4 + reg * 4;
50 *
51 * so the bit of reg_addr is to control pin offset's GPDR feature
52*/
53
54enum GPIO_REG {
55 GPLR = 0, /* pin level read-only */
56 GPDR, /* pin direction */
57 GPSR, /* pin set */
58 GPCR, /* pin clear */
59 GRER, /* rising edge detect */
60 GFER, /* falling edge detect */
61 GEDR, /* edge detect result */
Alek Du8bf02612009-09-22 16:46:36 -070062};
63
64struct lnw_gpio {
65 struct gpio_chip chip;
Alek Du8081c842010-05-26 14:42:25 -070066 void *reg_base;
Alek Du8bf02612009-09-22 16:46:36 -070067 spinlock_t lock;
68 unsigned irq_base;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +010069 struct pci_dev *pdev;
Alek Du8bf02612009-09-22 16:46:36 -070070};
71
Alek Du8081c842010-05-26 14:42:25 -070072static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned offset,
73 enum GPIO_REG reg_type)
Alek Du8bf02612009-09-22 16:46:36 -070074{
75 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
Alek Du8081c842010-05-26 14:42:25 -070076 unsigned nreg = chip->ngpio / 32;
Alek Du8bf02612009-09-22 16:46:36 -070077 u8 reg = offset / 32;
Alek Du8081c842010-05-26 14:42:25 -070078 void __iomem *ptr;
Alek Du8bf02612009-09-22 16:46:36 -070079
Alek Du8081c842010-05-26 14:42:25 -070080 ptr = (void __iomem *)(lnw->reg_base + reg_type * nreg * 4 + reg * 4);
81 return ptr;
82}
83
84static int lnw_gpio_get(struct gpio_chip *chip, unsigned offset)
85{
86 void __iomem *gplr = gpio_reg(chip, offset, GPLR);
87
Alek Du8bf02612009-09-22 16:46:36 -070088 return readl(gplr) & BIT(offset % 32);
89}
90
91static void lnw_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
92{
Alek Du8bf02612009-09-22 16:46:36 -070093 void __iomem *gpsr, *gpcr;
94
95 if (value) {
Alek Du8081c842010-05-26 14:42:25 -070096 gpsr = gpio_reg(chip, offset, GPSR);
Alek Du8bf02612009-09-22 16:46:36 -070097 writel(BIT(offset % 32), gpsr);
98 } else {
Alek Du8081c842010-05-26 14:42:25 -070099 gpcr = gpio_reg(chip, offset, GPCR);
Alek Du8bf02612009-09-22 16:46:36 -0700100 writel(BIT(offset % 32), gpcr);
101 }
102}
103
104static int lnw_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
105{
106 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
Alek Du8081c842010-05-26 14:42:25 -0700107 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700108 u32 value;
109 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700110
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100111 if (lnw->pdev)
112 pm_runtime_get(&lnw->pdev->dev);
113
Alek Du8bf02612009-09-22 16:46:36 -0700114 spin_lock_irqsave(&lnw->lock, flags);
115 value = readl(gpdr);
116 value &= ~BIT(offset % 32);
117 writel(value, gpdr);
118 spin_unlock_irqrestore(&lnw->lock, flags);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100119
120 if (lnw->pdev)
121 pm_runtime_put(&lnw->pdev->dev);
122
Alek Du8bf02612009-09-22 16:46:36 -0700123 return 0;
124}
125
126static int lnw_gpio_direction_output(struct gpio_chip *chip,
127 unsigned offset, int value)
128{
129 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
Alek Du8081c842010-05-26 14:42:25 -0700130 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700131 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700132
133 lnw_gpio_set(chip, offset, value);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100134
135 if (lnw->pdev)
136 pm_runtime_get(&lnw->pdev->dev);
137
Alek Du8bf02612009-09-22 16:46:36 -0700138 spin_lock_irqsave(&lnw->lock, flags);
139 value = readl(gpdr);
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700140 value |= BIT(offset % 32);
Alek Du8bf02612009-09-22 16:46:36 -0700141 writel(value, gpdr);
142 spin_unlock_irqrestore(&lnw->lock, flags);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100143
144 if (lnw->pdev)
145 pm_runtime_put(&lnw->pdev->dev);
146
Alek Du8bf02612009-09-22 16:46:36 -0700147 return 0;
148}
149
150static int lnw_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
151{
152 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
153 return lnw->irq_base + offset;
154}
155
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800156static int lnw_irq_type(struct irq_data *d, unsigned type)
Alek Du8bf02612009-09-22 16:46:36 -0700157{
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800158 struct lnw_gpio *lnw = irq_data_get_irq_chip_data(d);
159 u32 gpio = d->irq - lnw->irq_base;
Alek Du8bf02612009-09-22 16:46:36 -0700160 unsigned long flags;
161 u32 value;
Alek Du8081c842010-05-26 14:42:25 -0700162 void __iomem *grer = gpio_reg(&lnw->chip, gpio, GRER);
163 void __iomem *gfer = gpio_reg(&lnw->chip, gpio, GFER);
Alek Du8bf02612009-09-22 16:46:36 -0700164
Roel Kluin4efec622009-12-15 16:46:18 -0800165 if (gpio >= lnw->chip.ngpio)
Alek Du8bf02612009-09-22 16:46:36 -0700166 return -EINVAL;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100167
168 if (lnw->pdev)
169 pm_runtime_get(&lnw->pdev->dev);
170
Alek Du8bf02612009-09-22 16:46:36 -0700171 spin_lock_irqsave(&lnw->lock, flags);
172 if (type & IRQ_TYPE_EDGE_RISING)
173 value = readl(grer) | BIT(gpio % 32);
174 else
175 value = readl(grer) & (~BIT(gpio % 32));
176 writel(value, grer);
177
178 if (type & IRQ_TYPE_EDGE_FALLING)
179 value = readl(gfer) | BIT(gpio % 32);
180 else
181 value = readl(gfer) & (~BIT(gpio % 32));
182 writel(value, gfer);
183 spin_unlock_irqrestore(&lnw->lock, flags);
184
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100185 if (lnw->pdev)
186 pm_runtime_put(&lnw->pdev->dev);
187
Alek Du8bf02612009-09-22 16:46:36 -0700188 return 0;
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700189}
Alek Du8bf02612009-09-22 16:46:36 -0700190
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800191static void lnw_irq_unmask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700192{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700193}
Alek Du8bf02612009-09-22 16:46:36 -0700194
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800195static void lnw_irq_mask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700196{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700197}
Alek Du8bf02612009-09-22 16:46:36 -0700198
199static struct irq_chip lnw_irqchip = {
200 .name = "LNW-GPIO",
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800201 .irq_mask = lnw_irq_mask,
202 .irq_unmask = lnw_irq_unmask,
203 .irq_set_type = lnw_irq_type,
Alek Du8bf02612009-09-22 16:46:36 -0700204};
205
Alek Du8081c842010-05-26 14:42:25 -0700206static DEFINE_PCI_DEVICE_TABLE(lnw_gpio_ids) = { /* pin number */
207 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x080f), .driver_data = 64 },
208 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081f), .driver_data = 96 },
209 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081a), .driver_data = 96 },
Alek Du8bf02612009-09-22 16:46:36 -0700210 { 0, }
211};
212MODULE_DEVICE_TABLE(pci, lnw_gpio_ids);
213
214static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
215{
Thomas Gleixner20e2aa92011-03-17 19:32:49 +0000216 struct irq_data *data = irq_desc_get_irq_data(desc);
217 struct lnw_gpio *lnw = irq_data_get_irq_handler_data(data);
218 struct irq_chip *chip = irq_data_get_irq_chip(data);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000219 u32 base, gpio, mask;
Thomas Gleixner732063b2011-03-17 19:32:55 +0000220 unsigned long pending;
Alek Du8bf02612009-09-22 16:46:36 -0700221 void __iomem *gedr;
Alek Du8bf02612009-09-22 16:46:36 -0700222
223 /* check GPIO controller to check which pin triggered the interrupt */
Alek Du8081c842010-05-26 14:42:25 -0700224 for (base = 0; base < lnw->chip.ngpio; base += 32) {
225 gedr = gpio_reg(&lnw->chip, base, GEDR);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000226 pending = readl(gedr);
Thomas Gleixner732063b2011-03-17 19:32:55 +0000227 while (pending) {
Mathias Nyman2345b202011-07-08 10:02:18 +0100228 gpio = __ffs(pending);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000229 mask = BIT(gpio);
230 pending &= ~mask;
231 /* Clear before handling so we can't lose an edge */
232 writel(mask, gedr);
Thomas Gleixner732063b2011-03-17 19:32:55 +0000233 generic_handle_irq(lnw->irq_base + base + gpio);
234 }
Alek Du8bf02612009-09-22 16:46:36 -0700235 }
Feng Tang0766d202011-01-25 15:07:15 -0800236
Thomas Gleixner20e2aa92011-03-17 19:32:49 +0000237 chip->irq_eoi(data);
Alek Du8bf02612009-09-22 16:46:36 -0700238}
239
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100240#ifdef CONFIG_PM
241static int lnw_gpio_runtime_resume(struct device *dev)
242{
243 return 0;
244}
245
246static int lnw_gpio_runtime_suspend(struct device *dev)
247{
248 return 0;
249}
250
251static int lnw_gpio_runtime_idle(struct device *dev)
252{
253 int err = pm_schedule_suspend(dev, 500);
254
255 if (!err)
256 return 0;
257
258 return -EBUSY;
259}
260
261#else
262#define lnw_gpio_runtime_suspend NULL
263#define lnw_gpio_runtime_resume NULL
264#define lnw_gpio_runtime_idle NULL
265#endif
266
267static const struct dev_pm_ops lnw_gpio_pm_ops = {
268 .runtime_suspend = lnw_gpio_runtime_suspend,
269 .runtime_resume = lnw_gpio_runtime_resume,
270 .runtime_idle = lnw_gpio_runtime_idle,
271};
272
Alek Du8bf02612009-09-22 16:46:36 -0700273static int __devinit lnw_gpio_probe(struct pci_dev *pdev,
274 const struct pci_device_id *id)
275{
276 void *base;
277 int i;
278 resource_size_t start, len;
279 struct lnw_gpio *lnw;
280 u32 irq_base;
281 u32 gpio_base;
282 int retval = 0;
283
284 retval = pci_enable_device(pdev);
285 if (retval)
286 goto done;
287
288 retval = pci_request_regions(pdev, "langwell_gpio");
289 if (retval) {
290 dev_err(&pdev->dev, "error requesting resources\n");
291 goto err2;
292 }
293 /* get the irq_base from bar1 */
294 start = pci_resource_start(pdev, 1);
295 len = pci_resource_len(pdev, 1);
296 base = ioremap_nocache(start, len);
297 if (!base) {
298 dev_err(&pdev->dev, "error mapping bar1\n");
299 goto err3;
300 }
301 irq_base = *(u32 *)base;
302 gpio_base = *((u32 *)base + 1);
303 /* release the IO mapping, since we already get the info from bar1 */
304 iounmap(base);
305 /* get the register base from bar0 */
306 start = pci_resource_start(pdev, 0);
307 len = pci_resource_len(pdev, 0);
308 base = ioremap_nocache(start, len);
309 if (!base) {
310 dev_err(&pdev->dev, "error mapping bar0\n");
311 retval = -EFAULT;
312 goto err3;
313 }
314
315 lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
316 if (!lnw) {
317 dev_err(&pdev->dev, "can't allocate langwell_gpio chip data\n");
318 retval = -ENOMEM;
319 goto err4;
320 }
321 lnw->reg_base = base;
322 lnw->irq_base = irq_base;
323 lnw->chip.label = dev_name(&pdev->dev);
324 lnw->chip.direction_input = lnw_gpio_direction_input;
325 lnw->chip.direction_output = lnw_gpio_direction_output;
326 lnw->chip.get = lnw_gpio_get;
327 lnw->chip.set = lnw_gpio_set;
328 lnw->chip.to_irq = lnw_gpio_to_irq;
329 lnw->chip.base = gpio_base;
Alek Du8081c842010-05-26 14:42:25 -0700330 lnw->chip.ngpio = id->driver_data;
Alek Du8bf02612009-09-22 16:46:36 -0700331 lnw->chip.can_sleep = 0;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100332 lnw->pdev = pdev;
Alek Du8bf02612009-09-22 16:46:36 -0700333 pci_set_drvdata(pdev, lnw);
334 retval = gpiochip_add(&lnw->chip);
335 if (retval) {
336 dev_err(&pdev->dev, "langwell gpiochip_add error %d\n", retval);
337 goto err5;
338 }
Thomas Gleixner674db902011-03-17 19:32:52 +0000339 irq_set_handler_data(pdev->irq, lnw);
340 irq_set_chained_handler(pdev->irq, lnw_irq_handler);
Alek Du8bf02612009-09-22 16:46:36 -0700341 for (i = 0; i < lnw->chip.ngpio; i++) {
Thomas Gleixner674db902011-03-17 19:32:52 +0000342 irq_set_chip_and_handler_name(i + lnw->irq_base, &lnw_irqchip,
343 handle_simple_irq, "demux");
344 irq_set_chip_data(i + lnw->irq_base, lnw);
Alek Du8bf02612009-09-22 16:46:36 -0700345 }
346
347 spin_lock_init(&lnw->lock);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100348
349 pm_runtime_put_noidle(&pdev->dev);
350 pm_runtime_allow(&pdev->dev);
351
Alek Du8bf02612009-09-22 16:46:36 -0700352 goto done;
353err5:
354 kfree(lnw);
355err4:
356 iounmap(base);
357err3:
358 pci_release_regions(pdev);
359err2:
360 pci_disable_device(pdev);
361done:
362 return retval;
363}
364
365static struct pci_driver lnw_gpio_driver = {
366 .name = "langwell_gpio",
367 .id_table = lnw_gpio_ids,
368 .probe = lnw_gpio_probe,
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100369 .driver = {
370 .pm = &lnw_gpio_pm_ops,
371 },
Alek Du8bf02612009-09-22 16:46:36 -0700372};
373
Alan Cox72b43792010-10-27 15:33:23 -0700374
375static int __devinit wp_gpio_probe(struct platform_device *pdev)
376{
377 struct lnw_gpio *lnw;
378 struct gpio_chip *gc;
379 struct resource *rc;
380 int retval = 0;
381
382 rc = platform_get_resource(pdev, IORESOURCE_MEM, 0);
383 if (!rc)
384 return -EINVAL;
385
386 lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
387 if (!lnw) {
388 dev_err(&pdev->dev,
389 "can't allocate whitneypoint_gpio chip data\n");
390 return -ENOMEM;
391 }
392 lnw->reg_base = ioremap_nocache(rc->start, resource_size(rc));
393 if (lnw->reg_base == NULL) {
394 retval = -EINVAL;
395 goto err_kmalloc;
396 }
397 spin_lock_init(&lnw->lock);
398 gc = &lnw->chip;
399 gc->label = dev_name(&pdev->dev);
400 gc->owner = THIS_MODULE;
401 gc->direction_input = lnw_gpio_direction_input;
402 gc->direction_output = lnw_gpio_direction_output;
403 gc->get = lnw_gpio_get;
404 gc->set = lnw_gpio_set;
405 gc->to_irq = NULL;
406 gc->base = 0;
407 gc->ngpio = 64;
408 gc->can_sleep = 0;
409 retval = gpiochip_add(gc);
410 if (retval) {
411 dev_err(&pdev->dev, "whitneypoint gpiochip_add error %d\n",
412 retval);
413 goto err_ioremap;
414 }
415 platform_set_drvdata(pdev, lnw);
416 return 0;
417err_ioremap:
418 iounmap(lnw->reg_base);
419err_kmalloc:
420 kfree(lnw);
421 return retval;
422}
423
424static int __devexit wp_gpio_remove(struct platform_device *pdev)
425{
426 struct lnw_gpio *lnw = platform_get_drvdata(pdev);
427 int err;
428 err = gpiochip_remove(&lnw->chip);
429 if (err)
430 dev_err(&pdev->dev, "failed to remove gpio_chip.\n");
431 iounmap(lnw->reg_base);
432 kfree(lnw);
433 platform_set_drvdata(pdev, NULL);
434 return 0;
435}
436
437static struct platform_driver wp_gpio_driver = {
438 .probe = wp_gpio_probe,
439 .remove = __devexit_p(wp_gpio_remove),
440 .driver = {
441 .name = "wp_gpio",
442 .owner = THIS_MODULE,
443 },
444};
445
Alek Du8bf02612009-09-22 16:46:36 -0700446static int __init lnw_gpio_init(void)
447{
Alan Cox72b43792010-10-27 15:33:23 -0700448 int ret;
449 ret = pci_register_driver(&lnw_gpio_driver);
450 if (ret < 0)
451 return ret;
452 ret = platform_driver_register(&wp_gpio_driver);
453 if (ret < 0)
454 pci_unregister_driver(&lnw_gpio_driver);
455 return ret;
Alek Du8bf02612009-09-22 16:46:36 -0700456}
457
458device_initcall(lnw_gpio_init);