blob: cec6072cd7c1247436064c764a343d2948be06a0 [file] [log] [blame]
Linus Walleij2744e8a2011-05-02 20:50:54 +02001/*
2 * Core driver for the pin control subsystem
3 *
Linus Walleijbefe5bd2012-02-09 19:47:48 +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 Warrenb2b3e662012-02-19 23:45:43 -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) "pinctrl core: " fmt
15
16#include <linux/kernel.h>
Stephen Rothwella5a697c2011-09-30 14:39:04 +100017#include <linux/export.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020018#include <linux/init.h>
19#include <linux/device.h>
20#include <linux/slab.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020021#include <linux/err.h>
22#include <linux/list.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020023#include <linux/sysfs.h>
24#include <linux/debugfs.h>
25#include <linux/seq_file.h>
Stephen Warren6d4ca1f2012-04-16 10:51:00 -060026#include <linux/pinctrl/consumer.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020027#include <linux/pinctrl/pinctrl.h>
28#include <linux/pinctrl/machine.h>
29#include "core.h"
Stephen Warren57291ce2012-03-23 10:29:46 -060030#include "devicetree.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020031#include "pinmux.h"
Linus Walleijae6b4d82011-10-19 18:14:33 +020032#include "pinconf.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020033
Linus Walleijbefe5bd2012-02-09 19:47:48 +010034/**
Stephen Warrenb2b3e662012-02-19 23:45:43 -070035 * struct pinctrl_maps - a list item containing part of the mapping table
36 * @node: mapping table list node
37 * @maps: array of mapping table entries
38 * @num_maps: the number of entries in @maps
39 */
40struct pinctrl_maps {
41 struct list_head node;
42 struct pinctrl_map const *maps;
43 unsigned num_maps;
44};
45
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080046static bool pinctrl_dummy_state;
47
Stephen Warren57b676f2012-03-02 13:05:44 -070048/* Mutex taken by all entry points */
49DEFINE_MUTEX(pinctrl_mutex);
50
51/* Global list of pin control devices (struct pinctrl_dev) */
Stephen Warren57291ce2012-03-23 10:29:46 -060052LIST_HEAD(pinctrldev_list);
Linus Walleij2744e8a2011-05-02 20:50:54 +020053
Stephen Warren57b676f2012-03-02 13:05:44 -070054/* List of pin controller handles (struct pinctrl) */
Linus Walleijbefe5bd2012-02-09 19:47:48 +010055static LIST_HEAD(pinctrl_list);
56
Stephen Warren57b676f2012-03-02 13:05:44 -070057/* List of pinctrl maps (struct pinctrl_maps) */
Stephen Warrenb2b3e662012-02-19 23:45:43 -070058static LIST_HEAD(pinctrl_maps);
59
60#define for_each_maps(_maps_node_, _i_, _map_) \
61 list_for_each_entry(_maps_node_, &pinctrl_maps, node) \
62 for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \
63 _i_ < _maps_node_->num_maps; \
Guennadi Liakhovetskibc664682012-05-23 00:20:17 +020064 _i_++, _map_ = &_maps_node_->maps[_i_])
Linus Walleijbefe5bd2012-02-09 19:47:48 +010065
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080066/**
67 * pinctrl_provide_dummies() - indicate if pinctrl provides dummy state support
68 *
69 * Usually this function is called by platforms without pinctrl driver support
70 * but run with some shared drivers using pinctrl APIs.
71 * After calling this function, the pinctrl core will return successfully
72 * with creating a dummy state for the driver to keep going smoothly.
73 */
74void pinctrl_provide_dummies(void)
75{
76 pinctrl_dummy_state = true;
77}
78
Linus Walleij2744e8a2011-05-02 20:50:54 +020079const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev)
80{
81 /* We're not allowed to register devices without name */
82 return pctldev->desc->name;
83}
84EXPORT_SYMBOL_GPL(pinctrl_dev_get_name);
85
86void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev)
87{
88 return pctldev->driver_data;
89}
90EXPORT_SYMBOL_GPL(pinctrl_dev_get_drvdata);
91
92/**
Linus Walleij9dfac4f2012-02-01 18:02:47 +010093 * get_pinctrl_dev_from_devname() - look up pin controller device
94 * @devname: the name of a device instance, as returned by dev_name()
Linus Walleij2744e8a2011-05-02 20:50:54 +020095 *
96 * Looks up a pin control device matching a certain device name or pure device
97 * pointer, the pure device pointer will take precedence.
98 */
Linus Walleij9dfac4f2012-02-01 18:02:47 +010099struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *devname)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200100{
101 struct pinctrl_dev *pctldev = NULL;
102 bool found = false;
103
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100104 if (!devname)
105 return NULL;
106
Linus Walleij2744e8a2011-05-02 20:50:54 +0200107 list_for_each_entry(pctldev, &pinctrldev_list, node) {
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100108 if (!strcmp(dev_name(pctldev->dev), devname)) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200109 /* Matched on device name */
110 found = true;
111 break;
112 }
113 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200114
115 return found ? pctldev : NULL;
116}
117
Linus Walleij2744e8a2011-05-02 20:50:54 +0200118/**
Linus Walleijae6b4d82011-10-19 18:14:33 +0200119 * pin_get_from_name() - look up a pin number from a name
120 * @pctldev: the pin control device to lookup the pin on
121 * @name: the name of the pin to look up
122 */
123int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name)
124{
Chanho Park706e8522012-01-03 16:47:50 +0900125 unsigned i, pin;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200126
Chanho Park706e8522012-01-03 16:47:50 +0900127 /* The pin number can be retrived from the pin controller descriptor */
128 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleijae6b4d82011-10-19 18:14:33 +0200129 struct pin_desc *desc;
130
Chanho Park706e8522012-01-03 16:47:50 +0900131 pin = pctldev->desc->pins[i].number;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200132 desc = pin_desc_get(pctldev, pin);
133 /* Pin space may be sparse */
134 if (desc == NULL)
135 continue;
136 if (desc->name && !strcmp(name, desc->name))
137 return pin;
138 }
139
140 return -EINVAL;
141}
142
143/**
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800144 * pin_get_name_from_id() - look up a pin name from a pin id
145 * @pctldev: the pin control device to lookup the pin on
146 * @name: the name of the pin to look up
147 */
148const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin)
149{
150 const struct pin_desc *desc;
151
152 desc = pin_desc_get(pctldev, pin);
153 if (desc == NULL) {
154 dev_err(pctldev->dev, "failed to get pin(%d) name\n",
155 pin);
156 return NULL;
157 }
158
159 return desc->name;
160}
161
162/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200163 * pin_is_valid() - check if pin exists on controller
164 * @pctldev: the pin control device to check the pin on
165 * @pin: pin to check, use the local pin controller index number
166 *
167 * This tells us whether a certain pin exist on a certain pin controller or
168 * not. Pin lists may be sparse, so some pins may not exist.
169 */
170bool pin_is_valid(struct pinctrl_dev *pctldev, int pin)
171{
172 struct pin_desc *pindesc;
173
174 if (pin < 0)
175 return false;
176
Stephen Warren57b676f2012-03-02 13:05:44 -0700177 mutex_lock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200178 pindesc = pin_desc_get(pctldev, pin);
Stephen Warren57b676f2012-03-02 13:05:44 -0700179 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200180
Stephen Warren57b676f2012-03-02 13:05:44 -0700181 return pindesc != NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200182}
183EXPORT_SYMBOL_GPL(pin_is_valid);
184
185/* Deletes a range of pin descriptors */
186static void pinctrl_free_pindescs(struct pinctrl_dev *pctldev,
187 const struct pinctrl_pin_desc *pins,
188 unsigned num_pins)
189{
190 int i;
191
Linus Walleij2744e8a2011-05-02 20:50:54 +0200192 for (i = 0; i < num_pins; i++) {
193 struct pin_desc *pindesc;
194
195 pindesc = radix_tree_lookup(&pctldev->pin_desc_tree,
196 pins[i].number);
197 if (pindesc != NULL) {
198 radix_tree_delete(&pctldev->pin_desc_tree,
199 pins[i].number);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100200 if (pindesc->dynamic_name)
201 kfree(pindesc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200202 }
203 kfree(pindesc);
204 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200205}
206
207static int pinctrl_register_one_pin(struct pinctrl_dev *pctldev,
208 unsigned number, const char *name)
209{
210 struct pin_desc *pindesc;
211
212 pindesc = pin_desc_get(pctldev, number);
213 if (pindesc != NULL) {
214 pr_err("pin %d already registered on %s\n", number,
215 pctldev->desc->name);
216 return -EINVAL;
217 }
218
219 pindesc = kzalloc(sizeof(*pindesc), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700220 if (pindesc == NULL) {
221 dev_err(pctldev->dev, "failed to alloc struct pin_desc\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200222 return -ENOMEM;
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700223 }
Linus Walleijae6b4d82011-10-19 18:14:33 +0200224
Linus Walleij2744e8a2011-05-02 20:50:54 +0200225 /* Set owner */
226 pindesc->pctldev = pctldev;
227
Stephen Warren9af1e442011-10-19 16:19:27 -0600228 /* Copy basic pin info */
Linus Walleij8dc6ae42012-02-01 18:11:40 +0100229 if (name) {
Linus Walleijca53c5f2011-12-14 20:33:37 +0100230 pindesc->name = name;
231 } else {
232 pindesc->name = kasprintf(GFP_KERNEL, "PIN%u", number);
Sachin Kamateb26cc92012-09-25 12:41:40 +0530233 if (pindesc->name == NULL) {
234 kfree(pindesc);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100235 return -ENOMEM;
Sachin Kamateb26cc92012-09-25 12:41:40 +0530236 }
Linus Walleijca53c5f2011-12-14 20:33:37 +0100237 pindesc->dynamic_name = true;
238 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200239
Linus Walleij2744e8a2011-05-02 20:50:54 +0200240 radix_tree_insert(&pctldev->pin_desc_tree, number, pindesc);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200241 pr_debug("registered pin %d (%s) on %s\n",
Linus Walleijca53c5f2011-12-14 20:33:37 +0100242 number, pindesc->name, pctldev->desc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200243 return 0;
244}
245
246static int pinctrl_register_pins(struct pinctrl_dev *pctldev,
247 struct pinctrl_pin_desc const *pins,
248 unsigned num_descs)
249{
250 unsigned i;
251 int ret = 0;
252
253 for (i = 0; i < num_descs; i++) {
254 ret = pinctrl_register_one_pin(pctldev,
255 pins[i].number, pins[i].name);
256 if (ret)
257 return ret;
258 }
259
260 return 0;
261}
262
263/**
264 * pinctrl_match_gpio_range() - check if a certain GPIO pin is in range
265 * @pctldev: pin controller device to check
266 * @gpio: gpio pin to check taken from the global GPIO pin space
267 *
268 * Tries to match a GPIO pin number to the ranges handled by a certain pin
269 * controller, return the range or NULL
270 */
271static struct pinctrl_gpio_range *
272pinctrl_match_gpio_range(struct pinctrl_dev *pctldev, unsigned gpio)
273{
274 struct pinctrl_gpio_range *range = NULL;
275
276 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200277 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
278 /* Check if we're in the valid range */
279 if (gpio >= range->base &&
280 gpio < range->base + range->npins) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200281 return range;
282 }
283 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200284
285 return NULL;
286}
287
288/**
289 * pinctrl_get_device_gpio_range() - find device for GPIO range
290 * @gpio: the pin to locate the pin controller for
291 * @outdev: the pin control device if found
292 * @outrange: the GPIO range if found
293 *
294 * Find the pin controller handling a certain GPIO pin from the pinspace of
295 * the GPIO subsystem, return the device and the matching GPIO range. Returns
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800296 * -EPROBE_DEFER if the GPIO range could not be found in any device since it
297 * may still have not been registered.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200298 */
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700299static int pinctrl_get_device_gpio_range(unsigned gpio,
300 struct pinctrl_dev **outdev,
301 struct pinctrl_gpio_range **outrange)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200302{
303 struct pinctrl_dev *pctldev = NULL;
304
305 /* Loop over the pin controllers */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200306 list_for_each_entry(pctldev, &pinctrldev_list, node) {
307 struct pinctrl_gpio_range *range;
308
309 range = pinctrl_match_gpio_range(pctldev, gpio);
310 if (range != NULL) {
311 *outdev = pctldev;
312 *outrange = range;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200313 return 0;
314 }
315 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200316
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800317 return -EPROBE_DEFER;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200318}
319
320/**
321 * pinctrl_add_gpio_range() - register a GPIO range for a controller
322 * @pctldev: pin controller device to add the range to
323 * @range: the GPIO range to add
324 *
325 * This adds a range of GPIOs to be handled by a certain pin controller. Call
326 * this to register handled ranges after registering your pin controller.
327 */
328void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev,
329 struct pinctrl_gpio_range *range)
330{
Stephen Warren57b676f2012-03-02 13:05:44 -0700331 mutex_lock(&pinctrl_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -0700332 list_add_tail(&range->node, &pctldev->gpio_ranges);
Stephen Warren57b676f2012-03-02 13:05:44 -0700333 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200334}
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700335EXPORT_SYMBOL_GPL(pinctrl_add_gpio_range);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200336
Dong Aisheng3e5e00b2012-05-23 21:22:41 +0800337void pinctrl_add_gpio_ranges(struct pinctrl_dev *pctldev,
338 struct pinctrl_gpio_range *ranges,
339 unsigned nranges)
340{
341 int i;
342
343 for (i = 0; i < nranges; i++)
344 pinctrl_add_gpio_range(pctldev, &ranges[i]);
345}
346EXPORT_SYMBOL_GPL(pinctrl_add_gpio_ranges);
347
Linus Walleij2744e8a2011-05-02 20:50:54 +0200348/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200349 * pinctrl_get_group_selector() - returns the group selector for a group
350 * @pctldev: the pin controller handling the group
351 * @pin_group: the pin group to look up
352 */
353int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
354 const char *pin_group)
355{
356 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530357 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200358 unsigned group_selector = 0;
359
Viresh Kumard1e90e92012-03-30 11:25:40 +0530360 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200361 const char *gname = pctlops->get_group_name(pctldev,
362 group_selector);
363 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700364 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200365 "found group selector %u for %s\n",
366 group_selector,
367 pin_group);
368 return group_selector;
369 }
370
371 group_selector++;
372 }
373
Stephen Warren51cd24e2011-12-09 16:59:05 -0700374 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200375 pin_group);
376
377 return -EINVAL;
378}
379
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100380/**
381 * pinctrl_request_gpio() - request a single pin to be used in as GPIO
382 * @gpio: the GPIO pin number from the GPIO subsystem number space
383 *
384 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
385 * as part of their gpio_request() semantics, platforms and individual drivers
386 * shall *NOT* request GPIO pins to be muxed in.
387 */
388int pinctrl_request_gpio(unsigned gpio)
389{
390 struct pinctrl_dev *pctldev;
391 struct pinctrl_gpio_range *range;
392 int ret;
393 int pin;
394
Stephen Warren57b676f2012-03-02 13:05:44 -0700395 mutex_lock(&pinctrl_mutex);
396
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100397 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700398 if (ret) {
399 mutex_unlock(&pinctrl_mutex);
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800400 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700401 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100402
403 /* Convert to the pin controllers number space */
404 pin = gpio - range->base + range->pin_base;
405
Stephen Warren57b676f2012-03-02 13:05:44 -0700406 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
407
408 mutex_unlock(&pinctrl_mutex);
409 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100410}
411EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
412
413/**
414 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
415 * @gpio: the GPIO pin number from the GPIO subsystem number space
416 *
417 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
418 * as part of their gpio_free() semantics, platforms and individual drivers
419 * shall *NOT* request GPIO pins to be muxed out.
420 */
421void pinctrl_free_gpio(unsigned gpio)
422{
423 struct pinctrl_dev *pctldev;
424 struct pinctrl_gpio_range *range;
425 int ret;
426 int pin;
427
Stephen Warren57b676f2012-03-02 13:05:44 -0700428 mutex_lock(&pinctrl_mutex);
429
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100430 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700431 if (ret) {
432 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100433 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700434 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100435
436 /* Convert to the pin controllers number space */
437 pin = gpio - range->base + range->pin_base;
438
Stephen Warren57b676f2012-03-02 13:05:44 -0700439 pinmux_free_gpio(pctldev, pin, range);
440
441 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100442}
443EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
444
445static int pinctrl_gpio_direction(unsigned gpio, bool input)
446{
447 struct pinctrl_dev *pctldev;
448 struct pinctrl_gpio_range *range;
449 int ret;
450 int pin;
451
452 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
453 if (ret)
454 return ret;
455
456 /* Convert to the pin controllers number space */
457 pin = gpio - range->base + range->pin_base;
458
459 return pinmux_gpio_direction(pctldev, range, pin, input);
460}
461
462/**
463 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
464 * @gpio: the GPIO pin number from the GPIO subsystem number space
465 *
466 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
467 * as part of their gpio_direction_input() semantics, platforms and individual
468 * drivers shall *NOT* touch pin control GPIO calls.
469 */
470int pinctrl_gpio_direction_input(unsigned gpio)
471{
Stephen Warren57b676f2012-03-02 13:05:44 -0700472 int ret;
473 mutex_lock(&pinctrl_mutex);
474 ret = pinctrl_gpio_direction(gpio, true);
475 mutex_unlock(&pinctrl_mutex);
476 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100477}
478EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
479
480/**
481 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
482 * @gpio: the GPIO pin number from the GPIO subsystem number space
483 *
484 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
485 * as part of their gpio_direction_output() semantics, platforms and individual
486 * drivers shall *NOT* touch pin control GPIO calls.
487 */
488int pinctrl_gpio_direction_output(unsigned gpio)
489{
Stephen Warren57b676f2012-03-02 13:05:44 -0700490 int ret;
491 mutex_lock(&pinctrl_mutex);
492 ret = pinctrl_gpio_direction(gpio, false);
493 mutex_unlock(&pinctrl_mutex);
494 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100495}
496EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
497
Stephen Warren6e5e9592012-03-02 13:05:47 -0700498static struct pinctrl_state *find_state(struct pinctrl *p,
499 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100500{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700501 struct pinctrl_state *state;
502
503 list_for_each_entry(state, &p->states, node)
504 if (!strcmp(state->name, name))
505 return state;
506
507 return NULL;
508}
509
510static struct pinctrl_state *create_state(struct pinctrl *p,
511 const char *name)
512{
513 struct pinctrl_state *state;
514
515 state = kzalloc(sizeof(*state), GFP_KERNEL);
516 if (state == NULL) {
517 dev_err(p->dev,
518 "failed to alloc struct pinctrl_state\n");
519 return ERR_PTR(-ENOMEM);
520 }
521
522 state->name = name;
523 INIT_LIST_HEAD(&state->settings);
524
525 list_add_tail(&state->node, &p->states);
526
527 return state;
528}
529
530static int add_setting(struct pinctrl *p, struct pinctrl_map const *map)
531{
532 struct pinctrl_state *state;
533 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700534 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700535
536 state = find_state(p, map->name);
537 if (!state)
538 state = create_state(p, map->name);
539 if (IS_ERR(state))
540 return PTR_ERR(state);
541
Stephen Warren1e2082b2012-03-02 13:05:48 -0700542 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
543 return 0;
544
Stephen Warren6e5e9592012-03-02 13:05:47 -0700545 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
546 if (setting == NULL) {
547 dev_err(p->dev,
548 "failed to alloc struct pinctrl_setting\n");
549 return -ENOMEM;
550 }
551
Stephen Warren1e2082b2012-03-02 13:05:48 -0700552 setting->type = map->type;
553
Stephen Warren6e5e9592012-03-02 13:05:47 -0700554 setting->pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
555 if (setting->pctldev == NULL) {
Linus Walleijc05127c2012-04-10 10:00:38 +0200556 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
Stephen Warren6e5e9592012-03-02 13:05:47 -0700557 map->ctrl_dev_name);
558 kfree(setting);
Linus Walleijc05127c2012-04-10 10:00:38 +0200559 /*
560 * OK let us guess that the driver is not there yet, and
561 * let's defer obtaining this pinctrl handle to later...
562 */
563 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700564 }
565
Linus Walleij1a789582012-10-17 20:51:54 +0200566 setting->dev_name = map->dev_name;
567
Stephen Warren1e2082b2012-03-02 13:05:48 -0700568 switch (map->type) {
569 case PIN_MAP_TYPE_MUX_GROUP:
570 ret = pinmux_map_to_setting(map, setting);
571 break;
572 case PIN_MAP_TYPE_CONFIGS_PIN:
573 case PIN_MAP_TYPE_CONFIGS_GROUP:
574 ret = pinconf_map_to_setting(map, setting);
575 break;
576 default:
577 ret = -EINVAL;
578 break;
579 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700580 if (ret < 0) {
581 kfree(setting);
582 return ret;
583 }
584
585 list_add_tail(&setting->node, &state->settings);
586
587 return 0;
588}
589
590static struct pinctrl *find_pinctrl(struct device *dev)
591{
592 struct pinctrl *p;
593
Stephen Warren1e2082b2012-03-02 13:05:48 -0700594 list_for_each_entry(p, &pinctrl_list, node)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700595 if (p->dev == dev)
596 return p;
597
598 return NULL;
599}
600
601static void pinctrl_put_locked(struct pinctrl *p, bool inlist);
602
603static struct pinctrl *create_pinctrl(struct device *dev)
604{
605 struct pinctrl *p;
606 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700607 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100608 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700609 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700610 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100611
612 /*
613 * create the state cookie holder struct pinctrl for each
614 * mapping, this is what consumers will get when requesting
615 * a pin control handle with pinctrl_get()
616 */
Stephen Warren02f5b982012-02-22 14:26:00 -0700617 p = kzalloc(sizeof(*p), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700618 if (p == NULL) {
619 dev_err(dev, "failed to alloc struct pinctrl\n");
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100620 return ERR_PTR(-ENOMEM);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700621 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700622 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700623 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -0600624 INIT_LIST_HEAD(&p->dt_maps);
625
626 ret = pinctrl_dt_to_map(p);
627 if (ret < 0) {
628 kfree(p);
629 return ERR_PTR(ret);
630 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700631
632 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100633
634 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700635 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -0700636 /* Map must be for this device */
637 if (strcmp(map->dev_name, devname))
638 continue;
639
Stephen Warren6e5e9592012-03-02 13:05:47 -0700640 ret = add_setting(p, map);
641 if (ret < 0) {
642 pinctrl_put_locked(p, false);
643 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100644 }
645 }
646
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100647 /* Add the pinmux to the global list */
Stephen Warren8b9c1392012-02-19 23:45:42 -0700648 list_add_tail(&p->node, &pinctrl_list);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100649
650 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700651}
Stephen Warren7ecdb162012-03-02 13:05:45 -0700652
Stephen Warren6e5e9592012-03-02 13:05:47 -0700653static struct pinctrl *pinctrl_get_locked(struct device *dev)
654{
655 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700656
Stephen Warren6e5e9592012-03-02 13:05:47 -0700657 if (WARN_ON(!dev))
658 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700659
Stephen Warren6e5e9592012-03-02 13:05:47 -0700660 p = find_pinctrl(dev);
661 if (p != NULL)
662 return ERR_PTR(-EBUSY);
663
Richard Genoudd599bfb2012-08-10 16:53:49 +0200664 return create_pinctrl(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100665}
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700666
667/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700668 * pinctrl_get() - retrieves the pinctrl handle for a device
669 * @dev: the device to obtain the handle for
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700670 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700671struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700672{
673 struct pinctrl *p;
674
Stephen Warren57b676f2012-03-02 13:05:44 -0700675 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700676 p = pinctrl_get_locked(dev);
Stephen Warren57b676f2012-03-02 13:05:44 -0700677 mutex_unlock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700678
679 return p;
680}
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100681EXPORT_SYMBOL_GPL(pinctrl_get);
682
Stephen Warren6e5e9592012-03-02 13:05:47 -0700683static void pinctrl_put_locked(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -0700684{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700685 struct pinctrl_state *state, *n1;
686 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700687
Stephen Warren6e5e9592012-03-02 13:05:47 -0700688 list_for_each_entry_safe(state, n1, &p->states, node) {
689 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700690 switch (setting->type) {
691 case PIN_MAP_TYPE_MUX_GROUP:
692 if (state == p->state)
693 pinmux_disable_setting(setting);
694 pinmux_free_setting(setting);
695 break;
696 case PIN_MAP_TYPE_CONFIGS_PIN:
697 case PIN_MAP_TYPE_CONFIGS_GROUP:
698 pinconf_free_setting(setting);
699 break;
700 default:
701 break;
702 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700703 list_del(&setting->node);
704 kfree(setting);
705 }
706 list_del(&state->node);
707 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700708 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700709
Stephen Warren57291ce2012-03-23 10:29:46 -0600710 pinctrl_dt_free_maps(p);
711
Stephen Warren6e5e9592012-03-02 13:05:47 -0700712 if (inlist)
713 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -0700714 kfree(p);
715}
716
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100717/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700718 * pinctrl_put() - release a previously claimed pinctrl handle
719 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100720 */
721void pinctrl_put(struct pinctrl *p)
722{
Stephen Warren57b676f2012-03-02 13:05:44 -0700723 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700724 pinctrl_put_locked(p, true);
Stephen Warren57b676f2012-03-02 13:05:44 -0700725 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100726}
727EXPORT_SYMBOL_GPL(pinctrl_put);
728
Stephen Warren6e5e9592012-03-02 13:05:47 -0700729static struct pinctrl_state *pinctrl_lookup_state_locked(struct pinctrl *p,
730 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -0700731{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700732 struct pinctrl_state *state;
733
734 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800735 if (!state) {
736 if (pinctrl_dummy_state) {
737 /* create dummy state */
738 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
739 name);
740 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +0200741 } else
742 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800743 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700744
745 return state;
746}
747
748/**
749 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
750 * @p: the pinctrl handle to retrieve the state from
751 * @name: the state name to retrieve
752 */
753struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p, const char *name)
754{
755 struct pinctrl_state *s;
756
757 mutex_lock(&pinctrl_mutex);
758 s = pinctrl_lookup_state_locked(p, name);
759 mutex_unlock(&pinctrl_mutex);
760
761 return s;
762}
763EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
764
765static int pinctrl_select_state_locked(struct pinctrl *p,
766 struct pinctrl_state *state)
767{
768 struct pinctrl_setting *setting, *setting2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700769 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700770
Stephen Warren6e5e9592012-03-02 13:05:47 -0700771 if (p->state == state)
772 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700773
Stephen Warren6e5e9592012-03-02 13:05:47 -0700774 if (p->state) {
775 /*
776 * The set of groups with a mux configuration in the old state
777 * may not be identical to the set of groups with a mux setting
778 * in the new state. While this might be unusual, it's entirely
779 * possible for the "user"-supplied mapping table to be written
780 * that way. For each group that was configured in the old state
781 * but not in the new state, this code puts that group into a
782 * safe/disabled state.
783 */
784 list_for_each_entry(setting, &p->state->settings, node) {
785 bool found = false;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700786 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
787 continue;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700788 list_for_each_entry(setting2, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700789 if (setting2->type != PIN_MAP_TYPE_MUX_GROUP)
790 continue;
791 if (setting2->data.mux.group ==
792 setting->data.mux.group) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700793 found = true;
794 break;
795 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700796 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700797 if (!found)
798 pinmux_disable_setting(setting);
799 }
800 }
801
802 p->state = state;
803
804 /* Apply all the settings for the new state */
805 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700806 switch (setting->type) {
807 case PIN_MAP_TYPE_MUX_GROUP:
808 ret = pinmux_enable_setting(setting);
809 break;
810 case PIN_MAP_TYPE_CONFIGS_PIN:
811 case PIN_MAP_TYPE_CONFIGS_GROUP:
812 ret = pinconf_apply_setting(setting);
813 break;
814 default:
815 ret = -EINVAL;
816 break;
817 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700818 if (ret < 0) {
819 /* FIXME: Difficult to return to prev state */
820 return ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700821 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700822 }
823
Stephen Warren7ecdb162012-03-02 13:05:45 -0700824 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700825}
826
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100827/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700828 * pinctrl_select() - select/activate/program a pinctrl state to HW
829 * @p: the pinctrl handle for the device that requests configuratio
830 * @state: the state handle to select/activate/program
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100831 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700832int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100833{
Stephen Warren57b676f2012-03-02 13:05:44 -0700834 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700835
Stephen Warren57b676f2012-03-02 13:05:44 -0700836 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700837 ret = pinctrl_select_state_locked(p, state);
Stephen Warren57b676f2012-03-02 13:05:44 -0700838 mutex_unlock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700839
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100840 return ret;
841}
Stephen Warren6e5e9592012-03-02 13:05:47 -0700842EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100843
Stephen Warren6d4ca1f2012-04-16 10:51:00 -0600844static void devm_pinctrl_release(struct device *dev, void *res)
845{
846 pinctrl_put(*(struct pinctrl **)res);
847}
848
849/**
850 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
851 * @dev: the device to obtain the handle for
852 *
853 * If there is a need to explicitly destroy the returned struct pinctrl,
854 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
855 */
856struct pinctrl *devm_pinctrl_get(struct device *dev)
857{
858 struct pinctrl **ptr, *p;
859
860 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
861 if (!ptr)
862 return ERR_PTR(-ENOMEM);
863
864 p = pinctrl_get(dev);
865 if (!IS_ERR(p)) {
866 *ptr = p;
867 devres_add(dev, ptr);
868 } else {
869 devres_free(ptr);
870 }
871
872 return p;
873}
874EXPORT_SYMBOL_GPL(devm_pinctrl_get);
875
876static int devm_pinctrl_match(struct device *dev, void *res, void *data)
877{
878 struct pinctrl **p = res;
879
880 return *p == data;
881}
882
883/**
884 * devm_pinctrl_put() - Resource managed pinctrl_put()
885 * @p: the pinctrl handle to release
886 *
887 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
888 * this function will not need to be called and the resource management
889 * code will ensure that the resource is freed.
890 */
891void devm_pinctrl_put(struct pinctrl *p)
892{
893 WARN_ON(devres_destroy(p->dev, devm_pinctrl_release,
894 devm_pinctrl_match, p));
895 pinctrl_put(p);
896}
897EXPORT_SYMBOL_GPL(devm_pinctrl_put);
898
Stephen Warren57291ce2012-03-23 10:29:46 -0600899int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
900 bool dup, bool locked)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100901{
Stephen Warren1e2082b2012-03-02 13:05:48 -0700902 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700903 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100904
905 pr_debug("add %d pinmux maps\n", num_maps);
906
907 /* First sanity check the new mapping */
908 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700909 if (!maps[i].dev_name) {
910 pr_err("failed to register map %s (%d): no device given\n",
911 maps[i].name, i);
912 return -EINVAL;
913 }
914
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100915 if (!maps[i].name) {
916 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700917 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100918 return -EINVAL;
919 }
920
Stephen Warren1e2082b2012-03-02 13:05:48 -0700921 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
922 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100923 pr_err("failed to register map %s (%d): no pin control device given\n",
924 maps[i].name, i);
925 return -EINVAL;
926 }
927
Stephen Warren1e2082b2012-03-02 13:05:48 -0700928 switch (maps[i].type) {
929 case PIN_MAP_TYPE_DUMMY_STATE:
930 break;
931 case PIN_MAP_TYPE_MUX_GROUP:
932 ret = pinmux_validate_map(&maps[i], i);
933 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -0600934 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700935 break;
936 case PIN_MAP_TYPE_CONFIGS_PIN:
937 case PIN_MAP_TYPE_CONFIGS_GROUP:
938 ret = pinconf_validate_map(&maps[i], i);
939 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -0600940 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700941 break;
942 default:
943 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700944 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -0700945 return -EINVAL;
946 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100947 }
948
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700949 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
950 if (!maps_node) {
951 pr_err("failed to alloc struct pinctrl_maps\n");
952 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100953 }
954
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700955 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -0600956 if (dup) {
957 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
958 GFP_KERNEL);
959 if (!maps_node->maps) {
960 pr_err("failed to duplicate mapping table\n");
961 kfree(maps_node);
962 return -ENOMEM;
963 }
964 } else {
965 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700966 }
967
Stephen Warren57291ce2012-03-23 10:29:46 -0600968 if (!locked)
969 mutex_lock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700970 list_add_tail(&maps_node->node, &pinctrl_maps);
Stephen Warren57291ce2012-03-23 10:29:46 -0600971 if (!locked)
972 mutex_unlock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700973
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100974 return 0;
975}
976
Stephen Warren57291ce2012-03-23 10:29:46 -0600977/**
978 * pinctrl_register_mappings() - register a set of pin controller mappings
979 * @maps: the pincontrol mappings table to register. This should probably be
980 * marked with __initdata so it can be discarded after boot. This
981 * function will perform a shallow copy for the mapping entries.
982 * @num_maps: the number of maps in the mapping table
983 */
984int pinctrl_register_mappings(struct pinctrl_map const *maps,
985 unsigned num_maps)
986{
987 return pinctrl_register_map(maps, num_maps, true, false);
988}
989
990void pinctrl_unregister_map(struct pinctrl_map const *map)
991{
992 struct pinctrl_maps *maps_node;
993
994 list_for_each_entry(maps_node, &pinctrl_maps, node) {
995 if (maps_node->maps == map) {
996 list_del(&maps_node->node);
997 return;
998 }
999 }
1000}
1001
Linus Walleij2744e8a2011-05-02 20:50:54 +02001002#ifdef CONFIG_DEBUG_FS
1003
1004static int pinctrl_pins_show(struct seq_file *s, void *what)
1005{
1006 struct pinctrl_dev *pctldev = s->private;
1007 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001008 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001009
1010 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001011
Stephen Warren57b676f2012-03-02 13:05:44 -07001012 mutex_lock(&pinctrl_mutex);
1013
Chanho Park706e8522012-01-03 16:47:50 +09001014 /* The pin number can be retrived from the pin controller descriptor */
1015 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001016 struct pin_desc *desc;
1017
Chanho Park706e8522012-01-03 16:47:50 +09001018 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001019 desc = pin_desc_get(pctldev, pin);
1020 /* Pin space may be sparse */
1021 if (desc == NULL)
1022 continue;
1023
1024 seq_printf(s, "pin %d (%s) ", pin,
1025 desc->name ? desc->name : "unnamed");
1026
1027 /* Driver-specific info per pin */
1028 if (ops->pin_dbg_show)
1029 ops->pin_dbg_show(pctldev, s, pin);
1030
1031 seq_puts(s, "\n");
1032 }
1033
Stephen Warren57b676f2012-03-02 13:05:44 -07001034 mutex_unlock(&pinctrl_mutex);
1035
Linus Walleij2744e8a2011-05-02 20:50:54 +02001036 return 0;
1037}
1038
1039static int pinctrl_groups_show(struct seq_file *s, void *what)
1040{
1041 struct pinctrl_dev *pctldev = s->private;
1042 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301043 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001044
Viresh Kumard1e90e92012-03-30 11:25:40 +05301045 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001046 mutex_lock(&pinctrl_mutex);
1047
Linus Walleij2744e8a2011-05-02 20:50:54 +02001048 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301049 while (selector < ngroups) {
Stephen Warrena5818a82011-10-19 16:19:25 -06001050 const unsigned *pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001051 unsigned num_pins;
1052 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001053 const char *pname;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001054 int ret;
1055 int i;
1056
1057 ret = ops->get_group_pins(pctldev, selector,
1058 &pins, &num_pins);
1059 if (ret)
1060 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1061 gname);
1062 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001063 seq_printf(s, "group: %s\n", gname);
1064 for (i = 0; i < num_pins; i++) {
1065 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001066 if (WARN_ON(!pname)) {
1067 mutex_unlock(&pinctrl_mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001068 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001069 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001070 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1071 }
1072 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001073 }
1074 selector++;
1075 }
1076
Stephen Warren57b676f2012-03-02 13:05:44 -07001077 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001078
1079 return 0;
1080}
1081
1082static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1083{
1084 struct pinctrl_dev *pctldev = s->private;
1085 struct pinctrl_gpio_range *range = NULL;
1086
1087 seq_puts(s, "GPIO ranges handled:\n");
1088
Stephen Warren57b676f2012-03-02 13:05:44 -07001089 mutex_lock(&pinctrl_mutex);
1090
Linus Walleij2744e8a2011-05-02 20:50:54 +02001091 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001092 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Linus Walleij75d66422011-11-16 09:58:51 +01001093 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1094 range->id, range->name,
1095 range->base, (range->base + range->npins - 1),
1096 range->pin_base,
1097 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001098 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001099
1100 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001101
1102 return 0;
1103}
1104
1105static int pinctrl_devices_show(struct seq_file *s, void *what)
1106{
1107 struct pinctrl_dev *pctldev;
1108
Linus Walleijae6b4d82011-10-19 18:14:33 +02001109 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001110
1111 mutex_lock(&pinctrl_mutex);
1112
Linus Walleij2744e8a2011-05-02 20:50:54 +02001113 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1114 seq_printf(s, "%s ", pctldev->desc->name);
1115 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001116 seq_puts(s, "yes ");
1117 else
1118 seq_puts(s, "no ");
1119 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001120 seq_puts(s, "yes");
1121 else
1122 seq_puts(s, "no");
1123 seq_puts(s, "\n");
1124 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001125
1126 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001127
1128 return 0;
1129}
1130
Stephen Warren1e2082b2012-03-02 13:05:48 -07001131static inline const char *map_type(enum pinctrl_map_type type)
1132{
1133 static const char * const names[] = {
1134 "INVALID",
1135 "DUMMY_STATE",
1136 "MUX_GROUP",
1137 "CONFIGS_PIN",
1138 "CONFIGS_GROUP",
1139 };
1140
1141 if (type >= ARRAY_SIZE(names))
1142 return "UNKNOWN";
1143
1144 return names[type];
1145}
1146
Stephen Warren3eedb432012-02-23 17:04:40 -07001147static int pinctrl_maps_show(struct seq_file *s, void *what)
1148{
1149 struct pinctrl_maps *maps_node;
1150 int i;
1151 struct pinctrl_map const *map;
1152
1153 seq_puts(s, "Pinctrl maps:\n");
1154
Stephen Warren57b676f2012-03-02 13:05:44 -07001155 mutex_lock(&pinctrl_mutex);
1156
Stephen Warren3eedb432012-02-23 17:04:40 -07001157 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001158 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1159 map->dev_name, map->name, map_type(map->type),
1160 map->type);
1161
1162 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1163 seq_printf(s, "controlling device %s\n",
1164 map->ctrl_dev_name);
1165
1166 switch (map->type) {
1167 case PIN_MAP_TYPE_MUX_GROUP:
1168 pinmux_show_map(s, map);
1169 break;
1170 case PIN_MAP_TYPE_CONFIGS_PIN:
1171 case PIN_MAP_TYPE_CONFIGS_GROUP:
1172 pinconf_show_map(s, map);
1173 break;
1174 default:
1175 break;
1176 }
1177
1178 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001179 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001180
1181 mutex_unlock(&pinctrl_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001182
1183 return 0;
1184}
1185
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001186static int pinctrl_show(struct seq_file *s, void *what)
1187{
1188 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001189 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001190 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001191
1192 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001193
1194 mutex_lock(&pinctrl_mutex);
1195
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001196 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001197 seq_printf(s, "device: %s current state: %s\n",
1198 dev_name(p->dev),
1199 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001200
Stephen Warren6e5e9592012-03-02 13:05:47 -07001201 list_for_each_entry(state, &p->states, node) {
1202 seq_printf(s, " state: %s\n", state->name);
1203
1204 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001205 struct pinctrl_dev *pctldev = setting->pctldev;
1206
1207 seq_printf(s, " type: %s controller %s ",
1208 map_type(setting->type),
1209 pinctrl_dev_get_name(pctldev));
1210
1211 switch (setting->type) {
1212 case PIN_MAP_TYPE_MUX_GROUP:
1213 pinmux_show_setting(s, setting);
1214 break;
1215 case PIN_MAP_TYPE_CONFIGS_PIN:
1216 case PIN_MAP_TYPE_CONFIGS_GROUP:
1217 pinconf_show_setting(s, setting);
1218 break;
1219 default:
1220 break;
1221 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001222 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001223 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001224 }
1225
Stephen Warren57b676f2012-03-02 13:05:44 -07001226 mutex_unlock(&pinctrl_mutex);
1227
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001228 return 0;
1229}
1230
Linus Walleij2744e8a2011-05-02 20:50:54 +02001231static int pinctrl_pins_open(struct inode *inode, struct file *file)
1232{
1233 return single_open(file, pinctrl_pins_show, inode->i_private);
1234}
1235
1236static int pinctrl_groups_open(struct inode *inode, struct file *file)
1237{
1238 return single_open(file, pinctrl_groups_show, inode->i_private);
1239}
1240
1241static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1242{
1243 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1244}
1245
1246static int pinctrl_devices_open(struct inode *inode, struct file *file)
1247{
1248 return single_open(file, pinctrl_devices_show, NULL);
1249}
1250
Stephen Warren3eedb432012-02-23 17:04:40 -07001251static int pinctrl_maps_open(struct inode *inode, struct file *file)
1252{
1253 return single_open(file, pinctrl_maps_show, NULL);
1254}
1255
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001256static int pinctrl_open(struct inode *inode, struct file *file)
1257{
1258 return single_open(file, pinctrl_show, NULL);
1259}
1260
Linus Walleij2744e8a2011-05-02 20:50:54 +02001261static const struct file_operations pinctrl_pins_ops = {
1262 .open = pinctrl_pins_open,
1263 .read = seq_read,
1264 .llseek = seq_lseek,
1265 .release = single_release,
1266};
1267
1268static const struct file_operations pinctrl_groups_ops = {
1269 .open = pinctrl_groups_open,
1270 .read = seq_read,
1271 .llseek = seq_lseek,
1272 .release = single_release,
1273};
1274
1275static const struct file_operations pinctrl_gpioranges_ops = {
1276 .open = pinctrl_gpioranges_open,
1277 .read = seq_read,
1278 .llseek = seq_lseek,
1279 .release = single_release,
1280};
1281
1282static const struct file_operations pinctrl_devices_ops = {
1283 .open = pinctrl_devices_open,
1284 .read = seq_read,
1285 .llseek = seq_lseek,
1286 .release = single_release,
1287};
1288
Stephen Warren3eedb432012-02-23 17:04:40 -07001289static const struct file_operations pinctrl_maps_ops = {
1290 .open = pinctrl_maps_open,
1291 .read = seq_read,
1292 .llseek = seq_lseek,
1293 .release = single_release,
1294};
1295
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001296static const struct file_operations pinctrl_ops = {
1297 .open = pinctrl_open,
1298 .read = seq_read,
1299 .llseek = seq_lseek,
1300 .release = single_release,
1301};
1302
Linus Walleij2744e8a2011-05-02 20:50:54 +02001303static struct dentry *debugfs_root;
1304
1305static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1306{
Tony Lindgren02157162012-01-20 08:17:22 -08001307 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001308
Stephen Warren51cd24e2011-12-09 16:59:05 -07001309 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001310 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001311 pctldev->device_root = device_root;
1312
Linus Walleij2744e8a2011-05-02 20:50:54 +02001313 if (IS_ERR(device_root) || !device_root) {
1314 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001315 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001316 return;
1317 }
1318 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1319 device_root, pctldev, &pinctrl_pins_ops);
1320 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1321 device_root, pctldev, &pinctrl_groups_ops);
1322 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1323 device_root, pctldev, &pinctrl_gpioranges_ops);
1324 pinmux_init_device_debugfs(device_root, pctldev);
Linus Walleijae6b4d82011-10-19 18:14:33 +02001325 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001326}
1327
Tony Lindgren02157162012-01-20 08:17:22 -08001328static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1329{
1330 debugfs_remove_recursive(pctldev->device_root);
1331}
1332
Linus Walleij2744e8a2011-05-02 20:50:54 +02001333static void pinctrl_init_debugfs(void)
1334{
1335 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1336 if (IS_ERR(debugfs_root) || !debugfs_root) {
1337 pr_warn("failed to create debugfs directory\n");
1338 debugfs_root = NULL;
1339 return;
1340 }
1341
1342 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1343 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001344 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1345 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001346 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1347 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001348}
1349
1350#else /* CONFIG_DEBUG_FS */
1351
1352static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1353{
1354}
1355
1356static void pinctrl_init_debugfs(void)
1357{
1358}
1359
Tony Lindgren02157162012-01-20 08:17:22 -08001360static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1361{
1362}
1363
Linus Walleij2744e8a2011-05-02 20:50:54 +02001364#endif
1365
Stephen Warrend26bc492012-03-16 14:54:25 -06001366static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1367{
1368 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1369
1370 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301371 !ops->get_groups_count ||
Stephen Warrend26bc492012-03-16 14:54:25 -06001372 !ops->get_group_name ||
1373 !ops->get_group_pins)
1374 return -EINVAL;
1375
Stephen Warren57291ce2012-03-23 10:29:46 -06001376 if (ops->dt_node_to_map && !ops->dt_free_map)
1377 return -EINVAL;
1378
Stephen Warrend26bc492012-03-16 14:54:25 -06001379 return 0;
1380}
1381
Linus Walleij2744e8a2011-05-02 20:50:54 +02001382/**
1383 * pinctrl_register() - register a pin controller device
1384 * @pctldesc: descriptor for this pin controller
1385 * @dev: parent device for this pin controller
1386 * @driver_data: private pin controller data for this pin controller
1387 */
1388struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1389 struct device *dev, void *driver_data)
1390{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001391 struct pinctrl_dev *pctldev;
1392 int ret;
1393
Devendra Nagada9aecb2012-06-16 23:43:16 +05301394 if (!pctldesc)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001395 return NULL;
Devendra Nagada9aecb2012-06-16 23:43:16 +05301396 if (!pctldesc->name)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001397 return NULL;
1398
Stephen Warren02f5b982012-02-22 14:26:00 -07001399 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001400 if (pctldev == NULL) {
1401 dev_err(dev, "failed to alloc struct pinctrl_dev\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001402 return NULL;
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001403 }
Linus Walleij2744e8a2011-05-02 20:50:54 +02001404
1405 /* Initialize pin control device struct */
1406 pctldev->owner = pctldesc->owner;
1407 pctldev->desc = pctldesc;
1408 pctldev->driver_data = driver_data;
1409 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001410 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001411 pctldev->dev = dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001412
Stephen Warrend26bc492012-03-16 14:54:25 -06001413 /* check core ops for sanity */
Devendra Nagada9aecb2012-06-16 23:43:16 +05301414 if (pinctrl_check_ops(pctldev)) {
John Crispinad6e1102012-04-26 16:47:11 +02001415 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001416 goto out_err;
1417 }
1418
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001419 /* If we're implementing pinmuxing, check the ops for sanity */
1420 if (pctldesc->pmxops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301421 if (pinmux_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001422 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001423 }
1424
1425 /* If we're implementing pinconfig, check the ops for sanity */
1426 if (pctldesc->confops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301427 if (pinconf_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001428 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001429 }
1430
Linus Walleij2744e8a2011-05-02 20:50:54 +02001431 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02001432 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001433 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1434 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001435 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001436 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1437 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001438 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001439 }
1440
Stephen Warren57b676f2012-03-02 13:05:44 -07001441 mutex_lock(&pinctrl_mutex);
1442
Stephen Warren8b9c1392012-02-19 23:45:42 -07001443 list_add_tail(&pctldev->node, &pinctrldev_list);
Stephen Warren57b676f2012-03-02 13:05:44 -07001444
Stephen Warren6e5e9592012-03-02 13:05:47 -07001445 pctldev->p = pinctrl_get_locked(pctldev->dev);
1446 if (!IS_ERR(pctldev->p)) {
1447 struct pinctrl_state *s =
1448 pinctrl_lookup_state_locked(pctldev->p,
1449 PINCTRL_STATE_DEFAULT);
John Crispinad6e1102012-04-26 16:47:11 +02001450 if (IS_ERR(s)) {
1451 dev_dbg(dev, "failed to lookup the default state\n");
1452 } else {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301453 if (pinctrl_select_state_locked(pctldev->p, s))
John Crispinad6e1102012-04-26 16:47:11 +02001454 dev_err(dev,
1455 "failed to select default state\n");
John Crispinad6e1102012-04-26 16:47:11 +02001456 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001457 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001458
1459 mutex_unlock(&pinctrl_mutex);
1460
Stephen Warren2304b472012-02-22 14:26:01 -07001461 pinctrl_init_device_debugfs(pctldev);
1462
Linus Walleij2744e8a2011-05-02 20:50:54 +02001463 return pctldev;
1464
Stephen Warren51cd24e2011-12-09 16:59:05 -07001465out_err:
1466 kfree(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001467 return NULL;
1468}
1469EXPORT_SYMBOL_GPL(pinctrl_register);
1470
1471/**
1472 * pinctrl_unregister() - unregister pinmux
1473 * @pctldev: pin controller to unregister
1474 *
1475 * Called by pinmux drivers to unregister a pinmux.
1476 */
1477void pinctrl_unregister(struct pinctrl_dev *pctldev)
1478{
Dong Aisheng5d589b02012-05-23 21:22:40 +08001479 struct pinctrl_gpio_range *range, *n;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001480 if (pctldev == NULL)
1481 return;
1482
Tony Lindgren02157162012-01-20 08:17:22 -08001483 pinctrl_remove_device_debugfs(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001484
1485 mutex_lock(&pinctrl_mutex);
1486
Stephen Warren6e5e9592012-03-02 13:05:47 -07001487 if (!IS_ERR(pctldev->p))
1488 pinctrl_put_locked(pctldev->p, true);
Stephen Warren57b676f2012-03-02 13:05:44 -07001489
Linus Walleij2744e8a2011-05-02 20:50:54 +02001490 /* TODO: check that no pinmuxes are still active? */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001491 list_del(&pctldev->node);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001492 /* Destroy descriptor tree */
1493 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1494 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08001495 /* remove gpio ranges map */
1496 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
1497 list_del(&range->node);
1498
Stephen Warren51cd24e2011-12-09 16:59:05 -07001499 kfree(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001500
1501 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001502}
1503EXPORT_SYMBOL_GPL(pinctrl_unregister);
1504
1505static int __init pinctrl_init(void)
1506{
1507 pr_info("initialized pinctrl subsystem\n");
1508 pinctrl_init_debugfs();
1509 return 0;
1510}
1511
1512/* init early since many drivers really need to initialized pinmux early */
1513core_initcall(pinctrl_init);