2 * Generic driver for memory-mapped GPIO controllers.
4 * Copyright 2008 MontaVista Software, Inc.
5 * Copyright 2008,2010 Anton Vorontsov <cbouatmailru@gmail.com>
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.
12 * ....``.```~~~~````.`.`.`.`.```````'',,,.........`````......`.......
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. ,,..``~~~~ .....``.`.`.~~.```.`.........``````.```````
19 _/~~|___/~| . ```~~~~~~ ___/___\___ ,~.`.`.`.`````.~~...,,,,...
20 __________|~$@~~~ %~ /o*o*o*o*o*o\ .. Implementing such a GPIO .
21 o ` ~~~~\___/~~~~ ` controller in FPGA is ,.`
22 `....trivial..'~`.```.```
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 * ^^ `````.`````````.,``~``~``~~``````
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_
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. ,............```.`.`..`.`.~~~.`.`.`~
47 #include <linux/init.h>
48 #include <linux/err.h>
49 #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>
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>
65 static void bgpio_write8(void __iomem
*reg
, unsigned long data
)
70 static unsigned long bgpio_read8(void __iomem
*reg
)
75 static void bgpio_write16(void __iomem
*reg
, unsigned long data
)
80 static unsigned long bgpio_read16(void __iomem
*reg
)
85 static void bgpio_write32(void __iomem
*reg
, unsigned long data
)
90 static unsigned long bgpio_read32(void __iomem
*reg
)
95 #if BITS_PER_LONG >= 64
96 static void bgpio_write64(void __iomem
*reg
, unsigned long data
)
101 static unsigned long bgpio_read64(void __iomem
*reg
)
105 #endif /* BITS_PER_LONG >= 64 */
107 static void bgpio_write16be(void __iomem
*reg
, unsigned long data
)
109 iowrite16be(data
, reg
);
112 static unsigned long bgpio_read16be(void __iomem
*reg
)
114 return ioread16be(reg
);
117 static void bgpio_write32be(void __iomem
*reg
, unsigned long data
)
119 iowrite32be(data
, reg
);
122 static unsigned long bgpio_read32be(void __iomem
*reg
)
124 return ioread32be(reg
);
127 static unsigned long bgpio_pin2mask(struct bgpio_chip
*bgc
, unsigned int pin
)
132 static unsigned long bgpio_pin2mask_be(struct bgpio_chip
*bgc
,
135 return 1 << (bgc
->bits
- 1 - pin
);
138 static int bgpio_get(struct gpio_chip
*gc
, unsigned int gpio
)
140 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
142 return bgc
->read_reg(bgc
->reg_dat
) & bgc
->pin2mask(bgc
, gpio
);
145 static void bgpio_set(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
147 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
148 unsigned long mask
= bgc
->pin2mask(bgc
, gpio
);
151 spin_lock_irqsave(&bgc
->lock
, flags
);
158 bgc
->write_reg(bgc
->reg_dat
, bgc
->data
);
160 spin_unlock_irqrestore(&bgc
->lock
, flags
);
163 static void bgpio_set_with_clear(struct gpio_chip
*gc
, unsigned int gpio
,
166 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
167 unsigned long mask
= bgc
->pin2mask(bgc
, gpio
);
170 bgc
->write_reg(bgc
->reg_set
, mask
);
172 bgc
->write_reg(bgc
->reg_clr
, mask
);
175 static void bgpio_set_set(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
177 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
178 unsigned long mask
= bgc
->pin2mask(bgc
, gpio
);
181 spin_lock_irqsave(&bgc
->lock
, flags
);
188 bgc
->write_reg(bgc
->reg_set
, bgc
->data
);
190 spin_unlock_irqrestore(&bgc
->lock
, flags
);
193 static int bgpio_simple_dir_in(struct gpio_chip
*gc
, unsigned int gpio
)
198 static int bgpio_simple_dir_out(struct gpio_chip
*gc
, unsigned int gpio
,
201 gc
->set(gc
, gpio
, val
);
206 static int bgpio_dir_in(struct gpio_chip
*gc
, unsigned int gpio
)
208 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
211 spin_lock_irqsave(&bgc
->lock
, flags
);
213 bgc
->dir
&= ~bgc
->pin2mask(bgc
, gpio
);
214 bgc
->write_reg(bgc
->reg_dir
, bgc
->dir
);
216 spin_unlock_irqrestore(&bgc
->lock
, flags
);
221 static int bgpio_dir_out(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
223 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
226 gc
->set(gc
, gpio
, val
);
228 spin_lock_irqsave(&bgc
->lock
, flags
);
230 bgc
->dir
|= bgc
->pin2mask(bgc
, gpio
);
231 bgc
->write_reg(bgc
->reg_dir
, bgc
->dir
);
233 spin_unlock_irqrestore(&bgc
->lock
, flags
);
238 static int bgpio_dir_in_inv(struct gpio_chip
*gc
, unsigned int gpio
)
240 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
243 spin_lock_irqsave(&bgc
->lock
, flags
);
245 bgc
->dir
|= bgc
->pin2mask(bgc
, gpio
);
246 bgc
->write_reg(bgc
->reg_dir
, bgc
->dir
);
248 spin_unlock_irqrestore(&bgc
->lock
, flags
);
253 static int bgpio_dir_out_inv(struct gpio_chip
*gc
, unsigned int gpio
, int val
)
255 struct bgpio_chip
*bgc
= to_bgpio_chip(gc
);
258 gc
->set(gc
, gpio
, val
);
260 spin_lock_irqsave(&bgc
->lock
, flags
);
262 bgc
->dir
&= ~bgc
->pin2mask(bgc
, gpio
);
263 bgc
->write_reg(bgc
->reg_dir
, bgc
->dir
);
265 spin_unlock_irqrestore(&bgc
->lock
, flags
);
270 static int bgpio_setup_accessors(struct device
*dev
,
271 struct bgpio_chip
*bgc
,
278 bgc
->read_reg
= bgpio_read8
;
279 bgc
->write_reg
= bgpio_write8
;
283 bgc
->read_reg
= bgpio_read16be
;
284 bgc
->write_reg
= bgpio_write16be
;
286 bgc
->read_reg
= bgpio_read16
;
287 bgc
->write_reg
= bgpio_write16
;
292 bgc
->read_reg
= bgpio_read32be
;
293 bgc
->write_reg
= bgpio_write32be
;
295 bgc
->read_reg
= bgpio_read32
;
296 bgc
->write_reg
= bgpio_write32
;
299 #if BITS_PER_LONG >= 64
303 "64 bit big endian byte order unsupported\n");
306 bgc
->read_reg
= bgpio_read64
;
307 bgc
->write_reg
= bgpio_write64
;
310 #endif /* BITS_PER_LONG >= 64 */
312 dev_err(dev
, "unsupported data width %u bits\n", bgc
->bits
);
316 bgc
->pin2mask
= bit_be
? bgpio_pin2mask_be
: bgpio_pin2mask
;
322 * Create the device and allocate the resources. For setting GPIO's there are
323 * three supported configurations:
325 * - single input/output register resource (named "dat").
326 * - set/clear pair (named "set" and "clr").
327 * - single output register resource and single input resource ("set" and
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.
335 * For setting the GPIO direction, there are three supported configurations:
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.
343 static int bgpio_setup_io(struct bgpio_chip
*bgc
,
356 bgc
->gc
.set
= bgpio_set_with_clear
;
357 } else if (set
&& !clr
) {
359 bgc
->gc
.set
= bgpio_set_set
;
361 bgc
->gc
.set
= bgpio_set
;
364 bgc
->gc
.get
= bgpio_get
;
369 static int bgpio_setup_direction(struct bgpio_chip
*bgc
,
370 void __iomem
*dirout
,
373 if (dirout
&& dirin
) {
376 bgc
->reg_dir
= dirout
;
377 bgc
->gc
.direction_output
= bgpio_dir_out
;
378 bgc
->gc
.direction_input
= bgpio_dir_in
;
380 bgc
->reg_dir
= dirin
;
381 bgc
->gc
.direction_output
= bgpio_dir_out_inv
;
382 bgc
->gc
.direction_input
= bgpio_dir_in_inv
;
384 bgc
->gc
.direction_output
= bgpio_simple_dir_out
;
385 bgc
->gc
.direction_input
= bgpio_simple_dir_in
;
391 int bgpio_remove(struct bgpio_chip
*bgc
)
393 return gpiochip_remove(&bgc
->gc
);
395 EXPORT_SYMBOL_GPL(bgpio_remove
);
397 int bgpio_init(struct bgpio_chip
*bgc
, struct device
*dev
,
398 unsigned long sz
, void __iomem
*dat
, void __iomem
*set
,
399 void __iomem
*clr
, void __iomem
*dirout
, void __iomem
*dirin
,
404 if (!is_power_of_2(sz
))
408 if (bgc
->bits
> BITS_PER_LONG
)
411 spin_lock_init(&bgc
->lock
);
413 bgc
->gc
.label
= dev_name(dev
);
415 bgc
->gc
.ngpio
= bgc
->bits
;
417 ret
= bgpio_setup_io(bgc
, dat
, set
, clr
);
421 ret
= bgpio_setup_accessors(dev
, bgc
, flags
& BGPIOF_BIG_ENDIAN
,
422 flags
& BGPIOF_BIG_ENDIAN_BYTE_ORDER
);
426 ret
= bgpio_setup_direction(bgc
, dirout
, dirin
);
430 bgc
->data
= bgc
->read_reg(bgc
->reg_dat
);
431 if (bgc
->gc
.set
== bgpio_set_set
&&
432 !(flags
& BGPIOF_UNREADABLE_REG_SET
))
433 bgc
->data
= bgc
->read_reg(bgc
->reg_set
);
434 if (bgc
->reg_dir
&& !(flags
& BGPIOF_UNREADABLE_REG_DIR
))
435 bgc
->dir
= bgc
->read_reg(bgc
->reg_dir
);
439 EXPORT_SYMBOL_GPL(bgpio_init
);
441 #ifdef CONFIG_GPIO_GENERIC_PLATFORM
443 static void __iomem
*bgpio_map(struct platform_device
*pdev
,
445 resource_size_t sane_sz
,
448 struct device
*dev
= &pdev
->dev
;
450 resource_size_t start
;
456 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, name
);
460 sz
= resource_size(r
);
467 if (!devm_request_mem_region(dev
, start
, sz
, r
->name
)) {
472 ret
= devm_ioremap(dev
, start
, sz
);
481 static int bgpio_pdev_probe(struct platform_device
*pdev
)
483 struct device
*dev
= &pdev
->dev
;
488 void __iomem
*dirout
;
491 unsigned long flags
= 0;
493 struct bgpio_chip
*bgc
;
494 struct bgpio_pdata
*pdata
= dev_get_platdata(dev
);
496 r
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
, "dat");
500 sz
= resource_size(r
);
502 dat
= bgpio_map(pdev
, "dat", sz
, &err
);
504 return err
? err
: -EINVAL
;
506 set
= bgpio_map(pdev
, "set", sz
, &err
);
510 clr
= bgpio_map(pdev
, "clr", sz
, &err
);
514 dirout
= bgpio_map(pdev
, "dirout", sz
, &err
);
518 dirin
= bgpio_map(pdev
, "dirin", sz
, &err
);
522 if (!strcmp(platform_get_device_id(pdev
)->name
, "basic-mmio-gpio-be"))
523 flags
|= BGPIOF_BIG_ENDIAN
;
525 bgc
= devm_kzalloc(&pdev
->dev
, sizeof(*bgc
), GFP_KERNEL
);
529 err
= bgpio_init(bgc
, dev
, sz
, dat
, set
, clr
, dirout
, dirin
, flags
);
534 bgc
->gc
.base
= pdata
->base
;
535 if (pdata
->ngpio
> 0)
536 bgc
->gc
.ngpio
= pdata
->ngpio
;
539 platform_set_drvdata(pdev
, bgc
);
541 return gpiochip_add(&bgc
->gc
);
544 static int bgpio_pdev_remove(struct platform_device
*pdev
)
546 struct bgpio_chip
*bgc
= platform_get_drvdata(pdev
);
548 return bgpio_remove(bgc
);
551 static const struct platform_device_id bgpio_id_table
[] = {
552 { "basic-mmio-gpio", },
553 { "basic-mmio-gpio-be", },
556 MODULE_DEVICE_TABLE(platform
, bgpio_id_table
);
558 static struct platform_driver bgpio_driver
= {
560 .name
= "basic-mmio-gpio",
562 .id_table
= bgpio_id_table
,
563 .probe
= bgpio_pdev_probe
,
564 .remove
= bgpio_pdev_remove
,
567 module_platform_driver(bgpio_driver
);
569 #endif /* CONFIG_GPIO_GENERIC_PLATFORM */
571 MODULE_DESCRIPTION("Driver for basic memory-mapped GPIO controllers");
572 MODULE_AUTHOR("Anton Vorontsov <cbouatmailru@gmail.com>");
573 MODULE_LICENSE("GPL");