blob: 2686a4450dfc3261029d560d2ce9838191fbf39c [file] [log] [blame]
Linus Walleij2744e8a2011-05-02 20:50:54 +02001/*
2 * Core driver for the pin control subsystem
3 *
Linus Walleijbefe5bd2012-02-09 19:47:48 +01004 * Copyright (C) 2011-2012 ST-Ericsson SA
Linus Walleij2744e8a2011-05-02 20:50:54 +02005 * Written on behalf of Linaro for ST-Ericsson
6 * Based on bits of regulator core, gpio core and clk core
7 *
8 * Author: Linus Walleij <linus.walleij@linaro.org>
9 *
Stephen Warrenb2b3e662012-02-19 23:45:43 -070010 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
11 *
Linus Walleij2744e8a2011-05-02 20:50:54 +020012 * License terms: GNU General Public License (GPL) version 2
13 */
14#define pr_fmt(fmt) "pinctrl core: " fmt
15
16#include <linux/kernel.h>
Linus Walleijab780292013-01-22 10:56:14 -070017#include <linux/kref.h>
Stephen Rothwella5a697c2011-09-30 14:39:04 +100018#include <linux/export.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020019#include <linux/init.h>
20#include <linux/device.h>
21#include <linux/slab.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020022#include <linux/err.h>
23#include <linux/list.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020024#include <linux/sysfs.h>
25#include <linux/debugfs.h>
26#include <linux/seq_file.h>
Stephen Warren6d4ca1f2012-04-16 10:51:00 -060027#include <linux/pinctrl/consumer.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020028#include <linux/pinctrl/pinctrl.h>
29#include <linux/pinctrl/machine.h>
Haojian Zhuang2afe8222013-03-28 07:34:19 +080030
31#ifdef CONFIG_GPIOLIB
Haojian Zhuang51e13c22013-02-17 19:42:50 +080032#include <asm-generic/gpio.h>
Haojian Zhuang2afe8222013-03-28 07:34:19 +080033#endif
34
Linus Walleij2744e8a2011-05-02 20:50:54 +020035#include "core.h"
Stephen Warren57291ce2012-03-23 10:29:46 -060036#include "devicetree.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020037#include "pinmux.h"
Linus Walleijae6b4d82011-10-19 18:14:33 +020038#include "pinconf.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020039
Stephen Warrenb2b3e662012-02-19 23:45:43 -070040
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080041static bool pinctrl_dummy_state;
42
Patrice Chotard42fed7b2013-04-11 11:01:27 +020043/* Mutex taken to protect pinctrl_list */
Sachin Kamat843aec92013-06-18 14:34:27 +053044static DEFINE_MUTEX(pinctrl_list_mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +020045
46/* Mutex taken to protect pinctrl_maps */
47DEFINE_MUTEX(pinctrl_maps_mutex);
48
49/* Mutex taken to protect pinctrldev_list */
Sachin Kamat843aec92013-06-18 14:34:27 +053050static DEFINE_MUTEX(pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -070051
52/* Global list of pin control devices (struct pinctrl_dev) */
Patrice Chotard42fed7b2013-04-11 11:01:27 +020053static LIST_HEAD(pinctrldev_list);
Linus Walleij2744e8a2011-05-02 20:50:54 +020054
Stephen Warren57b676f2012-03-02 13:05:44 -070055/* List of pin controller handles (struct pinctrl) */
Linus Walleijbefe5bd2012-02-09 19:47:48 +010056static LIST_HEAD(pinctrl_list);
57
Stephen Warren57b676f2012-03-02 13:05:44 -070058/* List of pinctrl maps (struct pinctrl_maps) */
Laurent Meunier6f9e41f2013-02-06 09:09:44 +010059LIST_HEAD(pinctrl_maps);
Stephen Warrenb2b3e662012-02-19 23:45:43 -070060
Linus Walleijbefe5bd2012-02-09 19:47:48 +010061
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080062/**
63 * pinctrl_provide_dummies() - indicate if pinctrl provides dummy state support
64 *
65 * Usually this function is called by platforms without pinctrl driver support
66 * but run with some shared drivers using pinctrl APIs.
67 * After calling this function, the pinctrl core will return successfully
68 * with creating a dummy state for the driver to keep going smoothly.
69 */
70void pinctrl_provide_dummies(void)
71{
72 pinctrl_dummy_state = true;
73}
74
Linus Walleij2744e8a2011-05-02 20:50:54 +020075const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev)
76{
77 /* We're not allowed to register devices without name */
78 return pctldev->desc->name;
79}
80EXPORT_SYMBOL_GPL(pinctrl_dev_get_name);
81
Haojian Zhuangd6e99ab2013-01-18 15:31:06 +080082const char *pinctrl_dev_get_devname(struct pinctrl_dev *pctldev)
83{
84 return dev_name(pctldev->dev);
85}
86EXPORT_SYMBOL_GPL(pinctrl_dev_get_devname);
87
Linus Walleij2744e8a2011-05-02 20:50:54 +020088void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev)
89{
90 return pctldev->driver_data;
91}
92EXPORT_SYMBOL_GPL(pinctrl_dev_get_drvdata);
93
94/**
Linus Walleij9dfac4f2012-02-01 18:02:47 +010095 * get_pinctrl_dev_from_devname() - look up pin controller device
96 * @devname: the name of a device instance, as returned by dev_name()
Linus Walleij2744e8a2011-05-02 20:50:54 +020097 *
98 * Looks up a pin control device matching a certain device name or pure device
99 * pointer, the pure device pointer will take precedence.
100 */
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100101struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *devname)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200102{
103 struct pinctrl_dev *pctldev = NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200104
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100105 if (!devname)
106 return NULL;
107
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200108 mutex_lock(&pinctrldev_list_mutex);
109
Linus Walleij2744e8a2011-05-02 20:50:54 +0200110 list_for_each_entry(pctldev, &pinctrldev_list, node) {
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100111 if (!strcmp(dev_name(pctldev->dev), devname)) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200112 /* Matched on device name */
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200113 mutex_unlock(&pinctrldev_list_mutex);
114 return pctldev;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200115 }
116 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200117
Linus Walleij44d5f7b2013-05-16 09:17:04 +0200118 mutex_unlock(&pinctrldev_list_mutex);
119
120 return NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200121}
122
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200123struct pinctrl_dev *get_pinctrl_dev_from_of_node(struct device_node *np)
124{
125 struct pinctrl_dev *pctldev;
126
127 mutex_lock(&pinctrldev_list_mutex);
128
129 list_for_each_entry(pctldev, &pinctrldev_list, node)
130 if (pctldev->dev->of_node == np) {
131 mutex_unlock(&pinctrldev_list_mutex);
132 return pctldev;
133 }
134
Daniel Mackd463f822013-04-26 18:57:02 +0200135 mutex_unlock(&pinctrldev_list_mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200136
137 return NULL;
138}
139
Linus Walleij2744e8a2011-05-02 20:50:54 +0200140/**
Linus Walleijae6b4d82011-10-19 18:14:33 +0200141 * pin_get_from_name() - look up a pin number from a name
142 * @pctldev: the pin control device to lookup the pin on
143 * @name: the name of the pin to look up
144 */
145int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name)
146{
Chanho Park706e8522012-01-03 16:47:50 +0900147 unsigned i, pin;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200148
Chanho Park706e8522012-01-03 16:47:50 +0900149 /* The pin number can be retrived from the pin controller descriptor */
150 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleijae6b4d82011-10-19 18:14:33 +0200151 struct pin_desc *desc;
152
Chanho Park706e8522012-01-03 16:47:50 +0900153 pin = pctldev->desc->pins[i].number;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200154 desc = pin_desc_get(pctldev, pin);
155 /* Pin space may be sparse */
Axel Lin6c325f82013-08-19 10:06:29 +0800156 if (desc && !strcmp(name, desc->name))
Linus Walleijae6b4d82011-10-19 18:14:33 +0200157 return pin;
158 }
159
160 return -EINVAL;
161}
162
163/**
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800164 * pin_get_name_from_id() - look up a pin name from a pin id
165 * @pctldev: the pin control device to lookup the pin on
166 * @name: the name of the pin to look up
167 */
168const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin)
169{
170 const struct pin_desc *desc;
171
172 desc = pin_desc_get(pctldev, pin);
173 if (desc == NULL) {
174 dev_err(pctldev->dev, "failed to get pin(%d) name\n",
175 pin);
176 return NULL;
177 }
178
179 return desc->name;
180}
181
182/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200183 * pin_is_valid() - check if pin exists on controller
184 * @pctldev: the pin control device to check the pin on
185 * @pin: pin to check, use the local pin controller index number
186 *
187 * This tells us whether a certain pin exist on a certain pin controller or
188 * not. Pin lists may be sparse, so some pins may not exist.
189 */
190bool pin_is_valid(struct pinctrl_dev *pctldev, int pin)
191{
192 struct pin_desc *pindesc;
193
194 if (pin < 0)
195 return false;
196
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200197 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200198 pindesc = pin_desc_get(pctldev, pin);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200199 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200200
Stephen Warren57b676f2012-03-02 13:05:44 -0700201 return pindesc != NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200202}
203EXPORT_SYMBOL_GPL(pin_is_valid);
204
205/* Deletes a range of pin descriptors */
206static void pinctrl_free_pindescs(struct pinctrl_dev *pctldev,
207 const struct pinctrl_pin_desc *pins,
208 unsigned num_pins)
209{
210 int i;
211
Linus Walleij2744e8a2011-05-02 20:50:54 +0200212 for (i = 0; i < num_pins; i++) {
213 struct pin_desc *pindesc;
214
215 pindesc = radix_tree_lookup(&pctldev->pin_desc_tree,
216 pins[i].number);
217 if (pindesc != NULL) {
218 radix_tree_delete(&pctldev->pin_desc_tree,
219 pins[i].number);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100220 if (pindesc->dynamic_name)
221 kfree(pindesc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200222 }
223 kfree(pindesc);
224 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200225}
226
227static int pinctrl_register_one_pin(struct pinctrl_dev *pctldev,
228 unsigned number, const char *name)
229{
230 struct pin_desc *pindesc;
231
232 pindesc = pin_desc_get(pctldev, number);
233 if (pindesc != NULL) {
Masahiro Yamada2b38ca62015-07-21 15:25:26 +0900234 dev_err(pctldev->dev, "pin %d already registered\n", number);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200235 return -EINVAL;
236 }
237
238 pindesc = kzalloc(sizeof(*pindesc), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700239 if (pindesc == NULL) {
240 dev_err(pctldev->dev, "failed to alloc struct pin_desc\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200241 return -ENOMEM;
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700242 }
Linus Walleijae6b4d82011-10-19 18:14:33 +0200243
Linus Walleij2744e8a2011-05-02 20:50:54 +0200244 /* Set owner */
245 pindesc->pctldev = pctldev;
246
Stephen Warren9af1e442011-10-19 16:19:27 -0600247 /* Copy basic pin info */
Linus Walleij8dc6ae42012-02-01 18:11:40 +0100248 if (name) {
Linus Walleijca53c5f2011-12-14 20:33:37 +0100249 pindesc->name = name;
250 } else {
251 pindesc->name = kasprintf(GFP_KERNEL, "PIN%u", number);
Sachin Kamateb26cc92012-09-25 12:41:40 +0530252 if (pindesc->name == NULL) {
253 kfree(pindesc);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100254 return -ENOMEM;
Sachin Kamateb26cc92012-09-25 12:41:40 +0530255 }
Linus Walleijca53c5f2011-12-14 20:33:37 +0100256 pindesc->dynamic_name = true;
257 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200258
Linus Walleij2744e8a2011-05-02 20:50:54 +0200259 radix_tree_insert(&pctldev->pin_desc_tree, number, pindesc);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200260 pr_debug("registered pin %d (%s) on %s\n",
Linus Walleijca53c5f2011-12-14 20:33:37 +0100261 number, pindesc->name, pctldev->desc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200262 return 0;
263}
264
265static int pinctrl_register_pins(struct pinctrl_dev *pctldev,
266 struct pinctrl_pin_desc const *pins,
267 unsigned num_descs)
268{
269 unsigned i;
270 int ret = 0;
271
272 for (i = 0; i < num_descs; i++) {
273 ret = pinctrl_register_one_pin(pctldev,
274 pins[i].number, pins[i].name);
275 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
Linus Walleij2744e8a2011-05-02 20:50:54 +0200484/**
Linus Walleij9afbefb2012-11-20 14:25:07 +0100485 * pinctrl_find_gpio_range_from_pin() - locate the GPIO range for a pin
486 * @pctldev: the pin controller device to look in
487 * @pin: a controller-local number to find the range for
488 */
489struct pinctrl_gpio_range *
490pinctrl_find_gpio_range_from_pin(struct pinctrl_dev *pctldev,
491 unsigned int pin)
492{
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800493 struct pinctrl_gpio_range *range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100494
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200495 mutex_lock(&pctldev->mutex);
Linus Walleij9afbefb2012-11-20 14:25:07 +0100496 /* Loop over the ranges */
497 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
498 /* Check if we're in the valid range */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200499 if (range->pins) {
500 int a;
501 for (a = 0; a < range->npins; a++) {
502 if (range->pins[a] == pin)
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800503 goto out;
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200504 }
505 } else if (pin >= range->pin_base &&
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800506 pin < range->pin_base + range->npins)
507 goto out;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100508 }
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800509 range = NULL;
510out:
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200511 mutex_unlock(&pctldev->mutex);
Wei Yongjunc8f50e82013-06-18 12:24:58 +0800512 return range;
Linus Walleij9afbefb2012-11-20 14:25:07 +0100513}
514EXPORT_SYMBOL_GPL(pinctrl_find_gpio_range_from_pin);
515
516/**
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530517 * pinctrl_remove_gpio_range() - remove a range of GPIOs fro a pin controller
518 * @pctldev: pin controller device to remove the range from
519 * @range: the GPIO range to remove
520 */
521void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
522 struct pinctrl_gpio_range *range)
523{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200524 mutex_lock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530525 list_del(&range->node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200526 mutex_unlock(&pctldev->mutex);
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530527}
528EXPORT_SYMBOL_GPL(pinctrl_remove_gpio_range);
529
530/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200531 * pinctrl_get_group_selector() - returns the group selector for a group
532 * @pctldev: the pin controller handling the group
533 * @pin_group: the pin group to look up
534 */
535int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
536 const char *pin_group)
537{
538 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530539 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200540 unsigned group_selector = 0;
541
Viresh Kumard1e90e92012-03-30 11:25:40 +0530542 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200543 const char *gname = pctlops->get_group_name(pctldev,
544 group_selector);
545 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700546 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200547 "found group selector %u for %s\n",
548 group_selector,
549 pin_group);
550 return group_selector;
551 }
552
553 group_selector++;
554 }
555
Stephen Warren51cd24e2011-12-09 16:59:05 -0700556 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200557 pin_group);
558
559 return -EINVAL;
560}
561
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100562/**
Geert Uytterhoevenb217e432015-05-04 19:46:57 +0200563 * pinctrl_request_gpio() - request a single pin to be used as GPIO
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100564 * @gpio: the GPIO pin number from the GPIO subsystem number space
565 *
566 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
567 * as part of their gpio_request() semantics, platforms and individual drivers
568 * shall *NOT* request GPIO pins to be muxed in.
569 */
570int pinctrl_request_gpio(unsigned gpio)
571{
572 struct pinctrl_dev *pctldev;
573 struct pinctrl_gpio_range *range;
574 int ret;
575 int pin;
576
577 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700578 if (ret) {
Haojian Zhuang51e13c22013-02-17 19:42:50 +0800579 if (pinctrl_ready_for_gpio_range(gpio))
580 ret = 0;
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800581 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700582 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100583
Axel Lin9b77ace2013-08-19 10:07:46 +0800584 mutex_lock(&pctldev->mutex);
585
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100586 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200587 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100588
Stephen Warren57b676f2012-03-02 13:05:44 -0700589 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
590
Axel Lin9b77ace2013-08-19 10:07:46 +0800591 mutex_unlock(&pctldev->mutex);
592
Stephen Warren57b676f2012-03-02 13:05:44 -0700593 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100594}
595EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
596
597/**
598 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
599 * @gpio: the GPIO pin number from the GPIO subsystem number space
600 *
601 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
602 * as part of their gpio_free() semantics, platforms and individual drivers
603 * shall *NOT* request GPIO pins to be muxed out.
604 */
605void pinctrl_free_gpio(unsigned gpio)
606{
607 struct pinctrl_dev *pctldev;
608 struct pinctrl_gpio_range *range;
609 int ret;
610 int pin;
611
612 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700613 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100614 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700615 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200616 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100617
618 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200619 pin = gpio_to_pin(range, gpio);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100620
Stephen Warren57b676f2012-03-02 13:05:44 -0700621 pinmux_free_gpio(pctldev, pin, range);
622
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200623 mutex_unlock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100624}
625EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
626
627static int pinctrl_gpio_direction(unsigned gpio, bool input)
628{
629 struct pinctrl_dev *pctldev;
630 struct pinctrl_gpio_range *range;
631 int ret;
632 int pin;
633
634 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200635 if (ret) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100636 return ret;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200637 }
638
639 mutex_lock(&pctldev->mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100640
641 /* Convert to the pin controllers number space */
Christian Ruppertc8587ee2013-06-13 14:55:31 +0200642 pin = gpio_to_pin(range, gpio);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200643 ret = pinmux_gpio_direction(pctldev, range, pin, input);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100644
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200645 mutex_unlock(&pctldev->mutex);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200646
647 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100648}
649
650/**
651 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
652 * @gpio: the GPIO pin number from the GPIO subsystem number space
653 *
654 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
655 * as part of their gpio_direction_input() semantics, platforms and individual
656 * drivers shall *NOT* touch pin control GPIO calls.
657 */
658int pinctrl_gpio_direction_input(unsigned gpio)
659{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200660 return pinctrl_gpio_direction(gpio, true);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100661}
662EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
663
664/**
665 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
666 * @gpio: the GPIO pin number from the GPIO subsystem number space
667 *
668 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
669 * as part of their gpio_direction_output() semantics, platforms and individual
670 * drivers shall *NOT* touch pin control GPIO calls.
671 */
672int pinctrl_gpio_direction_output(unsigned gpio)
673{
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200674 return pinctrl_gpio_direction(gpio, false);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100675}
676EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
677
Stephen Warren6e5e9592012-03-02 13:05:47 -0700678static struct pinctrl_state *find_state(struct pinctrl *p,
679 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100680{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700681 struct pinctrl_state *state;
682
683 list_for_each_entry(state, &p->states, node)
684 if (!strcmp(state->name, name))
685 return state;
686
687 return NULL;
688}
689
690static struct pinctrl_state *create_state(struct pinctrl *p,
691 const char *name)
692{
693 struct pinctrl_state *state;
694
695 state = kzalloc(sizeof(*state), GFP_KERNEL);
696 if (state == NULL) {
697 dev_err(p->dev,
698 "failed to alloc struct pinctrl_state\n");
699 return ERR_PTR(-ENOMEM);
700 }
701
702 state->name = name;
703 INIT_LIST_HEAD(&state->settings);
704
705 list_add_tail(&state->node, &p->states);
706
707 return state;
708}
709
710static int add_setting(struct pinctrl *p, struct pinctrl_map const *map)
711{
712 struct pinctrl_state *state;
713 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700714 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700715
716 state = find_state(p, map->name);
717 if (!state)
718 state = create_state(p, map->name);
719 if (IS_ERR(state))
720 return PTR_ERR(state);
721
Stephen Warren1e2082b2012-03-02 13:05:48 -0700722 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
723 return 0;
724
Stephen Warren6e5e9592012-03-02 13:05:47 -0700725 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
726 if (setting == NULL) {
727 dev_err(p->dev,
728 "failed to alloc struct pinctrl_setting\n");
729 return -ENOMEM;
730 }
731
Stephen Warren1e2082b2012-03-02 13:05:48 -0700732 setting->type = map->type;
733
Stephen Warren6e5e9592012-03-02 13:05:47 -0700734 setting->pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
735 if (setting->pctldev == NULL) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700736 kfree(setting);
Linus Walleij89216492012-12-11 14:14:32 +0100737 /* Do not defer probing of hogs (circular loop) */
738 if (!strcmp(map->ctrl_dev_name, map->dev_name))
739 return -ENODEV;
Linus Walleijc05127c2012-04-10 10:00:38 +0200740 /*
741 * OK let us guess that the driver is not there yet, and
742 * let's defer obtaining this pinctrl handle to later...
743 */
Linus Walleij89216492012-12-11 14:14:32 +0100744 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
745 map->ctrl_dev_name);
Linus Walleijc05127c2012-04-10 10:00:38 +0200746 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700747 }
748
Linus Walleij1a789582012-10-17 20:51:54 +0200749 setting->dev_name = map->dev_name;
750
Stephen Warren1e2082b2012-03-02 13:05:48 -0700751 switch (map->type) {
752 case PIN_MAP_TYPE_MUX_GROUP:
753 ret = pinmux_map_to_setting(map, setting);
754 break;
755 case PIN_MAP_TYPE_CONFIGS_PIN:
756 case PIN_MAP_TYPE_CONFIGS_GROUP:
757 ret = pinconf_map_to_setting(map, setting);
758 break;
759 default:
760 ret = -EINVAL;
761 break;
762 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700763 if (ret < 0) {
764 kfree(setting);
765 return ret;
766 }
767
768 list_add_tail(&setting->node, &state->settings);
769
770 return 0;
771}
772
773static struct pinctrl *find_pinctrl(struct device *dev)
774{
775 struct pinctrl *p;
776
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200777 mutex_lock(&pinctrl_list_mutex);
Stephen Warren1e2082b2012-03-02 13:05:48 -0700778 list_for_each_entry(p, &pinctrl_list, node)
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200779 if (p->dev == dev) {
780 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700781 return p;
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200782 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700783
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200784 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700785 return NULL;
786}
787
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200788static void pinctrl_free(struct pinctrl *p, bool inlist);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700789
790static struct pinctrl *create_pinctrl(struct device *dev)
791{
792 struct pinctrl *p;
793 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700794 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100795 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700796 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700797 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100798
799 /*
800 * create the state cookie holder struct pinctrl for each
801 * mapping, this is what consumers will get when requesting
802 * a pin control handle with pinctrl_get()
803 */
Stephen Warren02f5b982012-02-22 14:26:00 -0700804 p = kzalloc(sizeof(*p), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700805 if (p == NULL) {
806 dev_err(dev, "failed to alloc struct pinctrl\n");
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100807 return ERR_PTR(-ENOMEM);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700808 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700809 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700810 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -0600811 INIT_LIST_HEAD(&p->dt_maps);
812
813 ret = pinctrl_dt_to_map(p);
814 if (ret < 0) {
815 kfree(p);
816 return ERR_PTR(ret);
817 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700818
819 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100820
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200821 mutex_lock(&pinctrl_maps_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100822 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700823 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -0700824 /* Map must be for this device */
825 if (strcmp(map->dev_name, devname))
826 continue;
827
Stephen Warren6e5e9592012-03-02 13:05:47 -0700828 ret = add_setting(p, map);
Linus Walleij89216492012-12-11 14:14:32 +0100829 /*
830 * At this point the adding of a setting may:
831 *
832 * - Defer, if the pinctrl device is not yet available
833 * - Fail, if the pinctrl device is not yet available,
834 * AND the setting is a hog. We cannot defer that, since
835 * the hog will kick in immediately after the device
836 * is registered.
837 *
838 * If the error returned was not -EPROBE_DEFER then we
839 * accumulate the errors to see if we end up with
840 * an -EPROBE_DEFER later, as that is the worst case.
841 */
842 if (ret == -EPROBE_DEFER) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200843 pinctrl_free(p, false);
844 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700845 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100846 }
847 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200848 mutex_unlock(&pinctrl_maps_mutex);
849
Linus Walleij89216492012-12-11 14:14:32 +0100850 if (ret < 0) {
851 /* If some other error than deferral occured, return here */
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200852 pinctrl_free(p, false);
Linus Walleij89216492012-12-11 14:14:32 +0100853 return ERR_PTR(ret);
854 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100855
Linus Walleijab780292013-01-22 10:56:14 -0700856 kref_init(&p->users);
857
Linus Walleijb0666ba2012-12-11 13:12:35 +0100858 /* Add the pinctrl handle to the global list */
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +0100859 mutex_lock(&pinctrl_list_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -0700860 list_add_tail(&p->node, &pinctrl_list);
Stanislaw Gruszka7b320cb2014-02-04 09:07:09 +0100861 mutex_unlock(&pinctrl_list_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100862
863 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700864}
Stephen Warren7ecdb162012-03-02 13:05:45 -0700865
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200866/**
867 * pinctrl_get() - retrieves the pinctrl handle for a device
868 * @dev: the device to obtain the handle for
869 */
870struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700871{
872 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700873
Stephen Warren6e5e9592012-03-02 13:05:47 -0700874 if (WARN_ON(!dev))
875 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700876
Linus Walleijab780292013-01-22 10:56:14 -0700877 /*
878 * See if somebody else (such as the device core) has already
879 * obtained a handle to the pinctrl for this device. In that case,
880 * return another pointer to it.
881 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700882 p = find_pinctrl(dev);
Linus Walleijab780292013-01-22 10:56:14 -0700883 if (p != NULL) {
884 dev_dbg(dev, "obtain a copy of previously claimed pinctrl\n");
885 kref_get(&p->users);
886 return p;
887 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700888
Richard Genoudd599bfb2012-08-10 16:53:49 +0200889 return create_pinctrl(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100890}
891EXPORT_SYMBOL_GPL(pinctrl_get);
892
Richard Genoudd3cee8302013-03-25 15:47:21 +0100893static void pinctrl_free_setting(bool disable_setting,
894 struct pinctrl_setting *setting)
895{
896 switch (setting->type) {
897 case PIN_MAP_TYPE_MUX_GROUP:
898 if (disable_setting)
899 pinmux_disable_setting(setting);
900 pinmux_free_setting(setting);
901 break;
902 case PIN_MAP_TYPE_CONFIGS_PIN:
903 case PIN_MAP_TYPE_CONFIGS_GROUP:
904 pinconf_free_setting(setting);
905 break;
906 default:
907 break;
908 }
909}
910
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200911static void pinctrl_free(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -0700912{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700913 struct pinctrl_state *state, *n1;
914 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700915
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200916 mutex_lock(&pinctrl_list_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700917 list_for_each_entry_safe(state, n1, &p->states, node) {
918 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Richard Genoudd3cee8302013-03-25 15:47:21 +0100919 pinctrl_free_setting(state == p->state, setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700920 list_del(&setting->node);
921 kfree(setting);
922 }
923 list_del(&state->node);
924 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700925 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700926
Stephen Warren57291ce2012-03-23 10:29:46 -0600927 pinctrl_dt_free_maps(p);
928
Stephen Warren6e5e9592012-03-02 13:05:47 -0700929 if (inlist)
930 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -0700931 kfree(p);
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200932 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -0700933}
934
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100935/**
Linus Walleijab780292013-01-22 10:56:14 -0700936 * pinctrl_release() - release the pinctrl handle
937 * @kref: the kref in the pinctrl being released
938 */
Sachin Kamat2917e832013-01-24 15:01:00 +0530939static void pinctrl_release(struct kref *kref)
Linus Walleijab780292013-01-22 10:56:14 -0700940{
941 struct pinctrl *p = container_of(kref, struct pinctrl, users);
942
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200943 pinctrl_free(p, true);
Linus Walleijab780292013-01-22 10:56:14 -0700944}
945
946/**
947 * pinctrl_put() - decrease use count on a previously claimed pinctrl handle
Stephen Warren6e5e9592012-03-02 13:05:47 -0700948 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100949 */
950void pinctrl_put(struct pinctrl *p)
951{
Linus Walleijab780292013-01-22 10:56:14 -0700952 kref_put(&p->users, pinctrl_release);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100953}
954EXPORT_SYMBOL_GPL(pinctrl_put);
955
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200956/**
957 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
958 * @p: the pinctrl handle to retrieve the state from
959 * @name: the state name to retrieve
960 */
961struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p,
962 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -0700963{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700964 struct pinctrl_state *state;
965
966 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800967 if (!state) {
968 if (pinctrl_dummy_state) {
969 /* create dummy state */
970 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
971 name);
972 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +0200973 } else
974 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800975 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700976
977 return state;
978}
Stephen Warren6e5e9592012-03-02 13:05:47 -0700979EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
980
Patrice Chotard42fed7b2013-04-11 11:01:27 +0200981/**
982 * pinctrl_select_state() - select/activate/program a pinctrl state to HW
983 * @p: the pinctrl handle for the device that requests configuration
984 * @state: the state handle to select/activate/program
985 */
986int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700987{
988 struct pinctrl_setting *setting, *setting2;
Richard Genoud50cf7c82013-03-25 15:47:23 +0100989 struct pinctrl_state *old_state = p->state;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700990 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700991
Stephen Warren6e5e9592012-03-02 13:05:47 -0700992 if (p->state == state)
993 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700994
Stephen Warren6e5e9592012-03-02 13:05:47 -0700995 if (p->state) {
996 /*
Fan Wu2243a872014-06-09 09:37:56 +0800997 * For each pinmux setting in the old state, forget SW's record
998 * of mux owner for that pingroup. Any pingroups which are
999 * still owned by the new state will be re-acquired by the call
1000 * to pinmux_enable_setting() in the loop below.
Stephen Warren6e5e9592012-03-02 13:05:47 -07001001 */
1002 list_for_each_entry(setting, &p->state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001003 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
1004 continue;
Fan Wu2243a872014-06-09 09:37:56 +08001005 pinmux_disable_setting(setting);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001006 }
1007 }
1008
Richard Genoud3102a762013-03-25 15:47:22 +01001009 p->state = NULL;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001010
1011 /* Apply all the settings for the new state */
1012 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001013 switch (setting->type) {
1014 case PIN_MAP_TYPE_MUX_GROUP:
1015 ret = pinmux_enable_setting(setting);
1016 break;
1017 case PIN_MAP_TYPE_CONFIGS_PIN:
1018 case PIN_MAP_TYPE_CONFIGS_GROUP:
1019 ret = pinconf_apply_setting(setting);
1020 break;
1021 default:
1022 ret = -EINVAL;
1023 break;
1024 }
Richard Genoud3102a762013-03-25 15:47:22 +01001025
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001026 if (ret < 0) {
Richard Genoud3102a762013-03-25 15:47:22 +01001027 goto unapply_new_state;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001028 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001029 }
1030
Richard Genoud3102a762013-03-25 15:47:22 +01001031 p->state = state;
1032
Stephen Warren7ecdb162012-03-02 13:05:45 -07001033 return 0;
Richard Genoud3102a762013-03-25 15:47:22 +01001034
1035unapply_new_state:
Richard Genoudda587512013-03-28 12:55:46 +01001036 dev_err(p->dev, "Error applying setting, reverse things back\n");
Richard Genoud3102a762013-03-25 15:47:22 +01001037
Richard Genoud3102a762013-03-25 15:47:22 +01001038 list_for_each_entry(setting2, &state->settings, node) {
1039 if (&setting2->node == &setting->node)
1040 break;
Richard Genoudaf606172013-03-29 10:03:26 +01001041 /*
1042 * All we can do here is pinmux_disable_setting.
1043 * That means that some pins are muxed differently now
1044 * than they were before applying the setting (We can't
1045 * "unmux a pin"!), but it's not a big deal since the pins
1046 * are free to be muxed by another apply_setting.
1047 */
1048 if (setting2->type == PIN_MAP_TYPE_MUX_GROUP)
1049 pinmux_disable_setting(setting2);
Richard Genoud3102a762013-03-25 15:47:22 +01001050 }
Richard Genoud8009d5f2013-03-28 12:55:47 +01001051
Richard Genoud385d9422013-03-29 10:03:27 +01001052 /* There's no infinite recursive loop here because p->state is NULL */
1053 if (old_state)
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001054 pinctrl_select_state(p, old_state);
Stephen Warren6e5e9592012-03-02 13:05:47 -07001055
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001056 return ret;
1057}
Stephen Warren6e5e9592012-03-02 13:05:47 -07001058EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001059
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001060static void devm_pinctrl_release(struct device *dev, void *res)
1061{
1062 pinctrl_put(*(struct pinctrl **)res);
1063}
1064
1065/**
1066 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
1067 * @dev: the device to obtain the handle for
1068 *
1069 * If there is a need to explicitly destroy the returned struct pinctrl,
1070 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
1071 */
1072struct pinctrl *devm_pinctrl_get(struct device *dev)
1073{
1074 struct pinctrl **ptr, *p;
1075
1076 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
1077 if (!ptr)
1078 return ERR_PTR(-ENOMEM);
1079
1080 p = pinctrl_get(dev);
1081 if (!IS_ERR(p)) {
1082 *ptr = p;
1083 devres_add(dev, ptr);
1084 } else {
1085 devres_free(ptr);
1086 }
1087
1088 return p;
1089}
1090EXPORT_SYMBOL_GPL(devm_pinctrl_get);
1091
1092static int devm_pinctrl_match(struct device *dev, void *res, void *data)
1093{
1094 struct pinctrl **p = res;
1095
1096 return *p == data;
1097}
1098
1099/**
1100 * devm_pinctrl_put() - Resource managed pinctrl_put()
1101 * @p: the pinctrl handle to release
1102 *
1103 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
1104 * this function will not need to be called and the resource management
1105 * code will ensure that the resource is freed.
1106 */
1107void devm_pinctrl_put(struct pinctrl *p)
1108{
Jingoo Hana72149e2013-02-26 11:34:07 +09001109 WARN_ON(devres_release(p->dev, devm_pinctrl_release,
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001110 devm_pinctrl_match, p));
Stephen Warren6d4ca1f2012-04-16 10:51:00 -06001111}
1112EXPORT_SYMBOL_GPL(devm_pinctrl_put);
1113
Stephen Warren57291ce2012-03-23 10:29:46 -06001114int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
Doug Andersonc5272a22015-05-01 09:01:27 -07001115 bool dup)
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001116{
Stephen Warren1e2082b2012-03-02 13:05:48 -07001117 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001118 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001119
Masahiro Yamada7e9236f2015-05-28 21:52:59 +09001120 pr_debug("add %u pinctrl maps\n", num_maps);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001121
1122 /* First sanity check the new mapping */
1123 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001124 if (!maps[i].dev_name) {
1125 pr_err("failed to register map %s (%d): no device given\n",
1126 maps[i].name, i);
1127 return -EINVAL;
1128 }
1129
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001130 if (!maps[i].name) {
1131 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001132 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001133 return -EINVAL;
1134 }
1135
Stephen Warren1e2082b2012-03-02 13:05:48 -07001136 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
1137 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001138 pr_err("failed to register map %s (%d): no pin control device given\n",
1139 maps[i].name, i);
1140 return -EINVAL;
1141 }
1142
Stephen Warren1e2082b2012-03-02 13:05:48 -07001143 switch (maps[i].type) {
1144 case PIN_MAP_TYPE_DUMMY_STATE:
1145 break;
1146 case PIN_MAP_TYPE_MUX_GROUP:
1147 ret = pinmux_validate_map(&maps[i], i);
1148 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001149 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001150 break;
1151 case PIN_MAP_TYPE_CONFIGS_PIN:
1152 case PIN_MAP_TYPE_CONFIGS_GROUP:
1153 ret = pinconf_validate_map(&maps[i], i);
1154 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001155 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001156 break;
1157 default:
1158 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001159 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -07001160 return -EINVAL;
1161 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001162 }
1163
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001164 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
1165 if (!maps_node) {
1166 pr_err("failed to alloc struct pinctrl_maps\n");
1167 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001168 }
1169
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001170 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -06001171 if (dup) {
1172 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
1173 GFP_KERNEL);
1174 if (!maps_node->maps) {
1175 pr_err("failed to duplicate mapping table\n");
1176 kfree(maps_node);
1177 return -ENOMEM;
1178 }
1179 } else {
1180 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001181 }
1182
Doug Andersonc5272a22015-05-01 09:01:27 -07001183 mutex_lock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001184 list_add_tail(&maps_node->node, &pinctrl_maps);
Doug Andersonc5272a22015-05-01 09:01:27 -07001185 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001186
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001187 return 0;
1188}
1189
Stephen Warren57291ce2012-03-23 10:29:46 -06001190/**
1191 * pinctrl_register_mappings() - register a set of pin controller mappings
1192 * @maps: the pincontrol mappings table to register. This should probably be
1193 * marked with __initdata so it can be discarded after boot. This
1194 * function will perform a shallow copy for the mapping entries.
1195 * @num_maps: the number of maps in the mapping table
1196 */
1197int pinctrl_register_mappings(struct pinctrl_map const *maps,
1198 unsigned num_maps)
1199{
Doug Andersonc5272a22015-05-01 09:01:27 -07001200 return pinctrl_register_map(maps, num_maps, true);
Stephen Warren57291ce2012-03-23 10:29:46 -06001201}
1202
1203void pinctrl_unregister_map(struct pinctrl_map const *map)
1204{
1205 struct pinctrl_maps *maps_node;
1206
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001207 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001208 list_for_each_entry(maps_node, &pinctrl_maps, node) {
1209 if (maps_node->maps == map) {
1210 list_del(&maps_node->node);
Linus Walleijdb6c2c62013-07-23 01:43:20 +02001211 kfree(maps_node);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001212 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001213 return;
1214 }
1215 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001216 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren57291ce2012-03-23 10:29:46 -06001217}
1218
Julien Delacou840a47b2012-12-10 14:47:33 +01001219/**
1220 * pinctrl_force_sleep() - turn a given controller device into sleep state
1221 * @pctldev: pin controller device
1222 */
1223int pinctrl_force_sleep(struct pinctrl_dev *pctldev)
1224{
1225 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_sleep))
1226 return pinctrl_select_state(pctldev->p, pctldev->hog_sleep);
1227 return 0;
1228}
1229EXPORT_SYMBOL_GPL(pinctrl_force_sleep);
1230
1231/**
1232 * pinctrl_force_default() - turn a given controller device into default state
1233 * @pctldev: pin controller device
1234 */
1235int pinctrl_force_default(struct pinctrl_dev *pctldev)
1236{
1237 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_default))
1238 return pinctrl_select_state(pctldev->p, pctldev->hog_default);
1239 return 0;
1240}
1241EXPORT_SYMBOL_GPL(pinctrl_force_default);
1242
Douglas Andersonef0eebc2015-10-20 21:15:06 -07001243/**
1244 * pinctrl_init_done() - tell pinctrl probe is done
1245 *
1246 * We'll use this time to switch the pins from "init" to "default" unless the
1247 * driver selected some other state.
1248 *
1249 * @dev: device to that's done probing
1250 */
1251int pinctrl_init_done(struct device *dev)
1252{
1253 struct dev_pin_info *pins = dev->pins;
1254 int ret;
1255
1256 if (!pins)
1257 return 0;
1258
1259 if (IS_ERR(pins->init_state))
1260 return 0; /* No such state */
1261
1262 if (pins->p->state != pins->init_state)
1263 return 0; /* Not at init anyway */
1264
1265 if (IS_ERR(pins->default_state))
1266 return 0; /* No default state */
1267
1268 ret = pinctrl_select_state(pins->p, pins->default_state);
1269 if (ret)
1270 dev_err(dev, "failed to activate default pinctrl state\n");
1271
1272 return ret;
1273}
1274
Linus Walleij14005ee2013-06-05 15:30:33 +02001275#ifdef CONFIG_PM
1276
1277/**
Tony Lindgrenf3333492013-07-18 08:15:04 -07001278 * pinctrl_pm_select_state() - select pinctrl state for PM
1279 * @dev: device to select default state for
1280 * @state: state to set
1281 */
1282static int pinctrl_pm_select_state(struct device *dev,
1283 struct pinctrl_state *state)
1284{
1285 struct dev_pin_info *pins = dev->pins;
1286 int ret;
1287
1288 if (IS_ERR(state))
1289 return 0; /* No such state */
1290 ret = pinctrl_select_state(pins->p, state);
1291 if (ret)
1292 dev_err(dev, "failed to activate pinctrl state %s\n",
1293 state->name);
1294 return ret;
1295}
1296
1297/**
Linus Walleij14005ee2013-06-05 15:30:33 +02001298 * pinctrl_pm_select_default_state() - select default pinctrl state for PM
1299 * @dev: device to select default state for
1300 */
1301int pinctrl_pm_select_default_state(struct device *dev)
1302{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001303 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001304 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001305
1306 return pinctrl_pm_select_state(dev, dev->pins->default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001307}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001308EXPORT_SYMBOL_GPL(pinctrl_pm_select_default_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001309
1310/**
1311 * pinctrl_pm_select_sleep_state() - select sleep pinctrl state for PM
1312 * @dev: device to select sleep state for
1313 */
1314int pinctrl_pm_select_sleep_state(struct device *dev)
1315{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001316 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001317 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001318
1319 return pinctrl_pm_select_state(dev, dev->pins->sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001320}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001321EXPORT_SYMBOL_GPL(pinctrl_pm_select_sleep_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001322
1323/**
1324 * pinctrl_pm_select_idle_state() - select idle pinctrl state for PM
1325 * @dev: device to select idle state for
1326 */
1327int pinctrl_pm_select_idle_state(struct device *dev)
1328{
Tony Lindgrenf3333492013-07-18 08:15:04 -07001329 if (!dev->pins)
Linus Walleij14005ee2013-06-05 15:30:33 +02001330 return 0;
Tony Lindgrenf3333492013-07-18 08:15:04 -07001331
1332 return pinctrl_pm_select_state(dev, dev->pins->idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001333}
Arnd Bergmannf472dea2013-06-17 17:12:28 +02001334EXPORT_SYMBOL_GPL(pinctrl_pm_select_idle_state);
Linus Walleij14005ee2013-06-05 15:30:33 +02001335#endif
1336
Linus Walleij2744e8a2011-05-02 20:50:54 +02001337#ifdef CONFIG_DEBUG_FS
1338
1339static int pinctrl_pins_show(struct seq_file *s, void *what)
1340{
1341 struct pinctrl_dev *pctldev = s->private;
1342 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001343 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001344
1345 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001346
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001347 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001348
Chanho Park706e8522012-01-03 16:47:50 +09001349 /* The pin number can be retrived from the pin controller descriptor */
1350 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001351 struct pin_desc *desc;
1352
Chanho Park706e8522012-01-03 16:47:50 +09001353 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001354 desc = pin_desc_get(pctldev, pin);
1355 /* Pin space may be sparse */
1356 if (desc == NULL)
1357 continue;
1358
1359 seq_printf(s, "pin %d (%s) ", pin,
1360 desc->name ? desc->name : "unnamed");
1361
1362 /* Driver-specific info per pin */
1363 if (ops->pin_dbg_show)
1364 ops->pin_dbg_show(pctldev, s, pin);
1365
1366 seq_puts(s, "\n");
1367 }
1368
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001369 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001370
Linus Walleij2744e8a2011-05-02 20:50:54 +02001371 return 0;
1372}
1373
1374static int pinctrl_groups_show(struct seq_file *s, void *what)
1375{
1376 struct pinctrl_dev *pctldev = s->private;
1377 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301378 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001379
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001380 mutex_lock(&pctldev->mutex);
1381
Viresh Kumard1e90e92012-03-30 11:25:40 +05301382 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001383
Linus Walleij2744e8a2011-05-02 20:50:54 +02001384 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301385 while (selector < ngroups) {
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001386 const unsigned *pins = NULL;
1387 unsigned num_pins = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001388 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001389 const char *pname;
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001390 int ret = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001391 int i;
1392
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001393 if (ops->get_group_pins)
1394 ret = ops->get_group_pins(pctldev, selector,
1395 &pins, &num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001396 if (ret)
1397 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1398 gname);
1399 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001400 seq_printf(s, "group: %s\n", gname);
1401 for (i = 0; i < num_pins; i++) {
1402 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001403 if (WARN_ON(!pname)) {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001404 mutex_unlock(&pctldev->mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001405 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001406 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001407 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1408 }
1409 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001410 }
1411 selector++;
1412 }
1413
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001414 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001415
1416 return 0;
1417}
1418
1419static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1420{
1421 struct pinctrl_dev *pctldev = s->private;
1422 struct pinctrl_gpio_range *range = NULL;
1423
1424 seq_puts(s, "GPIO ranges handled:\n");
1425
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001426 mutex_lock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001427
Linus Walleij2744e8a2011-05-02 20:50:54 +02001428 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001429 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Christian Ruppertc8587ee2013-06-13 14:55:31 +02001430 if (range->pins) {
1431 int a;
1432 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS {",
1433 range->id, range->name,
1434 range->base, (range->base + range->npins - 1));
1435 for (a = 0; a < range->npins - 1; a++)
1436 seq_printf(s, "%u, ", range->pins[a]);
1437 seq_printf(s, "%u}\n", range->pins[a]);
1438 }
1439 else
1440 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1441 range->id, range->name,
1442 range->base, (range->base + range->npins - 1),
1443 range->pin_base,
1444 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001445 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001446
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001447 mutex_unlock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001448
1449 return 0;
1450}
1451
1452static int pinctrl_devices_show(struct seq_file *s, void *what)
1453{
1454 struct pinctrl_dev *pctldev;
1455
Linus Walleijae6b4d82011-10-19 18:14:33 +02001456 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001457
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001458 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001459
Linus Walleij2744e8a2011-05-02 20:50:54 +02001460 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1461 seq_printf(s, "%s ", pctldev->desc->name);
1462 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001463 seq_puts(s, "yes ");
1464 else
1465 seq_puts(s, "no ");
1466 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001467 seq_puts(s, "yes");
1468 else
1469 seq_puts(s, "no");
1470 seq_puts(s, "\n");
1471 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001472
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001473 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001474
1475 return 0;
1476}
1477
Stephen Warren1e2082b2012-03-02 13:05:48 -07001478static inline const char *map_type(enum pinctrl_map_type type)
1479{
1480 static const char * const names[] = {
1481 "INVALID",
1482 "DUMMY_STATE",
1483 "MUX_GROUP",
1484 "CONFIGS_PIN",
1485 "CONFIGS_GROUP",
1486 };
1487
1488 if (type >= ARRAY_SIZE(names))
1489 return "UNKNOWN";
1490
1491 return names[type];
1492}
1493
Stephen Warren3eedb432012-02-23 17:04:40 -07001494static int pinctrl_maps_show(struct seq_file *s, void *what)
1495{
1496 struct pinctrl_maps *maps_node;
1497 int i;
1498 struct pinctrl_map const *map;
1499
1500 seq_puts(s, "Pinctrl maps:\n");
1501
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001502 mutex_lock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001503 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001504 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1505 map->dev_name, map->name, map_type(map->type),
1506 map->type);
1507
1508 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1509 seq_printf(s, "controlling device %s\n",
1510 map->ctrl_dev_name);
1511
1512 switch (map->type) {
1513 case PIN_MAP_TYPE_MUX_GROUP:
1514 pinmux_show_map(s, map);
1515 break;
1516 case PIN_MAP_TYPE_CONFIGS_PIN:
1517 case PIN_MAP_TYPE_CONFIGS_GROUP:
1518 pinconf_show_map(s, map);
1519 break;
1520 default:
1521 break;
1522 }
1523
1524 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001525 }
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001526 mutex_unlock(&pinctrl_maps_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001527
1528 return 0;
1529}
1530
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001531static int pinctrl_show(struct seq_file *s, void *what)
1532{
1533 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001534 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001535 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001536
1537 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001538
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001539 mutex_lock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001540
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001541 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001542 seq_printf(s, "device: %s current state: %s\n",
1543 dev_name(p->dev),
1544 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001545
Stephen Warren6e5e9592012-03-02 13:05:47 -07001546 list_for_each_entry(state, &p->states, node) {
1547 seq_printf(s, " state: %s\n", state->name);
1548
1549 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001550 struct pinctrl_dev *pctldev = setting->pctldev;
1551
1552 seq_printf(s, " type: %s controller %s ",
1553 map_type(setting->type),
1554 pinctrl_dev_get_name(pctldev));
1555
1556 switch (setting->type) {
1557 case PIN_MAP_TYPE_MUX_GROUP:
1558 pinmux_show_setting(s, setting);
1559 break;
1560 case PIN_MAP_TYPE_CONFIGS_PIN:
1561 case PIN_MAP_TYPE_CONFIGS_GROUP:
1562 pinconf_show_setting(s, setting);
1563 break;
1564 default:
1565 break;
1566 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001567 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001568 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001569 }
1570
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001571 mutex_unlock(&pinctrl_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001572
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001573 return 0;
1574}
1575
Linus Walleij2744e8a2011-05-02 20:50:54 +02001576static int pinctrl_pins_open(struct inode *inode, struct file *file)
1577{
1578 return single_open(file, pinctrl_pins_show, inode->i_private);
1579}
1580
1581static int pinctrl_groups_open(struct inode *inode, struct file *file)
1582{
1583 return single_open(file, pinctrl_groups_show, inode->i_private);
1584}
1585
1586static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1587{
1588 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1589}
1590
1591static int pinctrl_devices_open(struct inode *inode, struct file *file)
1592{
1593 return single_open(file, pinctrl_devices_show, NULL);
1594}
1595
Stephen Warren3eedb432012-02-23 17:04:40 -07001596static int pinctrl_maps_open(struct inode *inode, struct file *file)
1597{
1598 return single_open(file, pinctrl_maps_show, NULL);
1599}
1600
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001601static int pinctrl_open(struct inode *inode, struct file *file)
1602{
1603 return single_open(file, pinctrl_show, NULL);
1604}
1605
Linus Walleij2744e8a2011-05-02 20:50:54 +02001606static const struct file_operations pinctrl_pins_ops = {
1607 .open = pinctrl_pins_open,
1608 .read = seq_read,
1609 .llseek = seq_lseek,
1610 .release = single_release,
1611};
1612
1613static const struct file_operations pinctrl_groups_ops = {
1614 .open = pinctrl_groups_open,
1615 .read = seq_read,
1616 .llseek = seq_lseek,
1617 .release = single_release,
1618};
1619
1620static const struct file_operations pinctrl_gpioranges_ops = {
1621 .open = pinctrl_gpioranges_open,
1622 .read = seq_read,
1623 .llseek = seq_lseek,
1624 .release = single_release,
1625};
1626
1627static const struct file_operations pinctrl_devices_ops = {
1628 .open = pinctrl_devices_open,
1629 .read = seq_read,
1630 .llseek = seq_lseek,
1631 .release = single_release,
1632};
1633
Stephen Warren3eedb432012-02-23 17:04:40 -07001634static const struct file_operations pinctrl_maps_ops = {
1635 .open = pinctrl_maps_open,
1636 .read = seq_read,
1637 .llseek = seq_lseek,
1638 .release = single_release,
1639};
1640
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001641static const struct file_operations pinctrl_ops = {
1642 .open = pinctrl_open,
1643 .read = seq_read,
1644 .llseek = seq_lseek,
1645 .release = single_release,
1646};
1647
Linus Walleij2744e8a2011-05-02 20:50:54 +02001648static struct dentry *debugfs_root;
1649
1650static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1651{
Tony Lindgren02157162012-01-20 08:17:22 -08001652 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001653
Stephen Warren51cd24e2011-12-09 16:59:05 -07001654 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001655 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001656 pctldev->device_root = device_root;
1657
Linus Walleij2744e8a2011-05-02 20:50:54 +02001658 if (IS_ERR(device_root) || !device_root) {
1659 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001660 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001661 return;
1662 }
1663 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1664 device_root, pctldev, &pinctrl_pins_ops);
1665 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1666 device_root, pctldev, &pinctrl_groups_ops);
1667 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1668 device_root, pctldev, &pinctrl_gpioranges_ops);
Florian Vaussarde7f2a442014-02-05 07:51:22 +01001669 if (pctldev->desc->pmxops)
1670 pinmux_init_device_debugfs(device_root, pctldev);
1671 if (pctldev->desc->confops)
1672 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001673}
1674
Tony Lindgren02157162012-01-20 08:17:22 -08001675static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1676{
1677 debugfs_remove_recursive(pctldev->device_root);
1678}
1679
Linus Walleij2744e8a2011-05-02 20:50:54 +02001680static void pinctrl_init_debugfs(void)
1681{
1682 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1683 if (IS_ERR(debugfs_root) || !debugfs_root) {
1684 pr_warn("failed to create debugfs directory\n");
1685 debugfs_root = NULL;
1686 return;
1687 }
1688
1689 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1690 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001691 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1692 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001693 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1694 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001695}
1696
1697#else /* CONFIG_DEBUG_FS */
1698
1699static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1700{
1701}
1702
1703static void pinctrl_init_debugfs(void)
1704{
1705}
1706
Tony Lindgren02157162012-01-20 08:17:22 -08001707static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1708{
1709}
1710
Linus Walleij2744e8a2011-05-02 20:50:54 +02001711#endif
1712
Stephen Warrend26bc492012-03-16 14:54:25 -06001713static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1714{
1715 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1716
1717 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301718 !ops->get_groups_count ||
Antoine Ténarte5b3b2d2014-04-10 15:07:50 +02001719 !ops->get_group_name)
Stephen Warrend26bc492012-03-16 14:54:25 -06001720 return -EINVAL;
1721
Stephen Warren57291ce2012-03-23 10:29:46 -06001722 if (ops->dt_node_to_map && !ops->dt_free_map)
1723 return -EINVAL;
1724
Stephen Warrend26bc492012-03-16 14:54:25 -06001725 return 0;
1726}
1727
Linus Walleij2744e8a2011-05-02 20:50:54 +02001728/**
1729 * pinctrl_register() - register a pin controller device
1730 * @pctldesc: descriptor for this pin controller
1731 * @dev: parent device for this pin controller
1732 * @driver_data: private pin controller data for this pin controller
1733 */
1734struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1735 struct device *dev, void *driver_data)
1736{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001737 struct pinctrl_dev *pctldev;
1738 int ret;
1739
Devendra Nagada9aecb2012-06-16 23:43:16 +05301740 if (!pctldesc)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001741 return ERR_PTR(-EINVAL);
Devendra Nagada9aecb2012-06-16 23:43:16 +05301742 if (!pctldesc->name)
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001743 return ERR_PTR(-EINVAL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001744
Stephen Warren02f5b982012-02-22 14:26:00 -07001745 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001746 if (pctldev == NULL) {
1747 dev_err(dev, "failed to alloc struct pinctrl_dev\n");
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001748 return ERR_PTR(-ENOMEM);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001749 }
Linus Walleij2744e8a2011-05-02 20:50:54 +02001750
1751 /* Initialize pin control device struct */
1752 pctldev->owner = pctldesc->owner;
1753 pctldev->desc = pctldesc;
1754 pctldev->driver_data = driver_data;
1755 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001756 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001757 pctldev->dev = dev;
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001758 mutex_init(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001759
Stephen Warrend26bc492012-03-16 14:54:25 -06001760 /* check core ops for sanity */
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001761 ret = pinctrl_check_ops(pctldev);
1762 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001763 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001764 goto out_err;
1765 }
1766
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001767 /* If we're implementing pinmuxing, check the ops for sanity */
1768 if (pctldesc->pmxops) {
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001769 ret = pinmux_check_ops(pctldev);
1770 if (ret)
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001771 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001772 }
1773
1774 /* If we're implementing pinconfig, check the ops for sanity */
1775 if (pctldesc->confops) {
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001776 ret = pinconf_check_ops(pctldev);
1777 if (ret)
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001778 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001779 }
1780
Linus Walleij2744e8a2011-05-02 20:50:54 +02001781 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02001782 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001783 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1784 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001785 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001786 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1787 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001788 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001789 }
1790
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001791 mutex_lock(&pinctrldev_list_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -07001792 list_add_tail(&pctldev->node, &pinctrldev_list);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001793 mutex_unlock(&pinctrldev_list_mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001794
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001795 pctldev->p = pinctrl_get(pctldev->dev);
1796
Stephen Warren6e5e9592012-03-02 13:05:47 -07001797 if (!IS_ERR(pctldev->p)) {
Julien Delacou840a47b2012-12-10 14:47:33 +01001798 pctldev->hog_default =
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001799 pinctrl_lookup_state(pctldev->p, PINCTRL_STATE_DEFAULT);
Julien Delacou840a47b2012-12-10 14:47:33 +01001800 if (IS_ERR(pctldev->hog_default)) {
John Crispinad6e1102012-04-26 16:47:11 +02001801 dev_dbg(dev, "failed to lookup the default state\n");
1802 } else {
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001803 if (pinctrl_select_state(pctldev->p,
Julien Delacou840a47b2012-12-10 14:47:33 +01001804 pctldev->hog_default))
John Crispinad6e1102012-04-26 16:47:11 +02001805 dev_err(dev,
1806 "failed to select default state\n");
John Crispinad6e1102012-04-26 16:47:11 +02001807 }
Julien Delacou840a47b2012-12-10 14:47:33 +01001808
1809 pctldev->hog_sleep =
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001810 pinctrl_lookup_state(pctldev->p,
Julien Delacou840a47b2012-12-10 14:47:33 +01001811 PINCTRL_STATE_SLEEP);
1812 if (IS_ERR(pctldev->hog_sleep))
1813 dev_dbg(dev, "failed to lookup the sleep state\n");
Stephen Warren6e5e9592012-03-02 13:05:47 -07001814 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001815
Stephen Warren2304b472012-02-22 14:26:01 -07001816 pinctrl_init_device_debugfs(pctldev);
1817
Linus Walleij2744e8a2011-05-02 20:50:54 +02001818 return pctldev;
1819
Stephen Warren51cd24e2011-12-09 16:59:05 -07001820out_err:
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001821 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001822 kfree(pctldev);
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001823 return ERR_PTR(ret);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001824}
1825EXPORT_SYMBOL_GPL(pinctrl_register);
1826
1827/**
1828 * pinctrl_unregister() - unregister pinmux
1829 * @pctldev: pin controller to unregister
1830 *
1831 * Called by pinmux drivers to unregister a pinmux.
1832 */
1833void pinctrl_unregister(struct pinctrl_dev *pctldev)
1834{
Dong Aisheng5d589b02012-05-23 21:22:40 +08001835 struct pinctrl_gpio_range *range, *n;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001836 if (pctldev == NULL)
1837 return;
1838
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001839 mutex_lock(&pctldev->mutex);
Tony Lindgren02157162012-01-20 08:17:22 -08001840 pinctrl_remove_device_debugfs(pctldev);
Jim Lindb93fac2015-01-08 20:25:05 +08001841 mutex_unlock(&pctldev->mutex);
Stephen Warren57b676f2012-03-02 13:05:44 -07001842
Stephen Warren6e5e9592012-03-02 13:05:47 -07001843 if (!IS_ERR(pctldev->p))
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001844 pinctrl_put(pctldev->p);
Stephen Warren57b676f2012-03-02 13:05:44 -07001845
Jim Lindb93fac2015-01-08 20:25:05 +08001846 mutex_lock(&pinctrldev_list_mutex);
1847 mutex_lock(&pctldev->mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001848 /* TODO: check that no pinmuxes are still active? */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001849 list_del(&pctldev->node);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001850 /* Destroy descriptor tree */
1851 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1852 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08001853 /* remove gpio ranges map */
1854 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
1855 list_del(&range->node);
1856
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001857 mutex_unlock(&pctldev->mutex);
1858 mutex_destroy(&pctldev->mutex);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001859 kfree(pctldev);
Patrice Chotard42fed7b2013-04-11 11:01:27 +02001860 mutex_unlock(&pinctrldev_list_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001861}
1862EXPORT_SYMBOL_GPL(pinctrl_unregister);
1863
1864static int __init pinctrl_init(void)
1865{
1866 pr_info("initialized pinctrl subsystem\n");
1867 pinctrl_init_debugfs();
1868 return 0;
1869}
1870
1871/* init early since many drivers really need to initialized pinmux early */
1872core_initcall(pinctrl_init);