| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 1 | /* | 
| Grant Likely | c103de2 | 2011-06-04 18:38:28 -0600 | [diff] [blame] | 2 |  * Generic driver for memory-mapped GPIO controllers. | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 3 |  * | 
 | 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 . | 
 | 21 | o        `                     ~~~~\___/~~~~    ` 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 Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 48 | #include <linux/err.h> | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 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> | 
 | 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 Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 65 | static void bgpio_write8(void __iomem *reg, unsigned long data) | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 66 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 67 | 	writeb(data, reg); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 68 | } | 
 | 69 |  | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 70 | static unsigned long bgpio_read8(void __iomem *reg) | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 71 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 72 | 	return readb(reg); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 73 | } | 
 | 74 |  | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 75 | static void bgpio_write16(void __iomem *reg, unsigned long data) | 
 | 76 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 77 | 	writew(data, reg); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 78 | } | 
 | 79 |  | 
 | 80 | static unsigned long bgpio_read16(void __iomem *reg) | 
 | 81 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 82 | 	return readw(reg); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 83 | } | 
 | 84 |  | 
 | 85 | static void bgpio_write32(void __iomem *reg, unsigned long data) | 
 | 86 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 87 | 	writel(data, reg); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 88 | } | 
 | 89 |  | 
 | 90 | static unsigned long bgpio_read32(void __iomem *reg) | 
 | 91 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 92 | 	return readl(reg); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 93 | } | 
 | 94 |  | 
 | 95 | #if BITS_PER_LONG >= 64 | 
 | 96 | static void bgpio_write64(void __iomem *reg, unsigned long data) | 
 | 97 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 98 | 	writeq(data, reg); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 99 | } | 
 | 100 |  | 
 | 101 | static unsigned long bgpio_read64(void __iomem *reg) | 
 | 102 | { | 
| Jamie Iles | fd99623 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 103 | 	return readq(reg); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 104 | } | 
 | 105 | #endif /* BITS_PER_LONG >= 64 */ | 
 | 106 |  | 
| Andreas Larsson | 2b78f1e | 2013-03-15 14:45:38 +0100 | [diff] [blame] | 107 | static void bgpio_write16be(void __iomem *reg, unsigned long data) | 
 | 108 | { | 
 | 109 | 	iowrite16be(data, reg); | 
 | 110 | } | 
 | 111 |  | 
 | 112 | static unsigned long bgpio_read16be(void __iomem *reg) | 
 | 113 | { | 
 | 114 | 	return ioread16be(reg); | 
 | 115 | } | 
 | 116 |  | 
 | 117 | static void bgpio_write32be(void __iomem *reg, unsigned long data) | 
 | 118 | { | 
 | 119 | 	iowrite32be(data, reg); | 
 | 120 | } | 
 | 121 |  | 
 | 122 | static unsigned long bgpio_read32be(void __iomem *reg) | 
 | 123 | { | 
 | 124 | 	return ioread32be(reg); | 
 | 125 | } | 
 | 126 |  | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 127 | static unsigned long bgpio_pin2mask(struct bgpio_chip *bgc, unsigned int pin) | 
 | 128 | { | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 129 | 	return 1 << pin; | 
 | 130 | } | 
 | 131 |  | 
 | 132 | static unsigned long bgpio_pin2mask_be(struct bgpio_chip *bgc, | 
 | 133 | 				       unsigned int pin) | 
 | 134 | { | 
 | 135 | 	return 1 << (bgc->bits - 1 - pin); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 136 | } | 
 | 137 |  | 
 | 138 | static int bgpio_get(struct gpio_chip *gc, unsigned int gpio) | 
 | 139 | { | 
 | 140 | 	struct bgpio_chip *bgc = to_bgpio_chip(gc); | 
 | 141 |  | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 142 | 	return bgc->read_reg(bgc->reg_dat) & bgc->pin2mask(bgc, gpio); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 143 | } | 
 | 144 |  | 
 | 145 | static void bgpio_set(struct gpio_chip *gc, unsigned int gpio, int val) | 
 | 146 | { | 
 | 147 | 	struct bgpio_chip *bgc = to_bgpio_chip(gc); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 148 | 	unsigned long mask = bgc->pin2mask(bgc, gpio); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 149 | 	unsigned long flags; | 
 | 150 |  | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 151 | 	spin_lock_irqsave(&bgc->lock, flags); | 
 | 152 |  | 
 | 153 | 	if (val) | 
 | 154 | 		bgc->data |= mask; | 
 | 155 | 	else | 
 | 156 | 		bgc->data &= ~mask; | 
 | 157 |  | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 158 | 	bgc->write_reg(bgc->reg_dat, bgc->data); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 159 |  | 
 | 160 | 	spin_unlock_irqrestore(&bgc->lock, flags); | 
 | 161 | } | 
 | 162 |  | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 163 | static 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 Iles | dd86a0c | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 175 | static 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 Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 193 | static int bgpio_simple_dir_in(struct gpio_chip *gc, unsigned int gpio) | 
 | 194 | { | 
 | 195 | 	return 0; | 
 | 196 | } | 
 | 197 |  | 
 | 198 | static 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 Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 206 | static int bgpio_dir_in(struct gpio_chip *gc, unsigned int gpio) | 
 | 207 | { | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 208 | 	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 Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 218 | 	return 0; | 
 | 219 | } | 
 | 220 |  | 
 | 221 | static int bgpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val) | 
 | 222 | { | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 223 | 	struct bgpio_chip *bgc = to_bgpio_chip(gc); | 
 | 224 | 	unsigned long flags; | 
 | 225 |  | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 226 | 	gc->set(gc, gpio, val); | 
 | 227 |  | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 228 | 	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 |  | 
 | 238 | static 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 |  | 
 | 253 | static 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 Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 267 | 	return 0; | 
 | 268 | } | 
 | 269 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 270 | static int bgpio_setup_accessors(struct device *dev, | 
 | 271 | 				 struct bgpio_chip *bgc, | 
| Andreas Larsson | 2b78f1e | 2013-03-15 14:45:38 +0100 | [diff] [blame] | 272 | 				 bool bit_be, | 
 | 273 | 				 bool byte_be) | 
