blob: b0673574dc700c851a72415212577a7ab4610d6b [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>
Mika Westerberg465f2bd2012-05-02 11:15:50 +030039#include <linux/irqdomain.h>
Alek Du8bf02612009-09-22 16:46:36 -070040
Alek Du8081c842010-05-26 14:42:25 -070041/*
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 */
Adrian Hunter8c0f7b12011-10-03 14:36:07 +030063 GAFR, /* alt function */
Alek Du8bf02612009-09-22 16:46:36 -070064};
65
66struct lnw_gpio {
67 struct gpio_chip chip;
Alek Du8081c842010-05-26 14:42:25 -070068 void *reg_base;
Alek Du8bf02612009-09-22 16:46:36 -070069 spinlock_t lock;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +010070 struct pci_dev *pdev;
Mika Westerberg465f2bd2012-05-02 11:15:50 +030071 struct irq_domain *domain;
Alek Du8bf02612009-09-22 16:46:36 -070072};
73
Alek Du8081c842010-05-26 14:42:25 -070074static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned offset,
75 enum GPIO_REG reg_type)
Alek Du8bf02612009-09-22 16:46:36 -070076{
77 struct lnw_gpio *lnw = container_of(chip, struct lnw_gpio, chip);
Alek Du8081c842010-05-26 14:42:25 -070078 unsigned nreg = chip->ngpio / 32;
Alek Du8bf02612009-09-22 16:46:36 -070079 u8 reg = offset / 32;
Alek Du8081c842010-05-26 14:42:25 -070080 void __iomem *ptr;
Alek Du8bf02612009-09-22 16:46:36 -070081
Alek Du8081c842010-05-26 14:42:25 -070082 ptr = (void __iomem *)(lnw->reg_base + reg_type * nreg * 4 + reg * 4);
83 return ptr;
84}
85
Adrian Hunter8c0f7b12011-10-03 14:36:07 +030086static 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
Alek Du8081c842010-05-26 14:42:25 -0700111static int lnw_gpio_get(struct gpio_chip *chip, unsigned offset)
112{
113 void __iomem *gplr = gpio_reg(chip, offset, GPLR);
114
Alek Du8bf02612009-09-22 16:46:36 -0700115 return readl(gplr) & BIT(offset % 32);
116}
117
118static void lnw_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
119{
Alek Du8bf02612009-09-22 16:46:36 -0700120 void __iomem *gpsr, *gpcr;
121
122 if (value) {
Alek Du8081c842010-05-26 14:42:25 -0700123 gpsr = gpio_reg(chip, offset, GPSR);
Alek Du8bf02612009-09-22 16:46:36 -0700124 writel(BIT(offset % 32), gpsr);
125 } else {
Alek Du8081c842010-05-26 14:42:25 -0700126 gpcr = gpio_reg(chip, offset, GPCR);
Alek Du8bf02612009-09-22 16:46:36 -0700127 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);
Alek Du8081c842010-05-26 14:42:25 -0700134 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700135 u32 value;
136 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700137
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100138 if (lnw->pdev)
139 pm_runtime_get(&lnw->pdev->dev);
140
Alek Du8bf02612009-09-22 16:46:36 -0700141 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);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100146
147 if (lnw->pdev)
148 pm_runtime_put(&lnw->pdev->dev);
149
Alek Du8bf02612009-09-22 16:46:36 -0700150 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);
Alek Du8081c842010-05-26 14:42:25 -0700157 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700158 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700159
160 lnw_gpio_set(chip, offset, value);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100161
162 if (lnw->pdev)
163 pm_runtime_get(&lnw->pdev->dev);
164
Alek Du8bf02612009-09-22 16:46:36 -0700165 spin_lock_irqsave(&lnw->lock, flags);
166 value = readl(gpdr);
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700167 value |= BIT(offset % 32);
Alek Du8bf02612009-09-22 16:46:36 -0700168 writel(value, gpdr);
169 spin_unlock_irqrestore(&lnw->lock, flags);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100170
171 if (lnw->pdev)
172 pm_runtime_put(&lnw->pdev->dev);
173
Alek Du8bf02612009-09-22 16:46:36 -0700174 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);
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300180 return irq_create_mapping(lnw->domain, offset);
Alek Du8bf02612009-09-22 16:46:36 -0700181}
182
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800183static int lnw_irq_type(struct irq_data *d, unsigned type)
Alek Du8bf02612009-09-22 16:46:36 -0700184{
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800185 struct lnw_gpio *lnw = irq_data_get_irq_chip_data(d);
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300186 u32 gpio = irqd_to_hwirq(d);
Alek Du8bf02612009-09-22 16:46:36 -0700187 unsigned long flags;
188 u32 value;
Alek Du8081c842010-05-26 14:42:25 -0700189 void __iomem *grer = gpio_reg(&lnw->chip, gpio, GRER);
190 void __iomem *gfer = gpio_reg(&lnw->chip, gpio, GFER);
Alek Du8bf02612009-09-22 16:46:36 -0700191
Roel Kluin4efec622009-12-15 16:46:18 -0800192 if (gpio >= lnw->chip.ngpio)
Alek Du8bf02612009-09-22 16:46:36 -0700193 return -EINVAL;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100194
195 if (lnw->pdev)
196 pm_runtime_get(&lnw->pdev->dev);
197
Alek Du8bf02612009-09-22 16:46:36 -0700198 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
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100212 if (lnw->pdev)
213 pm_runtime_put(&lnw->pdev->dev);
214
Alek Du8bf02612009-09-22 16:46:36 -0700215 return 0;
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700216}
Alek Du8bf02612009-09-22 16:46:36 -0700217
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800218static void lnw_irq_unmask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700219{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700220}
Alek Du8bf02612009-09-22 16:46:36 -0700221
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800222static void lnw_irq_mask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700223{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700224}
Alek Du8bf02612009-09-22 16:46:36 -0700225
226static struct irq_chip lnw_irqchip = {
227 .name = "LNW-GPIO",
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800228 .irq_mask = lnw_irq_mask,
229 .irq_unmask = lnw_irq_unmask,
230 .irq_set_type = lnw_irq_type,
Alek Du8bf02612009-09-22 16:46:36 -0700231};
232
Alek Du8081c842010-05-26 14:42:25 -0700233static 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 },
Alek Du8bf02612009-09-22 16:46:36 -0700237 { 0, }
238};
239MODULE_DEVICE_TABLE(pci, lnw_gpio_ids);
240
241static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
242{
Thomas Gleixner20e2aa92011-03-17 19:32:49 +0000243 struct irq_data *data = irq_desc_get_irq_data(desc);
244 struct lnw_gpio *lnw = irq_data_get_irq_handler_data(data);
245 struct irq_chip *chip = irq_data_get_irq_chip(data);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000246 u32 base, gpio, mask;
Thomas Gleixner732063b2011-03-17 19:32:55 +0000247 unsigned long pending;
Alek Du8bf02612009-09-22 16:46:36 -0700248 void __iomem *gedr;
Alek Du8bf02612009-09-22 16:46:36 -0700249
250 /* check GPIO controller to check which pin triggered the interrupt */
Alek Du8081c842010-05-26 14:42:25 -0700251 for (base = 0; base < lnw->chip.ngpio; base += 32) {
252 gedr = gpio_reg(&lnw->chip, base, GEDR);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000253 pending = readl(gedr);
Thomas Gleixner732063b2011-03-17 19:32:55 +0000254 while (pending) {
Mathias Nyman2345b202011-07-08 10:02:18 +0100255 gpio = __ffs(pending);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000256 mask = BIT(gpio);
257 pending &= ~mask;
258 /* Clear before handling so we can't lose an edge */
259 writel(mask, gedr);
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300260 generic_handle_irq(irq_find_mapping(lnw->domain,
261 base + gpio));
Thomas Gleixner732063b2011-03-17 19:32:55 +0000262 }
Alek Du8bf02612009-09-22 16:46:36 -0700263 }
Feng Tang0766d202011-01-25 15:07:15 -0800264
Thomas Gleixner20e2aa92011-03-17 19:32:49 +0000265 chip->irq_eoi(data);
Alek Du8bf02612009-09-22 16:46:36 -0700266}
267
Mika Westerbergf5f93112012-04-05 12:15:17 +0300268static 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
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300286static 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
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100304#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
Alek Du8bf02612009-09-22 16:46:36 -0700337static int __devinit lnw_gpio_probe(struct pci_dev *pdev,
338 const struct pci_device_id *id)
339{
340 void *base;
Alek Du8bf02612009-09-22 16:46:36 -0700341 resource_size_t start, len;
342 struct lnw_gpio *lnw;
Alek Du8bf02612009-09-22 16:46:36 -0700343 u32 gpio_base;
344 int retval = 0;
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300345 int ngpio = id->driver_data;
Alek Du8bf02612009-09-22 16:46:36 -0700346
347 retval = pci_enable_device(pdev);
348 if (retval)
Mika Westerberg8302c742012-04-05 12:15:15 +0300349 return retval;
Alek Du8bf02612009-09-22 16:46:36 -0700350
351 retval = pci_request_regions(pdev, "langwell_gpio");
352 if (retval) {
353 dev_err(&pdev->dev, "error requesting resources\n");
354 goto err2;
355 }
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300356 /* get the gpio_base from bar1 */
Alek Du8bf02612009-09-22 16:46:36 -0700357 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");
362 goto err3;
363 }
Alek Du8bf02612009-09-22 16:46:36 -0700364 gpio_base = *((u32 *)base + 1);
365 /* release the IO mapping, since we already get the info from bar1 */
366 iounmap(base);
367 /* get the register base from bar0 */
368 start = pci_resource_start(pdev, 0);
369 len = pci_resource_len(pdev, 0);
Mika Westerberg8302c742012-04-05 12:15:15 +0300370 base = devm_ioremap_nocache(&pdev->dev, start, len);
Alek Du8bf02612009-09-22 16:46:36 -0700371 if (!base) {
372 dev_err(&pdev->dev, "error mapping bar0\n");
373 retval = -EFAULT;
374 goto err3;
375 }
376
Mika Westerberg8302c742012-04-05 12:15:15 +0300377 lnw = devm_kzalloc(&pdev->dev, sizeof(struct lnw_gpio), GFP_KERNEL);
Alek Du8bf02612009-09-22 16:46:36 -0700378 if (!lnw) {
379 dev_err(&pdev->dev, "can't allocate langwell_gpio chip data\n");
380 retval = -ENOMEM;
Mika Westerberg8302c742012-04-05 12:15:15 +0300381 goto err3;
Alek Du8bf02612009-09-22 16:46:36 -0700382 }
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300383
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300384 lnw->domain = irq_domain_add_linear(pdev->dev.of_node, ngpio,
385 &lnw_gpio_irq_ops, lnw);
386 if (!lnw->domain)
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300387 goto err3;
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300388
Alek Du8bf02612009-09-22 16:46:36 -0700389 lnw->reg_base = base;
Alek Du8bf02612009-09-22 16:46:36 -0700390 lnw->chip.label = dev_name(&pdev->dev);
Adrian Hunter8c0f7b12011-10-03 14:36:07 +0300391 lnw->chip.request = lnw_gpio_request;
Alek Du8bf02612009-09-22 16:46:36 -0700392 lnw->chip.direction_input = lnw_gpio_direction_input;
393 lnw->chip.direction_output = lnw_gpio_direction_output;
394 lnw->chip.get = lnw_gpio_get;
395 lnw->chip.set = lnw_gpio_set;
396 lnw->chip.to_irq = lnw_gpio_to_irq;
397 lnw->chip.base = gpio_base;
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300398 lnw->chip.ngpio = ngpio;
Alek Du8bf02612009-09-22 16:46:36 -0700399 lnw->chip.can_sleep = 0;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100400 lnw->pdev = pdev;
Alek Du8bf02612009-09-22 16:46:36 -0700401 pci_set_drvdata(pdev, lnw);
402 retval = gpiochip_add(&lnw->chip);
403 if (retval) {
404 dev_err(&pdev->dev, "langwell gpiochip_add error %d\n", retval);
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300405 goto err3;
Alek Du8bf02612009-09-22 16:46:36 -0700406 }
Mika Westerbergf5f93112012-04-05 12:15:17 +0300407
408 lnw_irq_init_hw(lnw);
409
Thomas Gleixner674db902011-03-17 19:32:52 +0000410 irq_set_handler_data(pdev->irq, lnw);
411 irq_set_chained_handler(pdev->irq, lnw_irq_handler);
Alek Du8bf02612009-09-22 16:46:36 -0700412
413 spin_lock_init(&lnw->lock);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100414
415 pm_runtime_put_noidle(&pdev->dev);
416 pm_runtime_allow(&pdev->dev);
417
Mika Westerberg8302c742012-04-05 12:15:15 +0300418 return 0;
419
Alek Du8bf02612009-09-22 16:46:36 -0700420err3:
421 pci_release_regions(pdev);
422err2:
423 pci_disable_device(pdev);
Alek Du8bf02612009-09-22 16:46:36 -0700424 return retval;
425}
426
427static struct pci_driver lnw_gpio_driver = {
428 .name = "langwell_gpio",
429 .id_table = lnw_gpio_ids,
430 .probe = lnw_gpio_probe,
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100431 .driver = {
432 .pm = &lnw_gpio_pm_ops,
433 },
Alek Du8bf02612009-09-22 16:46:36 -0700434};
435
Alan Cox72b43792010-10-27 15:33:23 -0700436
437static int __devinit wp_gpio_probe(struct platform_device *pdev)
438{
439 struct lnw_gpio *lnw;
440 struct gpio_chip *gc;
441 struct resource *rc;
442 int retval = 0;
443
444 rc = platform_get_resource(pdev, IORESOURCE_MEM, 0);
445 if (!rc)
446 return -EINVAL;
447
448 lnw = kzalloc(sizeof(struct lnw_gpio), GFP_KERNEL);
449 if (!lnw) {
450 dev_err(&pdev->dev,
451 "can't allocate whitneypoint_gpio chip data\n");
452 return -ENOMEM;
453 }
454 lnw->reg_base = ioremap_nocache(rc->start, resource_size(rc));
455 if (lnw->reg_base == NULL) {
456 retval = -EINVAL;
457 goto err_kmalloc;
458 }
459 spin_lock_init(&lnw->lock);
460 gc = &lnw->chip;
461 gc->label = dev_name(&pdev->dev);
462 gc->owner = THIS_MODULE;
463 gc->direction_input = lnw_gpio_direction_input;
464 gc->direction_output = lnw_gpio_direction_output;
465 gc->get = lnw_gpio_get;
466 gc->set = lnw_gpio_set;
467 gc->to_irq = NULL;
468 gc->base = 0;
469 gc->ngpio = 64;
470 gc->can_sleep = 0;
471 retval = gpiochip_add(gc);
472 if (retval) {
473 dev_err(&pdev->dev, "whitneypoint gpiochip_add error %d\n",
474 retval);
475 goto err_ioremap;
476 }
477 platform_set_drvdata(pdev, lnw);
478 return 0;
479err_ioremap:
480 iounmap(lnw->reg_base);
481err_kmalloc:
482 kfree(lnw);
483 return retval;
484}
485
486static int __devexit wp_gpio_remove(struct platform_device *pdev)
487{
488 struct lnw_gpio *lnw = platform_get_drvdata(pdev);
489 int err;
490 err = gpiochip_remove(&lnw->chip);
491 if (err)
492 dev_err(&pdev->dev, "failed to remove gpio_chip.\n");
493 iounmap(lnw->reg_base);
494 kfree(lnw);
495 platform_set_drvdata(pdev, NULL);
496 return 0;
497}
498
499static struct platform_driver wp_gpio_driver = {
500 .probe = wp_gpio_probe,
501 .remove = __devexit_p(wp_gpio_remove),
502 .driver = {
503 .name = "wp_gpio",
504 .owner = THIS_MODULE,
505 },
506};
507
Alek Du8bf02612009-09-22 16:46:36 -0700508static int __init lnw_gpio_init(void)
509{
Alan Cox72b43792010-10-27 15:33:23 -0700510 int ret;
511 ret = pci_register_driver(&lnw_gpio_driver);
512 if (ret < 0)
513 return ret;
514 ret = platform_driver_register(&wp_gpio_driver);
515 if (ret < 0)
516 pci_unregister_driver(&lnw_gpio_driver);
517 return ret;
Alek Du8bf02612009-09-22 16:46:36 -0700518}
519
520device_initcall(lnw_gpio_init);