sh-pfc: Move platform device and driver to the core
[deliverable/linux.git] / drivers / sh / pfc / pinctrl.c
CommitLineData
ca5481c6
PM
1/*
2 * SuperH Pin Function Controller pinmux support.
3 *
4 * Copyright (C) 2012 Paul Mundt
5 *
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 */
54407110 10
c6193eac 11#define DRV_NAME "sh-pfc"
f9492fda 12#define pr_fmt(fmt) KBUILD_MODNAME " pinctrl: " fmt
ca5481c6
PM
13
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>
d93a891f 19#include <linux/spinlock.h>
ca5481c6
PM
20#include <linux/pinctrl/consumer.h>
21#include <linux/pinctrl/pinctrl.h>
22#include <linux/pinctrl/pinconf.h>
23#include <linux/pinctrl/pinmux.h>
24#include <linux/pinctrl/pinconf-generic.h>
25
f9165132
LP
26#include "core.h"
27
ca5481c6
PM
28struct sh_pfc_pinctrl {
29 struct pinctrl_dev *pctl;
30 struct sh_pfc *pfc;
31
d93a891f
PM
32 struct pinmux_gpio **functions;
33 unsigned int nr_functions;
34
ca5481c6
PM
35 struct pinctrl_pin_desc *pads;
36 unsigned int nr_pads;
d93a891f
PM
37
38 spinlock_t lock;
ca5481c6
PM
39};
40
e3f805e8 41static int sh_pfc_get_groups_count(struct pinctrl_dev *pctldev)
ca5481c6 42{
e3f805e8
PM
43 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
44
45 return pmx->nr_pads;
ca5481c6
PM
46}
47
e3f805e8 48static const char *sh_pfc_get_group_name(struct pinctrl_dev *pctldev,
ca5481c6
PM
49 unsigned selector)
50{
e3f805e8
PM
51 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
52
53 return pmx->pads[selector].name;
ca5481c6
PM
54}
55
56static int sh_pfc_get_group_pins(struct pinctrl_dev *pctldev, unsigned group,
57 const unsigned **pins, unsigned *num_pins)
58{
e3f805e8
PM
59 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
60
61 *pins = &pmx->pads[group].number;
62 *num_pins = 1;
63
64 return 0;
ca5481c6
PM
65}
66
fdd85ec3
PM
67static void sh_pfc_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
68 unsigned offset)
69{
70 seq_printf(s, "%s", DRV_NAME);
71}
72
ca5481c6 73static struct pinctrl_ops sh_pfc_pinctrl_ops = {
e3f805e8
PM
74 .get_groups_count = sh_pfc_get_groups_count,
75 .get_group_name = sh_pfc_get_group_name,
ca5481c6 76 .get_group_pins = sh_pfc_get_group_pins,
fdd85ec3 77 .pin_dbg_show = sh_pfc_pin_dbg_show,
ca5481c6
PM
78};
79
d93a891f
PM
80static int sh_pfc_get_functions_count(struct pinctrl_dev *pctldev)
81{
82 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
83
84 return pmx->nr_functions;
85}
86
87static const char *sh_pfc_get_function_name(struct pinctrl_dev *pctldev,
88 unsigned selector)
89{
90 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
91
92 return pmx->functions[selector]->name;
93}
ca5481c6 94
ca5481c6
PM
95static int sh_pfc_get_function_groups(struct pinctrl_dev *pctldev, unsigned func,
96 const char * const **groups,
97 unsigned * const num_groups)
98{
d93a891f
PM
99 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
100
101 *groups = &pmx->functions[func]->name;
102 *num_groups = 1;
103
ca5481c6
PM
104 return 0;
105}
106
107static int sh_pfc_noop_enable(struct pinctrl_dev *pctldev, unsigned func,
108 unsigned group)
109{
110 return 0;
111}
112
113static void sh_pfc_noop_disable(struct pinctrl_dev *pctldev, unsigned func,
114 unsigned group)
115{
116}
117
d93a891f
PM
118static inline int sh_pfc_config_function(struct sh_pfc *pfc, unsigned offset)
119{
120 if (sh_pfc_config_gpio(pfc, offset,
121 PINMUX_TYPE_FUNCTION,
122 GPIO_CFG_DRYRUN) != 0)
123 return -EINVAL;
124
125 if (sh_pfc_config_gpio(pfc, offset,
126 PINMUX_TYPE_FUNCTION,
127 GPIO_CFG_REQ) != 0)
128 return -EINVAL;
129
130 return 0;
131}
132
fdd85ec3
PM
133static int sh_pfc_reconfig_pin(struct sh_pfc *pfc, unsigned offset,
134 int new_type)
135{
136 unsigned long flags;
137 int pinmux_type;
138 int ret = -EINVAL;
139
140 spin_lock_irqsave(&pfc->lock, flags);
141
d4e62d00 142 pinmux_type = pfc->pdata->gpios[offset].flags & PINMUX_FLAG_TYPE;
fdd85ec3
PM
143
144 /*
145 * See if the present config needs to first be de-configured.
146 */
147 switch (pinmux_type) {
148 case PINMUX_TYPE_GPIO:
149 break;
150 case PINMUX_TYPE_OUTPUT:
151 case PINMUX_TYPE_INPUT:
152 case PINMUX_TYPE_INPUT_PULLUP:
153 case PINMUX_TYPE_INPUT_PULLDOWN:
154 sh_pfc_config_gpio(pfc, offset, pinmux_type, GPIO_CFG_FREE);
155 break;
156 default:
157 goto err;
158 }
159
160 /*
161 * Dry run
162 */
163 if (sh_pfc_config_gpio(pfc, offset, new_type,
164 GPIO_CFG_DRYRUN) != 0)
165 goto err;
166
167 /*
168 * Request
169 */
170 if (sh_pfc_config_gpio(pfc, offset, new_type,
171 GPIO_CFG_REQ) != 0)
172 goto err;
173
d4e62d00
LP
174 pfc->pdata->gpios[offset].flags &= ~PINMUX_FLAG_TYPE;
175 pfc->pdata->gpios[offset].flags |= new_type;
fdd85ec3
PM
176
177 ret = 0;
178
179err:
180 spin_unlock_irqrestore(&pfc->lock, flags);
181
182 return ret;
183}
184
185
ca5481c6
PM
186static int sh_pfc_gpio_request_enable(struct pinctrl_dev *pctldev,
187 struct pinctrl_gpio_range *range,
188 unsigned offset)
189{
190 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
191 struct sh_pfc *pfc = pmx->pfc;
ca5481c6 192 unsigned long flags;
d93a891f 193 int ret, pinmux_type;
ca5481c6
PM
194
195 spin_lock_irqsave(&pfc->lock, flags);
196
d4e62d00 197 pinmux_type = pfc->pdata->gpios[offset].flags & PINMUX_FLAG_TYPE;
ca5481c6 198
d93a891f
PM
199 switch (pinmux_type) {
200 case PINMUX_TYPE_FUNCTION:
201 pr_notice_once("Use of GPIO API for function requests is "
202 "deprecated, convert to pinctrl\n");
203 /* handle for now */
204 ret = sh_pfc_config_function(pfc, offset);
205 if (unlikely(ret < 0))
ca5481c6 206 goto err;
ca5481c6 207
d93a891f
PM
208 break;
209 case PINMUX_TYPE_GPIO:
16d74ebe
PM
210 case PINMUX_TYPE_INPUT:
211 case PINMUX_TYPE_OUTPUT:
d93a891f
PM
212 break;
213 default:
214 pr_err("Unsupported mux type (%d), bailing...\n", pinmux_type);
077664a2
LP
215 ret = -ENOTSUPP;
216 goto err;
d93a891f 217 }
ca5481c6
PM
218
219 ret = 0;
220
221err:
222 spin_unlock_irqrestore(&pfc->lock, flags);
223
224 return ret;
225}
226
227static void sh_pfc_gpio_disable_free(struct pinctrl_dev *pctldev,
228 struct pinctrl_gpio_range *range,
229 unsigned offset)
230{
231 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
232 struct sh_pfc *pfc = pmx->pfc;
233 unsigned long flags;
234 int pinmux_type;
235
236 spin_lock_irqsave(&pfc->lock, flags);
237
d4e62d00 238 pinmux_type = pfc->pdata->gpios[offset].flags & PINMUX_FLAG_TYPE;
ca5481c6
PM
239
240 sh_pfc_config_gpio(pfc, offset, pinmux_type, GPIO_CFG_FREE);
241
ca5481c6
PM
242 spin_unlock_irqrestore(&pfc->lock, flags);
243}
244
245static int sh_pfc_gpio_set_direction(struct pinctrl_dev *pctldev,
246 struct pinctrl_gpio_range *range,
247 unsigned offset, bool input)
248{
249 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
fdd85ec3 250 int type = input ? PINMUX_TYPE_INPUT : PINMUX_TYPE_OUTPUT;
ca5481c6 251
fdd85ec3 252 return sh_pfc_reconfig_pin(pmx->pfc, offset, type);
ca5481c6
PM
253}
254
255static struct pinmux_ops sh_pfc_pinmux_ops = {
d93a891f
PM
256 .get_functions_count = sh_pfc_get_functions_count,
257 .get_function_name = sh_pfc_get_function_name,
ca5481c6
PM
258 .get_function_groups = sh_pfc_get_function_groups,
259 .enable = sh_pfc_noop_enable,
260 .disable = sh_pfc_noop_disable,
261 .gpio_request_enable = sh_pfc_gpio_request_enable,
262 .gpio_disable_free = sh_pfc_gpio_disable_free,
263 .gpio_set_direction = sh_pfc_gpio_set_direction,
264};
265
266static int sh_pfc_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin,
267 unsigned long *config)
268{
fdd85ec3
PM
269 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
270 struct sh_pfc *pfc = pmx->pfc;
d93a891f 271
d4e62d00 272 *config = pfc->pdata->gpios[pin].flags & PINMUX_FLAG_TYPE;
d93a891f 273
fdd85ec3 274 return 0;
ca5481c6
PM
275}
276
277static int sh_pfc_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin,
278 unsigned long config)
279{
fdd85ec3 280 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
fdd85ec3
PM
281
282 /* Validate the new type */
283 if (config >= PINMUX_FLAG_TYPE)
284 return -EINVAL;
285
286 return sh_pfc_reconfig_pin(pmx->pfc, pin, config);
287}
288
289static void sh_pfc_pinconf_dbg_show(struct pinctrl_dev *pctldev,
290 struct seq_file *s, unsigned pin)
291{
292 const char *pinmux_type_str[] = {
293 [PINMUX_TYPE_NONE] = "none",
294 [PINMUX_TYPE_FUNCTION] = "function",
295 [PINMUX_TYPE_GPIO] = "gpio",
296 [PINMUX_TYPE_OUTPUT] = "output",
297 [PINMUX_TYPE_INPUT] = "input",
298 [PINMUX_TYPE_INPUT_PULLUP] = "input bias pull up",
299 [PINMUX_TYPE_INPUT_PULLDOWN] = "input bias pull down",
300 };
301 unsigned long config;
302 int rc;
303
304 rc = sh_pfc_pinconf_get(pctldev, pin, &config);
305 if (unlikely(rc != 0))
306 return;
307
308 seq_printf(s, " %s", pinmux_type_str[config]);
ca5481c6
PM
309}
310
311static struct pinconf_ops sh_pfc_pinconf_ops = {
ca5481c6
PM
312 .pin_config_get = sh_pfc_pinconf_get,
313 .pin_config_set = sh_pfc_pinconf_set,
fdd85ec3 314 .pin_config_dbg_show = sh_pfc_pinconf_dbg_show,
ca5481c6
PM
315};
316
317static struct pinctrl_gpio_range sh_pfc_gpio_range = {
54407110 318 .name = DRV_NAME,
ca5481c6
PM
319 .id = 0,
320};
321
322static struct pinctrl_desc sh_pfc_pinctrl_desc = {
54407110 323 .name = DRV_NAME,
ca5481c6
PM
324 .owner = THIS_MODULE,
325 .pctlops = &sh_pfc_pinctrl_ops,
326 .pmxops = &sh_pfc_pinmux_ops,
327 .confops = &sh_pfc_pinconf_ops,
328};
329
0fe763c5
GKH
330static inline void sh_pfc_map_one_gpio(struct sh_pfc *pfc,
331 struct sh_pfc_pinctrl *pmx,
332 struct pinmux_gpio *gpio,
333 unsigned offset)
d93a891f
PM
334{
335 struct pinmux_data_reg *dummy;
336 unsigned long flags;
337 int bit;
338
339 gpio->flags &= ~PINMUX_FLAG_TYPE;
340
341 if (sh_pfc_get_data_reg(pfc, offset, &dummy, &bit) == 0)
342 gpio->flags |= PINMUX_TYPE_GPIO;
343 else {
344 gpio->flags |= PINMUX_TYPE_FUNCTION;
345
346 spin_lock_irqsave(&pmx->lock, flags);
347 pmx->nr_functions++;
348 spin_unlock_irqrestore(&pmx->lock, flags);
349 }
350}
351
ca5481c6 352/* pinmux ranges -> pinctrl pin descs */
0fe763c5 353static int sh_pfc_map_gpios(struct sh_pfc *pfc, struct sh_pfc_pinctrl *pmx)
ca5481c6 354{
d93a891f 355 unsigned long flags;
ca5481c6
PM
356 int i;
357
d4e62d00 358 pmx->nr_pads = pfc->pdata->last_gpio - pfc->pdata->first_gpio + 1;
ca5481c6
PM
359
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;
365 }
366
d93a891f
PM
367 spin_lock_irqsave(&pfc->lock, flags);
368
ca5481c6
PM
369 /*
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.
374 */
375 for (i = 0; i < pmx->nr_pads; i++) {
376 struct pinctrl_pin_desc *pin = pmx->pads + i;
d4e62d00 377 struct pinmux_gpio *gpio = pfc->pdata->gpios + i;
ca5481c6 378
d4e62d00 379 pin->number = pfc->pdata->first_gpio + i;
ca5481c6 380 pin->name = gpio->name;
d93a891f 381
e3e79454
PM
382 /* XXX */
383 if (unlikely(!gpio->enum_id))
384 continue;
385
d93a891f 386 sh_pfc_map_one_gpio(pfc, pmx, gpio, i);
ca5481c6
PM
387 }
388
d93a891f
PM
389 spin_unlock_irqrestore(&pfc->lock, flags);
390
ca5481c6
PM
391 sh_pfc_pinctrl_desc.pins = pmx->pads;
392 sh_pfc_pinctrl_desc.npins = pmx->nr_pads;
393
394 return 0;
395}
396
0fe763c5 397static int sh_pfc_map_functions(struct sh_pfc *pfc, struct sh_pfc_pinctrl *pmx)
d93a891f
PM
398{
399 unsigned long flags;
400 int i, fn;
401
402 pmx->functions = kzalloc(pmx->nr_functions * sizeof(void *),
403 GFP_KERNEL);
404 if (unlikely(!pmx->functions))
405 return -ENOMEM;
406
407 spin_lock_irqsave(&pmx->lock, flags);
408
409 for (i = fn = 0; i < pmx->nr_pads; i++) {
d4e62d00 410 struct pinmux_gpio *gpio = pfc->pdata->gpios + i;
d93a891f
PM
411
412 if ((gpio->flags & PINMUX_FLAG_TYPE) == PINMUX_TYPE_FUNCTION)
413 pmx->functions[fn++] = gpio;
414 }
415
416 spin_unlock_irqrestore(&pmx->lock, flags);
417
418 return 0;
419}
420
c6193eac 421int sh_pfc_register_pinctrl(struct sh_pfc *pfc)
ca5481c6 422{
c6193eac 423 struct sh_pfc_pinctrl *pmx;
ca5481c6
PM
424 int ret;
425
c6193eac
LP
426 pmx = kzalloc(sizeof(struct sh_pfc_pinctrl), GFP_KERNEL);
427 if (unlikely(!pmx))
428 return -ENOMEM;
429
430 spin_lock_init(&pmx->lock);
ca5481c6 431
c6193eac
LP
432 pmx->pfc = pfc;
433 pfc->pinctrl = pmx;
ca5481c6 434
c6193eac 435 ret = sh_pfc_map_gpios(pfc, pmx);
ca5481c6
PM
436 if (unlikely(ret != 0))
437 return ret;
438
c6193eac 439 ret = sh_pfc_map_functions(pfc, pmx);
d93a891f
PM
440 if (unlikely(ret != 0))
441 goto free_pads;
442
c6193eac
LP
443 pmx->pctl = pinctrl_register(&sh_pfc_pinctrl_desc, pfc->dev, pmx);
444 if (IS_ERR(pmx->pctl)) {
445 ret = PTR_ERR(pmx->pctl);
d93a891f 446 goto free_functions;
ca5481c6
PM
447 }
448
d4e62d00
LP
449 sh_pfc_gpio_range.npins = pfc->pdata->last_gpio
450 - pfc->pdata->first_gpio + 1;
451 sh_pfc_gpio_range.base = pfc->pdata->first_gpio;
452 sh_pfc_gpio_range.pin_base = pfc->pdata->first_gpio;
ca5481c6 453
c6193eac 454 pinctrl_add_gpio_range(pmx->pctl, &sh_pfc_gpio_range);
ca5481c6
PM
455
456 return 0;
457
d93a891f 458free_functions:
c6193eac 459 kfree(pmx->functions);
d93a891f 460free_pads:
c6193eac
LP
461 kfree(pmx->pads);
462 kfree(pmx);
d93a891f 463
ca5481c6
PM
464 return ret;
465}
466
c6193eac 467int sh_pfc_unregister_pinctrl(struct sh_pfc *pfc)
ca5481c6 468{
c6193eac 469 struct sh_pfc_pinctrl *pmx = pfc->pinctrl;
ca5481c6 470
ca5481c6
PM
471 pinctrl_unregister(pmx->pctl);
472
c6193eac
LP
473 kfree(pmx->functions);
474 kfree(pmx->pads);
475 kfree(pmx);
ca5481c6 476
c6193eac 477 pfc->pinctrl = NULL;
ca5481c6
PM
478 return 0;
479}
This page took 0.074916 seconds and 5 git commands to generate.