| Jamie Iles | 364b5e8 | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 274 | { | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 275 |  | 
 | 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 Larsson | 2b78f1e | 2013-03-15 14:45:38 +0100 | [diff] [blame] | 282 | 		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 Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 289 | 		break; | 
 | 290 | 	case 32: | 
| Andreas Larsson | 2b78f1e | 2013-03-15 14:45:38 +0100 | [diff] [blame] | 291 | 		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 Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 298 | 		break; | 
 | 299 | #if BITS_PER_LONG >= 64 | 
 | 300 | 	case 64: | 
| Andreas Larsson | 2b78f1e | 2013-03-15 14:45:38 +0100 | [diff] [blame] | 301 | 		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 Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 309 | 		break; | 
 | 310 | #endif /* BITS_PER_LONG >= 64 */ | 
 | 311 | 	default: | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 312 | 		dev_err(dev, "unsupported data width %u bits\n", bgc->bits); | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 313 | 		return -EINVAL; | 
 | 314 | 	} | 
 | 315 |  | 
| Andreas Larsson | 2b78f1e | 2013-03-15 14:45:38 +0100 | [diff] [blame] | 316 | 	bgc->pin2mask = bit_be ? bgpio_pin2mask_be : bgpio_pin2mask; | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 317 |  | 
 | 318 | 	return 0; | 
 | 319 | } | 
 | 320 |  | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 321 | /* | 
 | 322 |  * Create the device and allocate the resources.  For setting GPIO's there are | 
| Jamie Iles | dd86a0c | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 323 |  * three supported configurations: | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 324 |  * | 
| Jamie Iles | dd86a0c | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 325 |  *	- single input/output register resource (named "dat"). | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 326 |  *	- set/clear pair (named "set" and "clr"). | 
| Jamie Iles | dd86a0c | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 327 |  *	- single output register resource and single input resource ("set" and | 
 | 328 |  *	dat"). | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 329 |  * | 
 | 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 Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 334 |  * | 
 | 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 Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 342 |  */ | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 343 | static int bgpio_setup_io(struct bgpio_chip *bgc, | 
 | 344 | 			  void __iomem *dat, | 
 | 345 | 			  void __iomem *set, | 
 | 346 | 			  void __iomem *clr) | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 347 | { | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 348 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 349 | 	bgc->reg_dat = dat; | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 350 | 	if (!bgc->reg_dat) | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 351 | 		return -EINVAL; | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 352 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 353 | 	if (set && clr) { | 
 | 354 | 		bgc->reg_set = set; | 
 | 355 | 		bgc->reg_clr = clr; | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 356 | 		bgc->gc.set = bgpio_set_with_clear; | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 357 | 	} else if (set && !clr) { | 
 | 358 | 		bgc->reg_set = set; | 
| Jamie Iles | dd86a0c | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 359 | 		bgc->gc.set = bgpio_set_set; | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 360 | 	} else { | 
 | 361 | 		bgc->gc.set = bgpio_set; | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 362 | 	} | 
 | 363 |  | 
| Jamie Iles | dd86a0c | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 364 | 	bgc->gc.get = bgpio_get; | 
 | 365 |  | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 366 | 	return 0; | 
 | 367 | } | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 368 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 369 | static int bgpio_setup_direction(struct bgpio_chip *bgc, | 
 | 370 | 				 void __iomem *dirout, | 
 | 371 | 				 void __iomem *dirin) | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 372 | { | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 373 | 	if (dirout && dirin) { | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 374 | 		return -EINVAL; | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 375 | 	} else if (dirout) { | 
 | 376 | 		bgc->reg_dir = dirout; | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 377 | 		bgc->gc.direction_output = bgpio_dir_out; | 
 | 378 | 		bgc->gc.direction_input = bgpio_dir_in; | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 379 | 	} else if (dirin) { | 
 | 380 | 		bgc->reg_dir = dirin; | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 381 | 		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 King | 4f5b048 | 2011-09-14 16:22:29 -0700 | [diff] [blame] | 391 | int bgpio_remove(struct bgpio_chip *bgc) | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 392 | { | 
| Alexander Shiyan | 2ce7c62 | 2013-04-11 21:23:22 +0400 | [diff] [blame] | 393 | 	return gpiochip_remove(&bgc->gc); | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 394 | } | 
 | 395 | EXPORT_SYMBOL_GPL(bgpio_remove); | 
 | 396 |  | 
| Russell King | 4f5b048 | 2011-09-14 16:22:29 -0700 | [diff] [blame] | 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, | 
| Shawn Guo | 3e11f7b | 2012-05-19 21:34:58 +0800 | [diff] [blame] | 400 | 	       unsigned long flags) | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 401 | { | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 402 | 	int ret; | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 403 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 404 | 	if (!is_power_of_2(sz)) | 
 | 405 | 		return -EINVAL; | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 406 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 407 | 	bgc->bits = sz * 8; | 
 | 408 | 	if (bgc->bits > BITS_PER_LONG) | 
 | 409 | 		return -EINVAL; | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 410 |  | 
| Jamie Iles | e027d6f | 2011-05-20 00:40:16 -0600 | [diff] [blame] | 411 | 	spin_lock_init(&bgc->lock); | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 412 | 	bgc->gc.dev = dev; | 
 | 413 | 	bgc->gc.label = dev_name(dev); | 
 | 414 | 	bgc->gc.base = -1; | 
 | 415 | 	bgc->gc.ngpio = bgc->bits; | 
 | 416 |  | 
 | 417 | 	ret = bgpio_setup_io(bgc, dat, set, clr); | 
 | 418 | 	if (ret) | 
 | 419 | 		return ret; | 
 | 420 |  | 
| Andreas Larsson | 2b78f1e | 2013-03-15 14:45:38 +0100 | [diff] [blame] | 421 | 	ret = bgpio_setup_accessors(dev, bgc, flags & BGPIOF_BIG_ENDIAN, | 
 | 422 | 				    flags & BGPIOF_BIG_ENDIAN_BYTE_ORDER); | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 423 | 	if (ret) | 
 | 424 | 		return ret; | 
 | 425 |  | 
 | 426 | 	ret = bgpio_setup_direction(bgc, dirout, dirin); | 
| Jamie Iles | 3102911 | 2011-05-20 00:40:17 -0600 | [diff] [blame] | 427 | 	if (ret) | 
 | 428 | 		return ret; | 
 | 429 |  | 
| Jamie Iles | 8467afe | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 430 | 	bgc->data = bgc->read_reg(bgc->reg_dat); | 
| Shawn Guo | 3e11f7b | 2012-05-19 21:34:58 +0800 | [diff] [blame] | 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); | 
| Jamie Iles | 924e7a9 | 2011-05-20 00:40:15 -0600 | [diff] [blame] | 436 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 437 | 	return ret; | 
 | 438 | } | 
 | 439 | EXPORT_SYMBOL_GPL(bgpio_init); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 440 |  | 
