sh: pfc: Export pinctrl binding init symbol.
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / sh / pfc / pinctrl.c
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 */
10 #define pr_fmt(fmt) "sh_pfc " KBUILD_MODNAME ": " fmt
11
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/sh_pfc.h>
15 #include <linux/err.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
18 #include <linux/platform_device.h>
19 #include <linux/pinctrl/consumer.h>
20 #include <linux/pinctrl/pinctrl.h>
21 #include <linux/pinctrl/pinconf.h>
22 #include <linux/pinctrl/pinmux.h>
23 #include <linux/pinctrl/pinconf-generic.h>
24
25 struct sh_pfc_pinctrl {
26 struct pinctrl_dev *pctl;
27 struct sh_pfc *pfc;
28
29 struct pinmux_gpio **functions;
30 unsigned int nr_functions;
31
32 struct pinctrl_pin_desc *pads;
33 unsigned int nr_pads;
34
35 spinlock_t lock;
36 };
37
38 static struct sh_pfc_pinctrl *sh_pfc_pmx;
39
40 /*
41 * No group support yet
42 */
43 static int sh_pfc_get_noop_count(struct pinctrl_dev *pctldev)
44 {
45 return 0;
46 }
47
48 static const char *sh_pfc_get_noop_name(struct pinctrl_dev *pctldev,
49 unsigned selector)
50 {
51 return NULL;
52 }
53
54 static int sh_pfc_get_group_pins(struct pinctrl_dev *pctldev, unsigned group,
55 const unsigned **pins, unsigned *num_pins)
56 {
57 return -ENOTSUPP;
58 }
59
60 static struct pinctrl_ops sh_pfc_pinctrl_ops = {
61 .get_groups_count = sh_pfc_get_noop_count,
62 .get_group_name = sh_pfc_get_noop_name,
63 .get_group_pins = sh_pfc_get_group_pins,
64 };
65
66 static int sh_pfc_get_functions_count(struct pinctrl_dev *pctldev)
67 {
68 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
69
70 return pmx->nr_functions;
71 }
72
73 static const char *sh_pfc_get_function_name(struct pinctrl_dev *pctldev,
74 unsigned selector)
75 {
76 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
77
78 return pmx->functions[selector]->name;
79 }
80
81 static int sh_pfc_get_function_groups(struct pinctrl_dev *pctldev, unsigned func,
82 const char * const **groups,
83 unsigned * const num_groups)
84 {
85 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
86
87 *groups = &pmx->functions[func]->name;
88 *num_groups = 1;
89
90 return 0;
91 }
92
93 static int sh_pfc_noop_enable(struct pinctrl_dev *pctldev, unsigned func,
94 unsigned group)
95 {
96 return 0;
97 }
98
99 static void sh_pfc_noop_disable(struct pinctrl_dev *pctldev, unsigned func,
100 unsigned group)
101 {
102 }
103
104 static inline int sh_pfc_config_function(struct sh_pfc *pfc, unsigned offset)
105 {
106 if (sh_pfc_config_gpio(pfc, offset,
107 PINMUX_TYPE_FUNCTION,
108 GPIO_CFG_DRYRUN) != 0)
109 return -EINVAL;
110
111 if (sh_pfc_config_gpio(pfc, offset,
112 PINMUX_TYPE_FUNCTION,
113 GPIO_CFG_REQ) != 0)
114 return -EINVAL;
115
116 return 0;
117 }
118
119 static int sh_pfc_gpio_request_enable(struct pinctrl_dev *pctldev,
120 struct pinctrl_gpio_range *range,
121 unsigned offset)
122 {
123 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
124 struct sh_pfc *pfc = pmx->pfc;
125 unsigned long flags;
126 int ret, pinmux_type;
127
128 spin_lock_irqsave(&pfc->lock, flags);
129
130 pinmux_type = pfc->gpios[offset].flags & PINMUX_FLAG_TYPE;
131
132 switch (pinmux_type) {
133 case PINMUX_TYPE_FUNCTION:
134 pr_notice_once("Use of GPIO API for function requests is "
135 "deprecated, convert to pinctrl\n");
136 /* handle for now */
137 ret = sh_pfc_config_function(pfc, offset);
138 if (unlikely(ret < 0))
139 goto err;
140
141 break;
142 case PINMUX_TYPE_GPIO:
143 break;
144 default:
145 pr_err("Unsupported mux type (%d), bailing...\n", pinmux_type);
146 return -ENOTSUPP;
147 }
148
149 ret = 0;
150
151 err:
152 spin_unlock_irqrestore(&pfc->lock, flags);
153
154 return ret;
155 }
156
157 static void sh_pfc_gpio_disable_free(struct pinctrl_dev *pctldev,
158 struct pinctrl_gpio_range *range,
159 unsigned offset)
160 {
161 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
162 struct sh_pfc *pfc = pmx->pfc;
163 unsigned long flags;
164 int pinmux_type;
165
166 spin_lock_irqsave(&pfc->lock, flags);
167
168 pinmux_type = pfc->gpios[offset].flags & PINMUX_FLAG_TYPE;
169
170 sh_pfc_config_gpio(pfc, offset, pinmux_type, GPIO_CFG_FREE);
171
172 spin_unlock_irqrestore(&pfc->lock, flags);
173 }
174
175 static int sh_pfc_gpio_set_direction(struct pinctrl_dev *pctldev,
176 struct pinctrl_gpio_range *range,
177 unsigned offset, bool input)
178 {
179 struct sh_pfc_pinctrl *pmx = pinctrl_dev_get_drvdata(pctldev);
180 struct sh_pfc *pfc = pmx->pfc;
181 unsigned long flags;
182 int pinmux_type, new_pinmux_type;
183 int ret = -EINVAL;
184
185 new_pinmux_type = input ? PINMUX_TYPE_INPUT : PINMUX_TYPE_OUTPUT;
186
187 spin_lock_irqsave(&pfc->lock, flags);
188
189 pinmux_type = pfc->gpios[offset].flags & PINMUX_FLAG_TYPE;
190
191 switch (pinmux_type) {
192 case PINMUX_TYPE_GPIO:
193 break;
194 case PINMUX_TYPE_OUTPUT:
195 case PINMUX_TYPE_INPUT:
196 case PINMUX_TYPE_INPUT_PULLUP:
197 case PINMUX_TYPE_INPUT_PULLDOWN:
198 sh_pfc_config_gpio(pfc, offset, pinmux_type, GPIO_CFG_FREE);
199 break;
200 default:
201 goto err;
202 }
203
204 if (sh_pfc_config_gpio(pfc, offset,
205 new_pinmux_type,
206 GPIO_CFG_DRYRUN) != 0)
207 goto err;
208
209 if (sh_pfc_config_gpio(pfc, offset,
210 new_pinmux_type,
211 GPIO_CFG_REQ) != 0)
212 BUG();
213
214 pfc->gpios[offset].flags &= ~PINMUX_FLAG_TYPE;
215 pfc->gpios[offset].flags |= new_pinmux_type;
216
217 ret = 0;
218
219 err:
220 spin_unlock_irqrestore(&pfc->lock, flags);
221
222 return ret;
223 }
224
225 static struct pinmux_ops sh_pfc_pinmux_ops = {
226 .get_functions_count = sh_pfc_get_functions_count,
227 .get_function_name = sh_pfc_get_function_name,
228 .get_function_groups = sh_pfc_get_function_groups,
229 .enable = sh_pfc_noop_enable,
230 .disable = sh_pfc_noop_disable,
231 .gpio_request_enable = sh_pfc_gpio_request_enable,
232 .gpio_disable_free = sh_pfc_gpio_disable_free,
233 .gpio_set_direction = sh_pfc_gpio_set_direction,
234 };
235
236 static int sh_pfc_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin,
237 unsigned long *config)
238 {
239 enum pin_config_param param = (enum pin_config_param)(*config);
240
241 switch (param) {
242 default:
243 break;
244 }
245
246 return -ENOTSUPP;
247 }
248
249 static int sh_pfc_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin,
250 unsigned long config)
251 {
252 return -EINVAL;
253 }
254
255 static struct pinconf_ops sh_pfc_pinconf_ops = {
256 .is_generic = true,
257 .pin_config_get = sh_pfc_pinconf_get,
258 .pin_config_set = sh_pfc_pinconf_set,
259 };
260
261 static struct pinctrl_gpio_range sh_pfc_gpio_range = {
262 .name = KBUILD_MODNAME,
263 .id = 0,
264 };
265
266 static struct pinctrl_desc sh_pfc_pinctrl_desc = {
267 .name = KBUILD_MODNAME,
268 .owner = THIS_MODULE,
269 .pctlops = &sh_pfc_pinctrl_ops,
270 .pmxops = &sh_pfc_pinmux_ops,
271 .confops = &sh_pfc_pinconf_ops,
272 };
273
274 int sh_pfc_register_pinctrl(struct sh_pfc *pfc)
275 {
276 sh_pfc_pmx = kzalloc(sizeof(struct sh_pfc_pinctrl), GFP_KERNEL);
277 if (unlikely(!sh_pfc_pmx))
278 return -ENOMEM;
279
280 spin_lock_init(&sh_pfc_pmx->lock);
281
282 sh_pfc_pmx->pfc = pfc;
283
284 return 0;
285 }
286 EXPORT_SYMBOL_GPL(sh_pfc_register_pinctrl);
287
288 static inline void __devinit sh_pfc_map_one_gpio(struct sh_pfc *pfc,
289 struct sh_pfc_pinctrl *pmx,
290 struct pinmux_gpio *gpio,
291 unsigned offset)
292 {
293 struct pinmux_data_reg *dummy;
294 unsigned long flags;
295 int bit;
296
297 gpio->flags &= ~PINMUX_FLAG_TYPE;
298
299 if (sh_pfc_get_data_reg(pfc, offset, &dummy, &bit) == 0)
300 gpio->flags |= PINMUX_TYPE_GPIO;
301 else {
302 gpio->flags |= PINMUX_TYPE_FUNCTION;
303
304 spin_lock_irqsave(&pmx->lock, flags);
305 pmx->nr_functions++;
306 spin_unlock_irqrestore(&pmx->lock, flags);
307 }
308 }
309
310 /* pinmux ranges -> pinctrl pin descs */
311 static int __devinit sh_pfc_map_gpios(struct sh_pfc *pfc,
312 struct sh_pfc_pinctrl *pmx)
313 {
314 unsigned long flags;
315 int i;
316
317 pmx->nr_pads = pfc->last_gpio - pfc->first_gpio + 1;
318
319 pmx->pads = kmalloc(sizeof(struct pinctrl_pin_desc) * pmx->nr_pads,
320 GFP_KERNEL);
321 if (unlikely(!pmx->pads)) {
322 pmx->nr_pads = 0;
323 return -ENOMEM;
324 }
325
326 spin_lock_irqsave(&pfc->lock, flags);
327
328 /*
329 * We don't necessarily have a 1:1 mapping between pin and linux
330 * GPIO number, as the latter maps to the associated enum_id.
331 * Care needs to be taken to translate back to pin space when
332 * dealing with any pin configurations.
333 */
334 for (i = 0; i < pmx->nr_pads; i++) {
335 struct pinctrl_pin_desc *pin = pmx->pads + i;
336 struct pinmux_gpio *gpio = pfc->gpios + i;
337
338 pin->number = pfc->first_gpio + i;
339 pin->name = gpio->name;
340
341 sh_pfc_map_one_gpio(pfc, pmx, gpio, i);
342 }
343
344 spin_unlock_irqrestore(&pfc->lock, flags);
345
346 sh_pfc_pinctrl_desc.pins = pmx->pads;
347 sh_pfc_pinctrl_desc.npins = pmx->nr_pads;
348
349 return 0;
350 }
351
352 static int __devinit sh_pfc_map_functions(struct sh_pfc *pfc,
353 struct sh_pfc_pinctrl *pmx)
354 {
355 unsigned long flags;
356 int i, fn;
357
358 pmx->functions = kzalloc(pmx->nr_functions * sizeof(void *),
359 GFP_KERNEL);
360 if (unlikely(!pmx->functions))
361 return -ENOMEM;
362
363 spin_lock_irqsave(&pmx->lock, flags);
364
365 for (i = fn = 0; i < pmx->nr_pads; i++) {
366 struct pinmux_gpio *gpio = pfc->gpios + i;
367
368 if ((gpio->flags & PINMUX_FLAG_TYPE) == PINMUX_TYPE_FUNCTION)
369 pmx->functions[fn++] = gpio;
370 }
371
372 spin_unlock_irqrestore(&pmx->lock, flags);
373
374 return 0;
375 }
376
377 static int __devinit sh_pfc_pinctrl_probe(struct platform_device *pdev)
378 {
379 struct sh_pfc *pfc;
380 int ret;
381
382 if (unlikely(!sh_pfc_pmx))
383 return -ENODEV;
384
385 pfc = sh_pfc_pmx->pfc;
386
387 ret = sh_pfc_map_gpios(pfc, sh_pfc_pmx);
388 if (unlikely(ret != 0))
389 return ret;
390
391 ret = sh_pfc_map_functions(pfc, sh_pfc_pmx);
392 if (unlikely(ret != 0))
393 goto free_pads;
394
395 sh_pfc_pmx->pctl = pinctrl_register(&sh_pfc_pinctrl_desc, &pdev->dev,
396 sh_pfc_pmx);
397 if (IS_ERR(sh_pfc_pmx->pctl)) {
398 ret = PTR_ERR(sh_pfc_pmx->pctl);
399 goto free_functions;
400 }
401
402 sh_pfc_gpio_range.npins = pfc->last_gpio - pfc->first_gpio + 1;
403 sh_pfc_gpio_range.base = pfc->first_gpio;
404 sh_pfc_gpio_range.pin_base = pfc->first_gpio;
405
406 pinctrl_add_gpio_range(sh_pfc_pmx->pctl, &sh_pfc_gpio_range);
407
408 platform_set_drvdata(pdev, sh_pfc_pmx);
409
410 return 0;
411
412 free_functions:
413 kfree(sh_pfc_pmx->functions);
414 free_pads:
415 kfree(sh_pfc_pmx->pads);
416 kfree(sh_pfc_pmx);
417
418 return ret;
419 }
420
421 static int __devexit sh_pfc_pinctrl_remove(struct platform_device *pdev)
422 {
423 struct sh_pfc_pinctrl *pmx = platform_get_drvdata(pdev);
424
425 pinctrl_remove_gpio_range(pmx->pctl, &sh_pfc_gpio_range);
426 pinctrl_unregister(pmx->pctl);
427
428 platform_set_drvdata(pdev, NULL);
429
430 kfree(sh_pfc_pmx->functions);
431 kfree(sh_pfc_pmx->pads);
432 kfree(sh_pfc_pmx);
433
434 return 0;
435 }
436
437 static struct platform_driver sh_pfc_pinctrl_driver = {
438 .probe = sh_pfc_pinctrl_probe,
439 .remove = __devexit_p(sh_pfc_pinctrl_remove),
440 .driver = {
441 .name = KBUILD_MODNAME,
442 .owner = THIS_MODULE,
443 },
444 };
445
446 static struct platform_device sh_pfc_pinctrl_device = {
447 .name = KBUILD_MODNAME,
448 .id = -1,
449 };
450
451 static int __init sh_pfc_pinctrl_init(void)
452 {
453 int rc;
454
455 rc = platform_driver_register(&sh_pfc_pinctrl_driver);
456 if (likely(!rc)) {
457 rc = platform_device_register(&sh_pfc_pinctrl_device);
458 if (unlikely(rc))
459 platform_driver_unregister(&sh_pfc_pinctrl_driver);
460 }
461
462 return rc;
463 }
464
465 static void __exit sh_pfc_pinctrl_exit(void)
466 {
467 platform_driver_unregister(&sh_pfc_pinctrl_driver);
468 }
469
470 subsys_initcall(sh_pfc_pinctrl_init);
471 module_exit(sh_pfc_pinctrl_exit);