pinctrl: fix typo in header
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / drivers / pinctrl / pinconf.c
CommitLineData
ae6b4d85
LW
1/*
2 * Core driver for the pin config portions of the pin control subsystem
3 *
4 * Copyright (C) 2011 ST-Ericsson SA
5 * Written on behalf of Linaro for ST-Ericsson
6 *
7 * Author: Linus Walleij <linus.walleij@linaro.org>
8 *
9 * License terms: GNU General Public License (GPL) version 2
10 */
11#define pr_fmt(fmt) "pinconfig core: " fmt
12
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/device.h>
17#include <linux/slab.h>
18#include <linux/debugfs.h>
19#include <linux/seq_file.h>
20#include <linux/pinctrl/machine.h>
21#include <linux/pinctrl/pinctrl.h>
22#include <linux/pinctrl/pinconf.h>
23#include "core.h"
24#include "pinconf.h"
25
2b694250
SW
26int pinconf_check_ops(struct pinctrl_dev *pctldev)
27{
28 const struct pinconf_ops *ops = pctldev->desc->confops;
29
30 /* We must be able to read out pin status */
ad6e1107
JC
31 if (!ops->pin_config_get && !ops->pin_config_group_get) {
32 dev_err(pctldev->dev,
33 "pinconf must be able to read out pin status\n");
2b694250 34 return -EINVAL;
ad6e1107 35 }
2b694250 36 /* We have to be able to config the pins in SOME way */
ad6e1107
JC
37 if (!ops->pin_config_set && !ops->pin_config_group_set) {
38 dev_err(pctldev->dev,
39 "pinconf has to be able to set a pins config\n");
2b694250 40 return -EINVAL;
ad6e1107 41 }
2b694250
SW
42 return 0;
43}
44
1e2082b5
SW
45int pinconf_validate_map(struct pinctrl_map const *map, int i)
46{
47 if (!map->data.configs.group_or_pin) {
48 pr_err("failed to register map %s (%d): no group/pin given\n",
49 map->name, i);
50 return -EINVAL;
51 }
52
c95df2db 53 if (!map->data.configs.num_configs ||
1e2082b5 54 !map->data.configs.configs) {
c95df2db 55 pr_err("failed to register map %s (%d): no configs given\n",
1e2082b5
SW
56 map->name, i);
57 return -EINVAL;
58 }
59
60 return 0;
61}
62
394349f7 63int pin_config_get_for_pin(struct pinctrl_dev *pctldev, unsigned pin,
ae6b4d85
LW
64 unsigned long *config)
65{
66 const struct pinconf_ops *ops = pctldev->desc->confops;
67
68 if (!ops || !ops->pin_config_get) {
51cd24ee 69 dev_err(pctldev->dev, "cannot get pin configuration, missing "
ae6b4d85
LW
70 "pin_config_get() function in driver\n");
71 return -EINVAL;
72 }
73
74 return ops->pin_config_get(pctldev, pin, config);
75}
76
77/**
78 * pin_config_get() - get the configuration of a single pin parameter
43699dea 79 * @dev_name: name of the pin controller device for this pin
ae6b4d85
LW
80 * @name: name of the pin to get the config for
81 * @config: the config pointed to by this argument will be filled in with the
82 * current pin state, it can be used directly by drivers as a numeral, or
83 * it can be dereferenced to any struct.
84 */
43699dea 85int pin_config_get(const char *dev_name, const char *name,
ae6b4d85
LW
86 unsigned long *config)
87{
43699dea 88 struct pinctrl_dev *pctldev;
ae6b4d85
LW
89 int pin;
90
57b676f9
SW
91 mutex_lock(&pinctrl_mutex);
92
9dfac4fd 93 pctldev = get_pinctrl_dev_from_devname(dev_name);
57b676f9
SW
94 if (!pctldev) {
95 pin = -EINVAL;
96 goto unlock;
97 }
43699dea 98
ae6b4d85
LW
99 pin = pin_get_from_name(pctldev, name);
100 if (pin < 0)
57b676f9 101 goto unlock;
ae6b4d85 102
57b676f9
SW
103 pin = pin_config_get_for_pin(pctldev, pin, config);
104
105unlock:
106 mutex_unlock(&pinctrl_mutex);
107 return pin;
ae6b4d85
LW
108}
109EXPORT_SYMBOL(pin_config_get);
110
2b694250 111static int pin_config_set_for_pin(struct pinctrl_dev *pctldev, unsigned pin,
ae6b4d85
LW
112 unsigned long config)
113{
114 const struct pinconf_ops *ops = pctldev->desc->confops;
115 int ret;
116
117 if (!ops || !ops->pin_config_set) {
51cd24ee 118 dev_err(pctldev->dev, "cannot configure pin, missing "
ae6b4d85
LW
119 "config function in driver\n");
120 return -EINVAL;
121 }
122
123 ret = ops->pin_config_set(pctldev, pin, config);
124 if (ret) {
51cd24ee 125 dev_err(pctldev->dev,
ae6b4d85
LW
126 "unable to set pin configuration on pin %d\n", pin);
127 return ret;
128 }
129
130 return 0;
131}
132
133/**
134 * pin_config_set() - set the configuration of a single pin parameter
43699dea 135 * @dev_name: name of pin controller device for this pin
ae6b4d85
LW
136 * @name: name of the pin to set the config for
137 * @config: the config in this argument will contain the desired pin state, it
138 * can be used directly by drivers as a numeral, or it can be dereferenced
139 * to any struct.
140 */
43699dea 141int pin_config_set(const char *dev_name, const char *name,
ae6b4d85
LW
142 unsigned long config)
143{
43699dea 144 struct pinctrl_dev *pctldev;
57b676f9
SW
145 int pin, ret;
146
147 mutex_lock(&pinctrl_mutex);
ae6b4d85 148
9dfac4fd 149 pctldev = get_pinctrl_dev_from_devname(dev_name);
57b676f9
SW
150 if (!pctldev) {
151 ret = -EINVAL;
152 goto unlock;
153 }
43699dea 154
ae6b4d85 155 pin = pin_get_from_name(pctldev, name);
57b676f9
SW
156 if (pin < 0) {
157 ret = pin;
158 goto unlock;
159 }
160
161 ret = pin_config_set_for_pin(pctldev, pin, config);
ae6b4d85 162
57b676f9
SW
163unlock:
164 mutex_unlock(&pinctrl_mutex);
165 return ret;
ae6b4d85
LW
166}
167EXPORT_SYMBOL(pin_config_set);
168
43699dea 169int pin_config_group_get(const char *dev_name, const char *pin_group,
ae6b4d85
LW
170 unsigned long *config)
171{
43699dea
SW
172 struct pinctrl_dev *pctldev;
173 const struct pinconf_ops *ops;
57b676f9
SW
174 int selector, ret;
175
176 mutex_lock(&pinctrl_mutex);
ae6b4d85 177
9dfac4fd 178 pctldev = get_pinctrl_dev_from_devname(dev_name);
57b676f9
SW
179 if (!pctldev) {
180 ret = -EINVAL;
181 goto unlock;
182 }
43699dea
SW
183 ops = pctldev->desc->confops;
184
ae6b4d85 185 if (!ops || !ops->pin_config_group_get) {
51cd24ee 186 dev_err(pctldev->dev, "cannot get configuration for pin "
ae6b4d85
LW
187 "group, missing group config get function in "
188 "driver\n");
57b676f9
SW
189 ret = -EINVAL;
190 goto unlock;
ae6b4d85
LW
191 }
192
193 selector = pinctrl_get_group_selector(pctldev, pin_group);
57b676f9
SW
194 if (selector < 0) {
195 ret = selector;
196 goto unlock;
197 }
ae6b4d85 198
57b676f9
SW
199 ret = ops->pin_config_group_get(pctldev, selector, config);
200
201unlock:
202 mutex_unlock(&pinctrl_mutex);
203 return ret;
ae6b4d85
LW
204}
205EXPORT_SYMBOL(pin_config_group_get);
206
43699dea 207int pin_config_group_set(const char *dev_name, const char *pin_group,
ae6b4d85
LW
208 unsigned long config)
209{
43699dea
SW
210 struct pinctrl_dev *pctldev;
211 const struct pinconf_ops *ops;
212 const struct pinctrl_ops *pctlops;
ae6b4d85
LW
213 int selector;
214 const unsigned *pins;
215 unsigned num_pins;
216 int ret;
217 int i;
218
57b676f9
SW
219 mutex_lock(&pinctrl_mutex);
220
9dfac4fd 221 pctldev = get_pinctrl_dev_from_devname(dev_name);
57b676f9
SW
222 if (!pctldev) {
223 ret = -EINVAL;
224 goto unlock;
225 }
43699dea
SW
226 ops = pctldev->desc->confops;
227 pctlops = pctldev->desc->pctlops;
228
ae6b4d85 229 if (!ops || (!ops->pin_config_group_set && !ops->pin_config_set)) {
51cd24ee 230 dev_err(pctldev->dev, "cannot configure pin group, missing "
ae6b4d85 231 "config function in driver\n");
57b676f9
SW
232 ret = -EINVAL;
233 goto unlock;
ae6b4d85
LW
234 }
235
236 selector = pinctrl_get_group_selector(pctldev, pin_group);
57b676f9
SW
237 if (selector < 0) {
238 ret = selector;
239 goto unlock;
240 }
ae6b4d85
LW
241
242 ret = pctlops->get_group_pins(pctldev, selector, &pins, &num_pins);
243 if (ret) {
51cd24ee 244 dev_err(pctldev->dev, "cannot configure pin group, error "
ae6b4d85 245 "getting pins\n");
57b676f9 246 goto unlock;
ae6b4d85
LW
247 }
248
249 /*
250 * If the pin controller supports handling entire groups we use that
251 * capability.
252 */
253 if (ops->pin_config_group_set) {
254 ret = ops->pin_config_group_set(pctldev, selector, config);
255 /*
256 * If the pin controller prefer that a certain group be handled
257 * pin-by-pin as well, it returns -EAGAIN.
258 */
259 if (ret != -EAGAIN)
57b676f9 260 goto unlock;
ae6b4d85
LW
261 }
262
263 /*
264 * If the controller cannot handle entire groups, we configure each pin
265 * individually.
266 */
57b676f9
SW
267 if (!ops->pin_config_set) {
268 ret = 0;
269 goto unlock;
270 }
ae6b4d85
LW
271
272 for (i = 0; i < num_pins; i++) {
273 ret = ops->pin_config_set(pctldev, pins[i], config);
274 if (ret < 0)
57b676f9 275 goto unlock;
ae6b4d85
LW
276 }
277
57b676f9
SW
278 ret = 0;
279
280unlock:
281 mutex_unlock(&pinctrl_mutex);
282
283 return ret;
ae6b4d85
LW
284}
285EXPORT_SYMBOL(pin_config_group_set);
286
1e2082b5
SW
287int pinconf_map_to_setting(struct pinctrl_map const *map,
288 struct pinctrl_setting *setting)
289{
290 struct pinctrl_dev *pctldev = setting->pctldev;
70b36378 291 int pin;
1e2082b5
SW
292
293 switch (setting->type) {
294 case PIN_MAP_TYPE_CONFIGS_PIN:
70b36378
LW
295 pin = pin_get_from_name(pctldev,
296 map->data.configs.group_or_pin);
297 if (pin < 0) {
298 dev_err(pctldev->dev, "could not map pin config for \"%s\"",
299 map->data.configs.group_or_pin);
300 return pin;
301 }
302 setting->data.configs.group_or_pin = pin;
1e2082b5
SW
303 break;
304 case PIN_MAP_TYPE_CONFIGS_GROUP:
70b36378
LW
305 pin = pinctrl_get_group_selector(pctldev,
306 map->data.configs.group_or_pin);
307 if (pin < 0) {
308 dev_err(pctldev->dev, "could not map group config for \"%s\"",
309 map->data.configs.group_or_pin);
310 return pin;
311 }
312 setting->data.configs.group_or_pin = pin;
1e2082b5
SW
313 break;
314 default:
315 return -EINVAL;
316 }
317
318 setting->data.configs.num_configs = map->data.configs.num_configs;
319 setting->data.configs.configs = map->data.configs.configs;
320
321 return 0;
322}
323
324void pinconf_free_setting(struct pinctrl_setting const *setting)
325{
326}
327
328int pinconf_apply_setting(struct pinctrl_setting const *setting)
329{
330 struct pinctrl_dev *pctldev = setting->pctldev;
331 const struct pinconf_ops *ops = pctldev->desc->confops;
332 int i, ret;
333
334 if (!ops) {
335 dev_err(pctldev->dev, "missing confops\n");
336 return -EINVAL;
337 }
338
339 switch (setting->type) {
340 case PIN_MAP_TYPE_CONFIGS_PIN:
341 if (!ops->pin_config_set) {
342 dev_err(pctldev->dev, "missing pin_config_set op\n");
343 return -EINVAL;
344 }
345 for (i = 0; i < setting->data.configs.num_configs; i++) {
346 ret = ops->pin_config_set(pctldev,
347 setting->data.configs.group_or_pin,
348 setting->data.configs.configs[i]);
349 if (ret < 0) {
350 dev_err(pctldev->dev,
351 "pin_config_set op failed for pin %d config %08lx\n",
352 setting->data.configs.group_or_pin,
353 setting->data.configs.configs[i]);
354 return ret;
355 }
356 }
357 break;
358 case PIN_MAP_TYPE_CONFIGS_GROUP:
359 if (!ops->pin_config_group_set) {
360 dev_err(pctldev->dev,
361 "missing pin_config_group_set op\n");
362 return -EINVAL;
363 }
364 for (i = 0; i < setting->data.configs.num_configs; i++) {
365 ret = ops->pin_config_group_set(pctldev,
366 setting->data.configs.group_or_pin,
367 setting->data.configs.configs[i]);
368 if (ret < 0) {
369 dev_err(pctldev->dev,
370 "pin_config_group_set op failed for group %d config %08lx\n",
371 setting->data.configs.group_or_pin,
372 setting->data.configs.configs[i]);
373 return ret;
374 }
375 }
376 break;
377 default:
378 return -EINVAL;
379 }
380
381 return 0;
382}
383
ae6b4d85
LW
384#ifdef CONFIG_DEBUG_FS
385
1e2082b5
SW
386void pinconf_show_map(struct seq_file *s, struct pinctrl_map const *map)
387{
6cb41587
SW
388 struct pinctrl_dev *pctldev;
389 const struct pinconf_ops *confops;
1e2082b5
SW
390 int i;
391
6cb41587
SW
392 pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
393 if (pctldev)
394 confops = pctldev->desc->confops;
395 else
396 confops = NULL;
397
1e2082b5
SW
398 switch (map->type) {
399 case PIN_MAP_TYPE_CONFIGS_PIN:
400 seq_printf(s, "pin ");
401 break;
402 case PIN_MAP_TYPE_CONFIGS_GROUP:
403 seq_printf(s, "group ");
404 break;
405 default:
406 break;
407 }
408
409 seq_printf(s, "%s\n", map->data.configs.group_or_pin);
410
6cb41587
SW
411 for (i = 0; i < map->data.configs.num_configs; i++) {
412 seq_printf(s, "config ");
413 if (confops && confops->pin_config_config_dbg_show)
414 confops->pin_config_config_dbg_show(pctldev, s,
415 map->data.configs.configs[i]);
416 else
417 seq_printf(s, "%08lx", map->data.configs.configs[i]);
418 seq_printf(s, "\n");
419 }
1e2082b5
SW
420}
421
422void pinconf_show_setting(struct seq_file *s,
423 struct pinctrl_setting const *setting)
424{
425 struct pinctrl_dev *pctldev = setting->pctldev;
426 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
6cb41587 427 const struct pinconf_ops *confops = pctldev->desc->confops;
1e2082b5
SW
428 struct pin_desc *desc;
429 int i;
430
431 switch (setting->type) {
432 case PIN_MAP_TYPE_CONFIGS_PIN:
433 desc = pin_desc_get(setting->pctldev,
434 setting->data.configs.group_or_pin);
435 seq_printf(s, "pin %s (%d)",
436 desc->name ? desc->name : "unnamed",
437 setting->data.configs.group_or_pin);
438 break;
439 case PIN_MAP_TYPE_CONFIGS_GROUP:
440 seq_printf(s, "group %s (%d)",
441 pctlops->get_group_name(pctldev,
442 setting->data.configs.group_or_pin),
443 setting->data.configs.group_or_pin);
444 break;
445 default:
446 break;
447 }
448
449 /*
450 * FIXME: We should really get the pin controler to dump the config
451 * values, so they can be decoded to something meaningful.
452 */
6cb41587
SW
453 for (i = 0; i < setting->data.configs.num_configs; i++) {
454 seq_printf(s, " ");
455 if (confops && confops->pin_config_config_dbg_show)
456 confops->pin_config_config_dbg_show(pctldev, s,
457 setting->data.configs.configs[i]);
458 else
459 seq_printf(s, "%08lx",
460 setting->data.configs.configs[i]);
461 }
1e2082b5
SW
462
463 seq_printf(s, "\n");
464}
465
ae6b4d85
LW
466static void pinconf_dump_pin(struct pinctrl_dev *pctldev,
467 struct seq_file *s, int pin)
468{
469 const struct pinconf_ops *ops = pctldev->desc->confops;
470
394349f7
LW
471 /* no-op when not using generic pin config */
472 pinconf_generic_dump_pin(pctldev, s, pin);
ae6b4d85
LW
473 if (ops && ops->pin_config_dbg_show)
474 ops->pin_config_dbg_show(pctldev, s, pin);
475}
476
477static int pinconf_pins_show(struct seq_file *s, void *what)
478{
479 struct pinctrl_dev *pctldev = s->private;
ad8bb720 480 const struct pinconf_ops *ops = pctldev->desc->confops;
706e8520 481 unsigned i, pin;
ae6b4d85 482
ad8bb720
DA
483 if (!ops || !ops->pin_config_get)
484 return 0;
485
ae6b4d85 486 seq_puts(s, "Pin config settings per pin\n");
2aeefe02 487 seq_puts(s, "Format: pin (name): configs\n");
ae6b4d85 488
57b676f9
SW
489 mutex_lock(&pinctrl_mutex);
490
706e8520 491 /* The pin number can be retrived from the pin controller descriptor */
546edd83 492 for (i = 0; i < pctldev->desc->npins; i++) {
ae6b4d85
LW
493 struct pin_desc *desc;
494
706e8520 495 pin = pctldev->desc->pins[i].number;
ae6b4d85 496 desc = pin_desc_get(pctldev, pin);
706e8520 497 /* Skip if we cannot search the pin */
ae6b4d85
LW
498 if (desc == NULL)
499 continue;
500
501 seq_printf(s, "pin %d (%s):", pin,
502 desc->name ? desc->name : "unnamed");
503
504 pinconf_dump_pin(pctldev, s, pin);
505
506 seq_printf(s, "\n");
507 }
508
57b676f9
SW
509 mutex_unlock(&pinctrl_mutex);
510
ae6b4d85
LW
511 return 0;
512}
513
514static void pinconf_dump_group(struct pinctrl_dev *pctldev,
515 struct seq_file *s, unsigned selector,
516 const char *gname)
517{
518 const struct pinconf_ops *ops = pctldev->desc->confops;
519
394349f7
LW
520 /* no-op when not using generic pin config */
521 pinconf_generic_dump_group(pctldev, s, gname);
ae6b4d85
LW
522 if (ops && ops->pin_config_group_dbg_show)
523 ops->pin_config_group_dbg_show(pctldev, s, selector);
524}
525
526static int pinconf_groups_show(struct seq_file *s, void *what)
527{
528 struct pinctrl_dev *pctldev = s->private;
529 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
530 const struct pinconf_ops *ops = pctldev->desc->confops;
d1e90e9e 531 unsigned ngroups = pctlops->get_groups_count(pctldev);
ae6b4d85
LW
532 unsigned selector = 0;
533
534 if (!ops || !ops->pin_config_group_get)
535 return 0;
536
537 seq_puts(s, "Pin config settings per pin group\n");
2aeefe02 538 seq_puts(s, "Format: group (name): configs\n");
ae6b4d85 539
d1e90e9e 540 while (selector < ngroups) {
ae6b4d85
LW
541 const char *gname = pctlops->get_group_name(pctldev, selector);
542
543 seq_printf(s, "%u (%s):", selector, gname);
544 pinconf_dump_group(pctldev, s, selector, gname);
f7b9006f
SW
545 seq_printf(s, "\n");
546
ae6b4d85
LW
547 selector++;
548 }
549
550 return 0;
551}
552
553static int pinconf_pins_open(struct inode *inode, struct file *file)
554{
555 return single_open(file, pinconf_pins_show, inode->i_private);
556}
557
558static int pinconf_groups_open(struct inode *inode, struct file *file)
559{
560 return single_open(file, pinconf_groups_show, inode->i_private);
561}
562
563static const struct file_operations pinconf_pins_ops = {
564 .open = pinconf_pins_open,
565 .read = seq_read,
566 .llseek = seq_lseek,
567 .release = single_release,
568};
569
570static const struct file_operations pinconf_groups_ops = {
571 .open = pinconf_groups_open,
572 .read = seq_read,
573 .llseek = seq_lseek,
574 .release = single_release,
575};
576
6f9e41f4
LM
577/* 32bit read/write ressources */
578#define MAX_NAME_LEN 16
579char dbg_pinname[MAX_NAME_LEN]; /* shared: name of the state of the pin*/
580char dbg_state_name[MAX_NAME_LEN]; /* shared: state of the pin*/
581static u32 dbg_config; /* shared: config to be read/set for the pin & state*/
582
583static int pinconf_dbg_pinname_print(struct seq_file *s, void *d)
584{
585 if (strlen(dbg_pinname))
586 seq_printf(s, "%s\n", dbg_pinname);
587 else
588 seq_printf(s, "No pin name set\n");
589 return 0;
590}
591
592static int pinconf_dbg_pinname_open(struct inode *inode, struct file *file)
593{
594 return single_open(file, pinconf_dbg_pinname_print, inode->i_private);
595}
596
597static int pinconf_dbg_pinname_write(struct file *file,
598 const char __user *user_buf, size_t count, loff_t *ppos)
599{
600 int err;
601
602 if (count > MAX_NAME_LEN)
603 return -EINVAL;
604
605 err = sscanf(user_buf, "%15s", dbg_pinname);
606
607 if (err != 1)
608 return -EINVAL;
609
610 return count;
611}
612
613static const struct file_operations pinconf_dbg_pinname_fops = {
614 .open = pinconf_dbg_pinname_open,
615 .write = pinconf_dbg_pinname_write,
616 .read = seq_read,
617 .llseek = seq_lseek,
618 .release = single_release,
619 .owner = THIS_MODULE,
620};
621
622static int pinconf_dbg_state_print(struct seq_file *s, void *d)
623{
624 if (strlen(dbg_state_name))
625 seq_printf(s, "%s\n", dbg_pinname);
626 else
627 seq_printf(s, "No pin state set\n");
628 return 0;
629}
630
631static int pinconf_dbg_state_open(struct inode *inode, struct file *file)
632{
633 return single_open(file, pinconf_dbg_state_print, inode->i_private);
634}
635
636static int pinconf_dbg_state_write(struct file *file,
637 const char __user *user_buf, size_t count, loff_t *ppos)
638{
639 int err;
640
641 if (count > MAX_NAME_LEN)
642 return -EINVAL;
643
644 err = sscanf(user_buf, "%15s", dbg_state_name);
645
646 if (err != 1)
647 return -EINVAL;
648
649 return count;
650}
651
652static const struct file_operations pinconf_dbg_pinstate_fops = {
653 .open = pinconf_dbg_state_open,
654 .write = pinconf_dbg_state_write,
655 .read = seq_read,
656 .llseek = seq_lseek,
657 .release = single_release,
658 .owner = THIS_MODULE,
659};
660
661/**
662 * pinconf_dbg_config_print() - display the pinctrl config from the pinctrl
663 * map, of a pin/state pair based on pinname and state that have been
664 * selected with the debugfs entries pinconf-name and pinconf-state
665 * @s: contains the 32bits config to be written
666 * @d: not used
667 */
668static int pinconf_dbg_config_print(struct seq_file *s, void *d)
669{
670 struct pinctrl_maps *maps_node;
671 struct pinctrl_map const *map;
672 struct pinctrl_dev *pctldev = NULL;
022ab148 673 const struct pinconf_ops *confops = NULL;
6f9e41f4
LM
674 int i, j;
675 bool found = false;
676
677 mutex_lock(&pinctrl_mutex);
678
679 /* Parse the pinctrl map and look for the elected pin/state */
680 for_each_maps(maps_node, i, map) {
681 if (map->type != PIN_MAP_TYPE_CONFIGS_PIN)
682 continue;
683
684 if (strncmp(map->name, dbg_state_name, MAX_NAME_LEN) > 0)
685 continue;
686
687 for (j = 0; j < map->data.configs.num_configs; j++) {
688 if (0 == strncmp(map->data.configs.group_or_pin,
689 dbg_pinname, MAX_NAME_LEN)) {
690 /* We found the right pin / state, read the
691 * config and store the pctldev */
692 dbg_config = map->data.configs.configs[j];
693 pctldev = get_pinctrl_dev_from_devname
694 (map->ctrl_dev_name);
695 found = true;
696 break;
697 }
698 }
699 }
700
701 mutex_unlock(&pinctrl_mutex);
702
703 if (found) {
704 seq_printf(s, "Config of %s in state %s: 0x%08X\n", dbg_pinname,
705 dbg_state_name, dbg_config);
706
707 if (pctldev)
708 confops = pctldev->desc->confops;
709
710 if (confops && confops->pin_config_config_dbg_show)
711 confops->pin_config_config_dbg_show(pctldev,
712 s, dbg_config);
713 } else {
714 seq_printf(s, "No pin found for defined name/state\n");
715 }
716
717 return 0;
718}
719
720static int pinconf_dbg_config_open(struct inode *inode, struct file *file)
721{
722 return single_open(file, pinconf_dbg_config_print, inode->i_private);
723}
724
725/**
726 * pinconf_dbg_config_write() - overwrite the pinctrl config in thepinctrl
727 * map, of a pin/state pair based on pinname and state that have been
728 * selected with the debugfs entries pinconf-name and pinconf-state
729 */
730static int pinconf_dbg_config_write(struct file *file,
731 const char __user *user_buf, size_t count, loff_t *ppos)
732{
733 int err;
734 unsigned long config;
735 struct pinctrl_maps *maps_node;
736 struct pinctrl_map const *map;
737 int i, j;
738
739 err = kstrtoul_from_user(user_buf, count, 0, &config);
740
741 if (err)
742 return err;
743
744 dbg_config = config;
745
746 mutex_lock(&pinctrl_mutex);
747
748 /* Parse the pinctrl map and look for the selected pin/state */
749 for_each_maps(maps_node, i, map) {
750 if (map->type != PIN_MAP_TYPE_CONFIGS_PIN)
751 continue;
752
753 if (strncmp(map->name, dbg_state_name, MAX_NAME_LEN) > 0)
754 continue;
755
756 /* we found the right pin / state, so overwrite config */
757 for (j = 0; j < map->data.configs.num_configs; j++) {
758 if (strncmp(map->data.configs.group_or_pin, dbg_pinname,
759 MAX_NAME_LEN) == 0)
760 map->data.configs.configs[j] = dbg_config;
761 }
762 }
763
764 mutex_unlock(&pinctrl_mutex);
765
766 return count;
767}
768
769static const struct file_operations pinconf_dbg_pinconfig_fops = {
770 .open = pinconf_dbg_config_open,
771 .write = pinconf_dbg_config_write,
772 .read = seq_read,
773 .llseek = seq_lseek,
774 .release = single_release,
775 .owner = THIS_MODULE,
776};
777
ae6b4d85
LW
778void pinconf_init_device_debugfs(struct dentry *devroot,
779 struct pinctrl_dev *pctldev)
780{
781 debugfs_create_file("pinconf-pins", S_IFREG | S_IRUGO,
782 devroot, pctldev, &pinconf_pins_ops);
783 debugfs_create_file("pinconf-groups", S_IFREG | S_IRUGO,
784 devroot, pctldev, &pinconf_groups_ops);
6f9e41f4
LM
785 debugfs_create_file("pinconf-name", (S_IRUGO | S_IWUSR | S_IWGRP),
786 devroot, pctldev, &pinconf_dbg_pinname_fops);
787 debugfs_create_file("pinconf-state", (S_IRUGO | S_IWUSR | S_IWGRP),
788 devroot, pctldev, &pinconf_dbg_pinstate_fops);
789 debugfs_create_file("pinconf-config", (S_IRUGO | S_IWUSR | S_IWGRP),
790 devroot, pctldev, &pinconf_dbg_pinconfig_fops);
ae6b4d85
LW
791}
792
793#endif