blob: f0fb98d252e89f961117ffec9e9180efc4fced00 [file] [log] [blame]
Linus Walleij2744e8a2011-05-02 20:50:54 +02001/*
2 * Core driver for the pin muxing portions of the pin control subsystem
3 *
Linus Walleije93bcee2012-02-09 07:23:28 +01004 * Copyright (C) 2011-2012 ST-Ericsson SA
Linus Walleij2744e8a2011-05-02 20:50:54 +02005 * Written on behalf of Linaro for ST-Ericsson
6 * Based on bits of regulator core, gpio core and clk core
7 *
8 * Author: Linus Walleij <linus.walleij@linaro.org>
9 *
Stephen Warren7ecdb162012-03-02 13:05:45 -070010 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
11 *
Linus Walleij2744e8a2011-05-02 20:50:54 +020012 * License terms: GNU General Public License (GPL) version 2
13 */
14#define pr_fmt(fmt) "pinmux core: " fmt
15
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/init.h>
19#include <linux/device.h>
20#include <linux/slab.h>
21#include <linux/radix-tree.h>
22#include <linux/err.h>
23#include <linux/list.h>
Linus Walleij97607d12011-11-29 12:52:39 +010024#include <linux/string.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020025#include <linux/sysfs.h>
26#include <linux/debugfs.h>
27#include <linux/seq_file.h>
28#include <linux/pinctrl/machine.h>
29#include <linux/pinctrl/pinmux.h>
30#include "core.h"
Linus Walleijbefe5bd2012-02-09 19:47:48 +010031#include "pinmux.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020032
Stephen Warren03665e02012-02-19 23:45:45 -070033int pinmux_check_ops(struct pinctrl_dev *pctldev)
34{
35 const struct pinmux_ops *ops = pctldev->desc->pmxops;
36 unsigned selector = 0;
37
38 /* Check that we implement required operations */
39 if (!ops->list_functions ||
40 !ops->get_function_name ||
41 !ops->get_function_groups ||
42 !ops->enable ||
43 !ops->disable)
44 return -EINVAL;
45
46 /* Check that all functions registered have names */
47 while (ops->list_functions(pctldev, selector) >= 0) {
48 const char *fname = ops->get_function_name(pctldev,
49 selector);
50 if (!fname) {
51 pr_err("pinmux ops has no name for function%u\n",
52 selector);
53 return -EINVAL;
54 }
55 selector++;
56 }
57
58 return 0;
59}
60
Linus Walleij2744e8a2011-05-02 20:50:54 +020061/**
Linus Walleij2744e8a2011-05-02 20:50:54 +020062 * pin_request() - request a single pin to be muxed in, typically for GPIO
63 * @pin: the pin number in the global pin space
Stephen Warren3cc70ed2012-02-19 23:45:44 -070064 * @owner: a representation of the owner of this pin; typically the device
65 * name that controls its mux function, or the requested GPIO name
Linus Walleij2744e8a2011-05-02 20:50:54 +020066 * @gpio_range: the range matching the GPIO pin if this is a request for a
67 * single GPIO pin
68 */
69static int pin_request(struct pinctrl_dev *pctldev,
Stephen Warren3cc70ed2012-02-19 23:45:44 -070070 int pin, const char *owner,
Linus Walleij2744e8a2011-05-02 20:50:54 +020071 struct pinctrl_gpio_range *gpio_range)
72{
73 struct pin_desc *desc;
74 const struct pinmux_ops *ops = pctldev->desc->pmxops;
75 int status = -EINVAL;
76
Stephen Warren3cc70ed2012-02-19 23:45:44 -070077 dev_dbg(pctldev->dev, "request pin %d for %s\n", pin, owner);
Linus Walleij2744e8a2011-05-02 20:50:54 +020078
Linus Walleij2744e8a2011-05-02 20:50:54 +020079 desc = pin_desc_get(pctldev, pin);
80 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -070081 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +020082 "pin is not registered so it cannot be requested\n");
83 goto out;
84 }
85
Stephen Warren3cc70ed2012-02-19 23:45:44 -070086 if (desc->owner && strcmp(desc->owner, owner)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -070087 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +020088 "pin already requested\n");
89 goto out;
90 }
Stephen Warren3cc70ed2012-02-19 23:45:44 -070091 desc->owner = owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +020092
93 /* Let each pin increase references to this module */
94 if (!try_module_get(pctldev->owner)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -070095 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +020096 "could not increase module refcount for pin %d\n",
97 pin);
98 status = -EINVAL;
99 goto out_free_pin;
100 }
101
102 /*
103 * If there is no kind of request function for the pin we just assume
104 * we got it by default and proceed.
105 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600106 if (gpio_range && ops->gpio_request_enable)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200107 /* This requests and enables a single GPIO pin */
108 status = ops->gpio_request_enable(pctldev, gpio_range, pin);
109 else if (ops->request)
110 status = ops->request(pctldev, pin);
111 else
112 status = 0;
113
114 if (status)
Uwe Kleine-Königf9d41d72012-01-19 22:42:48 +0100115 dev_err(pctldev->dev, "->request on device %s failed for pin %d\n",
Linus Walleij2744e8a2011-05-02 20:50:54 +0200116 pctldev->desc->name, pin);
117out_free_pin:
Stephen Warren57b676f2012-03-02 13:05:44 -0700118 if (status)
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700119 desc->owner = NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200120out:
121 if (status)
Stephen Warren51cd24e2011-12-09 16:59:05 -0700122 dev_err(pctldev->dev, "pin-%d (%s) status %d\n",
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700123 pin, owner, status);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200124
125 return status;
126}
127
128/**
129 * pin_free() - release a single muxed in pin so something else can be muxed
130 * @pctldev: pin controller device handling this pin
131 * @pin: the pin to free
Stephen Warren3712a3c2011-10-21 12:25:53 -0600132 * @gpio_range: the range matching the GPIO pin if this is a request for a
133 * single GPIO pin
Linus Walleij336cdba02011-11-10 09:27:41 +0100134 *
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700135 * This function returns a pointer to the previous owner. This is used
136 * for callers that dynamically allocate an owner name so it can be freed
Linus Walleij336cdba02011-11-10 09:27:41 +0100137 * once the pin is free. This is done for GPIO request functions.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200138 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600139static const char *pin_free(struct pinctrl_dev *pctldev, int pin,
140 struct pinctrl_gpio_range *gpio_range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200141{
142 const struct pinmux_ops *ops = pctldev->desc->pmxops;
143 struct pin_desc *desc;
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700144 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200145
146 desc = pin_desc_get(pctldev, pin);
147 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700148 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200149 "pin is not registered so it cannot be freed\n");
Stephen Warren3712a3c2011-10-21 12:25:53 -0600150 return NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200151 }
152
Stephen Warren3712a3c2011-10-21 12:25:53 -0600153 /*
154 * If there is no kind of request function for the pin we just assume
155 * we got it by default and proceed.
156 */
157 if (gpio_range && ops->gpio_disable_free)
158 ops->gpio_disable_free(pctldev, gpio_range, pin);
159 else if (ops->free)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200160 ops->free(pctldev, pin);
161
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700162 owner = desc->owner;
163 desc->owner = NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200164 module_put(pctldev->owner);
Stephen Warren3712a3c2011-10-21 12:25:53 -0600165
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700166 return owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200167}
168
169/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100170 * pinmux_request_gpio() - request pinmuxing for a GPIO pin
171 * @pctldev: pin controller device affected
172 * @pin: the pin to mux in for GPIO
173 * @range: the applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200174 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100175int pinmux_request_gpio(struct pinctrl_dev *pctldev,
176 struct pinctrl_gpio_range *range,
177 unsigned pin, unsigned gpio)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200178{
179 char gpiostr[16];
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700180 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200181 int ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200182
183 /* Conjure some name stating what chip and pin this is taken by */
184 snprintf(gpiostr, 15, "%s:%d", range->name, gpio);
185
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700186 owner = kstrdup(gpiostr, GFP_KERNEL);
187 if (!owner)
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600188 return -EINVAL;
189
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700190 ret = pin_request(pctldev, pin, owner, range);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600191 if (ret < 0)
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700192 kfree(owner);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600193
194 return ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200195}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200196
197/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100198 * pinmux_free_gpio() - release a pin from GPIO muxing
199 * @pctldev: the pin controller device for the pin
200 * @pin: the affected currently GPIO-muxed in pin
201 * @range: applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200202 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100203void pinmux_free_gpio(struct pinctrl_dev *pctldev, unsigned pin,
204 struct pinctrl_gpio_range *range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200205{
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700206 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200207
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700208 owner = pin_free(pctldev, pin, range);
209 kfree(owner);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200210}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200211
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100212/**
213 * pinmux_gpio_direction() - set the direction of a single muxed-in GPIO pin
214 * @pctldev: the pin controller handling this pin
215 * @range: applicable GPIO range
216 * @pin: the affected GPIO pin in this controller
217 * @input: true if we set the pin as input, false for output
218 */
219int pinmux_gpio_direction(struct pinctrl_dev *pctldev,
220 struct pinctrl_gpio_range *range,
221 unsigned pin, bool input)
Linus Walleij542e7042011-11-14 10:06:22 +0100222{
Linus Walleij542e7042011-11-14 10:06:22 +0100223 const struct pinmux_ops *ops;
224 int ret;
Linus Walleij542e7042011-11-14 10:06:22 +0100225
226 ops = pctldev->desc->pmxops;
227
Linus Walleij542e7042011-11-14 10:06:22 +0100228 if (ops->gpio_set_direction)
229 ret = ops->gpio_set_direction(pctldev, range, pin, input);
230 else
231 ret = 0;
232
233 return ret;
234}
235
Stephen Warren7ecdb162012-03-02 13:05:45 -0700236static int pinmux_func_name_to_selector(struct pinctrl_dev *pctldev,
237 const char *function)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200238{
239 const struct pinmux_ops *ops = pctldev->desc->pmxops;
240 unsigned selector = 0;
241
242 /* See if this pctldev has this function */
243 while (ops->list_functions(pctldev, selector) >= 0) {
244 const char *fname = ops->get_function_name(pctldev,
245 selector);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200246
Stephen Warren7ecdb162012-03-02 13:05:45 -0700247 if (!strcmp(function, fname))
248 return selector;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200249
Linus Walleij2744e8a2011-05-02 20:50:54 +0200250 selector++;
251 }
252
253 pr_err("%s does not support function %s\n",
Stephen Warren7ecdb162012-03-02 13:05:45 -0700254 pinctrl_dev_get_name(pctldev), function);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200255 return -EINVAL;
256}
257
Stephen Warren7ecdb162012-03-02 13:05:45 -0700258int pinmux_map_to_setting(struct pinctrl_map const *map,
259 struct pinctrl_setting *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200260{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700261 struct pinctrl_dev *pctldev = setting->pctldev;
262 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
263 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
264 char const * const *groups;
265 unsigned num_groups;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200266 int ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700267 const char *group;
268 int i;
269 const unsigned *pins;
270 unsigned num_pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200271
Stephen Warren7ecdb162012-03-02 13:05:45 -0700272 setting->func_selector =
273 pinmux_func_name_to_selector(pctldev, map->function);
274 if (setting->func_selector < 0)
275 return setting->func_selector;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200276
Stephen Warren7ecdb162012-03-02 13:05:45 -0700277 ret = pmxops->get_function_groups(pctldev, setting->func_selector,
278 &groups, &num_groups);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200279 if (ret < 0)
280 return ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700281 if (!num_groups)
282 return -EINVAL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200283
Stephen Warren7ecdb162012-03-02 13:05:45 -0700284 if (map->group) {
285 bool found = false;
286 group = map->group;
287 for (i = 0; i < num_groups; i++) {
288 if (!strcmp(group, groups[i])) {
289 found = true;
290 break;
291 }
292 }
293 if (!found)
294 return -EINVAL;
295 } else {
296 group = groups[0];
297 }
298
299 setting->group_selector =
300 pinctrl_get_group_selector(pctldev, group);
301 if (setting->group_selector < 0)
302 return setting->group_selector;
303
304 ret = pctlops->get_group_pins(pctldev, setting->group_selector,
305 &pins, &num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200306 if (ret) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700307 dev_err(pctldev->dev,
308 "could not get pins for device %s group selector %d\n",
309 pinctrl_dev_get_name(pctldev), setting->group_selector);
310 return -ENODEV;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200311 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700312
313 /* Try to allocate all pins in this group, one by one */
314 for (i = 0; i < num_pins; i++) {
315 ret = pin_request(pctldev, pins[i], map->dev_name, NULL);
316 if (ret) {
317 dev_err(pctldev->dev,
318 "could not get request pin %d on device %s\n",
319 pins[i], pinctrl_dev_get_name(pctldev));
320 /* On error release all taken pins */
321 i--; /* this pin just failed */
322 for (; i >= 0; i--)
323 pin_free(pctldev, pins[i], NULL);
324 return -ENODEV;
325 }
326 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200327
328 return 0;
329}
330
Stephen Warren7ecdb162012-03-02 13:05:45 -0700331void pinmux_free_setting(struct pinctrl_setting const *setting)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100332{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700333 struct pinctrl_dev *pctldev = setting->pctldev;
334 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
335 const unsigned *pins;
336 unsigned num_pins;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100337 int ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700338 int i;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100339
Stephen Warren7ecdb162012-03-02 13:05:45 -0700340 ret = pctlops->get_group_pins(pctldev, setting->group_selector,
341 &pins, &num_pins);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100342 if (ret) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700343 dev_err(pctldev->dev,
344 "could not get pins for device %s group selector %d\n",
345 pinctrl_dev_get_name(pctldev), setting->group_selector);
346 return;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100347 }
348
Stephen Warren7ecdb162012-03-02 13:05:45 -0700349 for (i = 0; i < num_pins; i++)
350 pin_free(pctldev, pins[i], NULL);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100351}
352
Stephen Warren7ecdb162012-03-02 13:05:45 -0700353int pinmux_enable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200354{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700355 struct pinctrl_dev *pctldev = setting->pctldev;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100356 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200357
Stephen Warren7ecdb162012-03-02 13:05:45 -0700358 return ops->enable(pctldev, setting->func_selector,
359 setting->group_selector);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200360}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200361
Stephen Warren7ecdb162012-03-02 13:05:45 -0700362void pinmux_disable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200363{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700364 struct pinctrl_dev *pctldev = setting->pctldev;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100365 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200366
Stephen Warren7ecdb162012-03-02 13:05:45 -0700367 ops->disable(pctldev, setting->func_selector, setting->group_selector);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200368}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200369
Linus Walleij2744e8a2011-05-02 20:50:54 +0200370#ifdef CONFIG_DEBUG_FS
371
372/* Called from pincontrol core */
373static int pinmux_functions_show(struct seq_file *s, void *what)
374{
375 struct pinctrl_dev *pctldev = s->private;
376 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
377 unsigned func_selector = 0;
378
Stephen Warren57b676f2012-03-02 13:05:44 -0700379 mutex_lock(&pinctrl_mutex);
380
Linus Walleij2744e8a2011-05-02 20:50:54 +0200381 while (pmxops->list_functions(pctldev, func_selector) >= 0) {
382 const char *func = pmxops->get_function_name(pctldev,
383 func_selector);
384 const char * const *groups;
385 unsigned num_groups;
386 int ret;
387 int i;
388
389 ret = pmxops->get_function_groups(pctldev, func_selector,
390 &groups, &num_groups);
391 if (ret)
392 seq_printf(s, "function %s: COULD NOT GET GROUPS\n",
393 func);
394
395 seq_printf(s, "function: %s, groups = [ ", func);
396 for (i = 0; i < num_groups; i++)
397 seq_printf(s, "%s ", groups[i]);
398 seq_puts(s, "]\n");
399
400 func_selector++;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200401 }
402
Stephen Warren57b676f2012-03-02 13:05:44 -0700403 mutex_unlock(&pinctrl_mutex);
404
Linus Walleij2744e8a2011-05-02 20:50:54 +0200405 return 0;
406}
407
408static int pinmux_pins_show(struct seq_file *s, void *what)
409{
410 struct pinctrl_dev *pctldev = s->private;
Chanho Park706e8522012-01-03 16:47:50 +0900411 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200412
413 seq_puts(s, "Pinmux settings per pin\n");
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700414 seq_puts(s, "Format: pin (name): owner\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200415
Stephen Warren57b676f2012-03-02 13:05:44 -0700416 mutex_lock(&pinctrl_mutex);
417
Chanho Park706e8522012-01-03 16:47:50 +0900418 /* The pin number can be retrived from the pin controller descriptor */
419 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200420 struct pin_desc *desc;
Linus Walleij1cf94c42012-02-24 06:53:04 +0100421 bool is_hog = false;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200422
Chanho Park706e8522012-01-03 16:47:50 +0900423 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200424 desc = pin_desc_get(pctldev, pin);
Chanho Park706e8522012-01-03 16:47:50 +0900425 /* Skip if we cannot search the pin */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200426 if (desc == NULL)
427 continue;
428
Linus Walleij1cf94c42012-02-24 06:53:04 +0100429 if (desc->owner &&
430 !strcmp(desc->owner, pinctrl_dev_get_name(pctldev)))
431 is_hog = true;
432
433 seq_printf(s, "pin %d (%s): %s%s\n", pin,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200434 desc->name ? desc->name : "unnamed",
Linus Walleij1cf94c42012-02-24 06:53:04 +0100435 desc->owner ? desc->owner : "UNCLAIMED",
436 is_hog ? " (HOG)" : "");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200437 }
438
Stephen Warren57b676f2012-03-02 13:05:44 -0700439 mutex_unlock(&pinctrl_mutex);
440
Linus Walleij2744e8a2011-05-02 20:50:54 +0200441 return 0;
442}
443
Stephen Warren7ecdb162012-03-02 13:05:45 -0700444void pinmux_dbg_show(struct seq_file *s, struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200445{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700446 struct pinctrl_dev *pctldev = setting->pctldev;
447 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
448 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200449
Stephen Warren7ecdb162012-03-02 13:05:45 -0700450 seq_printf(s, "controller: %s group: %s (%u) function: %s (%u)\n",
451 pinctrl_dev_get_name(pctldev),
452 pctlops->get_group_name(pctldev, setting->group_selector),
453 setting->group_selector,
454 pmxops->get_function_name(pctldev, setting->func_selector),
455 setting->func_selector);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200456}
457
458static int pinmux_functions_open(struct inode *inode, struct file *file)
459{
460 return single_open(file, pinmux_functions_show, inode->i_private);
461}
462
463static int pinmux_pins_open(struct inode *inode, struct file *file)
464{
465 return single_open(file, pinmux_pins_show, inode->i_private);
466}
467
Linus Walleij2744e8a2011-05-02 20:50:54 +0200468static const struct file_operations pinmux_functions_ops = {
469 .open = pinmux_functions_open,
470 .read = seq_read,
471 .llseek = seq_lseek,
472 .release = single_release,
473};
474
475static const struct file_operations pinmux_pins_ops = {
476 .open = pinmux_pins_open,
477 .read = seq_read,
478 .llseek = seq_lseek,
479 .release = single_release,
480};
481
Linus Walleij2744e8a2011-05-02 20:50:54 +0200482void pinmux_init_device_debugfs(struct dentry *devroot,
483 struct pinctrl_dev *pctldev)
484{
485 debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO,
486 devroot, pctldev, &pinmux_functions_ops);
487 debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO,
488 devroot, pctldev, &pinmux_pins_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200489}
490
491#endif /* CONFIG_DEBUG_FS */