gpio/langwell: Add Cloverview ids to pci device table
[deliverable/linux.git] / drivers / gpio / gpio-langwell.c
CommitLineData
c103de24
GL
1/*
2 * Moorestown platform Langwell chip GPIO driver
3 *
8bf02617
AD
4 * 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.
8081c84c 22 * Medfield platform Penwell chip.
72b4379e 23 * Whitney point.
8bf02617
AD
24 */
25
26#include <linux/module.h>
27#include <linux/pci.h>
72b4379e 28#include <linux/platform_device.h>
8bf02617
AD
29#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>
5a0e3ad6 37#include <linux/slab.h>
7812803a 38#include <linux/pm_runtime.h>
465f2bd4 39#include <linux/irqdomain.h>
8bf02617 40
8081c84c
AD
41/*
42 * Langwell chip has 64 pins and thus there are 2 32bit registers to control
43 * each feature, while Penwell chip has 96 pins for each block, and need 3 32bit
44 * registers to control them, so we only define the order here instead of a
45 * structure, to get a bit offset for a pin (use GPDR as an example):
46 *
47 * nreg = ngpio / 32;
48 * reg = offset / 32;
49 * bit = offset % 32;
50 * reg_addr = reg_base + GPDR * nreg * 4 + reg * 4;
51 *
52 * so the bit of reg_addr is to control pin offset's GPDR feature
53*/
54
55enum GPIO_REG {
56 GPLR = 0, /* pin level read-only */
57 GPDR, /* pin direction */
58 GPSR, /* pin set */
59 GPCR, /* pin clear */
60 GRER, /* rising edge detect */
61 GFER, /* falling edge detect */
62 GEDR, /* edge detect result */
8c0f7b10 63 GAFR, /* alt function */
8bf02617
AD
64};
65
66struct lnw_gpio {
67 struct gpio_chip chip;
8081c84c 68 void *reg_base;
8bf02617 69 spinlock_t lock;
7812803a 70 struct pci_dev *pdev;
465f2bd4 71 struct irq_domain *domain;
8bf02617
AD
72};
73
8081c84c
AD
74static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned offset,
75 enum GPIO_REG reg_type)
8bf02617
AD
76{
77 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
8081c84c 78 unsigned nreg = chip->ngpio / 32;
8bf02617 79 u8 reg = offset / 32;
8081c84c
AD
80 void __iomem *ptr;
81
82 ptr = (void __iomem *)(lnw->reg_base + reg_type * nreg * 4 + reg * 4);
83 return ptr;
84}
85
8c0f7b10
AH
86static void __iomem *gpio_reg_2bit(struct gpio_chip *chip, unsigned offset,
87 enum GPIO_REG reg_type)
88{
89 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
90 unsigned nreg = chip->ngpio / 32;
91 u8 reg = offset / 16;
92 void __iomem *ptr;
93
94 ptr = (void __iomem *)(lnw->reg_base + reg_type * nreg * 4 + reg * 4);
95 return ptr;
96}
97
98static int lnw_gpio_request(struct gpio_chip *chip, unsigned offset)
99{
100 void __iomem *gafr = gpio_reg_2bit(chip, offset, GAFR);
101 u32 value = readl(gafr);
102 int shift = (offset % 16) << 1, af = (value >> shift) & 3;
103
104 if (af) {
105 value &= ~(3 << shift);
106 writel(value, gafr);
107 }
108 return 0;
109}
110
8081c84c
AD
111static int lnw_gpio_get(struct gpio_chip *chip, unsigned offset)
112{
113 void __iomem *gplr = gpio_reg(chip, offset, GPLR);
8bf02617 114
8bf02617
AD
115 return readl(gplr) & BIT(offset % 32);
116}
117
118static void lnw_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
119{
8bf02617
AD
120 void __iomem *gpsr, *gpcr;
121
122 if (value) {
8081c84c 123 gpsr = gpio_reg(chip, offset, GPSR);
8bf02617
AD
124 writel(BIT(offset % 32), gpsr);
125 } else {
8081c84c 126 gpcr = gpio_reg(chip, offset, GPCR);
8bf02617
AD
127 writel(BIT(offset % 32), gpcr);
128 }
129}
130
131static int lnw_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
132{
133 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
8081c84c 134 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
8bf02617
AD
135 u32 value;
136 unsigned long flags;
8bf02617 137
7812803a
KCA
138 if (lnw->pdev)
139 pm_runtime_get(&lnw->pdev->dev);
140
8bf02617
AD
141 spin_lock_irqsave(&lnw->lock, flags);
142 value = readl(gpdr);
143 value &= ~BIT(offset % 32);
144 writel(value, gpdr);
145 spin_unlock_irqrestore(&lnw->lock, flags);
7812803a
KCA
146
147 if (lnw->pdev)
148 pm_runtime_put(&lnw->pdev->dev);
149
8bf02617
AD
150 return 0;
151}
152
153static int lnw_gpio_direction_output(struct gpio_chip *chip,
154 unsigned offset, int value)
155{
156 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
8081c84c 157 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
8bf02617 158 unsigned long flags;
8bf02617
AD
159
160 lnw_gpio_set(chip, offset, value);
7812803a
KCA
161
162 if (lnw->pdev)
163 pm_runtime_get(&lnw->pdev->dev);
164
8bf02617
AD
165 spin_lock_irqsave(&lnw->lock, flags);
166 value = readl(gpdr);
6eab04a8 167 value |= BIT(offset % 32);
8bf02617
AD
168 writel(value, gpdr);
169 spin_unlock_irqrestore(&lnw->lock, flags);
7812803a
KCA
170
171 if (lnw->pdev)
172 pm_runtime_put(&lnw->pdev->dev);
173
8bf02617
AD
174 return 0;
175}
176
177static int lnw_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
178{
179 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
465f2bd4 180 return irq_create_mapping(lnw->domain, offset);
8bf02617
AD
181}
182
5ffd72c6 183static int lnw_irq_type(struct irq_data *d, unsigned type)
8bf02617 184{
5ffd72c6 185 struct lnw_gpio *lnw = irq_data_get_irq_chip_data(d);
465f2bd4 186 u32 gpio = irqd_to_hwirq(d);
8bf02617
AD
187 unsigned long flags;
188 u32 value;
8081c84c
AD
189 void __iomem *grer = gpio_reg(&lnw->chip, gpio, GRER);
190 void __iomem *gfer = gpio_reg(&lnw->chip, gpio, GFER);
8bf02617 191
4efec627 192 if (gpio >= lnw->chip.ngpio)
8bf02617 193 return -EINVAL;
7812803a
KCA
194
195 if (lnw->pdev)
196 pm_runtime_get(&lnw->pdev->dev);
197
8bf02617
AD
198 spin_lock_irqsave(&lnw->lock, flags);
199 if (type & IRQ_TYPE_EDGE_RISING)
200 value = readl(grer) | BIT(gpio % 32);
201 else
202 value = readl(grer) & (~BIT(gpio % 32));
203 writel(value, grer);
204
205 if (type & IRQ_TYPE_EDGE_FALLING)
206 value = readl(gfer) | BIT(gpio % 32);
207 else
208 value = readl(gfer) & (~BIT(gpio % 32));
209 writel(value, gfer);
210 spin_unlock_irqrestore(&lnw->lock, flags);
211
7812803a
KCA
212 if (lnw->pdev)
213 pm_runtime_put(&lnw->pdev->dev);
214
8bf02617 215 return 0;
fd0574cb 216}
8bf02617 217
5ffd72c6 218static void lnw_irq_unmask(struct irq_data *d)
8bf02617 219{
fd0574cb 220}
8bf02617 221
5ffd72c6 222static void lnw_irq_mask(struct irq_data *d)
8bf02617 223{
fd0574cb 224}
8bf02617
AD
225
226static struct irq_chip lnw_irqchip = {
227 .name = "LNW-GPIO",
5ffd72c6
LB
228 .irq_mask = lnw_irq_mask,
229 .irq_unmask = lnw_irq_unmask,
230 .irq_set_type = lnw_irq_type,
8bf02617
AD
231};
232
8081c84c
AD
233static DEFINE_PCI_DEVICE_TABLE(lnw_gpio_ids) = { /* pin number */
234 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x080f), .driver_data = 64 },
235 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081f), .driver_data = 96 },
236 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081a), .driver_data = 96 },
936cb1b1
DC
237 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x08eb), .driver_data = 96 },
238 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x08f7), .driver_data = 96 },
8bf02617
AD
239 { 0, }
240};
241MODULE_DEVICE_TABLE(pci, lnw_gpio_ids);
242
243static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
244{
20e2aa91
TG
245 struct irq_data *data = irq_desc_get_irq_data(desc);
246 struct lnw_gpio *lnw = irq_data_get_irq_handler_data(data);
247 struct irq_chip *chip = irq_data_get_irq_chip(data);
84bead6c 248 u32 base, gpio, mask;
732063b9 249 unsigned long pending;
8bf02617 250 void __iomem *gedr;
8bf02617
AD
251
252 /* check GPIO controller to check which pin triggered the interrupt */
8081c84c
AD
253 for (base = 0; base < lnw->chip.ngpio; base += 32) {
254 gedr = gpio_reg(&lnw->chip, base, GEDR);
c8f925b6 255 while ((pending = readl(gedr))) {
2345b20f 256 gpio = __ffs(pending);
84bead6c 257 mask = BIT(gpio);
84bead6c
TG
258 /* Clear before handling so we can't lose an edge */
259 writel(mask, gedr);
465f2bd4
MW
260 generic_handle_irq(irq_find_mapping(lnw->domain,
261 base + gpio));
732063b9 262 }
8bf02617 263 }
0766d20f 264
20e2aa91 265 chip->irq_eoi(data);
8bf02617
AD
266}
267
f5f93117
MW
268static void lnw_irq_init_hw(struct lnw_gpio *lnw)
269{
270 void __iomem *reg;
271 unsigned base;
272
273 for (base = 0; base < lnw->chip.ngpio; base += 32) {
274 /* Clear the rising-edge detect register */
275 reg = gpio_reg(&lnw->chip, base, GRER);
276 writel(0, reg);
277 /* Clear the falling-edge detect register */
278 reg = gpio_reg(&lnw->chip, base, GFER);
279 writel(0, reg);
280 /* Clear the edge detect status register */
281 reg = gpio_reg(&lnw->chip, base, GEDR);
282 writel(~0, reg);
283 }
284}
285
465f2bd4
MW
286static int lnw_gpio_irq_map(struct irq_domain *d, unsigned int virq,
287 irq_hw_number_t hw)
288{
289 struct lnw_gpio *lnw = d->host_data;
290
291 irq_set_chip_and_handler_name(virq, &lnw_irqchip, handle_simple_irq,
292 "demux");
293 irq_set_chip_data(virq, lnw);
294 irq_set_irq_type(virq, IRQ_TYPE_NONE);
295
296 return 0;
297}
298
299static const struct irq_domain_ops lnw_gpio_irq_ops = {
300 .map = lnw_gpio_irq_map,
301 .xlate = irq_domain_xlate_twocell,
302};
303
7812803a
KCA
304#ifdef CONFIG_PM
305static int lnw_gpio_runtime_resume(struct device *dev)
306{
307 return 0;
308}
309
310static int lnw_gpio_runtime_suspend(struct device *dev)
311{
312 return 0;
313}
314
315static int lnw_gpio_runtime_idle(struct device *dev)
316{
317 int err = pm_schedule_suspend(dev, 500);
318
319 if (!err)
320 return 0;
321
322 return -EBUSY;
323}
324
325#else
326#define lnw_gpio_runtime_suspend NULL
327#define lnw_gpio_runtime_resume NULL
328#define lnw_gpio_runtime_idle NULL
329#endif
330
331static const struct dev_pm_ops lnw_gpio_pm_ops = {
332 .runtime_suspend = lnw_gpio_runtime_suspend,
333 .runtime_resume = lnw_gpio_runtime_resume,
334 .runtime_idle = lnw_gpio_runtime_idle,
335};
336
3836309d 337static int lnw_gpio_probe(struct pci_dev *pdev,
8bf02617
AD
338 const struct pci_device_id *id)
339{
340 void *base;
8bf02617
AD
341 resource_size_t start, len;
342 struct lnw_gpio *lnw;
8bf02617 343 u32 gpio_base;
d6a2b7ba 344 int retval;
b3e35af2 345 int ngpio = id->driver_data;
8bf02617
AD
346
347 retval = pci_enable_device(pdev);
348 if (retval)
8302c741 349 return retval;
8bf02617
AD
350
351 retval = pci_request_regions(pdev, "langwell_gpio");
352 if (retval) {
353 dev_err(&pdev->dev, "error requesting resources\n");
354 goto err2;
355 }
465f2bd4 356 /* get the gpio_base from bar1 */
8bf02617
AD
357 start = pci_resource_start(pdev, 1);
358 len = pci_resource_len(pdev, 1);
359 base = ioremap_nocache(start, len);
360 if (!base) {
361 dev_err(&pdev->dev, "error mapping bar1\n");
d6a2b7ba 362 retval = -EFAULT;
8bf02617
AD
363 goto err3;
364 }
8bf02617
AD
365 gpio_base = *((u32 *)base + 1);
366 /* release the IO mapping, since we already get the info from bar1 */
367 iounmap(base);
368 /* get the register base from bar0 */
369 start = pci_resource_start(pdev, 0);
370 len = pci_resource_len(pdev, 0);
8302c741 371 base = devm_ioremap_nocache(&pdev->dev, start, len);
8bf02617
AD
372 if (!base) {
373 dev_err(&pdev->dev, "error mapping bar0\n");
374 retval = -EFAULT;
375 goto err3;
376 }
377
8302c741 378 lnw = devm_kzalloc(&pdev->dev, sizeof(struct lnw_gpio), GFP_KERNEL);
8bf02617
AD
379 if (!lnw) {
380 dev_err(&pdev->dev, "can't allocate langwell_gpio chip data\n");
381 retval = -ENOMEM;
8302c741 382 goto err3;
8bf02617 383 }
b3e35af2 384
465f2bd4
MW
385 lnw->domain = irq_domain_add_linear(pdev->dev.of_node, ngpio,
386 &lnw_gpio_irq_ops, lnw);
d6a2b7ba
JL
387 if (!lnw->domain) {
388 retval = -ENOMEM;
b3e35af2 389 goto err3;
d6a2b7ba 390 }
b3e35af2 391
8bf02617 392 lnw->reg_base = base;
8bf02617 393 lnw->chip.label = dev_name(&pdev->dev);
8c0f7b10 394 lnw->chip.request = lnw_gpio_request;
8bf02617
AD
395 lnw->chip.direction_input = lnw_gpio_direction_input;
396 lnw->chip.direction_output = lnw_gpio_direction_output;
397 lnw->chip.get = lnw_gpio_get;
398 lnw->chip.set = lnw_gpio_set;
399 lnw->chip.to_irq = lnw_gpio_to_irq;
400 lnw->chip.base = gpio_base;
b3e35af2 401 lnw->chip.ngpio = ngpio;
8bf02617 402 lnw->chip.can_sleep = 0;
7812803a 403 lnw->pdev = pdev;
8bf02617
AD
404 pci_set_drvdata(pdev, lnw);
405 retval = gpiochip_add(&lnw->chip);
406 if (retval) {
407 dev_err(&pdev->dev, "langwell gpiochip_add error %d\n", retval);
465f2bd4 408 goto err3;
8bf02617 409 }
f5f93117
MW
410
411 lnw_irq_init_hw(lnw);
412
674db906
TG
413 irq_set_handler_data(pdev->irq, lnw);
414 irq_set_chained_handler(pdev->irq, lnw_irq_handler);
8bf02617
AD
415
416 spin_lock_init(&lnw->lock);
7812803a
KCA
417
418 pm_runtime_put_noidle(&pdev->dev);
419 pm_runtime_allow(&pdev->dev);
420
8302c741
MW
421 return 0;
422
8bf02617
AD
423err3:
424 pci_release_regions(pdev);
425err2:
426 pci_disable_device(pdev);
8bf02617
AD
427 return retval;
428}
429
430static struct pci_driver lnw_gpio_driver = {
431 .name = "langwell_gpio",
432 .id_table = lnw_gpio_ids,
433 .probe = lnw_gpio_probe,
7812803a
KCA
434 .driver = {
435 .pm = &lnw_gpio_pm_ops,
436 },
8bf02617
AD
437};
438
72b4379e 439
3836309d 440static int wp_gpio_probe(struct platform_device *pdev)
72b4379e
AC
441{
442 struct lnw_gpio *lnw;
443 struct gpio_chip *gc;
444 struct resource *rc;
445 int retval = 0;
446
447 rc = platform_get_resource(pdev, IORESOURCE_MEM, 0);
448 if (!rc)
449 return -EINVAL;
450
451 lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
452 if (!lnw) {
453 dev_err(&pdev->dev,
454 "can't allocate whitneypoint_gpio chip data\n");
455 return -ENOMEM;
456 }
457 lnw->reg_base = ioremap_nocache(rc->start, resource_size(rc));
458 if (lnw->reg_base == NULL) {
459 retval = -EINVAL;
460 goto err_kmalloc;
461 }
462 spin_lock_init(&lnw->lock);
463 gc = &lnw->chip;
464 gc->label = dev_name(&pdev->dev);
465 gc->owner = THIS_MODULE;
466 gc->direction_input = lnw_gpio_direction_input;
467 gc->direction_output = lnw_gpio_direction_output;
468 gc->get = lnw_gpio_get;
469 gc->set = lnw_gpio_set;
470 gc->to_irq = NULL;
471 gc->base = 0;
472 gc->ngpio = 64;
473 gc->can_sleep = 0;
474 retval = gpiochip_add(gc);
475 if (retval) {
476 dev_err(&pdev->dev, "whitneypoint gpiochip_add error %d\n",
477 retval);
478 goto err_ioremap;
479 }
480 platform_set_drvdata(pdev, lnw);
481 return 0;
482err_ioremap:
483 iounmap(lnw->reg_base);
484err_kmalloc:
485 kfree(lnw);
486 return retval;
487}
488
206210ce 489static int wp_gpio_remove(struct platform_device *pdev)
72b4379e
AC
490{
491 struct lnw_gpio *lnw = platform_get_drvdata(pdev);
492 int err;
493 err = gpiochip_remove(&lnw->chip);
494 if (err)
495 dev_err(&pdev->dev, "failed to remove gpio_chip.\n");
496 iounmap(lnw->reg_base);
497 kfree(lnw);
498 platform_set_drvdata(pdev, NULL);
499 return 0;
500}
501
502static struct platform_driver wp_gpio_driver = {
503 .probe = wp_gpio_probe,
8283c4ff 504 .remove = wp_gpio_remove,
72b4379e
AC
505 .driver = {
506 .name = "wp_gpio",
507 .owner = THIS_MODULE,
508 },
509};
510
8bf02617
AD
511static int __init lnw_gpio_init(void)
512{
72b4379e
AC
513 int ret;
514 ret = pci_register_driver(&lnw_gpio_driver);
515 if (ret < 0)
516 return ret;
517 ret = platform_driver_register(&wp_gpio_driver);
518 if (ret < 0)
519 pci_unregister_driver(&lnw_gpio_driver);
520 return ret;
8bf02617
AD
521}
522
523device_initcall(lnw_gpio_init);
This page took 0.230131 seconds and 5 git commands to generate.