blob: d37efa7dcf90c78282a12503ad4a3d1cfb991e32 [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;
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100104 const struct pinmux_data_reg *dreg;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100105 unsigned int i;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100106
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100107 /* Count the number of data registers, allocate memory and initialize
108 * them.
109 */
110 for (i = 0; pfc->info->data_regs[i].reg_width; ++i)
111 ;
112
113 chip->regs = devm_kzalloc(pfc->dev, i * sizeof(*chip->regs),
114 GFP_KERNEL);
115 if (chip->regs == NULL)
116 return -ENOMEM;
117
118 for (i = 0, dreg = pfc->info->data_regs; dreg->reg_width; ++i, ++dreg) {
119 chip->regs[i].info = dreg;
120 chip->regs[i].shadow = gpio_read_data_reg(chip, dreg);
121 }
Laurent Pincharte51d5342013-02-17 00:26:33 +0100122
123 for (i = 0; i < pfc->info->nr_pins; i++) {
124 if (pfc->info->pins[i].enum_id == 0)
Laurent Pinchart41f12192013-02-15 02:04:55 +0100125 continue;
126
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100127 gpio_setup_data_reg(chip, i);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100128 }
129
Laurent Pincharte51d5342013-02-17 00:26:33 +0100130 return 0;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100131}
132
Laurent Pinchart16883812012-12-06 14:49:25 +0100133/* -----------------------------------------------------------------------------
134 * Pin GPIOs
135 */
136
137static int gpio_pin_request(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900138{
Laurent Pinchart0b73ee52013-02-14 22:12:11 +0100139 struct sh_pfc *pfc = gpio_to_pfc(gc);
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100140 int idx = sh_pfc_get_pin_index(pfc, offset);
Laurent Pinchart0b73ee52013-02-14 22:12:11 +0100141
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100142 if (idx < 0 || pfc->info->pins[idx].enum_id == 0)
Laurent Pinchart0b73ee52013-02-14 22:12:11 +0100143 return -EINVAL;
144
Laurent Pinchart16883812012-12-06 14:49:25 +0100145 return pinctrl_request_gpio(offset);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900146}
147
Laurent Pinchart16883812012-12-06 14:49:25 +0100148static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900149{
Laurent Pinchart16883812012-12-06 14:49:25 +0100150 return pinctrl_free_gpio(offset);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900151}
152
Laurent Pincharte51d5342013-02-17 00:26:33 +0100153static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
154 int value)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900155{
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100156 struct sh_pfc_gpio_data_reg *reg;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100157 unsigned long pos;
158 unsigned int bit;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900159
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100160 gpio_get_data_reg(chip, offset, &reg, &bit);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100161
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100162 pos = reg->info->reg_width - (bit + 1);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100163
164 if (value)
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100165 set_bit(pos, &reg->shadow);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100166 else
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100167 clear_bit(pos, &reg->shadow);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100168
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100169 gpio_write_data_reg(chip, reg->info, reg->shadow);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900170}
171
Laurent Pinchart16883812012-12-06 14:49:25 +0100172static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900173{
Laurent Pinchart16883812012-12-06 14:49:25 +0100174 return pinctrl_gpio_direction_input(offset);
175}
176
177static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
178 int value)
179{
Laurent Pincharte51d5342013-02-17 00:26:33 +0100180 gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
Laurent Pinchart16883812012-12-06 14:49:25 +0100181
182 return pinctrl_gpio_direction_output(offset);
183}
184
185static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
186{
Laurent Pincharte51d5342013-02-17 00:26:33 +0100187 struct sh_pfc_chip *chip = gpio_to_pfc_chip(gc);
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100188 struct sh_pfc_gpio_data_reg *reg;
Laurent Pinchart41f12192013-02-15 02:04:55 +0100189 unsigned long pos;
190 unsigned int bit;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900191
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100192 gpio_get_data_reg(chip, offset, &reg, &bit);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100193
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100194 pos = reg->info->reg_width - (bit + 1);
Laurent Pinchart41f12192013-02-15 02:04:55 +0100195
Laurent Pinchart51cb2262013-02-16 18:34:32 +0100196 return (gpio_read_data_reg(chip, reg->info) >> pos) & 1;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900197}
198
Laurent Pinchart16883812012-12-06 14:49:25 +0100199static void gpio_pin_set(struct gpio_chip *gc, unsigned offset, int value)
Paul Mundtca5481c62012-07-10 12:08:14 +0900200{
Laurent Pincharte51d5342013-02-17 00:26:33 +0100201 gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
Paul Mundtca5481c62012-07-10 12:08:14 +0900202}
203
Laurent Pinchart16883812012-12-06 14:49:25 +0100204static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900205{
206 struct sh_pfc *pfc = gpio_to_pfc(gc);
Laurent Pinchartc07f54f2013-01-03 14:12:14 +0100207 int i, k;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900208
Laurent Pinchartc07f54f2013-01-03 14:12:14 +0100209 for (i = 0; i < pfc->info->gpio_irq_size; i++) {
210 unsigned short *gpios = pfc->info->gpio_irq[i].gpios;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900211
Laurent Pinchartc07f54f2013-01-03 14:12:14 +0100212 for (k = 0; gpios[k]; k++) {
213 if (gpios[k] == offset)
214 return pfc->info->gpio_irq[i].irq;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900215 }
216 }
217
218 return -ENOSYS;
219}
220
Laurent Pincharte51d5342013-02-17 00:26:33 +0100221static int gpio_pin_setup(struct sh_pfc_chip *chip)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900222{
223 struct sh_pfc *pfc = chip->pfc;
224 struct gpio_chip *gc = &chip->gpio_chip;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100225 int ret;
226
Laurent Pinchart1a0039d2013-03-08 17:43:54 +0100227 chip->pins = devm_kzalloc(pfc->dev, pfc->nr_pins * sizeof(*chip->pins),
228 GFP_KERNEL);
229 if (chip->pins == NULL)
230 return -ENOMEM;
231
Laurent Pincharte51d5342013-02-17 00:26:33 +0100232 ret = gpio_setup_data_regs(chip);
233 if (ret < 0)
234 return ret;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900235
Laurent Pinchart16883812012-12-06 14:49:25 +0100236 gc->request = gpio_pin_request;
237 gc->free = gpio_pin_free;
238 gc->direction_input = gpio_pin_direction_input;
239 gc->get = gpio_pin_get;
240 gc->direction_output = gpio_pin_direction_output;
241 gc->set = gpio_pin_set;
242 gc->to_irq = gpio_pin_to_irq;
243
244 gc->label = pfc->info->name;
245 gc->dev = pfc->dev;
246 gc->owner = THIS_MODULE;
247 gc->base = 0;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100248 gc->ngpio = pfc->nr_pins;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100249
250 return 0;
Laurent Pinchart16883812012-12-06 14:49:25 +0100251}
252
253/* -----------------------------------------------------------------------------
254 * Function GPIOs
255 */
256
257static int gpio_function_request(struct gpio_chip *gc, unsigned offset)
258{
Laurent Pinchart9a643c92013-03-10 18:00:02 +0100259 static bool __print_once;
Laurent Pinchart16883812012-12-06 14:49:25 +0100260 struct sh_pfc *pfc = gpio_to_pfc(gc);
Laurent Pincharta68fdca2013-02-14 17:36:56 +0100261 unsigned int mark = pfc->info->func_gpios[offset].enum_id;
Laurent Pinchart16883812012-12-06 14:49:25 +0100262 unsigned long flags;
Laurent Pinchartb705c052013-03-10 16:38:23 +0100263 int ret;
Laurent Pinchart16883812012-12-06 14:49:25 +0100264
Laurent Pinchart9a643c92013-03-10 18:00:02 +0100265 if (!__print_once) {
266 dev_notice(pfc->dev,
267 "Use of GPIO API for function requests is deprecated."
268 " Convert to pinctrl\n");
269 __print_once = true;
270 }
Laurent Pinchart16883812012-12-06 14:49:25 +0100271
Laurent Pincharta68fdca2013-02-14 17:36:56 +0100272 if (mark == 0)
Laurent Pinchartb705c052013-03-10 16:38:23 +0100273 return -EINVAL;
Laurent Pinchart16883812012-12-06 14:49:25 +0100274
275 spin_lock_irqsave(&pfc->lock, flags);
Laurent Pinchartb705c052013-03-10 16:38:23 +0100276 ret = sh_pfc_config_mux(pfc, mark, PINMUX_TYPE_FUNCTION);
Laurent Pinchart16883812012-12-06 14:49:25 +0100277 spin_unlock_irqrestore(&pfc->lock, flags);
Laurent Pinchartb705c052013-03-10 16:38:23 +0100278
Laurent Pinchart16883812012-12-06 14:49:25 +0100279 return ret;
280}
281
282static void gpio_function_free(struct gpio_chip *gc, unsigned offset)
283{
Laurent Pinchart16883812012-12-06 14:49:25 +0100284}
285
Laurent Pincharte51d5342013-02-17 00:26:33 +0100286static int gpio_function_setup(struct sh_pfc_chip *chip)
Laurent Pinchart16883812012-12-06 14:49:25 +0100287{
288 struct sh_pfc *pfc = chip->pfc;
289 struct gpio_chip *gc = &chip->gpio_chip;
290
291 gc->request = gpio_function_request;
292 gc->free = gpio_function_free;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900293
Laurent Pinchart19bb7fe32012-12-15 23:51:20 +0100294 gc->label = pfc->info->name;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900295 gc->owner = THIS_MODULE;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100296 gc->base = pfc->nr_pins;
Laurent Pinchart16883812012-12-06 14:49:25 +0100297 gc->ngpio = pfc->info->nr_func_gpios;
Laurent Pincharte51d5342013-02-17 00:26:33 +0100298
299 return 0;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900300}
301
Laurent Pinchart16883812012-12-06 14:49:25 +0100302/* -----------------------------------------------------------------------------
303 * Register/unregister
304 */
305
306static struct sh_pfc_chip *
Laurent Pinchartceef91d2013-03-10 03:19:44 +0100307sh_pfc_add_gpiochip(struct sh_pfc *pfc, int(*setup)(struct sh_pfc_chip *),
308 struct sh_pfc_window *mem)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900309{
310 struct sh_pfc_chip *chip;
311 int ret;
312
Laurent Pinchart1724acf2012-12-15 23:50:48 +0100313 chip = devm_kzalloc(pfc->dev, sizeof(*chip), GFP_KERNEL);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900314 if (unlikely(!chip))
Laurent Pinchart16883812012-12-06 14:49:25 +0100315 return ERR_PTR(-ENOMEM);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900316
Laurent Pinchartceef91d2013-03-10 03:19:44 +0100317 chip->mem = mem;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900318 chip->pfc = pfc;
319
Laurent Pincharte51d5342013-02-17 00:26:33 +0100320 ret = setup(chip);
321 if (ret < 0)
322 return ERR_PTR(ret);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900323
324 ret = gpiochip_add(&chip->gpio_chip);
Laurent Pinchart1724acf2012-12-15 23:50:48 +0100325 if (unlikely(ret < 0))
Laurent Pinchart16883812012-12-06 14:49:25 +0100326 return ERR_PTR(ret);
327
Laurent Pinchart9a643c92013-03-10 18:00:02 +0100328 dev_info(pfc->dev, "%s handling gpio %u -> %u\n",
329 chip->gpio_chip.label, chip->gpio_chip.base,
330 chip->gpio_chip.base + chip->gpio_chip.ngpio - 1);
Laurent Pinchart16883812012-12-06 14:49:25 +0100331
332 return chip;
333}
334
335int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
336{
Laurent Pinchart63d57382013-02-15 01:33:38 +0100337 const struct pinmux_range *ranges;
338 struct pinmux_range def_range;
Laurent Pinchart16883812012-12-06 14:49:25 +0100339 struct sh_pfc_chip *chip;
Laurent Pinchart63d57382013-02-15 01:33:38 +0100340 unsigned int nr_ranges;
341 unsigned int i;
Laurent Pinchart247127f2013-03-08 00:45:12 +0100342 int ret;
Laurent Pinchart16883812012-12-06 14:49:25 +0100343
Laurent Pinchart1a4fd582013-03-10 03:19:44 +0100344 if (pfc->info->data_regs == NULL)
345 return 0;
346
Laurent Pinchartceef91d2013-03-10 03:19:44 +0100347 /* Find the memory window that contain the GPIO registers. Boards that
348 * register a separate GPIO device will not supply a memory resource
349 * that covers the data registers. In that case don't try to handle
350 * GPIOs.
351 */
352 for (i = 0; i < pfc->num_windows; ++i) {
353 struct sh_pfc_window *window = &pfc->window[i];
354
355 if (pfc->info->data_regs[0].reg >= window->phys &&
356 pfc->info->data_regs[0].reg < window->phys + window->size)
357 break;
358 }
359
360 if (i == pfc->num_windows)
361 return 0;
362
Laurent Pinchart63d57382013-02-15 01:33:38 +0100363 /* Register the real GPIOs chip. */
Laurent Pinchartceef91d2013-03-10 03:19:44 +0100364 chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup, &pfc->window[i]);
Laurent Pinchart16883812012-12-06 14:49:25 +0100365 if (IS_ERR(chip))
366 return PTR_ERR(chip);
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100367
368 pfc->gpio = chip;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900369
Laurent Pinchart63d57382013-02-15 01:33:38 +0100370 /* Register the GPIO to pin mappings. */
371 if (pfc->info->ranges == NULL) {
372 def_range.begin = 0;
373 def_range.end = pfc->info->nr_pins - 1;
374 ranges = &def_range;
375 nr_ranges = 1;
376 } else {
377 ranges = pfc->info->ranges;
378 nr_ranges = pfc->info->nr_ranges;
379 }
Laurent Pinchart247127f2013-03-08 00:45:12 +0100380
Laurent Pinchart63d57382013-02-15 01:33:38 +0100381 for (i = 0; i < nr_ranges; ++i) {
382 const struct pinmux_range *range = &ranges[i];
383
384 ret = gpiochip_add_pin_range(&chip->gpio_chip,
385 dev_name(pfc->dev),
386 range->begin, range->begin,
387 range->end - range->begin + 1);
388 if (ret < 0)
389 return ret;
390 }
391
392 /* Register the function GPIOs chip. */
Laurent Pinchart542a5642013-03-07 14:31:57 +0100393 if (pfc->info->nr_func_gpios == 0)
394 return 0;
395
Laurent Pinchartceef91d2013-03-10 03:19:44 +0100396 chip = sh_pfc_add_gpiochip(pfc, gpio_function_setup, NULL);
Laurent Pinchart16883812012-12-06 14:49:25 +0100397 if (IS_ERR(chip))
398 return PTR_ERR(chip);
399
400 pfc->func = chip;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900401
Paul Mundtb3c185a2012-06-20 17:29:04 +0900402 return 0;
403}
404
Laurent Pinchart6f6a4a62012-12-15 23:50:46 +0100405int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc)
Paul Mundtb3c185a2012-06-20 17:29:04 +0900406{
Laurent Pinchart16883812012-12-06 14:49:25 +0100407 int err;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900408 int ret;
409
Laurent Pinchart16883812012-12-06 14:49:25 +0100410 ret = gpiochip_remove(&pfc->gpio->gpio_chip);
411 err = gpiochip_remove(&pfc->func->gpio_chip);
Paul Mundtb3c185a2012-06-20 17:29:04 +0900412
Laurent Pinchart16883812012-12-06 14:49:25 +0100413 return ret < 0 ? ret : err;
Paul Mundtb3c185a2012-06-20 17:29:04 +0900414}