| Grant Likely | c103de2 | 2011-06-04 18:38:28 -0600 | [diff] [blame] | 441 | #ifdef CONFIG_GPIO_GENERIC_PLATFORM | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 442 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 443 | static void __iomem *bgpio_map(struct platform_device *pdev, | 
 | 444 | 			       const char *name, | 
 | 445 | 			       resource_size_t sane_sz, | 
 | 446 | 			       int *err) | 
 | 447 | { | 
 | 448 | 	struct device *dev = &pdev->dev; | 
 | 449 | 	struct resource *r; | 
 | 450 | 	resource_size_t start; | 
 | 451 | 	resource_size_t sz; | 
 | 452 | 	void __iomem *ret; | 
 | 453 |  | 
 | 454 | 	*err = 0; | 
 | 455 |  | 
 | 456 | 	r = platform_get_resource_byname(pdev, IORESOURCE_MEM, name); | 
 | 457 | 	if (!r) | 
 | 458 | 		return NULL; | 
 | 459 |  | 
 | 460 | 	sz = resource_size(r); | 
 | 461 | 	if (sz != sane_sz) { | 
 | 462 | 		*err = -EINVAL; | 
 | 463 | 		return NULL; | 
 | 464 | 	} | 
 | 465 |  | 
 | 466 | 	start = r->start; | 
 | 467 | 	if (!devm_request_mem_region(dev, start, sz, r->name)) { | 
 | 468 | 		*err = -EBUSY; | 
 | 469 | 		return NULL; | 
 | 470 | 	} | 
 | 471 |  | 
 | 472 | 	ret = devm_ioremap(dev, start, sz); | 
 | 473 | 	if (!ret) { | 
 | 474 | 		*err = -ENOMEM; | 
 | 475 | 		return NULL; | 
 | 476 | 	} | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 477 |  | 
 | 478 | 	return ret; | 
 | 479 | } | 
 | 480 |  | 
