blob: 67e08cb315c47e67329f8c4090ef2a1f503b9873 [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 ||
Linus Walleij03e9f0c2014-09-03 13:02:56 +020044 !ops->set_mux) {
John Crispinad6e1102012-04-26 16:47:11 +020045 dev_err(pctldev->dev, "pinmux ops lacks necessary functions\n");
Stephen Warren03665e02012-02-19 23:45:45 -070046 return -EINVAL;
John Crispinad6e1102012-04-26 16:47:11 +020047 }
Stephen Warren03665e02012-02-19 23:45:45 -070048 /* 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
Linus Walleij2744e8a2011-05-02 20:50:54 +020091 desc = pin_desc_get(pctldev, pin);
92 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -070093 dev_err(pctldev->dev,
Stephen Warrend4705312012-05-01 11:14:15 -060094 "pin %d is not registered so it cannot be requested\n",
95 pin);
Linus Walleij2744e8a2011-05-02 20:50:54 +020096 goto out;
97 }
98
Dong Aishengd0bd8df2012-04-17 15:00:45 +080099 dev_dbg(pctldev->dev, "request pin %d (%s) for %s\n",
100 pin, desc->name, owner);
101
Stephen Warren652162d2012-03-05 17:22:15 -0700102 if (gpio_range) {
103 /* There's no need to support multiple GPIO requests */
104 if (desc->gpio_owner) {
105 dev_err(pctldev->dev,
Stephen Warrend4705312012-05-01 11:14:15 -0600106 "pin %s already requested by %s; cannot claim for %s\n",
107 desc->name, desc->gpio_owner, owner);
Stephen Warren652162d2012-03-05 17:22:15 -0700108 goto out;
109 }
Linus Walleij8c4c2012015-05-06 14:19:13 +0200110 if (ops->strict && desc->mux_usecount &&
Sonic Zhangfa76a3d2015-04-09 11:13:07 +0800111 strcmp(desc->mux_owner, owner)) {
112 dev_err(pctldev->dev,
113 "pin %s already requested by %s; cannot claim for %s\n",
114 desc->name, desc->mux_owner, owner);
115 goto out;
116 }
Stephen Warren652162d2012-03-05 17:22:15 -0700117
118 desc->gpio_owner = owner;
119 } else {
120 if (desc->mux_usecount && strcmp(desc->mux_owner, owner)) {
121 dev_err(pctldev->dev,
Stephen Warrend4705312012-05-01 11:14:15 -0600122 "pin %s already requested by %s; cannot claim for %s\n",
123 desc->name, desc->mux_owner, owner);
Stephen Warren652162d2012-03-05 17:22:15 -0700124 goto out;
125 }
Linus Walleij8c4c2012015-05-06 14:19:13 +0200126 if (ops->strict && desc->gpio_owner) {
Sonic Zhangfa76a3d2015-04-09 11:13:07 +0800127 dev_err(pctldev->dev,
128 "pin %s already requested by %s; cannot claim for %s\n",
129 desc->name, desc->gpio_owner, owner);
130 goto out;
131 }
Stephen Warren652162d2012-03-05 17:22:15 -0700132
133 desc->mux_usecount++;
134 if (desc->mux_usecount > 1)
135 return 0;
136
137 desc->mux_owner = owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200138 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700139
Linus Walleij2744e8a2011-05-02 20:50:54 +0200140 /* Let each pin increase references to this module */
141 if (!try_module_get(pctldev->owner)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700142 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200143 "could not increase module refcount for pin %d\n",
144 pin);
145 status = -EINVAL;
146 goto out_free_pin;
147 }
148
149 /*
150 * If there is no kind of request function for the pin we just assume
151 * we got it by default and proceed.
152 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600153 if (gpio_range && ops->gpio_request_enable)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200154 /* This requests and enables a single GPIO pin */
155 status = ops->gpio_request_enable(pctldev, gpio_range, pin);
156 else if (ops->request)
157 status = ops->request(pctldev, pin);
158 else
159 status = 0;
160
Stephen Warren0e3db1732012-03-02 13:05:46 -0700161 if (status) {
Stephen Warrend4705312012-05-01 11:14:15 -0600162 dev_err(pctldev->dev, "request() failed for pin %d\n", pin);
Stephen Warren0e3db1732012-03-02 13:05:46 -0700163 module_put(pctldev->owner);
164 }
165
Linus Walleij2744e8a2011-05-02 20:50:54 +0200166out_free_pin:
Stephen Warren0e3db1732012-03-02 13:05:46 -0700167 if (status) {
Stephen Warren652162d2012-03-05 17:22:15 -0700168 if (gpio_range) {
169 desc->gpio_owner = NULL;
170 } else {
171 desc->mux_usecount--;
172 if (!desc->mux_usecount)
173 desc->mux_owner = NULL;
174 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700175 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200176out:
177 if (status)
Stephen Warren51cd24e2011-12-09 16:59:05 -0700178 dev_err(pctldev->dev, "pin-%d (%s) status %d\n",
Stephen Warrend4705312012-05-01 11:14:15 -0600179 pin, owner, status);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200180
181 return status;
182}
183
184/**
185 * pin_free() - release a single muxed in pin so something else can be muxed
186 * @pctldev: pin controller device handling this pin
187 * @pin: the pin to free
Stephen Warren3712a3c2011-10-21 12:25:53 -0600188 * @gpio_range: the range matching the GPIO pin if this is a request for a
189 * single GPIO pin
Linus Walleij336cdba02011-11-10 09:27:41 +0100190 *
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700191 * This function returns a pointer to the previous owner. This is used
192 * for callers that dynamically allocate an owner name so it can be freed
Linus Walleij336cdba02011-11-10 09:27:41 +0100193 * once the pin is free. This is done for GPIO request functions.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200194 */
Stephen Warren3712a3c2011-10-21 12:25:53 -0600195static const char *pin_free(struct pinctrl_dev *pctldev, int pin,
196 struct pinctrl_gpio_range *gpio_range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200197{
198 const struct pinmux_ops *ops = pctldev->desc->pmxops;
199 struct pin_desc *desc;
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700200 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200201
202 desc = pin_desc_get(pctldev, pin);
203 if (desc == NULL) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700204 dev_err(pctldev->dev,
Linus Walleij2744e8a2011-05-02 20:50:54 +0200205 "pin is not registered so it cannot be freed\n");
Stephen Warren3712a3c2011-10-21 12:25:53 -0600206 return NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200207 }
208
Stephen Warren652162d2012-03-05 17:22:15 -0700209 if (!gpio_range) {
Richard Genoud740924a2013-03-21 12:21:47 +0100210 /*
211 * A pin should not be freed more times than allocated.
212 */
213 if (WARN_ON(!desc->mux_usecount))
214 return NULL;
Stephen Warren652162d2012-03-05 17:22:15 -0700215 desc->mux_usecount--;
216 if (desc->mux_usecount)
217 return NULL;
218 }
Stephen Warren0e3db1732012-03-02 13:05:46 -0700219
Stephen Warren3712a3c2011-10-21 12:25:53 -0600220 /*
221 * If there is no kind of request function for the pin we just assume
222 * we got it by default and proceed.
223 */
224 if (gpio_range && ops->gpio_disable_free)
225 ops->gpio_disable_free(pctldev, gpio_range, pin);
226 else if (ops->free)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200227 ops->free(pctldev, pin);
228
Stephen Warren652162d2012-03-05 17:22:15 -0700229 if (gpio_range) {
230 owner = desc->gpio_owner;
231 desc->gpio_owner = NULL;
232 } else {
233 owner = desc->mux_owner;
234 desc->mux_owner = NULL;
235 desc->mux_setting = NULL;
236 }
237
Linus Walleij2744e8a2011-05-02 20:50:54 +0200238 module_put(pctldev->owner);
Stephen Warren3712a3c2011-10-21 12:25:53 -0600239
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700240 return owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200241}
242
243/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100244 * pinmux_request_gpio() - request pinmuxing for a GPIO pin
245 * @pctldev: pin controller device affected
246 * @pin: the pin to mux in for GPIO
247 * @range: the applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200248 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100249int pinmux_request_gpio(struct pinctrl_dev *pctldev,
250 struct pinctrl_gpio_range *range,
251 unsigned pin, unsigned gpio)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200252{
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700253 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200254 int ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200255
256 /* Conjure some name stating what chip and pin this is taken by */
Thomas Petazzoni23a895a2012-09-13 21:48:14 +0200257 owner = kasprintf(GFP_KERNEL, "%s:%d", range->name, gpio);
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700258 if (!owner)
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600259 return -EINVAL;
260
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700261 ret = pin_request(pctldev, pin, owner, range);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600262 if (ret < 0)
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700263 kfree(owner);
Stephen Warren5d2eaf82011-10-19 16:19:28 -0600264
265 return ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200266}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200267
268/**
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100269 * pinmux_free_gpio() - release a pin from GPIO muxing
270 * @pctldev: the pin controller device for the pin
271 * @pin: the affected currently GPIO-muxed in pin
272 * @range: applicable GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +0200273 */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100274void pinmux_free_gpio(struct pinctrl_dev *pctldev, unsigned pin,
275 struct pinctrl_gpio_range *range)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200276{
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700277 const char *owner;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200278
Stephen Warren3cc70ed2012-02-19 23:45:44 -0700279 owner = pin_free(pctldev, pin, range);
280 kfree(owner);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200281}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200282
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100283/**
284 * pinmux_gpio_direction() - set the direction of a single muxed-in GPIO pin
285 * @pctldev: the pin controller handling this pin
286 * @range: applicable GPIO range
287 * @pin: the affected GPIO pin in this controller
288 * @input: true if we set the pin as input, false for output
289 */
290int pinmux_gpio_direction(struct pinctrl_dev *pctldev,
291 struct pinctrl_gpio_range *range,
292 unsigned pin, bool input)
Linus Walleij542e7042011-11-14 10:06:22 +0100293{
Linus Walleij542e7042011-11-14 10:06:22 +0100294 const struct pinmux_ops *ops;
295 int ret;
Linus Walleij542e7042011-11-14 10:06:22 +0100296
297 ops = pctldev->desc->pmxops;
298
Linus Walleij542e7042011-11-14 10:06:22 +0100299 if (ops->gpio_set_direction)
300 ret = ops->gpio_set_direction(pctldev, range, pin, input);
301 else
302 ret = 0;
303
304 return ret;
305}
306
Stephen Warren7ecdb162012-03-02 13:05:45 -0700307static int pinmux_func_name_to_selector(struct pinctrl_dev *pctldev,
308 const char *function)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200309{
310 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530311 unsigned nfuncs = ops->get_functions_count(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200312 unsigned selector = 0;
313
314 /* See if this pctldev has this function */
Viresh Kumard1e90e92012-03-30 11:25:40 +0530315 while (selector < nfuncs) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200316 const char *fname = ops->get_function_name(pctldev,
317 selector);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200318
Stephen Warren7ecdb162012-03-02 13:05:45 -0700319 if (!strcmp(function, fname))
320 return selector;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200321
Linus Walleij2744e8a2011-05-02 20:50:54 +0200322 selector++;
323 }
324
Masahiro Yamadae3249572015-07-21 15:25:27 +0900325 dev_err(pctldev->dev, "function '%s' not supported\n", function);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200326 return -EINVAL;
327}
328
Stephen Warren7ecdb162012-03-02 13:05:45 -0700329int pinmux_map_to_setting(struct pinctrl_map const *map,
330 struct pinctrl_setting *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200331{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700332 struct pinctrl_dev *pctldev = setting->pctldev;
333 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700334 char const * const *groups;
335 unsigned num_groups;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200336 int ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700337 const char *group;
338 int i;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200339
Dong Aishengad8bb722012-04-10 12:41:34 +0800340 if (!pmxops) {
341 dev_err(pctldev->dev, "does not support mux function\n");
342 return -EINVAL;
343 }
344
John Crispin15f70e12012-04-23 19:01:58 +0200345 ret = pinmux_func_name_to_selector(pctldev, map->data.mux.function);
John Crispinad6e1102012-04-26 16:47:11 +0200346 if (ret < 0) {
347 dev_err(pctldev->dev, "invalid function %s in map table\n",
348 map->data.mux.function);
John Crispin15f70e12012-04-23 19:01:58 +0200349 return ret;
John Crispinad6e1102012-04-26 16:47:11 +0200350 }
John Crispin15f70e12012-04-23 19:01:58 +0200351 setting->data.mux.func = ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200352
Stephen Warren1e2082b2012-03-02 13:05:48 -0700353 ret = pmxops->get_function_groups(pctldev, setting->data.mux.func,
Stephen Warren7ecdb162012-03-02 13:05:45 -0700354 &groups, &num_groups);
John Crispinad6e1102012-04-26 16:47:11 +0200355 if (ret < 0) {
356 dev_err(pctldev->dev, "can't query groups for function %s\n",
357 map->data.mux.function);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200358 return ret;
John Crispinad6e1102012-04-26 16:47:11 +0200359 }
360 if (!num_groups) {
361 dev_err(pctldev->dev,
362 "function %s can't be selected on any group\n",
363 map->data.mux.function);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700364 return -EINVAL;
John Crispinad6e1102012-04-26 16:47:11 +0200365 }
Stephen Warren1e2082b2012-03-02 13:05:48 -0700366 if (map->data.mux.group) {
Stephen Warren7ecdb162012-03-02 13:05:45 -0700367 bool found = false;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700368 group = map->data.mux.group;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700369 for (i = 0; i < num_groups; i++) {
370 if (!strcmp(group, groups[i])) {
371 found = true;
372 break;
373 }
374 }
John Crispinad6e1102012-04-26 16:47:11 +0200375 if (!found) {
376 dev_err(pctldev->dev,
377 "invalid group \"%s\" for function \"%s\"\n",
378 group, map->data.mux.function);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700379 return -EINVAL;
John Crispinad6e1102012-04-26 16:47:11 +0200380 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700381 } else {
382 group = groups[0];
383 }
384
John Crispin15f70e12012-04-23 19:01:58 +0200385 ret = pinctrl_get_group_selector(pctldev, group);
John Crispinad6e1102012-04-26 16:47:11 +0200386 if (ret < 0) {
387 dev_err(pctldev->dev, "invalid group %s in map table\n",
388 map->data.mux.group);
John Crispin15f70e12012-04-23 19:01:58 +0200389 return ret;
John Crispinad6e1102012-04-26 16:47:11 +0200390 }
John Crispin15f70e12012-04-23 19:01:58 +0200391 setting->data.mux.group = ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700392
Linus Walleij2744e8a2011-05-02 20:50:54 +0200393 return 0;
394}
395
Stephen Warren7ecdb162012-03-02 13:05:45 -0700396void pinmux_free_setting(struct pinctrl_setting const *setting)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100397{
Linus Walleij1a789582012-10-17 20:51:54 +0200398 /* This function is currently unused */
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100399}
400
Stephen Warren7ecdb162012-03-02 13:05:45 -0700401int pinmux_enable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200402{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700403 struct pinctrl_dev *pctldev = setting->pctldev;
Stephen Warrenba110d92012-03-02 13:05:49 -0700404 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100405 const struct pinmux_ops *ops = pctldev->desc->pmxops;
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +0200406 int ret = 0;
407 const unsigned *pins = NULL;
408 unsigned num_pins = 0;
Stephen Warrenba110d92012-03-02 13:05:49 -0700409 int i;
410 struct pin_desc *desc;
411
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +0200412 if (pctlops->get_group_pins)
413 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
414 &pins, &num_pins);
415
Stephen Warrenba110d92012-03-02 13:05:49 -0700416 if (ret) {
Linus Walleij1c8e7942013-08-14 18:23:33 +0200417 const char *gname;
418
Stephen Warrenba110d92012-03-02 13:05:49 -0700419 /* errors only affect debug data, so just warn */
Linus Walleij1c8e7942013-08-14 18:23:33 +0200420 gname = pctlops->get_group_name(pctldev,
421 setting->data.mux.group);
Stephen Warrenba110d92012-03-02 13:05:49 -0700422 dev_warn(pctldev->dev,
Linus Walleij1c8e7942013-08-14 18:23:33 +0200423 "could not get pins for group %s\n",
424 gname);
Stephen Warrenba110d92012-03-02 13:05:49 -0700425 num_pins = 0;
426 }
427
Linus Walleij1a789582012-10-17 20:51:54 +0200428 /* Try to allocate all pins in this group, one by one */
429 for (i = 0; i < num_pins; i++) {
430 ret = pin_request(pctldev, pins[i], setting->dev_name, NULL);
431 if (ret) {
Linus Walleij1c8e7942013-08-14 18:23:33 +0200432 const char *gname;
433 const char *pname;
434
435 desc = pin_desc_get(pctldev, pins[i]);
436 pname = desc ? desc->name : "non-existing";
437 gname = pctlops->get_group_name(pctldev,
438 setting->data.mux.group);
Linus Walleij1a789582012-10-17 20:51:54 +0200439 dev_err(pctldev->dev,
Linus Walleij1c8e7942013-08-14 18:23:33 +0200440 "could not request pin %d (%s) from group %s "
441 " on device %s\n",
442 pins[i], pname, gname,
443 pinctrl_dev_get_name(pctldev));
Axel Line38d4572012-11-10 21:53:20 +0800444 goto err_pin_request;
Linus Walleij1a789582012-10-17 20:51:54 +0200445 }
446 }
447
448 /* Now that we have acquired the pins, encode the mux setting */
Stephen Warrenba110d92012-03-02 13:05:49 -0700449 for (i = 0; i < num_pins; i++) {
450 desc = pin_desc_get(pctldev, pins[i]);
451 if (desc == NULL) {
452 dev_warn(pctldev->dev,
453 "could not get pin desc for pin %d\n",
454 pins[i]);
455 continue;
456 }
457 desc->mux_setting = &(setting->data.mux);
458 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200459
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200460 ret = ops->set_mux(pctldev, setting->data.mux.func,
461 setting->data.mux.group);
Axel Line38d4572012-11-10 21:53:20 +0800462
463 if (ret)
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200464 goto err_set_mux;
Axel Line38d4572012-11-10 21:53:20 +0800465
466 return 0;
467
Linus Walleij03e9f0c2014-09-03 13:02:56 +0200468err_set_mux:
Axel Line38d4572012-11-10 21:53:20 +0800469 for (i = 0; i < num_pins; i++) {
470 desc = pin_desc_get(pctldev, pins[i]);
471 if (desc)
472 desc->mux_setting = NULL;
473 }
474err_pin_request:
475 /* On error release all taken pins */
476 while (--i >= 0)
477 pin_free(pctldev, pins[i], NULL);
478
479 return ret;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200480}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200481
Stephen Warren7ecdb162012-03-02 13:05:45 -0700482void pinmux_disable_setting(struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200483{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700484 struct pinctrl_dev *pctldev = setting->pctldev;
Stephen Warrenba110d92012-03-02 13:05:49 -0700485 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +0200486 int ret = 0;
487 const unsigned *pins = NULL;
488 unsigned num_pins = 0;
Stephen Warrenba110d92012-03-02 13:05:49 -0700489 int i;
490 struct pin_desc *desc;
491
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +0200492 if (pctlops->get_group_pins)
493 ret = pctlops->get_group_pins(pctldev, setting->data.mux.group,
494 &pins, &num_pins);
Stephen Warrenba110d92012-03-02 13:05:49 -0700495 if (ret) {
Linus Walleij1c8e7942013-08-14 18:23:33 +0200496 const char *gname;
497
Stephen Warrenba110d92012-03-02 13:05:49 -0700498 /* errors only affect debug data, so just warn */
Linus Walleij1c8e7942013-08-14 18:23:33 +0200499 gname = pctlops->get_group_name(pctldev,
500 setting->data.mux.group);
Stephen Warrenba110d92012-03-02 13:05:49 -0700501 dev_warn(pctldev->dev,
Linus Walleij1c8e7942013-08-14 18:23:33 +0200502 "could not get pins for group %s\n",
503 gname);
Stephen Warrenba110d92012-03-02 13:05:49 -0700504 num_pins = 0;
505 }
506
Linus Walleij1a789582012-10-17 20:51:54 +0200507 /* Flag the descs that no setting is active */
Stephen Warrenba110d92012-03-02 13:05:49 -0700508 for (i = 0; i < num_pins; i++) {
509 desc = pin_desc_get(pctldev, pins[i]);
510 if (desc == NULL) {
511 dev_warn(pctldev->dev,
512 "could not get pin desc for pin %d\n",
513 pins[i]);
514 continue;
515 }
Sonic Zhang744f0a92013-08-14 13:26:43 +0800516 if (desc->mux_setting == &(setting->data.mux)) {
517 desc->mux_setting = NULL;
518 /* And release the pin */
519 pin_free(pctldev, pins[i], NULL);
Linus Walleij1c8e7942013-08-14 18:23:33 +0200520 } else {
521 const char *gname;
Linus Walleij1c8e7942013-08-14 18:23:33 +0200522
Linus Walleij1c8e7942013-08-14 18:23:33 +0200523 gname = pctlops->get_group_name(pctldev,
524 setting->data.mux.group);
525 dev_warn(pctldev->dev,
526 "not freeing pin %d (%s) as part of "
527 "deactivating group %s - it is already "
528 "used for some other setting",
Michael Opdenacker808e6572013-10-29 04:50:45 +0100529 pins[i], desc->name, gname);
Sonic Zhang744f0a92013-08-14 13:26:43 +0800530 }
Stephen Warrenba110d92012-03-02 13:05:49 -0700531 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200532}
Linus Walleij2744e8a2011-05-02 20:50:54 +0200533
Linus Walleij2744e8a2011-05-02 20:50:54 +0200534#ifdef CONFIG_DEBUG_FS
535
536/* Called from pincontrol core */
537static int pinmux_functions_show(struct seq_file *s, void *what)
538{
539 struct pinctrl_dev *pctldev = s->private;
540 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
Dong Aishengad8bb722012-04-10 12:41:34 +0800541 unsigned nfuncs;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200542 unsigned func_selector = 0;
543
Dong Aishengad8bb722012-04-10 12:41:34 +0800544 if (!pmxops)
545 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700546
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200547 mutex_lock(&pctldev->mutex);
Dong Aishengad8bb722012-04-10 12:41:34 +0800548 nfuncs = pmxops->get_functions_count(pctldev);
Viresh Kumard1e90e92012-03-30 11:25:40 +0530549 while (func_selector < nfuncs) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200550 const char *func = pmxops->get_function_name(pctldev,
551 func_selector);
552 const char * const *groups;
553 unsigned num_groups;
554 int ret;
555 int i;
556
557 ret = pmxops->get_function_groups(pctldev, func_selector,
558 &groups, &num_groups);
Ludovic Desroches9d7ebbb2015-06-08 17:16:37 +0200559 if (ret) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200560 seq_printf(s, "function %s: COULD NOT GET GROUPS\n",
561 func);
Ludovic Desroches9d7ebbb2015-06-08 17:16:37 +0200562 func_selector++;
563 continue;
564 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200565
566 seq_printf(s, "function: %s, groups = [ ", func);
567 for (i = 0; i < num_groups; i++)
568 seq_printf(s, "%s ", groups[i]);
569 seq_puts(s, "]\n");
570
571 func_selector++;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200572 }
573
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200574 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -0700575
Linus Walleij2744e8a2011-05-02 20:50:54 +0200576 return 0;
577}
578
579static int pinmux_pins_show(struct seq_file *s, void *what)
580{
581 struct pinctrl_dev *pctldev = s->private;
Stephen Warrenba110d92012-03-02 13:05:49 -0700582 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
583 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
Chanho Park706e8522012-01-03 16:47:50 +0900584 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200585
Dong Aishengad8bb722012-04-10 12:41:34 +0800586 if (!pmxops)
587 return 0;
588
Linus Walleij2744e8a2011-05-02 20:50:54 +0200589 seq_puts(s, "Pinmux settings per pin\n");
Linus Walleij81508852015-05-28 10:11:19 +0200590 if (pmxops->strict)
591 seq_puts(s,
592 "Format: pin (name): mux_owner|gpio_owner (strict) hog?\n");
593 else
594 seq_puts(s,
595 "Format: pin (name): mux_owner gpio_owner hog?\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200596
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200597 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -0700598
Chanho Park706e8522012-01-03 16:47:50 +0900599 /* The pin number can be retrived from the pin controller descriptor */
600 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200601 struct pin_desc *desc;
Linus Walleij1cf94c42012-02-24 06:53:04 +0100602 bool is_hog = false;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200603
Chanho Park706e8522012-01-03 16:47:50 +0900604 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200605 desc = pin_desc_get(pctldev, pin);
Chanho Park706e8522012-01-03 16:47:50 +0900606 /* Skip if we cannot search the pin */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200607 if (desc == NULL)
608 continue;
609
Stephen Warren652162d2012-03-05 17:22:15 -0700610 if (desc->mux_owner &&
611 !strcmp(desc->mux_owner, pinctrl_dev_get_name(pctldev)))
Linus Walleij1cf94c42012-02-24 06:53:04 +0100612 is_hog = true;
613
Linus Walleij81508852015-05-28 10:11:19 +0200614 if (pmxops->strict) {
615 if (desc->mux_owner)
616 seq_printf(s, "pin %d (%s): device %s%s",
617 pin,
618 desc->name ? desc->name : "unnamed",
619 desc->mux_owner,
620 is_hog ? " (HOG)" : "");
621 else if (desc->gpio_owner)
622 seq_printf(s, "pin %d (%s): GPIO %s",
623 pin,
624 desc->name ? desc->name : "unnamed",
625 desc->gpio_owner);
626 else
627 seq_printf(s, "pin %d (%s): UNCLAIMED",
628 pin,
629 desc->name ? desc->name : "unnamed");
630 } else {
631 /* For non-strict controllers */
632 seq_printf(s, "pin %d (%s): %s %s%s", pin,
633 desc->name ? desc->name : "unnamed",
634 desc->mux_owner ? desc->mux_owner
635 : "(MUX UNCLAIMED)",
636 desc->gpio_owner ? desc->gpio_owner
637 : "(GPIO UNCLAIMED)",
638 is_hog ? " (HOG)" : "");
639 }
Stephen Warrenba110d92012-03-02 13:05:49 -0700640
Linus Walleij81508852015-05-28 10:11:19 +0200641 /* If mux: print function+group claiming the pin */
Stephen Warrenba110d92012-03-02 13:05:49 -0700642 if (desc->mux_setting)
643 seq_printf(s, " function %s group %s\n",
644 pmxops->get_function_name(pctldev,
645 desc->mux_setting->func),
646 pctlops->get_group_name(pctldev,
647 desc->mux_setting->group));
648 else
649 seq_printf(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200650 }
651
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200652 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -0700653
Linus Walleij2744e8a2011-05-02 20:50:54 +0200654 return 0;
655}
656
Stephen Warren1e2082b2012-03-02 13:05:48 -0700657void pinmux_show_map(struct seq_file *s, struct pinctrl_map const *map)
658{
659 seq_printf(s, "group %s\nfunction %s\n",
660 map->data.mux.group ? map->data.mux.group : "(default)",
661 map->data.mux.function);
662}
663
664void pinmux_show_setting(struct seq_file *s,
665 struct pinctrl_setting const *setting)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200666{
Stephen Warren7ecdb162012-03-02 13:05:45 -0700667 struct pinctrl_dev *pctldev = setting->pctldev;
668 const struct pinmux_ops *pmxops = pctldev->desc->pmxops;
669 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200670
Stephen Warren1e2082b2012-03-02 13:05:48 -0700671 seq_printf(s, "group: %s (%u) function: %s (%u)\n",
672 pctlops->get_group_name(pctldev, setting->data.mux.group),
673 setting->data.mux.group,
674 pmxops->get_function_name(pctldev, setting->data.mux.func),
675 setting->data.mux.func);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200676}
677
678static int pinmux_functions_open(struct inode *inode, struct file *file)
679{
680 return single_open(file, pinmux_functions_show, inode->i_private);
681}
682
683static int pinmux_pins_open(struct inode *inode, struct file *file)
684{
685 return single_open(file, pinmux_pins_show, inode->i_private);
686}
687
Linus Walleij2744e8a2011-05-02 20:50:54 +0200688static const struct file_operations pinmux_functions_ops = {
689 .open = pinmux_functions_open,
690 .read = seq_read,
691 .llseek = seq_lseek,
692 .release = single_release,
693};
694
695static const struct file_operations pinmux_pins_ops = {
696 .open = pinmux_pins_open,
697 .read = seq_read,
698 .llseek = seq_lseek,
699 .release = single_release,
700};
701
Linus Walleij2744e8a2011-05-02 20:50:54 +0200702void pinmux_init_device_debugfs(struct dentry *devroot,
703 struct pinctrl_dev *pctldev)
704{
705 debugfs_create_file("pinmux-functions", S_IFREG | S_IRUGO,
706 devroot, pctldev, &pinmux_functions_ops);
707 debugfs_create_file("pinmux-pins", S_IFREG | S_IRUGO,
708 devroot, pctldev, &pinmux_pins_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200709}
710
711#endif /* CONFIG_DEBUG_FS */