blob: bd459a93b0e7e9b11c999dd4bf9b95c3500be3e2 [file] [log] [blame]
Linus Walleij2744e8a2011-05-02 20:50:54 +02001/*
2 * Core driver for the pin control subsystem
3 *
Linus Walleijbefe5bd2012-02-09 19:47:48 +01004 * Copyright (C) 2011-2012 ST-Ericsson SA
Linus Walleij2744e8a2011-05-02 20:50:54 +02005 * Written on behalf of Linaro for ST-Ericsson
6 * Based on bits of regulator core, gpio core and clk core
7 *
8 * Author: Linus Walleij <linus.walleij@linaro.org>
9 *
Stephen Warrenb2b3e662012-02-19 23:45:43 -070010 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
11 *
Linus Walleij2744e8a2011-05-02 20:50:54 +020012 * License terms: GNU General Public License (GPL) version 2
13 */
14#define pr_fmt(fmt) "pinctrl core: " fmt
15
16#include <linux/kernel.h>
Linus Walleijab780292013-01-22 10:56:14 -070017#include <linux/kref.h>
Stephen Rothwella5a697c2011-09-30 14:39:04 +100018#include <linux/export.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020019#include <linux/init.h>
20#include <linux/device.h>
21#include <linux/slab.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020022#include <linux/err.h>
23#include <linux/list.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020024#include <linux/sysfs.h>
25#include <linux/debugfs.h>
26#include <linux/seq_file.h>
Stephen Warren6d4ca1f2012-04-16 10:51:00 -060027#include <linux/pinctrl/consumer.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020028#include <linux/pinctrl/pinctrl.h>
29#include <linux/pinctrl/machine.h>
Haojian Zhuang2afe8222013-03-28 07:34:19 +080030
31#ifdef CONFIG_GPIOLIB
Haojian Zhuang51e13c22013-02-17 19:42:50 +080032#include <asm-generic/gpio.h>
Haojian Zhuang2afe8222013-03-28 07:34:19 +080033#endif
34
Linus Walleij2744e8a2011-05-02 20:50:54 +020035#include "core.h"
Stephen Warren57291ce2012-03-23 10:29:46 -060036#include "devicetree.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020037#include "pinmux.h"
Linus Walleijae6b4d82011-10-19 18:14:33 +020038#include "pinconf.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020039
Stephen Warrenb2b3e662012-02-19 23:45:43 -070040
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080041static bool pinctrl_dummy_state;
42
Patrice Chotard42fed7b2013-04-11 11:01:27 +020043/* Mutex taken to protect pinctrl_list */
Sachin Kamat843aec92013-06-18 14:34:27 +053044static DEFINE_MUTEX(pinctrl_list_mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +020045
46/* Mutex taken to protect pinctrl_maps */
47DEFINE_MUTEX(pinctrl_maps_mutex);
48
49/* Mutex taken to protect pinctrldev_list */
Sachin Kamat843aec92013-06-18 14:34:27 +053050static DEFINE_MUTEX(pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -070051
52/* Global list of pin control devices (struct pinctrl_dev) */
Patrice Chotard42fed7b2013-04-11 11:01:27 +020053static LIST_HEAD(pinctrldev_list);
Linus Walleij2744e8a2011-05-02 20:50:54 +020054
Stephen Warren57b676f2012-03-02 13:05:44 -070055/* List of pin controller handles (struct pinctrl) */
Linus Walleijbefe5bd2012-02-09 19:47:48 +010056static LIST_HEAD(pinctrl_list);
57
Stephen Warren57b676f2012-03-02 13:05:44 -070058/* List of pinctrl maps (struct pinctrl_maps) */
Laurent Meunier6f9e41f2013-02-06 09:09:44 +010059LIST_HEAD(pinctrl_maps);
Stephen Warrenb2b3e662012-02-19 23:45:43 -070060
Linus Walleijbefe5bd2012-02-09 19:47:48 +010061
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080062/**
63 * pinctrl_provide_dummies() - indicate if pinctrl provides dummy state support
64 *
65 * Usually this function is called by platforms without pinctrl driver support
66 * but run with some shared drivers using pinctrl APIs.
67 * After calling this function, the pinctrl core will return successfully
68 * with creating a dummy state for the driver to keep going smoothly.
69 */
70void pinctrl_provide_dummies(void)
71{
72 pinctrl_dummy_state = true;
73}
74
Linus Walleij2744e8a2011-05-02 20:50:54 +020075const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev)
76{
77 /* We're not allowed to register devices without name */
78 return pctldev->desc->name;
79}
80EXPORT_SYMBOL_GPL(pinctrl_dev_get_name);
81
Haojian Zhuangd6e99ab2013-01-18 15:31:06 +080082const char *pinctrl_dev_get_devname(struct pinctrl_dev *pctldev)
83{
84 return dev_name(pctldev->dev);
85}
86EXPORT_SYMBOL_GPL(pinctrl_dev_get_devname);
87
Linus Walleij2744e8a2011-05-02 20:50:54 +020088void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev)
89{
90 return pctldev->driver_data;
91}
92EXPORT_SYMBOL_GPL(pinctrl_dev_get_drvdata);
93
94/**
Linus Walleij9dfac4f2012-02-01 18:02:47 +010095 * get_pinctrl_dev_from_devname() - look up pin controller device
96 * @devname: the name of a device instance, as returned by dev_name()
Linus Walleij2744e8a2011-05-02 20:50:54 +020097 *
98 * Looks up a pin control device matching a certain device name or pure device
99 * pointer, the pure device pointer will take precedence.
100 */
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100101struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *devname)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200102{
103 struct pinctrl_dev *pctldev = NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200104
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100105 if (!devname)
106 return NULL;
107
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200108 mutex_lock(&pinctrldev_list_mutex);
109
Linus Walleij2744e8a2011-05-02 20:50:54 +0200110 list_for_each_entry(pctldev, &pinctrldev_list, node) {
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100111 if (!strcmp(dev_name(pctldev->dev), devname)) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200112 /* Matched on device name */
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200113 mutex_unlock(&pinctrldev_list_mutex);
114 return pctldev;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200115 }
116 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200117
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200118 mutex_unlock(&pinctrldev_list_mutex);
119
120 return NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200121}
122
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200123struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np)
124{
125 struct pinctrl_dev *pctldev;
126
127 mutex_lock(&pinctrldev_list_mutex);
128
129 list_for_each_entry(pctldev, &pinctrldev_list, node)
130 if (pctldev->dev->of_node == np) {
131 mutex_unlock(&pinctrldev_list_mutex);
132 return pctldev;
133 }
134
Daniel Mackd463f822013-04-26 18:57:02 +0200135 mutex_unlock(&pinctrldev_list_mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200136
137 return NULL;
138}
139
Linus Walleij2744e8a2011-05-02 20:50:54 +0200140/**
Linus Walleijae6b4d82011-10-19 18:14:33 +0200141 * pin_get_from_name() - look up a pin number from a name
142 * @pctldev: the pin control device to lookup the pin on
143 * @name: the name of the pin to look up
144 */
145int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name)
146{
Chanho Park706e8522012-01-03 16:47:50 +0900147 unsigned i, pin;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200148
Chanho Park706e8522012-01-03 16:47:50 +0900149 /* The pin number can be retrived from the pin controller descriptor */
150 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleijae6b4d82011-10-19 18:14:33 +0200151 struct pin_desc *desc;
152
Chanho Park706e8522012-01-03 16:47:50 +0900153 pin = pctldev->desc->pins[i].number;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200154 desc = pin_desc_get(pctldev, pin);
155 /* Pin space may be sparse */
Axel Lin6c325f82013-08-19 10:06:29 +0800156 if (desc && !strcmp(name, desc->name))
Linus Walleijae6b4d82011-10-19 18:14:33 +0200157 return pin;
158 }
159
160 return -EINVAL;
161}
162
163/**
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800164 * pin_get_name_from_id() - look up a pin name from a pin id
165 * @pctldev: the pin control device to lookup the pin on
166 * @name: the name of the pin to look up
167 */
168const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin)
169{
170 const struct pin_desc *desc;
171
172 desc = pin_desc_get(pctldev, pin);
173 if (desc == NULL) {
174 dev_err(pctldev->dev, "failed to get pin(%d) name\n",
175 pin);
176 return NULL;
177 }
178
179 return desc->name;
180}
181
182/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200183 * pin_is_valid() - check if pin exists on controller
184 * @pctldev: the pin control device to check the pin on
185 * @pin: pin to check, use the local pin controller index number
186 *
187 * This tells us whether a certain pin exist on a certain pin controller or
188 * not. Pin lists may be sparse, so some pins may not exist.
189 */
190bool pin_is_valid(struct pinctrl_dev *pctldev, int pin)
191{
192 struct pin_desc *pindesc;
193
194 if (pin < 0)
195 return false;
196
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200197 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200198 pindesc = pin_desc_get(pctldev, pin);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200199 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200200
Stephen Warren57b676f2012-03-02 13:05:44 -0700201 return pindesc != NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200202}
203EXPORT_SYMBOL_GPL(pin_is_valid);
204
205/* Deletes a range of pin descriptors */
206static void pinctrl_free_pindescs(struct pinctrl_dev *pctldev,
207 const struct pinctrl_pin_desc *pins,
208 unsigned num_pins)
209{
210 int i;
211
Linus Walleij2744e8a2011-05-02 20:50:54 +0200212 for (i = 0; i < num_pins; i++) {
213 struct pin_desc *pindesc;
214
215 pindesc = radix_tree_lookup(&pctldev->pin_desc_tree,
216 pins[i].number);
217 if (pindesc != NULL) {
218 radix_tree_delete(&pctldev->pin_desc_tree,
219 pins[i].number);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100220 if (pindesc->dynamic_name)
221 kfree(pindesc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200222 }
223 kfree(pindesc);
224 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200225}
226
227static int pinctrl_register_one_pin(struct pinctrl_dev *pctldev,
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);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200233 if (pindesc != NULL) {
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);
Sachin Kamateb26cc92012-09-25 12:41:40 +0530251 if (pindesc->name == NULL) {
252 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);
405 if (range != NULL) {
406 *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 *
Tony Lindgren664b7c42017-05-12 08:47:57 -0700683 * Note that the caller must take care of locking. The pinctrl groups
684 * are allocated with devm_kzalloc() so no need to free them here.
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800685 */
686static void pinctrl_generic_free_groups(struct pinctrl_dev *pctldev)
687{
688 struct radix_tree_iter iter;
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800689 void **slot;
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800690
691 radix_tree_for_each_slot(slot, &pctldev->pin_group_tree, &iter, 0)
Tony Lindgren664b7c42017-05-12 08:47:57 -0700692 radix_tree_delete(&pctldev->pin_group_tree, iter.index);
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800693
694 pctldev->num_groups = 0;
695}
696
697#else
698static inline void pinctrl_generic_free_groups(struct pinctrl_dev *pctldev)
699{
700}
Linus Walleijc033a712016-12-30 15:04:43 +0100701#endif /* CONFIG_GENERIC_PINCTRL_GROUPS */
Tony Lindgrenc7059c52016-12-27 09:20:00 -0800702
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530703/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200704 * pinctrl_get_group_selector() - returns the group selector for a group
705 * @pctldev: the pin controller handling the group
706 * @pin_group: the pin group to look up
707 */
708int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
709 const char *pin_group)
710{
711 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530712 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200713 unsigned group_selector = 0;
714
Viresh Kumard1e90e92012-03-30 11:25:40 +0530715 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200716 const char *gname = pctlops->get_group_name(pctldev,
717 group_selector);
718 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700719 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200720 "found group selector %u for %s\n",
721 group_selector,
722 pin_group);
723 return group_selector;
724 }
725
726 group_selector++;
727 }
728
Stephen Warren51cd24e2011-12-09 16:59:05 -0700729 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200730 pin_group);
731
732 return -EINVAL;
733}
734
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100735/**
Geert Uytterhoevenb217e432015-05-04 19:46:57 +0200736 * pinctrl_request_gpio() - request a single pin to be used as GPIO
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100737 * @gpio: the GPIO pin number from the GPIO subsystem number space
738 *
739 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
740 * as part of their gpio_request() semantics, platforms and individual drivers
741 * shall *NOT* request GPIO pins to be muxed in.
742 */
743int pinctrl_request_gpio(unsigned gpio)
744{
745 struct pinctrl_dev *pctldev;
746 struct pinctrl_gpio_range *range;
747 int ret;
748 int pin;
749
750 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700751 if (ret) {
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800752 if (pinctrl_ready_for_gpio_range(gpio))
753 ret = 0;
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800754 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700755 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100756
Axel Lin9b77ace42013-08-19 10:07:46 +0800757 mutex_lock(&pctldev->mutex);
758
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100759 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200760 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100761
Stephen Warren57b676f2012-03-02 13:05:44 -0700762 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
763
Axel Lin9b77ace42013-08-19 10:07:46 +0800764 mutex_unlock(&pctldev->mutex);
765
Stephen Warren57b676f2012-03-02 13:05:44 -0700766 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100767}
768EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
769
770/**
771 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
772 * @gpio: the GPIO pin number from the GPIO subsystem number space
773 *
774 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
775 * as part of their gpio_free() semantics, platforms and individual drivers
776 * shall *NOT* request GPIO pins to be muxed out.
777 */
778void pinctrl_free_gpio(unsigned gpio)
779{
780 struct pinctrl_dev *pctldev;
781 struct pinctrl_gpio_range *range;
782 int ret;
783 int pin;
784
785 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700786 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100787 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700788 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200789 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100790
791 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200792 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100793
Stephen Warren57b676f2012-03-02 13:05:44 -0700794 pinmux_free_gpio(pctldev, pin, range);
795
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200796 mutex_unlock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100797}
798EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
799
800static int pinctrl_gpio_direction(unsigned gpio, bool input)
801{
802 struct pinctrl_dev *pctldev;
803 struct pinctrl_gpio_range *range;
804 int ret;
805 int pin;
806
807 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200808 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100809 return ret;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200810 }
811
812 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100813
814 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200815 pin = gpio_to_pin(range, gpio);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200816 ret = pinmux_gpio_direction(pctldev, range, pin, input);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100817
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200818 mutex_unlock(&pctldev->mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200819
820 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100821}
822
823/**
824 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
825 * @gpio: the GPIO pin number from the GPIO subsystem number space
826 *
827 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
828 * as part of their gpio_direction_input() semantics, platforms and individual
829 * drivers shall *NOT* touch pin control GPIO calls.
830 */
831int pinctrl_gpio_direction_input(unsigned gpio)
832{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200833 return pinctrl_gpio_direction(gpio, true);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100834}
835EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
836
837/**
838 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output 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_output() semantics, platforms and individual
843 * drivers shall *NOT* touch pin control GPIO calls.
844 */
845int pinctrl_gpio_direction_output(unsigned gpio)
846{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200847 return pinctrl_gpio_direction(gpio, false);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100848}
849EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
850
Mika Westerberg15381bc2017-01-23 15:34:33 +0300851/**
852 * pinctrl_gpio_set_config() - Apply config to given GPIO pin
853 * @gpio: the GPIO pin number from the GPIO subsystem number space
854 * @config: the configuration to apply to the GPIO
855 *
856 * This function should *ONLY* be used from gpiolib-based GPIO drivers, if
857 * they need to call the underlying pin controller to change GPIO config
858 * (for example set debounce time).
859 */
860int pinctrl_gpio_set_config(unsigned gpio, unsigned long config)
861{
862 unsigned long configs[] = { config };
863 struct pinctrl_gpio_range *range;
864 struct pinctrl_dev *pctldev;
865 int ret, pin;
866
867 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
868 if (ret)
869 return ret;
870
871 mutex_lock(&pctldev->mutex);
872 pin = gpio_to_pin(range, gpio);
873 ret = pinconf_set_config(pctldev, pin, configs, ARRAY_SIZE(configs));
874 mutex_unlock(&pctldev->mutex);
875
876 return ret;
877}
878EXPORT_SYMBOL_GPL(pinctrl_gpio_set_config);
879
Stephen Warren6e5e9592012-03-02 13:05:47 -0700880static struct pinctrl_state *find_state(struct pinctrl *p,
881 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100882{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700883 struct pinctrl_state *state;
884
885 list_for_each_entry(state, &p->states, node)
886 if (!strcmp(state->name, name))
887 return state;
888
889 return NULL;
890}
891
892static struct pinctrl_state *create_state(struct pinctrl *p,
893 const char *name)
894{
895 struct pinctrl_state *state;
896
897 state = kzalloc(sizeof(*state), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -0800898 if (!state)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700899 return ERR_PTR(-ENOMEM);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700900
901 state->name = name;
902 INIT_LIST_HEAD(&state->settings);
903
904 list_add_tail(&state->node, &p->states);
905
906 return state;
907}
908
Tony Lindgren99e4f672016-12-27 09:19:59 -0800909static int add_setting(struct pinctrl *p, struct pinctrl_dev *pctldev,
910 struct pinctrl_map const *map)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700911{
912 struct pinctrl_state *state;
913 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700914 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700915
916 state = find_state(p, map->name);
917 if (!state)
918 state = create_state(p, map->name);
919 if (IS_ERR(state))
920 return PTR_ERR(state);
921
Stephen Warren1e2082b2012-03-02 13:05:48 -0700922 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
923 return 0;
924
Stephen Warren6e5e9592012-03-02 13:05:47 -0700925 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -0800926 if (!setting)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700927 return -ENOMEM;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700928
Stephen Warren1e2082b2012-03-02 13:05:48 -0700929 setting->type = map->type;
930
Tony Lindgren99e4f672016-12-27 09:19:59 -0800931 if (pctldev)
932 setting->pctldev = pctldev;
933 else
934 setting->pctldev =
935 get_pinctrl_dev_from_devname(map->ctrl_dev_name);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700936 if (setting->pctldev == NULL) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700937 kfree(setting);
Linus Walleij89216492012-12-11 14:14:32 +0100938 /* Do not defer probing of hogs (circular loop) */
939 if (!strcmp(map->ctrl_dev_name, map->dev_name))
940 return -ENODEV;
Linus Walleijc05127c2012-04-10 10:00:38 +0200941 /*
942 * OK let us guess that the driver is not there yet, and
943 * let's defer obtaining this pinctrl handle to later...
944 */
Linus Walleij89216492012-12-11 14:14:32 +0100945 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
946 map->ctrl_dev_name);
Linus Walleijc05127c2012-04-10 10:00:38 +0200947 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700948 }
949
Linus Walleij1a789582012-10-17 20:51:54 +0200950 setting->dev_name = map->dev_name;
951
Stephen Warren1e2082b2012-03-02 13:05:48 -0700952 switch (map->type) {
953 case PIN_MAP_TYPE_MUX_GROUP:
954 ret = pinmux_map_to_setting(map, setting);
955 break;
956 case PIN_MAP_TYPE_CONFIGS_PIN:
957 case PIN_MAP_TYPE_CONFIGS_GROUP:
958 ret = pinconf_map_to_setting(map, setting);
959 break;
960 default:
961 ret = -EINVAL;
962 break;
963 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700964 if (ret < 0) {
965 kfree(setting);
966 return ret;
967 }
968
969 list_add_tail(&setting->node, &state->settings);
970
971 return 0;
972}
973
974static struct pinctrl *find_pinctrl(struct device *dev)
975{
976 struct pinctrl *p;
977
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200978 mutex_lock(&pinctrl_list_mutex);
Stephen Warren1e2082b2012-03-02 13:05:48 -0700979 list_for_each_entry(p, &pinctrl_list, node)
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200980 if (p->dev == dev) {
981 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700982 return p;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200983 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700984
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200985 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700986 return NULL;
987}
988
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200989static void pinctrl_free(struct pinctrl *p, bool inlist);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700990
Tony Lindgren99e4f672016-12-27 09:19:59 -0800991static struct pinctrl *create_pinctrl(struct device *dev,
992 struct pinctrl_dev *pctldev)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700993{
994 struct pinctrl *p;
995 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700996 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100997 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700998 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700999 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001000
1001 /*
1002 * create the state cookie holder struct pinctrl for each
1003 * mapping, this is what consumers will get when requesting
1004 * a pin control handle with pinctrl_get()
1005 */
Stephen Warren02f5b982012-02-22 14:26:00 -07001006 p = kzalloc(sizeof(*p), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -08001007 if (!p)
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001008 return ERR_PTR(-ENOMEM);
Stephen Warren7ecdb162012-03-02 13:05:45 -07001009 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001010 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -06001011 INIT_LIST_HEAD(&p->dt_maps);
1012
Tony Lindgren99e4f672016-12-27 09:19:59 -08001013 ret = pinctrl_dt_to_map(p, pctldev);
Stephen Warren57291ce2012-03-23 10:29:46 -06001014 if (ret < 0) {
1015 kfree(p);
1016 return ERR_PTR(ret);
1017 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001018
1019 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001020
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001021 mutex_lock(&pinctrl_maps_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001022 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001023 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -07001024 /* Map must be for this device */
1025 if (strcmp(map->dev_name, devname))
1026 continue;
1027
Tony Lindgren99e4f672016-12-27 09:19:59 -08001028 ret = add_setting(p, pctldev, map);
Linus Walleij89216492012-12-11 14:14:32 +01001029 /*
1030 * At this point the adding of a setting may:
1031 *
1032 * - Defer, if the pinctrl device is not yet available
1033 * - Fail, if the pinctrl device is not yet available,
1034 * AND the setting is a hog. We cannot defer that, since
1035 * the hog will kick in immediately after the device
1036 * is registered.
1037 *
1038 * If the error returned was not -EPROBE_DEFER then we
1039 * accumulate the errors to see if we end up with
1040 * an -EPROBE_DEFER later, as that is the worst case.
1041 */
1042 if (ret == -EPROBE_DEFER) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001043 pinctrl_free(p, false);
1044 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001045 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001046 }
1047 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001048 mutex_unlock(&pinctrl_maps_mutex);
1049
Linus Walleij89216492012-12-11 14:14:32 +01001050 if (ret < 0) {
Andy Shevchenko3ec440e2017-02-28 16:59:56 +02001051 /* If some other error than deferral occurred, return here */
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001052 pinctrl_free(p, false);
Linus Walleij89216492012-12-11 14:14:32 +01001053 return ERR_PTR(ret);
1054 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001055
Linus Walleijab780292013-01-22 10:56:14 -07001056 kref_init(&p->users);
1057
Linus Walleijb0666ba2012-12-11 13:12:35 +01001058 /* Add the pinctrl handle to the global list */
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +01001059 mutex_lock(&pinctrl_list_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -07001060 list_add_tail(&p->node, &pinctrl_list);
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +01001061 mutex_unlock(&pinctrl_list_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001062
1063 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001064}
Stephen Warren7ecdb162012-03-02 13:05:45 -07001065
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001066/**
1067 * pinctrl_get() - retrieves the pinctrl handle for a device
1068 * @dev: the device to obtain the handle for
1069 */
1070struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warren6e5e9592012-03-02 13:05:47 -07001071{
1072 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001073
Stephen Warren6e5e9592012-03-02 13:05:47 -07001074 if (WARN_ON(!dev))
1075 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -07001076
Linus Walleijab780292013-01-22 10:56:14 -07001077 /*
1078 * See if somebody else (such as the device core) has already
1079 * obtained a handle to the pinctrl for this device. In that case,
1080 * return another pointer to it.
1081 */
Stephen Warren6e5e9592012-03-02 13:05:47 -07001082 p = find_pinctrl(dev);
Linus Walleijab780292013-01-22 10:56:14 -07001083 if (p != NULL) {
1084 dev_dbg(dev, "obtain a copy of previously claimed pinctrl\n");
1085 kref_get(&p->users);
1086 return p;
1087 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001088
Tony Lindgren99e4f672016-12-27 09:19:59 -08001089 return create_pinctrl(dev, NULL);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001090}
1091EXPORT_SYMBOL_GPL(pinctrl_get);
1092
Richard Genoudd3cee8302013-03-25 15:47:21 +01001093static void pinctrl_free_setting(bool disable_setting,
1094 struct pinctrl_setting *setting)
1095{
1096 switch (setting->type) {
1097 case PIN_MAP_TYPE_MUX_GROUP:
1098 if (disable_setting)
1099 pinmux_disable_setting(setting);
1100 pinmux_free_setting(setting);
1101 break;
1102 case PIN_MAP_TYPE_CONFIGS_PIN:
1103 case PIN_MAP_TYPE_CONFIGS_GROUP:
1104 pinconf_free_setting(setting);
1105 break;
1106 default:
1107 break;
1108 }
1109}
1110
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001111static void pinctrl_free(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -07001112{
Stephen Warren6e5e9592012-03-02 13:05:47 -07001113 struct pinctrl_state *state, *n1;
1114 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001115
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001116 mutex_lock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001117 list_for_each_entry_safe(state, n1, &p->states, node) {
1118 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Richard Genoudd3cee8302013-03-25 15:47:21 +01001119 pinctrl_free_setting(state == p->state, setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001120 list_del(&setting->node);
1121 kfree(setting);
1122 }
1123 list_del(&state->node);
1124 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -07001125 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001126
Stephen Warren57291ce2012-03-23 10:29:46 -06001127 pinctrl_dt_free_maps(p);
1128
Stephen Warren6e5e9592012-03-02 13:05:47 -07001129 if (inlist)
1130 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -07001131 kfree(p);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001132 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001133}
1134
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001135/**
Linus Walleijab780292013-01-22 10:56:14 -07001136 * pinctrl_release() - release the pinctrl handle
1137 * @kref: the kref in the pinctrl being released
1138 */
Sachin Kamat2917e832013-01-24 15:01:00 +05301139static void pinctrl_release(struct kref *kref)
Linus Walleijab780292013-01-22 10:56:14 -07001140{
1141 struct pinctrl *p = container_of(kref, struct pinctrl, users);
1142
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001143 pinctrl_free(p, true);
Linus Walleijab780292013-01-22 10:56:14 -07001144}
1145
1146/**
1147 * pinctrl_put() - decrease use count on a previously claimed pinctrl handle
Stephen Warren6e5e9592012-03-02 13:05:47 -07001148 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001149 */
1150void pinctrl_put(struct pinctrl *p)
1151{
Linus Walleijab780292013-01-22 10:56:14 -07001152 kref_put(&p->users, pinctrl_release);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001153}
1154EXPORT_SYMBOL_GPL(pinctrl_put);
1155
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001156/**
1157 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
1158 * @p: the pinctrl handle to retrieve the state from
1159 * @name: the state name to retrieve
1160 */
1161struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p,
1162 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -07001163{
Stephen Warren6e5e9592012-03-02 13:05:47 -07001164 struct pinctrl_state *state;
1165
1166 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +08001167 if (!state) {
1168 if (pinctrl_dummy_state) {
1169 /* create dummy state */
1170 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
1171 name);
1172 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +02001173 } else
1174 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +08001175 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001176
1177 return state;
1178}
Stephen Warren6e5e9592012-03-02 13:05:47 -07001179EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
1180
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001181/**
1182 * pinctrl_select_state() - select/activate/program a pinctrl state to HW
1183 * @p: the pinctrl handle for the device that requests configuration
1184 * @state: the state handle to select/activate/program
1185 */
1186int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Stephen Warren6e5e9592012-03-02 13:05:47 -07001187{
1188 struct pinctrl_setting *setting, *setting2;
Richard Genoud50cf7c82013-03-25 15:47:23 +01001189 struct pinctrl_state *old_state = p->state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001190 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -07001191
Stephen Warren6e5e9592012-03-02 13:05:47 -07001192 if (p->state == state)
1193 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -07001194
Stephen Warren6e5e9592012-03-02 13:05:47 -07001195 if (p->state) {
1196 /*
Fan Wu2243a872014-06-09 09:37:56 +08001197 * For each pinmux setting in the old state, forget SW's record
1198 * of mux owner for that pingroup. Any pingroups which are
1199 * still owned by the new state will be re-acquired by the call
1200 * to pinmux_enable_setting() in the loop below.
Stephen Warren6e5e9592012-03-02 13:05:47 -07001201 */
1202 list_for_each_entry(setting, &p->state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001203 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
1204 continue;
Fan Wu2243a872014-06-09 09:37:56 +08001205 pinmux_disable_setting(setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001206 }
1207 }
1208
Richard Genoud3102a762013-03-25 15:47:22 +01001209 p->state = NULL;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001210
1211 /* Apply all the settings for the new state */
1212 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001213 switch (setting->type) {
1214 case PIN_MAP_TYPE_MUX_GROUP:
1215 ret = pinmux_enable_setting(setting);
1216 break;
1217 case PIN_MAP_TYPE_CONFIGS_PIN:
1218 case PIN_MAP_TYPE_CONFIGS_GROUP:
1219 ret = pinconf_apply_setting(setting);
1220 break;
1221 default:
1222 ret = -EINVAL;
1223 break;
1224 }
Richard Genoud3102a762013-03-25 15:47:22 +01001225
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001226 if (ret < 0) {
Richard Genoud3102a762013-03-25 15:47:22 +01001227 goto unapply_new_state;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001228 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001229 }
1230
Richard Genoud3102a762013-03-25 15:47:22 +01001231 p->state = state;
1232
Stephen Warren7ecdb162012-03-02 13:05:45 -07001233 return 0;
Richard Genoud3102a762013-03-25 15:47:22 +01001234
1235unapply_new_state:
Richard Genoudda587512013-03-28 12:55:46 +01001236 dev_err(p->dev, "Error applying setting, reverse things back\n");
Richard Genoud3102a762013-03-25 15:47:22 +01001237
Richard Genoud3102a762013-03-25 15:47:22 +01001238 list_for_each_entry(setting2, &state->settings, node) {
1239 if (&setting2->node == &setting->node)
1240 break;
Richard Genoudaf606172013-03-29 10:03:26 +01001241 /*
1242 * All we can do here is pinmux_disable_setting.
1243 * That means that some pins are muxed differently now
1244 * than they were before applying the setting (We can't
1245 * "unmux a pin"!), but it's not a big deal since the pins
1246 * are free to be muxed by another apply_setting.
1247 */
1248 if (setting2->type == PIN_MAP_TYPE_MUX_GROUP)
1249 pinmux_disable_setting(setting2);
Richard Genoud3102a762013-03-25 15:47:22 +01001250 }
Richard Genoud8009d5f2013-03-28 12:55:47 +01001251
Richard Genoud385d9422013-03-29 10:03:27 +01001252 /* There's no infinite recursive loop here because p->state is NULL */
1253 if (old_state)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001254 pinctrl_select_state(p, old_state);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001255
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001256 return ret;
1257}
Stephen Warren6e5e9592012-03-02 13:05:47 -07001258EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001259
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001260static void devm_pinctrl_release(struct device *dev, void *res)
1261{
1262 pinctrl_put(*(struct pinctrl **)res);
1263}
1264
1265/**
1266 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
1267 * @dev: the device to obtain the handle for
1268 *
1269 * If there is a need to explicitly destroy the returned struct pinctrl,
1270 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
1271 */
1272struct pinctrl *devm_pinctrl_get(struct device *dev)
1273{
1274 struct pinctrl **ptr, *p;
1275
1276 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
1277 if (!ptr)
1278 return ERR_PTR(-ENOMEM);
1279
1280 p = pinctrl_get(dev);
1281 if (!IS_ERR(p)) {
1282 *ptr = p;
1283 devres_add(dev, ptr);
1284 } else {
1285 devres_free(ptr);
1286 }
1287
1288 return p;
1289}
1290EXPORT_SYMBOL_GPL(devm_pinctrl_get);
1291
1292static int devm_pinctrl_match(struct device *dev, void *res, void *data)
1293{
1294 struct pinctrl **p = res;
1295
1296 return *p == data;
1297}
1298
1299/**
1300 * devm_pinctrl_put() - Resource managed pinctrl_put()
1301 * @p: the pinctrl handle to release
1302 *
1303 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
1304 * this function will not need to be called and the resource management
1305 * code will ensure that the resource is freed.
1306 */
1307void devm_pinctrl_put(struct pinctrl *p)
1308{
Jingoo Hana72149e2013-02-26 11:34:07 +09001309 WARN_ON(devres_release(p->dev, devm_pinctrl_release,
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001310 devm_pinctrl_match, p));
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001311}
1312EXPORT_SYMBOL_GPL(devm_pinctrl_put);
1313
Stephen Warren57291ce2012-03-23 10:29:46 -06001314int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
Doug Andersonc5272a22015-05-01 09:01:27 -07001315 bool dup)
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001316{
Stephen Warren1e2082b2012-03-02 13:05:48 -07001317 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001318 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001319
Masahiro Yamada7e9236f2015-05-28 21:52:59 +09001320 pr_debug("add %u pinctrl maps\n", num_maps);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001321
1322 /* First sanity check the new mapping */
1323 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001324 if (!maps[i].dev_name) {
1325 pr_err("failed to register map %s (%d): no device given\n",
1326 maps[i].name, i);
1327 return -EINVAL;
1328 }
1329
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001330 if (!maps[i].name) {
1331 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001332 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001333 return -EINVAL;
1334 }
1335
Stephen Warren1e2082b2012-03-02 13:05:48 -07001336 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
1337 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001338 pr_err("failed to register map %s (%d): no pin control device given\n",
1339 maps[i].name, i);
1340 return -EINVAL;
1341 }
1342
Stephen Warren1e2082b2012-03-02 13:05:48 -07001343 switch (maps[i].type) {
1344 case PIN_MAP_TYPE_DUMMY_STATE:
1345 break;
1346 case PIN_MAP_TYPE_MUX_GROUP:
1347 ret = pinmux_validate_map(&maps[i], i);
1348 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001349 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001350 break;
1351 case PIN_MAP_TYPE_CONFIGS_PIN:
1352 case PIN_MAP_TYPE_CONFIGS_GROUP:
1353 ret = pinconf_validate_map(&maps[i], i);
1354 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001355 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001356 break;
1357 default:
1358 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001359 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -07001360 return -EINVAL;
1361 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001362 }
1363
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001364 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -08001365 if (!maps_node)
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001366 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001367
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001368 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -06001369 if (dup) {
1370 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
1371 GFP_KERNEL);
1372 if (!maps_node->maps) {
1373 pr_err("failed to duplicate mapping table\n");
1374 kfree(maps_node);
1375 return -ENOMEM;
1376 }
1377 } else {
1378 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001379 }
1380
Doug Andersonc5272a22015-05-01 09:01:27 -07001381 mutex_lock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001382 list_add_tail(&maps_node->node, &pinctrl_maps);
Doug Andersonc5272a22015-05-01 09:01:27 -07001383 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001384
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001385 return 0;
1386}
1387
Stephen Warren57291ce2012-03-23 10:29:46 -06001388/**
1389 * pinctrl_register_mappings() - register a set of pin controller mappings
1390 * @maps: the pincontrol mappings table to register. This should probably be
1391 * marked with __initdata so it can be discarded after boot. This
1392 * function will perform a shallow copy for the mapping entries.
1393 * @num_maps: the number of maps in the mapping table
1394 */
1395int pinctrl_register_mappings(struct pinctrl_map const *maps,
1396 unsigned num_maps)
1397{
Doug Andersonc5272a22015-05-01 09:01:27 -07001398 return pinctrl_register_map(maps, num_maps, true);
Stephen Warren57291ce2012-03-23 10:29:46 -06001399}
1400
1401void pinctrl_unregister_map(struct pinctrl_map const *map)
1402{
1403 struct pinctrl_maps *maps_node;
1404
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001405 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001406 list_for_each_entry(maps_node, &pinctrl_maps, node) {
1407 if (maps_node->maps == map) {
1408 list_del(&maps_node->node);
Linus Walleijdb6c2c62013-07-23 01:43:20 +02001409 kfree(maps_node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001410 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001411 return;
1412 }
1413 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001414 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001415}
1416
Julien Delacou840a47b2012-12-10 14:47:33 +01001417/**
1418 * pinctrl_force_sleep() - turn a given controller device into sleep state
1419 * @pctldev: pin controller device
1420 */
1421int pinctrl_force_sleep(struct pinctrl_dev *pctldev)
1422{
1423 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_sleep))
1424 return pinctrl_select_state(pctldev->p, pctldev->hog_sleep);
1425 return 0;
1426}
1427EXPORT_SYMBOL_GPL(pinctrl_force_sleep);
1428
1429/**
1430 * pinctrl_force_default() - turn a given controller device into default state
1431 * @pctldev: pin controller device
1432 */
1433int pinctrl_force_default(struct pinctrl_dev *pctldev)
1434{
1435 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_default))
1436 return pinctrl_select_state(pctldev->p, pctldev->hog_default);
1437 return 0;
1438}
1439EXPORT_SYMBOL_GPL(pinctrl_force_default);
1440
Douglas Andersonef0eebc2015-10-20 21:15:06 -07001441/**
1442 * pinctrl_init_done() - tell pinctrl probe is done
1443 *
1444 * We'll use this time to switch the pins from "init" to "default" unless the
1445 * driver selected some other state.
1446 *
1447 * @dev: device to that's done probing
1448 */
1449int pinctrl_init_done(struct device *dev)
1450{
1451 struct dev_pin_info *pins = dev->pins;
1452 int ret;
1453
1454 if (!pins)
1455 return 0;
1456
1457 if (IS_ERR(pins->init_state))
1458 return 0; /* No such state */
1459
1460 if (pins->p->state != pins->init_state)
1461 return 0; /* Not at init anyway */
1462
1463 if (IS_ERR(pins->default_state))
1464 return 0; /* No default state */
1465
1466 ret = pinctrl_select_state(pins->p, pins->default_state);
1467 if (ret)
1468 dev_err(dev, "failed to activate default pinctrl state\n");
1469
1470 return ret;
1471}
1472
Linus Walleij14005ee2013-06-05 15:30:33 +02001473#ifdef CONFIG_PM
1474
1475/**
Tony Lindgrenf3333492013-07-18 08:15:04 -07001476 * pinctrl_pm_select_state() - select pinctrl state for PM
1477 * @dev: device to select default state for
1478 * @state: state to set
1479 */
1480static int pinctrl_pm_select_state(struct device *dev,
1481 struct pinctrl_state *state)
1482{
1483 struct dev_pin_info *pins = dev->pins;
1484 int ret;
1485
1486 if (IS_ERR(state))
1487 return 0; /* No such state */
1488 ret = pinctrl_select_state(pins->p, state);
1489 if (ret)
1490 dev_err(dev, "failed to activate pinctrl state %s\n",
1491 state->name);
1492 return ret;
1493}
1494
1495/**
Linus Walleij14005ee2013-06-05 15:30:33 +02001496 * pinctrl_pm_select_default_state() - select default pinctrl state for PM
1497 * @dev: device to select default state for
1498 */
1499int pinctrl_pm_select_default_state(struct device *dev)
1500{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001501 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001502 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001503
1504 return pinctrl_pm_select_state(dev, dev->pins->default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001505}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001506EXPORT_SYMBOL_GPL(pinctrl_pm_select_default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001507
1508/**
1509 * pinctrl_pm_select_sleep_state() - select sleep pinctrl state for PM
1510 * @dev: device to select sleep state for
1511 */
1512int pinctrl_pm_select_sleep_state(struct device *dev)
1513{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001514 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001515 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001516
1517 return pinctrl_pm_select_state(dev, dev->pins->sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001518}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001519EXPORT_SYMBOL_GPL(pinctrl_pm_select_sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001520
1521/**
1522 * pinctrl_pm_select_idle_state() - select idle pinctrl state for PM
1523 * @dev: device to select idle state for
1524 */
1525int pinctrl_pm_select_idle_state(struct device *dev)
1526{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001527 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001528 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001529
1530 return pinctrl_pm_select_state(dev, dev->pins->idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001531}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001532EXPORT_SYMBOL_GPL(pinctrl_pm_select_idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001533#endif
1534
Linus Walleij2744e8a2011-05-02 20:50:54 +02001535#ifdef CONFIG_DEBUG_FS
1536
1537static int pinctrl_pins_show(struct seq_file *s, void *what)
1538{
1539 struct pinctrl_dev *pctldev = s->private;
1540 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001541 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001542
1543 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001544
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001545 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001546
Chanho Park706e8522012-01-03 16:47:50 +09001547 /* The pin number can be retrived from the pin controller descriptor */
1548 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001549 struct pin_desc *desc;
1550
Chanho Park706e8522012-01-03 16:47:50 +09001551 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001552 desc = pin_desc_get(pctldev, pin);
1553 /* Pin space may be sparse */
1554 if (desc == NULL)
1555 continue;
1556
Masahiro Yamadacf9d9942016-05-24 14:26:26 +09001557 seq_printf(s, "pin %d (%s) ", pin, desc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001558
1559 /* Driver-specific info per pin */
1560 if (ops->pin_dbg_show)
1561 ops->pin_dbg_show(pctldev, s, pin);
1562
1563 seq_puts(s, "\n");
1564 }
1565
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001566 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001567
Linus Walleij2744e8a2011-05-02 20:50:54 +02001568 return 0;
1569}
1570
1571static int pinctrl_groups_show(struct seq_file *s, void *what)
1572{
1573 struct pinctrl_dev *pctldev = s->private;
1574 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301575 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001576
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001577 mutex_lock(&pctldev->mutex);
1578
Viresh Kumard1e90e92012-03-30 11:25:40 +05301579 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001580
Linus Walleij2744e8a2011-05-02 20:50:54 +02001581 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301582 while (selector < ngroups) {
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001583 const unsigned *pins = NULL;
1584 unsigned num_pins = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001585 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001586 const char *pname;
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001587 int ret = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001588 int i;
1589
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001590 if (ops->get_group_pins)
1591 ret = ops->get_group_pins(pctldev, selector,
1592 &pins, &num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001593 if (ret)
1594 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1595 gname);
1596 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001597 seq_printf(s, "group: %s\n", gname);
1598 for (i = 0; i < num_pins; i++) {
1599 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001600 if (WARN_ON(!pname)) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001601 mutex_unlock(&pctldev->mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001602 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001603 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001604 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1605 }
1606 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001607 }
1608 selector++;
1609 }
1610
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001611 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001612
1613 return 0;
1614}
1615
1616static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1617{
1618 struct pinctrl_dev *pctldev = s->private;
1619 struct pinctrl_gpio_range *range = NULL;
1620
1621 seq_puts(s, "GPIO ranges handled:\n");
1622
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001623 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001624
Linus Walleij2744e8a2011-05-02 20:50:54 +02001625 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001626 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Christian Ruppertc8587ee2013-06-13 14:55:31 +02001627 if (range->pins) {
1628 int a;
1629 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS {",
1630 range->id, range->name,
1631 range->base, (range->base + range->npins - 1));
1632 for (a = 0; a < range->npins - 1; a++)
1633 seq_printf(s, "%u, ", range->pins[a]);
1634 seq_printf(s, "%u}\n", range->pins[a]);
1635 }
1636 else
1637 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1638 range->id, range->name,
1639 range->base, (range->base + range->npins - 1),
1640 range->pin_base,
1641 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001642 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001643
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001644 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001645
1646 return 0;
1647}
1648
1649static int pinctrl_devices_show(struct seq_file *s, void *what)
1650{
1651 struct pinctrl_dev *pctldev;
1652
Linus Walleijae6b4d82011-10-19 18:14:33 +02001653 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001654
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001655 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001656
Linus Walleij2744e8a2011-05-02 20:50:54 +02001657 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1658 seq_printf(s, "%s ", pctldev->desc->name);
1659 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001660 seq_puts(s, "yes ");
1661 else
1662 seq_puts(s, "no ");
1663 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001664 seq_puts(s, "yes");
1665 else
1666 seq_puts(s, "no");
1667 seq_puts(s, "\n");
1668 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001669
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001670 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001671
1672 return 0;
1673}
1674
Stephen Warren1e2082b2012-03-02 13:05:48 -07001675static inline const char *map_type(enum pinctrl_map_type type)
1676{
1677 static const char * const names[] = {
1678 "INVALID",
1679 "DUMMY_STATE",
1680 "MUX_GROUP",
1681 "CONFIGS_PIN",
1682 "CONFIGS_GROUP",
1683 };
1684
1685 if (type >= ARRAY_SIZE(names))
1686 return "UNKNOWN";
1687
1688 return names[type];
1689}
1690
Stephen Warren3eedb432012-02-23 17:04:40 -07001691static int pinctrl_maps_show(struct seq_file *s, void *what)
1692{
1693 struct pinctrl_maps *maps_node;
1694 int i;
1695 struct pinctrl_map const *map;
1696
1697 seq_puts(s, "Pinctrl maps:\n");
1698
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001699 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001700 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001701 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1702 map->dev_name, map->name, map_type(map->type),
1703 map->type);
1704
1705 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1706 seq_printf(s, "controlling device %s\n",
1707 map->ctrl_dev_name);
1708
1709 switch (map->type) {
1710 case PIN_MAP_TYPE_MUX_GROUP:
1711 pinmux_show_map(s, map);
1712 break;
1713 case PIN_MAP_TYPE_CONFIGS_PIN:
1714 case PIN_MAP_TYPE_CONFIGS_GROUP:
1715 pinconf_show_map(s, map);
1716 break;
1717 default:
1718 break;
1719 }
1720
1721 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001722 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001723 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001724
1725 return 0;
1726}
1727
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001728static int pinctrl_show(struct seq_file *s, void *what)
1729{
1730 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001731 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001732 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001733
1734 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001735
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001736 mutex_lock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001737
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001738 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001739 seq_printf(s, "device: %s current state: %s\n",
1740 dev_name(p->dev),
1741 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001742
Stephen Warren6e5e9592012-03-02 13:05:47 -07001743 list_for_each_entry(state, &p->states, node) {
1744 seq_printf(s, " state: %s\n", state->name);
1745
1746 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001747 struct pinctrl_dev *pctldev = setting->pctldev;
1748
1749 seq_printf(s, " type: %s controller %s ",
1750 map_type(setting->type),
1751 pinctrl_dev_get_name(pctldev));
1752
1753 switch (setting->type) {
1754 case PIN_MAP_TYPE_MUX_GROUP:
1755 pinmux_show_setting(s, setting);
1756 break;
1757 case PIN_MAP_TYPE_CONFIGS_PIN:
1758 case PIN_MAP_TYPE_CONFIGS_GROUP:
1759 pinconf_show_setting(s, setting);
1760 break;
1761 default:
1762 break;
1763 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001764 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001765 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001766 }
1767
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001768 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001769
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001770 return 0;
1771}
1772
Linus Walleij2744e8a2011-05-02 20:50:54 +02001773static int pinctrl_pins_open(struct inode *inode, struct file *file)
1774{
1775 return single_open(file, pinctrl_pins_show, inode->i_private);
1776}
1777
1778static int pinctrl_groups_open(struct inode *inode, struct file *file)
1779{
1780 return single_open(file, pinctrl_groups_show, inode->i_private);
1781}
1782
1783static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1784{
1785 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1786}
1787
1788static int pinctrl_devices_open(struct inode *inode, struct file *file)
1789{
1790 return single_open(file, pinctrl_devices_show, NULL);
1791}
1792
Stephen Warren3eedb432012-02-23 17:04:40 -07001793static int pinctrl_maps_open(struct inode *inode, struct file *file)
1794{
1795 return single_open(file, pinctrl_maps_show, NULL);
1796}
1797
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001798static int pinctrl_open(struct inode *inode, struct file *file)
1799{
1800 return single_open(file, pinctrl_show, NULL);
1801}
1802
Linus Walleij2744e8a2011-05-02 20:50:54 +02001803static const struct file_operations pinctrl_pins_ops = {
1804 .open = pinctrl_pins_open,
1805 .read = seq_read,
1806 .llseek = seq_lseek,
1807 .release = single_release,
1808};
1809
1810static const struct file_operations pinctrl_groups_ops = {
1811 .open = pinctrl_groups_open,
1812 .read = seq_read,
1813 .llseek = seq_lseek,
1814 .release = single_release,
1815};
1816
1817static const struct file_operations pinctrl_gpioranges_ops = {
1818 .open = pinctrl_gpioranges_open,
1819 .read = seq_read,
1820 .llseek = seq_lseek,
1821 .release = single_release,
1822};
1823
1824static const struct file_operations pinctrl_devices_ops = {
1825 .open = pinctrl_devices_open,
1826 .read = seq_read,
1827 .llseek = seq_lseek,
1828 .release = single_release,
1829};
1830
Stephen Warren3eedb432012-02-23 17:04:40 -07001831static const struct file_operations pinctrl_maps_ops = {
1832 .open = pinctrl_maps_open,
1833 .read = seq_read,
1834 .llseek = seq_lseek,
1835 .release = single_release,
1836};
1837
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001838static const struct file_operations pinctrl_ops = {
1839 .open = pinctrl_open,
1840 .read = seq_read,
1841 .llseek = seq_lseek,
1842 .release = single_release,
1843};
1844
Linus Walleij2744e8a2011-05-02 20:50:54 +02001845static struct dentry *debugfs_root;
1846
1847static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1848{
Tony Lindgren02157162012-01-20 08:17:22 -08001849 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001850
Stephen Warren51cd24e2011-12-09 16:59:05 -07001851 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001852 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001853 pctldev->device_root = device_root;
1854
Linus Walleij2744e8a2011-05-02 20:50:54 +02001855 if (IS_ERR(device_root) || !device_root) {
1856 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001857 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001858 return;
1859 }
1860 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1861 device_root, pctldev, &pinctrl_pins_ops);
1862 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1863 device_root, pctldev, &pinctrl_groups_ops);
1864 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1865 device_root, pctldev, &pinctrl_gpioranges_ops);
Florian Vaussarde7f2a442014-02-05 07:51:22 +01001866 if (pctldev->desc->pmxops)
1867 pinmux_init_device_debugfs(device_root, pctldev);
1868 if (pctldev->desc->confops)
1869 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001870}
1871
Tony Lindgren02157162012-01-20 08:17:22 -08001872static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1873{
1874 debugfs_remove_recursive(pctldev->device_root);
1875}
1876
Linus Walleij2744e8a2011-05-02 20:50:54 +02001877static void pinctrl_init_debugfs(void)
1878{
1879 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1880 if (IS_ERR(debugfs_root) || !debugfs_root) {
1881 pr_warn("failed to create debugfs directory\n");
1882 debugfs_root = NULL;
1883 return;
1884 }
1885
1886 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1887 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001888 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1889 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001890 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1891 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001892}
1893
1894#else /* CONFIG_DEBUG_FS */
1895
1896static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1897{
1898}
1899
1900static void pinctrl_init_debugfs(void)
1901{
1902}
1903
Tony Lindgren02157162012-01-20 08:17:22 -08001904static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1905{
1906}
1907
Linus Walleij2744e8a2011-05-02 20:50:54 +02001908#endif
1909
Stephen Warrend26bc492012-03-16 14:54:25 -06001910static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1911{
1912 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1913
1914 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301915 !ops->get_groups_count ||
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001916 !ops->get_group_name)
Stephen Warrend26bc492012-03-16 14:54:25 -06001917 return -EINVAL;
1918
1919 return 0;
1920}
1921
Linus Walleij2744e8a2011-05-02 20:50:54 +02001922/**
Tony Lindgren950b0d92017-01-11 14:13:34 -08001923 * pinctrl_init_controller() - init a pin controller device
Linus Walleij2744e8a2011-05-02 20:50:54 +02001924 * @pctldesc: descriptor for this pin controller
1925 * @dev: parent device for this pin controller
1926 * @driver_data: private pin controller data for this pin controller
1927 */
Andy Shevchenko0ca49212017-03-27 14:37:09 +03001928static struct pinctrl_dev *
1929pinctrl_init_controller(struct pinctrl_desc *pctldesc, struct device *dev,
1930 void *driver_data)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001931{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001932 struct pinctrl_dev *pctldev;
1933 int ret;
1934
Devendra Nagada9aecb2012-06-16 23:43:16 +05301935 if (!pctldesc)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001936 return ERR_PTR(-EINVAL);
Devendra Nagada9aecb2012-06-16 23:43:16 +05301937 if (!pctldesc->name)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001938 return ERR_PTR(-EINVAL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001939
Stephen Warren02f5b982012-02-22 14:26:00 -07001940 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Bjorn Andersson2104d122017-01-05 08:07:55 -08001941 if (!pctldev)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001942 return ERR_PTR(-ENOMEM);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001943
1944 /* Initialize pin control device struct */
1945 pctldev->owner = pctldesc->owner;
1946 pctldev->desc = pctldesc;
1947 pctldev->driver_data = driver_data;
1948 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleijc033a712016-12-30 15:04:43 +01001949#ifdef CONFIG_GENERIC_PINCTRL_GROUPS
Tony Lindgrenc7059c52016-12-27 09:20:00 -08001950 INIT_RADIX_TREE(&pctldev->pin_group_tree, GFP_KERNEL);
Linus Walleijc033a712016-12-30 15:04:43 +01001951#endif
Tony Lindgrena76edc82016-12-27 09:20:01 -08001952#ifdef CONFIG_GENERIC_PINMUX_FUNCTIONS
1953 INIT_RADIX_TREE(&pctldev->pin_function_tree, GFP_KERNEL);
1954#endif
Linus Walleij2744e8a2011-05-02 20:50:54 +02001955 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Thierry Reding46daed62017-01-12 17:03:34 +01001956 INIT_LIST_HEAD(&pctldev->node);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001957 pctldev->dev = dev;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001958 mutex_init(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001959
Stephen Warrend26bc492012-03-16 14:54:25 -06001960 /* check core ops for sanity */
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001961 ret = pinctrl_check_ops(pctldev);
1962 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001963 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001964 goto out_err;
1965 }
1966
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001967 /* If we're implementing pinmuxing, check the ops for sanity */
1968 if (pctldesc->pmxops) {
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001969 ret = pinmux_check_ops(pctldev);
1970 if (ret)
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001971 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001972 }
1973
1974 /* If we're implementing pinconfig, check the ops for sanity */
1975 if (pctldesc->confops) {
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001976 ret = pinconf_check_ops(pctldev);
1977 if (ret)
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001978 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001979 }
1980
Linus Walleij2744e8a2011-05-02 20:50:54 +02001981 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02001982 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001983 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1984 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001985 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001986 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1987 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001988 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001989 }
1990
Linus Walleij2744e8a2011-05-02 20:50:54 +02001991 return pctldev;
1992
Stephen Warren51cd24e2011-12-09 16:59:05 -07001993out_err:
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001994 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001995 kfree(pctldev);
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001996 return ERR_PTR(ret);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001997}
Tony Lindgren950b0d92017-01-11 14:13:34 -08001998
Tony Lindgren61187142017-03-30 09:16:39 -07001999static int pinctrl_claim_hogs(struct pinctrl_dev *pctldev)
Tony Lindgren950b0d92017-01-11 14:13:34 -08002000{
2001 pctldev->p = create_pinctrl(pctldev->dev, pctldev);
Tony Lindgren61187142017-03-30 09:16:39 -07002002 if (PTR_ERR(pctldev->p) == -ENODEV) {
2003 dev_dbg(pctldev->dev, "no hogs found\n");
Tony Lindgren950b0d92017-01-11 14:13:34 -08002004
Tony Lindgren61187142017-03-30 09:16:39 -07002005 return 0;
2006 }
2007
2008 if (IS_ERR(pctldev->p)) {
2009 dev_err(pctldev->dev, "error claiming hogs: %li\n",
2010 PTR_ERR(pctldev->p));
2011
2012 return PTR_ERR(pctldev->p);
2013 }
2014
2015 kref_get(&pctldev->p->users);
2016 pctldev->hog_default =
2017 pinctrl_lookup_state(pctldev->p, PINCTRL_STATE_DEFAULT);
2018 if (IS_ERR(pctldev->hog_default)) {
2019 dev_dbg(pctldev->dev,
2020 "failed to lookup the default state\n");
2021 } else {
2022 if (pinctrl_select_state(pctldev->p,
2023 pctldev->hog_default))
2024 dev_err(pctldev->dev,
2025 "failed to select default state\n");
2026 }
2027
2028 pctldev->hog_sleep =
2029 pinctrl_lookup_state(pctldev->p,
2030 PINCTRL_STATE_SLEEP);
2031 if (IS_ERR(pctldev->hog_sleep))
2032 dev_dbg(pctldev->dev,
2033 "failed to lookup the sleep state\n");
2034
2035 return 0;
2036}
2037
2038int pinctrl_enable(struct pinctrl_dev *pctldev)
2039{
2040 int error;
2041
2042 error = pinctrl_claim_hogs(pctldev);
2043 if (error) {
2044 dev_err(pctldev->dev, "could not claim hogs: %i\n",
2045 error);
2046 mutex_destroy(&pctldev->mutex);
2047 kfree(pctldev);
2048
2049 return error;
Tony Lindgren950b0d92017-01-11 14:13:34 -08002050 }
2051
2052 mutex_lock(&pinctrldev_list_mutex);
2053 list_add_tail(&pctldev->node, &pinctrldev_list);
2054 mutex_unlock(&pinctrldev_list_mutex);
2055
2056 pinctrl_init_device_debugfs(pctldev);
2057
2058 return 0;
2059}
Tony Lindgren61187142017-03-30 09:16:39 -07002060EXPORT_SYMBOL_GPL(pinctrl_enable);
Tony Lindgren950b0d92017-01-11 14:13:34 -08002061
2062/**
2063 * pinctrl_register() - register a pin controller device
2064 * @pctldesc: descriptor for this pin controller
2065 * @dev: parent device for this pin controller
2066 * @driver_data: private pin controller data for this pin controller
2067 *
2068 * Note that pinctrl_register() is known to have problems as the pin
2069 * controller driver functions are called before the driver has a
2070 * struct pinctrl_dev handle. To avoid issues later on, please use the
2071 * new pinctrl_register_and_init() below instead.
2072 */
2073struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
2074 struct device *dev, void *driver_data)
2075{
2076 struct pinctrl_dev *pctldev;
2077 int error;
2078
2079 pctldev = pinctrl_init_controller(pctldesc, dev, driver_data);
2080 if (IS_ERR(pctldev))
2081 return pctldev;
2082
Tony Lindgren61187142017-03-30 09:16:39 -07002083 error = pinctrl_enable(pctldev);
2084 if (error)
Tony Lindgren950b0d92017-01-11 14:13:34 -08002085 return ERR_PTR(error);
Tony Lindgren950b0d92017-01-11 14:13:34 -08002086
2087 return pctldev;
2088
2089}
Linus Walleij2744e8a2011-05-02 20:50:54 +02002090EXPORT_SYMBOL_GPL(pinctrl_register);
2091
Tony Lindgren61187142017-03-30 09:16:39 -07002092/**
2093 * pinctrl_register_and_init() - register and init pin controller device
2094 * @pctldesc: descriptor for this pin controller
2095 * @dev: parent device for this pin controller
2096 * @driver_data: private pin controller data for this pin controller
2097 * @pctldev: pin controller device
2098 *
2099 * Note that pinctrl_enable() still needs to be manually called after
2100 * this once the driver is ready.
2101 */
Tony Lindgren950b0d92017-01-11 14:13:34 -08002102int pinctrl_register_and_init(struct pinctrl_desc *pctldesc,
2103 struct device *dev, void *driver_data,
2104 struct pinctrl_dev **pctldev)
2105{
2106 struct pinctrl_dev *p;
Tony Lindgren950b0d92017-01-11 14:13:34 -08002107
2108 p = pinctrl_init_controller(pctldesc, dev, driver_data);
2109 if (IS_ERR(p))
2110 return PTR_ERR(p);
2111
2112 /*
2113 * We have pinctrl_start() call functions in the pin controller
2114 * driver with create_pinctrl() for at least dt_node_to_map(). So
2115 * let's make sure pctldev is properly initialized for the
2116 * pin controller driver before we do anything.
2117 */
2118 *pctldev = p;
2119
Tony Lindgren950b0d92017-01-11 14:13:34 -08002120 return 0;
2121}
2122EXPORT_SYMBOL_GPL(pinctrl_register_and_init);
2123
Linus Walleij2744e8a2011-05-02 20:50:54 +02002124/**
2125 * pinctrl_unregister() - unregister pinmux
2126 * @pctldev: pin controller to unregister
2127 *
2128 * Called by pinmux drivers to unregister a pinmux.
2129 */
2130void pinctrl_unregister(struct pinctrl_dev *pctldev)
2131{
Dong Aisheng5d589b02012-05-23 21:22:40 +08002132 struct pinctrl_gpio_range *range, *n;
Jon Hunter3429fb32017-01-05 15:52:55 +00002133
Linus Walleij2744e8a2011-05-02 20:50:54 +02002134 if (pctldev == NULL)
2135 return;
2136
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002137 mutex_lock(&pctldev->mutex);
Tony Lindgren02157162012-01-20 08:17:22 -08002138 pinctrl_remove_device_debugfs(pctldev);
Jim Lindb93fac2015-01-08 20:25:05 +08002139 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07002140
Jon Hunter3429fb32017-01-05 15:52:55 +00002141 if (!IS_ERR_OR_NULL(pctldev->p))
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002142 pinctrl_put(pctldev->p);
Stephen Warren57b676f2012-03-02 13:05:44 -07002143
Jim Lindb93fac2015-01-08 20:25:05 +08002144 mutex_lock(&pinctrldev_list_mutex);
2145 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002146 /* TODO: check that no pinmuxes are still active? */
Thierry Reding46daed62017-01-12 17:03:34 +01002147 list_del(&pctldev->node);
Tony Lindgrena76edc82016-12-27 09:20:01 -08002148 pinmux_generic_free_functions(pctldev);
Tony Lindgrenc7059c52016-12-27 09:20:00 -08002149 pinctrl_generic_free_groups(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002150 /* Destroy descriptor tree */
2151 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
2152 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08002153 /* remove gpio ranges map */
2154 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
2155 list_del(&range->node);
2156
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002157 mutex_unlock(&pctldev->mutex);
2158 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07002159 kfree(pctldev);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02002160 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02002161}
2162EXPORT_SYMBOL_GPL(pinctrl_unregister);
2163
Laxman Dewangan80e0f8d2016-02-24 14:12:59 +05302164static void devm_pinctrl_dev_release(struct device *dev, void *res)
2165{
2166 struct pinctrl_dev *pctldev = *(struct pinctrl_dev **)res;
2167
2168 pinctrl_unregister(pctldev);
2169}
2170
2171static int devm_pinctrl_dev_match(struct device *dev, void *res, void *data)
2172{
2173 struct pctldev **r = res;
2174
Laxman Dewangan3024f922016-02-24 14:44:07 +05302175 if (WARN_ON(!r || !*r))
Laxman Dewangan80e0f8d2016-02-24 14:12:59 +05302176 return 0;
2177
2178 return *r == data;
2179}
2180
2181/**
2182 * devm_pinctrl_register() - Resource managed version of pinctrl_register().
2183 * @dev: parent device for this pin controller
2184 * @pctldesc: descriptor for this pin controller
2185 * @driver_data: private pin controller data for this pin controller
2186 *
2187 * Returns an error pointer if pincontrol register failed. Otherwise
2188 * it returns valid pinctrl handle.
2189 *
2190 * The pinctrl device will be automatically released when the device is unbound.
2191 */
2192struct pinctrl_dev *devm_pinctrl_register(struct device *dev,
2193 struct pinctrl_desc *pctldesc,
2194 void *driver_data)
2195{
2196 struct pinctrl_dev **ptr, *pctldev;
2197
2198 ptr = devres_alloc(devm_pinctrl_dev_release, sizeof(*ptr), GFP_KERNEL);
2199 if (!ptr)
2200 return ERR_PTR(-ENOMEM);
2201
2202 pctldev = pinctrl_register(pctldesc, dev, driver_data);
2203 if (IS_ERR(pctldev)) {
2204 devres_free(ptr);
2205 return pctldev;
2206 }
2207
2208 *ptr = pctldev;
2209 devres_add(dev, ptr);
2210
2211 return pctldev;
2212}
2213EXPORT_SYMBOL_GPL(devm_pinctrl_register);
2214
2215/**
Tony Lindgren950b0d92017-01-11 14:13:34 -08002216 * devm_pinctrl_register_and_init() - Resource managed pinctrl register and init
2217 * @dev: parent device for this pin controller
2218 * @pctldesc: descriptor for this pin controller
2219 * @driver_data: private pin controller data for this pin controller
2220 *
2221 * Returns an error pointer if pincontrol register failed. Otherwise
2222 * it returns valid pinctrl handle.
2223 *
2224 * The pinctrl device will be automatically released when the device is unbound.
2225 */
2226int devm_pinctrl_register_and_init(struct device *dev,
2227 struct pinctrl_desc *pctldesc,
2228 void *driver_data,
2229 struct pinctrl_dev **pctldev)
2230{
2231 struct pinctrl_dev **ptr;
2232 int error;
2233
2234 ptr = devres_alloc(devm_pinctrl_dev_release, sizeof(*ptr), GFP_KERNEL);
2235 if (!ptr)
2236 return -ENOMEM;
2237
2238 error = pinctrl_register_and_init(pctldesc, dev, driver_data, pctldev);
2239 if (error) {
2240 devres_free(ptr);
2241 return error;
2242 }
2243
2244 *ptr = *pctldev;
2245 devres_add(dev, ptr);
2246
2247 return 0;
2248}
2249EXPORT_SYMBOL_GPL(devm_pinctrl_register_and_init);
2250
2251/**
Laxman Dewangan80e0f8d2016-02-24 14:12:59 +05302252 * devm_pinctrl_unregister() - Resource managed version of pinctrl_unregister().
2253 * @dev: device for which which resource was allocated
2254 * @pctldev: the pinctrl device to unregister.
2255 */
2256void devm_pinctrl_unregister(struct device *dev, struct pinctrl_dev *pctldev)
2257{
2258 WARN_ON(devres_release(dev, devm_pinctrl_dev_release,
2259 devm_pinctrl_dev_match, pctldev));
2260}
2261EXPORT_SYMBOL_GPL(devm_pinctrl_unregister);
2262
Linus Walleij2744e8a2011-05-02 20:50:54 +02002263static int __init pinctrl_init(void)
2264{
2265 pr_info("initialized pinctrl subsystem\n");
2266 pinctrl_init_debugfs();
2267 return 0;
2268}
2269
2270/* init early since many drivers really need to initialized pinmux early */
2271core_initcall(pinctrl_init);