| Bill Pemberton | 3836309 | 2012-11-19 13:22:34 -0500 | [diff] [blame] | 481 | static int bgpio_pdev_probe(struct platform_device *pdev) | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 482 | { | 
 | 483 | 	struct device *dev = &pdev->dev; | 
 | 484 | 	struct resource *r; | 
 | 485 | 	void __iomem *dat; | 
 | 486 | 	void __iomem *set; | 
 | 487 | 	void __iomem *clr; | 
 | 488 | 	void __iomem *dirout; | 
 | 489 | 	void __iomem *dirin; | 
 | 490 | 	unsigned long sz; | 
| Shawn Guo | 3e11f7b | 2012-05-19 21:34:58 +0800 | [diff] [blame] | 491 | 	unsigned long flags = 0; | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 492 | 	int err; | 
 | 493 | 	struct bgpio_chip *bgc; | 
 | 494 | 	struct bgpio_pdata *pdata = dev_get_platdata(dev); | 
 | 495 |  | 
 | 496 | 	r = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dat"); | 
 | 497 | 	if (!r) | 
 | 498 | 		return -EINVAL; | 
 | 499 |  | 
 | 500 | 	sz = resource_size(r); | 
 | 501 |  | 
 | 502 | 	dat = bgpio_map(pdev, "dat", sz, &err); | 
 | 503 | 	if (!dat) | 
 | 504 | 		return err ? err : -EINVAL; | 
 | 505 |  | 
 | 506 | 	set = bgpio_map(pdev, "set", sz, &err); | 
 | 507 | 	if (err) | 
 | 508 | 		return err; | 
 | 509 |  | 
 | 510 | 	clr = bgpio_map(pdev, "clr", sz, &err); | 
 | 511 | 	if (err) | 
 | 512 | 		return err; | 
 | 513 |  | 
 | 514 | 	dirout = bgpio_map(pdev, "dirout", sz, &err); | 
 | 515 | 	if (err) | 
 | 516 | 		return err; | 
 | 517 |  | 
 | 518 | 	dirin = bgpio_map(pdev, "dirin", sz, &err); | 
 | 519 | 	if (err) | 
 | 520 | 		return err; | 
 | 521 |  | 
| Shawn Guo | 3e11f7b | 2012-05-19 21:34:58 +0800 | [diff] [blame] | 522 | 	if (!strcmp(platform_get_device_id(pdev)->name, "basic-mmio-gpio-be")) | 
 | 523 | 		flags |= BGPIOF_BIG_ENDIAN; | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 524 |  | 
 | 525 | 	bgc = devm_kzalloc(&pdev->dev, sizeof(*bgc), GFP_KERNEL); | 
 | 526 | 	if (!bgc) | 
 | 527 | 		return -ENOMEM; | 
 | 528 |  | 
| Shawn Guo | 3e11f7b | 2012-05-19 21:34:58 +0800 | [diff] [blame] | 529 | 	err = bgpio_init(bgc, dev, sz, dat, set, clr, dirout, dirin, flags); | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 530 | 	if (err) | 
 | 531 | 		return err; | 
 | 532 |  | 
 | 533 | 	if (pdata) { | 
 | 534 | 		bgc->gc.base = pdata->base; | 
 | 535 | 		if (pdata->ngpio > 0) | 
 | 536 | 			bgc->gc.ngpio = pdata->ngpio; | 
 | 537 | 	} | 
 | 538 |  | 
 | 539 | 	platform_set_drvdata(pdev, bgc); | 
 | 540 |  | 
 | 541 | 	return gpiochip_add(&bgc->gc); | 
 | 542 | } | 
 | 543 |  | 
