blob: 317cebb0ee4d3f6bd6c6a5c7090bc7103cf49c6a [file] [log] [blame]
Paul Mundtb3c185a2012-06-20 17:29:04 +09001/*
2 * SuperH Pin Function Controller GPIO driver.
3 *
4 * Copyright (C) 2008 Magnus Damm
5 * Copyright (C) 2009 - 2012 Paul Mundt
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
Laurent Pinchartc6193ea2012-12-15 23:50:47 +010011
Laurent Pinchart1724acf2012-12-15 23:50:48 +010012#include <linux/device.h>
Paul Mundtb3c185a2012-06-20 17:29:04 +090013#include <linux/gpio.h>
Laurent Pinchart90efde22012-12-15 23:50:52 +010014#include <linux/init.h>
Paul Mundtb3c185a2012-06-20 17:29:04 +090015#include <linux/module.h>
Paul Mundtca5481c62012-07-10 12:08:14 +090016#include <linux/pinctrl/consumer.h>
Laurent Pinchart90efde22012-12-15 23:50:52 +010017#include <linux/slab.h>
18#include <linux/spinlock.h>
Paul Mundtb3c185a2012-06-20 17:29:04 +090019
Laurent Pinchartf9165132012-12-15 23:50:44 +010020#include "core.h"
21
Laurent Pinchart51cb2262013-02-16 18:34:32 +010022struct sh_pfc_gpio_data_reg {
23 const struct pinmux_data_reg *info;
24 unsigned long shadow;
25};
26
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010027struct sh_pfc_gpio_pin {
28 u8 dbit;
29 u8 dreg;
30};
Laurent Pincharte51d5342013-02-17 00:26:33 +010031
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010032struct sh_pfc_chip {
33 struct sh_pfc *pfc;
34 struct gpio_chip gpio_chip;
35
36 struct sh_pfc_window *mem;
Laurent Pinchart51cb2262013-02-16 18:34:32 +010037 struct sh_pfc_gpio_data_reg *regs;
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010038 struct sh_pfc_gpio_pin *pins;
Paul Mundtb3c185a2012-06-20 17:29:04 +090039};
40
41static struct sh_pfc_chip *gpio_to_pfc_chip(struct gpio_chip *gc)
42{
43 return container_of(gc, struct sh_pfc_chip, gpio_chip);
44}
45
46static struct sh_pfc *gpio_to_pfc(struct gpio_chip *gc)
47{
48 return gpio_to_pfc_chip(gc)->pfc;
49}
50
Laurent Pinchart51cb2262013-02-16 18:34:32 +010051static void gpio_get_data_reg(struct sh_pfc_chip *chip, unsigned int gpio,
52 struct sh_pfc_gpio_data_reg **reg,
53 unsigned int *bit)
Laurent Pinchart41f12192013-02-15 02:04:55 +010054{
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010055 int idx = sh_pfc_get_pin_index(chip->pfc, gpio);
56 struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[idx];
Laurent Pinchart41f12192013-02-15 02:04:55 +010057
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010058 *reg = &chip->regs[gpio_pin->dreg];
59 *bit = gpio_pin->dbit;
Laurent Pinchart41f12192013-02-15 02:04:55 +010060}
61
Laurent Pincharte51d5342013-02-17 00:26:33 +010062static unsigned long gpio_read_data_reg(struct sh_pfc_chip *chip,
63 const struct pinmux_data_reg *dreg)
64{
65 void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt;
66
67 return sh_pfc_read_raw_reg(mem, dreg->reg_width);
68}
69
70static void gpio_write_data_reg(struct sh_pfc_chip *chip,
71 const struct pinmux_data_reg *dreg,
72 unsigned long value)
73{
74 void __iomem *mem = dreg->reg - chip->mem->phys + chip->mem->virt;
75
76 sh_pfc_write_raw_reg(mem, dreg->reg_width, value);
77}
78
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010079static void gpio_setup_data_reg(struct sh_pfc_chip *chip, unsigned gpio)
Laurent Pinchart41f12192013-02-15 02:04:55 +010080{
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010081 struct sh_pfc *pfc = chip->pfc;
82 struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[gpio];
Laurent Pinchartcd3c1be2013-02-16 18:47:05 +010083 const struct sh_pfc_pin *pin = &pfc->info->pins[gpio];
Laurent Pincharte51d5342013-02-17 00:26:33 +010084 const struct pinmux_data_reg *dreg;
85 unsigned int bit;
86 unsigned int i;
Laurent Pinchart41f12192013-02-15 02:04:55 +010087
Laurent Pincharte51d5342013-02-17 00:26:33 +010088 for (i = 0, dreg = pfc->info->data_regs; dreg->reg; ++i, ++dreg) {
89 for (bit = 0; bit < dreg->reg_width; bit++) {
Laurent Pinchart1a0039d2013-03-08 17:43:54 +010090 if (dreg->enum_ids[bit] == pin->enum_id) {
91 gpio_pin->dreg = i;
92 gpio_pin->dbit = bit;
Laurent Pinchart41f12192013-02-15 02:04:55 +010093 return;
94 }
95 }
Laurent Pinchart41f12192013-02-15 02:04:55 +010096 }
97
98 BUG();
99}
100
Laurent Pincharte51d5342013-02-17 00:26:33 +0100101static int gpio_setup_data_regs(struct sh_pfc_chip *chip)
Laurent Pinchart41f12192013-02-15 02:04:55 +0100102{
Laurent Pincharte51d5342013-02-17 00:26:33 +0100103 struct sh_pfc *pfc = chip->pfc;
104 unsigned long addr = pfc->info->data_regs[0].reg;
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100105 const struct pinmux_data_reg *dreg;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100106 unsigned int i;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100107
Laurent Pincharte51d5342013-02-17 00:26:33 +0100108 /* Find the window that contain the GPIO registers. */
109 for (i = 0; i < pfc->num_windows; ++i) {
110 struct sh_pfc_window *window = &pfc->window[i];
111
112 if (addr >= window->phys && addr < window->phys + window->size)
113 break;
114 }
115
116 if (i == pfc->num_windows)
117 return -EINVAL;
118
119 /* GPIO data registers must be in the first memory resource. */
120 chip->mem = &pfc->window[i];
121
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100122 /* Count the number of data registers, allocate memory and initialize
123 * them.
124 */
125 for (i = 0; pfc->info->data_regs[i].reg_width; ++i)
126 ;
127
128 chip->regs = devm_kzalloc(pfc->dev, i * sizeof(*chip->regs),
129 GFP_KERNEL);
130 if (chip->regs == NULL)
131 return -ENOMEM;
132
133 for (i = 0, dreg = pfc->info->data_regs; dreg->reg_width; ++i, ++dreg) {
134 chip->regs[i].info = dreg;
135 chip->regs[i].shadow = gpio_read_data_reg(chip, dreg);
136 }
Laurent Pincharte51d5342013-02-17 00:26:33 +0100137
138 for (i = 0; i < pfc->info->nr_pins; i++) {
139 if (pfc->info->pins[i].enum_id == 0)
Laurent Pinchart41f12192013-02-15 02:04:55 +0100140 continue;
141
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100142 gpio_setup_data_reg(chip, i);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100143 }
144
Laurent Pincharte51d5342013-02-17 00:26:33 +0100145 return 0;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100146}
147
Laurent Pinchart16883812012-12-06 14:49:25 +0100148/* -----------------------------------------------------------------------------
149 * Pin GPIOs
150 */
151
152static int gpio_pin_request(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900153{
Laurent Pinchart0b73ee52013-02-14 22:12:11 +0100154 struct sh_pfc *pfc = gpio_to_pfc(gc);
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100155 int idx = sh_pfc_get_pin_index(pfc, offset);
Laurent Pinchart0b73ee52013-02-14 22:12:11 +0100156
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100157 if (idx < 0 || pfc->info->pins[idx].enum_id == 0)
Laurent Pinchart0b73ee52013-02-14 22:12:11 +0100158 return -EINVAL;
159
Laurent Pinchart16883812012-12-06 14:49:25 +0100160 return pinctrl_request_gpio(offset);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900161}
162
Laurent Pinchart16883812012-12-06 14:49:25 +0100163static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900164{
Laurent Pinchart16883812012-12-06 14:49:25 +0100165 return pinctrl_free_gpio(offset);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900166}
167
Laurent Pincharte51d5342013-02-17 00:26:33 +0100168static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
169 int value)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900170{
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100171 struct sh_pfc_gpio_data_reg *reg;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100172 unsigned long pos;
173 unsigned int bit;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900174
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100175 gpio_get_data_reg(chip, offset, &reg, &bit);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100176
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100177 pos = reg->info->reg_width - (bit + 1);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100178
179 if (value)
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100180 set_bit(pos, &reg->shadow);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100181 else
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100182 clear_bit(pos, &reg->shadow);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100183
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100184 gpio_write_data_reg(chip, reg->info, reg->shadow);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900185}
186
Laurent Pinchart16883812012-12-06 14:49:25 +0100187static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900188{
Laurent Pinchart16883812012-12-06 14:49:25 +0100189 return pinctrl_gpio_direction_input(offset);
190}
191
192static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
193 int value)
194{
Laurent Pincharte51d5342013-02-17 00:26:33 +0100195 gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
Laurent Pinchart16883812012-12-06 14:49:25 +0100196
197 return pinctrl_gpio_direction_output(offset);
198}
199
200static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
201{
Laurent Pincharte51d5342013-02-17 00:26:33 +0100202 struct sh_pfc_chip *chip = gpio_to_pfc_chip(gc);
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100203 struct sh_pfc_gpio_data_reg *reg;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100204 unsigned long pos;
205 unsigned int bit;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900206
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100207 gpio_get_data_reg(chip, offset, &reg, &bit);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100208
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100209 pos = reg->info->reg_width - (bit + 1);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100210
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100211 return (gpio_read_data_reg(chip, reg->info) >> pos) & 1;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900212}
213
Laurent Pinchart16883812012-12-06 14:49:25 +0100214static void gpio_pin_set(struct gpio_chip *gc, unsigned offset, int value)
Paul Mundtca5481c62012-07-10 12:08:14 +0900215{
Laurent Pincharte51d5342013-02-17 00:26:33 +0100216 gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
Paul Mundtca5481c62012-07-10 12:08:14 +0900217}
218
Laurent Pinchart16883812012-12-06 14:49:25 +0100219static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900220{
221 struct sh_pfc *pfc = gpio_to_pfc(gc);
Laurent Pinchartc07f54f2013-01-03 14:12:14 +0100222 int i, k;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900223
Laurent Pinchartc07f54f2013-01-03 14:12:14 +0100224 for (i = 0; i < pfc->info->gpio_irq_size; i++) {
225 unsigned short *gpios = pfc->info->gpio_irq[i].gpios;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900226
Laurent Pinchartc07f54f2013-01-03 14:12:14 +0100227 for (k = 0; gpios[k]; k++) {
228 if (gpios[k] == offset)
229 return pfc->info->gpio_irq[i].irq;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900230 }
231 }
232
233 return -ENOSYS;
234}
235
Laurent Pincharte51d5342013-02-17 00:26:33 +0100236static int gpio_pin_setup(struct sh_pfc_chip *chip)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900237{
238 struct sh_pfc *pfc = chip->pfc;
239 struct gpio_chip *gc = &chip->gpio_chip;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100240 int ret;
241
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100242 chip->pins = devm_kzalloc(pfc->dev, pfc->nr_pins * sizeof(*chip->pins),
243 GFP_KERNEL);
244 if (chip->pins == NULL)
245 return -ENOMEM;
246
Laurent Pincharte51d5342013-02-17 00:26:33 +0100247 ret = gpio_setup_data_regs(chip);
248 if (ret < 0)
249 return ret;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900250
Laurent Pinchart16883812012-12-06 14:49:25 +0100251 gc->request = gpio_pin_request;
252 gc->free = gpio_pin_free;
253 gc->direction_input = gpio_pin_direction_input;
254 gc->get = gpio_pin_get;
255 gc->direction_output = gpio_pin_direction_output;
256 gc->set = gpio_pin_set;
257 gc->to_irq = gpio_pin_to_irq;
258
259 gc->label = pfc->info->name;
260 gc->dev = pfc->dev;
261 gc->owner = THIS_MODULE;
262 gc->base = 0;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100263 gc->ngpio = pfc->nr_pins;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100264
265 return 0;
Laurent Pinchart16883812012-12-06 14:49:25 +0100266}
267
268/* -----------------------------------------------------------------------------
269 * Function GPIOs
270 */
271
272static int gpio_function_request(struct gpio_chip *gc, unsigned offset)
273{
Laurent Pinchart9a643c92013-03-10 18:00:02 +0100274 static bool __print_once;
Laurent Pinchart16883812012-12-06 14:49:25 +0100275 struct sh_pfc *pfc = gpio_to_pfc(gc);
Laurent Pincharta68fdca2013-02-14 17:36:56 +0100276 unsigned int mark = pfc->info->func_gpios[offset].enum_id;
Laurent Pinchart16883812012-12-06 14:49:25 +0100277 unsigned long flags;
Laurent Pinchartb705c052013-03-10 16:38:23 +0100278 int ret;
Laurent Pinchart16883812012-12-06 14:49:25 +0100279
Laurent Pinchart9a643c92013-03-10 18:00:02 +0100280 if (!__print_once) {
281 dev_notice(pfc->dev,
282 "Use of GPIO API for function requests is deprecated."
283 " Convert to pinctrl\n");
284 __print_once = true;
285 }
Laurent Pinchart16883812012-12-06 14:49:25 +0100286
Laurent Pincharta68fdca2013-02-14 17:36:56 +0100287 if (mark == 0)
Laurent Pinchartb705c052013-03-10 16:38:23 +0100288 return -EINVAL;
Laurent Pinchart16883812012-12-06 14:49:25 +0100289
290 spin_lock_irqsave(&pfc->lock, flags);
Laurent Pinchartb705c052013-03-10 16:38:23 +0100291 ret = sh_pfc_config_mux(pfc, mark, PINMUX_TYPE_FUNCTION);
Laurent Pinchart16883812012-12-06 14:49:25 +0100292 spin_unlock_irqrestore(&pfc->lock, flags);
Laurent Pinchartb705c052013-03-10 16:38:23 +0100293
Laurent Pinchart16883812012-12-06 14:49:25 +0100294 return ret;
295}
296
297static void gpio_function_free(struct gpio_chip *gc, unsigned offset)
298{
Laurent Pinchart16883812012-12-06 14:49:25 +0100299}
300
Laurent Pincharte51d5342013-02-17 00:26:33 +0100301static int gpio_function_setup(struct sh_pfc_chip *chip)
Laurent Pinchart16883812012-12-06 14:49:25 +0100302{
303 struct sh_pfc *pfc = chip->pfc;
304 struct gpio_chip *gc = &chip->gpio_chip;
305
306 gc->request = gpio_function_request;
307 gc->free = gpio_function_free;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900308
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100309 gc->label = pfc->info->name;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900310 gc->owner = THIS_MODULE;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100311 gc->base = pfc->nr_pins;
Laurent Pinchart16883812012-12-06 14:49:25 +0100312 gc->ngpio = pfc->info->nr_func_gpios;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100313
314 return 0;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900315}
316
Laurent Pinchart16883812012-12-06 14:49:25 +0100317/* -----------------------------------------------------------------------------
318 * Register/unregister
319 */
320
321static struct sh_pfc_chip *
Laurent Pincharte51d5342013-02-17 00:26:33 +0100322sh_pfc_add_gpiochip(struct sh_pfc *pfc, int(*setup)(struct sh_pfc_chip *))
Paul Mundtb3c185a2012-06-20 17:29:04 +0900323{
324 struct sh_pfc_chip *chip;
325 int ret;
326
Laurent Pinchart1724acf2012-12-15 23:50:48 +0100327 chip = devm_kzalloc(pfc->dev, sizeof(*chip), GFP_KERNEL);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900328 if (unlikely(!chip))
Laurent Pinchart16883812012-12-06 14:49:25 +0100329 return ERR_PTR(-ENOMEM);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900330
331 chip->pfc = pfc;
332
Laurent Pincharte51d5342013-02-17 00:26:33 +0100333 ret = setup(chip);
334 if (ret < 0)
335 return ERR_PTR(ret);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900336
337 ret = gpiochip_add(&chip->gpio_chip);
Laurent Pinchart1724acf2012-12-15 23:50:48 +0100338 if (unlikely(ret < 0))
Laurent Pinchart16883812012-12-06 14:49:25 +0100339 return ERR_PTR(ret);
340
Laurent Pinchart9a643c92013-03-10 18:00:02 +0100341 dev_info(pfc->dev, "%s handling gpio %u -> %u\n",
342 chip->gpio_chip.label, chip->gpio_chip.base,
343 chip->gpio_chip.base + chip->gpio_chip.ngpio - 1);
Laurent Pinchart16883812012-12-06 14:49:25 +0100344
345 return chip;
346}
347
348int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
349{
Laurent Pinchart63d57382013-02-15 01:33:38 +0100350 const struct pinmux_range *ranges;
351 struct pinmux_range def_range;
Laurent Pinchart16883812012-12-06 14:49:25 +0100352 struct sh_pfc_chip *chip;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100353 unsigned int nr_ranges;
354 unsigned int i;
Laurent Pinchart247127f2013-03-08 00:45:12 +0100355 int ret;
Laurent Pinchart16883812012-12-06 14:49:25 +0100356
Laurent Pinchart1a4fd582013-03-10 03:19:44 +0100357 if (pfc->info->data_regs == NULL)
358 return 0;
359
Laurent Pinchart63d57382013-02-15 01:33:38 +0100360 /* Register the real GPIOs chip. */
Laurent Pinchart16883812012-12-06 14:49:25 +0100361 chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup);
362 if (IS_ERR(chip))
363 return PTR_ERR(chip);
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100364
365 pfc->gpio = chip;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900366
Laurent Pinchart63d57382013-02-15 01:33:38 +0100367 /* Register the GPIO to pin mappings. */
368 if (pfc->info->ranges == NULL) {
369 def_range.begin = 0;
370 def_range.end = pfc->info->nr_pins - 1;
371 ranges = &def_range;
372 nr_ranges = 1;
373 } else {
374 ranges = pfc->info->ranges;
375 nr_ranges = pfc->info->nr_ranges;
376 }
Laurent Pinchart247127f2013-03-08 00:45:12 +0100377
Laurent Pinchart63d57382013-02-15 01:33:38 +0100378 for (i = 0; i < nr_ranges; ++i) {
379 const struct pinmux_range *range = &ranges[i];
380
381 ret = gpiochip_add_pin_range(&chip->gpio_chip,
382 dev_name(pfc->dev),
383 range->begin, range->begin,
384 range->end - range->begin + 1);
385 if (ret < 0)
386 return ret;
387 }
388
389 /* Register the function GPIOs chip. */
Laurent Pinchart542a5642013-03-07 14:31:57 +0100390 if (pfc->info->nr_func_gpios == 0)
391 return 0;
392
Laurent Pinchart16883812012-12-06 14:49:25 +0100393 chip = sh_pfc_add_gpiochip(pfc, gpio_function_setup);
394 if (IS_ERR(chip))
395 return PTR_ERR(chip);
396
397 pfc->func = chip;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900398
Paul Mundtb3c185a2012-06-20 17:29:04 +0900399 return 0;
400}
401
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100402int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900403{
Laurent Pinchart16883812012-12-06 14:49:25 +0100404 int err;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900405 int ret;
406
Laurent Pinchart16883812012-12-06 14:49:25 +0100407 ret = gpiochip_remove(&pfc->gpio->gpio_chip);
408 err = gpiochip_remove(&pfc->func->gpio_chip);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900409
Laurent Pinchart16883812012-12-06 14:49:25 +0100410 return ret < 0 ? ret : err;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900411}