blob: 42d470632aea1c865766cbef39b005532fb13864 [file] [log] [blame]
Anton Vorontsovaeec56e2010-10-27 15:33:15 -07001/*
Grant Likelyc103de22011-06-04 18:38:28 -06002 * Generic driver for memory-mapped GPIO controllers.
Anton Vorontsovaeec56e2010-10-27 15:33:15 -07003 *
4 * Copyright 2008 MontaVista Software, Inc.
5 * Copyright 2008,2010 Anton Vorontsov <cbouatmailru@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 * ....``.```~~~~````.`.`.`.`.```````'',,,.........`````......`.......
13 * ...`` ```````..
14 * ..The simplest form of a GPIO controller that the driver supports is``
15 * `.just a single "data" register, where GPIO state can be read and/or `
16 * `,..written. ,,..``~~~~ .....``.`.`.~~.```.`.........``````.```````
17 * `````````
18 ___
19_/~~|___/~| . ```~~~~~~ ___/___\___ ,~.`.`.`.`````.~~...,,,,...
20__________|~$@~~~ %~ /o*o*o*o*o*o\ .. Implementing such a GPIO .
21o ` ~~~~\___/~~~~ ` controller in FPGA is ,.`
22 `....trivial..'~`.```.```
23 * ```````
24 * .```````~~~~`..`.``.``.
25 * . The driver supports `... ,..```.`~~~```````````````....````.``,,
26 * . big-endian notation, just`. .. A bit more sophisticated controllers ,
27 * . register the device with -be`. .with a pair of set/clear-bit registers ,
28 * `.. suffix. ```~~`````....`.` . affecting the data register and the .`
29 * ``.`.``...``` ```.. output pins are also supported.`
30 * ^^ `````.`````````.,``~``~``~~``````
31 * . ^^
32 * ,..`.`.`...````````````......`.`.`.`.`.`..`.`.`..
33 * .. The expectation is that in at least some cases . ,-~~~-,
34 * .this will be used with roll-your-own ASIC/FPGA .` \ /
35 * .logic in Verilog or VHDL. ~~~`````````..`````~~` \ /
36 * ..````````......``````````` \o_
37 * |
38 * ^^ / \
39 *
40 * ...`````~~`.....``.`..........``````.`.``.```........``.
41 * ` 8, 16, 32 and 64 bits registers are supported, and``.
42 * . the number of GPIOs is determined by the width of ~
43 * .. the registers. ,............```.`.`..`.`.~~~.`.`.`~
44 * `.......````.```
45 */
46
47#include <linux/init.h>
Jamie Iles280df6b2011-05-20 00:40:19 -060048#include <linux/err.h>
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070049#include <linux/bug.h>
50#include <linux/kernel.h>
51#include <linux/module.h>
52#include <linux/spinlock.h>
53#include <linux/compiler.h>
54#include <linux/types.h>
55#include <linux/errno.h>
56#include <linux/log2.h>
57#include <linux/ioport.h>
58#include <linux/io.h>
59#include <linux/gpio.h>
60#include <linux/slab.h>
61#include <linux/platform_device.h>
62#include <linux/mod_devicetable.h>
63#include <linux/basic_mmio_gpio.h>
64
Jamie Iles8467afe2011-05-20 00:40:14 -060065static void bgpio_write8(void __iomem *reg, unsigned long data)
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070066{
Jamie Ilesfd996232011-05-20 00:40:17 -060067 writeb(data, reg);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070068}
69
Jamie Iles8467afe2011-05-20 00:40:14 -060070static unsigned long bgpio_read8(void __iomem *reg)
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070071{
Jamie Ilesfd996232011-05-20 00:40:17 -060072 return readb(reg);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -070073}
74
Jamie Iles8467afe2011-05-20 00:40:14 -060075static void bgpio_write16(void __iomem *reg, unsigned long data)
76{
Jamie Ilesfd996232011-05-20 00:40:17 -060077 writew(data, reg);
Jamie Iles8467afe2011-05-20 00:40:14 -060078}
79
80static unsigned long bgpio_read16(void __iomem *reg)
81{
Jamie Ilesfd996232011-05-20 00:40:17 -060082 return readw(reg);
Jamie Iles8467afe2011-05-20 00:40:14 -060083}
84
85static void bgpio_write32(void __iomem *reg, unsigned long data)
86{
Jamie Ilesfd996232011-05-20 00:40:17 -060087 writel(data, reg);
Jamie Iles8467afe2011-05-20 00:40:14 -060088}
89
90static unsigned long bgpio_read32(void __iomem *reg)
91{
Jamie Ilesfd996232011-05-20 00:40:17 -060092 return readl(reg);
Jamie Iles8467afe2011-05-20 00:40:14 -060093}
94
95#if BITS_PER_LONG >= 64
96static void bgpio_write64(void __iomem *reg, unsigned long data)
97{
Jamie Ilesfd996232011-05-20 00:40:17 -060098 writeq(data, reg);
Jamie Iles8467afe2011-05-20 00:40:14 -060099}
100
101static unsigned long bgpio_read64(void __iomem *reg)
102{
Jamie Ilesfd996232011-05-20 00:40:17 -0600103 return readq(reg);
Jamie Iles8467afe2011-05-20 00:40:14 -0600104}
105#endif /* BITS_PER_LONG >= 64 */
106
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100107static void bgpio_write16be(void __iomem *reg, unsigned long data)
108{
109 iowrite16be(data, reg);
110}
111
112static unsigned long bgpio_read16be(void __iomem *reg)
113{
114 return ioread16be(reg);
115}
116
117static void bgpio_write32be(void __iomem *reg, unsigned long data)
118{
119 iowrite32be(data, reg);
120}
121
122static unsigned long bgpio_read32be(void __iomem *reg)
123{
124 return ioread32be(reg);
125}
126
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700127static unsigned long bgpio_pin2mask(struct bgpio_chip *bgc, unsigned int pin)
128{
Jamie Iles8467afe2011-05-20 00:40:14 -0600129 return 1 << pin;
130}
131
132static unsigned long bgpio_pin2mask_be(struct bgpio_chip *bgc,
133 unsigned int pin)
134{
135 return 1 << (bgc->bits - 1 - pin);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700136}
137
138static int bgpio_get(struct gpio_chip *gc, unsigned int gpio)
139{
140 struct bgpio_chip *bgc = to_bgpio_chip(gc);
141
Jamie Iles8467afe2011-05-20 00:40:14 -0600142 return bgc->read_reg(bgc->reg_dat) & bgc->pin2mask(bgc, gpio);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700143}
144
145static void bgpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
146{
147 struct bgpio_chip *bgc = to_bgpio_chip(gc);
Jamie Iles8467afe2011-05-20 00:40:14 -0600148 unsigned long mask = bgc->pin2mask(bgc, gpio);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700149 unsigned long flags;
150
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700151 spin_lock_irqsave(&bgc->lock, flags);
152
153 if (val)
154 bgc->data |= mask;
155 else
156 bgc->data &= ~mask;
157
Jamie Iles8467afe2011-05-20 00:40:14 -0600158 bgc->write_reg(bgc->reg_dat, bgc->data);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700159
160 spin_unlock_irqrestore(&bgc->lock, flags);
161}
162
Jamie Ilese027d6f2011-05-20 00:40:16 -0600163static void bgpio_set_with_clear(struct gpio_chip *gc, unsigned int gpio,
164 int val)
165{
166 struct bgpio_chip *bgc = to_bgpio_chip(gc);
167 unsigned long mask = bgc->pin2mask(bgc, gpio);
168
169 if (val)
170 bgc->write_reg(bgc->reg_set, mask);
171 else
172 bgc->write_reg(bgc->reg_clr, mask);
173}
174
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600175static void bgpio_set_set(struct gpio_chip *gc, unsigned int gpio, int val)
176{
177 struct bgpio_chip *bgc = to_bgpio_chip(gc);
178 unsigned long mask = bgc->pin2mask(bgc, gpio);
179 unsigned long flags;
180
181 spin_lock_irqsave(&bgc->lock, flags);
182
183 if (val)
184 bgc->data |= mask;
185 else
186 bgc->data &= ~mask;
187
188 bgc->write_reg(bgc->reg_set, bgc->data);
189
190 spin_unlock_irqrestore(&bgc->lock, flags);
191}
192
Jamie Iles31029112011-05-20 00:40:17 -0600193static int bgpio_simple_dir_in(struct gpio_chip *gc, unsigned int gpio)
194{
195 return 0;
196}
197
198static int bgpio_simple_dir_out(struct gpio_chip *gc, unsigned int gpio,
199 int val)
200{
201 gc->set(gc, gpio, val);
202
203 return 0;
204}
205
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700206static int bgpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
207{
Jamie Iles31029112011-05-20 00:40:17 -0600208 struct bgpio_chip *bgc = to_bgpio_chip(gc);
209 unsigned long flags;
210
211 spin_lock_irqsave(&bgc->lock, flags);
212
213 bgc->dir &= ~bgc->pin2mask(bgc, gpio);
214 bgc->write_reg(bgc->reg_dir, bgc->dir);
215
216 spin_unlock_irqrestore(&bgc->lock, flags);
217
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700218 return 0;
219}
220
221static int bgpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
222{
Jamie Iles31029112011-05-20 00:40:17 -0600223 struct bgpio_chip *bgc = to_bgpio_chip(gc);
224 unsigned long flags;
225
Jamie Ilese027d6f2011-05-20 00:40:16 -0600226 gc->set(gc, gpio, val);
227
Jamie Iles31029112011-05-20 00:40:17 -0600228 spin_lock_irqsave(&bgc->lock, flags);
229
230 bgc->dir |= bgc->pin2mask(bgc, gpio);
231 bgc->write_reg(bgc->reg_dir, bgc->dir);
232
233 spin_unlock_irqrestore(&bgc->lock, flags);
234
235 return 0;
236}
237
238static int bgpio_dir_in_inv(struct gpio_chip *gc, unsigned int gpio)
239{
240 struct bgpio_chip *bgc = to_bgpio_chip(gc);
241 unsigned long flags;
242
243 spin_lock_irqsave(&bgc->lock, flags);
244
245 bgc->dir |= bgc->pin2mask(bgc, gpio);
246 bgc->write_reg(bgc->reg_dir, bgc->dir);
247
248 spin_unlock_irqrestore(&bgc->lock, flags);
249
250 return 0;
251}
252
253static int bgpio_dir_out_inv(struct gpio_chip *gc, unsigned int gpio, int val)
254{
255 struct bgpio_chip *bgc = to_bgpio_chip(gc);
256 unsigned long flags;
257
258 gc->set(gc, gpio, val);
259
260 spin_lock_irqsave(&bgc->lock, flags);
261
262 bgc->dir &= ~bgc->pin2mask(bgc, gpio);
263 bgc->write_reg(bgc->reg_dir, bgc->dir);
264
265 spin_unlock_irqrestore(&bgc->lock, flags);
266
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700267 return 0;
268}
269
Jamie Iles280df6b2011-05-20 00:40:19 -0600270static int bgpio_setup_accessors(struct device *dev,
271 struct bgpio_chip *bgc,
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100272 bool bit_be,
273 bool byte_be)
Jamie Iles364b5e82011-05-20 00:40:16 -0600274{
Jamie Iles8467afe2011-05-20 00:40:14 -0600275
276 switch (bgc->bits) {
277 case 8:
278 bgc->read_reg = bgpio_read8;
279 bgc->write_reg = bgpio_write8;
280 break;
281 case 16:
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100282 if (byte_be) {
283 bgc->read_reg = bgpio_read16be;
284 bgc->write_reg = bgpio_write16be;
285 } else {
286 bgc->read_reg = bgpio_read16;
287 bgc->write_reg = bgpio_write16;
288 }
Jamie Iles8467afe2011-05-20 00:40:14 -0600289 break;
290 case 32:
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100291 if (byte_be) {
292 bgc->read_reg = bgpio_read32be;
293 bgc->write_reg = bgpio_write32be;
294 } else {
295 bgc->read_reg = bgpio_read32;
296 bgc->write_reg = bgpio_write32;
297 }
Jamie Iles8467afe2011-05-20 00:40:14 -0600298 break;
299#if BITS_PER_LONG >= 64
300 case 64:
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100301 if (byte_be) {
302 dev_err(dev,
303 "64 bit big endian byte order unsupported\n");
304 return -EINVAL;
305 } else {
306 bgc->read_reg = bgpio_read64;
307 bgc->write_reg = bgpio_write64;
308 }
Jamie Iles8467afe2011-05-20 00:40:14 -0600309 break;
310#endif /* BITS_PER_LONG >= 64 */
311 default:
Jamie Iles280df6b2011-05-20 00:40:19 -0600312 dev_err(dev, "unsupported data width %u bits\n", bgc->bits);
Jamie Iles8467afe2011-05-20 00:40:14 -0600313 return -EINVAL;
314 }
315
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100316 bgc->pin2mask = bit_be ? bgpio_pin2mask_be : bgpio_pin2mask;
Jamie Iles8467afe2011-05-20 00:40:14 -0600317
318 return 0;
319}
320
Jamie Ilese027d6f2011-05-20 00:40:16 -0600321/*
322 * Create the device and allocate the resources. For setting GPIO's there are
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600323 * three supported configurations:
Jamie Ilese027d6f2011-05-20 00:40:16 -0600324 *
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600325 * - single input/output register resource (named "dat").
Jamie Ilese027d6f2011-05-20 00:40:16 -0600326 * - set/clear pair (named "set" and "clr").
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600327 * - single output register resource and single input resource ("set" and
328 * dat").
Jamie Ilese027d6f2011-05-20 00:40:16 -0600329 *
330 * For the single output register, this drives a 1 by setting a bit and a zero
331 * by clearing a bit. For the set clr pair, this drives a 1 by setting a bit
332 * in the set register and clears it by setting a bit in the clear register.
333 * The configuration is detected by which resources are present.
Jamie Iles31029112011-05-20 00:40:17 -0600334 *
335 * For setting the GPIO direction, there are three supported configurations:
336 *
337 * - simple bidirection GPIO that requires no configuration.
338 * - an output direction register (named "dirout") where a 1 bit
339 * indicates the GPIO is an output.
340 * - an input direction register (named "dirin") where a 1 bit indicates
341 * the GPIO is an input.
Jamie Ilese027d6f2011-05-20 00:40:16 -0600342 */
Jamie Iles280df6b2011-05-20 00:40:19 -0600343static int bgpio_setup_io(struct bgpio_chip *bgc,
344 void __iomem *dat,
345 void __iomem *set,
346 void __iomem *clr)
Jamie Iles8467afe2011-05-20 00:40:14 -0600347{
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700348
Jamie Iles280df6b2011-05-20 00:40:19 -0600349 bgc->reg_dat = dat;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700350 if (!bgc->reg_dat)
Jamie Iles280df6b2011-05-20 00:40:19 -0600351 return -EINVAL;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700352
Jamie Iles280df6b2011-05-20 00:40:19 -0600353 if (set && clr) {
354 bgc->reg_set = set;
355 bgc->reg_clr = clr;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600356 bgc->gc.set = bgpio_set_with_clear;
Jamie Iles280df6b2011-05-20 00:40:19 -0600357 } else if (set && !clr) {
358 bgc->reg_set = set;
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600359 bgc->gc.set = bgpio_set_set;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600360 } else {
361 bgc->gc.set = bgpio_set;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700362 }
363
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600364 bgc->gc.get = bgpio_get;
365
Jamie Ilese027d6f2011-05-20 00:40:16 -0600366 return 0;
367}
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700368
Jamie Iles280df6b2011-05-20 00:40:19 -0600369static int bgpio_setup_direction(struct bgpio_chip *bgc,
370 void __iomem *dirout,
371 void __iomem *dirin)
Jamie Iles31029112011-05-20 00:40:17 -0600372{
Jamie Iles280df6b2011-05-20 00:40:19 -0600373 if (dirout && dirin) {
Jamie Iles31029112011-05-20 00:40:17 -0600374 return -EINVAL;
Jamie Iles280df6b2011-05-20 00:40:19 -0600375 } else if (dirout) {
376 bgc->reg_dir = dirout;
Jamie Iles31029112011-05-20 00:40:17 -0600377 bgc->gc.direction_output = bgpio_dir_out;
378 bgc->gc.direction_input = bgpio_dir_in;
Jamie Iles280df6b2011-05-20 00:40:19 -0600379 } else if (dirin) {
380 bgc->reg_dir = dirin;
Jamie Iles31029112011-05-20 00:40:17 -0600381 bgc->gc.direction_output = bgpio_dir_out_inv;
382 bgc->gc.direction_input = bgpio_dir_in_inv;
383 } else {
384 bgc->gc.direction_output = bgpio_simple_dir_out;
385 bgc->gc.direction_input = bgpio_simple_dir_in;
386 }
387
388 return 0;
389}
390
Russell King4f5b0482011-09-14 16:22:29 -0700391int bgpio_remove(struct bgpio_chip *bgc)
Jamie Ilese027d6f2011-05-20 00:40:16 -0600392{
Jamie Iles280df6b2011-05-20 00:40:19 -0600393 int err = gpiochip_remove(&bgc->gc);
394
395 kfree(bgc);
396
397 return err;
398}
399EXPORT_SYMBOL_GPL(bgpio_remove);
400
Russell King4f5b0482011-09-14 16:22:29 -0700401int bgpio_init(struct bgpio_chip *bgc, struct device *dev,
402 unsigned long sz, void __iomem *dat, void __iomem *set,
403 void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800404 unsigned long flags)
Jamie Iles280df6b2011-05-20 00:40:19 -0600405{
Jamie Ilese027d6f2011-05-20 00:40:16 -0600406 int ret;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600407
Jamie Iles280df6b2011-05-20 00:40:19 -0600408 if (!is_power_of_2(sz))
409 return -EINVAL;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600410
Jamie Iles280df6b2011-05-20 00:40:19 -0600411 bgc->bits = sz * 8;
412 if (bgc->bits > BITS_PER_LONG)
413 return -EINVAL;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700414
Jamie Ilese027d6f2011-05-20 00:40:16 -0600415 spin_lock_init(&bgc->lock);
Jamie Iles280df6b2011-05-20 00:40:19 -0600416 bgc->gc.dev = dev;
417 bgc->gc.label = dev_name(dev);
418 bgc->gc.base = -1;
419 bgc->gc.ngpio = bgc->bits;
420
421 ret = bgpio_setup_io(bgc, dat, set, clr);
422 if (ret)
423 return ret;
424
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100425 ret = bgpio_setup_accessors(dev, bgc, flags & BGPIOF_BIG_ENDIAN,
426 flags & BGPIOF_BIG_ENDIAN_BYTE_ORDER);
Jamie Iles280df6b2011-05-20 00:40:19 -0600427 if (ret)
428 return ret;
429
430 ret = bgpio_setup_direction(bgc, dirout, dirin);
Jamie Iles31029112011-05-20 00:40:17 -0600431 if (ret)
432 return ret;
433
Jamie Iles8467afe2011-05-20 00:40:14 -0600434 bgc->data = bgc->read_reg(bgc->reg_dat);
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800435 if (bgc->gc.set == bgpio_set_set &&
436 !(flags & BGPIOF_UNREADABLE_REG_SET))
437 bgc->data = bgc->read_reg(bgc->reg_set);
438 if (bgc->reg_dir && !(flags & BGPIOF_UNREADABLE_REG_DIR))
439 bgc->dir = bgc->read_reg(bgc->reg_dir);
Jamie Iles924e7a92011-05-20 00:40:15 -0600440
Jamie Iles280df6b2011-05-20 00:40:19 -0600441 return ret;
442}
443EXPORT_SYMBOL_GPL(bgpio_init);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700444
Grant Likelyc103de22011-06-04 18:38:28 -0600445#ifdef CONFIG_GPIO_GENERIC_PLATFORM
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700446
Jamie Iles280df6b2011-05-20 00:40:19 -0600447static void __iomem *bgpio_map(struct platform_device *pdev,
448 const char *name,
449 resource_size_t sane_sz,
450 int *err)
451{
452 struct device *dev = &pdev->dev;
453 struct resource *r;
454 resource_size_t start;
455 resource_size_t sz;
456 void __iomem *ret;
457
458 *err = 0;
459
460 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
461 if (!r)
462 return NULL;
463
464 sz = resource_size(r);
465 if (sz != sane_sz) {
466 *err = -EINVAL;
467 return NULL;
468 }
469
470 start = r->start;
471 if (!devm_request_mem_region(dev, start, sz, r->name)) {
472 *err = -EBUSY;
473 return NULL;
474 }
475
476 ret = devm_ioremap(dev, start, sz);
477 if (!ret) {
478 *err = -ENOMEM;
479 return NULL;
480 }
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700481
482 return ret;
483}
484
Bill Pemberton38363092012-11-19 13:22:34 -0500485static int bgpio_pdev_probe(struct platform_device *pdev)
Jamie Iles280df6b2011-05-20 00:40:19 -0600486{
487 struct device *dev = &pdev->dev;
488 struct resource *r;
489 void __iomem *dat;
490 void __iomem *set;
491 void __iomem *clr;
492 void __iomem *dirout;
493 void __iomem *dirin;
494 unsigned long sz;
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800495 unsigned long flags = 0;
Jamie Iles280df6b2011-05-20 00:40:19 -0600496 int err;
497 struct bgpio_chip *bgc;
498 struct bgpio_pdata *pdata = dev_get_platdata(dev);
499
500 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dat");
501 if (!r)
502 return -EINVAL;
503
504 sz = resource_size(r);
505
506 dat = bgpio_map(pdev, "dat", sz, &err);
507 if (!dat)
508 return err ? err : -EINVAL;
509
510 set = bgpio_map(pdev, "set", sz, &err);
511 if (err)
512 return err;
513
514 clr = bgpio_map(pdev, "clr", sz, &err);
515 if (err)
516 return err;
517
518 dirout = bgpio_map(pdev, "dirout", sz, &err);
519 if (err)
520 return err;
521
522 dirin = bgpio_map(pdev, "dirin", sz, &err);
523 if (err)
524 return err;
525
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800526 if (!strcmp(platform_get_device_id(pdev)->name, "basic-mmio-gpio-be"))
527 flags |= BGPIOF_BIG_ENDIAN;
Jamie Iles280df6b2011-05-20 00:40:19 -0600528
529 bgc = devm_kzalloc(&pdev->dev, sizeof(*bgc), GFP_KERNEL);
530 if (!bgc)
531 return -ENOMEM;
532
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800533 err = bgpio_init(bgc, dev, sz, dat, set, clr, dirout, dirin, flags);
Jamie Iles280df6b2011-05-20 00:40:19 -0600534 if (err)
535 return err;
536
537 if (pdata) {
538 bgc->gc.base = pdata->base;
539 if (pdata->ngpio > 0)
540 bgc->gc.ngpio = pdata->ngpio;
541 }
542
543 platform_set_drvdata(pdev, bgc);
544
545 return gpiochip_add(&bgc->gc);
546}
547
Bill Pemberton206210c2012-11-19 13:25:50 -0500548static int bgpio_pdev_remove(struct platform_device *pdev)
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700549{
Jamie Iles4ddb8ae2011-05-20 00:40:14 -0600550 struct bgpio_chip *bgc = platform_get_drvdata(pdev);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700551
Jamie Iles280df6b2011-05-20 00:40:19 -0600552 return bgpio_remove(bgc);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700553}
554
555static const struct platform_device_id bgpio_id_table[] = {
556 { "basic-mmio-gpio", },
557 { "basic-mmio-gpio-be", },
558 {},
559};
560MODULE_DEVICE_TABLE(platform, bgpio_id_table);
561
562static struct platform_driver bgpio_driver = {
563 .driver = {
564 .name = "basic-mmio-gpio",
565 },
566 .id_table = bgpio_id_table,
Jamie Iles280df6b2011-05-20 00:40:19 -0600567 .probe = bgpio_pdev_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500568 .remove = bgpio_pdev_remove,
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700569};
570
Mark Brown6f614152011-12-08 00:24:00 +0800571module_platform_driver(bgpio_driver);
Jamie Iles280df6b2011-05-20 00:40:19 -0600572
Grant Likelyc103de22011-06-04 18:38:28 -0600573#endif /* CONFIG_GPIO_GENERIC_PLATFORM */
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700574
575MODULE_DESCRIPTION("Driver for basic memory-mapped GPIO controllers");
576MODULE_AUTHOR("Anton Vorontsov <cbouatmailru@gmail.com>");
577MODULE_LICENSE("GPL");