blob: 33af811a6a3cd19cf32cd84655b80d2bc8fe3321 [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>
Stephen Rothwella5a697c2011-09-30 14:39:04 +100017#include <linux/export.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020018#include <linux/init.h>
19#include <linux/device.h>
20#include <linux/slab.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020021#include <linux/err.h>
22#include <linux/list.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020023#include <linux/sysfs.h>
24#include <linux/debugfs.h>
25#include <linux/seq_file.h>
Stephen Warren6d4ca1f2012-04-16 10:51:00 -060026#include <linux/pinctrl/consumer.h>
Linus Walleij2744e8a2011-05-02 20:50:54 +020027#include <linux/pinctrl/pinctrl.h>
28#include <linux/pinctrl/machine.h>
29#include "core.h"
Stephen Warren57291ce2012-03-23 10:29:46 -060030#include "devicetree.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020031#include "pinmux.h"
Linus Walleijae6b4d82011-10-19 18:14:33 +020032#include "pinconf.h"
Linus Walleij2744e8a2011-05-02 20:50:54 +020033
Linus Walleijbefe5bd2012-02-09 19:47:48 +010034/**
Stephen Warrenb2b3e662012-02-19 23:45:43 -070035 * struct pinctrl_maps - a list item containing part of the mapping table
36 * @node: mapping table list node
37 * @maps: array of mapping table entries
38 * @num_maps: the number of entries in @maps
39 */
40struct pinctrl_maps {
41 struct list_head node;
42 struct pinctrl_map const *maps;
43 unsigned num_maps;
44};
45
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080046static bool pinctrl_dummy_state;
47
Stephen Warren57b676f2012-03-02 13:05:44 -070048/* Mutex taken by all entry points */
49DEFINE_MUTEX(pinctrl_mutex);
50
51/* Global list of pin control devices (struct pinctrl_dev) */
Stephen Warren57291ce2012-03-23 10:29:46 -060052LIST_HEAD(pinctrldev_list);
Linus Walleij2744e8a2011-05-02 20:50:54 +020053
Stephen Warren57b676f2012-03-02 13:05:44 -070054/* List of pin controller handles (struct pinctrl) */
Linus Walleijbefe5bd2012-02-09 19:47:48 +010055static LIST_HEAD(pinctrl_list);
56
Stephen Warren57b676f2012-03-02 13:05:44 -070057/* List of pinctrl maps (struct pinctrl_maps) */
Stephen Warrenb2b3e662012-02-19 23:45:43 -070058static LIST_HEAD(pinctrl_maps);
59
60#define for_each_maps(_maps_node_, _i_, _map_) \
61 list_for_each_entry(_maps_node_, &pinctrl_maps, node) \
62 for (_i_ = 0, _map_ = &_maps_node_->maps[_i_]; \
63 _i_ < _maps_node_->num_maps; \
Guennadi Liakhovetskibc664682012-05-23 00:20:17 +020064 _i_++, _map_ = &_maps_node_->maps[_i_])
Linus Walleijbefe5bd2012-02-09 19:47:48 +010065
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +080066/**
67 * pinctrl_provide_dummies() - indicate if pinctrl provides dummy state support
68 *
69 * Usually this function is called by platforms without pinctrl driver support
70 * but run with some shared drivers using pinctrl APIs.
71 * After calling this function, the pinctrl core will return successfully
72 * with creating a dummy state for the driver to keep going smoothly.
73 */
74void pinctrl_provide_dummies(void)
75{
76 pinctrl_dummy_state = true;
77}
78
Linus Walleij2744e8a2011-05-02 20:50:54 +020079const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev)
80{
81 /* We're not allowed to register devices without name */
82 return pctldev->desc->name;
83}
84EXPORT_SYMBOL_GPL(pinctrl_dev_get_name);
85
86void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev)
87{
88 return pctldev->driver_data;
89}
90EXPORT_SYMBOL_GPL(pinctrl_dev_get_drvdata);
91
92/**
Linus Walleij9dfac4f2012-02-01 18:02:47 +010093 * get_pinctrl_dev_from_devname() - look up pin controller device
94 * @devname: the name of a device instance, as returned by dev_name()
Linus Walleij2744e8a2011-05-02 20:50:54 +020095 *
96 * Looks up a pin control device matching a certain device name or pure device
97 * pointer, the pure device pointer will take precedence.
98 */
Linus Walleij9dfac4f2012-02-01 18:02:47 +010099struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *devname)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200100{
101 struct pinctrl_dev *pctldev = NULL;
102 bool found = false;
103
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100104 if (!devname)
105 return NULL;
106
Linus Walleij2744e8a2011-05-02 20:50:54 +0200107 list_for_each_entry(pctldev, &pinctrldev_list, node) {
Linus Walleij9dfac4f2012-02-01 18:02:47 +0100108 if (!strcmp(dev_name(pctldev->dev), devname)) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200109 /* Matched on device name */
110 found = true;
111 break;
112 }
113 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200114
115 return found ? pctldev : NULL;
116}
117
Linus Walleij2744e8a2011-05-02 20:50:54 +0200118/**
Linus Walleijae6b4d82011-10-19 18:14:33 +0200119 * pin_get_from_name() - look up a pin number from a name
120 * @pctldev: the pin control device to lookup the pin on
121 * @name: the name of the pin to look up
122 */
123int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name)
124{
Chanho Park706e8522012-01-03 16:47:50 +0900125 unsigned i, pin;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200126
Chanho Park706e8522012-01-03 16:47:50 +0900127 /* The pin number can be retrived from the pin controller descriptor */
128 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleijae6b4d82011-10-19 18:14:33 +0200129 struct pin_desc *desc;
130
Chanho Park706e8522012-01-03 16:47:50 +0900131 pin = pctldev->desc->pins[i].number;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200132 desc = pin_desc_get(pctldev, pin);
133 /* Pin space may be sparse */
134 if (desc == NULL)
135 continue;
136 if (desc->name && !strcmp(name, desc->name))
137 return pin;
138 }
139
140 return -EINVAL;
141}
142
143/**
Dong Aishengdcb5dbc2012-04-17 15:00:46 +0800144 * pin_get_name_from_id() - look up a pin name from a pin id
145 * @pctldev: the pin control device to lookup the pin on
146 * @name: the name of the pin to look up
147 */
148const char *pin_get_name(struct pinctrl_dev *pctldev, const unsigned pin)
149{
150 const struct pin_desc *desc;
151
152 desc = pin_desc_get(pctldev, pin);
153 if (desc == NULL) {
154 dev_err(pctldev->dev, "failed to get pin(%d) name\n",
155 pin);
156 return NULL;
157 }
158
159 return desc->name;
160}
161
162/**
Linus Walleij2744e8a2011-05-02 20:50:54 +0200163 * pin_is_valid() - check if pin exists on controller
164 * @pctldev: the pin control device to check the pin on
165 * @pin: pin to check, use the local pin controller index number
166 *
167 * This tells us whether a certain pin exist on a certain pin controller or
168 * not. Pin lists may be sparse, so some pins may not exist.
169 */
170bool pin_is_valid(struct pinctrl_dev *pctldev, int pin)
171{
172 struct pin_desc *pindesc;
173
174 if (pin < 0)
175 return false;
176
Stephen Warren57b676f2012-03-02 13:05:44 -0700177 mutex_lock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200178 pindesc = pin_desc_get(pctldev, pin);
Stephen Warren57b676f2012-03-02 13:05:44 -0700179 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200180
Stephen Warren57b676f2012-03-02 13:05:44 -0700181 return pindesc != NULL;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200182}
183EXPORT_SYMBOL_GPL(pin_is_valid);
184
185/* Deletes a range of pin descriptors */
186static void pinctrl_free_pindescs(struct pinctrl_dev *pctldev,
187 const struct pinctrl_pin_desc *pins,
188 unsigned num_pins)
189{
190 int i;
191
Linus Walleij2744e8a2011-05-02 20:50:54 +0200192 for (i = 0; i < num_pins; i++) {
193 struct pin_desc *pindesc;
194
195 pindesc = radix_tree_lookup(&pctldev->pin_desc_tree,
196 pins[i].number);
197 if (pindesc != NULL) {
198 radix_tree_delete(&pctldev->pin_desc_tree,
199 pins[i].number);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100200 if (pindesc->dynamic_name)
201 kfree(pindesc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200202 }
203 kfree(pindesc);
204 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200205}
206
207static int pinctrl_register_one_pin(struct pinctrl_dev *pctldev,
208 unsigned number, const char *name)
209{
210 struct pin_desc *pindesc;
211
212 pindesc = pin_desc_get(pctldev, number);
213 if (pindesc != NULL) {
214 pr_err("pin %d already registered on %s\n", number,
215 pctldev->desc->name);
216 return -EINVAL;
217 }
218
219 pindesc = kzalloc(sizeof(*pindesc), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700220 if (pindesc == NULL) {
221 dev_err(pctldev->dev, "failed to alloc struct pin_desc\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +0200222 return -ENOMEM;
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700223 }
Linus Walleijae6b4d82011-10-19 18:14:33 +0200224
Linus Walleij2744e8a2011-05-02 20:50:54 +0200225 /* Set owner */
226 pindesc->pctldev = pctldev;
227
Stephen Warren9af1e442011-10-19 16:19:27 -0600228 /* Copy basic pin info */
Linus Walleij8dc6ae42012-02-01 18:11:40 +0100229 if (name) {
Linus Walleijca53c5f2011-12-14 20:33:37 +0100230 pindesc->name = name;
231 } else {
232 pindesc->name = kasprintf(GFP_KERNEL, "PIN%u", number);
Sachin Kamateb26cc92012-09-25 12:41:40 +0530233 if (pindesc->name == NULL) {
234 kfree(pindesc);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100235 return -ENOMEM;
Sachin Kamateb26cc92012-09-25 12:41:40 +0530236 }
Linus Walleijca53c5f2011-12-14 20:33:37 +0100237 pindesc->dynamic_name = true;
238 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200239
Linus Walleij2744e8a2011-05-02 20:50:54 +0200240 radix_tree_insert(&pctldev->pin_desc_tree, number, pindesc);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200241 pr_debug("registered pin %d (%s) on %s\n",
Linus Walleijca53c5f2011-12-14 20:33:37 +0100242 number, pindesc->name, pctldev->desc->name);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200243 return 0;
244}
245
246static int pinctrl_register_pins(struct pinctrl_dev *pctldev,
247 struct pinctrl_pin_desc const *pins,
248 unsigned num_descs)
249{
250 unsigned i;
251 int ret = 0;
252
253 for (i = 0; i < num_descs; i++) {
254 ret = pinctrl_register_one_pin(pctldev,
255 pins[i].number, pins[i].name);
256 if (ret)
257 return ret;
258 }
259
260 return 0;
261}
262
263/**
264 * pinctrl_match_gpio_range() - check if a certain GPIO pin is in range
265 * @pctldev: pin controller device to check
266 * @gpio: gpio pin to check taken from the global GPIO pin space
267 *
268 * Tries to match a GPIO pin number to the ranges handled by a certain pin
269 * controller, return the range or NULL
270 */
271static struct pinctrl_gpio_range *
272pinctrl_match_gpio_range(struct pinctrl_dev *pctldev, unsigned gpio)
273{
274 struct pinctrl_gpio_range *range = NULL;
275
276 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200277 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
278 /* Check if we're in the valid range */
279 if (gpio >= range->base &&
280 gpio < range->base + range->npins) {
Linus Walleij2744e8a2011-05-02 20:50:54 +0200281 return range;
282 }
283 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200284
285 return NULL;
286}
287
288/**
289 * pinctrl_get_device_gpio_range() - find device for GPIO range
290 * @gpio: the pin to locate the pin controller for
291 * @outdev: the pin control device if found
292 * @outrange: the GPIO range if found
293 *
294 * Find the pin controller handling a certain GPIO pin from the pinspace of
295 * the GPIO subsystem, return the device and the matching GPIO range. Returns
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800296 * -EPROBE_DEFER if the GPIO range could not be found in any device since it
297 * may still have not been registered.
Linus Walleij2744e8a2011-05-02 20:50:54 +0200298 */
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700299static int pinctrl_get_device_gpio_range(unsigned gpio,
300 struct pinctrl_dev **outdev,
301 struct pinctrl_gpio_range **outrange)
Linus Walleij2744e8a2011-05-02 20:50:54 +0200302{
303 struct pinctrl_dev *pctldev = NULL;
304
305 /* Loop over the pin controllers */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200306 list_for_each_entry(pctldev, &pinctrldev_list, node) {
307 struct pinctrl_gpio_range *range;
308
309 range = pinctrl_match_gpio_range(pctldev, gpio);
310 if (range != NULL) {
311 *outdev = pctldev;
312 *outrange = range;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200313 return 0;
314 }
315 }
Linus Walleij2744e8a2011-05-02 20:50:54 +0200316
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800317 return -EPROBE_DEFER;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200318}
319
320/**
321 * pinctrl_add_gpio_range() - register a GPIO range for a controller
322 * @pctldev: pin controller device to add the range to
323 * @range: the GPIO range to add
324 *
325 * This adds a range of GPIOs to be handled by a certain pin controller. Call
326 * this to register handled ranges after registering your pin controller.
327 */
328void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev,
329 struct pinctrl_gpio_range *range)
330{
Stephen Warren57b676f2012-03-02 13:05:44 -0700331 mutex_lock(&pinctrl_mutex);
Stephen Warren8b9c1392012-02-19 23:45:42 -0700332 list_add_tail(&range->node, &pctldev->gpio_ranges);
Stephen Warren57b676f2012-03-02 13:05:44 -0700333 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200334}
Stephen Warren4ecce45d2012-02-19 23:45:47 -0700335EXPORT_SYMBOL_GPL(pinctrl_add_gpio_range);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200336
Dong Aisheng3e5e00b2012-05-23 21:22:41 +0800337void pinctrl_add_gpio_ranges(struct pinctrl_dev *pctldev,
338 struct pinctrl_gpio_range *ranges,
339 unsigned nranges)
340{
341 int i;
342
343 for (i = 0; i < nranges; i++)
344 pinctrl_add_gpio_range(pctldev, &ranges[i]);
345}
346EXPORT_SYMBOL_GPL(pinctrl_add_gpio_ranges);
347
Linus Walleij192c3692012-11-20 14:03:37 +0100348struct pinctrl_dev *pinctrl_find_and_add_gpio_range(const char *devname,
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530349 struct pinctrl_gpio_range *range)
350{
351 struct pinctrl_dev *pctldev = get_pinctrl_dev_from_devname(devname);
352
Linus Walleijdfa97512012-11-20 14:54:18 +0100353 /*
354 * If we can't find this device, let's assume that is because
355 * it has not probed yet, so the driver trying to register this
356 * range need to defer probing.
357 */
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530358 if (!pctldev)
Linus Walleijdfa97512012-11-20 14:54:18 +0100359 return ERR_PTR(-EPROBE_DEFER);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530360
361 pinctrl_add_gpio_range(pctldev, range);
362 return pctldev;
363}
Linus Walleij192c3692012-11-20 14:03:37 +0100364EXPORT_SYMBOL_GPL(pinctrl_find_and_add_gpio_range);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530365
Linus Walleij2744e8a2011-05-02 20:50:54 +0200366/**
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530367 * pinctrl_remove_gpio_range() - remove a range of GPIOs fro a pin controller
368 * @pctldev: pin controller device to remove the range from
369 * @range: the GPIO range to remove
370 */
371void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
372 struct pinctrl_gpio_range *range)
373{
374 mutex_lock(&pinctrl_mutex);
375 list_del(&range->node);
376 mutex_unlock(&pinctrl_mutex);
377}
378EXPORT_SYMBOL_GPL(pinctrl_remove_gpio_range);
379
380/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200381 * pinctrl_get_group_selector() - returns the group selector for a group
382 * @pctldev: the pin controller handling the group
383 * @pin_group: the pin group to look up
384 */
385int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
386 const char *pin_group)
387{
388 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530389 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200390 unsigned group_selector = 0;
391
Viresh Kumard1e90e92012-03-30 11:25:40 +0530392 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200393 const char *gname = pctlops->get_group_name(pctldev,
394 group_selector);
395 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700396 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200397 "found group selector %u for %s\n",
398 group_selector,
399 pin_group);
400 return group_selector;
401 }
402
403 group_selector++;
404 }
405
Stephen Warren51cd24e2011-12-09 16:59:05 -0700406 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200407 pin_group);
408
409 return -EINVAL;
410}
411
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100412/**
413 * pinctrl_request_gpio() - request a single pin to be used in as GPIO
414 * @gpio: the GPIO pin number from the GPIO subsystem number space
415 *
416 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
417 * as part of their gpio_request() semantics, platforms and individual drivers
418 * shall *NOT* request GPIO pins to be muxed in.
419 */
420int pinctrl_request_gpio(unsigned gpio)
421{
422 struct pinctrl_dev *pctldev;
423 struct pinctrl_gpio_range *range;
424 int ret;
425 int pin;
426
Stephen Warren57b676f2012-03-02 13:05:44 -0700427 mutex_lock(&pinctrl_mutex);
428
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100429 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700430 if (ret) {
431 mutex_unlock(&pinctrl_mutex);
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800432 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700433 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100434
435 /* Convert to the pin controllers number space */
436 pin = gpio - range->base + range->pin_base;
437
Stephen Warren57b676f2012-03-02 13:05:44 -0700438 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
439
440 mutex_unlock(&pinctrl_mutex);
441 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100442}
443EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
444
445/**
446 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
447 * @gpio: the GPIO pin number from the GPIO subsystem number space
448 *
449 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
450 * as part of their gpio_free() semantics, platforms and individual drivers
451 * shall *NOT* request GPIO pins to be muxed out.
452 */
453void pinctrl_free_gpio(unsigned gpio)
454{
455 struct pinctrl_dev *pctldev;
456 struct pinctrl_gpio_range *range;
457 int ret;
458 int pin;
459
Stephen Warren57b676f2012-03-02 13:05:44 -0700460 mutex_lock(&pinctrl_mutex);
461
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100462 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700463 if (ret) {
464 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100465 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700466 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100467
468 /* Convert to the pin controllers number space */
469 pin = gpio - range->base + range->pin_base;
470
Stephen Warren57b676f2012-03-02 13:05:44 -0700471 pinmux_free_gpio(pctldev, pin, range);
472
473 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100474}
475EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
476
477static int pinctrl_gpio_direction(unsigned gpio, bool input)
478{
479 struct pinctrl_dev *pctldev;
480 struct pinctrl_gpio_range *range;
481 int ret;
482 int pin;
483
484 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
485 if (ret)
486 return ret;
487
488 /* Convert to the pin controllers number space */
489 pin = gpio - range->base + range->pin_base;
490
491 return pinmux_gpio_direction(pctldev, range, pin, input);
492}
493
494/**
495 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
496 * @gpio: the GPIO pin number from the GPIO subsystem number space
497 *
498 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
499 * as part of their gpio_direction_input() semantics, platforms and individual
500 * drivers shall *NOT* touch pin control GPIO calls.
501 */
502int pinctrl_gpio_direction_input(unsigned gpio)
503{
Stephen Warren57b676f2012-03-02 13:05:44 -0700504 int ret;
505 mutex_lock(&pinctrl_mutex);
506 ret = pinctrl_gpio_direction(gpio, true);
507 mutex_unlock(&pinctrl_mutex);
508 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100509}
510EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
511
512/**
513 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
514 * @gpio: the GPIO pin number from the GPIO subsystem number space
515 *
516 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
517 * as part of their gpio_direction_output() semantics, platforms and individual
518 * drivers shall *NOT* touch pin control GPIO calls.
519 */
520int pinctrl_gpio_direction_output(unsigned gpio)
521{
Stephen Warren57b676f2012-03-02 13:05:44 -0700522 int ret;
523 mutex_lock(&pinctrl_mutex);
524 ret = pinctrl_gpio_direction(gpio, false);
525 mutex_unlock(&pinctrl_mutex);
526 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100527}
528EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
529
Stephen Warren6e5e9592012-03-02 13:05:47 -0700530static struct pinctrl_state *find_state(struct pinctrl *p,
531 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100532{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700533 struct pinctrl_state *state;
534
535 list_for_each_entry(state, &p->states, node)
536 if (!strcmp(state->name, name))
537 return state;
538
539 return NULL;
540}
541
542static struct pinctrl_state *create_state(struct pinctrl *p,
543 const char *name)
544{
545 struct pinctrl_state *state;
546
547 state = kzalloc(sizeof(*state), GFP_KERNEL);
548 if (state == NULL) {
549 dev_err(p->dev,
550 "failed to alloc struct pinctrl_state\n");
551 return ERR_PTR(-ENOMEM);
552 }
553
554 state->name = name;
555 INIT_LIST_HEAD(&state->settings);
556
557 list_add_tail(&state->node, &p->states);
558
559 return state;
560}
561
562static int add_setting(struct pinctrl *p, struct pinctrl_map const *map)
563{
564 struct pinctrl_state *state;
565 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700566 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700567
568 state = find_state(p, map->name);
569 if (!state)
570 state = create_state(p, map->name);
571 if (IS_ERR(state))
572 return PTR_ERR(state);
573
Stephen Warren1e2082b2012-03-02 13:05:48 -0700574 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
575 return 0;
576
Stephen Warren6e5e9592012-03-02 13:05:47 -0700577 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
578 if (setting == NULL) {
579 dev_err(p->dev,
580 "failed to alloc struct pinctrl_setting\n");
581 return -ENOMEM;
582 }
583
Stephen Warren1e2082b2012-03-02 13:05:48 -0700584 setting->type = map->type;
585
Stephen Warren6e5e9592012-03-02 13:05:47 -0700586 setting->pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
587 if (setting->pctldev == NULL) {
Linus Walleijc05127c2012-04-10 10:00:38 +0200588 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
Stephen Warren6e5e9592012-03-02 13:05:47 -0700589 map->ctrl_dev_name);
590 kfree(setting);
Linus Walleijc05127c2012-04-10 10:00:38 +0200591 /*
592 * OK let us guess that the driver is not there yet, and
593 * let's defer obtaining this pinctrl handle to later...
594 */
595 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700596 }
597
Linus Walleij1a789582012-10-17 20:51:54 +0200598 setting->dev_name = map->dev_name;
599
Stephen Warren1e2082b2012-03-02 13:05:48 -0700600 switch (map->type) {
601 case PIN_MAP_TYPE_MUX_GROUP:
602 ret = pinmux_map_to_setting(map, setting);
603 break;
604 case PIN_MAP_TYPE_CONFIGS_PIN:
605 case PIN_MAP_TYPE_CONFIGS_GROUP:
606 ret = pinconf_map_to_setting(map, setting);
607 break;
608 default:
609 ret = -EINVAL;
610 break;
611 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700612 if (ret < 0) {
613 kfree(setting);
614 return ret;
615 }
616
617 list_add_tail(&setting->node, &state->settings);
618
619 return 0;
620}
621
622static struct pinctrl *find_pinctrl(struct device *dev)
623{
624 struct pinctrl *p;
625
Stephen Warren1e2082b2012-03-02 13:05:48 -0700626 list_for_each_entry(p, &pinctrl_list, node)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700627 if (p->dev == dev)
628 return p;
629
630 return NULL;
631}
632
633static void pinctrl_put_locked(struct pinctrl *p, bool inlist);
634
635static struct pinctrl *create_pinctrl(struct device *dev)
636{
637 struct pinctrl *p;
638 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700639 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100640 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700641 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700642 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100643
644 /*
645 * create the state cookie holder struct pinctrl for each
646 * mapping, this is what consumers will get when requesting
647 * a pin control handle with pinctrl_get()
648 */
Stephen Warren02f5b982012-02-22 14:26:00 -0700649 p = kzalloc(sizeof(*p), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700650 if (p == NULL) {
651 dev_err(dev, "failed to alloc struct pinctrl\n");
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100652 return ERR_PTR(-ENOMEM);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700653 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700654 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700655 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -0600656 INIT_LIST_HEAD(&p->dt_maps);
657
658 ret = pinctrl_dt_to_map(p);
659 if (ret < 0) {
660 kfree(p);
661 return ERR_PTR(ret);
662 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700663
664 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100665
666 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700667 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -0700668 /* Map must be for this device */
669 if (strcmp(map->dev_name, devname))
670 continue;
671
Stephen Warren6e5e9592012-03-02 13:05:47 -0700672 ret = add_setting(p, map);
673 if (ret < 0) {
674 pinctrl_put_locked(p, false);
675 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100676 }
677 }
678
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100679 /* Add the pinmux to the global list */
Stephen Warren8b9c1392012-02-19 23:45:42 -0700680 list_add_tail(&p->node, &pinctrl_list);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100681
682 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700683}
Stephen Warren7ecdb162012-03-02 13:05:45 -0700684
Stephen Warren6e5e9592012-03-02 13:05:47 -0700685static struct pinctrl *pinctrl_get_locked(struct device *dev)
686{
687 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700688
Stephen Warren6e5e9592012-03-02 13:05:47 -0700689 if (WARN_ON(!dev))
690 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700691
Stephen Warren6e5e9592012-03-02 13:05:47 -0700692 p = find_pinctrl(dev);
693 if (p != NULL)
694 return ERR_PTR(-EBUSY);
695
Richard Genoudd599bfb2012-08-10 16:53:49 +0200696 return create_pinctrl(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100697}
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700698
699/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700700 * pinctrl_get() - retrieves the pinctrl handle for a device
701 * @dev: the device to obtain the handle for
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700702 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700703struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700704{
705 struct pinctrl *p;
706
Stephen Warren57b676f2012-03-02 13:05:44 -0700707 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700708 p = pinctrl_get_locked(dev);
Stephen Warren57b676f2012-03-02 13:05:44 -0700709 mutex_unlock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700710
711 return p;
712}
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100713EXPORT_SYMBOL_GPL(pinctrl_get);
714
Stephen Warren6e5e9592012-03-02 13:05:47 -0700715static void pinctrl_put_locked(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -0700716{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700717 struct pinctrl_state *state, *n1;
718 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700719
Stephen Warren6e5e9592012-03-02 13:05:47 -0700720 list_for_each_entry_safe(state, n1, &p->states, node) {
721 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700722 switch (setting->type) {
723 case PIN_MAP_TYPE_MUX_GROUP:
724 if (state == p->state)
725 pinmux_disable_setting(setting);
726 pinmux_free_setting(setting);
727 break;
728 case PIN_MAP_TYPE_CONFIGS_PIN:
729 case PIN_MAP_TYPE_CONFIGS_GROUP:
730 pinconf_free_setting(setting);
731 break;
732 default:
733 break;
734 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700735 list_del(&setting->node);
736 kfree(setting);
737 }
738 list_del(&state->node);
739 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700740 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700741
Stephen Warren57291ce2012-03-23 10:29:46 -0600742 pinctrl_dt_free_maps(p);
743
Stephen Warren6e5e9592012-03-02 13:05:47 -0700744 if (inlist)
745 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -0700746 kfree(p);
747}
748
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100749/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700750 * pinctrl_put() - release a previously claimed pinctrl handle
751 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100752 */
753void pinctrl_put(struct pinctrl *p)
754{
Stephen Warren57b676f2012-03-02 13:05:44 -0700755 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700756 pinctrl_put_locked(p, true);
Stephen Warren57b676f2012-03-02 13:05:44 -0700757 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100758}
759EXPORT_SYMBOL_GPL(pinctrl_put);
760
Stephen Warren6e5e9592012-03-02 13:05:47 -0700761static struct pinctrl_state *pinctrl_lookup_state_locked(struct pinctrl *p,
762 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -0700763{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700764 struct pinctrl_state *state;
765
766 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800767 if (!state) {
768 if (pinctrl_dummy_state) {
769 /* create dummy state */
770 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
771 name);
772 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +0200773 } else
774 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800775 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700776
777 return state;
778}
779
780/**
781 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
782 * @p: the pinctrl handle to retrieve the state from
783 * @name: the state name to retrieve
784 */
785struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p, const char *name)
786{
787 struct pinctrl_state *s;
788
789 mutex_lock(&pinctrl_mutex);
790 s = pinctrl_lookup_state_locked(p, name);
791 mutex_unlock(&pinctrl_mutex);
792
793 return s;
794}
795EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
796
797static int pinctrl_select_state_locked(struct pinctrl *p,
798 struct pinctrl_state *state)
799{
800 struct pinctrl_setting *setting, *setting2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700801 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700802
Stephen Warren6e5e9592012-03-02 13:05:47 -0700803 if (p->state == state)
804 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700805
Stephen Warren6e5e9592012-03-02 13:05:47 -0700806 if (p->state) {
807 /*
808 * The set of groups with a mux configuration in the old state
809 * may not be identical to the set of groups with a mux setting
810 * in the new state. While this might be unusual, it's entirely
811 * possible for the "user"-supplied mapping table to be written
812 * that way. For each group that was configured in the old state
813 * but not in the new state, this code puts that group into a
814 * safe/disabled state.
815 */
816 list_for_each_entry(setting, &p->state->settings, node) {
817 bool found = false;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700818 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
819 continue;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700820 list_for_each_entry(setting2, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700821 if (setting2->type != PIN_MAP_TYPE_MUX_GROUP)
822 continue;
823 if (setting2->data.mux.group ==
824 setting->data.mux.group) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700825 found = true;
826 break;
827 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700828 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700829 if (!found)
830 pinmux_disable_setting(setting);
831 }
832 }
833
834 p->state = state;
835
836 /* Apply all the settings for the new state */
837 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700838 switch (setting->type) {
839 case PIN_MAP_TYPE_MUX_GROUP:
840 ret = pinmux_enable_setting(setting);
841 break;
842 case PIN_MAP_TYPE_CONFIGS_PIN:
843 case PIN_MAP_TYPE_CONFIGS_GROUP:
844 ret = pinconf_apply_setting(setting);
845 break;
846 default:
847 ret = -EINVAL;
848 break;
849 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700850 if (ret < 0) {
851 /* FIXME: Difficult to return to prev state */
852 return ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700853 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700854 }
855
Stephen Warren7ecdb162012-03-02 13:05:45 -0700856 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700857}
858
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100859/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700860 * pinctrl_select() - select/activate/program a pinctrl state to HW
861 * @p: the pinctrl handle for the device that requests configuratio
862 * @state: the state handle to select/activate/program
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100863 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700864int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100865{
Stephen Warren57b676f2012-03-02 13:05:44 -0700866 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700867
Stephen Warren57b676f2012-03-02 13:05:44 -0700868 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700869 ret = pinctrl_select_state_locked(p, state);
Stephen Warren57b676f2012-03-02 13:05:44 -0700870 mutex_unlock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700871
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100872 return ret;
873}
Stephen Warren6e5e9592012-03-02 13:05:47 -0700874EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100875
Stephen Warren6d4ca1f2012-04-16 10:51:00 -0600876static void devm_pinctrl_release(struct device *dev, void *res)
877{
878 pinctrl_put(*(struct pinctrl **)res);
879}
880
881/**
882 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
883 * @dev: the device to obtain the handle for
884 *
885 * If there is a need to explicitly destroy the returned struct pinctrl,
886 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
887 */
888struct pinctrl *devm_pinctrl_get(struct device *dev)
889{
890 struct pinctrl **ptr, *p;
891
892 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
893 if (!ptr)
894 return ERR_PTR(-ENOMEM);
895
896 p = pinctrl_get(dev);
897 if (!IS_ERR(p)) {
898 *ptr = p;
899 devres_add(dev, ptr);
900 } else {
901 devres_free(ptr);
902 }
903
904 return p;
905}
906EXPORT_SYMBOL_GPL(devm_pinctrl_get);
907
908static int devm_pinctrl_match(struct device *dev, void *res, void *data)
909{
910 struct pinctrl **p = res;
911
912 return *p == data;
913}
914
915/**
916 * devm_pinctrl_put() - Resource managed pinctrl_put()
917 * @p: the pinctrl handle to release
918 *
919 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
920 * this function will not need to be called and the resource management
921 * code will ensure that the resource is freed.
922 */
923void devm_pinctrl_put(struct pinctrl *p)
924{
925 WARN_ON(devres_destroy(p->dev, devm_pinctrl_release,
926 devm_pinctrl_match, p));
927 pinctrl_put(p);
928}
929EXPORT_SYMBOL_GPL(devm_pinctrl_put);
930
Stephen Warren57291ce2012-03-23 10:29:46 -0600931int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
932 bool dup, bool locked)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100933{
Stephen Warren1e2082b2012-03-02 13:05:48 -0700934 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700935 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100936
937 pr_debug("add %d pinmux maps\n", num_maps);
938
939 /* First sanity check the new mapping */
940 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700941 if (!maps[i].dev_name) {
942 pr_err("failed to register map %s (%d): no device given\n",
943 maps[i].name, i);
944 return -EINVAL;
945 }
946
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100947 if (!maps[i].name) {
948 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700949 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100950 return -EINVAL;
951 }
952
Stephen Warren1e2082b2012-03-02 13:05:48 -0700953 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
954 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100955 pr_err("failed to register map %s (%d): no pin control device given\n",
956 maps[i].name, i);
957 return -EINVAL;
958 }
959
Stephen Warren1e2082b2012-03-02 13:05:48 -0700960 switch (maps[i].type) {
961 case PIN_MAP_TYPE_DUMMY_STATE:
962 break;
963 case PIN_MAP_TYPE_MUX_GROUP:
964 ret = pinmux_validate_map(&maps[i], i);
965 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -0600966 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700967 break;
968 case PIN_MAP_TYPE_CONFIGS_PIN:
969 case PIN_MAP_TYPE_CONFIGS_GROUP:
970 ret = pinconf_validate_map(&maps[i], i);
971 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -0600972 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700973 break;
974 default:
975 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700976 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -0700977 return -EINVAL;
978 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100979 }
980
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700981 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
982 if (!maps_node) {
983 pr_err("failed to alloc struct pinctrl_maps\n");
984 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100985 }
986
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700987 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -0600988 if (dup) {
989 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
990 GFP_KERNEL);
991 if (!maps_node->maps) {
992 pr_err("failed to duplicate mapping table\n");
993 kfree(maps_node);
994 return -ENOMEM;
995 }
996 } else {
997 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700998 }
999
Stephen Warren57291ce2012-03-23 10:29:46 -06001000 if (!locked)
1001 mutex_lock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001002 list_add_tail(&maps_node->node, &pinctrl_maps);
Stephen Warren57291ce2012-03-23 10:29:46 -06001003 if (!locked)
1004 mutex_unlock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001005
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001006 return 0;
1007}
1008
Stephen Warren57291ce2012-03-23 10:29:46 -06001009/**
1010 * pinctrl_register_mappings() - register a set of pin controller mappings
1011 * @maps: the pincontrol mappings table to register. This should probably be
1012 * marked with __initdata so it can be discarded after boot. This
1013 * function will perform a shallow copy for the mapping entries.
1014 * @num_maps: the number of maps in the mapping table
1015 */
1016int pinctrl_register_mappings(struct pinctrl_map const *maps,
1017 unsigned num_maps)
1018{
1019 return pinctrl_register_map(maps, num_maps, true, false);
1020}
1021
1022void pinctrl_unregister_map(struct pinctrl_map const *map)
1023{
1024 struct pinctrl_maps *maps_node;
1025
1026 list_for_each_entry(maps_node, &pinctrl_maps, node) {
1027 if (maps_node->maps == map) {
1028 list_del(&maps_node->node);
1029 return;
1030 }
1031 }
1032}
1033
Linus Walleij2744e8a2011-05-02 20:50:54 +02001034#ifdef CONFIG_DEBUG_FS
1035
1036static int pinctrl_pins_show(struct seq_file *s, void *what)
1037{
1038 struct pinctrl_dev *pctldev = s->private;
1039 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001040 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001041
1042 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001043
Stephen Warren57b676f2012-03-02 13:05:44 -07001044 mutex_lock(&pinctrl_mutex);
1045
Chanho Park706e8522012-01-03 16:47:50 +09001046 /* The pin number can be retrived from the pin controller descriptor */
1047 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001048 struct pin_desc *desc;
1049
Chanho Park706e8522012-01-03 16:47:50 +09001050 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001051 desc = pin_desc_get(pctldev, pin);
1052 /* Pin space may be sparse */
1053 if (desc == NULL)
1054 continue;
1055
1056 seq_printf(s, "pin %d (%s) ", pin,
1057 desc->name ? desc->name : "unnamed");
1058
1059 /* Driver-specific info per pin */
1060 if (ops->pin_dbg_show)
1061 ops->pin_dbg_show(pctldev, s, pin);
1062
1063 seq_puts(s, "\n");
1064 }
1065
Stephen Warren57b676f2012-03-02 13:05:44 -07001066 mutex_unlock(&pinctrl_mutex);
1067
Linus Walleij2744e8a2011-05-02 20:50:54 +02001068 return 0;
1069}
1070
1071static int pinctrl_groups_show(struct seq_file *s, void *what)
1072{
1073 struct pinctrl_dev *pctldev = s->private;
1074 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301075 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001076
Viresh Kumard1e90e92012-03-30 11:25:40 +05301077 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001078 mutex_lock(&pinctrl_mutex);
1079
Linus Walleij2744e8a2011-05-02 20:50:54 +02001080 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301081 while (selector < ngroups) {
Stephen Warrena5818a82011-10-19 16:19:25 -06001082 const unsigned *pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001083 unsigned num_pins;
1084 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001085 const char *pname;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001086 int ret;
1087 int i;
1088
1089 ret = ops->get_group_pins(pctldev, selector,
1090 &pins, &num_pins);
1091 if (ret)
1092 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1093 gname);
1094 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001095 seq_printf(s, "group: %s\n", gname);
1096 for (i = 0; i < num_pins; i++) {
1097 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001098 if (WARN_ON(!pname)) {
1099 mutex_unlock(&pinctrl_mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001100 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001101 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001102 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1103 }
1104 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001105 }
1106 selector++;
1107 }
1108
Stephen Warren57b676f2012-03-02 13:05:44 -07001109 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001110
1111 return 0;
1112}
1113
1114static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1115{
1116 struct pinctrl_dev *pctldev = s->private;
1117 struct pinctrl_gpio_range *range = NULL;
1118
1119 seq_puts(s, "GPIO ranges handled:\n");
1120
Stephen Warren57b676f2012-03-02 13:05:44 -07001121 mutex_lock(&pinctrl_mutex);
1122
Linus Walleij2744e8a2011-05-02 20:50:54 +02001123 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001124 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Linus Walleij75d66422011-11-16 09:58:51 +01001125 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1126 range->id, range->name,
1127 range->base, (range->base + range->npins - 1),
1128 range->pin_base,
1129 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001130 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001131
1132 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001133
1134 return 0;
1135}
1136
1137static int pinctrl_devices_show(struct seq_file *s, void *what)
1138{
1139 struct pinctrl_dev *pctldev;
1140
Linus Walleijae6b4d82011-10-19 18:14:33 +02001141 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001142
1143 mutex_lock(&pinctrl_mutex);
1144
Linus Walleij2744e8a2011-05-02 20:50:54 +02001145 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1146 seq_printf(s, "%s ", pctldev->desc->name);
1147 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001148 seq_puts(s, "yes ");
1149 else
1150 seq_puts(s, "no ");
1151 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001152 seq_puts(s, "yes");
1153 else
1154 seq_puts(s, "no");
1155 seq_puts(s, "\n");
1156 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001157
1158 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001159
1160 return 0;
1161}
1162
Stephen Warren1e2082b2012-03-02 13:05:48 -07001163static inline const char *map_type(enum pinctrl_map_type type)
1164{
1165 static const char * const names[] = {
1166 "INVALID",
1167 "DUMMY_STATE",
1168 "MUX_GROUP",
1169 "CONFIGS_PIN",
1170 "CONFIGS_GROUP",
1171 };
1172
1173 if (type >= ARRAY_SIZE(names))
1174 return "UNKNOWN";
1175
1176 return names[type];
1177}
1178
Stephen Warren3eedb432012-02-23 17:04:40 -07001179static int pinctrl_maps_show(struct seq_file *s, void *what)
1180{
1181 struct pinctrl_maps *maps_node;
1182 int i;
1183 struct pinctrl_map const *map;
1184
1185 seq_puts(s, "Pinctrl maps:\n");
1186
Stephen Warren57b676f2012-03-02 13:05:44 -07001187 mutex_lock(&pinctrl_mutex);
1188
Stephen Warren3eedb432012-02-23 17:04:40 -07001189 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001190 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1191 map->dev_name, map->name, map_type(map->type),
1192 map->type);
1193
1194 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1195 seq_printf(s, "controlling device %s\n",
1196 map->ctrl_dev_name);
1197
1198 switch (map->type) {
1199 case PIN_MAP_TYPE_MUX_GROUP:
1200 pinmux_show_map(s, map);
1201 break;
1202 case PIN_MAP_TYPE_CONFIGS_PIN:
1203 case PIN_MAP_TYPE_CONFIGS_GROUP:
1204 pinconf_show_map(s, map);
1205 break;
1206 default:
1207 break;
1208 }
1209
1210 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001211 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001212
1213 mutex_unlock(&pinctrl_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001214
1215 return 0;
1216}
1217
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001218static int pinctrl_show(struct seq_file *s, void *what)
1219{
1220 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001221 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001222 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001223
1224 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001225
1226 mutex_lock(&pinctrl_mutex);
1227
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001228 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001229 seq_printf(s, "device: %s current state: %s\n",
1230 dev_name(p->dev),
1231 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001232
Stephen Warren6e5e9592012-03-02 13:05:47 -07001233 list_for_each_entry(state, &p->states, node) {
1234 seq_printf(s, " state: %s\n", state->name);
1235
1236 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001237 struct pinctrl_dev *pctldev = setting->pctldev;
1238
1239 seq_printf(s, " type: %s controller %s ",
1240 map_type(setting->type),
1241 pinctrl_dev_get_name(pctldev));
1242
1243 switch (setting->type) {
1244 case PIN_MAP_TYPE_MUX_GROUP:
1245 pinmux_show_setting(s, setting);
1246 break;
1247 case PIN_MAP_TYPE_CONFIGS_PIN:
1248 case PIN_MAP_TYPE_CONFIGS_GROUP:
1249 pinconf_show_setting(s, setting);
1250 break;
1251 default:
1252 break;
1253 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001254 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001255 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001256 }
1257
Stephen Warren57b676f2012-03-02 13:05:44 -07001258 mutex_unlock(&pinctrl_mutex);
1259
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001260 return 0;
1261}
1262
Linus Walleij2744e8a2011-05-02 20:50:54 +02001263static int pinctrl_pins_open(struct inode *inode, struct file *file)
1264{
1265 return single_open(file, pinctrl_pins_show, inode->i_private);
1266}
1267
1268static int pinctrl_groups_open(struct inode *inode, struct file *file)
1269{
1270 return single_open(file, pinctrl_groups_show, inode->i_private);
1271}
1272
1273static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1274{
1275 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1276}
1277
1278static int pinctrl_devices_open(struct inode *inode, struct file *file)
1279{
1280 return single_open(file, pinctrl_devices_show, NULL);
1281}
1282
Stephen Warren3eedb432012-02-23 17:04:40 -07001283static int pinctrl_maps_open(struct inode *inode, struct file *file)
1284{
1285 return single_open(file, pinctrl_maps_show, NULL);
1286}
1287
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001288static int pinctrl_open(struct inode *inode, struct file *file)
1289{
1290 return single_open(file, pinctrl_show, NULL);
1291}
1292
Linus Walleij2744e8a2011-05-02 20:50:54 +02001293static const struct file_operations pinctrl_pins_ops = {
1294 .open = pinctrl_pins_open,
1295 .read = seq_read,
1296 .llseek = seq_lseek,
1297 .release = single_release,
1298};
1299
1300static const struct file_operations pinctrl_groups_ops = {
1301 .open = pinctrl_groups_open,
1302 .read = seq_read,
1303 .llseek = seq_lseek,
1304 .release = single_release,
1305};
1306
1307static const struct file_operations pinctrl_gpioranges_ops = {
1308 .open = pinctrl_gpioranges_open,
1309 .read = seq_read,
1310 .llseek = seq_lseek,
1311 .release = single_release,
1312};
1313
1314static const struct file_operations pinctrl_devices_ops = {
1315 .open = pinctrl_devices_open,
1316 .read = seq_read,
1317 .llseek = seq_lseek,
1318 .release = single_release,
1319};
1320
Stephen Warren3eedb432012-02-23 17:04:40 -07001321static const struct file_operations pinctrl_maps_ops = {
1322 .open = pinctrl_maps_open,
1323 .read = seq_read,
1324 .llseek = seq_lseek,
1325 .release = single_release,
1326};
1327
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001328static const struct file_operations pinctrl_ops = {
1329 .open = pinctrl_open,
1330 .read = seq_read,
1331 .llseek = seq_lseek,
1332 .release = single_release,
1333};
1334
Linus Walleij2744e8a2011-05-02 20:50:54 +02001335static struct dentry *debugfs_root;
1336
1337static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1338{
Tony Lindgren02157162012-01-20 08:17:22 -08001339 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001340
Stephen Warren51cd24e2011-12-09 16:59:05 -07001341 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001342 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001343 pctldev->device_root = device_root;
1344
Linus Walleij2744e8a2011-05-02 20:50:54 +02001345 if (IS_ERR(device_root) || !device_root) {
1346 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001347 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001348 return;
1349 }
1350 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1351 device_root, pctldev, &pinctrl_pins_ops);
1352 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1353 device_root, pctldev, &pinctrl_groups_ops);
1354 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1355 device_root, pctldev, &pinctrl_gpioranges_ops);
1356 pinmux_init_device_debugfs(device_root, pctldev);
Linus Walleijae6b4d82011-10-19 18:14:33 +02001357 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001358}
1359
Tony Lindgren02157162012-01-20 08:17:22 -08001360static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1361{
1362 debugfs_remove_recursive(pctldev->device_root);
1363}
1364
Linus Walleij2744e8a2011-05-02 20:50:54 +02001365static void pinctrl_init_debugfs(void)
1366{
1367 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1368 if (IS_ERR(debugfs_root) || !debugfs_root) {
1369 pr_warn("failed to create debugfs directory\n");
1370 debugfs_root = NULL;
1371 return;
1372 }
1373
1374 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1375 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001376 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1377 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001378 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1379 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001380}
1381
1382#else /* CONFIG_DEBUG_FS */
1383
1384static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1385{
1386}
1387
1388static void pinctrl_init_debugfs(void)
1389{
1390}
1391
Tony Lindgren02157162012-01-20 08:17:22 -08001392static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1393{
1394}
1395
Linus Walleij2744e8a2011-05-02 20:50:54 +02001396#endif
1397
Stephen Warrend26bc492012-03-16 14:54:25 -06001398static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1399{
1400 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1401
1402 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301403 !ops->get_groups_count ||
Stephen Warrend26bc492012-03-16 14:54:25 -06001404 !ops->get_group_name ||
1405 !ops->get_group_pins)
1406 return -EINVAL;
1407
Stephen Warren57291ce2012-03-23 10:29:46 -06001408 if (ops->dt_node_to_map && !ops->dt_free_map)
1409 return -EINVAL;
1410
Stephen Warrend26bc492012-03-16 14:54:25 -06001411 return 0;
1412}
1413
Linus Walleij2744e8a2011-05-02 20:50:54 +02001414/**
1415 * pinctrl_register() - register a pin controller device
1416 * @pctldesc: descriptor for this pin controller
1417 * @dev: parent device for this pin controller
1418 * @driver_data: private pin controller data for this pin controller
1419 */
1420struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1421 struct device *dev, void *driver_data)
1422{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001423 struct pinctrl_dev *pctldev;
1424 int ret;
1425
Devendra Nagada9aecb2012-06-16 23:43:16 +05301426 if (!pctldesc)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001427 return NULL;
Devendra Nagada9aecb2012-06-16 23:43:16 +05301428 if (!pctldesc->name)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001429 return NULL;
1430
Stephen Warren02f5b982012-02-22 14:26:00 -07001431 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001432 if (pctldev == NULL) {
1433 dev_err(dev, "failed to alloc struct pinctrl_dev\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001434 return NULL;
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001435 }
Linus Walleij2744e8a2011-05-02 20:50:54 +02001436
1437 /* Initialize pin control device struct */
1438 pctldev->owner = pctldesc->owner;
1439 pctldev->desc = pctldesc;
1440 pctldev->driver_data = driver_data;
1441 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001442 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001443 pctldev->dev = dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001444
Stephen Warrend26bc492012-03-16 14:54:25 -06001445 /* check core ops for sanity */
Devendra Nagada9aecb2012-06-16 23:43:16 +05301446 if (pinctrl_check_ops(pctldev)) {
John Crispinad6e1102012-04-26 16:47:11 +02001447 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001448 goto out_err;
1449 }
1450
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001451 /* If we're implementing pinmuxing, check the ops for sanity */
1452 if (pctldesc->pmxops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301453 if (pinmux_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001454 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001455 }
1456
1457 /* If we're implementing pinconfig, check the ops for sanity */
1458 if (pctldesc->confops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301459 if (pinconf_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001460 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001461 }
1462
Linus Walleij2744e8a2011-05-02 20:50:54 +02001463 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02001464 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001465 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1466 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001467 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001468 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1469 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001470 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001471 }
1472
Stephen Warren57b676f2012-03-02 13:05:44 -07001473 mutex_lock(&pinctrl_mutex);
1474
Stephen Warren8b9c1392012-02-19 23:45:42 -07001475 list_add_tail(&pctldev->node, &pinctrldev_list);
Stephen Warren57b676f2012-03-02 13:05:44 -07001476
Stephen Warren6e5e9592012-03-02 13:05:47 -07001477 pctldev->p = pinctrl_get_locked(pctldev->dev);
1478 if (!IS_ERR(pctldev->p)) {
1479 struct pinctrl_state *s =
1480 pinctrl_lookup_state_locked(pctldev->p,
1481 PINCTRL_STATE_DEFAULT);
John Crispinad6e1102012-04-26 16:47:11 +02001482 if (IS_ERR(s)) {
1483 dev_dbg(dev, "failed to lookup the default state\n");
1484 } else {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301485 if (pinctrl_select_state_locked(pctldev->p, s))
John Crispinad6e1102012-04-26 16:47:11 +02001486 dev_err(dev,
1487 "failed to select default state\n");
John Crispinad6e1102012-04-26 16:47:11 +02001488 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001489 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001490
1491 mutex_unlock(&pinctrl_mutex);
1492
Stephen Warren2304b472012-02-22 14:26:01 -07001493 pinctrl_init_device_debugfs(pctldev);
1494
Linus Walleij2744e8a2011-05-02 20:50:54 +02001495 return pctldev;
1496
Stephen Warren51cd24e2011-12-09 16:59:05 -07001497out_err:
1498 kfree(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001499 return NULL;
1500}
1501EXPORT_SYMBOL_GPL(pinctrl_register);
1502
1503/**
1504 * pinctrl_unregister() - unregister pinmux
1505 * @pctldev: pin controller to unregister
1506 *
1507 * Called by pinmux drivers to unregister a pinmux.
1508 */
1509void pinctrl_unregister(struct pinctrl_dev *pctldev)
1510{
Dong Aisheng5d589b02012-05-23 21:22:40 +08001511 struct pinctrl_gpio_range *range, *n;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001512 if (pctldev == NULL)
1513 return;
1514
Tony Lindgren02157162012-01-20 08:17:22 -08001515 pinctrl_remove_device_debugfs(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001516
1517 mutex_lock(&pinctrl_mutex);
1518
Stephen Warren6e5e9592012-03-02 13:05:47 -07001519 if (!IS_ERR(pctldev->p))
1520 pinctrl_put_locked(pctldev->p, true);
Stephen Warren57b676f2012-03-02 13:05:44 -07001521
Linus Walleij2744e8a2011-05-02 20:50:54 +02001522 /* TODO: check that no pinmuxes are still active? */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001523 list_del(&pctldev->node);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001524 /* Destroy descriptor tree */
1525 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1526 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08001527 /* remove gpio ranges map */
1528 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
1529 list_del(&range->node);
1530
Stephen Warren51cd24e2011-12-09 16:59:05 -07001531 kfree(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001532
1533 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001534}
1535EXPORT_SYMBOL_GPL(pinctrl_unregister);
1536
1537static int __init pinctrl_init(void)
1538{
1539 pr_info("initialized pinctrl subsystem\n");
1540 pinctrl_init_debugfs();
1541 return 0;
1542}
1543
1544/* init early since many drivers really need to initialized pinmux early */
1545core_initcall(pinctrl_init);