blob: 80d2314bc8a73093028b0690e6d25e6ca378cfca [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);
Markus Elfringcea234e2017-05-02 11:04:55 +0200173 if (!desc) {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800174 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);
Markus Elfringcea234e2017-05-02 11:04:55 +0200217 if (pindesc) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200218 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,
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900228 const struct pinctrl_pin_desc *pin)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200229{
230 struct pin_desc *pindesc;
231
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900232 pindesc = pin_desc_get(pctldev, pin->number);
Markus Elfringcea234e2017-05-02 11:04:55 +0200233 if (pindesc) {
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900234 dev_err(pctldev->dev, "pin %d already registered\n",
235 pin->number);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200236 return -EINVAL;
237 }
238
239 pindesc = kzalloc(sizeof(*pindesc), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -0800240 if (!pindesc)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200241 return -ENOMEM;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200242
Linus Walleij2744e8a2011-05-02 20:50:54 +0200243 /* Set owner */
244 pindesc->pctldev = pctldev;
245
Stephen Warren9af1e442011-10-19 16:19:27 -0600246 /* Copy basic pin info */
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900247 if (pin->name) {
248 pindesc->name = pin->name;
Linus Walleijca53c5f2011-12-14 20:33:37 +0100249 } else {
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900250 pindesc->name = kasprintf(GFP_KERNEL, "PIN%u", pin->number);
Markus Elfringcea234e2017-05-02 11:04:55 +0200251 if (!pindesc->name) {
Sachin Kamateb26cc92012-09-25 12:41:40 +0530252 kfree(pindesc);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100253 return -ENOMEM;
Sachin Kamateb26cc92012-09-25 12:41:40 +0530254 }
Linus Walleijca53c5f2011-12-14 20:33:37 +0100255 pindesc->dynamic_name = true;
256 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200257
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900258 pindesc->drv_data = pin->drv_data;
259
260 radix_tree_insert(&pctldev->pin_desc_tree, pin->number, pindesc);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200261 pr_debug("registered pin %d (%s) on %s\n",
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900262 pin->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++) {
Masahiro Yamadacd8f61f2016-05-25 14:09:31 +0900274 ret = pinctrl_register_one_pin(pctldev, &pins[i]);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200275 if (ret)
276 return ret;
277 }
278
279 return 0;
280}
281
282/**
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200283 * gpio_to_pin() - GPIO range GPIO number to pin number translation
284 * @range: GPIO range used for the translation
285 * @gpio: gpio pin to translate to a pin number
286 *
287 * Finds the pin number for a given GPIO using the specified GPIO range
288 * as a base for translation. The distinction between linear GPIO ranges
289 * and pin list based GPIO ranges is managed correctly by this function.
290 *
291 * This function assumes the gpio is part of the specified GPIO range, use
292 * only after making sure this is the case (e.g. by calling it on the
293 * result of successful pinctrl_get_device_gpio_range calls)!
294 */
295static inline int gpio_to_pin(struct pinctrl_gpio_range *range,
296 unsigned int gpio)
297{
298 unsigned int offset = gpio - range->base;
299 if (range->pins)
300 return range->pins[offset];
301 else
302 return range->pin_base + offset;
303}
304
305/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200306 * pinctrl_match_gpio_range() - check if a certain GPIO pin is in range
307 * @pctldev: pin controller device to check
308 * @gpio: gpio pin to check taken from the global GPIO pin space
309 *
310 * Tries to match a GPIO pin number to the ranges handled by a certain pin
311 * controller, return the range or NULL
312 */
313static struct pinctrl_gpio_range *
314pinctrl_match_gpio_range(struct pinctrl_dev *pctldev, unsigned gpio)
315{
316 struct pinctrl_gpio_range *range = NULL;
317
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200318 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200319 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200320 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
321 /* Check if we're in the valid range */
322 if (gpio >= range->base &&
323 gpio < range->base + range->npins) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200324 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200325 return range;
326 }
327 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200328 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200329 return NULL;
330}
331
332/**
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800333 * pinctrl_ready_for_gpio_range() - check if other GPIO pins of
334 * the same GPIO chip are in range
335 * @gpio: gpio pin to check taken from the global GPIO pin space
336 *
337 * This function is complement of pinctrl_match_gpio_range(). If the return
338 * value of pinctrl_match_gpio_range() is NULL, this function could be used
339 * to check whether pinctrl device is ready or not. Maybe some GPIO pins
340 * of the same GPIO chip don't have back-end pinctrl interface.
341 * If the return value is true, it means that pinctrl device is ready & the
342 * certain GPIO pin doesn't have back-end pinctrl device. If the return value
343 * is false, it means that pinctrl device may not be ready.
344 */
Haojian Zhuang2afe8222013-03-28 07:34:19 +0800345#ifdef CONFIG_GPIOLIB
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800346static bool pinctrl_ready_for_gpio_range(unsigned gpio)
347{
348 struct pinctrl_dev *pctldev;
349 struct pinctrl_gpio_range *range = NULL;
350 struct gpio_chip *chip = gpio_to_chip(gpio);
351
Tony Lindgren942cde72015-09-03 10:34:30 -0700352 if (WARN(!chip, "no gpio_chip for gpio%i?", gpio))
353 return false;
354
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200355 mutex_lock(&pinctrldev_list_mutex);
356
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800357 /* Loop over the pin controllers */
358 list_for_each_entry(pctldev, &pinctrldev_list, node) {
359 /* Loop over the ranges */
Axel Lin5ffbe2e2013-08-18 20:40:29 +0800360 mutex_lock(&pctldev->mutex);
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800361 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
362 /* Check if any gpio range overlapped with gpio chip */
363 if (range->base + range->npins - 1 < chip->base ||
364 range->base > chip->base + chip->ngpio - 1)
365 continue;
Axel Lin5ffbe2e2013-08-18 20:40:29 +0800366 mutex_unlock(&pctldev->mutex);
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200367 mutex_unlock(&pinctrldev_list_mutex);
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800368 return true;
369 }
Axel Lin5ffbe2e2013-08-18 20:40:29 +0800370 mutex_unlock(&pctldev->mutex);
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800371 }
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200372
373 mutex_unlock(&pinctrldev_list_mutex);
374
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800375 return false;
376}
Haojian Zhuang2afe8222013-03-28 07:34:19 +0800377#else
378static bool pinctrl_ready_for_gpio_range(unsigned gpio) { return true; }
379#endif
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800380
381/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200382 * pinctrl_get_device_gpio_range() - find device for GPIO range
383 * @gpio: the pin to locate the pin controller for
384 * @outdev: the pin control device if found
385 * @outrange: the GPIO range if found
386 *
387 * Find the pin controller handling a certain GPIO pin from the pinspace of
388 * the GPIO subsystem, return the device and the matching GPIO range. Returns
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800389 * -EPROBE_DEFER if the GPIO range could not be found in any device since it
390 * may still have not been registered.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200391 */
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700392static int pinctrl_get_device_gpio_range(unsigned gpio,
393 struct pinctrl_dev **outdev,
394 struct pinctrl_gpio_range **outrange)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200395{
396 struct pinctrl_dev *pctldev = NULL;
397
Axel Linf0059022013-08-18 20:34:22 +0800398 mutex_lock(&pinctrldev_list_mutex);
399
Linus Walleij2744e8a2011-05-02 20:50:54 +0200400 /* Loop over the pin controllers */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200401 list_for_each_entry(pctldev, &pinctrldev_list, node) {
402 struct pinctrl_gpio_range *range;
403
404 range = pinctrl_match_gpio_range(pctldev, gpio);
Markus Elfringcea234e2017-05-02 11:04:55 +0200405 if (range) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200406 *outdev = pctldev;
407 *outrange = range;
Axel Linf0059022013-08-18 20:34:22 +0800408 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200409 return 0;
410 }
411 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200412
Axel Linf0059022013-08-18 20:34:22 +0800413 mutex_unlock(&pinctrldev_list_mutex);
414
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800415 return -EPROBE_DEFER;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200416}
417
418/**
419 * pinctrl_add_gpio_range() - register a GPIO range for a controller
420 * @pctldev: pin controller device to add the range to
421 * @range: the GPIO range to add
422 *
423 * This adds a range of GPIOs to be handled by a certain pin controller. Call
424 * this to register handled ranges after registering your pin controller.
425 */
426void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev,
427 struct pinctrl_gpio_range *range)
428{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200429 mutex_lock(&pctldev->mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -0700430 list_add_tail(&range->node, &pctldev->gpio_ranges);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200431 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200432}
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700433EXPORT_SYMBOL_GPL(pinctrl_add_gpio_range);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200434
Dong Aisheng3e5e00b2012-05-23 21:22:41 +0800435void pinctrl_add_gpio_ranges(struct pinctrl_dev *pctldev,
436 struct pinctrl_gpio_range *ranges,
437 unsigned nranges)
438{
439 int i;
440
441 for (i = 0; i < nranges; i++)
442 pinctrl_add_gpio_range(pctldev, &ranges[i]);
443}
444EXPORT_SYMBOL_GPL(pinctrl_add_gpio_ranges);
445
Linus Walleij192c3692012-11-20 14:03:37 +0100446struct pinctrl_dev *pinctrl_find_and_add_gpio_range(const char *devname,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530447 struct pinctrl_gpio_range *range)
448{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200449 struct pinctrl_dev *pctldev;
450
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200451 pctldev = get_pinctrl_dev_from_devname(devname);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530452
Linus Walleijdfa97512012-11-20 14:54:18 +0100453 /*
454 * If we can't find this device, let's assume that is because
455 * it has not probed yet, so the driver trying to register this
456 * range need to defer probing.
457 */
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200458 if (!pctldev) {
Linus Walleijdfa97512012-11-20 14:54:18 +0100459 return ERR_PTR(-EPROBE_DEFER);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200460 }
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530461 pinctrl_add_gpio_range(pctldev, range);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200462
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530463 return pctldev;
464}
Linus Walleij192c3692012-11-20 14:03:37 +0100465EXPORT_SYMBOL_GPL(pinctrl_find_and_add_gpio_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530466
Christian Ruppert586a87e2013-10-15 15:37:54 +0200467int pinctrl_get_group_pins(struct pinctrl_dev *pctldev, const char *pin_group,
468 const unsigned **pins, unsigned *num_pins)
469{
470 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
471 int gs;
472
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +0200473 if (!pctlops->get_group_pins)
474 return -EINVAL;
475
Christian Ruppert586a87e2013-10-15 15:37:54 +0200476 gs = pinctrl_get_group_selector(pctldev, pin_group);
477 if (gs < 0)
478 return gs;
479
480 return pctlops->get_group_pins(pctldev, gs, pins, num_pins);
481}
482EXPORT_SYMBOL_GPL(pinctrl_get_group_pins);
483
Joachim Eastwoodb18537c2016-02-25 22:44:37 +0100484struct pinctrl_gpio_range *
485pinctrl_find_gpio_range_from_pin_nolock(struct pinctrl_dev *pctldev,
486 unsigned int pin)
487{
488 struct pinctrl_gpio_range *range;
489
490 /* Loop over the ranges */
491 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
492 /* Check if we're in the valid range */
493 if (range->pins) {
494 int a;
495 for (a = 0; a < range->npins; a++) {
496 if (range->pins[a] == pin)
497 return range;
498 }
499 } else if (pin >= range->pin_base &&
500 pin < range->pin_base + range->npins)
501 return range;
502 }
503
504 return NULL;
505}
506EXPORT_SYMBOL_GPL(pinctrl_find_gpio_range_from_pin_nolock);
507
Linus Walleij2744e8a2011-05-02 20:50:54 +0200508/**
Linus Walleij9afbefb2012-11-20 14:25:07 +0100509 * pinctrl_find_gpio_range_from_pin() - locate the GPIO range for a pin
510 * @pctldev: the pin controller device to look in
511 * @pin: a controller-local number to find the range for
512 */
513struct pinctrl_gpio_range *
514pinctrl_find_gpio_range_from_pin(struct pinctrl_dev *pctldev,
515 unsigned int pin)
516{
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800517 struct pinctrl_gpio_range *range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100518
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200519 mutex_lock(&pctldev->mutex);
Joachim Eastwoodb18537c2016-02-25 22:44:37 +0100520 range = pinctrl_find_gpio_range_from_pin_nolock(pctldev, pin);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200521 mutex_unlock(&pctldev->mutex);
Joachim Eastwoodb18537c2016-02-25 22:44:37 +0100522
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800523 return range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100524}
525EXPORT_SYMBOL_GPL(pinctrl_find_gpio_range_from_pin);
526
527/**
Charles Keepax50842cb2017-02-13 10:11:03 +0000528 * pinctrl_remove_gpio_range() - remove a range of GPIOs from a pin controller
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530529 * @pctldev: pin controller device to remove the range from
530 * @range: the GPIO range to remove
531 */
532void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
533 struct pinctrl_gpio_range *range)
534{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200535 mutex_lock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530536 list_del(&range->node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200537 mutex_unlock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530538}
539EXPORT_SYMBOL_GPL(pinctrl_remove_gpio_range);
540
Linus Walleijc033a712016-12-30 15:04:43 +0100541#ifdef CONFIG_GENERIC_PINCTRL_GROUPS
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800542
543/**
544 * pinctrl_generic_get_group_count() - returns the number of pin groups
545 * @pctldev: pin controller device
546 */
547int pinctrl_generic_get_group_count(struct pinctrl_dev *pctldev)
548{
549 return pctldev->num_groups;
550}
551EXPORT_SYMBOL_GPL(pinctrl_generic_get_group_count);
552
553/**
554 * pinctrl_generic_get_group_name() - returns the name of a pin group
555 * @pctldev: pin controller device
556 * @selector: group number
557 */
558const char *pinctrl_generic_get_group_name(struct pinctrl_dev *pctldev,
559 unsigned int selector)
560{
561 struct group_desc *group;
562
563 group = radix_tree_lookup(&pctldev->pin_group_tree,
564 selector);
565 if (!group)
566 return NULL;
567
568 return group->name;
569}
570EXPORT_SYMBOL_GPL(pinctrl_generic_get_group_name);
571
572/**
573 * pinctrl_generic_get_group_pins() - gets the pin group pins
574 * @pctldev: pin controller device
575 * @selector: group number
576 * @pins: pins in the group
577 * @num_pins: number of pins in the group
578 */
579int pinctrl_generic_get_group_pins(struct pinctrl_dev *pctldev,
580 unsigned int selector,
581 const unsigned int **pins,
582 unsigned int *num_pins)
583{
584 struct group_desc *group;
585
586 group = radix_tree_lookup(&pctldev->pin_group_tree,
587 selector);
588 if (!group) {
589 dev_err(pctldev->dev, "%s could not find pingroup%i\n",
590 __func__, selector);
591 return -EINVAL;
592 }
593
594 *pins = group->pins;
595 *num_pins = group->num_pins;
596
597 return 0;
598}
599EXPORT_SYMBOL_GPL(pinctrl_generic_get_group_pins);
600
601/**
602 * pinctrl_generic_get_group() - returns a pin group based on the number
603 * @pctldev: pin controller device
604 * @gselector: group number
605 */
606struct group_desc *pinctrl_generic_get_group(struct pinctrl_dev *pctldev,
607 unsigned int selector)
608{
609 struct group_desc *group;
610
611 group = radix_tree_lookup(&pctldev->pin_group_tree,
612 selector);
613 if (!group)
614 return NULL;
615
616 return group;
617}
618EXPORT_SYMBOL_GPL(pinctrl_generic_get_group);
619
620/**
621 * pinctrl_generic_add_group() - adds a new pin group
622 * @pctldev: pin controller device
623 * @name: name of the pin group
624 * @pins: pins in the pin group
625 * @num_pins: number of pins in the pin group
626 * @data: pin controller driver specific data
627 *
628 * Note that the caller must take care of locking.
629 */
630int pinctrl_generic_add_group(struct pinctrl_dev *pctldev, const char *name,
631 int *pins, int num_pins, void *data)
632{
633 struct group_desc *group;
634
635 group = devm_kzalloc(pctldev->dev, sizeof(*group), GFP_KERNEL);
636 if (!group)
637 return -ENOMEM;
638
639 group->name = name;
640 group->pins = pins;
641 group->num_pins = num_pins;
642 group->data = data;
643
644 radix_tree_insert(&pctldev->pin_group_tree, pctldev->num_groups,
645 group);
646
647 pctldev->num_groups++;
648
649 return 0;
650}
651EXPORT_SYMBOL_GPL(pinctrl_generic_add_group);
652
653/**
654 * pinctrl_generic_remove_group() - removes a numbered pin group
655 * @pctldev: pin controller device
656 * @selector: group number
657 *
658 * Note that the caller must take care of locking.
659 */
660int pinctrl_generic_remove_group(struct pinctrl_dev *pctldev,
661 unsigned int selector)
662{
663 struct group_desc *group;
664
665 group = radix_tree_lookup(&pctldev->pin_group_tree,
666 selector);
667 if (!group)
668 return -ENOENT;
669
670 radix_tree_delete(&pctldev->pin_group_tree, selector);
671 devm_kfree(pctldev->dev, group);
672
673 pctldev->num_groups--;
674
675 return 0;
676}
677EXPORT_SYMBOL_GPL(pinctrl_generic_remove_group);
678
679/**
680 * pinctrl_generic_free_groups() - removes all pin groups
681 * @pctldev: pin controller device
682 *
683 * Note that the caller must take care of locking.
684 */
685static void pinctrl_generic_free_groups(struct pinctrl_dev *pctldev)
686{
687 struct radix_tree_iter iter;
688 struct group_desc *group;
689 unsigned long *indices;
690 void **slot;
691 int i = 0;
692
693 indices = devm_kzalloc(pctldev->dev, sizeof(*indices) *
694 pctldev->num_groups, GFP_KERNEL);
695 if (!indices)
696 return;
697
698 radix_tree_for_each_slot(slot, &pctldev->pin_group_tree, &iter, 0)
699 indices[i++] = iter.index;
700
701 for (i = 0; i < pctldev->num_groups; i++) {
702 group = radix_tree_lookup(&pctldev->pin_group_tree,
703 indices[i]);
704 radix_tree_delete(&pctldev->pin_group_tree, indices[i]);
705 devm_kfree(pctldev->dev, group);
706 }
707
708 pctldev->num_groups = 0;
709}
710
711#else
712static inline void pinctrl_generic_free_groups(struct pinctrl_dev *pctldev)
713{
714}
Linus Walleijc033a712016-12-30 15:04:43 +0100715#endif /* CONFIG_GENERIC_PINCTRL_GROUPS */
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800716
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530717/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200718 * pinctrl_get_group_selector() - returns the group selector for a group
719 * @pctldev: the pin controller handling the group
720 * @pin_group: the pin group to look up
721 */
722int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
723 const char *pin_group)
724{
725 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530726 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200727 unsigned group_selector = 0;
728
Viresh Kumard1e90e92012-03-30 11:25:40 +0530729 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200730 const char *gname = pctlops->get_group_name(pctldev,
731 group_selector);
732 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700733 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200734 "found group selector %u for %s\n",
735 group_selector,
736 pin_group);
737 return group_selector;
738 }
739
740 group_selector++;
741 }
742
Stephen Warren51cd24e2011-12-09 16:59:05 -0700743 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200744 pin_group);
745
746 return -EINVAL;
747}
748
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100749/**
Geert Uytterhoevenb217e432015-05-04 19:46:57 +0200750 * pinctrl_request_gpio() - request a single pin to be used as GPIO
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100751 * @gpio: the GPIO pin number from the GPIO subsystem number space
752 *
753 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
754 * as part of their gpio_request() semantics, platforms and individual drivers
755 * shall *NOT* request GPIO pins to be muxed in.
756 */
757int pinctrl_request_gpio(unsigned gpio)
758{
759 struct pinctrl_dev *pctldev;
760 struct pinctrl_gpio_range *range;
761 int ret;
762 int pin;
763
764 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700765 if (ret) {
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800766 if (pinctrl_ready_for_gpio_range(gpio))
767 ret = 0;
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800768 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700769 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100770
Axel Lin9b77ace2013-08-19 10:07:46 +0800771 mutex_lock(&pctldev->mutex);
772
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100773 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200774 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100775
Stephen Warren57b676f2012-03-02 13:05:44 -0700776 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
777
Axel Lin9b77ace2013-08-19 10:07:46 +0800778 mutex_unlock(&pctldev->mutex);
779
Stephen Warren57b676f2012-03-02 13:05:44 -0700780 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100781}
782EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
783
784/**
785 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
786 * @gpio: the GPIO pin number from the GPIO subsystem number space
787 *
788 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
789 * as part of their gpio_free() semantics, platforms and individual drivers
790 * shall *NOT* request GPIO pins to be muxed out.
791 */
792void pinctrl_free_gpio(unsigned gpio)
793{
794 struct pinctrl_dev *pctldev;
795 struct pinctrl_gpio_range *range;
796 int ret;
797 int pin;
798
799 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700800 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100801 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700802 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200803 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100804
805 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200806 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100807
Stephen Warren57b676f2012-03-02 13:05:44 -0700808 pinmux_free_gpio(pctldev, pin, range);
809
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200810 mutex_unlock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100811}
812EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
813
814static int pinctrl_gpio_direction(unsigned gpio, bool input)
815{
816 struct pinctrl_dev *pctldev;
817 struct pinctrl_gpio_range *range;
818 int ret;
819 int pin;
820
821 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200822 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100823 return ret;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200824 }
825
826 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100827
828 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200829 pin = gpio_to_pin(range, gpio);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200830 ret = pinmux_gpio_direction(pctldev, range, pin, input);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100831
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200832 mutex_unlock(&pctldev->mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200833
834 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100835}
836
837/**
838 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
839 * @gpio: the GPIO pin number from the GPIO subsystem number space
840 *
841 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
842 * as part of their gpio_direction_input() semantics, platforms and individual
843 * drivers shall *NOT* touch pin control GPIO calls.
844 */
845int pinctrl_gpio_direction_input(unsigned gpio)
846{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200847 return pinctrl_gpio_direction(gpio, true);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100848}
849EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
850
851/**
852 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
853 * @gpio: the GPIO pin number from the GPIO subsystem number space
854 *
855 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
856 * as part of their gpio_direction_output() semantics, platforms and individual
857 * drivers shall *NOT* touch pin control GPIO calls.
858 */
859int pinctrl_gpio_direction_output(unsigned gpio)
860{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200861 return pinctrl_gpio_direction(gpio, false);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100862}
863EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
864
Mika Westerberg15381bc2017-01-23 15:34:33 +0300865/**
866 * pinctrl_gpio_set_config() - Apply config to given GPIO pin
867 * @gpio: the GPIO pin number from the GPIO subsystem number space
868 * @config: the configuration to apply to the GPIO
869 *
870 * This function should *ONLY* be used from gpiolib-based GPIO drivers, if
871 * they need to call the underlying pin controller to change GPIO config
872 * (for example set debounce time).
873 */
874int pinctrl_gpio_set_config(unsigned gpio, unsigned long config)
875{
876 unsigned long configs[] = { config };
877 struct pinctrl_gpio_range *range;
878 struct pinctrl_dev *pctldev;
879 int ret, pin;
880
881 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
882 if (ret)
883 return ret;
884
885 mutex_lock(&pctldev->mutex);
886 pin = gpio_to_pin(range, gpio);
887 ret = pinconf_set_config(pctldev, pin, configs, ARRAY_SIZE(configs));
888 mutex_unlock(&pctldev->mutex);
889
890 return ret;
891}
892EXPORT_SYMBOL_GPL(pinctrl_gpio_set_config);
893
Stephen Warren6e5e9592012-03-02 13:05:47 -0700894static struct pinctrl_state *find_state(struct pinctrl *p,
895 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100896{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700897 struct pinctrl_state *state;
898
899 list_for_each_entry(state, &p->states, node)
900 if (!strcmp(state->name, name))
901 return state;
902
903 return NULL;
904}
905
906static struct pinctrl_state *create_state(struct pinctrl *p,
907 const char *name)
908{
909 struct pinctrl_state *state;
910
911 state = kzalloc(sizeof(*state), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -0800912 if (!state)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700913 return ERR_PTR(-ENOMEM);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700914
915 state->name = name;
916 INIT_LIST_HEAD(&state->settings);
917
918 list_add_tail(&state->node, &p->states);
919
920 return state;
921}
922
Tony Lindgren99e4f672016-12-27 09:19:59 -0800923static int add_setting(struct pinctrl *p, struct pinctrl_dev *pctldev,
924 struct pinctrl_map const *map)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700925{
926 struct pinctrl_state *state;
927 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700928 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700929
930 state = find_state(p, map->name);
931 if (!state)
932 state = create_state(p, map->name);
933 if (IS_ERR(state))
934 return PTR_ERR(state);
935
Stephen Warren1e2082b2012-03-02 13:05:48 -0700936 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
937 return 0;
938
Stephen Warren6e5e9592012-03-02 13:05:47 -0700939 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -0800940 if (!setting)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700941 return -ENOMEM;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700942
Stephen Warren1e2082b2012-03-02 13:05:48 -0700943 setting->type = map->type;
944
Tony Lindgren99e4f672016-12-27 09:19:59 -0800945 if (pctldev)
946 setting->pctldev = pctldev;
947 else
948 setting->pctldev =
949 get_pinctrl_dev_from_devname(map->ctrl_dev_name);
Markus Elfringcea234e2017-05-02 11:04:55 +0200950 if (!setting->pctldev) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700951 kfree(setting);
Linus Walleij89216492012-12-11 14:14:32 +0100952 /* Do not defer probing of hogs (circular loop) */
953 if (!strcmp(map->ctrl_dev_name, map->dev_name))
954 return -ENODEV;
Linus Walleijc05127c2012-04-10 10:00:38 +0200955 /*
956 * OK let us guess that the driver is not there yet, and
957 * let's defer obtaining this pinctrl handle to later...
958 */
Linus Walleij89216492012-12-11 14:14:32 +0100959 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
960 map->ctrl_dev_name);
Linus Walleijc05127c2012-04-10 10:00:38 +0200961 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700962 }
963
Linus Walleij1a789582012-10-17 20:51:54 +0200964 setting->dev_name = map->dev_name;
965
Stephen Warren1e2082b2012-03-02 13:05:48 -0700966 switch (map->type) {
967 case PIN_MAP_TYPE_MUX_GROUP:
968 ret = pinmux_map_to_setting(map, setting);
969 break;
970 case PIN_MAP_TYPE_CONFIGS_PIN:
971 case PIN_MAP_TYPE_CONFIGS_GROUP:
972 ret = pinconf_map_to_setting(map, setting);
973 break;
974 default:
975 ret = -EINVAL;
976 break;
977 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700978 if (ret < 0) {
979 kfree(setting);
980 return ret;
981 }
982
983 list_add_tail(&setting->node, &state->settings);
984
985 return 0;
986}
987
988static struct pinctrl *find_pinctrl(struct device *dev)
989{
990 struct pinctrl *p;
991
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200992 mutex_lock(&pinctrl_list_mutex);
Stephen Warren1e2082b2012-03-02 13:05:48 -0700993 list_for_each_entry(p, &pinctrl_list, node)
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200994 if (p->dev == dev) {
995 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700996 return p;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200997 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700998
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200999 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001000 return NULL;
1001}
1002
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001003static void pinctrl_free(struct pinctrl *p, bool inlist);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001004
Tony Lindgren99e4f672016-12-27 09:19:59 -08001005static struct pinctrl *create_pinctrl(struct device *dev,
1006 struct pinctrl_dev *pctldev)
Stephen Warren6e5e9592012-03-02 13:05:47 -07001007{
1008 struct pinctrl *p;
1009 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001010 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001011 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001012 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001013 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001014
1015 /*
1016 * create the state cookie holder struct pinctrl for each
1017 * mapping, this is what consumers will get when requesting
1018 * a pin control handle with pinctrl_get()
1019 */
Stephen Warren02f5b982012-02-22 14:26:00 -07001020 p = kzalloc(sizeof(*p), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -08001021 if (!p)
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001022 return ERR_PTR(-ENOMEM);
Stephen Warren7ecdb162012-03-02 13:05:45 -07001023 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001024 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -06001025 INIT_LIST_HEAD(&p->dt_maps);
1026
Tony Lindgren99e4f672016-12-27 09:19:59 -08001027 ret = pinctrl_dt_to_map(p, pctldev);
Stephen Warren57291ce2012-03-23 10:29:46 -06001028 if (ret < 0) {
1029 kfree(p);
1030 return ERR_PTR(ret);
1031 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001032
1033 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001034
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001035 mutex_lock(&pinctrl_maps_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001036 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001037 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -07001038 /* Map must be for this device */
1039 if (strcmp(map->dev_name, devname))
1040 continue;
Nikita Yushchenko7f0ff062017-05-11 23:02:11 +03001041 /*
1042 * If pctldev is not null, we are claiming hog for it,
1043 * that means, setting that is served by pctldev by itself.
1044 *
1045 * Thus we must skip map that is for this device but is served
1046 * by other device.
1047 */
1048 if (pctldev &&
1049 strcmp(dev_name(pctldev->dev), map->ctrl_dev_name))
1050 continue;
Stephen Warren1681f5a2012-02-22 14:25:58 -07001051
Tony Lindgren99e4f672016-12-27 09:19:59 -08001052 ret = add_setting(p, pctldev, map);
Linus Walleij89216492012-12-11 14:14:32 +01001053 /*
1054 * At this point the adding of a setting may:
1055 *
1056 * - Defer, if the pinctrl device is not yet available
1057 * - Fail, if the pinctrl device is not yet available,
1058 * AND the setting is a hog. We cannot defer that, since
1059 * the hog will kick in immediately after the device
1060 * is registered.
1061 *
1062 * If the error returned was not -EPROBE_DEFER then we
1063 * accumulate the errors to see if we end up with
1064 * an -EPROBE_DEFER later, as that is the worst case.
1065 */
1066 if (ret == -EPROBE_DEFER) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001067 pinctrl_free(p, false);
1068 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001069 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001070 }
1071 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001072 mutex_unlock(&pinctrl_maps_mutex);
1073
Linus Walleij89216492012-12-11 14:14:32 +01001074 if (ret < 0) {
Andy Shevchenko3ec440e2017-02-28 16:59:56 +02001075 /* If some other error than deferral occurred, return here */
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001076 pinctrl_free(p, false);
Linus Walleij89216492012-12-11 14:14:32 +01001077 return ERR_PTR(ret);
1078 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001079
Linus Walleijab780292013-01-22 10:56:14 -07001080 kref_init(&p->users);
1081
Linus Walleijb0666ba2012-12-11 13:12:35 +01001082 /* Add the pinctrl handle to the global list */
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +01001083 mutex_lock(&pinctrl_list_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -07001084 list_add_tail(&p->node, &pinctrl_list);
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +01001085 mutex_unlock(&pinctrl_list_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001086
1087 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001088}
Stephen Warren7ecdb162012-03-02 13:05:45 -07001089
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001090/**
1091 * pinctrl_get() - retrieves the pinctrl handle for a device
1092 * @dev: the device to obtain the handle for
1093 */
1094struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warren6e5e9592012-03-02 13:05:47 -07001095{
1096 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001097
Stephen Warren6e5e9592012-03-02 13:05:47 -07001098 if (WARN_ON(!dev))
1099 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -07001100
Linus Walleijab780292013-01-22 10:56:14 -07001101 /*
1102 * See if somebody else (such as the device core) has already
1103 * obtained a handle to the pinctrl for this device. In that case,
1104 * return another pointer to it.
1105 */
Stephen Warren6e5e9592012-03-02 13:05:47 -07001106 p = find_pinctrl(dev);
Markus Elfringcea234e2017-05-02 11:04:55 +02001107 if (p) {
Linus Walleijab780292013-01-22 10:56:14 -07001108 dev_dbg(dev, "obtain a copy of previously claimed pinctrl\n");
1109 kref_get(&p->users);
1110 return p;
1111 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001112
Tony Lindgren99e4f672016-12-27 09:19:59 -08001113 return create_pinctrl(dev, NULL);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001114}
1115EXPORT_SYMBOL_GPL(pinctrl_get);
1116
Richard Genoudd3cee8302013-03-25 15:47:21 +01001117static void pinctrl_free_setting(bool disable_setting,
1118 struct pinctrl_setting *setting)
1119{
1120 switch (setting->type) {
1121 case PIN_MAP_TYPE_MUX_GROUP:
1122 if (disable_setting)
1123 pinmux_disable_setting(setting);
1124 pinmux_free_setting(setting);
1125 break;
1126 case PIN_MAP_TYPE_CONFIGS_PIN:
1127 case PIN_MAP_TYPE_CONFIGS_GROUP:
1128 pinconf_free_setting(setting);
1129 break;
1130 default:
1131 break;
1132 }
1133}
1134
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001135static void pinctrl_free(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -07001136{
Stephen Warren6e5e9592012-03-02 13:05:47 -07001137 struct pinctrl_state *state, *n1;
1138 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001139
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001140 mutex_lock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001141 list_for_each_entry_safe(state, n1, &p->states, node) {
1142 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Richard Genoudd3cee8302013-03-25 15:47:21 +01001143 pinctrl_free_setting(state == p->state, setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001144 list_del(&setting->node);
1145 kfree(setting);
1146 }
1147 list_del(&state->node);
1148 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -07001149 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001150
Stephen Warren57291ce2012-03-23 10:29:46 -06001151 pinctrl_dt_free_maps(p);
1152
Stephen Warren6e5e9592012-03-02 13:05:47 -07001153 if (inlist)
1154 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -07001155 kfree(p);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001156 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001157}
1158
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001159/**
Linus Walleijab780292013-01-22 10:56:14 -07001160 * pinctrl_release() - release the pinctrl handle
1161 * @kref: the kref in the pinctrl being released
1162 */
Sachin Kamat2917e832013-01-24 15:01:00 +05301163static void pinctrl_release(struct kref *kref)
Linus Walleijab780292013-01-22 10:56:14 -07001164{
1165 struct pinctrl *p = container_of(kref, struct pinctrl, users);
1166
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001167 pinctrl_free(p, true);
Linus Walleijab780292013-01-22 10:56:14 -07001168}
1169
1170/**
1171 * pinctrl_put() - decrease use count on a previously claimed pinctrl handle
Stephen Warren6e5e9592012-03-02 13:05:47 -07001172 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001173 */
1174void pinctrl_put(struct pinctrl *p)
1175{
Linus Walleijab780292013-01-22 10:56:14 -07001176 kref_put(&p->users, pinctrl_release);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001177}
1178EXPORT_SYMBOL_GPL(pinctrl_put);
1179
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001180/**
1181 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
1182 * @p: the pinctrl handle to retrieve the state from
1183 * @name: the state name to retrieve
1184 */
1185struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p,
1186 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -07001187{
Stephen Warren6e5e9592012-03-02 13:05:47 -07001188 struct pinctrl_state *state;
1189
1190 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +08001191 if (!state) {
1192 if (pinctrl_dummy_state) {
1193 /* create dummy state */
1194 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
1195 name);
1196 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +02001197 } else
1198 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +08001199 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001200
1201 return state;
1202}
Stephen Warren6e5e9592012-03-02 13:05:47 -07001203EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
1204
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001205/**
1206 * pinctrl_select_state() - select/activate/program a pinctrl state to HW
1207 * @p: the pinctrl handle for the device that requests configuration
1208 * @state: the state handle to select/activate/program
1209 */
1210int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Stephen Warren6e5e9592012-03-02 13:05:47 -07001211{
1212 struct pinctrl_setting *setting, *setting2;
Richard Genoud50cf7c82013-03-25 15:47:23 +01001213 struct pinctrl_state *old_state = p->state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001214 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -07001215
Stephen Warren6e5e9592012-03-02 13:05:47 -07001216 if (p->state == state)
1217 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -07001218
Stephen Warren6e5e9592012-03-02 13:05:47 -07001219 if (p->state) {
1220 /*
Fan Wu2243a872014-06-09 09:37:56 +08001221 * For each pinmux setting in the old state, forget SW's record
1222 * of mux owner for that pingroup. Any pingroups which are
1223 * still owned by the new state will be re-acquired by the call
1224 * to pinmux_enable_setting() in the loop below.
Stephen Warren6e5e9592012-03-02 13:05:47 -07001225 */
1226 list_for_each_entry(setting, &p->state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001227 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
1228 continue;
Fan Wu2243a872014-06-09 09:37:56 +08001229 pinmux_disable_setting(setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001230 }
1231 }
1232
Richard Genoud3102a762013-03-25 15:47:22 +01001233 p->state = NULL;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001234
1235 /* Apply all the settings for the new state */
1236 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001237 switch (setting->type) {
1238 case PIN_MAP_TYPE_MUX_GROUP:
1239 ret = pinmux_enable_setting(setting);
1240 break;
1241 case PIN_MAP_TYPE_CONFIGS_PIN:
1242 case PIN_MAP_TYPE_CONFIGS_GROUP:
1243 ret = pinconf_apply_setting(setting);
1244 break;
1245 default:
1246 ret = -EINVAL;
1247 break;
1248 }
Richard Genoud3102a762013-03-25 15:47:22 +01001249
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001250 if (ret < 0) {
Richard Genoud3102a762013-03-25 15:47:22 +01001251 goto unapply_new_state;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001252 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001253 }
1254
Richard Genoud3102a762013-03-25 15:47:22 +01001255 p->state = state;
1256
Stephen Warren7ecdb162012-03-02 13:05:45 -07001257 return 0;
Richard Genoud3102a762013-03-25 15:47:22 +01001258
1259unapply_new_state:
Richard Genoudda587512013-03-28 12:55:46 +01001260 dev_err(p->dev, "Error applying setting, reverse things back\n");
Richard Genoud3102a762013-03-25 15:47:22 +01001261
Richard Genoud3102a762013-03-25 15:47:22 +01001262 list_for_each_entry(setting2, &state->settings, node) {
1263 if (&setting2->node == &setting->node)
1264 break;
Richard Genoudaf606172013-03-29 10:03:26 +01001265 /*
1266 * All we can do here is pinmux_disable_setting.
1267 * That means that some pins are muxed differently now
1268 * than they were before applying the setting (We can't
1269 * "unmux a pin"!), but it's not a big deal since the pins
1270 * are free to be muxed by another apply_setting.
1271 */
1272 if (setting2->type == PIN_MAP_TYPE_MUX_GROUP)
1273 pinmux_disable_setting(setting2);
Richard Genoud3102a762013-03-25 15:47:22 +01001274 }
Richard Genoud8009d5f2013-03-28 12:55:47 +01001275
Richard Genoud385d9422013-03-29 10:03:27 +01001276 /* There's no infinite recursive loop here because p->state is NULL */
1277 if (old_state)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001278 pinctrl_select_state(p, old_state);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001279
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001280 return ret;
1281}
Stephen Warren6e5e9592012-03-02 13:05:47 -07001282EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001283
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001284static void devm_pinctrl_release(struct device *dev, void *res)
1285{
1286 pinctrl_put(*(struct pinctrl **)res);
1287}
1288
1289/**
1290 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
1291 * @dev: the device to obtain the handle for
1292 *
1293 * If there is a need to explicitly destroy the returned struct pinctrl,
1294 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
1295 */
1296struct pinctrl *devm_pinctrl_get(struct device *dev)
1297{
1298 struct pinctrl **ptr, *p;
1299
1300 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
1301 if (!ptr)
1302 return ERR_PTR(-ENOMEM);
1303
1304 p = pinctrl_get(dev);
1305 if (!IS_ERR(p)) {
1306 *ptr = p;
1307 devres_add(dev, ptr);
1308 } else {
1309 devres_free(ptr);
1310 }
1311
1312 return p;
1313}
1314EXPORT_SYMBOL_GPL(devm_pinctrl_get);
1315
1316static int devm_pinctrl_match(struct device *dev, void *res, void *data)
1317{
1318 struct pinctrl **p = res;
1319
1320 return *p == data;
1321}
1322
1323/**
1324 * devm_pinctrl_put() - Resource managed pinctrl_put()
1325 * @p: the pinctrl handle to release
1326 *
1327 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
1328 * this function will not need to be called and the resource management
1329 * code will ensure that the resource is freed.
1330 */
1331void devm_pinctrl_put(struct pinctrl *p)
1332{
Jingoo Hana72149e2013-02-26 11:34:07 +09001333 WARN_ON(devres_release(p->dev, devm_pinctrl_release,
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001334 devm_pinctrl_match, p));
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001335}
1336EXPORT_SYMBOL_GPL(devm_pinctrl_put);
1337
Stephen Warren57291ce2012-03-23 10:29:46 -06001338int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
Doug Andersonc5272a22015-05-01 09:01:27 -07001339 bool dup)
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001340{
Stephen Warren1e2082b2012-03-02 13:05:48 -07001341 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001342 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001343
Masahiro Yamada7e9236f2015-05-28 21:52:59 +09001344 pr_debug("add %u pinctrl maps\n", num_maps);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001345
1346 /* First sanity check the new mapping */
1347 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001348 if (!maps[i].dev_name) {
1349 pr_err("failed to register map %s (%d): no device given\n",
1350 maps[i].name, i);
1351 return -EINVAL;
1352 }
1353
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001354 if (!maps[i].name) {
1355 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001356 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001357 return -EINVAL;
1358 }
1359
Stephen Warren1e2082b2012-03-02 13:05:48 -07001360 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
1361 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001362 pr_err("failed to register map %s (%d): no pin control device given\n",
1363 maps[i].name, i);
1364 return -EINVAL;
1365 }
1366
Stephen Warren1e2082b2012-03-02 13:05:48 -07001367 switch (maps[i].type) {
1368 case PIN_MAP_TYPE_DUMMY_STATE:
1369 break;
1370 case PIN_MAP_TYPE_MUX_GROUP:
1371 ret = pinmux_validate_map(&maps[i], i);
1372 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001373 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001374 break;
1375 case PIN_MAP_TYPE_CONFIGS_PIN:
1376 case PIN_MAP_TYPE_CONFIGS_GROUP:
1377 ret = pinconf_validate_map(&maps[i], i);
1378 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001379 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001380 break;
1381 default:
1382 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001383 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -07001384 return -EINVAL;
1385 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001386 }
1387
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001388 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -08001389 if (!maps_node)
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001390 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001391
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001392 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -06001393 if (dup) {
1394 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
1395 GFP_KERNEL);
1396 if (!maps_node->maps) {
1397 pr_err("failed to duplicate mapping table\n");
1398 kfree(maps_node);
1399 return -ENOMEM;
1400 }
1401 } else {
1402 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001403 }
1404
Doug Andersonc5272a22015-05-01 09:01:27 -07001405 mutex_lock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001406 list_add_tail(&maps_node->node, &pinctrl_maps);
Doug Andersonc5272a22015-05-01 09:01:27 -07001407 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001408
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001409 return 0;
1410}
1411
Stephen Warren57291ce2012-03-23 10:29:46 -06001412/**
1413 * pinctrl_register_mappings() - register a set of pin controller mappings
1414 * @maps: the pincontrol mappings table to register. This should probably be
1415 * marked with __initdata so it can be discarded after boot. This
1416 * function will perform a shallow copy for the mapping entries.
1417 * @num_maps: the number of maps in the mapping table
1418 */
1419int pinctrl_register_mappings(struct pinctrl_map const *maps,
1420 unsigned num_maps)
1421{
Doug Andersonc5272a22015-05-01 09:01:27 -07001422 return pinctrl_register_map(maps, num_maps, true);
Stephen Warren57291ce2012-03-23 10:29:46 -06001423}
1424
1425void pinctrl_unregister_map(struct pinctrl_map const *map)
1426{
1427 struct pinctrl_maps *maps_node;
1428
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001429 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001430 list_for_each_entry(maps_node, &pinctrl_maps, node) {
1431 if (maps_node->maps == map) {
1432 list_del(&maps_node->node);
Linus Walleijdb6c2c62013-07-23 01:43:20 +02001433 kfree(maps_node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001434 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001435 return;
1436 }
1437 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001438 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001439}
1440
Julien Delacou840a47b2012-12-10 14:47:33 +01001441/**
1442 * pinctrl_force_sleep() - turn a given controller device into sleep state
1443 * @pctldev: pin controller device
1444 */
1445int pinctrl_force_sleep(struct pinctrl_dev *pctldev)
1446{
1447 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_sleep))
1448 return pinctrl_select_state(pctldev->p, pctldev->hog_sleep);
1449 return 0;
1450}
1451EXPORT_SYMBOL_GPL(pinctrl_force_sleep);
1452
1453/**
1454 * pinctrl_force_default() - turn a given controller device into default state
1455 * @pctldev: pin controller device
1456 */
1457int pinctrl_force_default(struct pinctrl_dev *pctldev)
1458{
1459 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_default))
1460 return pinctrl_select_state(pctldev->p, pctldev->hog_default);
1461 return 0;
1462}
1463EXPORT_SYMBOL_GPL(pinctrl_force_default);
1464
Douglas Andersonef0eebc2015-10-20 21:15:06 -07001465/**
1466 * pinctrl_init_done() - tell pinctrl probe is done
1467 *
1468 * We'll use this time to switch the pins from "init" to "default" unless the
1469 * driver selected some other state.
1470 *
1471 * @dev: device to that's done probing
1472 */
1473int pinctrl_init_done(struct device *dev)
1474{
1475 struct dev_pin_info *pins = dev->pins;
1476 int ret;
1477
1478 if (!pins)
1479 return 0;
1480
1481 if (IS_ERR(pins->init_state))
1482 return 0; /* No such state */
1483
1484 if (pins->p->state != pins->init_state)
1485 return 0; /* Not at init anyway */
1486
1487 if (IS_ERR(pins->default_state))
1488 return 0; /* No default state */
1489
1490 ret = pinctrl_select_state(pins->p, pins->default_state);
1491 if (ret)
1492 dev_err(dev, "failed to activate default pinctrl state\n");
1493
1494 return ret;
1495}
1496
Linus Walleij14005ee2013-06-05 15:30:33 +02001497#ifdef CONFIG_PM
1498
1499/**
Tony Lindgrenf3333492013-07-18 08:15:04 -07001500 * pinctrl_pm_select_state() - select pinctrl state for PM
1501 * @dev: device to select default state for
1502 * @state: state to set
1503 */
1504static int pinctrl_pm_select_state(struct device *dev,
1505 struct pinctrl_state *state)
1506{
1507 struct dev_pin_info *pins = dev->pins;
1508 int ret;
1509
1510 if (IS_ERR(state))
1511 return 0; /* No such state */
1512 ret = pinctrl_select_state(pins->p, state);
1513 if (ret)
1514 dev_err(dev, "failed to activate pinctrl state %s\n",
1515 state->name);
1516 return ret;
1517}
1518
1519/**
Linus Walleij14005ee2013-06-05 15:30:33 +02001520 * pinctrl_pm_select_default_state() - select default pinctrl state for PM
1521 * @dev: device to select default state for
1522 */
1523int pinctrl_pm_select_default_state(struct device *dev)
1524{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001525 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001526 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001527
1528 return pinctrl_pm_select_state(dev, dev->pins->default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001529}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001530EXPORT_SYMBOL_GPL(pinctrl_pm_select_default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001531
1532/**
1533 * pinctrl_pm_select_sleep_state() - select sleep pinctrl state for PM
1534 * @dev: device to select sleep state for
1535 */
1536int pinctrl_pm_select_sleep_state(struct device *dev)
1537{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001538 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001539 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001540
1541 return pinctrl_pm_select_state(dev, dev->pins->sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001542}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001543EXPORT_SYMBOL_GPL(pinctrl_pm_select_sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001544
1545/**
1546 * pinctrl_pm_select_idle_state() - select idle pinctrl state for PM
1547 * @dev: device to select idle state for
1548 */
1549int pinctrl_pm_select_idle_state(struct device *dev)
1550{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001551 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001552 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001553
1554 return pinctrl_pm_select_state(dev, dev->pins->idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001555}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001556EXPORT_SYMBOL_GPL(pinctrl_pm_select_idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001557#endif
1558
Linus Walleij2744e8a2011-05-02 20:50:54 +02001559#ifdef CONFIG_DEBUG_FS
1560
1561static int pinctrl_pins_show(struct seq_file *s, void *what)
1562{
1563 struct pinctrl_dev *pctldev = s->private;
1564 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001565 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001566
1567 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001568
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001569 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001570
Chanho Park706e8522012-01-03 16:47:50 +09001571 /* The pin number can be retrived from the pin controller descriptor */
1572 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001573 struct pin_desc *desc;
1574
Chanho Park706e8522012-01-03 16:47:50 +09001575 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001576 desc = pin_desc_get(pctldev, pin);
1577 /* Pin space may be sparse */
Markus Elfringcea234e2017-05-02 11:04:55 +02001578 if (!desc)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001579 continue;
1580
Masahiro Yamadacf9d9942016-05-24 14:26:26 +09001581 seq_printf(s, "pin %d (%s) ", pin, desc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001582
1583 /* Driver-specific info per pin */
1584 if (ops->pin_dbg_show)
1585 ops->pin_dbg_show(pctldev, s, pin);
1586
1587 seq_puts(s, "\n");
1588 }
1589
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001590 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001591
Linus Walleij2744e8a2011-05-02 20:50:54 +02001592 return 0;
1593}
1594
1595static int pinctrl_groups_show(struct seq_file *s, void *what)
1596{
1597 struct pinctrl_dev *pctldev = s->private;
1598 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301599 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001600
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001601 mutex_lock(&pctldev->mutex);
1602
Viresh Kumard1e90e92012-03-30 11:25:40 +05301603 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001604
Linus Walleij2744e8a2011-05-02 20:50:54 +02001605 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301606 while (selector < ngroups) {
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001607 const unsigned *pins = NULL;
1608 unsigned num_pins = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001609 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001610 const char *pname;
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001611 int ret = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001612 int i;
1613
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001614 if (ops->get_group_pins)
1615 ret = ops->get_group_pins(pctldev, selector,
1616 &pins, &num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001617 if (ret)
1618 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1619 gname);
1620 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001621 seq_printf(s, "group: %s\n", gname);
1622 for (i = 0; i < num_pins; i++) {
1623 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001624 if (WARN_ON(!pname)) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001625 mutex_unlock(&pctldev->mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001626 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001627 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001628 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1629 }
1630 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001631 }
1632 selector++;
1633 }
1634
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001635 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001636
1637 return 0;
1638}
1639
1640static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1641{
1642 struct pinctrl_dev *pctldev = s->private;
1643 struct pinctrl_gpio_range *range = NULL;
1644
1645 seq_puts(s, "GPIO ranges handled:\n");
1646
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001647 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001648
Linus Walleij2744e8a2011-05-02 20:50:54 +02001649 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001650 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Christian Ruppertc8587ee2013-06-13 14:55:31 +02001651 if (range->pins) {
1652 int a;
1653 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS {",
1654 range->id, range->name,
1655 range->base, (range->base + range->npins - 1));
1656 for (a = 0; a < range->npins - 1; a++)
1657 seq_printf(s, "%u, ", range->pins[a]);
1658 seq_printf(s, "%u}\n", range->pins[a]);
1659 }
1660 else
1661 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1662 range->id, range->name,
1663 range->base, (range->base + range->npins - 1),
1664 range->pin_base,
1665 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001666 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001667
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001668 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001669
1670 return 0;
1671}
1672
1673static int pinctrl_devices_show(struct seq_file *s, void *what)
1674{
1675 struct pinctrl_dev *pctldev;
1676
Linus Walleijae6b4d82011-10-19 18:14:33 +02001677 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001678
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001679 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001680
Linus Walleij2744e8a2011-05-02 20:50:54 +02001681 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1682 seq_printf(s, "%s ", pctldev->desc->name);
1683 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001684 seq_puts(s, "yes ");
1685 else
1686 seq_puts(s, "no ");
1687 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001688 seq_puts(s, "yes");
1689 else
1690 seq_puts(s, "no");
1691 seq_puts(s, "\n");
1692 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001693
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001694 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001695
1696 return 0;
1697}
1698
Stephen Warren1e2082b2012-03-02 13:05:48 -07001699static inline const char *map_type(enum pinctrl_map_type type)
1700{
1701 static const char * const names[] = {
1702 "INVALID",
1703 "DUMMY_STATE",
1704 "MUX_GROUP",
1705 "CONFIGS_PIN",
1706 "CONFIGS_GROUP",
1707 };
1708
1709 if (type >= ARRAY_SIZE(names))
1710 return "UNKNOWN";
1711
1712 return names[type];
1713}
1714
Stephen Warren3eedb432012-02-23 17:04:40 -07001715static int pinctrl_maps_show(struct seq_file *s, void *what)
1716{
1717 struct pinctrl_maps *maps_node;
1718 int i;
1719 struct pinctrl_map const *map;
1720
1721 seq_puts(s, "Pinctrl maps:\n");
1722
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001723 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001724 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001725 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1726 map->dev_name, map->name, map_type(map->type),
1727 map->type);
1728
1729 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1730 seq_printf(s, "controlling device %s\n",
1731 map->ctrl_dev_name);
1732
1733 switch (map->type) {
1734 case PIN_MAP_TYPE_MUX_GROUP:
1735 pinmux_show_map(s, map);
1736 break;
1737 case PIN_MAP_TYPE_CONFIGS_PIN:
1738 case PIN_MAP_TYPE_CONFIGS_GROUP:
1739 pinconf_show_map(s, map);
1740 break;
1741 default:
1742 break;
1743 }
1744
Markus Elfring390e1042017-05-02 10:47:35 +02001745 seq_putc(s, '\n');
Stephen Warren3eedb432012-02-23 17:04:40 -07001746 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001747 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001748
1749 return 0;
1750}
1751
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001752static int pinctrl_show(struct seq_file *s, void *what)
1753{
1754 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001755 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001756 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001757
1758 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001759
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001760 mutex_lock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001761
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001762 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001763 seq_printf(s, "device: %s current state: %s\n",
1764 dev_name(p->dev),
1765 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001766
Stephen Warren6e5e9592012-03-02 13:05:47 -07001767 list_for_each_entry(state, &p->states, node) {
1768 seq_printf(s, " state: %s\n", state->name);
1769
1770 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001771 struct pinctrl_dev *pctldev = setting->pctldev;
1772
1773 seq_printf(s, " type: %s controller %s ",
1774 map_type(setting->type),
1775 pinctrl_dev_get_name(pctldev));
1776
1777 switch (setting->type) {
1778 case PIN_MAP_TYPE_MUX_GROUP:
1779 pinmux_show_setting(s, setting);
1780 break;
1781 case PIN_MAP_TYPE_CONFIGS_PIN:
1782 case PIN_MAP_TYPE_CONFIGS_GROUP:
1783 pinconf_show_setting(s, setting);
1784 break;
1785 default:
1786 break;
1787 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001788 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001789 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001790 }
1791
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001792 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001793
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001794 return 0;
1795}
1796
Linus Walleij2744e8a2011-05-02 20:50:54 +02001797static int pinctrl_pins_open(struct inode *inode, struct file *file)
1798{
1799 return single_open(file, pinctrl_pins_show, inode->i_private);
1800}
1801
1802static int pinctrl_groups_open(struct inode *inode, struct file *file)
1803{
1804 return single_open(file, pinctrl_groups_show, inode->i_private);
1805}
1806
1807static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1808{
1809 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1810}
1811
1812static int pinctrl_devices_open(struct inode *inode, struct file *file)
1813{
1814 return single_open(file, pinctrl_devices_show, NULL);
1815}
1816
Stephen Warren3eedb432012-02-23 17:04:40 -07001817static int pinctrl_maps_open(struct inode *inode, struct file *file)
1818{
1819 return single_open(file, pinctrl_maps_show, NULL);
1820}
1821
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001822static int pinctrl_open(struct inode *inode, struct file *file)
1823{
1824 return single_open(file, pinctrl_show, NULL);
1825}
1826
Linus Walleij2744e8a2011-05-02 20:50:54 +02001827static const struct file_operations pinctrl_pins_ops = {
1828 .open = pinctrl_pins_open,
1829 .read = seq_read,
1830 .llseek = seq_lseek,
1831 .release = single_release,
1832};
1833
1834static const struct file_operations pinctrl_groups_ops = {
1835 .open = pinctrl_groups_open,
1836 .read = seq_read,
1837 .llseek = seq_lseek,
1838 .release = single_release,
1839};
1840
1841static const struct file_operations pinctrl_gpioranges_ops = {
1842 .open = pinctrl_gpioranges_open,
1843 .read = seq_read,
1844 .llseek = seq_lseek,
1845 .release = single_release,
1846};
1847
1848static const struct file_operations pinctrl_devices_ops = {
1849 .open = pinctrl_devices_open,
1850 .read = seq_read,
1851 .llseek = seq_lseek,
1852 .release = single_release,
1853};
1854
Stephen Warren3eedb432012-02-23 17:04:40 -07001855static const struct file_operations pinctrl_maps_ops = {
1856 .open = pinctrl_maps_open,
1857 .read = seq_read,
1858 .llseek = seq_lseek,
1859 .release = single_release,
1860};
1861
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001862static const struct file_operations pinctrl_ops = {
1863 .open = pinctrl_open,
1864 .read = seq_read,
1865 .llseek = seq_lseek,
1866 .release = single_release,
1867};
1868
Linus Walleij2744e8a2011-05-02 20:50:54 +02001869static struct dentry *debugfs_root;
1870
1871static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1872{
Tony Lindgren02157162012-01-20 08:17:22 -08001873 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001874
Stephen Warren51cd24e2011-12-09 16:59:05 -07001875 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001876 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001877 pctldev->device_root = device_root;
1878
Linus Walleij2744e8a2011-05-02 20:50:54 +02001879 if (IS_ERR(device_root) || !device_root) {
1880 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001881 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001882 return;
1883 }
1884 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1885 device_root, pctldev, &pinctrl_pins_ops);
1886 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1887 device_root, pctldev, &pinctrl_groups_ops);
1888 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1889 device_root, pctldev, &pinctrl_gpioranges_ops);
Florian Vaussarde7f2a442014-02-05 07:51:22 +01001890 if (pctldev->desc->pmxops)
1891 pinmux_init_device_debugfs(device_root, pctldev);
1892 if (pctldev->desc->confops)
1893 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001894}
1895
Tony Lindgren02157162012-01-20 08:17:22 -08001896static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1897{
1898 debugfs_remove_recursive(pctldev->device_root);
1899}
1900
Linus Walleij2744e8a2011-05-02 20:50:54 +02001901static void pinctrl_init_debugfs(void)
1902{
1903 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1904 if (IS_ERR(debugfs_root) || !debugfs_root) {
1905 pr_warn("failed to create debugfs directory\n");
1906 debugfs_root = NULL;
1907 return;
1908 }
1909
1910 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1911 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001912 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1913 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001914 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1915 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001916}
1917
1918#else /* CONFIG_DEBUG_FS */
1919
1920static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1921{
1922}
1923
1924static void pinctrl_init_debugfs(void)
1925{
1926}
1927
Tony Lindgren02157162012-01-20 08:17:22 -08001928static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1929{
1930}
1931
Linus Walleij2744e8a2011-05-02 20:50:54 +02001932#endif
1933
Stephen Warrend26bc492012-03-16 14:54:25 -06001934static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1935{
1936 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1937
1938 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301939 !ops->get_groups_count ||
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001940 !ops->get_group_name)
Stephen Warrend26bc492012-03-16 14:54:25 -06001941 return -EINVAL;
1942
1943 return 0;
1944}
1945
Linus Walleij2744e8a2011-05-02 20:50:54 +02001946/**
Tony Lindgren950b0d92017-01-11 14:13:34 -08001947 * pinctrl_init_controller() - init a pin controller device
Linus Walleij2744e8a2011-05-02 20:50:54 +02001948 * @pctldesc: descriptor for this pin controller
1949 * @dev: parent device for this pin controller
1950 * @driver_data: private pin controller data for this pin controller
1951 */
Andy Shevchenko0ca49212017-03-27 14:37:09 +03001952static struct pinctrl_dev *
1953pinctrl_init_controller(struct pinctrl_desc *pctldesc, struct device *dev,
1954 void *driver_data)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001955{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001956 struct pinctrl_dev *pctldev;
1957 int ret;
1958
Devendra Nagada9aecb2012-06-16 23:43:16 +05301959 if (!pctldesc)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001960 return ERR_PTR(-EINVAL);
Devendra Nagada9aecb2012-06-16 23:43:16 +05301961 if (!pctldesc->name)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001962 return ERR_PTR(-EINVAL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001963
Stephen Warren02f5b982012-02-22 14:26:00 -07001964 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -08001965 if (!pctldev)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001966 return ERR_PTR(-ENOMEM);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001967
1968 /* Initialize pin control device struct */
1969 pctldev->owner = pctldesc->owner;
1970 pctldev->desc = pctldesc;
1971 pctldev->driver_data = driver_data;
1972 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleijc033a712016-12-30 15:04:43 +01001973#ifdef CONFIG_GENERIC_PINCTRL_GROUPS
Tony Lindgrenc7059c52016-12-27 09:20:00 -08001974 INIT_RADIX_TREE(&pctldev->pin_group_tree, GFP_KERNEL);
Linus Walleijc033a712016-12-30 15:04:43 +01001975#endif
Tony Lindgrena76edc82016-12-27 09:20:01 -08001976#ifdef CONFIG_GENERIC_PINMUX_FUNCTIONS
1977 INIT_RADIX_TREE(&pctldev->pin_function_tree, GFP_KERNEL);
1978#endif
Linus Walleij2744e8a2011-05-02 20:50:54 +02001979 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Thierry Reding46daed62017-01-12 17:03:34 +01001980 INIT_LIST_HEAD(&pctldev->node);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001981 pctldev->dev = dev;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001982 mutex_init(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001983
Stephen Warrend26bc492012-03-16 14:54:25 -06001984 /* check core ops for sanity */
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001985 ret = pinctrl_check_ops(pctldev);
1986 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001987 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001988 goto out_err;
1989 }
1990
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001991 /* If we're implementing pinmuxing, check the ops for sanity */
1992 if (pctldesc->pmxops) {
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001993 ret = pinmux_check_ops(pctldev);
1994 if (ret)
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001995 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001996 }
1997
1998 /* If we're implementing pinconfig, check the ops for sanity */
1999 if (pctldesc->confops) {
Masahiro Yamada323de9e2015-06-09 13:01:16 +09002000 ret = pinconf_check_ops(pctldev);
2001 if (ret)
Tony Lindgrenb9130b72012-01-24 16:28:08 -08002002 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08002003 }
2004
Linus Walleij2744e8a2011-05-02 20:50:54 +02002005 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02002006 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002007 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
2008 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02002009 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02002010 pinctrl_free_pindescs(pctldev, pctldesc->pins,
2011 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07002012 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02002013 }
2014
Linus Walleij2744e8a2011-05-02 20:50:54 +02002015 return pctldev;
2016
Stephen Warren51cd24e2011-12-09 16:59:05 -07002017out_err:
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002018 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07002019 kfree(pctldev);
Masahiro Yamada323de9e2015-06-09 13:01:16 +09002020 return ERR_PTR(ret);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002021}
Tony Lindgren950b0d92017-01-11 14:13:34 -08002022
Tony Lindgren61187142017-03-30 09:16:39 -07002023static int pinctrl_claim_hogs(struct pinctrl_dev *pctldev)
Tony Lindgren950b0d92017-01-11 14:13:34 -08002024{
2025 pctldev->p = create_pinctrl(pctldev->dev, pctldev);
Tony Lindgren61187142017-03-30 09:16:39 -07002026 if (PTR_ERR(pctldev->p) == -ENODEV) {
2027 dev_dbg(pctldev->dev, "no hogs found\n");
Tony Lindgren950b0d92017-01-11 14:13:34 -08002028
Tony Lindgren61187142017-03-30 09:16:39 -07002029 return 0;
2030 }
2031
2032 if (IS_ERR(pctldev->p)) {
2033 dev_err(pctldev->dev, "error claiming hogs: %li\n",
2034 PTR_ERR(pctldev->p));
2035
2036 return PTR_ERR(pctldev->p);
2037 }
2038
2039 kref_get(&pctldev->p->users);
2040 pctldev->hog_default =
2041 pinctrl_lookup_state(pctldev->p, PINCTRL_STATE_DEFAULT);
2042 if (IS_ERR(pctldev->hog_default)) {
2043 dev_dbg(pctldev->dev,
2044 "failed to lookup the default state\n");
2045 } else {
2046 if (pinctrl_select_state(pctldev->p,
2047 pctldev->hog_default))
2048 dev_err(pctldev->dev,
2049 "failed to select default state\n");
2050 }
2051
2052 pctldev->hog_sleep =
2053 pinctrl_lookup_state(pctldev->p,
2054 PINCTRL_STATE_SLEEP);
2055 if (IS_ERR(pctldev->hog_sleep))
2056 dev_dbg(pctldev->dev,
2057 "failed to lookup the sleep state\n");
2058
2059 return 0;
2060}
2061
2062int pinctrl_enable(struct pinctrl_dev *pctldev)
2063{
2064 int error;
2065
2066 error = pinctrl_claim_hogs(pctldev);
2067 if (error) {
2068 dev_err(pctldev->dev, "could not claim hogs: %i\n",
2069 error);
2070 mutex_destroy(&pctldev->mutex);
2071 kfree(pctldev);
2072
2073 return error;
Tony Lindgren950b0d92017-01-11 14:13:34 -08002074 }
2075
2076 mutex_lock(&pinctrldev_list_mutex);
2077 list_add_tail(&pctldev->node, &pinctrldev_list);
2078 mutex_unlock(&pinctrldev_list_mutex);
2079
2080 pinctrl_init_device_debugfs(pctldev);
2081
2082 return 0;
2083}
Tony Lindgren61187142017-03-30 09:16:39 -07002084EXPORT_SYMBOL_GPL(pinctrl_enable);
Tony Lindgren950b0d92017-01-11 14:13:34 -08002085
2086/**
2087 * pinctrl_register() - register a pin controller device
2088 * @pctldesc: descriptor for this pin controller
2089 * @dev: parent device for this pin controller
2090 * @driver_data: private pin controller data for this pin controller
2091 *
2092 * Note that pinctrl_register() is known to have problems as the pin
2093 * controller driver functions are called before the driver has a
2094 * struct pinctrl_dev handle. To avoid issues later on, please use the
2095 * new pinctrl_register_and_init() below instead.
2096 */
2097struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
2098 struct device *dev, void *driver_data)
2099{
2100 struct pinctrl_dev *pctldev;
2101 int error;
2102
2103 pctldev = pinctrl_init_controller(pctldesc, dev, driver_data);
2104 if (IS_ERR(pctldev))
2105 return pctldev;
2106
Tony Lindgren61187142017-03-30 09:16:39 -07002107 error = pinctrl_enable(pctldev);
2108 if (error)
Tony Lindgren950b0d92017-01-11 14:13:34 -08002109 return ERR_PTR(error);
Tony Lindgren950b0d92017-01-11 14:13:34 -08002110
2111 return pctldev;
2112
2113}
Linus Walleij2744e8a2011-05-02 20:50:54 +02002114EXPORT_SYMBOL_GPL(pinctrl_register);
2115
Tony Lindgren61187142017-03-30 09:16:39 -07002116/**
2117 * pinctrl_register_and_init() - register and init pin controller device
2118 * @pctldesc: descriptor for this pin controller
2119 * @dev: parent device for this pin controller
2120 * @driver_data: private pin controller data for this pin controller
2121 * @pctldev: pin controller device
2122 *
2123 * Note that pinctrl_enable() still needs to be manually called after
2124 * this once the driver is ready.
2125 */
Tony Lindgren950b0d92017-01-11 14:13:34 -08002126int pinctrl_register_and_init(struct pinctrl_desc *pctldesc,
2127 struct device *dev, void *driver_data,
2128 struct pinctrl_dev **pctldev)
2129{
2130 struct pinctrl_dev *p;
Tony Lindgren950b0d92017-01-11 14:13:34 -08002131
2132 p = pinctrl_init_controller(pctldesc, dev, driver_data);
2133 if (IS_ERR(p))
2134 return PTR_ERR(p);
2135
2136 /*
2137 * We have pinctrl_start() call functions in the pin controller
2138 * driver with create_pinctrl() for at least dt_node_to_map(). So
2139 * let's make sure pctldev is properly initialized for the
2140 * pin controller driver before we do anything.
2141 */
2142 *pctldev = p;
2143
Tony Lindgren950b0d92017-01-11 14:13:34 -08002144 return 0;
2145}
2146EXPORT_SYMBOL_GPL(pinctrl_register_and_init);
2147
Linus Walleij2744e8a2011-05-02 20:50:54 +02002148/**
2149 * pinctrl_unregister() - unregister pinmux
2150 * @pctldev: pin controller to unregister
2151 *
2152 * Called by pinmux drivers to unregister a pinmux.
2153 */
2154void pinctrl_unregister(struct pinctrl_dev *pctldev)
2155{
Dong Aisheng5d589b02012-05-23 21:22:40 +08002156 struct pinctrl_gpio_range *range, *n;
Jon Hunter3429fb32017-01-05 15:52:55 +00002157
Markus Elfringcea234e2017-05-02 11:04:55 +02002158 if (!pctldev)
Linus Walleij2744e8a2011-05-02 20:50:54 +02002159 return;
2160
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002161 mutex_lock(&pctldev->mutex);
Tony Lindgren02157162012-01-20 08:17:22 -08002162 pinctrl_remove_device_debugfs(pctldev);
Jim Lindb93fac2015-01-08 20:25:05 +08002163 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07002164
Jon Hunter3429fb32017-01-05 15:52:55 +00002165 if (!IS_ERR_OR_NULL(pctldev->p))
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002166 pinctrl_put(pctldev->p);
Stephen Warren57b676f2012-03-02 13:05:44 -07002167
Jim Lindb93fac2015-01-08 20:25:05 +08002168 mutex_lock(&pinctrldev_list_mutex);
2169 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002170 /* TODO: check that no pinmuxes are still active? */
Thierry Reding46daed62017-01-12 17:03:34 +01002171 list_del(&pctldev->node);
Tony Lindgrena76edc82016-12-27 09:20:01 -08002172 pinmux_generic_free_functions(pctldev);
Tony Lindgrenc7059c52016-12-27 09:20:00 -08002173 pinctrl_generic_free_groups(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002174 /* Destroy descriptor tree */
2175 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
2176 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08002177 /* remove gpio ranges map */
2178 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
2179 list_del(&range->node);
2180
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002181 mutex_unlock(&pctldev->mutex);
2182 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07002183 kfree(pctldev);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002184 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002185}
2186EXPORT_SYMBOL_GPL(pinctrl_unregister);
2187
Laxman Dewangan80e0f8d2016-02-24 14:12:59 +05302188static void devm_pinctrl_dev_release(struct device *dev, void *res)
2189{
2190 struct pinctrl_dev *pctldev = *(struct pinctrl_dev **)res;
2191
2192 pinctrl_unregister(pctldev);
2193}
2194
2195static int devm_pinctrl_dev_match(struct device *dev, void *res, void *data)
2196{
2197 struct pctldev **r = res;
2198
Laxman Dewangan3024f922016-02-24 14:44:07 +05302199 if (WARN_ON(!r || !*r))
Laxman Dewangan80e0f8d2016-02-24 14:12:59 +05302200 return 0;
2201
2202 return *r == data;
2203}
2204
2205/**
2206 * devm_pinctrl_register() - Resource managed version of pinctrl_register().
2207 * @dev: parent device for this pin controller
2208 * @pctldesc: descriptor for this pin controller
2209 * @driver_data: private pin controller data for this pin controller
2210 *
2211 * Returns an error pointer if pincontrol register failed. Otherwise
2212 * it returns valid pinctrl handle.
2213 *
2214 * The pinctrl device will be automatically released when the device is unbound.
2215 */
2216struct pinctrl_dev *devm_pinctrl_register(struct device *dev,
2217 struct pinctrl_desc *pctldesc,
2218 void *driver_data)
2219{
2220 struct pinctrl_dev **ptr, *pctldev;
2221
2222 ptr = devres_alloc(devm_pinctrl_dev_release, sizeof(*ptr), GFP_KERNEL);
2223 if (!ptr)
2224 return ERR_PTR(-ENOMEM);
2225
2226 pctldev = pinctrl_register(pctldesc, dev, driver_data);
2227 if (IS_ERR(pctldev)) {
2228 devres_free(ptr);
2229 return pctldev;
2230 }
2231
2232 *ptr = pctldev;
2233 devres_add(dev, ptr);
2234
2235 return pctldev;
2236}
2237EXPORT_SYMBOL_GPL(devm_pinctrl_register);
2238
2239/**
Tony Lindgren950b0d92017-01-11 14:13:34 -08002240 * devm_pinctrl_register_and_init() - Resource managed pinctrl register and init
2241 * @dev: parent device for this pin controller
2242 * @pctldesc: descriptor for this pin controller
2243 * @driver_data: private pin controller data for this pin controller
2244 *
2245 * Returns an error pointer if pincontrol register failed. Otherwise
2246 * it returns valid pinctrl handle.
2247 *
2248 * The pinctrl device will be automatically released when the device is unbound.
2249 */
2250int devm_pinctrl_register_and_init(struct device *dev,
2251 struct pinctrl_desc *pctldesc,
2252 void *driver_data,
2253 struct pinctrl_dev **pctldev)
2254{
2255 struct pinctrl_dev **ptr;
2256 int error;
2257
2258 ptr = devres_alloc(devm_pinctrl_dev_release, sizeof(*ptr), GFP_KERNEL);
2259 if (!ptr)
2260 return -ENOMEM;
2261
2262 error = pinctrl_register_and_init(pctldesc, dev, driver_data, pctldev);
2263 if (error) {
2264 devres_free(ptr);
2265 return error;
2266 }
2267
2268 *ptr = *pctldev;
2269 devres_add(dev, ptr);
2270
2271 return 0;
2272}
2273EXPORT_SYMBOL_GPL(devm_pinctrl_register_and_init);
2274
2275/**
Laxman Dewangan80e0f8d2016-02-24 14:12:59 +05302276 * devm_pinctrl_unregister() - Resource managed version of pinctrl_unregister().
2277 * @dev: device for which which resource was allocated
2278 * @pctldev: the pinctrl device to unregister.
2279 */
2280void devm_pinctrl_unregister(struct device *dev, struct pinctrl_dev *pctldev)
2281{
2282 WARN_ON(devres_release(dev, devm_pinctrl_dev_release,
2283 devm_pinctrl_dev_match, pctldev));
2284}
2285EXPORT_SYMBOL_GPL(devm_pinctrl_unregister);
2286
Linus Walleij2744e8a2011-05-02 20:50:54 +02002287static int __init pinctrl_init(void)
2288{
2289 pr_info("initialized pinctrl subsystem\n");
2290 pinctrl_init_debugfs();
2291 return 0;
2292}
2293
2294/* init early since many drivers really need to initialized pinmux early */
2295core_initcall(pinctrl_init);