blob: bcf8157ceea731d22833bcbb20792fd5a8fb8c6c [file] [log] [blame]
Linus Walleij394349f2011-11-24 18:27:15 +01001/*
2 * Core driver for the generic 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
12#define pr_fmt(fmt) "generic pinconfig core: " fmt
13
14#include <linux/kernel.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/pinctrl.h>
21#include <linux/pinctrl/pinconf.h>
22#include <linux/pinctrl/pinconf-generic.h>
23#include "core.h"
24#include "pinconf.h"
25
26#ifdef CONFIG_DEBUG_FS
27
28struct pin_config_item {
29 const enum pin_config_param param;
30 const char * const display;
31 const char * const format;
32};
33
34#define PCONFDUMP(a, b, c) { .param = a, .display = b, .format = c }
35
36struct pin_config_item conf_items[] = {
37 PCONFDUMP(PIN_CONFIG_BIAS_DISABLE, "input bias disabled", NULL),
38 PCONFDUMP(PIN_CONFIG_BIAS_HIGH_IMPEDANCE, "input bias high impedance", NULL),
39 PCONFDUMP(PIN_CONFIG_BIAS_PULL_UP, "input bias pull up", NULL),
40 PCONFDUMP(PIN_CONFIG_BIAS_PULL_DOWN, "input bias pull down", NULL),
41 PCONFDUMP(PIN_CONFIG_DRIVE_PUSH_PULL, "output drive push pull", NULL),
42 PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_DRAIN, "output drive open drain", NULL),
43 PCONFDUMP(PIN_CONFIG_DRIVE_OPEN_SOURCE, "output drive open source", NULL),
Haojian Zhuang2ccb0bc2012-11-15 16:36:33 +080044 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT_DISABLE, "input schmitt disabled", NULL),
Linus Walleij394349f2011-11-24 18:27:15 +010045 PCONFDUMP(PIN_CONFIG_INPUT_SCHMITT, "input schmitt trigger", NULL),
46 PCONFDUMP(PIN_CONFIG_INPUT_DEBOUNCE, "input debounce", "time units"),
47 PCONFDUMP(PIN_CONFIG_POWER_SOURCE, "pin power source", "selector"),
48 PCONFDUMP(PIN_CONFIG_LOW_POWER_MODE, "pin low power", "mode"),
Linus Walleij483f33f2013-01-04 17:57:40 +010049 PCONFDUMP(PIN_CONFIG_OUTPUT, "pin output", "level"),
Linus Walleij394349f2011-11-24 18:27:15 +010050};
51
52void pinconf_generic_dump_pin(struct pinctrl_dev *pctldev,
53 struct seq_file *s, unsigned pin)
54{
55 const struct pinconf_ops *ops = pctldev->desc->confops;
56 int i;
57
58 if (!ops->is_generic)
59 return;
60
61 for(i = 0; i < ARRAY_SIZE(conf_items); i++) {
62 unsigned long config;
63 int ret;
64
65 /* We want to check out this parameter */
66 config = pinconf_to_config_packed(conf_items[i].param, 0);
67 ret = pin_config_get_for_pin(pctldev, pin, &config);
68 /* These are legal errors */
69 if (ret == -EINVAL || ret == -ENOTSUPP)
70 continue;
71 if (ret) {
72 seq_printf(s, "ERROR READING CONFIG SETTING %d ", i);
73 continue;
74 }
75 /* Space between multiple configs */
76 seq_puts(s, " ");
77 seq_puts(s, conf_items[i].display);
78 /* Print unit if available */
79 if (conf_items[i].format &&
80 pinconf_to_config_argument(config) != 0)
81 seq_printf(s, " (%u %s)",
82 pinconf_to_config_argument(config),
83 conf_items[i].format);
84 }
85}
86
87void pinconf_generic_dump_group(struct pinctrl_dev *pctldev,
88 struct seq_file *s, const char *gname)
89{
90 const struct pinconf_ops *ops = pctldev->desc->confops;
91 int i;
92
93 if (!ops->is_generic)
94 return;
95
96 for(i = 0; i < ARRAY_SIZE(conf_items); i++) {
97 unsigned long config;
98 int ret;
99
100 /* We want to check out this parameter */
101 config = pinconf_to_config_packed(conf_items[i].param, 0);
102 ret = pin_config_group_get(dev_name(pctldev->dev), gname,
103 &config);
104 /* These are legal errors */
105 if (ret == -EINVAL || ret == -ENOTSUPP)
106 continue;
107 if (ret) {
108 seq_printf(s, "ERROR READING CONFIG SETTING %d ", i);
109 continue;
110 }
111 /* Space between multiple configs */
112 seq_puts(s, " ");
113 seq_puts(s, conf_items[i].display);
114 /* Print unit if available */
115 if (conf_items[i].format && config != 0)
116 seq_printf(s, " (%u %s)",
117 pinconf_to_config_argument(config),
118 conf_items[i].format);
119 }
120}
121
122#endif