blob: 92f86ab30a1385993ccaaf4b17018f9dad26f9ad [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>
Linus Walleijab780292013-01-22 10:56:14 -070017#include <linux/kref.h>
Stephen Rothwella5a697c2011-09-30 14:39:04 +100018#include <linux/export.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020019#include <linux/init.h>
20#include <linux/device.h>
21#include <linux/slab.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020022#include <linux/err.h>
23#include <linux/list.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020024#include <linux/sysfs.h>
25#include <linux/debugfs.h>
26#include <linux/seq_file.h>
Stephen Warren6d4ca1f2012-04-16 10:51:00 -060027#include <linux/pinctrl/consumer.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020028#include <linux/pinctrl/pinctrl.h>
29#include <linux/pinctrl/machine.h>
Haojian Zhuang2afe8222013-03-28 07:34:19 +080030
31#ifdef CONFIG_GPIOLIB
Haojian Zhuang51e13c22013-02-17 19:42:50 +080032#include <asm-generic/gpio.h>
Haojian Zhuang2afe8222013-03-28 07:34:19 +080033#endif
34
Linus Walleij2744e8a2011-05-02 20:50:54 +020035#include "core.h"
Stephen Warren57291ce2012-03-23 10:29:46 -060036#include "devicetree.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020037#include "pinmux.h"
Linus Walleijae6b4d82011-10-19 18:14:33 +020038#include "pinconf.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020039
Stephen Warrenb2b3e662012-02-19 23:45:43 -070040
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080041static bool pinctrl_dummy_state;
42
Patrice Chotard42fed7b2013-04-11 11:01:27 +020043/* Mutex taken to protect pinctrl_list */
Sachin Kamat843aec92013-06-18 14:34:27 +053044static DEFINE_MUTEX(pinctrl_list_mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +020045
46/* Mutex taken to protect pinctrl_maps */
47DEFINE_MUTEX(pinctrl_maps_mutex);
48
49/* Mutex taken to protect pinctrldev_list */
Sachin Kamat843aec92013-06-18 14:34:27 +053050static DEFINE_MUTEX(pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -070051
52/* Global list of pin control devices (struct pinctrl_dev) */
Patrice Chotard42fed7b2013-04-11 11:01:27 +020053static LIST_HEAD(pinctrldev_list);
Linus Walleij2744e8a2011-05-02 20:50:54 +020054
Stephen Warren57b676f2012-03-02 13:05:44 -070055/* List of pin controller handles (struct pinctrl) */
Linus Walleijbefe5bd2012-02-09 19:47:48 +010056static LIST_HEAD(pinctrl_list);
57
Stephen Warren57b676f2012-03-02 13:05:44 -070058/* List of pinctrl maps (struct pinctrl_maps) */
Laurent Meunier6f9e41f2013-02-06 09:09:44 +010059LIST_HEAD(pinctrl_maps);
Stephen Warrenb2b3e662012-02-19 23:45:43 -070060
Linus Walleijbefe5bd2012-02-09 19:47:48 +010061
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080062/**
63 * pinctrl_provide_dummies() - indicate if pinctrl provides dummy state support
64 *
65 * Usually this function is called by platforms without pinctrl driver support
66 * but run with some shared drivers using pinctrl APIs.
67 * After calling this function, the pinctrl core will return successfully
68 * with creating a dummy state for the driver to keep going smoothly.
69 */
70void pinctrl_provide_dummies(void)
71{
72 pinctrl_dummy_state = true;
73}
74
Linus Walleij2744e8a2011-05-02 20:50:54 +020075const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev)
76{
77 /* We're not allowed to register devices without name */
78 return pctldev->desc->name;
79}
80EXPORT_SYMBOL_GPL(pinctrl_dev_get_name);
81
Haojian Zhuangd6e99ab2013-01-18 15:31:06 +080082const char *pinctrl_dev_get_devname(struct pinctrl_dev *pctldev)
83{
84 return dev_name(pctldev->dev);
85}
86EXPORT_SYMBOL_GPL(pinctrl_dev_get_devname);
87
Linus Walleij2744e8a2011-05-02 20:50:54 +020088void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev)
89{
90 return pctldev->driver_data;
91}
92EXPORT_SYMBOL_GPL(pinctrl_dev_get_drvdata);
93
94/**
Linus Walleij9dfac4f2012-02-01 18:02:47 +010095 * get_pinctrl_dev_from_devname() - look up pin controller device
96 * @devname: the name of a device instance, as returned by dev_name()
Linus Walleij2744e8a2011-05-02 20:50:54 +020097 *
98 * Looks up a pin control device matching a certain device name or pure device
99 * pointer, the pure device pointer will take precedence.
100 */
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100101struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *devname)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200102{
103 struct pinctrl_dev *pctldev = NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200104
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100105 if (!devname)
106 return NULL;
107
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200108 mutex_lock(&pinctrldev_list_mutex);
109
Linus Walleij2744e8a2011-05-02 20:50:54 +0200110 list_for_each_entry(pctldev, &pinctrldev_list, node) {
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100111 if (!strcmp(dev_name(pctldev->dev), devname)) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200112 /* Matched on device name */
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200113 mutex_unlock(&pinctrldev_list_mutex);
114 return pctldev;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200115 }
116 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200117
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200118 mutex_unlock(&pinctrldev_list_mutex);
119
120 return NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200121}
122
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200123struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np)
124{
125 struct pinctrl_dev *pctldev;
126
127 mutex_lock(&pinctrldev_list_mutex);
128
129 list_for_each_entry(pctldev, &pinctrldev_list, node)
130 if (pctldev->dev->of_node == np) {
131 mutex_unlock(&pinctrldev_list_mutex);
132 return pctldev;
133 }
134
Daniel Mackd463f822013-04-26 18:57:02 +0200135 mutex_unlock(&pinctrldev_list_mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200136
137 return NULL;
138}
139
Linus Walleij2744e8a2011-05-02 20:50:54 +0200140/**
Linus Walleijae6b4d82011-10-19 18:14:33 +0200141 * pin_get_from_name() - look up a pin number from a name
142 * @pctldev: the pin control device to lookup the pin on
143 * @name: the name of the pin to look up
144 */
145int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name)
146{
Chanho Park706e8522012-01-03 16:47:50 +0900147 unsigned i, pin;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200148
Chanho Park706e8522012-01-03 16:47:50 +0900149 /* The pin number can be retrived from the pin controller descriptor */
150 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleijae6b4d82011-10-19 18:14:33 +0200151 struct pin_desc *desc;
152
Chanho Park706e8522012-01-03 16:47:50 +0900153 pin = pctldev->desc->pins[i].number;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200154 desc = pin_desc_get(pctldev, pin);
155 /* Pin space may be sparse */
Axel Lin6c325f82013-08-19 10:06:29 +0800156 if (desc && !strcmp(name, desc->name))
Linus Walleijae6b4d82011-10-19 18:14:33 +0200157 return pin;
158 }
159
160 return -EINVAL;
161}
162
163/**
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800164 * pin_get_name_from_id() - look up a pin name from a pin id
165 * @pctldev: the pin control device to lookup the pin on
166 * @name: the name of the pin to look up
167 */
168const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin)
169{
170 const struct pin_desc *desc;
171
172 desc = pin_desc_get(pctldev, pin);
173 if (desc == NULL) {
174 dev_err(pctldev->dev, "failed to get pin(%d) name\n",
175 pin);
176 return NULL;
177 }
178
179 return desc->name;
180}
181
182/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200183 * pin_is_valid() - check if pin exists on controller
184 * @pctldev: the pin control device to check the pin on
185 * @pin: pin to check, use the local pin controller index number
186 *
187 * This tells us whether a certain pin exist on a certain pin controller or
188 * not. Pin lists may be sparse, so some pins may not exist.
189 */
190bool pin_is_valid(struct pinctrl_dev *pctldev, int pin)
191{
192 struct pin_desc *pindesc;
193
194 if (pin < 0)
195 return false;
196
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200197 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200198 pindesc = pin_desc_get(pctldev, pin);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200199 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200200
Stephen Warren57b676f2012-03-02 13:05:44 -0700201 return pindesc != NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200202}
203EXPORT_SYMBOL_GPL(pin_is_valid);
204
205/* Deletes a range of pin descriptors */
206static void pinctrl_free_pindescs(struct pinctrl_dev *pctldev,
207 const struct pinctrl_pin_desc *pins,
208 unsigned num_pins)
209{
210 int i;
211
Linus Walleij2744e8a2011-05-02 20:50:54 +0200212 for (i = 0; i < num_pins; i++) {
213 struct pin_desc *pindesc;
214
215 pindesc = radix_tree_lookup(&pctldev->pin_desc_tree,
216 pins[i].number);
217 if (pindesc != NULL) {
218 radix_tree_delete(&pctldev->pin_desc_tree,
219 pins[i].number);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100220 if (pindesc->dynamic_name)
221 kfree(pindesc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200222 }
223 kfree(pindesc);
224 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200225}
226
227static int pinctrl_register_one_pin(struct pinctrl_dev *pctldev,
228 unsigned number, const char *name)
229{
230 struct pin_desc *pindesc;
231
232 pindesc = pin_desc_get(pctldev, number);
233 if (pindesc != NULL) {
234 pr_err("pin %d already registered on %s\n", number,
235 pctldev->desc->name);
236 return -EINVAL;
237 }
238
239 pindesc = kzalloc(sizeof(*pindesc), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700240 if (pindesc == NULL) {
241 dev_err(pctldev->dev, "failed to alloc struct pin_desc\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200242 return -ENOMEM;
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700243 }
Linus Walleijae6b4d82011-10-19 18:14:33 +0200244
Linus Walleij2744e8a2011-05-02 20:50:54 +0200245 /* Set owner */
246 pindesc->pctldev = pctldev;
247
Stephen Warren9af1e442011-10-19 16:19:27 -0600248 /* Copy basic pin info */
Linus Walleij8dc6ae42012-02-01 18:11:40 +0100249 if (name) {
Linus Walleijca53c5f2011-12-14 20:33:37 +0100250 pindesc->name = name;
251 } else {
252 pindesc->name = kasprintf(GFP_KERNEL, "PIN%u", number);
Sachin Kamateb26cc92012-09-25 12:41:40 +0530253 if (pindesc->name == NULL) {
254 kfree(pindesc);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100255 return -ENOMEM;
Sachin Kamateb26cc92012-09-25 12:41:40 +0530256 }
Linus Walleijca53c5f2011-12-14 20:33:37 +0100257 pindesc->dynamic_name = true;
258 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200259
Linus Walleij2744e8a2011-05-02 20:50:54 +0200260 radix_tree_insert(&pctldev->pin_desc_tree, number, pindesc);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200261 pr_debug("registered pin %d (%s) on %s\n",
Linus Walleijca53c5f2011-12-14 20:33:37 +0100262 number, pindesc->name, pctldev->desc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200263 return 0;
264}
265
266static int pinctrl_register_pins(struct pinctrl_dev *pctldev,
267 struct pinctrl_pin_desc const *pins,
268 unsigned num_descs)
269{
270 unsigned i;
271 int ret = 0;
272
273 for (i = 0; i < num_descs; i++) {
274 ret = pinctrl_register_one_pin(pctldev,
275 pins[i].number, pins[i].name);
276 if (ret)
277 return ret;
278 }
279
280 return 0;
281}
282
283/**
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200284 * gpio_to_pin() - GPIO range GPIO number to pin number translation
285 * @range: GPIO range used for the translation
286 * @gpio: gpio pin to translate to a pin number
287 *
288 * Finds the pin number for a given GPIO using the specified GPIO range
289 * as a base for translation. The distinction between linear GPIO ranges
290 * and pin list based GPIO ranges is managed correctly by this function.
291 *
292 * This function assumes the gpio is part of the specified GPIO range, use
293 * only after making sure this is the case (e.g. by calling it on the
294 * result of successful pinctrl_get_device_gpio_range calls)!
295 */
296static inline int gpio_to_pin(struct pinctrl_gpio_range *range,
297 unsigned int gpio)
298{
299 unsigned int offset = gpio - range->base;
300 if (range->pins)
301 return range->pins[offset];
302 else
303 return range->pin_base + offset;
304}
305
306/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200307 * pinctrl_match_gpio_range() - check if a certain GPIO pin is in range
308 * @pctldev: pin controller device to check
309 * @gpio: gpio pin to check taken from the global GPIO pin space
310 *
311 * Tries to match a GPIO pin number to the ranges handled by a certain pin
312 * controller, return the range or NULL
313 */
314static struct pinctrl_gpio_range *
315pinctrl_match_gpio_range(struct pinctrl_dev *pctldev, unsigned gpio)
316{
317 struct pinctrl_gpio_range *range = NULL;
318
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200319 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200320 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200321 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
322 /* Check if we're in the valid range */
323 if (gpio >= range->base &&
324 gpio < range->base + range->npins) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200325 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200326 return range;
327 }
328 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200329 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200330 return NULL;
331}
332
333/**
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800334 * pinctrl_ready_for_gpio_range() - check if other GPIO pins of
335 * the same GPIO chip are in range
336 * @gpio: gpio pin to check taken from the global GPIO pin space
337 *
338 * This function is complement of pinctrl_match_gpio_range(). If the return
339 * value of pinctrl_match_gpio_range() is NULL, this function could be used
340 * to check whether pinctrl device is ready or not. Maybe some GPIO pins
341 * of the same GPIO chip don't have back-end pinctrl interface.
342 * If the return value is true, it means that pinctrl device is ready & the
343 * certain GPIO pin doesn't have back-end pinctrl device. If the return value
344 * is false, it means that pinctrl device may not be ready.
345 */
Haojian Zhuang2afe8222013-03-28 07:34:19 +0800346#ifdef CONFIG_GPIOLIB
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800347static bool pinctrl_ready_for_gpio_range(unsigned gpio)
348{
349 struct pinctrl_dev *pctldev;
350 struct pinctrl_gpio_range *range = NULL;
351 struct gpio_chip *chip = gpio_to_chip(gpio);
352
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200353 mutex_lock(&pinctrldev_list_mutex);
354
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800355 /* Loop over the pin controllers */
356 list_for_each_entry(pctldev, &pinctrldev_list, node) {
357 /* Loop over the ranges */
Axel Lin5ffbe2e2013-08-18 20:40:29 +0800358 mutex_lock(&pctldev->mutex);
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800359 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
360 /* Check if any gpio range overlapped with gpio chip */
361 if (range->base + range->npins - 1 < chip->base ||
362 range->base > chip->base + chip->ngpio - 1)
363 continue;
Axel Lin5ffbe2e2013-08-18 20:40:29 +0800364 mutex_unlock(&pctldev->mutex);
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200365 mutex_unlock(&pinctrldev_list_mutex);
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800366 return true;
367 }
Axel Lin5ffbe2e2013-08-18 20:40:29 +0800368 mutex_unlock(&pctldev->mutex);
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800369 }
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200370
371 mutex_unlock(&pinctrldev_list_mutex);
372
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800373 return false;
374}
Haojian Zhuang2afe8222013-03-28 07:34:19 +0800375#else
376static bool pinctrl_ready_for_gpio_range(unsigned gpio) { return true; }
377#endif
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800378
379/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200380 * pinctrl_get_device_gpio_range() - find device for GPIO range
381 * @gpio: the pin to locate the pin controller for
382 * @outdev: the pin control device if found
383 * @outrange: the GPIO range if found
384 *
385 * Find the pin controller handling a certain GPIO pin from the pinspace of
386 * the GPIO subsystem, return the device and the matching GPIO range. Returns
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800387 * -EPROBE_DEFER if the GPIO range could not be found in any device since it
388 * may still have not been registered.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200389 */
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700390static int pinctrl_get_device_gpio_range(unsigned gpio,
391 struct pinctrl_dev **outdev,
392 struct pinctrl_gpio_range **outrange)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200393{
394 struct pinctrl_dev *pctldev = NULL;
395
Axel Linf0059022013-08-18 20:34:22 +0800396 mutex_lock(&pinctrldev_list_mutex);
397
Linus Walleij2744e8a2011-05-02 20:50:54 +0200398 /* Loop over the pin controllers */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200399 list_for_each_entry(pctldev, &pinctrldev_list, node) {
400 struct pinctrl_gpio_range *range;
401
402 range = pinctrl_match_gpio_range(pctldev, gpio);
403 if (range != NULL) {
404 *outdev = pctldev;
405 *outrange = range;
Axel Linf0059022013-08-18 20:34:22 +0800406 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200407 return 0;
408 }
409 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200410
Axel Linf0059022013-08-18 20:34:22 +0800411 mutex_unlock(&pinctrldev_list_mutex);
412
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800413 return -EPROBE_DEFER;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200414}
415
416/**
417 * pinctrl_add_gpio_range() - register a GPIO range for a controller
418 * @pctldev: pin controller device to add the range to
419 * @range: the GPIO range to add
420 *
421 * This adds a range of GPIOs to be handled by a certain pin controller. Call
422 * this to register handled ranges after registering your pin controller.
423 */
424void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev,
425 struct pinctrl_gpio_range *range)
426{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200427 mutex_lock(&pctldev->mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -0700428 list_add_tail(&range->node, &pctldev->gpio_ranges);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200429 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200430}
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700431EXPORT_SYMBOL_GPL(pinctrl_add_gpio_range);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200432
Dong Aisheng3e5e00b2012-05-23 21:22:41 +0800433void pinctrl_add_gpio_ranges(struct pinctrl_dev *pctldev,
434 struct pinctrl_gpio_range *ranges,
435 unsigned nranges)
436{
437 int i;
438
439 for (i = 0; i < nranges; i++)
440 pinctrl_add_gpio_range(pctldev, &ranges[i]);
441}
442EXPORT_SYMBOL_GPL(pinctrl_add_gpio_ranges);
443
Linus Walleij192c3692012-11-20 14:03:37 +0100444struct pinctrl_dev *pinctrl_find_and_add_gpio_range(const char *devname,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530445 struct pinctrl_gpio_range *range)
446{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200447 struct pinctrl_dev *pctldev;
448
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200449 pctldev = get_pinctrl_dev_from_devname(devname);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530450
Linus Walleijdfa97512012-11-20 14:54:18 +0100451 /*
452 * If we can't find this device, let's assume that is because
453 * it has not probed yet, so the driver trying to register this
454 * range need to defer probing.
455 */
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200456 if (!pctldev) {
Linus Walleijdfa97512012-11-20 14:54:18 +0100457 return ERR_PTR(-EPROBE_DEFER);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200458 }
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530459 pinctrl_add_gpio_range(pctldev, range);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200460
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530461 return pctldev;
462}
Linus Walleij192c3692012-11-20 14:03:37 +0100463EXPORT_SYMBOL_GPL(pinctrl_find_and_add_gpio_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530464
Linus Walleij2744e8a2011-05-02 20:50:54 +0200465/**
Linus Walleij9afbefb2012-11-20 14:25:07 +0100466 * pinctrl_find_gpio_range_from_pin() - locate the GPIO range for a pin
467 * @pctldev: the pin controller device to look in
468 * @pin: a controller-local number to find the range for
469 */
470struct pinctrl_gpio_range *
471pinctrl_find_gpio_range_from_pin(struct pinctrl_dev *pctldev,
472 unsigned int pin)
473{
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800474 struct pinctrl_gpio_range *range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100475
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200476 mutex_lock(&pctldev->mutex);
Linus Walleij9afbefb2012-11-20 14:25:07 +0100477 /* Loop over the ranges */
478 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
479 /* Check if we're in the valid range */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200480 if (range->pins) {
481 int a;
482 for (a = 0; a < range->npins; a++) {
483 if (range->pins[a] == pin)
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800484 goto out;
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200485 }
486 } else if (pin >= range->pin_base &&
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800487 pin < range->pin_base + range->npins)
488 goto out;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100489 }
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800490 range = NULL;
491out:
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200492 mutex_unlock(&pctldev->mutex);
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800493 return range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100494}
495EXPORT_SYMBOL_GPL(pinctrl_find_gpio_range_from_pin);
496
497/**
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530498 * pinctrl_remove_gpio_range() - remove a range of GPIOs fro a pin controller
499 * @pctldev: pin controller device to remove the range from
500 * @range: the GPIO range to remove
501 */
502void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
503 struct pinctrl_gpio_range *range)
504{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200505 mutex_lock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530506 list_del(&range->node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200507 mutex_unlock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530508}
509EXPORT_SYMBOL_GPL(pinctrl_remove_gpio_range);
510
511/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200512 * pinctrl_get_group_selector() - returns the group selector for a group
513 * @pctldev: the pin controller handling the group
514 * @pin_group: the pin group to look up
515 */
516int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
517 const char *pin_group)
518{
519 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530520 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200521 unsigned group_selector = 0;
522
Viresh Kumard1e90e92012-03-30 11:25:40 +0530523 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200524 const char *gname = pctlops->get_group_name(pctldev,
525 group_selector);
526 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700527 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200528 "found group selector %u for %s\n",
529 group_selector,
530 pin_group);
531 return group_selector;
532 }
533
534 group_selector++;
535 }
536
Stephen Warren51cd24e2011-12-09 16:59:05 -0700537 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200538 pin_group);
539
540 return -EINVAL;
541}
542
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100543/**
544 * pinctrl_request_gpio() - request a single pin to be used in as GPIO
545 * @gpio: the GPIO pin number from the GPIO subsystem number space
546 *
547 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
548 * as part of their gpio_request() semantics, platforms and individual drivers
549 * shall *NOT* request GPIO pins to be muxed in.
550 */
551int pinctrl_request_gpio(unsigned gpio)
552{
553 struct pinctrl_dev *pctldev;
554 struct pinctrl_gpio_range *range;
555 int ret;
556 int pin;
557
558 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700559 if (ret) {
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800560 if (pinctrl_ready_for_gpio_range(gpio))
561 ret = 0;
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800562 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700563 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100564
Axel Lin9b77ace2013-08-19 10:07:46 +0800565 mutex_lock(&pctldev->mutex);
566
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100567 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200568 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100569
Stephen Warren57b676f2012-03-02 13:05:44 -0700570 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
571
Axel Lin9b77ace2013-08-19 10:07:46 +0800572 mutex_unlock(&pctldev->mutex);
573
Stephen Warren57b676f2012-03-02 13:05:44 -0700574 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100575}
576EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
577
578/**
579 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
580 * @gpio: the GPIO pin number from the GPIO subsystem number space
581 *
582 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
583 * as part of their gpio_free() semantics, platforms and individual drivers
584 * shall *NOT* request GPIO pins to be muxed out.
585 */
586void pinctrl_free_gpio(unsigned gpio)
587{
588 struct pinctrl_dev *pctldev;
589 struct pinctrl_gpio_range *range;
590 int ret;
591 int pin;
592
593 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700594 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100595 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700596 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200597 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100598
599 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200600 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100601
Stephen Warren57b676f2012-03-02 13:05:44 -0700602 pinmux_free_gpio(pctldev, pin, range);
603
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200604 mutex_unlock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100605}
606EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
607
608static int pinctrl_gpio_direction(unsigned gpio, bool input)
609{
610 struct pinctrl_dev *pctldev;
611 struct pinctrl_gpio_range *range;
612 int ret;
613 int pin;
614
615 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200616 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100617 return ret;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200618 }
619
620 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100621
622 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200623 pin = gpio_to_pin(range, gpio);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200624 ret = pinmux_gpio_direction(pctldev, range, pin, input);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100625
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200626 mutex_unlock(&pctldev->mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200627
628 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100629}
630
631/**
632 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
633 * @gpio: the GPIO pin number from the GPIO subsystem number space
634 *
635 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
636 * as part of their gpio_direction_input() semantics, platforms and individual
637 * drivers shall *NOT* touch pin control GPIO calls.
638 */
639int pinctrl_gpio_direction_input(unsigned gpio)
640{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200641 return pinctrl_gpio_direction(gpio, true);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100642}
643EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
644
645/**
646 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
647 * @gpio: the GPIO pin number from the GPIO subsystem number space
648 *
649 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
650 * as part of their gpio_direction_output() semantics, platforms and individual
651 * drivers shall *NOT* touch pin control GPIO calls.
652 */
653int pinctrl_gpio_direction_output(unsigned gpio)
654{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200655 return pinctrl_gpio_direction(gpio, false);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100656}
657EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
658
Stephen Warren6e5e9592012-03-02 13:05:47 -0700659static struct pinctrl_state *find_state(struct pinctrl *p,
660 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100661{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700662 struct pinctrl_state *state;
663
664 list_for_each_entry(state, &p->states, node)
665 if (!strcmp(state->name, name))
666 return state;
667
668 return NULL;
669}
670
671static struct pinctrl_state *create_state(struct pinctrl *p,
672 const char *name)
673{
674 struct pinctrl_state *state;
675
676 state = kzalloc(sizeof(*state), GFP_KERNEL);
677 if (state == NULL) {
678 dev_err(p->dev,
679 "failed to alloc struct pinctrl_state\n");
680 return ERR_PTR(-ENOMEM);
681 }
682
683 state->name = name;
684 INIT_LIST_HEAD(&state->settings);
685
686 list_add_tail(&state->node, &p->states);
687
688 return state;
689}
690
691static int add_setting(struct pinctrl *p, struct pinctrl_map const *map)
692{
693 struct pinctrl_state *state;
694 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700695 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700696
697 state = find_state(p, map->name);
698 if (!state)
699 state = create_state(p, map->name);
700 if (IS_ERR(state))
701 return PTR_ERR(state);
702
Stephen Warren1e2082b2012-03-02 13:05:48 -0700703 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
704 return 0;
705
Stephen Warren6e5e9592012-03-02 13:05:47 -0700706 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
707 if (setting == NULL) {
708 dev_err(p->dev,
709 "failed to alloc struct pinctrl_setting\n");
710 return -ENOMEM;
711 }
712
Stephen Warren1e2082b2012-03-02 13:05:48 -0700713 setting->type = map->type;
714
Stephen Warren6e5e9592012-03-02 13:05:47 -0700715 setting->pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
716 if (setting->pctldev == NULL) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700717 kfree(setting);
Linus Walleij89216492012-12-11 14:14:32 +0100718 /* Do not defer probing of hogs (circular loop) */
719 if (!strcmp(map->ctrl_dev_name, map->dev_name))
720 return -ENODEV;
Linus Walleijc05127c2012-04-10 10:00:38 +0200721 /*
722 * OK let us guess that the driver is not there yet, and
723 * let's defer obtaining this pinctrl handle to later...
724 */
Linus Walleij89216492012-12-11 14:14:32 +0100725 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
726 map->ctrl_dev_name);
Linus Walleijc05127c2012-04-10 10:00:38 +0200727 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700728 }
729
Linus Walleij1a789582012-10-17 20:51:54 +0200730 setting->dev_name = map->dev_name;
731
Stephen Warren1e2082b2012-03-02 13:05:48 -0700732 switch (map->type) {
733 case PIN_MAP_TYPE_MUX_GROUP:
734 ret = pinmux_map_to_setting(map, setting);
735 break;
736 case PIN_MAP_TYPE_CONFIGS_PIN:
737 case PIN_MAP_TYPE_CONFIGS_GROUP:
738 ret = pinconf_map_to_setting(map, setting);
739 break;
740 default:
741 ret = -EINVAL;
742 break;
743 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700744 if (ret < 0) {
745 kfree(setting);
746 return ret;
747 }
748
749 list_add_tail(&setting->node, &state->settings);
750
751 return 0;
752}
753
754static struct pinctrl *find_pinctrl(struct device *dev)
755{
756 struct pinctrl *p;
757
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200758 mutex_lock(&pinctrl_list_mutex);
Stephen Warren1e2082b2012-03-02 13:05:48 -0700759 list_for_each_entry(p, &pinctrl_list, node)
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200760 if (p->dev == dev) {
761 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700762 return p;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200763 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700764
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200765 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700766 return NULL;
767}
768
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200769static void pinctrl_free(struct pinctrl *p, bool inlist);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700770
771static struct pinctrl *create_pinctrl(struct device *dev)
772{
773 struct pinctrl *p;
774 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700775 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100776 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700777 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700778 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100779
780 /*
781 * create the state cookie holder struct pinctrl for each
782 * mapping, this is what consumers will get when requesting
783 * a pin control handle with pinctrl_get()
784 */
Stephen Warren02f5b982012-02-22 14:26:00 -0700785 p = kzalloc(sizeof(*p), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700786 if (p == NULL) {
787 dev_err(dev, "failed to alloc struct pinctrl\n");
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100788 return ERR_PTR(-ENOMEM);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700789 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700790 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700791 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -0600792 INIT_LIST_HEAD(&p->dt_maps);
793
794 ret = pinctrl_dt_to_map(p);
795 if (ret < 0) {
796 kfree(p);
797 return ERR_PTR(ret);
798 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700799
800 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100801
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200802 mutex_lock(&pinctrl_maps_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100803 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700804 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -0700805 /* Map must be for this device */
806 if (strcmp(map->dev_name, devname))
807 continue;
808
Stephen Warren6e5e9592012-03-02 13:05:47 -0700809 ret = add_setting(p, map);
Linus Walleij89216492012-12-11 14:14:32 +0100810 /*
811 * At this point the adding of a setting may:
812 *
813 * - Defer, if the pinctrl device is not yet available
814 * - Fail, if the pinctrl device is not yet available,
815 * AND the setting is a hog. We cannot defer that, since
816 * the hog will kick in immediately after the device
817 * is registered.
818 *
819 * If the error returned was not -EPROBE_DEFER then we
820 * accumulate the errors to see if we end up with
821 * an -EPROBE_DEFER later, as that is the worst case.
822 */
823 if (ret == -EPROBE_DEFER) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200824 pinctrl_free(p, false);
825 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700826 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100827 }
828 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200829 mutex_unlock(&pinctrl_maps_mutex);
830
Linus Walleij89216492012-12-11 14:14:32 +0100831 if (ret < 0) {
832 /* If some other error than deferral occured, return here */
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200833 pinctrl_free(p, false);
Linus Walleij89216492012-12-11 14:14:32 +0100834 return ERR_PTR(ret);
835 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100836
Linus Walleijab780292013-01-22 10:56:14 -0700837 kref_init(&p->users);
838
Linus Walleijb0666ba2012-12-11 13:12:35 +0100839 /* Add the pinctrl handle to the global list */
Stephen Warren8b9c1392012-02-19 23:45:42 -0700840 list_add_tail(&p->node, &pinctrl_list);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100841
842 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700843}
Stephen Warren7ecdb162012-03-02 13:05:45 -0700844
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200845/**
846 * pinctrl_get() - retrieves the pinctrl handle for a device
847 * @dev: the device to obtain the handle for
848 */
849struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700850{
851 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700852
Stephen Warren6e5e9592012-03-02 13:05:47 -0700853 if (WARN_ON(!dev))
854 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700855
Linus Walleijab780292013-01-22 10:56:14 -0700856 /*
857 * See if somebody else (such as the device core) has already
858 * obtained a handle to the pinctrl for this device. In that case,
859 * return another pointer to it.
860 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700861 p = find_pinctrl(dev);
Linus Walleijab780292013-01-22 10:56:14 -0700862 if (p != NULL) {
863 dev_dbg(dev, "obtain a copy of previously claimed pinctrl\n");
864 kref_get(&p->users);
865 return p;
866 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700867
Richard Genoudd599bfb2012-08-10 16:53:49 +0200868 return create_pinctrl(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100869}
870EXPORT_SYMBOL_GPL(pinctrl_get);
871
Richard Genoudd3cee8302013-03-25 15:47:21 +0100872static void pinctrl_free_setting(bool disable_setting,
873 struct pinctrl_setting *setting)
874{
875 switch (setting->type) {
876 case PIN_MAP_TYPE_MUX_GROUP:
877 if (disable_setting)
878 pinmux_disable_setting(setting);
879 pinmux_free_setting(setting);
880 break;
881 case PIN_MAP_TYPE_CONFIGS_PIN:
882 case PIN_MAP_TYPE_CONFIGS_GROUP:
883 pinconf_free_setting(setting);
884 break;
885 default:
886 break;
887 }
888}
889
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200890static void pinctrl_free(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -0700891{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700892 struct pinctrl_state *state, *n1;
893 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700894
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200895 mutex_lock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700896 list_for_each_entry_safe(state, n1, &p->states, node) {
897 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Richard Genoudd3cee8302013-03-25 15:47:21 +0100898 pinctrl_free_setting(state == p->state, setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700899 list_del(&setting->node);
900 kfree(setting);
901 }
902 list_del(&state->node);
903 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700904 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700905
Stephen Warren57291ce2012-03-23 10:29:46 -0600906 pinctrl_dt_free_maps(p);
907
Stephen Warren6e5e9592012-03-02 13:05:47 -0700908 if (inlist)
909 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -0700910 kfree(p);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200911 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -0700912}
913
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100914/**
Linus Walleijab780292013-01-22 10:56:14 -0700915 * pinctrl_release() - release the pinctrl handle
916 * @kref: the kref in the pinctrl being released
917 */
Sachin Kamat2917e832013-01-24 15:01:00 +0530918static void pinctrl_release(struct kref *kref)
Linus Walleijab780292013-01-22 10:56:14 -0700919{
920 struct pinctrl *p = container_of(kref, struct pinctrl, users);
921
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200922 pinctrl_free(p, true);
Linus Walleijab780292013-01-22 10:56:14 -0700923}
924
925/**
926 * pinctrl_put() - decrease use count on a previously claimed pinctrl handle
Stephen Warren6e5e9592012-03-02 13:05:47 -0700927 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100928 */
929void pinctrl_put(struct pinctrl *p)
930{
Linus Walleijab780292013-01-22 10:56:14 -0700931 kref_put(&p->users, pinctrl_release);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100932}
933EXPORT_SYMBOL_GPL(pinctrl_put);
934
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200935/**
936 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
937 * @p: the pinctrl handle to retrieve the state from
938 * @name: the state name to retrieve
939 */
940struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p,
941 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -0700942{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700943 struct pinctrl_state *state;
944
945 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800946 if (!state) {
947 if (pinctrl_dummy_state) {
948 /* create dummy state */
949 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
950 name);
951 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +0200952 } else
953 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800954 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700955
956 return state;
957}
Stephen Warren6e5e9592012-03-02 13:05:47 -0700958EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
959
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200960/**
961 * pinctrl_select_state() - select/activate/program a pinctrl state to HW
962 * @p: the pinctrl handle for the device that requests configuration
963 * @state: the state handle to select/activate/program
964 */
965int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700966{
967 struct pinctrl_setting *setting, *setting2;
Richard Genoud50cf7c82013-03-25 15:47:23 +0100968 struct pinctrl_state *old_state = p->state;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700969 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700970
Stephen Warren6e5e9592012-03-02 13:05:47 -0700971 if (p->state == state)
972 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700973
Stephen Warren6e5e9592012-03-02 13:05:47 -0700974 if (p->state) {
975 /*
976 * The set of groups with a mux configuration in the old state
977 * may not be identical to the set of groups with a mux setting
978 * in the new state. While this might be unusual, it's entirely
979 * possible for the "user"-supplied mapping table to be written
980 * that way. For each group that was configured in the old state
981 * but not in the new state, this code puts that group into a
982 * safe/disabled state.
983 */
984 list_for_each_entry(setting, &p->state->settings, node) {
985 bool found = false;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700986 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
987 continue;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700988 list_for_each_entry(setting2, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700989 if (setting2->type != PIN_MAP_TYPE_MUX_GROUP)
990 continue;
991 if (setting2->data.mux.group ==
992 setting->data.mux.group) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700993 found = true;
994 break;
995 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700996 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700997 if (!found)
998 pinmux_disable_setting(setting);
999 }
1000 }
1001
Richard Genoud3102a762013-03-25 15:47:22 +01001002 p->state = NULL;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001003
1004 /* Apply all the settings for the new state */
1005 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001006 switch (setting->type) {
1007 case PIN_MAP_TYPE_MUX_GROUP:
1008 ret = pinmux_enable_setting(setting);
1009 break;
1010 case PIN_MAP_TYPE_CONFIGS_PIN:
1011 case PIN_MAP_TYPE_CONFIGS_GROUP:
1012 ret = pinconf_apply_setting(setting);
1013 break;
1014 default:
1015 ret = -EINVAL;
1016 break;
1017 }
Richard Genoud3102a762013-03-25 15:47:22 +01001018
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001019 if (ret < 0) {
Richard Genoud3102a762013-03-25 15:47:22 +01001020 goto unapply_new_state;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001021 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001022 }
1023
Richard Genoud3102a762013-03-25 15:47:22 +01001024 p->state = state;
1025
Stephen Warren7ecdb162012-03-02 13:05:45 -07001026 return 0;
Richard Genoud3102a762013-03-25 15:47:22 +01001027
1028unapply_new_state:
Richard Genoudda587512013-03-28 12:55:46 +01001029 dev_err(p->dev, "Error applying setting, reverse things back\n");
Richard Genoud3102a762013-03-25 15:47:22 +01001030
Richard Genoud3102a762013-03-25 15:47:22 +01001031 list_for_each_entry(setting2, &state->settings, node) {
1032 if (&setting2->node == &setting->node)
1033 break;
Richard Genoudaf606172013-03-29 10:03:26 +01001034 /*
1035 * All we can do here is pinmux_disable_setting.
1036 * That means that some pins are muxed differently now
1037 * than they were before applying the setting (We can't
1038 * "unmux a pin"!), but it's not a big deal since the pins
1039 * are free to be muxed by another apply_setting.
1040 */
1041 if (setting2->type == PIN_MAP_TYPE_MUX_GROUP)
1042 pinmux_disable_setting(setting2);
Richard Genoud3102a762013-03-25 15:47:22 +01001043 }
Richard Genoud8009d5f2013-03-28 12:55:47 +01001044
Richard Genoud385d9422013-03-29 10:03:27 +01001045 /* There's no infinite recursive loop here because p->state is NULL */
1046 if (old_state)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001047 pinctrl_select_state(p, old_state);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001048
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001049 return ret;
1050}
Stephen Warren6e5e9592012-03-02 13:05:47 -07001051EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001052
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001053static void devm_pinctrl_release(struct device *dev, void *res)
1054{
1055 pinctrl_put(*(struct pinctrl **)res);
1056}
1057
1058/**
1059 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
1060 * @dev: the device to obtain the handle for
1061 *
1062 * If there is a need to explicitly destroy the returned struct pinctrl,
1063 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
1064 */
1065struct pinctrl *devm_pinctrl_get(struct device *dev)
1066{
1067 struct pinctrl **ptr, *p;
1068
1069 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
1070 if (!ptr)
1071 return ERR_PTR(-ENOMEM);
1072
1073 p = pinctrl_get(dev);
1074 if (!IS_ERR(p)) {
1075 *ptr = p;
1076 devres_add(dev, ptr);
1077 } else {
1078 devres_free(ptr);
1079 }
1080
1081 return p;
1082}
1083EXPORT_SYMBOL_GPL(devm_pinctrl_get);
1084
1085static int devm_pinctrl_match(struct device *dev, void *res, void *data)
1086{
1087 struct pinctrl **p = res;
1088
1089 return *p == data;
1090}
1091
1092/**
1093 * devm_pinctrl_put() - Resource managed pinctrl_put()
1094 * @p: the pinctrl handle to release
1095 *
1096 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
1097 * this function will not need to be called and the resource management
1098 * code will ensure that the resource is freed.
1099 */
1100void devm_pinctrl_put(struct pinctrl *p)
1101{
Jingoo Hana72149e2013-02-26 11:34:07 +09001102 WARN_ON(devres_release(p->dev, devm_pinctrl_release,
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001103 devm_pinctrl_match, p));
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001104}
1105EXPORT_SYMBOL_GPL(devm_pinctrl_put);
1106
Stephen Warren57291ce2012-03-23 10:29:46 -06001107int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
1108 bool dup, bool locked)
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001109{
Stephen Warren1e2082b2012-03-02 13:05:48 -07001110 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001111 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001112
1113 pr_debug("add %d pinmux maps\n", num_maps);
1114
1115 /* First sanity check the new mapping */
1116 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001117 if (!maps[i].dev_name) {
1118 pr_err("failed to register map %s (%d): no device given\n",
1119 maps[i].name, i);
1120 return -EINVAL;
1121 }
1122
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001123 if (!maps[i].name) {
1124 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001125 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001126 return -EINVAL;
1127 }
1128
Stephen Warren1e2082b2012-03-02 13:05:48 -07001129 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
1130 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001131 pr_err("failed to register map %s (%d): no pin control device given\n",
1132 maps[i].name, i);
1133 return -EINVAL;
1134 }
1135
Stephen Warren1e2082b2012-03-02 13:05:48 -07001136 switch (maps[i].type) {
1137 case PIN_MAP_TYPE_DUMMY_STATE:
1138 break;
1139 case PIN_MAP_TYPE_MUX_GROUP:
1140 ret = pinmux_validate_map(&maps[i], i);
1141 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001142 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001143 break;
1144 case PIN_MAP_TYPE_CONFIGS_PIN:
1145 case PIN_MAP_TYPE_CONFIGS_GROUP:
1146 ret = pinconf_validate_map(&maps[i], i);
1147 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001148 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001149 break;
1150 default:
1151 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001152 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -07001153 return -EINVAL;
1154 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001155 }
1156
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001157 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
1158 if (!maps_node) {
1159 pr_err("failed to alloc struct pinctrl_maps\n");
1160 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001161 }
1162
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001163 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -06001164 if (dup) {
1165 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
1166 GFP_KERNEL);
1167 if (!maps_node->maps) {
1168 pr_err("failed to duplicate mapping table\n");
1169 kfree(maps_node);
1170 return -ENOMEM;
1171 }
1172 } else {
1173 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001174 }
1175
Stephen Warren57291ce2012-03-23 10:29:46 -06001176 if (!locked)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001177 mutex_lock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001178 list_add_tail(&maps_node->node, &pinctrl_maps);
Stephen Warren57291ce2012-03-23 10:29:46 -06001179 if (!locked)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001180 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001181
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001182 return 0;
1183}
1184
Stephen Warren57291ce2012-03-23 10:29:46 -06001185/**
1186 * pinctrl_register_mappings() - register a set of pin controller mappings
1187 * @maps: the pincontrol mappings table to register. This should probably be
1188 * marked with __initdata so it can be discarded after boot. This
1189 * function will perform a shallow copy for the mapping entries.
1190 * @num_maps: the number of maps in the mapping table
1191 */
1192int pinctrl_register_mappings(struct pinctrl_map const *maps,
1193 unsigned num_maps)
1194{
1195 return pinctrl_register_map(maps, num_maps, true, false);
1196}
1197
1198void pinctrl_unregister_map(struct pinctrl_map const *map)
1199{
1200 struct pinctrl_maps *maps_node;
1201
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001202 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001203 list_for_each_entry(maps_node, &pinctrl_maps, node) {
1204 if (maps_node->maps == map) {
1205 list_del(&maps_node->node);
Linus Walleijdb6c2c62013-07-23 01:43:20 +02001206 kfree(maps_node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001207 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001208 return;
1209 }
1210 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001211 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001212}
1213
Julien Delacou840a47b2012-12-10 14:47:33 +01001214/**
1215 * pinctrl_force_sleep() - turn a given controller device into sleep state
1216 * @pctldev: pin controller device
1217 */
1218int pinctrl_force_sleep(struct pinctrl_dev *pctldev)
1219{
1220 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_sleep))
1221 return pinctrl_select_state(pctldev->p, pctldev->hog_sleep);
1222 return 0;
1223}
1224EXPORT_SYMBOL_GPL(pinctrl_force_sleep);
1225
1226/**
1227 * pinctrl_force_default() - turn a given controller device into default state
1228 * @pctldev: pin controller device
1229 */
1230int pinctrl_force_default(struct pinctrl_dev *pctldev)
1231{
1232 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_default))
1233 return pinctrl_select_state(pctldev->p, pctldev->hog_default);
1234 return 0;
1235}
1236EXPORT_SYMBOL_GPL(pinctrl_force_default);
1237
Linus Walleij14005ee2013-06-05 15:30:33 +02001238#ifdef CONFIG_PM
1239
1240/**
Tony Lindgrenf3333492013-07-18 08:15:04 -07001241 * pinctrl_pm_select_state() - select pinctrl state for PM
1242 * @dev: device to select default state for
1243 * @state: state to set
1244 */
1245static int pinctrl_pm_select_state(struct device *dev,
1246 struct pinctrl_state *state)
1247{
1248 struct dev_pin_info *pins = dev->pins;
1249 int ret;
1250
1251 if (IS_ERR(state))
1252 return 0; /* No such state */
1253 ret = pinctrl_select_state(pins->p, state);
1254 if (ret)
1255 dev_err(dev, "failed to activate pinctrl state %s\n",
1256 state->name);
1257 return ret;
1258}
1259
1260/**
Linus Walleij14005ee2013-06-05 15:30:33 +02001261 * pinctrl_pm_select_default_state() - select default pinctrl state for PM
1262 * @dev: device to select default state for
1263 */
1264int pinctrl_pm_select_default_state(struct device *dev)
1265{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001266 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001267 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001268
1269 return pinctrl_pm_select_state(dev, dev->pins->default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001270}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001271EXPORT_SYMBOL_GPL(pinctrl_pm_select_default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001272
1273/**
1274 * pinctrl_pm_select_sleep_state() - select sleep pinctrl state for PM
1275 * @dev: device to select sleep state for
1276 */
1277int pinctrl_pm_select_sleep_state(struct device *dev)
1278{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001279 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001280 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001281
1282 return pinctrl_pm_select_state(dev, dev->pins->sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001283}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001284EXPORT_SYMBOL_GPL(pinctrl_pm_select_sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001285
1286/**
1287 * pinctrl_pm_select_idle_state() - select idle pinctrl state for PM
1288 * @dev: device to select idle state for
1289 */
1290int pinctrl_pm_select_idle_state(struct device *dev)
1291{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001292 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001293 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001294
1295 return pinctrl_pm_select_state(dev, dev->pins->idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001296}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001297EXPORT_SYMBOL_GPL(pinctrl_pm_select_idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001298#endif
1299
Linus Walleij2744e8a2011-05-02 20:50:54 +02001300#ifdef CONFIG_DEBUG_FS
1301
1302static int pinctrl_pins_show(struct seq_file *s, void *what)
1303{
1304 struct pinctrl_dev *pctldev = s->private;
1305 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001306 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001307
1308 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001309
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001310 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001311
Chanho Park706e8522012-01-03 16:47:50 +09001312 /* The pin number can be retrived from the pin controller descriptor */
1313 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001314 struct pin_desc *desc;
1315
Chanho Park706e8522012-01-03 16:47:50 +09001316 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001317 desc = pin_desc_get(pctldev, pin);
1318 /* Pin space may be sparse */
1319 if (desc == NULL)
1320 continue;
1321
1322 seq_printf(s, "pin %d (%s) ", pin,
1323 desc->name ? desc->name : "unnamed");
1324
1325 /* Driver-specific info per pin */
1326 if (ops->pin_dbg_show)
1327 ops->pin_dbg_show(pctldev, s, pin);
1328
1329 seq_puts(s, "\n");
1330 }
1331
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001332 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001333
Linus Walleij2744e8a2011-05-02 20:50:54 +02001334 return 0;
1335}
1336
1337static int pinctrl_groups_show(struct seq_file *s, void *what)
1338{
1339 struct pinctrl_dev *pctldev = s->private;
1340 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301341 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001342
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001343 mutex_lock(&pctldev->mutex);
1344
Viresh Kumard1e90e92012-03-30 11:25:40 +05301345 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001346
Linus Walleij2744e8a2011-05-02 20:50:54 +02001347 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301348 while (selector < ngroups) {
Stephen Warrena5818a82011-10-19 16:19:25 -06001349 const unsigned *pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001350 unsigned num_pins;
1351 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001352 const char *pname;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001353 int ret;
1354 int i;
1355
1356 ret = ops->get_group_pins(pctldev, selector,
1357 &pins, &num_pins);
1358 if (ret)
1359 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1360 gname);
1361 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001362 seq_printf(s, "group: %s\n", gname);
1363 for (i = 0; i < num_pins; i++) {
1364 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001365 if (WARN_ON(!pname)) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001366 mutex_unlock(&pctldev->mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001367 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001368 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001369 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1370 }
1371 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001372 }
1373 selector++;
1374 }
1375
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001376 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001377
1378 return 0;
1379}
1380
1381static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1382{
1383 struct pinctrl_dev *pctldev = s->private;
1384 struct pinctrl_gpio_range *range = NULL;
1385
1386 seq_puts(s, "GPIO ranges handled:\n");
1387
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001388 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001389
Linus Walleij2744e8a2011-05-02 20:50:54 +02001390 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001391 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Christian Ruppertc8587ee2013-06-13 14:55:31 +02001392 if (range->pins) {
1393 int a;
1394 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS {",
1395 range->id, range->name,
1396 range->base, (range->base + range->npins - 1));
1397 for (a = 0; a < range->npins - 1; a++)
1398 seq_printf(s, "%u, ", range->pins[a]);
1399 seq_printf(s, "%u}\n", range->pins[a]);
1400 }
1401 else
1402 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1403 range->id, range->name,
1404 range->base, (range->base + range->npins - 1),
1405 range->pin_base,
1406 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001407 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001408
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001409 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001410
1411 return 0;
1412}
1413
1414static int pinctrl_devices_show(struct seq_file *s, void *what)
1415{
1416 struct pinctrl_dev *pctldev;
1417
Linus Walleijae6b4d82011-10-19 18:14:33 +02001418 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001419
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001420 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001421
Linus Walleij2744e8a2011-05-02 20:50:54 +02001422 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1423 seq_printf(s, "%s ", pctldev->desc->name);
1424 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001425 seq_puts(s, "yes ");
1426 else
1427 seq_puts(s, "no ");
1428 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001429 seq_puts(s, "yes");
1430 else
1431 seq_puts(s, "no");
1432 seq_puts(s, "\n");
1433 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001434
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001435 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001436
1437 return 0;
1438}
1439
Stephen Warren1e2082b2012-03-02 13:05:48 -07001440static inline const char *map_type(enum pinctrl_map_type type)
1441{
1442 static const char * const names[] = {
1443 "INVALID",
1444 "DUMMY_STATE",
1445 "MUX_GROUP",
1446 "CONFIGS_PIN",
1447 "CONFIGS_GROUP",
1448 };
1449
1450 if (type >= ARRAY_SIZE(names))
1451 return "UNKNOWN";
1452
1453 return names[type];
1454}
1455
Stephen Warren3eedb432012-02-23 17:04:40 -07001456static int pinctrl_maps_show(struct seq_file *s, void *what)
1457{
1458 struct pinctrl_maps *maps_node;
1459 int i;
1460 struct pinctrl_map const *map;
1461
1462 seq_puts(s, "Pinctrl maps:\n");
1463
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001464 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001465 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001466 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1467 map->dev_name, map->name, map_type(map->type),
1468 map->type);
1469
1470 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1471 seq_printf(s, "controlling device %s\n",
1472 map->ctrl_dev_name);
1473
1474 switch (map->type) {
1475 case PIN_MAP_TYPE_MUX_GROUP:
1476 pinmux_show_map(s, map);
1477 break;
1478 case PIN_MAP_TYPE_CONFIGS_PIN:
1479 case PIN_MAP_TYPE_CONFIGS_GROUP:
1480 pinconf_show_map(s, map);
1481 break;
1482 default:
1483 break;
1484 }
1485
1486 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001487 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001488 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001489
1490 return 0;
1491}
1492
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001493static int pinctrl_show(struct seq_file *s, void *what)
1494{
1495 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001496 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001497 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001498
1499 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001500
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001501 mutex_lock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001502
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001503 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001504 seq_printf(s, "device: %s current state: %s\n",
1505 dev_name(p->dev),
1506 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001507
Stephen Warren6e5e9592012-03-02 13:05:47 -07001508 list_for_each_entry(state, &p->states, node) {
1509 seq_printf(s, " state: %s\n", state->name);
1510
1511 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001512 struct pinctrl_dev *pctldev = setting->pctldev;
1513
1514 seq_printf(s, " type: %s controller %s ",
1515 map_type(setting->type),
1516 pinctrl_dev_get_name(pctldev));
1517
1518 switch (setting->type) {
1519 case PIN_MAP_TYPE_MUX_GROUP:
1520 pinmux_show_setting(s, setting);
1521 break;
1522 case PIN_MAP_TYPE_CONFIGS_PIN:
1523 case PIN_MAP_TYPE_CONFIGS_GROUP:
1524 pinconf_show_setting(s, setting);
1525 break;
1526 default:
1527 break;
1528 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001529 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001530 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001531 }
1532
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001533 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001534
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001535 return 0;
1536}
1537
Linus Walleij2744e8a2011-05-02 20:50:54 +02001538static int pinctrl_pins_open(struct inode *inode, struct file *file)
1539{
1540 return single_open(file, pinctrl_pins_show, inode->i_private);
1541}
1542
1543static int pinctrl_groups_open(struct inode *inode, struct file *file)
1544{
1545 return single_open(file, pinctrl_groups_show, inode->i_private);
1546}
1547
1548static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1549{
1550 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1551}
1552
1553static int pinctrl_devices_open(struct inode *inode, struct file *file)
1554{
1555 return single_open(file, pinctrl_devices_show, NULL);
1556}
1557
Stephen Warren3eedb432012-02-23 17:04:40 -07001558static int pinctrl_maps_open(struct inode *inode, struct file *file)
1559{
1560 return single_open(file, pinctrl_maps_show, NULL);
1561}
1562
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001563static int pinctrl_open(struct inode *inode, struct file *file)
1564{
1565 return single_open(file, pinctrl_show, NULL);
1566}
1567
Linus Walleij2744e8a2011-05-02 20:50:54 +02001568static const struct file_operations pinctrl_pins_ops = {
1569 .open = pinctrl_pins_open,
1570 .read = seq_read,
1571 .llseek = seq_lseek,
1572 .release = single_release,
1573};
1574
1575static const struct file_operations pinctrl_groups_ops = {
1576 .open = pinctrl_groups_open,
1577 .read = seq_read,
1578 .llseek = seq_lseek,
1579 .release = single_release,
1580};
1581
1582static const struct file_operations pinctrl_gpioranges_ops = {
1583 .open = pinctrl_gpioranges_open,
1584 .read = seq_read,
1585 .llseek = seq_lseek,
1586 .release = single_release,
1587};
1588
1589static const struct file_operations pinctrl_devices_ops = {
1590 .open = pinctrl_devices_open,
1591 .read = seq_read,
1592 .llseek = seq_lseek,
1593 .release = single_release,
1594};
1595
Stephen Warren3eedb432012-02-23 17:04:40 -07001596static const struct file_operations pinctrl_maps_ops = {
1597 .open = pinctrl_maps_open,
1598 .read = seq_read,
1599 .llseek = seq_lseek,
1600 .release = single_release,
1601};
1602
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001603static const struct file_operations pinctrl_ops = {
1604 .open = pinctrl_open,
1605 .read = seq_read,
1606 .llseek = seq_lseek,
1607 .release = single_release,
1608};
1609
Linus Walleij2744e8a2011-05-02 20:50:54 +02001610static struct dentry *debugfs_root;
1611
1612static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1613{
Tony Lindgren02157162012-01-20 08:17:22 -08001614 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001615
Stephen Warren51cd24e2011-12-09 16:59:05 -07001616 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001617 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001618 pctldev->device_root = device_root;
1619
Linus Walleij2744e8a2011-05-02 20:50:54 +02001620 if (IS_ERR(device_root) || !device_root) {
1621 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001622 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001623 return;
1624 }
1625 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1626 device_root, pctldev, &pinctrl_pins_ops);
1627 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1628 device_root, pctldev, &pinctrl_groups_ops);
1629 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1630 device_root, pctldev, &pinctrl_gpioranges_ops);
1631 pinmux_init_device_debugfs(device_root, pctldev);
Linus Walleijae6b4d82011-10-19 18:14:33 +02001632 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001633}
1634
Tony Lindgren02157162012-01-20 08:17:22 -08001635static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1636{
1637 debugfs_remove_recursive(pctldev->device_root);
1638}
1639
Linus Walleij2744e8a2011-05-02 20:50:54 +02001640static void pinctrl_init_debugfs(void)
1641{
1642 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1643 if (IS_ERR(debugfs_root) || !debugfs_root) {
1644 pr_warn("failed to create debugfs directory\n");
1645 debugfs_root = NULL;
1646 return;
1647 }
1648
1649 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1650 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001651 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1652 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001653 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1654 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001655}
1656
1657#else /* CONFIG_DEBUG_FS */
1658
1659static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1660{
1661}
1662
1663static void pinctrl_init_debugfs(void)
1664{
1665}
1666
Tony Lindgren02157162012-01-20 08:17:22 -08001667static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1668{
1669}
1670
Linus Walleij2744e8a2011-05-02 20:50:54 +02001671#endif
1672
Stephen Warrend26bc492012-03-16 14:54:25 -06001673static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1674{
1675 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1676
1677 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301678 !ops->get_groups_count ||
Stephen Warrend26bc492012-03-16 14:54:25 -06001679 !ops->get_group_name ||
1680 !ops->get_group_pins)
1681 return -EINVAL;
1682
Stephen Warren57291ce2012-03-23 10:29:46 -06001683 if (ops->dt_node_to_map && !ops->dt_free_map)
1684 return -EINVAL;
1685
Stephen Warrend26bc492012-03-16 14:54:25 -06001686 return 0;
1687}
1688
Linus Walleij2744e8a2011-05-02 20:50:54 +02001689/**
1690 * pinctrl_register() - register a pin controller device
1691 * @pctldesc: descriptor for this pin controller
1692 * @dev: parent device for this pin controller
1693 * @driver_data: private pin controller data for this pin controller
1694 */
1695struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1696 struct device *dev, void *driver_data)
1697{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001698 struct pinctrl_dev *pctldev;
1699 int ret;
1700
Devendra Nagada9aecb2012-06-16 23:43:16 +05301701 if (!pctldesc)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001702 return NULL;
Devendra Nagada9aecb2012-06-16 23:43:16 +05301703 if (!pctldesc->name)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001704 return NULL;
1705
Stephen Warren02f5b982012-02-22 14:26:00 -07001706 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001707 if (pctldev == NULL) {
1708 dev_err(dev, "failed to alloc struct pinctrl_dev\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001709 return NULL;
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001710 }
Linus Walleij2744e8a2011-05-02 20:50:54 +02001711
1712 /* Initialize pin control device struct */
1713 pctldev->owner = pctldesc->owner;
1714 pctldev->desc = pctldesc;
1715 pctldev->driver_data = driver_data;
1716 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001717 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001718 pctldev->dev = dev;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001719 mutex_init(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001720
Stephen Warrend26bc492012-03-16 14:54:25 -06001721 /* check core ops for sanity */
Devendra Nagada9aecb2012-06-16 23:43:16 +05301722 if (pinctrl_check_ops(pctldev)) {
John Crispinad6e1102012-04-26 16:47:11 +02001723 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001724 goto out_err;
1725 }
1726
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001727 /* If we're implementing pinmuxing, check the ops for sanity */
1728 if (pctldesc->pmxops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301729 if (pinmux_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001730 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001731 }
1732
1733 /* If we're implementing pinconfig, check the ops for sanity */
1734 if (pctldesc->confops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301735 if (pinconf_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001736 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001737 }
1738
Linus Walleij2744e8a2011-05-02 20:50:54 +02001739 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02001740 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001741 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1742 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001743 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001744 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1745 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001746 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001747 }
1748
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001749 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -07001750 list_add_tail(&pctldev->node, &pinctrldev_list);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001751 mutex_unlock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001752
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001753 pctldev->p = pinctrl_get(pctldev->dev);
1754
Stephen Warren6e5e9592012-03-02 13:05:47 -07001755 if (!IS_ERR(pctldev->p)) {
Julien Delacou840a47b2012-12-10 14:47:33 +01001756 pctldev->hog_default =
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001757 pinctrl_lookup_state(pctldev->p, PINCTRL_STATE_DEFAULT);
Julien Delacou840a47b2012-12-10 14:47:33 +01001758 if (IS_ERR(pctldev->hog_default)) {
John Crispinad6e1102012-04-26 16:47:11 +02001759 dev_dbg(dev, "failed to lookup the default state\n");
1760 } else {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001761 if (pinctrl_select_state(pctldev->p,
Julien Delacou840a47b2012-12-10 14:47:33 +01001762 pctldev->hog_default))
John Crispinad6e1102012-04-26 16:47:11 +02001763 dev_err(dev,
1764 "failed to select default state\n");
John Crispinad6e1102012-04-26 16:47:11 +02001765 }
Julien Delacou840a47b2012-12-10 14:47:33 +01001766
1767 pctldev->hog_sleep =
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001768 pinctrl_lookup_state(pctldev->p,
Julien Delacou840a47b2012-12-10 14:47:33 +01001769 PINCTRL_STATE_SLEEP);
1770 if (IS_ERR(pctldev->hog_sleep))
1771 dev_dbg(dev, "failed to lookup the sleep state\n");
Stephen Warren6e5e9592012-03-02 13:05:47 -07001772 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001773
Stephen Warren2304b472012-02-22 14:26:01 -07001774 pinctrl_init_device_debugfs(pctldev);
1775
Linus Walleij2744e8a2011-05-02 20:50:54 +02001776 return pctldev;
1777
Stephen Warren51cd24e2011-12-09 16:59:05 -07001778out_err:
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001779 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001780 kfree(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001781 return NULL;
1782}
1783EXPORT_SYMBOL_GPL(pinctrl_register);
1784
1785/**
1786 * pinctrl_unregister() - unregister pinmux
1787 * @pctldev: pin controller to unregister
1788 *
1789 * Called by pinmux drivers to unregister a pinmux.
1790 */
1791void pinctrl_unregister(struct pinctrl_dev *pctldev)
1792{
Dong Aisheng5d589b02012-05-23 21:22:40 +08001793 struct pinctrl_gpio_range *range, *n;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001794 if (pctldev == NULL)
1795 return;
1796
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001797 mutex_lock(&pinctrldev_list_mutex);
1798 mutex_lock(&pctldev->mutex);
1799
Tony Lindgren02157162012-01-20 08:17:22 -08001800 pinctrl_remove_device_debugfs(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001801
Stephen Warren6e5e9592012-03-02 13:05:47 -07001802 if (!IS_ERR(pctldev->p))
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001803 pinctrl_put(pctldev->p);
Stephen Warren57b676f2012-03-02 13:05:44 -07001804
Linus Walleij2744e8a2011-05-02 20:50:54 +02001805 /* TODO: check that no pinmuxes are still active? */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001806 list_del(&pctldev->node);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001807 /* Destroy descriptor tree */
1808 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1809 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08001810 /* remove gpio ranges map */
1811 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
1812 list_del(&range->node);
1813
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001814 mutex_unlock(&pctldev->mutex);
1815 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001816 kfree(pctldev);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001817 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001818}
1819EXPORT_SYMBOL_GPL(pinctrl_unregister);
1820
1821static int __init pinctrl_init(void)
1822{
1823 pr_info("initialized pinctrl subsystem\n");
1824 pinctrl_init_debugfs();
1825 return 0;
1826}
1827
1828/* init early since many drivers really need to initialized pinmux early */
1829core_initcall(pinctrl_init);