sh: pfc: Release spinlock in sh_pfc_gpio_request_enable() error path
[linux-2.6/libata-dev.git] / drivers / sh / pfc / pinctrl.c
bloba3ac39b79192a4c8f2de0d063054f5477a1f257a
1 /*
2 * SuperH Pin Function Controller pinmux support.
4 * Copyright (C) 2012 Paul Mundt
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 */
10 #define DRV_NAME "pinctrl-sh_pfc"
12 #define pr_fmt(fmt) DRV_NAME " " KBUILD_MODNAME ": " fmt
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/sh_pfc.h>
17 #include <linux/err.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
20 #include <linux/platform_device.h>
21 #include <linux/pinctrl/consumer.h>
22 #include <linux/pinctrl/pinctrl.h>
23 #include <linux/pinctrl/pinconf.h>
24 #include <linux/pinctrl/pinmux.h>
25 #include <linux/pinctrl/pinconf-generic.h>
27 struct sh_pfc_pinctrl {
28 struct pinctrl_dev *pctl;
29 struct sh_pfc *pfc;
31 struct pinmux_gpio **functions;
32 unsigned int nr_functions;
34 struct pinctrl_pin_desc *pads;
35 unsigned int nr_pads;
37 spinlock_t lock;
40 static struct sh_pfc_pinctrl *sh_pfc_pmx;
42 static int sh_pfc_get_groups_count(struct pinctrl_dev *pctldev)
44 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
46 return pmx->nr_pads;
49 static const char *sh_pfc_get_group_name(struct pinctrl_dev *pctldev,
50 unsigned selector)
52 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
54 return pmx->pads[selector].name;
57 static int sh_pfc_get_group_pins(struct pinctrl_dev *pctldev, unsigned group,
58 const unsigned **pins, unsigned *num_pins)
60 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
62 *pins = &pmx->pads[group].number;
63 *num_pins = 1;
65 return 0;
68 static void sh_pfc_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
69 unsigned offset)
71 seq_printf(s, "%s", DRV_NAME);
74 static struct pinctrl_ops sh_pfc_pinctrl_ops = {
75 .get_groups_count = sh_pfc_get_groups_count,
76 .get_group_name = sh_pfc_get_group_name,
77 .get_group_pins = sh_pfc_get_group_pins,
78 .pin_dbg_show = sh_pfc_pin_dbg_show,
81 static int sh_pfc_get_functions_count(struct pinctrl_dev *pctldev)
83 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
85 return pmx->nr_functions;
88 static const char *sh_pfc_get_function_name(struct pinctrl_dev *pctldev,
89 unsigned selector)
91 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
93 return pmx->functions[selector]->name;
96 static int sh_pfc_get_function_groups(struct pinctrl_dev *pctldev, unsigned func,
97 const char * const **groups,
98 unsigned * const num_groups)
100 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
102 *groups = &pmx->functions[func]->name;
103 *num_groups = 1;
105 return 0;
108 static int sh_pfc_noop_enable(struct pinctrl_dev *pctldev, unsigned func,
109 unsigned group)
111 return 0;
114 static void sh_pfc_noop_disable(struct pinctrl_dev *pctldev, unsigned func,
115 unsigned group)
119 static inline int sh_pfc_config_function(struct sh_pfc *pfc, unsigned offset)
121 if (sh_pfc_config_gpio(pfc, offset,
122 PINMUX_TYPE_FUNCTION,
123 GPIO_CFG_DRYRUN) != 0)
124 return -EINVAL;
126 if (sh_pfc_config_gpio(pfc, offset,
127 PINMUX_TYPE_FUNCTION,
128 GPIO_CFG_REQ) != 0)
129 return -EINVAL;
131 return 0;
134 static int sh_pfc_reconfig_pin(struct sh_pfc *pfc, unsigned offset,
135 int new_type)
137 unsigned long flags;
138 int pinmux_type;
139 int ret = -EINVAL;
141 spin_lock_irqsave(&pfc->lock, flags);
143 pinmux_type = pfc->gpios[offset].flags & PINMUX_FLAG_TYPE;
146 * See if the present config needs to first be de-configured.
148 switch (pinmux_type) {
149 case PINMUX_TYPE_GPIO:
150 break;
151 case PINMUX_TYPE_OUTPUT:
152 case PINMUX_TYPE_INPUT:
153 case PINMUX_TYPE_INPUT_PULLUP:
154 case PINMUX_TYPE_INPUT_PULLDOWN:
155 sh_pfc_config_gpio(pfc, offset, pinmux_type, GPIO_CFG_FREE);
156 break;
157 default:
158 goto err;
162 * Dry run
164 if (sh_pfc_config_gpio(pfc, offset, new_type,
165 GPIO_CFG_DRYRUN) != 0)
166 goto err;
169 * Request
171 if (sh_pfc_config_gpio(pfc, offset, new_type,
172 GPIO_CFG_REQ) != 0)
173 goto err;
175 pfc->gpios[offset].flags &= ~PINMUX_FLAG_TYPE;
176 pfc->gpios[offset].flags |= new_type;
178 ret = 0;
180 err:
181 spin_unlock_irqrestore(&pfc->lock, flags);
183 return ret;
187 static int sh_pfc_gpio_request_enable(struct pinctrl_dev *pctldev,
188 struct pinctrl_gpio_range *range,
189 unsigned offset)
191 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
192 struct sh_pfc *pfc = pmx->pfc;
193 unsigned long flags;
194 int ret, pinmux_type;
196 spin_lock_irqsave(&pfc->lock, flags);
198 pinmux_type = pfc->gpios[offset].flags & PINMUX_FLAG_TYPE;
200 switch (pinmux_type) {
201 case PINMUX_TYPE_FUNCTION:
202 pr_notice_once("Use of GPIO API for function requests is "
203 "deprecated, convert to pinctrl\n");
204 /* handle for now */
205 ret = sh_pfc_config_function(pfc, offset);
206 if (unlikely(ret < 0))
207 goto err;
209 break;
210 case PINMUX_TYPE_GPIO:
211 break;
212 default:
213 pr_err("Unsupported mux type (%d), bailing...\n", pinmux_type);
214 ret = -ENOTSUPP;
215 goto err;
218 ret = 0;
220 err:
221 spin_unlock_irqrestore(&pfc->lock, flags);
223 return ret;
226 static void sh_pfc_gpio_disable_free(struct pinctrl_dev *pctldev,
227 struct pinctrl_gpio_range *range,
228 unsigned offset)
230 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
231 struct sh_pfc *pfc = pmx->pfc;
232 unsigned long flags;
233 int pinmux_type;
235 spin_lock_irqsave(&pfc->lock, flags);
237 pinmux_type = pfc->gpios[offset].flags & PINMUX_FLAG_TYPE;
239 sh_pfc_config_gpio(pfc, offset, pinmux_type, GPIO_CFG_FREE);
241 spin_unlock_irqrestore(&pfc->lock, flags);
244 static int sh_pfc_gpio_set_direction(struct pinctrl_dev *pctldev,
245 struct pinctrl_gpio_range *range,
246 unsigned offset, bool input)
248 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
249 int type = input ? PINMUX_TYPE_INPUT : PINMUX_TYPE_OUTPUT;
251 return sh_pfc_reconfig_pin(pmx->pfc, offset, type);
254 static struct pinmux_ops sh_pfc_pinmux_ops = {
255 .get_functions_count = sh_pfc_get_functions_count,
256 .get_function_name = sh_pfc_get_function_name,
257 .get_function_groups = sh_pfc_get_function_groups,
258 .enable = sh_pfc_noop_enable,
259 .disable = sh_pfc_noop_disable,
260 .gpio_request_enable = sh_pfc_gpio_request_enable,
261 .gpio_disable_free = sh_pfc_gpio_disable_free,
262 .gpio_set_direction = sh_pfc_gpio_set_direction,
265 static int sh_pfc_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin,
266 unsigned long *config)
268 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
269 struct sh_pfc *pfc = pmx->pfc;
271 *config = pfc->gpios[pin].flags & PINMUX_FLAG_TYPE;
273 return 0;
276 static int sh_pfc_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin,
277 unsigned long config)
279 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
281 /* Validate the new type */
282 if (config >= PINMUX_FLAG_TYPE)
283 return -EINVAL;
285 return sh_pfc_reconfig_pin(pmx->pfc, pin, config);
288 static void sh_pfc_pinconf_dbg_show(struct pinctrl_dev *pctldev,
289 struct seq_file *s, unsigned pin)
291 const char *pinmux_type_str[] = {
292 [PINMUX_TYPE_NONE] = "none",
293 [PINMUX_TYPE_FUNCTION] = "function",
294 [PINMUX_TYPE_GPIO] = "gpio",
295 [PINMUX_TYPE_OUTPUT] = "output",
296 [PINMUX_TYPE_INPUT] = "input",
297 [PINMUX_TYPE_INPUT_PULLUP] = "input bias pull up",
298 [PINMUX_TYPE_INPUT_PULLDOWN] = "input bias pull down",
300 unsigned long config;
301 int rc;
303 rc = sh_pfc_pinconf_get(pctldev, pin, &config);
304 if (unlikely(rc != 0))
305 return;
307 seq_printf(s, " %s", pinmux_type_str[config]);
310 static struct pinconf_ops sh_pfc_pinconf_ops = {
311 .pin_config_get = sh_pfc_pinconf_get,
312 .pin_config_set = sh_pfc_pinconf_set,
313 .pin_config_dbg_show = sh_pfc_pinconf_dbg_show,
316 static struct pinctrl_gpio_range sh_pfc_gpio_range = {
317 .name = DRV_NAME,
318 .id = 0,
321 static struct pinctrl_desc sh_pfc_pinctrl_desc = {
322 .name = DRV_NAME,
323 .owner = THIS_MODULE,
324 .pctlops = &sh_pfc_pinctrl_ops,
325 .pmxops = &sh_pfc_pinmux_ops,
326 .confops = &sh_pfc_pinconf_ops,
329 static inline void __devinit sh_pfc_map_one_gpio(struct sh_pfc *pfc,
330 struct sh_pfc_pinctrl *pmx,
331 struct pinmux_gpio *gpio,
332 unsigned offset)
334 struct pinmux_data_reg *dummy;
335 unsigned long flags;
336 int bit;
338 gpio->flags &= ~PINMUX_FLAG_TYPE;
340 if (sh_pfc_get_data_reg(pfc, offset, &dummy, &bit) == 0)
341 gpio->flags |= PINMUX_TYPE_GPIO;
342 else {
343 gpio->flags |= PINMUX_TYPE_FUNCTION;
345 spin_lock_irqsave(&pmx->lock, flags);
346 pmx->nr_functions++;
347 spin_unlock_irqrestore(&pmx->lock, flags);
351 /* pinmux ranges -> pinctrl pin descs */
352 static int __devinit sh_pfc_map_gpios(struct sh_pfc *pfc,
353 struct sh_pfc_pinctrl *pmx)
355 unsigned long flags;
356 int i;
358 pmx->nr_pads = pfc->last_gpio - pfc->first_gpio + 1;
360 pmx->pads = kmalloc(sizeof(struct pinctrl_pin_desc) * pmx->nr_pads,
361 GFP_KERNEL);
362 if (unlikely(!pmx->pads)) {
363 pmx->nr_pads = 0;
364 return -ENOMEM;
367 spin_lock_irqsave(&pfc->lock, flags);
370 * We don't necessarily have a 1:1 mapping between pin and linux
371 * GPIO number, as the latter maps to the associated enum_id.
372 * Care needs to be taken to translate back to pin space when
373 * dealing with any pin configurations.
375 for (i = 0; i < pmx->nr_pads; i++) {
376 struct pinctrl_pin_desc *pin = pmx->pads + i;
377 struct pinmux_gpio *gpio = pfc->gpios + i;
379 pin->number = pfc->first_gpio + i;
380 pin->name = gpio->name;
382 /* XXX */
383 if (unlikely(!gpio->enum_id))
384 continue;
386 sh_pfc_map_one_gpio(pfc, pmx, gpio, i);
389 spin_unlock_irqrestore(&pfc->lock, flags);
391 sh_pfc_pinctrl_desc.pins = pmx->pads;
392 sh_pfc_pinctrl_desc.npins = pmx->nr_pads;
394 return 0;
397 static int __devinit sh_pfc_map_functions(struct sh_pfc *pfc,
398 struct sh_pfc_pinctrl *pmx)
400 unsigned long flags;
401 int i, fn;
403 pmx->functions = kzalloc(pmx->nr_functions * sizeof(void *),
404 GFP_KERNEL);
405 if (unlikely(!pmx->functions))
406 return -ENOMEM;
408 spin_lock_irqsave(&pmx->lock, flags);
410 for (i = fn = 0; i < pmx->nr_pads; i++) {
411 struct pinmux_gpio *gpio = pfc->gpios + i;
413 if ((gpio->flags & PINMUX_FLAG_TYPE) == PINMUX_TYPE_FUNCTION)
414 pmx->functions[fn++] = gpio;
417 spin_unlock_irqrestore(&pmx->lock, flags);
419 return 0;
422 static int __devinit sh_pfc_pinctrl_probe(struct platform_device *pdev)
424 struct sh_pfc *pfc;
425 int ret;
427 if (unlikely(!sh_pfc_pmx))
428 return -ENODEV;
430 pfc = sh_pfc_pmx->pfc;
432 ret = sh_pfc_map_gpios(pfc, sh_pfc_pmx);
433 if (unlikely(ret != 0))
434 return ret;
436 ret = sh_pfc_map_functions(pfc, sh_pfc_pmx);
437 if (unlikely(ret != 0))
438 goto free_pads;
440 sh_pfc_pmx->pctl = pinctrl_register(&sh_pfc_pinctrl_desc, &pdev->dev,
441 sh_pfc_pmx);
442 if (IS_ERR(sh_pfc_pmx->pctl)) {
443 ret = PTR_ERR(sh_pfc_pmx->pctl);
444 goto free_functions;
447 sh_pfc_gpio_range.npins = pfc->last_gpio - pfc->first_gpio + 1;
448 sh_pfc_gpio_range.base = pfc->first_gpio;
449 sh_pfc_gpio_range.pin_base = pfc->first_gpio;
451 pinctrl_add_gpio_range(sh_pfc_pmx->pctl, &sh_pfc_gpio_range);
453 platform_set_drvdata(pdev, sh_pfc_pmx);
455 return 0;
457 free_functions:
458 kfree(sh_pfc_pmx->functions);
459 free_pads:
460 kfree(sh_pfc_pmx->pads);
461 kfree(sh_pfc_pmx);
463 return ret;
466 static int __devexit sh_pfc_pinctrl_remove(struct platform_device *pdev)
468 struct sh_pfc_pinctrl *pmx = platform_get_drvdata(pdev);
470 pinctrl_unregister(pmx->pctl);
472 platform_set_drvdata(pdev, NULL);
474 kfree(sh_pfc_pmx->functions);
475 kfree(sh_pfc_pmx->pads);
476 kfree(sh_pfc_pmx);
478 return 0;
481 static struct platform_driver sh_pfc_pinctrl_driver = {
482 .probe = sh_pfc_pinctrl_probe,
483 .remove = __devexit_p(sh_pfc_pinctrl_remove),
484 .driver = {
485 .name = DRV_NAME,
486 .owner = THIS_MODULE,
490 static struct platform_device sh_pfc_pinctrl_device = {
491 .name = DRV_NAME,
492 .id = -1,
495 static int sh_pfc_pinctrl_init(void)
497 int rc;
499 rc = platform_driver_register(&sh_pfc_pinctrl_driver);
500 if (likely(!rc)) {
501 rc = platform_device_register(&sh_pfc_pinctrl_device);
502 if (unlikely(rc))
503 platform_driver_unregister(&sh_pfc_pinctrl_driver);
506 return rc;
509 int sh_pfc_register_pinctrl(struct sh_pfc *pfc)
511 sh_pfc_pmx = kzalloc(sizeof(struct sh_pfc_pinctrl), GFP_KERNEL);
512 if (unlikely(!sh_pfc_pmx))
513 return -ENOMEM;
515 spin_lock_init(&sh_pfc_pmx->lock);
517 sh_pfc_pmx->pfc = pfc;
519 return sh_pfc_pinctrl_init();
521 EXPORT_SYMBOL_GPL(sh_pfc_register_pinctrl);
523 static void __exit sh_pfc_pinctrl_exit(void)
525 platform_driver_unregister(&sh_pfc_pinctrl_driver);
527 module_exit(sh_pfc_pinctrl_exit);