blob: c494c37bf167d2e6f8ffea19b5ae9d1037790166 [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;
Dong Aishenga1d31f72012-04-06 20:18:09 +080036 unsigned nfuncs;
Stephen Warren03665e02012-02-19 23:45:45 -070037 unsigned selector = 0;
38
39 /* Check that we implement required operations */
Dong Aishenga1d31f72012-04-06 20:18:09 +080040 if (!ops ||
41 !ops->get_functions_count ||
Stephen Warren03665e02012-02-19 23:45:45 -070042 !ops->get_function_name ||
43 !ops->get_function_groups ||
44 !ops->enable ||
45 !ops->disable)
46 return -EINVAL;
47
48 /* Check that all functions registered have names */
Dong Aishenga1d31f72012-04-06 20:18:09 +080049 nfuncs = ops->get_functions_count(pctldev);
Viresh Kumard1e90e92012-03-30 11:25:40 +053050 while (selector < nfuncs) {
Stephen Warren03665e02012-02-19 23:45:45 -070051 const char *fname = ops->get_function_name(pctldev,
52 selector);
53 if (!fname) {
Dong Aishenga1d31f72012-04-06 20:18:09 +080054 dev_err(pctldev->dev, "pinmux ops has no name for function%u\n",
Stephen Warren03665e02012-02-19 23:45:45 -070055 selector);
56 return -EINVAL;
57 }
58 selector++;
59 }
60
61 return 0;
62}
63
Stephen Warren1e2082b2012-03-02 13:05:48 -070064int pinmux_validate_map(struct pinctrl_map const *map, int i)
65{
66 if (!map->data.mux.function) {
67 pr_err("failed to register map %s (%d): no function given\n",
68 map->name, i);
69 return -EINVAL;
70 }
71
72 return 0;
73}
74
Linus Walleij2744e8a2011-05-02 20:50:54 +020075/**
Linus Walleij2744e8a2011-05-02 20:50:54 +020076 * pin_request() - request a single pin to be muxed in, typically for GPIO
77 * @pin: the pin number in the global pin space
Stephen Warren3cc70ed2012-02-19 23:45:44 -070078 * @owner: a representation of the owner of this pin; typically the device
79 * name that controls its mux function, or the requested GPIO name
Linus Walleij2744e8a2011-05-02 20:50:54 +020080 * @gpio_range: the range matching the GPIO pin if this is a request for a
81 * single GPIO pin
82 */
83static int pin_request(struct pinctrl_dev *pctldev,
Stephen Warren3cc70ed2012-02-19 23:45:44 -070084 int pin, const char *owner,
Linus Walleij2744e8a2011-05-02 20:50:54 +020085 struct pinctrl_gpio_range *gpio_range)
86{
87 struct pin_desc *desc;
88 const struct pinmux_ops *ops = pctldev->desc->pmxops;
89 int status = -EINVAL;
90
Stephen Warren3cc70ed2012-02-19 23:45:44 -070091 dev_dbg(pctldev->dev, "request pin %d for %s\n", pin, owner);
Linus Walleij2744e8a2011-05-02 20:50:54 +020092
Linus Walleij2744e8a2011-05-02 20:50:54 +020093 desc = pin_desc_get(pctldev, pin);
94 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -070095 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +020096 "pin is not registered so it cannot be requested\n");
97 goto out;
98 }
99
Stephen Warren652162d2012-03-05 17:22:15 -0700100 if (gpio_range) {
101 /* There's no need to support multiple GPIO requests */
102 if (desc->gpio_owner) {
103 dev_err(pctldev->dev,
104 "pin already requested\n");
105 goto out;
106 }
107
108 desc->gpio_owner = owner;
109 } else {
110 if (desc->mux_usecount && strcmp(desc->mux_owner, owner)) {
111 dev_err(pctldev->dev,
112 "pin already requested\n");
113 goto out;
114 }
115
116 desc->mux_usecount++;
117 if (desc->mux_usecount > 1)
118 return 0;
119
120 desc->mux_owner = owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200121 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700122
Linus Walleij2744e8a2011-05-02 20:50:54 +0200123 /* Let each pin increase references to this module */
124 if (!try_module_get(pctldev->owner)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700125 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200126 "could not increase module refcount for pin %d\n",
127 pin);
128 status = -EINVAL;
129 goto out_free_pin;
130 }
131
132 /*
133 * If there is no kind of request function for the pin we just assume
134 * we got it by default and proceed.
135 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600136 if (gpio_range && ops->gpio_request_enable)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200137 /* This requests and enables a single GPIO pin */
138 status = ops->gpio_request_enable(pctldev, gpio_range, pin);
139 else if (ops->request)
140 status = ops->request(pctldev, pin);
141 else
142 status = 0;
143
Stephen Warren0e3db1732012-03-02 13:05:46 -0700144 if (status) {
Uwe Kleine-Königf9d41d72012-01-19 22:42:48 +0100145 dev_err(pctldev->dev, "->request on device %s failed for pin %d\n",
Linus Walleij2744e8a2011-05-02 20:50:54 +0200146 pctldev->desc->name, pin);
Stephen Warren0e3db1732012-03-02 13:05:46 -0700147 module_put(pctldev->owner);
148 }
149
Linus Walleij2744e8a2011-05-02 20:50:54 +0200150out_free_pin:
Stephen Warren0e3db1732012-03-02 13:05:46 -0700151 if (status) {
Stephen Warren652162d2012-03-05 17:22:15 -0700152 if (gpio_range) {
153 desc->gpio_owner = NULL;
154 } else {
155 desc->mux_usecount--;
156 if (!desc->mux_usecount)
157 desc->mux_owner = NULL;
158 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700159 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200160out:
161 if (status)
Stephen Warren51cd24e2011-12-09 16:59:05 -0700162 dev_err(pctldev->dev, "pin-%d (%s) status %d\n",
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700163 pin, owner, status);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200164
165 return status;
166}
167
168/**
169 * pin_free() - release a single muxed in pin so something else can be muxed
170 * @pctldev: pin controller device handling this pin
171 * @pin: the pin to free
Stephen Warren3712a3c2011-10-21 12:25:53 -0600172 * @gpio_range: the range matching the GPIO pin if this is a request for a
173 * single GPIO pin
Linus Walleij336cdba02011-11-10 09:27:41 +0100174 *
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700175 * This function returns a pointer to the previous owner. This is used
176 * for callers that dynamically allocate an owner name so it can be freed
Linus Walleij336cdba02011-11-10 09:27:41 +0100177 * once the pin is free. This is done for GPIO request functions.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200178 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600179static const char *pin_free(struct pinctrl_dev *pctldev, int pin,
180 struct pinctrl_gpio_range *gpio_range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200181{
182 const struct pinmux_ops *ops = pctldev->desc->pmxops;
183 struct pin_desc *desc;
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700184 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200185
186 desc = pin_desc_get(pctldev, pin);
187 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700188 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200189 "pin is not registered so it cannot be freed\n");
Stephen Warren3712a3c2011-10-21 12:25:53 -0600190 return NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200191 }
192
Stephen Warren652162d2012-03-05 17:22:15 -0700193 if (!gpio_range) {
194 desc->mux_usecount--;
195 if (desc->mux_usecount)
196 return NULL;
197 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700198
Stephen Warren3712a3c2011-10-21 12:25:53 -0600199 /*
200 * If there is no kind of request function for the pin we just assume
201 * we got it by default and proceed.
202 */
203 if (gpio_range && ops->gpio_disable_free)
204 ops->gpio_disable_free(pctldev, gpio_range, pin);
205 else if (ops->free)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200206 ops->free(pctldev, pin);
207
Stephen Warren652162d2012-03-05 17:22:15 -0700208 if (gpio_range) {
209 owner = desc->gpio_owner;
210 desc->gpio_owner = NULL;
211 } else {
212 owner = desc->mux_owner;
213 desc->mux_owner = NULL;
214 desc->mux_setting = NULL;
215 }
216
Linus Walleij2744e8a2011-05-02 20:50:54 +0200217 module_put(pctldev->owner);
Stephen Warren3712a3c2011-10-21 12:25:53 -0600218
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700219 return owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200220}
221
222/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100223 * pinmux_request_gpio() - request pinmuxing for a GPIO pin
224 * @pctldev: pin controller device affected
225 * @pin: the pin to mux in for GPIO
226 * @range: the applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200227 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100228int pinmux_request_gpio(struct pinctrl_dev *pctldev,
229 struct pinctrl_gpio_range *range,
230 unsigned pin, unsigned gpio)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200231{
232 char gpiostr[16];
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700233 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200234 int ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200235
236 /* Conjure some name stating what chip and pin this is taken by */
237 snprintf(gpiostr, 15, "%s:%d", range->name, gpio);
238
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700239 owner = kstrdup(gpiostr, GFP_KERNEL);
240 if (!owner)
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600241 return -EINVAL;
242
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700243 ret = pin_request(pctldev, pin, owner, range);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600244 if (ret < 0)
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700245 kfree(owner);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600246
247 return ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200248}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200249
250/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100251 * pinmux_free_gpio() - release a pin from GPIO muxing
252 * @pctldev: the pin controller device for the pin
253 * @pin: the affected currently GPIO-muxed in pin
254 * @range: applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200255 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100256void pinmux_free_gpio(struct pinctrl_dev *pctldev, unsigned pin,
257 struct pinctrl_gpio_range *range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200258{
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700259 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200260
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700261 owner = pin_free(pctldev, pin, range);
262 kfree(owner);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200263}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200264
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100265/**
266 * pinmux_gpio_direction() - set the direction of a single muxed-in GPIO pin
267 * @pctldev: the pin controller handling this pin
268 * @range: applicable GPIO range
269 * @pin: the affected GPIO pin in this controller
270 * @input: true if we set the pin as input, false for output
271 */
272int pinmux_gpio_direction(struct pinctrl_dev *pctldev,
273 struct pinctrl_gpio_range *range,
274 unsigned pin, bool input)
Linus Walleij542e7042011-11-14 10:06:22 +0100275{
Linus Walleij542e7042011-11-14 10:06:22 +0100276 const struct pinmux_ops *ops;
277 int ret;
Linus Walleij542e7042011-11-14 10:06:22 +0100278
279 ops = pctldev->desc->pmxops;
280
Linus Walleij542e7042011-11-14 10:06:22 +0100281 if (ops->gpio_set_direction)
282 ret = ops->gpio_set_direction(pctldev, range, pin, input);
283 else
284 ret = 0;
285
286 return ret;
287}
288
Stephen Warren7ecdb162012-03-02 13:05:45 -0700289static int pinmux_func_name_to_selector(struct pinctrl_dev *pctldev,
290 const char *function)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200291{
292 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530293 unsigned nfuncs = ops->get_functions_count(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200294 unsigned selector = 0;
295
296 /* See if this pctldev has this function */
Viresh Kumard1e90e92012-03-30 11:25:40 +0530297 while (selector < nfuncs) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200298 const char *fname = ops->get_function_name(pctldev,
299 selector);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200300
Stephen Warren7ecdb162012-03-02 13:05:45 -0700301 if (!strcmp(function, fname))
302 return selector;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200303
Linus Walleij2744e8a2011-05-02 20:50:54 +0200304 selector++;
305 }
306
307 pr_err("%s does not support function %s\n",
Stephen Warren7ecdb162012-03-02 13:05:45 -0700308 pinctrl_dev_get_name(pctldev), function);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200309 return -EINVAL;
310}
311
Stephen Warren7ecdb162012-03-02 13:05:45 -0700312int pinmux_map_to_setting(struct pinctrl_map const *map,
313 struct pinctrl_setting *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200314{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700315 struct pinctrl_dev *pctldev = setting->pctldev;
316 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
317 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
318 char const * const *groups;
319 unsigned num_groups;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200320 int ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700321 const char *group;
322 int i;
323 const unsigned *pins;
324 unsigned num_pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200325
Dong Aishengad8bb722012-04-10 12:41:34 +0800326 if (!pmxops) {
327 dev_err(pctldev->dev, "does not support mux function\n");
328 return -EINVAL;
329 }
330
Stephen Warren1e2082b2012-03-02 13:05:48 -0700331 setting->data.mux.func =
332 pinmux_func_name_to_selector(pctldev, map->data.mux.function);
333 if (setting->data.mux.func < 0)
334 return setting->data.mux.func;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200335
Stephen Warren1e2082b2012-03-02 13:05:48 -0700336 ret = pmxops->get_function_groups(pctldev, setting->data.mux.func,
Stephen Warren7ecdb162012-03-02 13:05:45 -0700337 &groups, &num_groups);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200338 if (ret < 0)
339 return ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700340 if (!num_groups)
341 return -EINVAL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200342
Stephen Warren1e2082b2012-03-02 13:05:48 -0700343 if (map->data.mux.group) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700344 bool found = false;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700345 group = map->data.mux.group;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700346 for (i = 0; i < num_groups; i++) {
347 if (!strcmp(group, groups[i])) {
348 found = true;
349 break;
350 }
351 }
352 if (!found)
353 return -EINVAL;
354 } else {
355 group = groups[0];
356 }
357
Stephen Warren1e2082b2012-03-02 13:05:48 -0700358 setting->data.mux.group = pinctrl_get_group_selector(pctldev, group);
359 if (setting->data.mux.group < 0)
360 return setting->data.mux.group;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700361
Stephen Warren1e2082b2012-03-02 13:05:48 -0700362 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group, &pins,
363 &num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200364 if (ret) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700365 dev_err(pctldev->dev,
366 "could not get pins for device %s group selector %d\n",
Stephen Warren1e2082b2012-03-02 13:05:48 -0700367 pinctrl_dev_get_name(pctldev), setting->data.mux.group);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700368 return -ENODEV;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200369 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700370
371 /* Try to allocate all pins in this group, one by one */
372 for (i = 0; i < num_pins; i++) {
373 ret = pin_request(pctldev, pins[i], map->dev_name, NULL);
374 if (ret) {
375 dev_err(pctldev->dev,
376 "could not get request pin %d on device %s\n",
377 pins[i], pinctrl_dev_get_name(pctldev));
378 /* On error release all taken pins */
379 i--; /* this pin just failed */
380 for (; i >= 0; i--)
381 pin_free(pctldev, pins[i], NULL);
382 return -ENODEV;
383 }
384 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200385
386 return 0;
387}
388
Stephen Warren7ecdb162012-03-02 13:05:45 -0700389void pinmux_free_setting(struct pinctrl_setting const *setting)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100390{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700391 struct pinctrl_dev *pctldev = setting->pctldev;
392 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
393 const unsigned *pins;
394 unsigned num_pins;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100395 int ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700396 int i;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100397
Stephen Warren1e2082b2012-03-02 13:05:48 -0700398 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
Stephen Warren7ecdb162012-03-02 13:05:45 -0700399 &pins, &num_pins);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100400 if (ret) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700401 dev_err(pctldev->dev,
402 "could not get pins for device %s group selector %d\n",
Stephen Warren1e2082b2012-03-02 13:05:48 -0700403 pinctrl_dev_get_name(pctldev), setting->data.mux.group);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700404 return;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100405 }
406
Stephen Warren7ecdb162012-03-02 13:05:45 -0700407 for (i = 0; i < num_pins; i++)
408 pin_free(pctldev, pins[i], NULL);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100409}
410
Stephen Warren7ecdb162012-03-02 13:05:45 -0700411int pinmux_enable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200412{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700413 struct pinctrl_dev *pctldev = setting->pctldev;
Stephen Warrenba110d92012-03-02 13:05:49 -0700414 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100415 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Stephen Warrenba110d92012-03-02 13:05:49 -0700416 int ret;
417 const unsigned *pins;
418 unsigned num_pins;
419 int i;
420 struct pin_desc *desc;
421
422 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
423 &pins, &num_pins);
424 if (ret) {
425 /* errors only affect debug data, so just warn */
426 dev_warn(pctldev->dev,
427 "could not get pins for group selector %d\n",
428 setting->data.mux.group);
429 num_pins = 0;
430 }
431
432 for (i = 0; i < num_pins; i++) {
433 desc = pin_desc_get(pctldev, pins[i]);
434 if (desc == NULL) {
435 dev_warn(pctldev->dev,
436 "could not get pin desc for pin %d\n",
437 pins[i]);
438 continue;
439 }
440 desc->mux_setting = &(setting->data.mux);
441 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200442
Stephen Warren1e2082b2012-03-02 13:05:48 -0700443 return ops->enable(pctldev, setting->data.mux.func,
444 setting->data.mux.group);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200445}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200446
Stephen Warren7ecdb162012-03-02 13:05:45 -0700447void pinmux_disable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200448{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700449 struct pinctrl_dev *pctldev = setting->pctldev;
Stephen Warrenba110d92012-03-02 13:05:49 -0700450 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100451 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Stephen Warrenba110d92012-03-02 13:05:49 -0700452 int ret;
453 const unsigned *pins;
454 unsigned num_pins;
455 int i;
456 struct pin_desc *desc;
457
458 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
459 &pins, &num_pins);
460 if (ret) {
461 /* errors only affect debug data, so just warn */
462 dev_warn(pctldev->dev,
463 "could not get pins for group selector %d\n",
464 setting->data.mux.group);
465 num_pins = 0;
466 }
467
468 for (i = 0; i < num_pins; i++) {
469 desc = pin_desc_get(pctldev, pins[i]);
470 if (desc == NULL) {
471 dev_warn(pctldev->dev,
472 "could not get pin desc for pin %d\n",
473 pins[i]);
474 continue;
475 }
476 desc->mux_setting = NULL;
477 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200478
Stephen Warren1e2082b2012-03-02 13:05:48 -0700479 ops->disable(pctldev, setting->data.mux.func, setting->data.mux.group);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200480}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200481
Linus Walleij2744e8a2011-05-02 20:50:54 +0200482#ifdef CONFIG_DEBUG_FS
483
484/* Called from pincontrol core */
485static int pinmux_functions_show(struct seq_file *s, void *what)
486{
487 struct pinctrl_dev *pctldev = s->private;
488 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
Dong Aishengad8bb722012-04-10 12:41:34 +0800489 unsigned nfuncs;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200490 unsigned func_selector = 0;
491
Dong Aishengad8bb722012-04-10 12:41:34 +0800492 if (!pmxops)
493 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700494
Dong Aishengad8bb722012-04-10 12:41:34 +0800495 mutex_lock(&pinctrl_mutex);
496 nfuncs = pmxops->get_functions_count(pctldev);
Viresh Kumard1e90e92012-03-30 11:25:40 +0530497 while (func_selector < nfuncs) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200498 const char *func = pmxops->get_function_name(pctldev,
499 func_selector);
500 const char * const *groups;
501 unsigned num_groups;
502 int ret;
503 int i;
504
505 ret = pmxops->get_function_groups(pctldev, func_selector,
506 &groups, &num_groups);
507 if (ret)
508 seq_printf(s, "function %s: COULD NOT GET GROUPS\n",
509 func);
510
511 seq_printf(s, "function: %s, groups = [ ", func);
512 for (i = 0; i < num_groups; i++)
513 seq_printf(s, "%s ", groups[i]);
514 seq_puts(s, "]\n");
515
516 func_selector++;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200517 }
518
Stephen Warren57b676f2012-03-02 13:05:44 -0700519 mutex_unlock(&pinctrl_mutex);
520
Linus Walleij2744e8a2011-05-02 20:50:54 +0200521 return 0;
522}
523
524static int pinmux_pins_show(struct seq_file *s, void *what)
525{
526 struct pinctrl_dev *pctldev = s->private;
Stephen Warrenba110d92012-03-02 13:05:49 -0700527 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
528 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
Chanho Park706e8522012-01-03 16:47:50 +0900529 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200530
Dong Aishengad8bb722012-04-10 12:41:34 +0800531 if (!pmxops)
532 return 0;
533
Linus Walleij2744e8a2011-05-02 20:50:54 +0200534 seq_puts(s, "Pinmux settings per pin\n");
Stephen Warren652162d2012-03-05 17:22:15 -0700535 seq_puts(s, "Format: pin (name): mux_owner gpio_owner hog?\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200536
Stephen Warren57b676f2012-03-02 13:05:44 -0700537 mutex_lock(&pinctrl_mutex);
538
Chanho Park706e8522012-01-03 16:47:50 +0900539 /* The pin number can be retrived from the pin controller descriptor */
540 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200541 struct pin_desc *desc;
Linus Walleij1cf94c42012-02-24 06:53:04 +0100542 bool is_hog = false;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200543
Chanho Park706e8522012-01-03 16:47:50 +0900544 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200545 desc = pin_desc_get(pctldev, pin);
Chanho Park706e8522012-01-03 16:47:50 +0900546 /* Skip if we cannot search the pin */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200547 if (desc == NULL)
548 continue;
549
Stephen Warren652162d2012-03-05 17:22:15 -0700550 if (desc->mux_owner &&
551 !strcmp(desc->mux_owner, pinctrl_dev_get_name(pctldev)))
Linus Walleij1cf94c42012-02-24 06:53:04 +0100552 is_hog = true;
553
Stephen Warren652162d2012-03-05 17:22:15 -0700554 seq_printf(s, "pin %d (%s): %s %s%s", pin,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200555 desc->name ? desc->name : "unnamed",
Stephen Warren652162d2012-03-05 17:22:15 -0700556 desc->mux_owner ? desc->mux_owner
557 : "(MUX UNCLAIMED)",
558 desc->gpio_owner ? desc->gpio_owner
559 : "(GPIO UNCLAIMED)",
Linus Walleij1cf94c42012-02-24 06:53:04 +0100560 is_hog ? " (HOG)" : "");
Stephen Warrenba110d92012-03-02 13:05:49 -0700561
562 if (desc->mux_setting)
563 seq_printf(s, " function %s group %s\n",
564 pmxops->get_function_name(pctldev,
565 desc->mux_setting->func),
566 pctlops->get_group_name(pctldev,
567 desc->mux_setting->group));
568 else
569 seq_printf(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200570 }
571
Stephen Warren57b676f2012-03-02 13:05:44 -0700572 mutex_unlock(&pinctrl_mutex);
573
Linus Walleij2744e8a2011-05-02 20:50:54 +0200574 return 0;
575}
576
Stephen Warren1e2082b2012-03-02 13:05:48 -0700577void pinmux_show_map(struct seq_file *s, struct pinctrl_map const *map)
578{
579 seq_printf(s, "group %s\nfunction %s\n",
580 map->data.mux.group ? map->data.mux.group : "(default)",
581 map->data.mux.function);
582}
583
584void pinmux_show_setting(struct seq_file *s,
585 struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200586{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700587 struct pinctrl_dev *pctldev = setting->pctldev;
588 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
589 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200590
Stephen Warren1e2082b2012-03-02 13:05:48 -0700591 seq_printf(s, "group: %s (%u) function: %s (%u)\n",
592 pctlops->get_group_name(pctldev, setting->data.mux.group),
593 setting->data.mux.group,
594 pmxops->get_function_name(pctldev, setting->data.mux.func),
595 setting->data.mux.func);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200596}
597
598static int pinmux_functions_open(struct inode *inode, struct file *file)
599{
600 return single_open(file, pinmux_functions_show, inode->i_private);
601}
602
603static int pinmux_pins_open(struct inode *inode, struct file *file)
604{
605 return single_open(file, pinmux_pins_show, inode->i_private);
606}
607
Linus Walleij2744e8a2011-05-02 20:50:54 +0200608static const struct file_operations pinmux_functions_ops = {
609 .open = pinmux_functions_open,
610 .read = seq_read,
611 .llseek = seq_lseek,
612 .release = single_release,
613};
614
615static const struct file_operations pinmux_pins_ops = {
616 .open = pinmux_pins_open,
617 .read = seq_read,
618 .llseek = seq_lseek,
619 .release = single_release,
620};
621
Linus Walleij2744e8a2011-05-02 20:50:54 +0200622void pinmux_init_device_debugfs(struct dentry *devroot,
623 struct pinctrl_dev *pctldev)
624{
625 debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO,
626 devroot, pctldev, &pinmux_functions_ops);
627 debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO,
628 devroot, pctldev, &pinmux_pins_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200629}
630
631#endif /* CONFIG_DEBUG_FS */