blob: e4f65510c87e8928666e195b6b76e52cae9252b5 [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
Christian Ruppert586a87e2013-10-15 15:37:54 +0200465int pinctrl_get_group_pins(struct pinctrl_dev *pctldev, const char *pin_group,
466 const unsigned **pins, unsigned *num_pins)
467{
468 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
469 int gs;
470
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +0200471 if (!pctlops->get_group_pins)
472 return -EINVAL;
473
Christian Ruppert586a87e2013-10-15 15:37:54 +0200474 gs = pinctrl_get_group_selector(pctldev, pin_group);
475 if (gs < 0)
476 return gs;
477
478 return pctlops->get_group_pins(pctldev, gs, pins, num_pins);
479}
480EXPORT_SYMBOL_GPL(pinctrl_get_group_pins);
481
Linus Walleij2744e8a2011-05-02 20:50:54 +0200482/**
Linus Walleij9afbefb2012-11-20 14:25:07 +0100483 * pinctrl_find_gpio_range_from_pin() - locate the GPIO range for a pin
484 * @pctldev: the pin controller device to look in
485 * @pin: a controller-local number to find the range for
486 */
487struct pinctrl_gpio_range *
488pinctrl_find_gpio_range_from_pin(struct pinctrl_dev *pctldev,
489 unsigned int pin)
490{
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800491 struct pinctrl_gpio_range *range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100492
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200493 mutex_lock(&pctldev->mutex);
Linus Walleij9afbefb2012-11-20 14:25:07 +0100494 /* Loop over the ranges */
495 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
496 /* Check if we're in the valid range */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200497 if (range->pins) {
498 int a;
499 for (a = 0; a < range->npins; a++) {
500 if (range->pins[a] == pin)
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800501 goto out;
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200502 }
503 } else if (pin >= range->pin_base &&
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800504 pin < range->pin_base + range->npins)
505 goto out;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100506 }
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800507 range = NULL;
508out:
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200509 mutex_unlock(&pctldev->mutex);
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800510 return range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100511}
512EXPORT_SYMBOL_GPL(pinctrl_find_gpio_range_from_pin);
513
514/**
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530515 * pinctrl_remove_gpio_range() - remove a range of GPIOs fro a pin controller
516 * @pctldev: pin controller device to remove the range from
517 * @range: the GPIO range to remove
518 */
519void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
520 struct pinctrl_gpio_range *range)
521{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200522 mutex_lock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530523 list_del(&range->node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200524 mutex_unlock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530525}
526EXPORT_SYMBOL_GPL(pinctrl_remove_gpio_range);
527
528/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200529 * pinctrl_get_group_selector() - returns the group selector for a group
530 * @pctldev: the pin controller handling the group
531 * @pin_group: the pin group to look up
532 */
533int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
534 const char *pin_group)
535{
536 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530537 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200538 unsigned group_selector = 0;
539
Viresh Kumard1e90e92012-03-30 11:25:40 +0530540 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200541 const char *gname = pctlops->get_group_name(pctldev,
542 group_selector);
543 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700544 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200545 "found group selector %u for %s\n",
546 group_selector,
547 pin_group);
548 return group_selector;
549 }
550
551 group_selector++;
552 }
553
Stephen Warren51cd24e2011-12-09 16:59:05 -0700554 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200555 pin_group);
556
557 return -EINVAL;
558}
559
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100560/**
561 * pinctrl_request_gpio() - request a single pin to be used in as GPIO
562 * @gpio: the GPIO pin number from the GPIO subsystem number space
563 *
564 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
565 * as part of their gpio_request() semantics, platforms and individual drivers
566 * shall *NOT* request GPIO pins to be muxed in.
567 */
568int pinctrl_request_gpio(unsigned gpio)
569{
570 struct pinctrl_dev *pctldev;
571 struct pinctrl_gpio_range *range;
572 int ret;
573 int pin;
574
575 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700576 if (ret) {
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800577 if (pinctrl_ready_for_gpio_range(gpio))
578 ret = 0;
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800579 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700580 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100581
Axel Lin9b77ace2013-08-19 10:07:46 +0800582 mutex_lock(&pctldev->mutex);
583
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100584 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200585 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100586
Stephen Warren57b676f2012-03-02 13:05:44 -0700587 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
588
Axel Lin9b77ace2013-08-19 10:07:46 +0800589 mutex_unlock(&pctldev->mutex);
590
Stephen Warren57b676f2012-03-02 13:05:44 -0700591 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100592}
593EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
594
595/**
596 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
597 * @gpio: the GPIO pin number from the GPIO subsystem number space
598 *
599 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
600 * as part of their gpio_free() semantics, platforms and individual drivers
601 * shall *NOT* request GPIO pins to be muxed out.
602 */
603void pinctrl_free_gpio(unsigned gpio)
604{
605 struct pinctrl_dev *pctldev;
606 struct pinctrl_gpio_range *range;
607 int ret;
608 int pin;
609
610 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700611 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100612 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700613 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200614 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100615
616 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200617 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100618
Stephen Warren57b676f2012-03-02 13:05:44 -0700619 pinmux_free_gpio(pctldev, pin, range);
620
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200621 mutex_unlock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100622}
623EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
624
625static int pinctrl_gpio_direction(unsigned gpio, bool input)
626{
627 struct pinctrl_dev *pctldev;
628 struct pinctrl_gpio_range *range;
629 int ret;
630 int pin;
631
632 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200633 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100634 return ret;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200635 }
636
637 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100638
639 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200640 pin = gpio_to_pin(range, gpio);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200641 ret = pinmux_gpio_direction(pctldev, range, pin, input);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100642
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200643 mutex_unlock(&pctldev->mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200644
645 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100646}
647
648/**
649 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
650 * @gpio: the GPIO pin number from the GPIO subsystem number space
651 *
652 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
653 * as part of their gpio_direction_input() semantics, platforms and individual
654 * drivers shall *NOT* touch pin control GPIO calls.
655 */
656int pinctrl_gpio_direction_input(unsigned gpio)
657{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200658 return pinctrl_gpio_direction(gpio, true);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100659}
660EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
661
662/**
663 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
664 * @gpio: the GPIO pin number from the GPIO subsystem number space
665 *
666 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
667 * as part of their gpio_direction_output() semantics, platforms and individual
668 * drivers shall *NOT* touch pin control GPIO calls.
669 */
670int pinctrl_gpio_direction_output(unsigned gpio)
671{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200672 return pinctrl_gpio_direction(gpio, false);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100673}
674EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
675
Stephen Warren6e5e9592012-03-02 13:05:47 -0700676static struct pinctrl_state *find_state(struct pinctrl *p,
677 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100678{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700679 struct pinctrl_state *state;
680
681 list_for_each_entry(state, &p->states, node)
682 if (!strcmp(state->name, name))
683 return state;
684
685 return NULL;
686}
687
688static struct pinctrl_state *create_state(struct pinctrl *p,
689 const char *name)
690{
691 struct pinctrl_state *state;
692
693 state = kzalloc(sizeof(*state), GFP_KERNEL);
694 if (state == NULL) {
695 dev_err(p->dev,
696 "failed to alloc struct pinctrl_state\n");
697 return ERR_PTR(-ENOMEM);
698 }
699
700 state->name = name;
701 INIT_LIST_HEAD(&state->settings);
702
703 list_add_tail(&state->node, &p->states);
704
705 return state;
706}
707
708static int add_setting(struct pinctrl *p, struct pinctrl_map const *map)
709{
710 struct pinctrl_state *state;
711 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700712 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700713
714 state = find_state(p, map->name);
715 if (!state)
716 state = create_state(p, map->name);
717 if (IS_ERR(state))
718 return PTR_ERR(state);
719
Stephen Warren1e2082b2012-03-02 13:05:48 -0700720 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
721 return 0;
722
Stephen Warren6e5e9592012-03-02 13:05:47 -0700723 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
724 if (setting == NULL) {
725 dev_err(p->dev,
726 "failed to alloc struct pinctrl_setting\n");
727 return -ENOMEM;
728 }
729
Stephen Warren1e2082b2012-03-02 13:05:48 -0700730 setting->type = map->type;
731
Stephen Warren6e5e9592012-03-02 13:05:47 -0700732 setting->pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
733 if (setting->pctldev == NULL) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700734 kfree(setting);
Linus Walleij89216492012-12-11 14:14:32 +0100735 /* Do not defer probing of hogs (circular loop) */
736 if (!strcmp(map->ctrl_dev_name, map->dev_name))
737 return -ENODEV;
Linus Walleijc05127c2012-04-10 10:00:38 +0200738 /*
739 * OK let us guess that the driver is not there yet, and
740 * let's defer obtaining this pinctrl handle to later...
741 */
Linus Walleij89216492012-12-11 14:14:32 +0100742 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
743 map->ctrl_dev_name);
Linus Walleijc05127c2012-04-10 10:00:38 +0200744 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700745 }
746
Linus Walleij1a789582012-10-17 20:51:54 +0200747 setting->dev_name = map->dev_name;
748
Stephen Warren1e2082b2012-03-02 13:05:48 -0700749 switch (map->type) {
750 case PIN_MAP_TYPE_MUX_GROUP:
751 ret = pinmux_map_to_setting(map, setting);
752 break;
753 case PIN_MAP_TYPE_CONFIGS_PIN:
754 case PIN_MAP_TYPE_CONFIGS_GROUP:
755 ret = pinconf_map_to_setting(map, setting);
756 break;
757 default:
758 ret = -EINVAL;
759 break;
760 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700761 if (ret < 0) {
762 kfree(setting);
763 return ret;
764 }
765
766 list_add_tail(&setting->node, &state->settings);
767
768 return 0;
769}
770
771static struct pinctrl *find_pinctrl(struct device *dev)
772{
773 struct pinctrl *p;
774
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200775 mutex_lock(&pinctrl_list_mutex);
Stephen Warren1e2082b2012-03-02 13:05:48 -0700776 list_for_each_entry(p, &pinctrl_list, node)
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200777 if (p->dev == dev) {
778 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700779 return p;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200780 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700781
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200782 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700783 return NULL;
784}
785
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200786static void pinctrl_free(struct pinctrl *p, bool inlist);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700787
788static struct pinctrl *create_pinctrl(struct device *dev)
789{
790 struct pinctrl *p;
791 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700792 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100793 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700794 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700795 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100796
797 /*
798 * create the state cookie holder struct pinctrl for each
799 * mapping, this is what consumers will get when requesting
800 * a pin control handle with pinctrl_get()
801 */
Stephen Warren02f5b982012-02-22 14:26:00 -0700802 p = kzalloc(sizeof(*p), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700803 if (p == NULL) {
804 dev_err(dev, "failed to alloc struct pinctrl\n");
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100805 return ERR_PTR(-ENOMEM);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700806 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700807 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700808 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -0600809 INIT_LIST_HEAD(&p->dt_maps);
810
811 ret = pinctrl_dt_to_map(p);
812 if (ret < 0) {
813 kfree(p);
814 return ERR_PTR(ret);
815 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700816
817 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100818
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200819 mutex_lock(&pinctrl_maps_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100820 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700821 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -0700822 /* Map must be for this device */
823 if (strcmp(map->dev_name, devname))
824 continue;
825
Stephen Warren6e5e9592012-03-02 13:05:47 -0700826 ret = add_setting(p, map);
Linus Walleij89216492012-12-11 14:14:32 +0100827 /*
828 * At this point the adding of a setting may:
829 *
830 * - Defer, if the pinctrl device is not yet available
831 * - Fail, if the pinctrl device is not yet available,
832 * AND the setting is a hog. We cannot defer that, since
833 * the hog will kick in immediately after the device
834 * is registered.
835 *
836 * If the error returned was not -EPROBE_DEFER then we
837 * accumulate the errors to see if we end up with
838 * an -EPROBE_DEFER later, as that is the worst case.
839 */
840 if (ret == -EPROBE_DEFER) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200841 pinctrl_free(p, false);
842 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700843 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100844 }
845 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200846 mutex_unlock(&pinctrl_maps_mutex);
847
Linus Walleij89216492012-12-11 14:14:32 +0100848 if (ret < 0) {
849 /* If some other error than deferral occured, return here */
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200850 pinctrl_free(p, false);
Linus Walleij89216492012-12-11 14:14:32 +0100851 return ERR_PTR(ret);
852 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100853
Linus Walleijab780292013-01-22 10:56:14 -0700854 kref_init(&p->users);
855
Linus Walleijb0666ba2012-12-11 13:12:35 +0100856 /* Add the pinctrl handle to the global list */
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +0100857 mutex_lock(&pinctrl_list_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -0700858 list_add_tail(&p->node, &pinctrl_list);
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +0100859 mutex_unlock(&pinctrl_list_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100860
861 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700862}
Stephen Warren7ecdb162012-03-02 13:05:45 -0700863
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200864/**
865 * pinctrl_get() - retrieves the pinctrl handle for a device
866 * @dev: the device to obtain the handle for
867 */
868struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700869{
870 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700871
Stephen Warren6e5e9592012-03-02 13:05:47 -0700872 if (WARN_ON(!dev))
873 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700874
Linus Walleijab780292013-01-22 10:56:14 -0700875 /*
876 * See if somebody else (such as the device core) has already
877 * obtained a handle to the pinctrl for this device. In that case,
878 * return another pointer to it.
879 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700880 p = find_pinctrl(dev);
Linus Walleijab780292013-01-22 10:56:14 -0700881 if (p != NULL) {
882 dev_dbg(dev, "obtain a copy of previously claimed pinctrl\n");
883 kref_get(&p->users);
884 return p;
885 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700886
Richard Genoudd599bfb2012-08-10 16:53:49 +0200887 return create_pinctrl(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100888}
889EXPORT_SYMBOL_GPL(pinctrl_get);
890
Richard Genoudd3cee8302013-03-25 15:47:21 +0100891static void pinctrl_free_setting(bool disable_setting,
892 struct pinctrl_setting *setting)
893{
894 switch (setting->type) {
895 case PIN_MAP_TYPE_MUX_GROUP:
896 if (disable_setting)
897 pinmux_disable_setting(setting);
898 pinmux_free_setting(setting);
899 break;
900 case PIN_MAP_TYPE_CONFIGS_PIN:
901 case PIN_MAP_TYPE_CONFIGS_GROUP:
902 pinconf_free_setting(setting);
903 break;
904 default:
905 break;
906 }
907}
908
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200909static void pinctrl_free(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -0700910{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700911 struct pinctrl_state *state, *n1;
912 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700913
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200914 mutex_lock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700915 list_for_each_entry_safe(state, n1, &p->states, node) {
916 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Richard Genoudd3cee8302013-03-25 15:47:21 +0100917 pinctrl_free_setting(state == p->state, setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700918 list_del(&setting->node);
919 kfree(setting);
920 }
921 list_del(&state->node);
922 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700923 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700924
Stephen Warren57291ce2012-03-23 10:29:46 -0600925 pinctrl_dt_free_maps(p);
926
Stephen Warren6e5e9592012-03-02 13:05:47 -0700927 if (inlist)
928 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -0700929 kfree(p);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200930 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -0700931}
932
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100933/**
Linus Walleijab780292013-01-22 10:56:14 -0700934 * pinctrl_release() - release the pinctrl handle
935 * @kref: the kref in the pinctrl being released
936 */
Sachin Kamat2917e832013-01-24 15:01:00 +0530937static void pinctrl_release(struct kref *kref)
Linus Walleijab780292013-01-22 10:56:14 -0700938{
939 struct pinctrl *p = container_of(kref, struct pinctrl, users);
940
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200941 pinctrl_free(p, true);
Linus Walleijab780292013-01-22 10:56:14 -0700942}
943
944/**
945 * pinctrl_put() - decrease use count on a previously claimed pinctrl handle
Stephen Warren6e5e9592012-03-02 13:05:47 -0700946 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100947 */
948void pinctrl_put(struct pinctrl *p)
949{
Linus Walleijab780292013-01-22 10:56:14 -0700950 kref_put(&p->users, pinctrl_release);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100951}
952EXPORT_SYMBOL_GPL(pinctrl_put);
953
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200954/**
955 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
956 * @p: the pinctrl handle to retrieve the state from
957 * @name: the state name to retrieve
958 */
959struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p,
960 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -0700961{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700962 struct pinctrl_state *state;
963
964 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800965 if (!state) {
966 if (pinctrl_dummy_state) {
967 /* create dummy state */
968 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
969 name);
970 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +0200971 } else
972 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800973 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700974
975 return state;
976}
Stephen Warren6e5e9592012-03-02 13:05:47 -0700977EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
978
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200979/**
980 * pinctrl_select_state() - select/activate/program a pinctrl state to HW
981 * @p: the pinctrl handle for the device that requests configuration
982 * @state: the state handle to select/activate/program
983 */
984int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700985{
986 struct pinctrl_setting *setting, *setting2;
Richard Genoud50cf7c82013-03-25 15:47:23 +0100987 struct pinctrl_state *old_state = p->state;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700988 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700989
Stephen Warren6e5e9592012-03-02 13:05:47 -0700990 if (p->state == state)
991 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700992
Stephen Warren6e5e9592012-03-02 13:05:47 -0700993 if (p->state) {
994 /*
Fan Wu2243a872014-06-09 09:37:56 +0800995 * For each pinmux setting in the old state, forget SW's record
996 * of mux owner for that pingroup. Any pingroups which are
997 * still owned by the new state will be re-acquired by the call
998 * to pinmux_enable_setting() in the loop below.
Stephen Warren6e5e9592012-03-02 13:05:47 -0700999 */
1000 list_for_each_entry(setting, &p->state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001001 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
1002 continue;
Fan Wu2243a872014-06-09 09:37:56 +08001003 pinmux_disable_setting(setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001004 }
1005 }
1006
Richard Genoud3102a762013-03-25 15:47:22 +01001007 p->state = NULL;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001008
1009 /* Apply all the settings for the new state */
1010 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001011 switch (setting->type) {
1012 case PIN_MAP_TYPE_MUX_GROUP:
1013 ret = pinmux_enable_setting(setting);
1014 break;
1015 case PIN_MAP_TYPE_CONFIGS_PIN:
1016 case PIN_MAP_TYPE_CONFIGS_GROUP:
1017 ret = pinconf_apply_setting(setting);
1018 break;
1019 default:
1020 ret = -EINVAL;
1021 break;
1022 }
Richard Genoud3102a762013-03-25 15:47:22 +01001023
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001024 if (ret < 0) {
Richard Genoud3102a762013-03-25 15:47:22 +01001025 goto unapply_new_state;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001026 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001027 }
1028
Richard Genoud3102a762013-03-25 15:47:22 +01001029 p->state = state;
1030
Stephen Warren7ecdb162012-03-02 13:05:45 -07001031 return 0;
Richard Genoud3102a762013-03-25 15:47:22 +01001032
1033unapply_new_state:
Richard Genoudda587512013-03-28 12:55:46 +01001034 dev_err(p->dev, "Error applying setting, reverse things back\n");
Richard Genoud3102a762013-03-25 15:47:22 +01001035
Richard Genoud3102a762013-03-25 15:47:22 +01001036 list_for_each_entry(setting2, &state->settings, node) {
1037 if (&setting2->node == &setting->node)
1038 break;
Richard Genoudaf606172013-03-29 10:03:26 +01001039 /*
1040 * All we can do here is pinmux_disable_setting.
1041 * That means that some pins are muxed differently now
1042 * than they were before applying the setting (We can't
1043 * "unmux a pin"!), but it's not a big deal since the pins
1044 * are free to be muxed by another apply_setting.
1045 */
1046 if (setting2->type == PIN_MAP_TYPE_MUX_GROUP)
1047 pinmux_disable_setting(setting2);
Richard Genoud3102a762013-03-25 15:47:22 +01001048 }
Richard Genoud8009d5f2013-03-28 12:55:47 +01001049
Richard Genoud385d9422013-03-29 10:03:27 +01001050 /* There's no infinite recursive loop here because p->state is NULL */
1051 if (old_state)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001052 pinctrl_select_state(p, old_state);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001053
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001054 return ret;
1055}
Stephen Warren6e5e9592012-03-02 13:05:47 -07001056EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001057
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001058static void devm_pinctrl_release(struct device *dev, void *res)
1059{
1060 pinctrl_put(*(struct pinctrl **)res);
1061}
1062
1063/**
1064 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
1065 * @dev: the device to obtain the handle for
1066 *
1067 * If there is a need to explicitly destroy the returned struct pinctrl,
1068 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
1069 */
1070struct pinctrl *devm_pinctrl_get(struct device *dev)
1071{
1072 struct pinctrl **ptr, *p;
1073
1074 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
1075 if (!ptr)
1076 return ERR_PTR(-ENOMEM);
1077
1078 p = pinctrl_get(dev);
1079 if (!IS_ERR(p)) {
1080 *ptr = p;
1081 devres_add(dev, ptr);
1082 } else {
1083 devres_free(ptr);
1084 }
1085
1086 return p;
1087}
1088EXPORT_SYMBOL_GPL(devm_pinctrl_get);
1089
1090static int devm_pinctrl_match(struct device *dev, void *res, void *data)
1091{
1092 struct pinctrl **p = res;
1093
1094 return *p == data;
1095}
1096
1097/**
1098 * devm_pinctrl_put() - Resource managed pinctrl_put()
1099 * @p: the pinctrl handle to release
1100 *
1101 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
1102 * this function will not need to be called and the resource management
1103 * code will ensure that the resource is freed.
1104 */
1105void devm_pinctrl_put(struct pinctrl *p)
1106{
Jingoo Hana72149e2013-02-26 11:34:07 +09001107 WARN_ON(devres_release(p->dev, devm_pinctrl_release,
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001108 devm_pinctrl_match, p));
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001109}
1110EXPORT_SYMBOL_GPL(devm_pinctrl_put);
1111
Stephen Warren57291ce2012-03-23 10:29:46 -06001112int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
1113 bool dup, bool locked)
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001114{
Stephen Warren1e2082b2012-03-02 13:05:48 -07001115 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001116 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001117
1118 pr_debug("add %d pinmux maps\n", num_maps);
1119
1120 /* First sanity check the new mapping */
1121 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001122 if (!maps[i].dev_name) {
1123 pr_err("failed to register map %s (%d): no device given\n",
1124 maps[i].name, i);
1125 return -EINVAL;
1126 }
1127
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001128 if (!maps[i].name) {
1129 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001130 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001131 return -EINVAL;
1132 }
1133
Stephen Warren1e2082b2012-03-02 13:05:48 -07001134 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
1135 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001136 pr_err("failed to register map %s (%d): no pin control device given\n",
1137 maps[i].name, i);
1138 return -EINVAL;
1139 }
1140
Stephen Warren1e2082b2012-03-02 13:05:48 -07001141 switch (maps[i].type) {
1142 case PIN_MAP_TYPE_DUMMY_STATE:
1143 break;
1144 case PIN_MAP_TYPE_MUX_GROUP:
1145 ret = pinmux_validate_map(&maps[i], i);
1146 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001147 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001148 break;
1149 case PIN_MAP_TYPE_CONFIGS_PIN:
1150 case PIN_MAP_TYPE_CONFIGS_GROUP:
1151 ret = pinconf_validate_map(&maps[i], i);
1152 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001153 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001154 break;
1155 default:
1156 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001157 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -07001158 return -EINVAL;
1159 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001160 }
1161
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001162 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
1163 if (!maps_node) {
1164 pr_err("failed to alloc struct pinctrl_maps\n");
1165 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001166 }
1167
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001168 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -06001169 if (dup) {
1170 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
1171 GFP_KERNEL);
1172 if (!maps_node->maps) {
1173 pr_err("failed to duplicate mapping table\n");
1174 kfree(maps_node);
1175 return -ENOMEM;
1176 }
1177 } else {
1178 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001179 }
1180
Stephen Warren57291ce2012-03-23 10:29:46 -06001181 if (!locked)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001182 mutex_lock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001183 list_add_tail(&maps_node->node, &pinctrl_maps);
Stephen Warren57291ce2012-03-23 10:29:46 -06001184 if (!locked)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001185 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001186
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001187 return 0;
1188}
1189
Stephen Warren57291ce2012-03-23 10:29:46 -06001190/**
1191 * pinctrl_register_mappings() - register a set of pin controller mappings
1192 * @maps: the pincontrol mappings table to register. This should probably be
1193 * marked with __initdata so it can be discarded after boot. This
1194 * function will perform a shallow copy for the mapping entries.
1195 * @num_maps: the number of maps in the mapping table
1196 */
1197int pinctrl_register_mappings(struct pinctrl_map const *maps,
1198 unsigned num_maps)
1199{
1200 return pinctrl_register_map(maps, num_maps, true, false);
1201}
1202
1203void pinctrl_unregister_map(struct pinctrl_map const *map)
1204{
1205 struct pinctrl_maps *maps_node;
1206
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001207 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001208 list_for_each_entry(maps_node, &pinctrl_maps, node) {
1209 if (maps_node->maps == map) {
1210 list_del(&maps_node->node);
Linus Walleijdb6c2c62013-07-23 01:43:20 +02001211 kfree(maps_node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001212 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001213 return;
1214 }
1215 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001216 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001217}
1218
Julien Delacou840a47b2012-12-10 14:47:33 +01001219/**
1220 * pinctrl_force_sleep() - turn a given controller device into sleep state
1221 * @pctldev: pin controller device
1222 */
1223int pinctrl_force_sleep(struct pinctrl_dev *pctldev)
1224{
1225 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_sleep))
1226 return pinctrl_select_state(pctldev->p, pctldev->hog_sleep);
1227 return 0;
1228}
1229EXPORT_SYMBOL_GPL(pinctrl_force_sleep);
1230
1231/**
1232 * pinctrl_force_default() - turn a given controller device into default state
1233 * @pctldev: pin controller device
1234 */
1235int pinctrl_force_default(struct pinctrl_dev *pctldev)
1236{
1237 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_default))
1238 return pinctrl_select_state(pctldev->p, pctldev->hog_default);
1239 return 0;
1240}
1241EXPORT_SYMBOL_GPL(pinctrl_force_default);
1242
Linus Walleij14005ee2013-06-05 15:30:33 +02001243#ifdef CONFIG_PM
1244
1245/**
Tony Lindgrenf3333492013-07-18 08:15:04 -07001246 * pinctrl_pm_select_state() - select pinctrl state for PM
1247 * @dev: device to select default state for
1248 * @state: state to set
1249 */
1250static int pinctrl_pm_select_state(struct device *dev,
1251 struct pinctrl_state *state)
1252{
1253 struct dev_pin_info *pins = dev->pins;
1254 int ret;
1255
1256 if (IS_ERR(state))
1257 return 0; /* No such state */
1258 ret = pinctrl_select_state(pins->p, state);
1259 if (ret)
1260 dev_err(dev, "failed to activate pinctrl state %s\n",
1261 state->name);
1262 return ret;
1263}
1264
1265/**
Linus Walleij14005ee2013-06-05 15:30:33 +02001266 * pinctrl_pm_select_default_state() - select default pinctrl state for PM
1267 * @dev: device to select default state for
1268 */
1269int pinctrl_pm_select_default_state(struct device *dev)
1270{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001271 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001272 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001273
1274 return pinctrl_pm_select_state(dev, dev->pins->default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001275}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001276EXPORT_SYMBOL_GPL(pinctrl_pm_select_default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001277
1278/**
1279 * pinctrl_pm_select_sleep_state() - select sleep pinctrl state for PM
1280 * @dev: device to select sleep state for
1281 */
1282int pinctrl_pm_select_sleep_state(struct device *dev)
1283{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001284 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001285 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001286
1287 return pinctrl_pm_select_state(dev, dev->pins->sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001288}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001289EXPORT_SYMBOL_GPL(pinctrl_pm_select_sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001290
1291/**
1292 * pinctrl_pm_select_idle_state() - select idle pinctrl state for PM
1293 * @dev: device to select idle state for
1294 */
1295int pinctrl_pm_select_idle_state(struct device *dev)
1296{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001297 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001298 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001299
1300 return pinctrl_pm_select_state(dev, dev->pins->idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001301}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001302EXPORT_SYMBOL_GPL(pinctrl_pm_select_idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001303#endif
1304
Linus Walleij2744e8a2011-05-02 20:50:54 +02001305#ifdef CONFIG_DEBUG_FS
1306
1307static int pinctrl_pins_show(struct seq_file *s, void *what)
1308{
1309 struct pinctrl_dev *pctldev = s->private;
1310 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001311 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001312
1313 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001314
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001315 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001316
Chanho Park706e8522012-01-03 16:47:50 +09001317 /* The pin number can be retrived from the pin controller descriptor */
1318 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001319 struct pin_desc *desc;
1320
Chanho Park706e8522012-01-03 16:47:50 +09001321 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001322 desc = pin_desc_get(pctldev, pin);
1323 /* Pin space may be sparse */
1324 if (desc == NULL)
1325 continue;
1326
1327 seq_printf(s, "pin %d (%s) ", pin,
1328 desc->name ? desc->name : "unnamed");
1329
1330 /* Driver-specific info per pin */
1331 if (ops->pin_dbg_show)
1332 ops->pin_dbg_show(pctldev, s, pin);
1333
1334 seq_puts(s, "\n");
1335 }
1336
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001337 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001338
Linus Walleij2744e8a2011-05-02 20:50:54 +02001339 return 0;
1340}
1341
1342static int pinctrl_groups_show(struct seq_file *s, void *what)
1343{
1344 struct pinctrl_dev *pctldev = s->private;
1345 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301346 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001347
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001348 mutex_lock(&pctldev->mutex);
1349
Viresh Kumard1e90e92012-03-30 11:25:40 +05301350 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001351
Linus Walleij2744e8a2011-05-02 20:50:54 +02001352 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301353 while (selector < ngroups) {
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001354 const unsigned *pins = NULL;
1355 unsigned num_pins = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001356 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001357 const char *pname;
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001358 int ret = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001359 int i;
1360
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001361 if (ops->get_group_pins)
1362 ret = ops->get_group_pins(pctldev, selector,
1363 &pins, &num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001364 if (ret)
1365 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1366 gname);
1367 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001368 seq_printf(s, "group: %s\n", gname);
1369 for (i = 0; i < num_pins; i++) {
1370 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001371 if (WARN_ON(!pname)) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001372 mutex_unlock(&pctldev->mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001373 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001374 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001375 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1376 }
1377 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001378 }
1379 selector++;
1380 }
1381
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001382 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001383
1384 return 0;
1385}
1386
1387static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1388{
1389 struct pinctrl_dev *pctldev = s->private;
1390 struct pinctrl_gpio_range *range = NULL;
1391
1392 seq_puts(s, "GPIO ranges handled:\n");
1393
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001394 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001395
Linus Walleij2744e8a2011-05-02 20:50:54 +02001396 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001397 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Christian Ruppertc8587ee2013-06-13 14:55:31 +02001398 if (range->pins) {
1399 int a;
1400 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS {",
1401 range->id, range->name,
1402 range->base, (range->base + range->npins - 1));
1403 for (a = 0; a < range->npins - 1; a++)
1404 seq_printf(s, "%u, ", range->pins[a]);
1405 seq_printf(s, "%u}\n", range->pins[a]);
1406 }
1407 else
1408 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1409 range->id, range->name,
1410 range->base, (range->base + range->npins - 1),
1411 range->pin_base,
1412 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001413 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001414
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001415 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001416
1417 return 0;
1418}
1419
1420static int pinctrl_devices_show(struct seq_file *s, void *what)
1421{
1422 struct pinctrl_dev *pctldev;
1423
Linus Walleijae6b4d82011-10-19 18:14:33 +02001424 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001425
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001426 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001427
Linus Walleij2744e8a2011-05-02 20:50:54 +02001428 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1429 seq_printf(s, "%s ", pctldev->desc->name);
1430 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001431 seq_puts(s, "yes ");
1432 else
1433 seq_puts(s, "no ");
1434 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001435 seq_puts(s, "yes");
1436 else
1437 seq_puts(s, "no");
1438 seq_puts(s, "\n");
1439 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001440
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001441 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001442
1443 return 0;
1444}
1445
Stephen Warren1e2082b2012-03-02 13:05:48 -07001446static inline const char *map_type(enum pinctrl_map_type type)
1447{
1448 static const char * const names[] = {
1449 "INVALID",
1450 "DUMMY_STATE",
1451 "MUX_GROUP",
1452 "CONFIGS_PIN",
1453 "CONFIGS_GROUP",
1454 };
1455
1456 if (type >= ARRAY_SIZE(names))
1457 return "UNKNOWN";
1458
1459 return names[type];
1460}
1461
Stephen Warren3eedb432012-02-23 17:04:40 -07001462static int pinctrl_maps_show(struct seq_file *s, void *what)
1463{
1464 struct pinctrl_maps *maps_node;
1465 int i;
1466 struct pinctrl_map const *map;
1467
1468 seq_puts(s, "Pinctrl maps:\n");
1469
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001470 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001471 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001472 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1473 map->dev_name, map->name, map_type(map->type),
1474 map->type);
1475
1476 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1477 seq_printf(s, "controlling device %s\n",
1478 map->ctrl_dev_name);
1479
1480 switch (map->type) {
1481 case PIN_MAP_TYPE_MUX_GROUP:
1482 pinmux_show_map(s, map);
1483 break;
1484 case PIN_MAP_TYPE_CONFIGS_PIN:
1485 case PIN_MAP_TYPE_CONFIGS_GROUP:
1486 pinconf_show_map(s, map);
1487 break;
1488 default:
1489 break;
1490 }
1491
1492 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001493 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001494 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001495
1496 return 0;
1497}
1498
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001499static int pinctrl_show(struct seq_file *s, void *what)
1500{
1501 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001502 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001503 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001504
1505 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001506
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001507 mutex_lock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001508
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001509 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001510 seq_printf(s, "device: %s current state: %s\n",
1511 dev_name(p->dev),
1512 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001513
Stephen Warren6e5e9592012-03-02 13:05:47 -07001514 list_for_each_entry(state, &p->states, node) {
1515 seq_printf(s, " state: %s\n", state->name);
1516
1517 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001518 struct pinctrl_dev *pctldev = setting->pctldev;
1519
1520 seq_printf(s, " type: %s controller %s ",
1521 map_type(setting->type),
1522 pinctrl_dev_get_name(pctldev));
1523
1524 switch (setting->type) {
1525 case PIN_MAP_TYPE_MUX_GROUP:
1526 pinmux_show_setting(s, setting);
1527 break;
1528 case PIN_MAP_TYPE_CONFIGS_PIN:
1529 case PIN_MAP_TYPE_CONFIGS_GROUP:
1530 pinconf_show_setting(s, setting);
1531 break;
1532 default:
1533 break;
1534 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001535 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001536 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001537 }
1538
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001539 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001540
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001541 return 0;
1542}
1543
Linus Walleij2744e8a2011-05-02 20:50:54 +02001544static int pinctrl_pins_open(struct inode *inode, struct file *file)
1545{
1546 return single_open(file, pinctrl_pins_show, inode->i_private);
1547}
1548
1549static int pinctrl_groups_open(struct inode *inode, struct file *file)
1550{
1551 return single_open(file, pinctrl_groups_show, inode->i_private);
1552}
1553
1554static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1555{
1556 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1557}
1558
1559static int pinctrl_devices_open(struct inode *inode, struct file *file)
1560{
1561 return single_open(file, pinctrl_devices_show, NULL);
1562}
1563
Stephen Warren3eedb432012-02-23 17:04:40 -07001564static int pinctrl_maps_open(struct inode *inode, struct file *file)
1565{
1566 return single_open(file, pinctrl_maps_show, NULL);
1567}
1568
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001569static int pinctrl_open(struct inode *inode, struct file *file)
1570{
1571 return single_open(file, pinctrl_show, NULL);
1572}
1573
Linus Walleij2744e8a2011-05-02 20:50:54 +02001574static const struct file_operations pinctrl_pins_ops = {
1575 .open = pinctrl_pins_open,
1576 .read = seq_read,
1577 .llseek = seq_lseek,
1578 .release = single_release,
1579};
1580
1581static const struct file_operations pinctrl_groups_ops = {
1582 .open = pinctrl_groups_open,
1583 .read = seq_read,
1584 .llseek = seq_lseek,
1585 .release = single_release,
1586};
1587
1588static const struct file_operations pinctrl_gpioranges_ops = {
1589 .open = pinctrl_gpioranges_open,
1590 .read = seq_read,
1591 .llseek = seq_lseek,
1592 .release = single_release,
1593};
1594
1595static const struct file_operations pinctrl_devices_ops = {
1596 .open = pinctrl_devices_open,
1597 .read = seq_read,
1598 .llseek = seq_lseek,
1599 .release = single_release,
1600};
1601
Stephen Warren3eedb432012-02-23 17:04:40 -07001602static const struct file_operations pinctrl_maps_ops = {
1603 .open = pinctrl_maps_open,
1604 .read = seq_read,
1605 .llseek = seq_lseek,
1606 .release = single_release,
1607};
1608
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001609static const struct file_operations pinctrl_ops = {
1610 .open = pinctrl_open,
1611 .read = seq_read,
1612 .llseek = seq_lseek,
1613 .release = single_release,
1614};
1615
Linus Walleij2744e8a2011-05-02 20:50:54 +02001616static struct dentry *debugfs_root;
1617
1618static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1619{
Tony Lindgren02157162012-01-20 08:17:22 -08001620 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001621
Stephen Warren51cd24e2011-12-09 16:59:05 -07001622 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001623 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001624 pctldev->device_root = device_root;
1625
Linus Walleij2744e8a2011-05-02 20:50:54 +02001626 if (IS_ERR(device_root) || !device_root) {
1627 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001628 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001629 return;
1630 }
1631 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1632 device_root, pctldev, &pinctrl_pins_ops);
1633 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1634 device_root, pctldev, &pinctrl_groups_ops);
1635 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1636 device_root, pctldev, &pinctrl_gpioranges_ops);
Florian Vaussarde7f2a442014-02-05 07:51:22 +01001637 if (pctldev->desc->pmxops)
1638 pinmux_init_device_debugfs(device_root, pctldev);
1639 if (pctldev->desc->confops)
1640 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001641}
1642
Tony Lindgren02157162012-01-20 08:17:22 -08001643static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1644{
1645 debugfs_remove_recursive(pctldev->device_root);
1646}
1647
Linus Walleij2744e8a2011-05-02 20:50:54 +02001648static void pinctrl_init_debugfs(void)
1649{
1650 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1651 if (IS_ERR(debugfs_root) || !debugfs_root) {
1652 pr_warn("failed to create debugfs directory\n");
1653 debugfs_root = NULL;
1654 return;
1655 }
1656
1657 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1658 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001659 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1660 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001661 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1662 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001663}
1664
1665#else /* CONFIG_DEBUG_FS */
1666
1667static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1668{
1669}
1670
1671static void pinctrl_init_debugfs(void)
1672{
1673}
1674
Tony Lindgren02157162012-01-20 08:17:22 -08001675static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1676{
1677}
1678
Linus Walleij2744e8a2011-05-02 20:50:54 +02001679#endif
1680
Stephen Warrend26bc492012-03-16 14:54:25 -06001681static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1682{
1683 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1684
1685 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301686 !ops->get_groups_count ||
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001687 !ops->get_group_name)
Stephen Warrend26bc492012-03-16 14:54:25 -06001688 return -EINVAL;
1689
Stephen Warren57291ce2012-03-23 10:29:46 -06001690 if (ops->dt_node_to_map && !ops->dt_free_map)
1691 return -EINVAL;
1692
Stephen Warrend26bc492012-03-16 14:54:25 -06001693 return 0;
1694}
1695
Linus Walleij2744e8a2011-05-02 20:50:54 +02001696/**
1697 * pinctrl_register() - register a pin controller device
1698 * @pctldesc: descriptor for this pin controller
1699 * @dev: parent device for this pin controller
1700 * @driver_data: private pin controller data for this pin controller
1701 */
1702struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1703 struct device *dev, void *driver_data)
1704{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001705 struct pinctrl_dev *pctldev;
1706 int ret;
1707
Devendra Nagada9aecb2012-06-16 23:43:16 +05301708 if (!pctldesc)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001709 return NULL;
Devendra Nagada9aecb2012-06-16 23:43:16 +05301710 if (!pctldesc->name)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001711 return NULL;
1712
Stephen Warren02f5b982012-02-22 14:26:00 -07001713 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001714 if (pctldev == NULL) {
1715 dev_err(dev, "failed to alloc struct pinctrl_dev\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001716 return NULL;
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001717 }
Linus Walleij2744e8a2011-05-02 20:50:54 +02001718
1719 /* Initialize pin control device struct */
1720 pctldev->owner = pctldesc->owner;
1721 pctldev->desc = pctldesc;
1722 pctldev->driver_data = driver_data;
1723 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001724 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001725 pctldev->dev = dev;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001726 mutex_init(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001727
Stephen Warrend26bc492012-03-16 14:54:25 -06001728 /* check core ops for sanity */
Devendra Nagada9aecb2012-06-16 23:43:16 +05301729 if (pinctrl_check_ops(pctldev)) {
John Crispinad6e1102012-04-26 16:47:11 +02001730 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001731 goto out_err;
1732 }
1733
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001734 /* If we're implementing pinmuxing, check the ops for sanity */
1735 if (pctldesc->pmxops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301736 if (pinmux_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001737 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001738 }
1739
1740 /* If we're implementing pinconfig, check the ops for sanity */
1741 if (pctldesc->confops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301742 if (pinconf_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001743 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001744 }
1745
Linus Walleij2744e8a2011-05-02 20:50:54 +02001746 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02001747 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001748 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1749 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001750 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001751 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1752 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001753 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001754 }
1755
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001756 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -07001757 list_add_tail(&pctldev->node, &pinctrldev_list);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001758 mutex_unlock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001759
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001760 pctldev->p = pinctrl_get(pctldev->dev);
1761
Stephen Warren6e5e9592012-03-02 13:05:47 -07001762 if (!IS_ERR(pctldev->p)) {
Julien Delacou840a47b2012-12-10 14:47:33 +01001763 pctldev->hog_default =
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001764 pinctrl_lookup_state(pctldev->p, PINCTRL_STATE_DEFAULT);
Julien Delacou840a47b2012-12-10 14:47:33 +01001765 if (IS_ERR(pctldev->hog_default)) {
John Crispinad6e1102012-04-26 16:47:11 +02001766 dev_dbg(dev, "failed to lookup the default state\n");
1767 } else {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001768 if (pinctrl_select_state(pctldev->p,
Julien Delacou840a47b2012-12-10 14:47:33 +01001769 pctldev->hog_default))
John Crispinad6e1102012-04-26 16:47:11 +02001770 dev_err(dev,
1771 "failed to select default state\n");
John Crispinad6e1102012-04-26 16:47:11 +02001772 }
Julien Delacou840a47b2012-12-10 14:47:33 +01001773
1774 pctldev->hog_sleep =
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001775 pinctrl_lookup_state(pctldev->p,
Julien Delacou840a47b2012-12-10 14:47:33 +01001776 PINCTRL_STATE_SLEEP);
1777 if (IS_ERR(pctldev->hog_sleep))
1778 dev_dbg(dev, "failed to lookup the sleep state\n");
Stephen Warren6e5e9592012-03-02 13:05:47 -07001779 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001780
Stephen Warren2304b472012-02-22 14:26:01 -07001781 pinctrl_init_device_debugfs(pctldev);
1782
Linus Walleij2744e8a2011-05-02 20:50:54 +02001783 return pctldev;
1784
Stephen Warren51cd24e2011-12-09 16:59:05 -07001785out_err:
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001786 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001787 kfree(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001788 return NULL;
1789}
1790EXPORT_SYMBOL_GPL(pinctrl_register);
1791
1792/**
1793 * pinctrl_unregister() - unregister pinmux
1794 * @pctldev: pin controller to unregister
1795 *
1796 * Called by pinmux drivers to unregister a pinmux.
1797 */
1798void pinctrl_unregister(struct pinctrl_dev *pctldev)
1799{
Dong Aisheng5d589b02012-05-23 21:22:40 +08001800 struct pinctrl_gpio_range *range, *n;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001801 if (pctldev == NULL)
1802 return;
1803
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001804 mutex_lock(&pinctrldev_list_mutex);
1805 mutex_lock(&pctldev->mutex);
1806
Tony Lindgren02157162012-01-20 08:17:22 -08001807 pinctrl_remove_device_debugfs(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001808
Stephen Warren6e5e9592012-03-02 13:05:47 -07001809 if (!IS_ERR(pctldev->p))
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001810 pinctrl_put(pctldev->p);
Stephen Warren57b676f2012-03-02 13:05:44 -07001811
Linus Walleij2744e8a2011-05-02 20:50:54 +02001812 /* TODO: check that no pinmuxes are still active? */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001813 list_del(&pctldev->node);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001814 /* Destroy descriptor tree */
1815 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1816 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08001817 /* remove gpio ranges map */
1818 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
1819 list_del(&range->node);
1820
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001821 mutex_unlock(&pctldev->mutex);
1822 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001823 kfree(pctldev);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001824 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001825}
1826EXPORT_SYMBOL_GPL(pinctrl_unregister);
1827
1828static int __init pinctrl_init(void)
1829{
1830 pr_info("initialized pinctrl subsystem\n");
1831 pinctrl_init_debugfs();
1832 return 0;
1833}
1834
1835/* init early since many drivers really need to initialized pinmux early */
1836core_initcall(pinctrl_init);