blob: bd5193c67a9c272cb0bebf779ce3277d22aac479 [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
Vladimir Zapolskiyb19e7f52015-04-29 18:34:59 +0300138static int bgpio_get_set(struct gpio_chip *gc, unsigned int gpio)
139{
140 struct bgpio_chip *bgc = to_bgpio_chip(gc);
141 unsigned long pinmask = bgc->pin2mask(bgc, gpio);
142
143 if (bgc->dir & pinmask)
144 return bgc->read_reg(bgc->reg_set) & pinmask;
145 else
146 return bgc->read_reg(bgc->reg_dat) & pinmask;
147}
148
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700149static int bgpio_get(struct gpio_chip *gc, unsigned int gpio)
150{
151 struct bgpio_chip *bgc = to_bgpio_chip(gc);
152
Linus Walleij25b35da2014-02-05 14:08:02 +0100153 return !!(bgc->read_reg(bgc->reg_dat) & bgc->pin2mask(bgc, gpio));
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700154}
155
Rabin Vincent91492a42015-07-22 15:05:18 +0200156static void bgpio_set_none(struct gpio_chip *gc, unsigned int gpio, int val)
157{
158}
159
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700160static void bgpio_set(struct gpio_chip *gc, unsigned int gpio, int val)
161{
162 struct bgpio_chip *bgc = to_bgpio_chip(gc);
Jamie Iles8467afe2011-05-20 00:40:14 -0600163 unsigned long mask = bgc->pin2mask(bgc, gpio);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700164 unsigned long flags;
165
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700166 spin_lock_irqsave(&bgc->lock, flags);
167
168 if (val)
169 bgc->data |= mask;
170 else
171 bgc->data &= ~mask;
172
Jamie Iles8467afe2011-05-20 00:40:14 -0600173 bgc->write_reg(bgc->reg_dat, bgc->data);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700174
175 spin_unlock_irqrestore(&bgc->lock, flags);
176}
177
Jamie Ilese027d6f2011-05-20 00:40:16 -0600178static void bgpio_set_with_clear(struct gpio_chip *gc, unsigned int gpio,
179 int val)
180{
181 struct bgpio_chip *bgc = to_bgpio_chip(gc);
182 unsigned long mask = bgc->pin2mask(bgc, gpio);
183
184 if (val)
185 bgc->write_reg(bgc->reg_set, mask);
186 else
187 bgc->write_reg(bgc->reg_clr, mask);
188}
189
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600190static void bgpio_set_set(struct gpio_chip *gc, unsigned int gpio, int val)
191{
192 struct bgpio_chip *bgc = to_bgpio_chip(gc);
193 unsigned long mask = bgc->pin2mask(bgc, gpio);
194 unsigned long flags;
195
196 spin_lock_irqsave(&bgc->lock, flags);
197
198 if (val)
199 bgc->data |= mask;
200 else
201 bgc->data &= ~mask;
202
203 bgc->write_reg(bgc->reg_set, bgc->data);
204
205 spin_unlock_irqrestore(&bgc->lock, flags);
206}
207
Rojhalat Ibrahim73c4ced2015-01-14 15:46:38 +0100208static void bgpio_multiple_get_masks(struct bgpio_chip *bgc,
209 unsigned long *mask, unsigned long *bits,
210 unsigned long *set_mask,
211 unsigned long *clear_mask)
212{
213 int i;
214
215 *set_mask = 0;
216 *clear_mask = 0;
217
218 for (i = 0; i < bgc->bits; i++) {
219 if (*mask == 0)
220 break;
221 if (__test_and_clear_bit(i, mask)) {
222 if (test_bit(i, bits))
223 *set_mask |= bgc->pin2mask(bgc, i);
224 else
225 *clear_mask |= bgc->pin2mask(bgc, i);
226 }
227 }
228}
229
230static void bgpio_set_multiple_single_reg(struct bgpio_chip *bgc,
231 unsigned long *mask,
232 unsigned long *bits,
233 void __iomem *reg)
234{
235 unsigned long flags;
236 unsigned long set_mask, clear_mask;
237
238 spin_lock_irqsave(&bgc->lock, flags);
239
240 bgpio_multiple_get_masks(bgc, mask, bits, &set_mask, &clear_mask);
241
242 bgc->data |= set_mask;
243 bgc->data &= ~clear_mask;
244
245 bgc->write_reg(reg, bgc->data);
246
247 spin_unlock_irqrestore(&bgc->lock, flags);
248}
249
250static void bgpio_set_multiple(struct gpio_chip *gc, unsigned long *mask,
251 unsigned long *bits)
252{
253 struct bgpio_chip *bgc = to_bgpio_chip(gc);
254
255 bgpio_set_multiple_single_reg(bgc, mask, bits, bgc->reg_dat);
256}
257
258static void bgpio_set_multiple_set(struct gpio_chip *gc, unsigned long *mask,
259 unsigned long *bits)
260{
261 struct bgpio_chip *bgc = to_bgpio_chip(gc);
262
263 bgpio_set_multiple_single_reg(bgc, mask, bits, bgc->reg_set);
264}
265
266static void bgpio_set_multiple_with_clear(struct gpio_chip *gc,
267 unsigned long *mask,
268 unsigned long *bits)
269{
270 struct bgpio_chip *bgc = to_bgpio_chip(gc);
271 unsigned long set_mask, clear_mask;
272
273 bgpio_multiple_get_masks(bgc, mask, bits, &set_mask, &clear_mask);
274
275 if (set_mask)
276 bgc->write_reg(bgc->reg_set, set_mask);
277 if (clear_mask)
278 bgc->write_reg(bgc->reg_clr, clear_mask);
279}
280
Jamie Iles31029112011-05-20 00:40:17 -0600281static int bgpio_simple_dir_in(struct gpio_chip *gc, unsigned int gpio)
282{
283 return 0;
284}
285
Rabin Vincent91492a42015-07-22 15:05:18 +0200286static int bgpio_dir_out_err(struct gpio_chip *gc, unsigned int gpio,
287 int val)
288{
289 return -EINVAL;
290}
291
Jamie Iles31029112011-05-20 00:40:17 -0600292static int bgpio_simple_dir_out(struct gpio_chip *gc, unsigned int gpio,
293 int val)
294{
295 gc->set(gc, gpio, val);
296
297 return 0;
298}
299
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700300static int bgpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
301{
Jamie Iles31029112011-05-20 00:40:17 -0600302 struct bgpio_chip *bgc = to_bgpio_chip(gc);
303 unsigned long flags;
304
305 spin_lock_irqsave(&bgc->lock, flags);
306
307 bgc->dir &= ~bgc->pin2mask(bgc, gpio);
308 bgc->write_reg(bgc->reg_dir, bgc->dir);
309
310 spin_unlock_irqrestore(&bgc->lock, flags);
311
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700312 return 0;
313}
314
Philipp Zabeldb3b0fc2015-06-12 18:20:35 +0200315static int bgpio_get_dir(struct gpio_chip *gc, unsigned int gpio)
316{
317 struct bgpio_chip *bgc = to_bgpio_chip(gc);
318
319 return (bgc->read_reg(bgc->reg_dir) & bgc->pin2mask(bgc, gpio)) ?
320 GPIOF_DIR_OUT : GPIOF_DIR_IN;
321}
322
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700323static int bgpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
324{
Jamie Iles31029112011-05-20 00:40:17 -0600325 struct bgpio_chip *bgc = to_bgpio_chip(gc);
326 unsigned long flags;
327
Jamie Ilese027d6f2011-05-20 00:40:16 -0600328 gc->set(gc, gpio, val);
329
Jamie Iles31029112011-05-20 00:40:17 -0600330 spin_lock_irqsave(&bgc->lock, flags);
331
332 bgc->dir |= bgc->pin2mask(bgc, gpio);
333 bgc->write_reg(bgc->reg_dir, bgc->dir);
334
335 spin_unlock_irqrestore(&bgc->lock, flags);
336
337 return 0;
338}
339
340static int bgpio_dir_in_inv(struct gpio_chip *gc, unsigned int gpio)
341{
342 struct bgpio_chip *bgc = to_bgpio_chip(gc);
343 unsigned long flags;
344
345 spin_lock_irqsave(&bgc->lock, flags);
346
347 bgc->dir |= bgc->pin2mask(bgc, gpio);
348 bgc->write_reg(bgc->reg_dir, bgc->dir);
349
350 spin_unlock_irqrestore(&bgc->lock, flags);
351
352 return 0;
353}
354
355static int bgpio_dir_out_inv(struct gpio_chip *gc, unsigned int gpio, int val)
356{
357 struct bgpio_chip *bgc = to_bgpio_chip(gc);
358 unsigned long flags;
359
360 gc->set(gc, gpio, val);
361
362 spin_lock_irqsave(&bgc->lock, flags);
363
364 bgc->dir &= ~bgc->pin2mask(bgc, gpio);
365 bgc->write_reg(bgc->reg_dir, bgc->dir);
366
367 spin_unlock_irqrestore(&bgc->lock, flags);
368
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700369 return 0;
370}
371
Philipp Zabeldb3b0fc2015-06-12 18:20:35 +0200372static int bgpio_get_dir_inv(struct gpio_chip *gc, unsigned int gpio)
373{
374 struct bgpio_chip *bgc = to_bgpio_chip(gc);
375
376 return (bgc->read_reg(bgc->reg_dir) & bgc->pin2mask(bgc, gpio)) ?
377 GPIOF_DIR_IN : GPIOF_DIR_OUT;
378}
379
Jamie Iles280df6b2011-05-20 00:40:19 -0600380static int bgpio_setup_accessors(struct device *dev,
381 struct bgpio_chip *bgc,
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100382 bool bit_be,
383 bool byte_be)
Jamie Iles364b5e82011-05-20 00:40:16 -0600384{
Jamie Iles8467afe2011-05-20 00:40:14 -0600385
386 switch (bgc->bits) {
387 case 8:
388 bgc->read_reg = bgpio_read8;
389 bgc->write_reg = bgpio_write8;
390 break;
391 case 16:
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100392 if (byte_be) {
393 bgc->read_reg = bgpio_read16be;
394 bgc->write_reg = bgpio_write16be;
395 } else {
396 bgc->read_reg = bgpio_read16;
397 bgc->write_reg = bgpio_write16;
398 }
Jamie Iles8467afe2011-05-20 00:40:14 -0600399 break;
400 case 32:
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100401 if (byte_be) {
402 bgc->read_reg = bgpio_read32be;
403 bgc->write_reg = bgpio_write32be;
404 } else {
405 bgc->read_reg = bgpio_read32;
406 bgc->write_reg = bgpio_write32;
407 }
Jamie Iles8467afe2011-05-20 00:40:14 -0600408 break;
409#if BITS_PER_LONG >= 64
410 case 64:
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100411 if (byte_be) {
412 dev_err(dev,
413 "64 bit big endian byte order unsupported\n");
414 return -EINVAL;
415 } else {
416 bgc->read_reg = bgpio_read64;
417 bgc->write_reg = bgpio_write64;
418 }
Jamie Iles8467afe2011-05-20 00:40:14 -0600419 break;
420#endif /* BITS_PER_LONG >= 64 */
421 default:
Jamie Iles280df6b2011-05-20 00:40:19 -0600422 dev_err(dev, "unsupported data width %u bits\n", bgc->bits);
Jamie Iles8467afe2011-05-20 00:40:14 -0600423 return -EINVAL;
424 }
425
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100426 bgc->pin2mask = bit_be ? bgpio_pin2mask_be : bgpio_pin2mask;
Jamie Iles8467afe2011-05-20 00:40:14 -0600427
428 return 0;
429}
430
Jamie Ilese027d6f2011-05-20 00:40:16 -0600431/*
432 * Create the device and allocate the resources. For setting GPIO's there are
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600433 * three supported configurations:
Jamie Ilese027d6f2011-05-20 00:40:16 -0600434 *
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600435 * - single input/output register resource (named "dat").
Jamie Ilese027d6f2011-05-20 00:40:16 -0600436 * - set/clear pair (named "set" and "clr").
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600437 * - single output register resource and single input resource ("set" and
438 * dat").
Jamie Ilese027d6f2011-05-20 00:40:16 -0600439 *
440 * For the single output register, this drives a 1 by setting a bit and a zero
441 * by clearing a bit. For the set clr pair, this drives a 1 by setting a bit
442 * in the set register and clears it by setting a bit in the clear register.
443 * The configuration is detected by which resources are present.
Jamie Iles31029112011-05-20 00:40:17 -0600444 *
445 * For setting the GPIO direction, there are three supported configurations:
446 *
447 * - simple bidirection GPIO that requires no configuration.
448 * - an output direction register (named "dirout") where a 1 bit
449 * indicates the GPIO is an output.
450 * - an input direction register (named "dirin") where a 1 bit indicates
451 * the GPIO is an input.
Jamie Ilese027d6f2011-05-20 00:40:16 -0600452 */
Jamie Iles280df6b2011-05-20 00:40:19 -0600453static int bgpio_setup_io(struct bgpio_chip *bgc,
454 void __iomem *dat,
455 void __iomem *set,
Vladimir Zapolskiyb19e7f52015-04-29 18:34:59 +0300456 void __iomem *clr,
457 unsigned long flags)
Jamie Iles8467afe2011-05-20 00:40:14 -0600458{
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700459
Jamie Iles280df6b2011-05-20 00:40:19 -0600460 bgc->reg_dat = dat;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700461 if (!bgc->reg_dat)
Jamie Iles280df6b2011-05-20 00:40:19 -0600462 return -EINVAL;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700463
Jamie Iles280df6b2011-05-20 00:40:19 -0600464 if (set && clr) {
465 bgc->reg_set = set;
466 bgc->reg_clr = clr;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600467 bgc->gc.set = bgpio_set_with_clear;
Rojhalat Ibrahim73c4ced2015-01-14 15:46:38 +0100468 bgc->gc.set_multiple = bgpio_set_multiple_with_clear;
Jamie Iles280df6b2011-05-20 00:40:19 -0600469 } else if (set && !clr) {
470 bgc->reg_set = set;
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600471 bgc->gc.set = bgpio_set_set;
Rojhalat Ibrahim73c4ced2015-01-14 15:46:38 +0100472 bgc->gc.set_multiple = bgpio_set_multiple_set;
Rabin Vincent91492a42015-07-22 15:05:18 +0200473 } else if (flags & BGPIOF_NO_OUTPUT) {
474 bgc->gc.set = bgpio_set_none;
475 bgc->gc.set_multiple = NULL;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600476 } else {
477 bgc->gc.set = bgpio_set;
Rojhalat Ibrahim73c4ced2015-01-14 15:46:38 +0100478 bgc->gc.set_multiple = bgpio_set_multiple;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700479 }
480
Vladimir Zapolskiyb19e7f52015-04-29 18:34:59 +0300481 if (!(flags & BGPIOF_UNREADABLE_REG_SET) &&
482 (flags & BGPIOF_READ_OUTPUT_REG_SET))
483 bgc->gc.get = bgpio_get_set;
484 else
485 bgc->gc.get = bgpio_get;
Jamie Ilesdd86a0c2011-05-20 00:40:16 -0600486
Jamie Ilese027d6f2011-05-20 00:40:16 -0600487 return 0;
488}
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700489
Jamie Iles280df6b2011-05-20 00:40:19 -0600490static int bgpio_setup_direction(struct bgpio_chip *bgc,
491 void __iomem *dirout,
Rabin Vincent91492a42015-07-22 15:05:18 +0200492 void __iomem *dirin,
493 unsigned long flags)
Jamie Iles31029112011-05-20 00:40:17 -0600494{
Jamie Iles280df6b2011-05-20 00:40:19 -0600495 if (dirout && dirin) {
Jamie Iles31029112011-05-20 00:40:17 -0600496 return -EINVAL;
Jamie Iles280df6b2011-05-20 00:40:19 -0600497 } else if (dirout) {
498 bgc->reg_dir = dirout;
Jamie Iles31029112011-05-20 00:40:17 -0600499 bgc->gc.direction_output = bgpio_dir_out;
500 bgc->gc.direction_input = bgpio_dir_in;
Philipp Zabeldb3b0fc2015-06-12 18:20:35 +0200501 bgc->gc.get_direction = bgpio_get_dir;
Jamie Iles280df6b2011-05-20 00:40:19 -0600502 } else if (dirin) {
503 bgc->reg_dir = dirin;
Jamie Iles31029112011-05-20 00:40:17 -0600504 bgc->gc.direction_output = bgpio_dir_out_inv;
505 bgc->gc.direction_input = bgpio_dir_in_inv;
Philipp Zabeldb3b0fc2015-06-12 18:20:35 +0200506 bgc->gc.get_direction = bgpio_get_dir_inv;
Jamie Iles31029112011-05-20 00:40:17 -0600507 } else {
Rabin Vincent91492a42015-07-22 15:05:18 +0200508 if (flags & BGPIOF_NO_OUTPUT)
509 bgc->gc.direction_output = bgpio_dir_out_err;
510 else
511 bgc->gc.direction_output = bgpio_simple_dir_out;
Jamie Iles31029112011-05-20 00:40:17 -0600512 bgc->gc.direction_input = bgpio_simple_dir_in;
513 }
514
515 return 0;
516}
517
Anthony Fee7b42e3d2014-05-19 18:49:14 +0100518static int bgpio_request(struct gpio_chip *chip, unsigned gpio_pin)
519{
520 if (gpio_pin < chip->ngpio)
521 return 0;
522
523 return -EINVAL;
524}
525
Russell King4f5b0482011-09-14 16:22:29 -0700526int bgpio_remove(struct bgpio_chip *bgc)
Jamie Ilese027d6f2011-05-20 00:40:16 -0600527{
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200528 gpiochip_remove(&bgc->gc);
529 return 0;
Jamie Iles280df6b2011-05-20 00:40:19 -0600530}
531EXPORT_SYMBOL_GPL(bgpio_remove);
532
Russell King4f5b0482011-09-14 16:22:29 -0700533int bgpio_init(struct bgpio_chip *bgc, struct device *dev,
534 unsigned long sz, void __iomem *dat, void __iomem *set,
535 void __iomem *clr, void __iomem *dirout, void __iomem *dirin,
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800536 unsigned long flags)
Jamie Iles280df6b2011-05-20 00:40:19 -0600537{
Jamie Ilese027d6f2011-05-20 00:40:16 -0600538 int ret;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600539
Jamie Iles280df6b2011-05-20 00:40:19 -0600540 if (!is_power_of_2(sz))
541 return -EINVAL;
Jamie Ilese027d6f2011-05-20 00:40:16 -0600542
Jamie Iles280df6b2011-05-20 00:40:19 -0600543 bgc->bits = sz * 8;
544 if (bgc->bits > BITS_PER_LONG)
545 return -EINVAL;
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700546
Jamie Ilese027d6f2011-05-20 00:40:16 -0600547 spin_lock_init(&bgc->lock);
Jamie Iles280df6b2011-05-20 00:40:19 -0600548 bgc->gc.dev = dev;
549 bgc->gc.label = dev_name(dev);
550 bgc->gc.base = -1;
551 bgc->gc.ngpio = bgc->bits;
Anthony Fee7b42e3d2014-05-19 18:49:14 +0100552 bgc->gc.request = bgpio_request;
Jamie Iles280df6b2011-05-20 00:40:19 -0600553
Vladimir Zapolskiyb19e7f52015-04-29 18:34:59 +0300554 ret = bgpio_setup_io(bgc, dat, set, clr, flags);
Jamie Iles280df6b2011-05-20 00:40:19 -0600555 if (ret)
556 return ret;
557
Andreas Larsson2b78f1e2013-03-15 14:45:38 +0100558 ret = bgpio_setup_accessors(dev, bgc, flags & BGPIOF_BIG_ENDIAN,
559 flags & BGPIOF_BIG_ENDIAN_BYTE_ORDER);
Jamie Iles280df6b2011-05-20 00:40:19 -0600560 if (ret)
561 return ret;
562
Rabin Vincent91492a42015-07-22 15:05:18 +0200563 ret = bgpio_setup_direction(bgc, dirout, dirin, flags);
Jamie Iles31029112011-05-20 00:40:17 -0600564 if (ret)
565 return ret;
566
Jamie Iles8467afe2011-05-20 00:40:14 -0600567 bgc->data = bgc->read_reg(bgc->reg_dat);
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800568 if (bgc->gc.set == bgpio_set_set &&
569 !(flags & BGPIOF_UNREADABLE_REG_SET))
570 bgc->data = bgc->read_reg(bgc->reg_set);
571 if (bgc->reg_dir && !(flags & BGPIOF_UNREADABLE_REG_DIR))
572 bgc->dir = bgc->read_reg(bgc->reg_dir);
Jamie Iles924e7a92011-05-20 00:40:15 -0600573
Jamie Iles280df6b2011-05-20 00:40:19 -0600574 return ret;
575}
576EXPORT_SYMBOL_GPL(bgpio_init);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700577
Grant Likelyc103de22011-06-04 18:38:28 -0600578#ifdef CONFIG_GPIO_GENERIC_PLATFORM
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700579
Jamie Iles280df6b2011-05-20 00:40:19 -0600580static void __iomem *bgpio_map(struct platform_device *pdev,
581 const char *name,
Heiner Kallweit8d240262015-09-30 23:52:36 +0200582 resource_size_t sane_sz)
Jamie Iles280df6b2011-05-20 00:40:19 -0600583{
Jamie Iles280df6b2011-05-20 00:40:19 -0600584 struct resource *r;
Jamie Iles280df6b2011-05-20 00:40:19 -0600585 resource_size_t sz;
Jamie Iles280df6b2011-05-20 00:40:19 -0600586
587 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
Heiner Kallweit8d240262015-09-30 23:52:36 +0200588 if (!r)
Guenter Roeckb2f68b62015-10-21 00:12:00 -0700589 return NULL;
Jamie Iles280df6b2011-05-20 00:40:19 -0600590
591 sz = resource_size(r);
Heiner Kallweit8d240262015-09-30 23:52:36 +0200592 if (sz != sane_sz)
593 return IOMEM_ERR_PTR(-EINVAL);
Jamie Iles280df6b2011-05-20 00:40:19 -0600594
Heiner Kallweit8d240262015-09-30 23:52:36 +0200595 return devm_ioremap_resource(&pdev->dev, r);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700596}
597
Bill Pemberton38363092012-11-19 13:22:34 -0500598static int bgpio_pdev_probe(struct platform_device *pdev)
Jamie Iles280df6b2011-05-20 00:40:19 -0600599{
600 struct device *dev = &pdev->dev;
601 struct resource *r;
602 void __iomem *dat;
603 void __iomem *set;
604 void __iomem *clr;
605 void __iomem *dirout;
606 void __iomem *dirin;
607 unsigned long sz;
Alexander Shiyan19338532014-03-16 09:10:34 +0400608 unsigned long flags = pdev->id_entry->driver_data;
Jamie Iles280df6b2011-05-20 00:40:19 -0600609 int err;
610 struct bgpio_chip *bgc;
611 struct bgpio_pdata *pdata = dev_get_platdata(dev);
612
613 r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dat");
614 if (!r)
615 return -EINVAL;
616
617 sz = resource_size(r);
618
Heiner Kallweit8d240262015-09-30 23:52:36 +0200619 dat = bgpio_map(pdev, "dat", sz);
620 if (IS_ERR(dat))
621 return PTR_ERR(dat);
Jamie Iles280df6b2011-05-20 00:40:19 -0600622
Heiner Kallweit8d240262015-09-30 23:52:36 +0200623 set = bgpio_map(pdev, "set", sz);
624 if (IS_ERR(set))
625 return PTR_ERR(set);
Jamie Iles280df6b2011-05-20 00:40:19 -0600626
Heiner Kallweit8d240262015-09-30 23:52:36 +0200627 clr = bgpio_map(pdev, "clr", sz);
628 if (IS_ERR(clr))
629 return PTR_ERR(clr);
Jamie Iles280df6b2011-05-20 00:40:19 -0600630
Heiner Kallweit8d240262015-09-30 23:52:36 +0200631 dirout = bgpio_map(pdev, "dirout", sz);
632 if (IS_ERR(dirout))
633 return PTR_ERR(dirout);
Jamie Iles280df6b2011-05-20 00:40:19 -0600634
Heiner Kallweit8d240262015-09-30 23:52:36 +0200635 dirin = bgpio_map(pdev, "dirin", sz);
636 if (IS_ERR(dirin))
637 return PTR_ERR(dirin);
Jamie Iles280df6b2011-05-20 00:40:19 -0600638
Jamie Iles280df6b2011-05-20 00:40:19 -0600639 bgc = devm_kzalloc(&pdev->dev, sizeof(*bgc), GFP_KERNEL);
640 if (!bgc)
641 return -ENOMEM;
642
Shawn Guo3e11f7b2012-05-19 21:34:58 +0800643 err = bgpio_init(bgc, dev, sz, dat, set, clr, dirout, dirin, flags);
Jamie Iles280df6b2011-05-20 00:40:19 -0600644 if (err)
645 return err;
646
647 if (pdata) {
Pawel Moll781f6d72014-01-30 13:18:57 +0000648 if (pdata->label)
649 bgc->gc.label = pdata->label;
Jamie Iles280df6b2011-05-20 00:40:19 -0600650 bgc->gc.base = pdata->base;
651 if (pdata->ngpio > 0)
652 bgc->gc.ngpio = pdata->ngpio;
653 }
654
655 platform_set_drvdata(pdev, bgc);
656
657 return gpiochip_add(&bgc->gc);
658}
659
Bill Pemberton206210c2012-11-19 13:25:50 -0500660static int bgpio_pdev_remove(struct platform_device *pdev)
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700661{
Jamie Iles4ddb8ae2011-05-20 00:40:14 -0600662 struct bgpio_chip *bgc = platform_get_drvdata(pdev);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700663
Jamie Iles280df6b2011-05-20 00:40:19 -0600664 return bgpio_remove(bgc);
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700665}
666
667static const struct platform_device_id bgpio_id_table[] = {
Alexander Shiyan19338532014-03-16 09:10:34 +0400668 {
669 .name = "basic-mmio-gpio",
670 .driver_data = 0,
671 }, {
672 .name = "basic-mmio-gpio-be",
673 .driver_data = BGPIOF_BIG_ENDIAN,
674 },
675 { }
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700676};
677MODULE_DEVICE_TABLE(platform, bgpio_id_table);
678
679static struct platform_driver bgpio_driver = {
680 .driver = {
681 .name = "basic-mmio-gpio",
682 },
683 .id_table = bgpio_id_table,
Jamie Iles280df6b2011-05-20 00:40:19 -0600684 .probe = bgpio_pdev_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500685 .remove = bgpio_pdev_remove,
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700686};
687
Mark Brown6f614152011-12-08 00:24:00 +0800688module_platform_driver(bgpio_driver);
Jamie Iles280df6b2011-05-20 00:40:19 -0600689
Grant Likelyc103de22011-06-04 18:38:28 -0600690#endif /* CONFIG_GPIO_GENERIC_PLATFORM */
Anton Vorontsovaeec56e2010-10-27 15:33:15 -0700691
692MODULE_DESCRIPTION("Driver for basic memory-mapped GPIO controllers");
693MODULE_AUTHOR("Anton Vorontsov <cbouatmailru@gmail.com>");
694MODULE_LICENSE("GPL");