1 /* langwell_gpio.c Moorestown platform Langwell chip GPIO driver
2 * Copyright (c) 2008 - 2009, Intel Corporation.
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.
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.
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.
19 * Moorestown platform Langwell chip.
20 * Medfield platform Penwell chip.
24 #include <linux/module.h>
25 #include <linux/pci.h>
26 #include <linux/platform_device.h>
27 #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>
34 #include <linux/gpio.h>
35 #include <linux/slab.h>
36 #include <linux/pm_runtime.h>
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):
47 * reg_addr = reg_base + GPDR * nreg * 4 + reg * 4;
49 * so the bit of reg_addr is to control pin offset's GPDR feature
53 GPLR
= 0, /* pin level read-only */
54 GPDR
, /* pin direction */
57 GRER
, /* rising edge detect */
58 GFER
, /* falling edge detect */
59 GEDR
, /* edge detect result */
63 struct gpio_chip chip
;
70 static void __iomem
*gpio_reg(struct gpio_chip
*chip
, unsigned offset
,
71 enum GPIO_REG reg_type
)
73 struct lnw_gpio
*lnw
= container_of(chip
, struct lnw_gpio
, chip
);
74 unsigned nreg
= chip
->ngpio
/ 32;
78 ptr
= (void __iomem
*)(lnw
->reg_base
+ reg_type
* nreg
* 4 + reg
* 4);
82 static int lnw_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
84 void __iomem
*gplr
= gpio_reg(chip
, offset
, GPLR
);
86 return readl(gplr
) & BIT(offset
% 32);
89 static void lnw_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
91 void __iomem
*gpsr
, *gpcr
;
94 gpsr
= gpio_reg(chip
, offset
, GPSR
);
95 writel(BIT(offset
% 32), gpsr
);
97 gpcr
= gpio_reg(chip
, offset
, GPCR
);
98 writel(BIT(offset
% 32), gpcr
);
102 static int lnw_gpio_direction_input(struct gpio_chip
*chip
, unsigned offset
)
104 struct lnw_gpio
*lnw
= container_of(chip
, struct lnw_gpio
, chip
);
105 void __iomem
*gpdr
= gpio_reg(chip
, offset
, GPDR
);
110 pm_runtime_get(&lnw
->pdev
->dev
);
112 spin_lock_irqsave(&lnw
->lock
, flags
);
114 value
&= ~BIT(offset
% 32);
116 spin_unlock_irqrestore(&lnw
->lock
, flags
);
119 pm_runtime_put(&lnw
->pdev
->dev
);
124 static int lnw_gpio_direction_output(struct gpio_chip
*chip
,
125 unsigned offset
, int value
)
127 struct lnw_gpio
*lnw
= container_of(chip
, struct lnw_gpio
, chip
);
128 void __iomem
*gpdr
= gpio_reg(chip
, offset
, GPDR
);
131 lnw_gpio_set(chip
, offset
, value
);
134 pm_runtime_get(&lnw
->pdev
->dev
);
136 spin_lock_irqsave(&lnw
->lock
, flags
);
138 value
|= BIT(offset
% 32);
140 spin_unlock_irqrestore(&lnw
->lock
, flags
);
143 pm_runtime_put(&lnw
->pdev
->dev
);
148 static int lnw_gpio_to_irq(struct gpio_chip
*chip
, unsigned offset
)
150 struct lnw_gpio
*lnw
= container_of(chip
, struct lnw_gpio
, chip
);
151 return lnw
->irq_base
+ offset
;
154 static int lnw_irq_type(struct irq_data
*d
, unsigned type
)
156 struct lnw_gpio
*lnw
= irq_data_get_irq_chip_data(d
);
157 u32 gpio
= d
->irq
- lnw
->irq_base
;
160 void __iomem
*grer
= gpio_reg(&lnw
->chip
, gpio
, GRER
);
161 void __iomem
*gfer
= gpio_reg(&lnw
->chip
, gpio
, GFER
);
163 if (gpio
>= lnw
->chip
.ngpio
)
167 pm_runtime_get(&lnw
->pdev
->dev
);
169 spin_lock_irqsave(&lnw
->lock
, flags
);
170 if (type
& IRQ_TYPE_EDGE_RISING
)
171 value
= readl(grer
) | BIT(gpio
% 32);
173 value
= readl(grer
) & (~BIT(gpio
% 32));
176 if (type
& IRQ_TYPE_EDGE_FALLING
)
177 value
= readl(gfer
) | BIT(gpio
% 32);
179 value
= readl(gfer
) & (~BIT(gpio
% 32));
181 spin_unlock_irqrestore(&lnw
->lock
, flags
);
184 pm_runtime_put(&lnw
->pdev
->dev
);
189 static void lnw_irq_unmask(struct irq_data
*d
)
193 static void lnw_irq_mask(struct irq_data
*d
)
197 static struct irq_chip lnw_irqchip
= {
199 .irq_mask
= lnw_irq_mask
,
200 .irq_unmask
= lnw_irq_unmask
,
201 .irq_set_type
= lnw_irq_type
,
204 static 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 },
210 MODULE_DEVICE_TABLE(pci
, lnw_gpio_ids
);
212 static void lnw_irq_handler(unsigned irq
, struct irq_desc
*desc
)
214 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
);
217 u32 base
, gpio
, mask
;
218 unsigned long pending
;
221 /* check GPIO controller to check which pin triggered the interrupt */
222 for (base
= 0; base
< lnw
->chip
.ngpio
; base
+= 32) {
223 gedr
= gpio_reg(&lnw
->chip
, base
, GEDR
);
224 pending
= readl(gedr
);
226 gpio
= __ffs(pending
) - 1;
229 /* Clear before handling so we can't lose an edge */
231 generic_handle_irq(lnw
->irq_base
+ base
+ gpio
);
239 static int lnw_gpio_runtime_resume(struct device
*dev
)
244 static int lnw_gpio_runtime_suspend(struct device
*dev
)
249 static int lnw_gpio_runtime_idle(struct device
*dev
)
251 int err
= pm_schedule_suspend(dev
, 500);
260 #define lnw_gpio_runtime_suspend NULL
261 #define lnw_gpio_runtime_resume NULL
262 #define lnw_gpio_runtime_idle NULL
265 static 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
,
271 static int __devinit
lnw_gpio_probe(struct pci_dev
*pdev
,
272 const struct pci_device_id
*id
)
276 resource_size_t start
, len
;
277 struct lnw_gpio
*lnw
;
282 retval
= pci_enable_device(pdev
);
286 retval
= pci_request_regions(pdev
, "langwell_gpio");
288 dev_err(&pdev
->dev
, "error requesting resources\n");
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
);
296 dev_err(&pdev
->dev
, "error mapping bar1\n");
299 irq_base
= *(u32
*)base
;
300 gpio_base
= *((u32
*)base
+ 1);
301 /* release the IO mapping, since we already get the info from bar1 */
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
);
308 dev_err(&pdev
->dev
, "error mapping bar0\n");
313 lnw
= kzalloc(sizeof(struct lnw_gpio
), GFP_KERNEL
);
315 dev_err(&pdev
->dev
, "can't allocate langwell_gpio chip data\n");
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
;
328 lnw
->chip
.ngpio
= id
->driver_data
;
329 lnw
->chip
.can_sleep
= 0;
331 pci_set_drvdata(pdev
, lnw
);
332 retval
= gpiochip_add(&lnw
->chip
);
334 dev_err(&pdev
->dev
, "langwell gpiochip_add error %d\n", retval
);
337 irq_set_handler_data(pdev
->irq
, lnw
);
338 irq_set_chained_handler(pdev
->irq
, lnw_irq_handler
);
339 for (i
= 0; i
< lnw
->chip
.ngpio
; i
++) {
340 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
);
345 spin_lock_init(&lnw
->lock
);
347 pm_runtime_put_noidle(&pdev
->dev
);
348 pm_runtime_allow(&pdev
->dev
);
356 pci_release_regions(pdev
);
358 pci_disable_device(pdev
);
363 static struct pci_driver lnw_gpio_driver
= {
364 .name
= "langwell_gpio",
365 .id_table
= lnw_gpio_ids
,
366 .probe
= lnw_gpio_probe
,
368 .pm
= &lnw_gpio_pm_ops
,
373 static int __devinit
wp_gpio_probe(struct platform_device
*pdev
)
375 struct lnw_gpio
*lnw
;
376 struct gpio_chip
*gc
;
380 rc
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
384 lnw
= kzalloc(sizeof(struct lnw_gpio
), GFP_KERNEL
);
387 "can't allocate whitneypoint_gpio chip data\n");
390 lnw
->reg_base
= ioremap_nocache(rc
->start
, resource_size(rc
));
391 if (lnw
->reg_base
== NULL
) {
395 spin_lock_init(&lnw
->lock
);
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
;
407 retval
= gpiochip_add(gc
);
409 dev_err(&pdev
->dev
, "whitneypoint gpiochip_add error %d\n",
413 platform_set_drvdata(pdev
, lnw
);
416 iounmap(lnw
->reg_base
);
422 static int __devexit
wp_gpio_remove(struct platform_device
*pdev
)
424 struct lnw_gpio
*lnw
= platform_get_drvdata(pdev
);
426 err
= gpiochip_remove(&lnw
->chip
);
428 dev_err(&pdev
->dev
, "failed to remove gpio_chip.\n");
429 iounmap(lnw
->reg_base
);
431 platform_set_drvdata(pdev
, NULL
);
435 static struct platform_driver wp_gpio_driver
= {
436 .probe
= wp_gpio_probe
,
437 .remove
= __devexit_p(wp_gpio_remove
),
440 .owner
= THIS_MODULE
,
444 static int __init
lnw_gpio_init(void)
447 ret
= pci_register_driver(&lnw_gpio_driver
);
450 ret
= platform_driver_register(&wp_gpio_driver
);
452 pci_unregister_driver(&lnw_gpio_driver
);
456 device_initcall(lnw_gpio_init
);