| Bill Pemberton | 206210c | 2012-11-19 13:25:50 -0500 | [diff] [blame] | 544 | static int bgpio_pdev_remove(struct platform_device *pdev) | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 545 | { | 
| Jamie Iles | 4ddb8ae | 2011-05-20 00:40:14 -0600 | [diff] [blame] | 546 | 	struct bgpio_chip *bgc = platform_get_drvdata(pdev); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 547 |  | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 548 | 	return bgpio_remove(bgc); | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 549 | } | 
 | 550 |  | 
 | 551 | static const struct platform_device_id bgpio_id_table[] = { | 
 | 552 | 	{ "basic-mmio-gpio", }, | 
 | 553 | 	{ "basic-mmio-gpio-be", }, | 
 | 554 | 	{}, | 
 | 555 | }; | 
 | 556 | MODULE_DEVICE_TABLE(platform, bgpio_id_table); | 
 | 557 |  | 
 | 558 | static struct platform_driver bgpio_driver = { | 
 | 559 | 	.driver = { | 
 | 560 | 		.name = "basic-mmio-gpio", | 
 | 561 | 	}, | 
 | 562 | 	.id_table = bgpio_id_table, | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 563 | 	.probe = bgpio_pdev_probe, | 
| Bill Pemberton | 8283c4f | 2012-11-19 13:20:08 -0500 | [diff] [blame] | 564 | 	.remove = bgpio_pdev_remove, | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 565 | }; | 
 | 566 |  | 
| Mark Brown | 6f61415 | 2011-12-08 00:24:00 +0800 | [diff] [blame] | 567 | module_platform_driver(bgpio_driver); | 
| Jamie Iles | 280df6b | 2011-05-20 00:40:19 -0600 | [diff] [blame] | 568 |  | 
| Grant Likely | c103de2 | 2011-06-04 18:38:28 -0600 | [diff] [blame] | 569 | #endif /* CONFIG_GPIO_GENERIC_PLATFORM */ | 
| Anton Vorontsov | aeec56e | 2010-10-27 15:33:15 -0700 | [diff] [blame] | 570 |  | 
 | 571 | MODULE_DESCRIPTION("Driver for basic memory-mapped GPIO controllers"); | 
 | 572 | MODULE_AUTHOR("Anton Vorontsov <cbouatmailru@gmail.com>"); | 
 | 573 | MODULE_LICENSE("GPL"); |