blob: fec85ca89c58013cf3300939af8dc3f46e7113ef [file] [log] [blame]
Grant Likelyc103de22011-06-04 18:38:28 -06001/*
2 * Moorestown platform Langwell chip GPIO driver
3 *
Andy Shevchenko611a4852013-05-22 13:20:14 +03004 * Copyright (c) 2008, 2009, 2013, Intel Corporation.
Alek Du8bf02612009-09-22 16:46:36 -07005 *
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;
Andy Shevchenko64c8cbc2013-05-22 13:20:11 +030068 void __iomem *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
David Cohen46ebfbc2012-12-20 14:45:51 -080074#define to_lnw_priv(chip) container_of(chip, struct lnw_gpio, chip)
75
Alek Du8081c842010-05-26 14:42:25 -070076static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned offset,
Andy Shevchenko611a4852013-05-22 13:20:14 +030077 enum GPIO_REG reg_type)
Alek Du8bf02612009-09-22 16:46:36 -070078{
David Cohen46ebfbc2012-12-20 14:45:51 -080079 struct lnw_gpio *lnw = to_lnw_priv(chip);
Alek Du8081c842010-05-26 14:42:25 -070080 unsigned nreg = chip->ngpio / 32;
Alek Du8bf02612009-09-22 16:46:36 -070081 u8 reg = offset / 32;
Alek Du8bf02612009-09-22 16:46:36 -070082
Andy Shevchenko611a4852013-05-22 13:20:14 +030083 return lnw->reg_base + reg_type * nreg * 4 + reg * 4;
Alek Du8081c842010-05-26 14:42:25 -070084}
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{
David Cohen46ebfbc2012-12-20 14:45:51 -080089 struct lnw_gpio *lnw = to_lnw_priv(chip);
Adrian Hunter8c0f7b12011-10-03 14:36:07 +030090 unsigned nreg = chip->ngpio / 32;
91 u8 reg = offset / 16;
Adrian Hunter8c0f7b12011-10-03 14:36:07 +030092
Andy Shevchenko611a4852013-05-22 13:20:14 +030093 return lnw->reg_base + reg_type * nreg * 4 + reg * 4;
Adrian Hunter8c0f7b12011-10-03 14:36:07 +030094}
95
96static int lnw_gpio_request(struct gpio_chip *chip, unsigned offset)
97{
98 void __iomem *gafr = gpio_reg_2bit(chip, offset, GAFR);
99 u32 value = readl(gafr);
100 int shift = (offset % 16) << 1, af = (value >> shift) & 3;
101
102 if (af) {
103 value &= ~(3 << shift);
104 writel(value, gafr);
105 }
106 return 0;
107}
108
Alek Du8081c842010-05-26 14:42:25 -0700109static int lnw_gpio_get(struct gpio_chip *chip, unsigned offset)
110{
111 void __iomem *gplr = gpio_reg(chip, offset, GPLR);
112
Alek Du8bf02612009-09-22 16:46:36 -0700113 return readl(gplr) & BIT(offset % 32);
114}
115
116static void lnw_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
117{
Alek Du8bf02612009-09-22 16:46:36 -0700118 void __iomem *gpsr, *gpcr;
119
120 if (value) {
Alek Du8081c842010-05-26 14:42:25 -0700121 gpsr = gpio_reg(chip, offset, GPSR);
Alek Du8bf02612009-09-22 16:46:36 -0700122 writel(BIT(offset % 32), gpsr);
123 } else {
Alek Du8081c842010-05-26 14:42:25 -0700124 gpcr = gpio_reg(chip, offset, GPCR);
Alek Du8bf02612009-09-22 16:46:36 -0700125 writel(BIT(offset % 32), gpcr);
126 }
127}
128
129static int lnw_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
130{
David Cohen46ebfbc2012-12-20 14:45:51 -0800131 struct lnw_gpio *lnw = to_lnw_priv(chip);
Alek Du8081c842010-05-26 14:42:25 -0700132 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700133 u32 value;
134 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700135
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100136 if (lnw->pdev)
137 pm_runtime_get(&lnw->pdev->dev);
138
Alek Du8bf02612009-09-22 16:46:36 -0700139 spin_lock_irqsave(&lnw->lock, flags);
140 value = readl(gpdr);
141 value &= ~BIT(offset % 32);
142 writel(value, gpdr);
143 spin_unlock_irqrestore(&lnw->lock, flags);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100144
145 if (lnw->pdev)
146 pm_runtime_put(&lnw->pdev->dev);
147
Alek Du8bf02612009-09-22 16:46:36 -0700148 return 0;
149}
150
151static int lnw_gpio_direction_output(struct gpio_chip *chip,
152 unsigned offset, int value)
153{
David Cohen46ebfbc2012-12-20 14:45:51 -0800154 struct lnw_gpio *lnw = to_lnw_priv(chip);
Alek Du8081c842010-05-26 14:42:25 -0700155 void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
Alek Du8bf02612009-09-22 16:46:36 -0700156 unsigned long flags;
Alek Du8bf02612009-09-22 16:46:36 -0700157
158 lnw_gpio_set(chip, offset, value);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100159
160 if (lnw->pdev)
161 pm_runtime_get(&lnw->pdev->dev);
162
Alek Du8bf02612009-09-22 16:46:36 -0700163 spin_lock_irqsave(&lnw->lock, flags);
164 value = readl(gpdr);
Justin P. Mattock6eab04a2011-04-08 19:49:08 -0700165 value |= BIT(offset % 32);
Alek Du8bf02612009-09-22 16:46:36 -0700166 writel(value, gpdr);
167 spin_unlock_irqrestore(&lnw->lock, flags);
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100168
169 if (lnw->pdev)
170 pm_runtime_put(&lnw->pdev->dev);
171
Alek Du8bf02612009-09-22 16:46:36 -0700172 return 0;
173}
174
175static int lnw_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
176{
David Cohen46ebfbc2012-12-20 14:45:51 -0800177 struct lnw_gpio *lnw = to_lnw_priv(chip);
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300178 return irq_create_mapping(lnw->domain, offset);
Alek Du8bf02612009-09-22 16:46:36 -0700179}
180
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800181static int lnw_irq_type(struct irq_data *d, unsigned type)
Alek Du8bf02612009-09-22 16:46:36 -0700182{
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800183 struct lnw_gpio *lnw = irq_data_get_irq_chip_data(d);
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300184 u32 gpio = irqd_to_hwirq(d);
Alek Du8bf02612009-09-22 16:46:36 -0700185 unsigned long flags;
186 u32 value;
Alek Du8081c842010-05-26 14:42:25 -0700187 void __iomem *grer = gpio_reg(&lnw->chip, gpio, GRER);
188 void __iomem *gfer = gpio_reg(&lnw->chip, gpio, GFER);
Alek Du8bf02612009-09-22 16:46:36 -0700189
Roel Kluin4efec622009-12-15 16:46:18 -0800190 if (gpio >= lnw->chip.ngpio)
Alek Du8bf02612009-09-22 16:46:36 -0700191 return -EINVAL;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100192
193 if (lnw->pdev)
194 pm_runtime_get(&lnw->pdev->dev);
195
Alek Du8bf02612009-09-22 16:46:36 -0700196 spin_lock_irqsave(&lnw->lock, flags);
197 if (type & IRQ_TYPE_EDGE_RISING)
198 value = readl(grer) | BIT(gpio % 32);
199 else
200 value = readl(grer) & (~BIT(gpio % 32));
201 writel(value, grer);
202
203 if (type & IRQ_TYPE_EDGE_FALLING)
204 value = readl(gfer) | BIT(gpio % 32);
205 else
206 value = readl(gfer) & (~BIT(gpio % 32));
207 writel(value, gfer);
208 spin_unlock_irqrestore(&lnw->lock, flags);
209
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100210 if (lnw->pdev)
211 pm_runtime_put(&lnw->pdev->dev);
212
Alek Du8bf02612009-09-22 16:46:36 -0700213 return 0;
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700214}
Alek Du8bf02612009-09-22 16:46:36 -0700215
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800216static void lnw_irq_unmask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700217{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700218}
Alek Du8bf02612009-09-22 16:46:36 -0700219
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800220static void lnw_irq_mask(struct irq_data *d)
Alek Du8bf02612009-09-22 16:46:36 -0700221{
Andrew Mortonfd0574c2010-10-27 15:33:22 -0700222}
Alek Du8bf02612009-09-22 16:46:36 -0700223
224static struct irq_chip lnw_irqchip = {
225 .name = "LNW-GPIO",
Lennert Buytenhek5ffd72c2011-01-12 17:00:13 -0800226 .irq_mask = lnw_irq_mask,
227 .irq_unmask = lnw_irq_unmask,
228 .irq_set_type = lnw_irq_type,
Alek Du8bf02612009-09-22 16:46:36 -0700229};
230
Alek Du8081c842010-05-26 14:42:25 -0700231static DEFINE_PCI_DEVICE_TABLE(lnw_gpio_ids) = { /* pin number */
232 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x080f), .driver_data = 64 },
233 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081f), .driver_data = 96 },
234 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x081a), .driver_data = 96 },
David Cohen936cb1b2012-12-18 17:52:12 -0800235 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x08eb), .driver_data = 96 },
236 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x08f7), .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);
Mika Westerbergc8f925b2012-05-10 13:01:22 +0300253 while ((pending = readl(gedr))) {
Mathias Nyman2345b202011-07-08 10:02:18 +0100254 gpio = __ffs(pending);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000255 mask = BIT(gpio);
Thomas Gleixner84bead62011-03-17 19:32:58 +0000256 /* Clear before handling so we can't lose an edge */
257 writel(mask, gedr);
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300258 generic_handle_irq(irq_find_mapping(lnw->domain,
259 base + gpio));
Thomas Gleixner732063b2011-03-17 19:32:55 +0000260 }
Alek Du8bf02612009-09-22 16:46:36 -0700261 }
Feng Tang0766d202011-01-25 15:07:15 -0800262
Thomas Gleixner20e2aa92011-03-17 19:32:49 +0000263 chip->irq_eoi(data);
Alek Du8bf02612009-09-22 16:46:36 -0700264}
265
Mika Westerbergf5f93112012-04-05 12:15:17 +0300266static void lnw_irq_init_hw(struct lnw_gpio *lnw)
267{
268 void __iomem *reg;
269 unsigned base;
270
271 for (base = 0; base < lnw->chip.ngpio; base += 32) {
272 /* Clear the rising-edge detect register */
273 reg = gpio_reg(&lnw->chip, base, GRER);
274 writel(0, reg);
275 /* Clear the falling-edge detect register */
276 reg = gpio_reg(&lnw->chip, base, GFER);
277 writel(0, reg);
278 /* Clear the edge detect status register */
279 reg = gpio_reg(&lnw->chip, base, GEDR);
280 writel(~0, reg);
281 }
282}
283
Mika Westerberg465f2bd2012-05-02 11:15:50 +0300284static int lnw_gpio_irq_map(struct irq_domain *d, unsigned int virq,
285 irq_hw_number_t hw)
286{
287 struct lnw_gpio *lnw = d->host_data;
288
289 irq_set_chip_and_handler_name(virq, &lnw_irqchip, handle_simple_irq,
290 "demux");
291 irq_set_chip_data(virq, lnw);
292 irq_set_irq_type(virq, IRQ_TYPE_NONE);
293
294 return 0;
295}
296
297static const struct irq_domain_ops lnw_gpio_irq_ops = {
298 .map = lnw_gpio_irq_map,
299 .xlate = irq_domain_xlate_twocell,
300};
301
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100302static int lnw_gpio_runtime_idle(struct device *dev)
303{
304 int err = pm_schedule_suspend(dev, 500);
305
306 if (!err)
307 return 0;
308
309 return -EBUSY;
310}
311
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100312static const struct dev_pm_ops lnw_gpio_pm_ops = {
David Cohen46ebfbc2012-12-20 14:45:51 -0800313 SET_RUNTIME_PM_OPS(NULL, NULL, lnw_gpio_runtime_idle)
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100314};
315
Bill Pemberton38363092012-11-19 13:22:34 -0500316static int lnw_gpio_probe(struct pci_dev *pdev,
Andy Shevchenko64c8cbc2013-05-22 13:20:11 +0300317 const struct pci_device_id *id)
Alek Du8bf02612009-09-22 16:46:36 -0700318{
Andy Shevchenko64c8cbc2013-05-22 13:20:11 +0300319 void __iomem *base;
Alek Du8bf02612009-09-22 16:46:36 -0700320 struct lnw_gpio *lnw;
Alek Du8bf02612009-09-22 16:46:36 -0700321 u32 gpio_base;
David Cohen2519f9a2013-05-06 16:11:03 -0700322 u32 irq_base;
Julia Lawalld6a2b7b2012-08-05 11:52:34 +0200323 int retval;
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300324 int ngpio = id->driver_data;
Alek Du8bf02612009-09-22 16:46:36 -0700325
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300326 retval = pcim_enable_device(pdev);
Alek Du8bf02612009-09-22 16:46:36 -0700327 if (retval)
Mika Westerberg8302c742012-04-05 12:15:15 +0300328 return retval;
Alek Du8bf02612009-09-22 16:46:36 -0700329
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300330 retval = pcim_iomap_regions(pdev, 1 << 0 | 1 << 1, pci_name(pdev));
Alek Du8bf02612009-09-22 16:46:36 -0700331 if (retval) {
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300332 dev_err(&pdev->dev, "I/O memory mapping error\n");
333 return retval;
Alek Du8bf02612009-09-22 16:46:36 -0700334 }
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300335
336 base = pcim_iomap_table(pdev)[1];
Andy Shevchenko64c8cbc2013-05-22 13:20:11 +0300337
338 irq_base = readl(base);
339 gpio_base = readl(sizeof(u32) + base);
340
Alek Du8bf02612009-09-22 16:46:36 -0700341 /* release the IO mapping, since we already get the info from bar1 */
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300342 pcim_iounmap_regions(pdev, 1 << 1);
Alek Du8bf02612009-09-22 16:46:36 -0700343
David Cohen46ebfbc2012-12-20 14:45:51 -0800344 lnw = devm_kzalloc(&pdev->dev, sizeof(*lnw), GFP_KERNEL);
Alek Du8bf02612009-09-22 16:46:36 -0700345 if (!lnw) {
Andy Shevchenko8aca1192013-05-22 13:20:13 +0300346 dev_err(&pdev->dev, "can't allocate chip data\n");
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300347 return -ENOMEM;
Alek Du8bf02612009-09-22 16:46:36 -0700348 }
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300349
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300350 lnw->reg_base = pcim_iomap_table(pdev)[0];
Alek Du8bf02612009-09-22 16:46:36 -0700351 lnw->chip.label = dev_name(&pdev->dev);
Adrian Hunter8c0f7b12011-10-03 14:36:07 +0300352 lnw->chip.request = lnw_gpio_request;
Alek Du8bf02612009-09-22 16:46:36 -0700353 lnw->chip.direction_input = lnw_gpio_direction_input;
354 lnw->chip.direction_output = lnw_gpio_direction_output;
355 lnw->chip.get = lnw_gpio_get;
356 lnw->chip.set = lnw_gpio_set;
357 lnw->chip.to_irq = lnw_gpio_to_irq;
358 lnw->chip.base = gpio_base;
Mika Westerbergb3e35af2012-04-05 12:15:16 +0300359 lnw->chip.ngpio = ngpio;
Alek Du8bf02612009-09-22 16:46:36 -0700360 lnw->chip.can_sleep = 0;
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100361 lnw->pdev = pdev;
David Cohen2519f9a2013-05-06 16:11:03 -0700362
Andy Shevchenkoaeb168f2013-05-22 13:20:10 +0300363 spin_lock_init(&lnw->lock);
364
David Cohen2519f9a2013-05-06 16:11:03 -0700365 lnw->domain = irq_domain_add_simple(pdev->dev.of_node, ngpio, irq_base,
366 &lnw_gpio_irq_ops, lnw);
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300367 if (!lnw->domain)
368 return -ENOMEM;
David Cohen2519f9a2013-05-06 16:11:03 -0700369
Alek Du8bf02612009-09-22 16:46:36 -0700370 pci_set_drvdata(pdev, lnw);
371 retval = gpiochip_add(&lnw->chip);
372 if (retval) {
Andy Shevchenko8aca1192013-05-22 13:20:13 +0300373 dev_err(&pdev->dev, "gpiochip_add error %d\n", retval);
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300374 return retval;
Alek Du8bf02612009-09-22 16:46:36 -0700375 }
Mika Westerbergf5f93112012-04-05 12:15:17 +0300376
377 lnw_irq_init_hw(lnw);
378
Thomas Gleixner674db902011-03-17 19:32:52 +0000379 irq_set_handler_data(pdev->irq, lnw);
380 irq_set_chained_handler(pdev->irq, lnw_irq_handler);
Alek Du8bf02612009-09-22 16:46:36 -0700381
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100382 pm_runtime_put_noidle(&pdev->dev);
383 pm_runtime_allow(&pdev->dev);
384
Mika Westerberg8302c742012-04-05 12:15:15 +0300385 return 0;
Alek Du8bf02612009-09-22 16:46:36 -0700386}
387
388static struct pci_driver lnw_gpio_driver = {
389 .name = "langwell_gpio",
390 .id_table = lnw_gpio_ids,
391 .probe = lnw_gpio_probe,
Kristen Carlson Accardi78128032011-05-10 14:23:45 +0100392 .driver = {
393 .pm = &lnw_gpio_pm_ops,
394 },
Alek Du8bf02612009-09-22 16:46:36 -0700395};
396
Alan Cox72b43792010-10-27 15:33:23 -0700397
Bill Pemberton38363092012-11-19 13:22:34 -0500398static int wp_gpio_probe(struct platform_device *pdev)
Alan Cox72b43792010-10-27 15:33:23 -0700399{
400 struct lnw_gpio *lnw;
401 struct gpio_chip *gc;
402 struct resource *rc;
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300403 int retval;
Alan Cox72b43792010-10-27 15:33:23 -0700404
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300405 lnw = devm_kzalloc(&pdev->dev, sizeof(struct lnw_gpio), GFP_KERNEL);
Alan Cox72b43792010-10-27 15:33:23 -0700406 if (!lnw) {
Andy Shevchenko8aca1192013-05-22 13:20:13 +0300407 dev_err(&pdev->dev, "can't allocate chip data\n");
Alan Cox72b43792010-10-27 15:33:23 -0700408 return -ENOMEM;
409 }
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300410
411 rc = platform_get_resource(pdev, IORESOURCE_MEM, 0);
412 lnw->reg_base = devm_ioremap_resource(&pdev->dev, rc);
413 if (IS_ERR(lnw->reg_base))
414 return PTR_ERR(lnw->reg_base);
415
Alan Cox72b43792010-10-27 15:33:23 -0700416 spin_lock_init(&lnw->lock);
417 gc = &lnw->chip;
418 gc->label = dev_name(&pdev->dev);
419 gc->owner = THIS_MODULE;
420 gc->direction_input = lnw_gpio_direction_input;
421 gc->direction_output = lnw_gpio_direction_output;
422 gc->get = lnw_gpio_get;
423 gc->set = lnw_gpio_set;
424 gc->to_irq = NULL;
425 gc->base = 0;
426 gc->ngpio = 64;
427 gc->can_sleep = 0;
428 retval = gpiochip_add(gc);
429 if (retval) {
Andy Shevchenko8aca1192013-05-22 13:20:13 +0300430 dev_err(&pdev->dev, "gpiochip_add error %d\n", retval);
Andy Shevchenko786e07e2013-05-22 13:20:12 +0300431 return retval;
Alan Cox72b43792010-10-27 15:33:23 -0700432 }
433 platform_set_drvdata(pdev, lnw);
434 return 0;
Alan Cox72b43792010-10-27 15:33:23 -0700435}
436
Bill Pemberton206210c2012-11-19 13:25:50 -0500437static int wp_gpio_remove(struct platform_device *pdev)
Alan Cox72b43792010-10-27 15:33:23 -0700438{
439 struct lnw_gpio *lnw = platform_get_drvdata(pdev);
440 int err;
441 err = gpiochip_remove(&lnw->chip);
442 if (err)
443 dev_err(&pdev->dev, "failed to remove gpio_chip.\n");
Alan Cox72b43792010-10-27 15:33:23 -0700444 return 0;
445}
446
447static struct platform_driver wp_gpio_driver = {
448 .probe = wp_gpio_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500449 .remove = wp_gpio_remove,
Alan Cox72b43792010-10-27 15:33:23 -0700450 .driver = {
451 .name = "wp_gpio",
452 .owner = THIS_MODULE,
453 },
454};
455
Alek Du8bf02612009-09-22 16:46:36 -0700456static int __init lnw_gpio_init(void)
457{
Alan Cox72b43792010-10-27 15:33:23 -0700458 int ret;
459 ret = pci_register_driver(&lnw_gpio_driver);
460 if (ret < 0)
461 return ret;
462 ret = platform_driver_register(&wp_gpio_driver);
463 if (ret < 0)
464 pci_unregister_driver(&lnw_gpio_driver);
465 return ret;
Alek Du8bf02612009-09-22 16:46:36 -0700466}
467
468device_initcall(lnw_gpio_init);