blob: 220fa492c9f018508ee3be50c231bf9e6e4c4762 [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 ||
John Crispinad6e1102012-04-26 16:47:11 +020045 !ops->disable) {
46 dev_err(pctldev->dev, "pinmux ops lacks necessary functions\n");
Stephen Warren03665e02012-02-19 23:45:45 -070047 return -EINVAL;
John Crispinad6e1102012-04-26 16:47:11 +020048 }
Stephen Warren03665e02012-02-19 23:45:45 -070049 /* Check that all functions registered have names */
Dong Aishenga1d31f72012-04-06 20:18:09 +080050 nfuncs = ops->get_functions_count(pctldev);
Viresh Kumard1e90e92012-03-30 11:25:40 +053051 while (selector < nfuncs) {
Stephen Warren03665e02012-02-19 23:45:45 -070052 const char *fname = ops->get_function_name(pctldev,
53 selector);
54 if (!fname) {
Dong Aishenga1d31f72012-04-06 20:18:09 +080055 dev_err(pctldev->dev, "pinmux ops has no name for function%u\n",
Stephen Warren03665e02012-02-19 23:45:45 -070056 selector);
57 return -EINVAL;
58 }
59 selector++;
60 }
61
62 return 0;
63}
64
Stephen Warren1e2082b2012-03-02 13:05:48 -070065int pinmux_validate_map(struct pinctrl_map const *map, int i)
66{
67 if (!map->data.mux.function) {
68 pr_err("failed to register map %s (%d): no function given\n",
69 map->name, i);
70 return -EINVAL;
71 }
72
73 return 0;
74}
75
Linus Walleij2744e8a2011-05-02 20:50:54 +020076/**
Linus Walleij2744e8a2011-05-02 20:50:54 +020077 * pin_request() - request a single pin to be muxed in, typically for GPIO
78 * @pin: the pin number in the global pin space
Stephen Warren3cc70ed2012-02-19 23:45:44 -070079 * @owner: a representation of the owner of this pin; typically the device
80 * name that controls its mux function, or the requested GPIO name
Linus Walleij2744e8a2011-05-02 20:50:54 +020081 * @gpio_range: the range matching the GPIO pin if this is a request for a
82 * single GPIO pin
83 */
84static int pin_request(struct pinctrl_dev *pctldev,
Stephen Warren3cc70ed2012-02-19 23:45:44 -070085 int pin, const char *owner,
Linus Walleij2744e8a2011-05-02 20:50:54 +020086 struct pinctrl_gpio_range *gpio_range)
87{
88 struct pin_desc *desc;
89 const struct pinmux_ops *ops = pctldev->desc->pmxops;
90 int status = -EINVAL;
91
Linus Walleij2744e8a2011-05-02 20:50:54 +020092 desc = pin_desc_get(pctldev, pin);
93 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -070094 dev_err(pctldev->dev,
Stephen Warrend47053162012-05-01 11:14:15 -060095 "pin %d is not registered so it cannot be requested\n",
96 pin);
Linus Walleij2744e8a2011-05-02 20:50:54 +020097 goto out;
98 }
99
Dong Aishengd0bd8df2012-04-17 15:00:45 +0800100 dev_dbg(pctldev->dev, "request pin %d (%s) for %s\n",
101 pin, desc->name, owner);
102
Stephen Warren652162d2012-03-05 17:22:15 -0700103 if (gpio_range) {
104 /* There's no need to support multiple GPIO requests */
105 if (desc->gpio_owner) {
106 dev_err(pctldev->dev,
Stephen Warrend47053162012-05-01 11:14:15 -0600107 "pin %s already requested by %s; cannot claim for %s\n",
108 desc->name, desc->gpio_owner, owner);
Stephen Warren652162d2012-03-05 17:22:15 -0700109 goto out;
110 }
111
112 desc->gpio_owner = owner;
113 } else {
114 if (desc->mux_usecount && strcmp(desc->mux_owner, owner)) {
115 dev_err(pctldev->dev,
Stephen Warrend47053162012-05-01 11:14:15 -0600116 "pin %s already requested by %s; cannot claim for %s\n",
117 desc->name, desc->mux_owner, owner);
Stephen Warren652162d2012-03-05 17:22:15 -0700118 goto out;
119 }
120
121 desc->mux_usecount++;
122 if (desc->mux_usecount > 1)
123 return 0;
124
125 desc->mux_owner = owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200126 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700127
Linus Walleij2744e8a2011-05-02 20:50:54 +0200128 /* Let each pin increase references to this module */
129 if (!try_module_get(pctldev->owner)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700130 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200131 "could not increase module refcount for pin %d\n",
132 pin);
133 status = -EINVAL;
134 goto out_free_pin;
135 }
136
137 /*
138 * If there is no kind of request function for the pin we just assume
139 * we got it by default and proceed.
140 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600141 if (gpio_range && ops->gpio_request_enable)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200142 /* This requests and enables a single GPIO pin */
143 status = ops->gpio_request_enable(pctldev, gpio_range, pin);
144 else if (ops->request)
145 status = ops->request(pctldev, pin);
146 else
147 status = 0;
148
Stephen Warren0e3db1732012-03-02 13:05:46 -0700149 if (status) {
Stephen Warrend47053162012-05-01 11:14:15 -0600150 dev_err(pctldev->dev, "request() failed for pin %d\n", pin);
Stephen Warren0e3db1732012-03-02 13:05:46 -0700151 module_put(pctldev->owner);
152 }
153
Linus Walleij2744e8a2011-05-02 20:50:54 +0200154out_free_pin:
Stephen Warren0e3db1732012-03-02 13:05:46 -0700155 if (status) {
Stephen Warren652162d2012-03-05 17:22:15 -0700156 if (gpio_range) {
157 desc->gpio_owner = NULL;
158 } else {
159 desc->mux_usecount--;
160 if (!desc->mux_usecount)
161 desc->mux_owner = NULL;
162 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700163 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200164out:
165 if (status)
Stephen Warren51cd24e2011-12-09 16:59:05 -0700166 dev_err(pctldev->dev, "pin-%d (%s) status %d\n",
Stephen Warrend47053162012-05-01 11:14:15 -0600167 pin, owner, status);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200168
169 return status;
170}
171
172/**
173 * pin_free() - release a single muxed in pin so something else can be muxed
174 * @pctldev: pin controller device handling this pin
175 * @pin: the pin to free
Stephen Warren3712a3c2011-10-21 12:25:53 -0600176 * @gpio_range: the range matching the GPIO pin if this is a request for a
177 * single GPIO pin
Linus Walleij336cdba02011-11-10 09:27:41 +0100178 *
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700179 * This function returns a pointer to the previous owner. This is used
180 * for callers that dynamically allocate an owner name so it can be freed
Linus Walleij336cdba02011-11-10 09:27:41 +0100181 * once the pin is free. This is done for GPIO request functions.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200182 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600183static const char *pin_free(struct pinctrl_dev *pctldev, int pin,
184 struct pinctrl_gpio_range *gpio_range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200185{
186 const struct pinmux_ops *ops = pctldev->desc->pmxops;
187 struct pin_desc *desc;
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700188 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200189
190 desc = pin_desc_get(pctldev, pin);
191 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700192 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200193 "pin is not registered so it cannot be freed\n");
Stephen Warren3712a3c2011-10-21 12:25:53 -0600194 return NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200195 }
196
Stephen Warren652162d2012-03-05 17:22:15 -0700197 if (!gpio_range) {
198 desc->mux_usecount--;
199 if (desc->mux_usecount)
200 return NULL;
201 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700202
Stephen Warren3712a3c2011-10-21 12:25:53 -0600203 /*
204 * If there is no kind of request function for the pin we just assume
205 * we got it by default and proceed.
206 */
207 if (gpio_range && ops->gpio_disable_free)
208 ops->gpio_disable_free(pctldev, gpio_range, pin);
209 else if (ops->free)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200210 ops->free(pctldev, pin);
211
Stephen Warren652162d2012-03-05 17:22:15 -0700212 if (gpio_range) {
213 owner = desc->gpio_owner;
214 desc->gpio_owner = NULL;
215 } else {
216 owner = desc->mux_owner;
217 desc->mux_owner = NULL;
218 desc->mux_setting = NULL;
219 }
220
Linus Walleij2744e8a2011-05-02 20:50:54 +0200221 module_put(pctldev->owner);
Stephen Warren3712a3c2011-10-21 12:25:53 -0600222
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700223 return owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200224}
225
226/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100227 * pinmux_request_gpio() - request pinmuxing for a GPIO pin
228 * @pctldev: pin controller device affected
229 * @pin: the pin to mux in for GPIO
230 * @range: the applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200231 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100232int pinmux_request_gpio(struct pinctrl_dev *pctldev,
233 struct pinctrl_gpio_range *range,
234 unsigned pin, unsigned gpio)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200235{
236 char gpiostr[16];
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700237 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200238 int ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200239
240 /* Conjure some name stating what chip and pin this is taken by */
241 snprintf(gpiostr, 15, "%s:%d", range->name, gpio);
242
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700243 owner = kstrdup(gpiostr, GFP_KERNEL);
244 if (!owner)
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600245 return -EINVAL;
246
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700247 ret = pin_request(pctldev, pin, owner, range);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600248 if (ret < 0)
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700249 kfree(owner);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600250
251 return ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200252}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200253
254/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100255 * pinmux_free_gpio() - release a pin from GPIO muxing
256 * @pctldev: the pin controller device for the pin
257 * @pin: the affected currently GPIO-muxed in pin
258 * @range: applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200259 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100260void pinmux_free_gpio(struct pinctrl_dev *pctldev, unsigned pin,
261 struct pinctrl_gpio_range *range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200262{
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700263 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200264
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700265 owner = pin_free(pctldev, pin, range);
266 kfree(owner);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200267}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200268
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100269/**
270 * pinmux_gpio_direction() - set the direction of a single muxed-in GPIO pin
271 * @pctldev: the pin controller handling this pin
272 * @range: applicable GPIO range
273 * @pin: the affected GPIO pin in this controller
274 * @input: true if we set the pin as input, false for output
275 */
276int pinmux_gpio_direction(struct pinctrl_dev *pctldev,
277 struct pinctrl_gpio_range *range,
278 unsigned pin, bool input)
Linus Walleij542e7042011-11-14 10:06:22 +0100279{
Linus Walleij542e7042011-11-14 10:06:22 +0100280 const struct pinmux_ops *ops;
281 int ret;
Linus Walleij542e7042011-11-14 10:06:22 +0100282
283 ops = pctldev->desc->pmxops;
284
Linus Walleij542e7042011-11-14 10:06:22 +0100285 if (ops->gpio_set_direction)
286 ret = ops->gpio_set_direction(pctldev, range, pin, input);
287 else
288 ret = 0;
289
290 return ret;
291}
292
Stephen Warren7ecdb162012-03-02 13:05:45 -0700293static int pinmux_func_name_to_selector(struct pinctrl_dev *pctldev,
294 const char *function)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200295{
296 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530297 unsigned nfuncs = ops->get_functions_count(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200298 unsigned selector = 0;
299
300 /* See if this pctldev has this function */
Viresh Kumard1e90e92012-03-30 11:25:40 +0530301 while (selector < nfuncs) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200302 const char *fname = ops->get_function_name(pctldev,
303 selector);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200304
Stephen Warren7ecdb162012-03-02 13:05:45 -0700305 if (!strcmp(function, fname))
306 return selector;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200307
Linus Walleij2744e8a2011-05-02 20:50:54 +0200308 selector++;
309 }
310
311 pr_err("%s does not support function %s\n",
Stephen Warren7ecdb162012-03-02 13:05:45 -0700312 pinctrl_dev_get_name(pctldev), function);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200313 return -EINVAL;
314}
315
Stephen Warren7ecdb162012-03-02 13:05:45 -0700316int pinmux_map_to_setting(struct pinctrl_map const *map,
317 struct pinctrl_setting *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200318{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700319 struct pinctrl_dev *pctldev = setting->pctldev;
320 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
321 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
322 char const * const *groups;
323 unsigned num_groups;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200324 int ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700325 const char *group;
326 int i;
327 const unsigned *pins;
328 unsigned num_pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200329
Dong Aishengad8bb722012-04-10 12:41:34 +0800330 if (!pmxops) {
331 dev_err(pctldev->dev, "does not support mux function\n");
332 return -EINVAL;
333 }
334
John Crispin15f70e12012-04-23 19:01:58 +0200335 ret = pinmux_func_name_to_selector(pctldev, map->data.mux.function);
John Crispinad6e1102012-04-26 16:47:11 +0200336 if (ret < 0) {
337 dev_err(pctldev->dev, "invalid function %s in map table\n",
338 map->data.mux.function);
John Crispin15f70e12012-04-23 19:01:58 +0200339 return ret;
John Crispinad6e1102012-04-26 16:47:11 +0200340 }
John Crispin15f70e12012-04-23 19:01:58 +0200341 setting->data.mux.func = ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200342
Stephen Warren1e2082b2012-03-02 13:05:48 -0700343 ret = pmxops->get_function_groups(pctldev, setting->data.mux.func,
Stephen Warren7ecdb162012-03-02 13:05:45 -0700344 &groups, &num_groups);
John Crispinad6e1102012-04-26 16:47:11 +0200345 if (ret < 0) {
346 dev_err(pctldev->dev, "can't query groups for function %s\n",
347 map->data.mux.function);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200348 return ret;
John Crispinad6e1102012-04-26 16:47:11 +0200349 }
350 if (!num_groups) {
351 dev_err(pctldev->dev,
352 "function %s can't be selected on any group\n",
353 map->data.mux.function);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700354 return -EINVAL;
John Crispinad6e1102012-04-26 16:47:11 +0200355 }
Stephen Warren1e2082b2012-03-02 13:05:48 -0700356 if (map->data.mux.group) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700357 bool found = false;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700358 group = map->data.mux.group;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700359 for (i = 0; i < num_groups; i++) {
360 if (!strcmp(group, groups[i])) {
361 found = true;
362 break;
363 }
364 }
John Crispinad6e1102012-04-26 16:47:11 +0200365 if (!found) {
366 dev_err(pctldev->dev,
367 "invalid group \"%s\" for function \"%s\"\n",
368 group, map->data.mux.function);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700369 return -EINVAL;
John Crispinad6e1102012-04-26 16:47:11 +0200370 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700371 } else {
372 group = groups[0];
373 }
374
John Crispin15f70e12012-04-23 19:01:58 +0200375 ret = pinctrl_get_group_selector(pctldev, group);
John Crispinad6e1102012-04-26 16:47:11 +0200376 if (ret < 0) {
377 dev_err(pctldev->dev, "invalid group %s in map table\n",
378 map->data.mux.group);
John Crispin15f70e12012-04-23 19:01:58 +0200379 return ret;
John Crispinad6e1102012-04-26 16:47:11 +0200380 }
John Crispin15f70e12012-04-23 19:01:58 +0200381 setting->data.mux.group = ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700382
Stephen Warren1e2082b2012-03-02 13:05:48 -0700383 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group, &pins,
384 &num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200385 if (ret) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700386 dev_err(pctldev->dev,
387 "could not get pins for device %s group selector %d\n",
Stephen Warren1e2082b2012-03-02 13:05:48 -0700388 pinctrl_dev_get_name(pctldev), setting->data.mux.group);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700389 return -ENODEV;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200390 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700391
392 /* Try to allocate all pins in this group, one by one */
393 for (i = 0; i < num_pins; i++) {
394 ret = pin_request(pctldev, pins[i], map->dev_name, NULL);
395 if (ret) {
396 dev_err(pctldev->dev,
John Crispinad6e1102012-04-26 16:47:11 +0200397 "could not request pin %d on device %s\n",
Stephen Warren7ecdb162012-03-02 13:05:45 -0700398 pins[i], pinctrl_dev_get_name(pctldev));
399 /* On error release all taken pins */
400 i--; /* this pin just failed */
401 for (; i >= 0; i--)
402 pin_free(pctldev, pins[i], NULL);
403 return -ENODEV;
404 }
405 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200406
407 return 0;
408}
409
Stephen Warren7ecdb162012-03-02 13:05:45 -0700410void pinmux_free_setting(struct pinctrl_setting const *setting)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100411{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700412 struct pinctrl_dev *pctldev = setting->pctldev;
413 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
414 const unsigned *pins;
415 unsigned num_pins;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100416 int ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700417 int i;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100418
Stephen Warren1e2082b2012-03-02 13:05:48 -0700419 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
Stephen Warren7ecdb162012-03-02 13:05:45 -0700420 &pins, &num_pins);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100421 if (ret) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700422 dev_err(pctldev->dev,
423 "could not get pins for device %s group selector %d\n",
Stephen Warren1e2082b2012-03-02 13:05:48 -0700424 pinctrl_dev_get_name(pctldev), setting->data.mux.group);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700425 return;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100426 }
427
Stephen Warren7ecdb162012-03-02 13:05:45 -0700428 for (i = 0; i < num_pins; i++)
429 pin_free(pctldev, pins[i], NULL);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100430}
431
Stephen Warren7ecdb162012-03-02 13:05:45 -0700432int pinmux_enable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200433{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700434 struct pinctrl_dev *pctldev = setting->pctldev;
Stephen Warrenba110d92012-03-02 13:05:49 -0700435 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100436 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Stephen Warrenba110d92012-03-02 13:05:49 -0700437 int ret;
438 const unsigned *pins;
439 unsigned num_pins;
440 int i;
441 struct pin_desc *desc;
442
443 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
444 &pins, &num_pins);
445 if (ret) {
446 /* errors only affect debug data, so just warn */
447 dev_warn(pctldev->dev,
448 "could not get pins for group selector %d\n",
449 setting->data.mux.group);
450 num_pins = 0;
451 }
452
453 for (i = 0; i < num_pins; i++) {
454 desc = pin_desc_get(pctldev, pins[i]);
455 if (desc == NULL) {
456 dev_warn(pctldev->dev,
457 "could not get pin desc for pin %d\n",
458 pins[i]);
459 continue;
460 }
461 desc->mux_setting = &(setting->data.mux);
462 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200463
Stephen Warren1e2082b2012-03-02 13:05:48 -0700464 return ops->enable(pctldev, setting->data.mux.func,
465 setting->data.mux.group);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200466}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200467
Stephen Warren7ecdb162012-03-02 13:05:45 -0700468void pinmux_disable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200469{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700470 struct pinctrl_dev *pctldev = setting->pctldev;
Stephen Warrenba110d92012-03-02 13:05:49 -0700471 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100472 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Stephen Warrenba110d92012-03-02 13:05:49 -0700473 int ret;
474 const unsigned *pins;
475 unsigned num_pins;
476 int i;
477 struct pin_desc *desc;
478
479 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
480 &pins, &num_pins);
481 if (ret) {
482 /* errors only affect debug data, so just warn */
483 dev_warn(pctldev->dev,
484 "could not get pins for group selector %d\n",
485 setting->data.mux.group);
486 num_pins = 0;
487 }
488
489 for (i = 0; i < num_pins; i++) {
490 desc = pin_desc_get(pctldev, pins[i]);
491 if (desc == NULL) {
492 dev_warn(pctldev->dev,
493 "could not get pin desc for pin %d\n",
494 pins[i]);
495 continue;
496 }
497 desc->mux_setting = NULL;
498 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200499
Stephen Warren1e2082b2012-03-02 13:05:48 -0700500 ops->disable(pctldev, setting->data.mux.func, setting->data.mux.group);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200501}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200502
Linus Walleij2744e8a2011-05-02 20:50:54 +0200503#ifdef CONFIG_DEBUG_FS
504
505/* Called from pincontrol core */
506static int pinmux_functions_show(struct seq_file *s, void *what)
507{
508 struct pinctrl_dev *pctldev = s->private;
509 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
Dong Aishengad8bb722012-04-10 12:41:34 +0800510 unsigned nfuncs;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200511 unsigned func_selector = 0;
512
Dong Aishengad8bb722012-04-10 12:41:34 +0800513 if (!pmxops)
514 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700515
Dong Aishengad8bb722012-04-10 12:41:34 +0800516 mutex_lock(&pinctrl_mutex);
517 nfuncs = pmxops->get_functions_count(pctldev);
Viresh Kumard1e90e92012-03-30 11:25:40 +0530518 while (func_selector < nfuncs) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200519 const char *func = pmxops->get_function_name(pctldev,
520 func_selector);
521 const char * const *groups;
522 unsigned num_groups;
523 int ret;
524 int i;
525
526 ret = pmxops->get_function_groups(pctldev, func_selector,
527 &groups, &num_groups);
528 if (ret)
529 seq_printf(s, "function %s: COULD NOT GET GROUPS\n",
530 func);
531
532 seq_printf(s, "function: %s, groups = [ ", func);
533 for (i = 0; i < num_groups; i++)
534 seq_printf(s, "%s ", groups[i]);
535 seq_puts(s, "]\n");
536
537 func_selector++;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200538 }
539
Stephen Warren57b676f2012-03-02 13:05:44 -0700540 mutex_unlock(&pinctrl_mutex);
541
Linus Walleij2744e8a2011-05-02 20:50:54 +0200542 return 0;
543}
544
545static int pinmux_pins_show(struct seq_file *s, void *what)
546{
547 struct pinctrl_dev *pctldev = s->private;
Stephen Warrenba110d92012-03-02 13:05:49 -0700548 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
549 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
Chanho Park706e8522012-01-03 16:47:50 +0900550 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200551
Dong Aishengad8bb722012-04-10 12:41:34 +0800552 if (!pmxops)
553 return 0;
554
Linus Walleij2744e8a2011-05-02 20:50:54 +0200555 seq_puts(s, "Pinmux settings per pin\n");
Stephen Warren652162d2012-03-05 17:22:15 -0700556 seq_puts(s, "Format: pin (name): mux_owner gpio_owner hog?\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200557
Stephen Warren57b676f2012-03-02 13:05:44 -0700558 mutex_lock(&pinctrl_mutex);
559
Chanho Park706e8522012-01-03 16:47:50 +0900560 /* The pin number can be retrived from the pin controller descriptor */
561 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200562 struct pin_desc *desc;
Linus Walleij1cf94c42012-02-24 06:53:04 +0100563 bool is_hog = false;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200564
Chanho Park706e8522012-01-03 16:47:50 +0900565 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200566 desc = pin_desc_get(pctldev, pin);
Chanho Park706e8522012-01-03 16:47:50 +0900567 /* Skip if we cannot search the pin */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200568 if (desc == NULL)
569 continue;
570
Stephen Warren652162d2012-03-05 17:22:15 -0700571 if (desc->mux_owner &&
572 !strcmp(desc->mux_owner, pinctrl_dev_get_name(pctldev)))
Linus Walleij1cf94c42012-02-24 06:53:04 +0100573 is_hog = true;
574
Stephen Warren652162d2012-03-05 17:22:15 -0700575 seq_printf(s, "pin %d (%s): %s %s%s", pin,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200576 desc->name ? desc->name : "unnamed",
Stephen Warren652162d2012-03-05 17:22:15 -0700577 desc->mux_owner ? desc->mux_owner
578 : "(MUX UNCLAIMED)",
579 desc->gpio_owner ? desc->gpio_owner
580 : "(GPIO UNCLAIMED)",
Linus Walleij1cf94c42012-02-24 06:53:04 +0100581 is_hog ? " (HOG)" : "");
Stephen Warrenba110d92012-03-02 13:05:49 -0700582
583 if (desc->mux_setting)
584 seq_printf(s, " function %s group %s\n",
585 pmxops->get_function_name(pctldev,
586 desc->mux_setting->func),
587 pctlops->get_group_name(pctldev,
588 desc->mux_setting->group));
589 else
590 seq_printf(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200591 }
592
Stephen Warren57b676f2012-03-02 13:05:44 -0700593 mutex_unlock(&pinctrl_mutex);
594
Linus Walleij2744e8a2011-05-02 20:50:54 +0200595 return 0;
596}
597
Stephen Warren1e2082b2012-03-02 13:05:48 -0700598void pinmux_show_map(struct seq_file *s, struct pinctrl_map const *map)
599{
600 seq_printf(s, "group %s\nfunction %s\n",
601 map->data.mux.group ? map->data.mux.group : "(default)",
602 map->data.mux.function);
603}
604
605void pinmux_show_setting(struct seq_file *s,
606 struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200607{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700608 struct pinctrl_dev *pctldev = setting->pctldev;
609 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
610 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200611
Stephen Warren1e2082b2012-03-02 13:05:48 -0700612 seq_printf(s, "group: %s (%u) function: %s (%u)\n",
613 pctlops->get_group_name(pctldev, setting->data.mux.group),
614 setting->data.mux.group,
615 pmxops->get_function_name(pctldev, setting->data.mux.func),
616 setting->data.mux.func);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200617}
618
619static int pinmux_functions_open(struct inode *inode, struct file *file)
620{
621 return single_open(file, pinmux_functions_show, inode->i_private);
622}
623
624static int pinmux_pins_open(struct inode *inode, struct file *file)
625{
626 return single_open(file, pinmux_pins_show, inode->i_private);
627}
628
Linus Walleij2744e8a2011-05-02 20:50:54 +0200629static const struct file_operations pinmux_functions_ops = {
630 .open = pinmux_functions_open,
631 .read = seq_read,
632 .llseek = seq_lseek,
633 .release = single_release,
634};
635
636static const struct file_operations pinmux_pins_ops = {
637 .open = pinmux_pins_open,
638 .read = seq_read,
639 .llseek = seq_lseek,
640 .release = single_release,
641};
642
Linus Walleij2744e8a2011-05-02 20:50:54 +0200643void pinmux_init_device_debugfs(struct dentry *devroot,
644 struct pinctrl_dev *pctldev)
645{
646 debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO,
647 devroot, pctldev, &pinmux_functions_ops);
648 debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO,
649 devroot, pctldev, &pinmux_pins_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200650}
651
652#endif /* CONFIG_DEBUG_FS */