]> Pileus Git - ~andy/linux/blob - drivers/gpio/langwell_gpio.c
gpio/langwell: Simplify demux loop
[~andy/linux] / drivers / gpio / langwell_gpio.c
1 /* 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.
20  * Medfield platform Penwell chip.
21  * Whitney point.
22  */
23
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>
33 #include <linux/io.h>
34 #include <linux/gpio.h>
35 #include <linux/slab.h>
36
37 /*
38  * Langwell chip has 64 pins and thus there are 2 32bit registers to control
39  * each feature, while Penwell chip has 96 pins for each block, and need 3 32bit
40  * registers to control them, so we only define the order here instead of a
41  * structure, to get a bit offset for a pin (use GPDR as an example):
42  *
43  * nreg = ngpio / 32;
44  * reg = offset / 32;
45  * bit = offset % 32;
46  * reg_addr = reg_base + GPDR * nreg * 4 + reg * 4;
47  *
48  * so the bit of reg_addr is to control pin offset's GPDR feature
49 */
50
51 enum GPIO_REG {
52         GPLR = 0,       /* pin level read-only */
53         GPDR,           /* pin direction */
54         GPSR,           /* pin set */
55         GPCR,           /* pin clear */
56         GRER,           /* rising edge detect */
57         GFER,           /* falling edge detect */
58         GEDR,           /* edge detect result */
59 };
60
61 struct lnw_gpio {
62         struct gpio_chip                chip;
63         void                            *reg_base;
64         spinlock_t                      lock;
65         unsigned                        irq_base;
66 };
67
68 static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned offset,
69                         enum GPIO_REG reg_type)
70 {
71         struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
72         unsigned nreg = chip->ngpio / 32;
73         u8 reg = offset / 32;
74         void __iomem *ptr;
75
76         ptr = (void __iomem *)(lnw->reg_base + reg_type * nreg * 4 + reg * 4);
77         return ptr;
78 }
79
80 static int lnw_gpio_get(struct gpio_chip *chip, unsigned offset)
81 {
82         void __iomem *gplr = gpio_reg(chip, offset, GPLR);
83
84         return readl(gplr) & BIT(offset % 32);
85 }
86
87 static void lnw_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
88 {
89         void __iomem *gpsr, *gpcr;
90
91         if (value) {
92                 gpsr = gpio_reg(chip, offset, GPSR);
93                 writel(BIT(offset % 32), gpsr);
94         } else {
95                 gpcr = gpio_reg(chip, offset, GPCR);
96                 writel(BIT(offset % 32), gpcr);
97         }
98 }
99
100 static int lnw_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
101 {
102         struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
103         void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
104         u32 value;
105         unsigned long flags;
106
107         spin_lock_irqsave(&lnw->lock, flags);
108         value = readl(gpdr);
109         value &= ~BIT(offset % 32);
110         writel(value, gpdr);
111         spin_unlock_irqrestore(&lnw->lock, flags);
112         return 0;
113 }
114
115 static int lnw_gpio_direction_output(struct gpio_chip *chip,
116                         unsigned offset, int value)
117 {
118         struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
119         void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
120         unsigned long flags;
121
122         lnw_gpio_set(chip, offset, value);
123         spin_lock_irqsave(&lnw->lock, flags);
124         value = readl(gpdr);
125         value |= BIT(offset % 32);;
126         writel(value, gpdr);
127         spin_unlock_irqrestore(&lnw->lock, flags);
128         return 0;
129 }
130
131 static int lnw_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
132 {
133         struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
134         return lnw->irq_base + offset;
135 }
136
137 static int lnw_irq_type(struct irq_data *d, unsigned type)
138 {
139         struct lnw_gpio *lnw = irq_data_get_irq_chip_data(d);
140         u32 gpio = d->irq - lnw->irq_base;
141         unsigned long flags;
142         u32 value;
143         void __iomem *grer = gpio_reg(&lnw->chip, gpio, GRER);
144         void __iomem *gfer = gpio_reg(&lnw->chip, gpio, GFER);
145
146         if (gpio >= lnw->chip.ngpio)
147                 return -EINVAL;
148         spin_lock_irqsave(&lnw->lock, flags);
149         if (type & IRQ_TYPE_EDGE_RISING)
150                 value = readl(grer) | BIT(gpio % 32);
151         else
152                 value = readl(grer) & (~BIT(gpio % 32));
153         writel(value, grer);
154
155         if (type & IRQ_TYPE_EDGE_FALLING)
156                 value = readl(gfer) | BIT(gpio % 32);
157         else
158                 value = readl(gfer) & (~BIT(gpio % 32));
159         writel(value, gfer);
160         spin_unlock_irqrestore(&lnw->lock, flags);
161
162         return 0;
163 }
164
165 static void lnw_irq_unmask(struct irq_data *d)
166 {
167 }
168
169 static void lnw_irq_mask(struct irq_data *d)
170 {
171 }
172
173 static struct irq_chip lnw_irqchip = {
174         .name           = "LNW-GPIO",
175         .irq_mask       = lnw_irq_mask,
176         .irq_unmask     = lnw_irq_unmask,
177         .irq_set_type   = lnw_irq_type,
178 };
179
180 static DEFINE_PCI_DEVICE_TABLE(lnw_gpio_ids) = {   /* pin number */
181         { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x080f), .driver_data = 64 },
182         { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081f), .driver_data = 96 },
183         { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081a), .driver_data = 96 },
184         { 0, }
185 };
186 MODULE_DEVICE_TABLE(pci, lnw_gpio_ids);
187
188 static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
189 {
190         struct irq_data *data = irq_desc_get_irq_data(desc);
191         struct lnw_gpio *lnw = irq_data_get_irq_handler_data(data);
192         struct irq_chip *chip = irq_data_get_irq_chip(data);
193         u32 base, gpio, gedr_v;
194         unsigned long pending;
195         void __iomem *gedr;
196
197         /* check GPIO controller to check which pin triggered the interrupt */
198         for (base = 0; base < lnw->chip.ngpio; base += 32) {
199                 gedr = gpio_reg(&lnw->chip, base, GEDR);
200                 gedr_v = pending = readl(gedr);
201                 if (!gedr_v)
202                         continue;
203                 while (pending) {
204                         gpio = __ffs(pending) - 1;
205                         pending &= ~BIT(gpio);
206                         generic_handle_irq(lnw->irq_base + base + gpio);
207                 }
208                 /* clear the edge detect status bit */
209                 writel(gedr_v, gedr);
210         }
211
212         chip->irq_eoi(data);
213 }
214
215 static int __devinit lnw_gpio_probe(struct pci_dev *pdev,
216                         const struct pci_device_id *id)
217 {
218         void *base;
219         int i;
220         resource_size_t start, len;
221         struct lnw_gpio *lnw;
222         u32 irq_base;
223         u32 gpio_base;
224         int retval = 0;
225
226         retval = pci_enable_device(pdev);
227         if (retval)
228                 goto done;
229
230         retval = pci_request_regions(pdev, "langwell_gpio");
231         if (retval) {
232                 dev_err(&pdev->dev, "error requesting resources\n");
233                 goto err2;
234         }
235         /* get the irq_base from bar1 */
236         start = pci_resource_start(pdev, 1);
237         len = pci_resource_len(pdev, 1);
238         base = ioremap_nocache(start, len);
239         if (!base) {
240                 dev_err(&pdev->dev, "error mapping bar1\n");
241                 goto err3;
242         }
243         irq_base = *(u32 *)base;
244         gpio_base = *((u32 *)base + 1);
245         /* release the IO mapping, since we already get the info from bar1 */
246         iounmap(base);
247         /* get the register base from bar0 */
248         start = pci_resource_start(pdev, 0);
249         len = pci_resource_len(pdev, 0);
250         base = ioremap_nocache(start, len);
251         if (!base) {
252                 dev_err(&pdev->dev, "error mapping bar0\n");
253                 retval = -EFAULT;
254                 goto err3;
255         }
256
257         lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
258         if (!lnw) {
259                 dev_err(&pdev->dev, "can't allocate langwell_gpio chip data\n");
260                 retval = -ENOMEM;
261                 goto err4;
262         }
263         lnw->reg_base = base;
264         lnw->irq_base = irq_base;
265         lnw->chip.label = dev_name(&pdev->dev);
266         lnw->chip.direction_input = lnw_gpio_direction_input;
267         lnw->chip.direction_output = lnw_gpio_direction_output;
268         lnw->chip.get = lnw_gpio_get;
269         lnw->chip.set = lnw_gpio_set;
270         lnw->chip.to_irq = lnw_gpio_to_irq;
271         lnw->chip.base = gpio_base;
272         lnw->chip.ngpio = id->driver_data;
273         lnw->chip.can_sleep = 0;
274         pci_set_drvdata(pdev, lnw);
275         retval = gpiochip_add(&lnw->chip);
276         if (retval) {
277                 dev_err(&pdev->dev, "langwell gpiochip_add error %d\n", retval);
278                 goto err5;
279         }
280         irq_set_handler_data(pdev->irq, lnw);
281         irq_set_chained_handler(pdev->irq, lnw_irq_handler);
282         for (i = 0; i < lnw->chip.ngpio; i++) {
283                 irq_set_chip_and_handler_name(i + lnw->irq_base, &lnw_irqchip,
284                                               handle_simple_irq, "demux");
285                 irq_set_chip_data(i + lnw->irq_base, lnw);
286         }
287
288         spin_lock_init(&lnw->lock);
289         goto done;
290 err5:
291         kfree(lnw);
292 err4:
293         iounmap(base);
294 err3:
295         pci_release_regions(pdev);
296 err2:
297         pci_disable_device(pdev);
298 done:
299         return retval;
300 }
301
302 static struct pci_driver lnw_gpio_driver = {
303         .name           = "langwell_gpio",
304         .id_table       = lnw_gpio_ids,
305         .probe          = lnw_gpio_probe,
306 };
307
308
309 static int __devinit wp_gpio_probe(struct platform_device *pdev)
310 {
311         struct lnw_gpio *lnw;
312         struct gpio_chip *gc;
313         struct resource *rc;
314         int retval = 0;
315
316         rc = platform_get_resource(pdev, IORESOURCE_MEM, 0);
317         if (!rc)
318                 return -EINVAL;
319
320         lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
321         if (!lnw) {
322                 dev_err(&pdev->dev,
323                         "can't allocate whitneypoint_gpio chip data\n");
324                 return -ENOMEM;
325         }
326         lnw->reg_base = ioremap_nocache(rc->start, resource_size(rc));
327         if (lnw->reg_base == NULL) {
328                 retval = -EINVAL;
329                 goto err_kmalloc;
330         }
331         spin_lock_init(&lnw->lock);
332         gc = &lnw->chip;
333         gc->label = dev_name(&pdev->dev);
334         gc->owner = THIS_MODULE;
335         gc->direction_input = lnw_gpio_direction_input;
336         gc->direction_output = lnw_gpio_direction_output;
337         gc->get = lnw_gpio_get;
338         gc->set = lnw_gpio_set;
339         gc->to_irq = NULL;
340         gc->base = 0;
341         gc->ngpio = 64;
342         gc->can_sleep = 0;
343         retval = gpiochip_add(gc);
344         if (retval) {
345                 dev_err(&pdev->dev, "whitneypoint gpiochip_add error %d\n",
346                                                                 retval);
347                 goto err_ioremap;
348         }
349         platform_set_drvdata(pdev, lnw);
350         return 0;
351 err_ioremap:
352         iounmap(lnw->reg_base);
353 err_kmalloc:
354         kfree(lnw);
355         return retval;
356 }
357
358 static int __devexit wp_gpio_remove(struct platform_device *pdev)
359 {
360         struct lnw_gpio *lnw = platform_get_drvdata(pdev);
361         int err;
362         err = gpiochip_remove(&lnw->chip);
363         if (err)
364                 dev_err(&pdev->dev, "failed to remove gpio_chip.\n");
365         iounmap(lnw->reg_base);
366         kfree(lnw);
367         platform_set_drvdata(pdev, NULL);
368         return 0;
369 }
370
371 static struct platform_driver wp_gpio_driver = {
372         .probe          = wp_gpio_probe,
373         .remove         = __devexit_p(wp_gpio_remove),
374         .driver         = {
375                 .name   = "wp_gpio",
376                 .owner  = THIS_MODULE,
377         },
378 };
379
380 static int __init lnw_gpio_init(void)
381 {
382         int ret;
383         ret =  pci_register_driver(&lnw_gpio_driver);
384         if (ret < 0)
385                 return ret;
386         ret = platform_driver_register(&wp_gpio_driver);
387         if (ret < 0)
388                 pci_unregister_driver(&lnw_gpio_driver);
389         return ret;
390 }
391
392 device_initcall(lnw_gpio_init);