blob: 5b4885c27d125947fb1bb69e32b86afc1a4bc0c2 [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/**
Linus Walleij9afbefb2012-11-20 14:25:07 +0100367 * pinctrl_find_gpio_range_from_pin() - locate the GPIO range for a pin
368 * @pctldev: the pin controller device to look in
369 * @pin: a controller-local number to find the range for
370 */
371struct pinctrl_gpio_range *
372pinctrl_find_gpio_range_from_pin(struct pinctrl_dev *pctldev,
373 unsigned int pin)
374{
375 struct pinctrl_gpio_range *range = NULL;
376
377 /* Loop over the ranges */
378 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
379 /* Check if we're in the valid range */
380 if (pin >= range->pin_base &&
381 pin < range->pin_base + range->npins) {
382 return range;
383 }
384 }
385
386 return NULL;
387}
388EXPORT_SYMBOL_GPL(pinctrl_find_gpio_range_from_pin);
389
390/**
Viresh Kumar7e10ee62012-10-27 15:21:35 +0530391 * pinctrl_remove_gpio_range() - remove a range of GPIOs fro a pin controller
392 * @pctldev: pin controller device to remove the range from
393 * @range: the GPIO range to remove
394 */
395void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
396 struct pinctrl_gpio_range *range)
397{
398 mutex_lock(&pinctrl_mutex);
399 list_del(&range->node);
400 mutex_unlock(&pinctrl_mutex);
401}
402EXPORT_SYMBOL_GPL(pinctrl_remove_gpio_range);
403
404/**
Linus Walleij7afde8b2011-10-19 17:07:16 +0200405 * pinctrl_get_group_selector() - returns the group selector for a group
406 * @pctldev: the pin controller handling the group
407 * @pin_group: the pin group to look up
408 */
409int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
410 const char *pin_group)
411{
412 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +0530413 unsigned ngroups = pctlops->get_groups_count(pctldev);
Linus Walleij7afde8b2011-10-19 17:07:16 +0200414 unsigned group_selector = 0;
415
Viresh Kumard1e90e92012-03-30 11:25:40 +0530416 while (group_selector < ngroups) {
Linus Walleij7afde8b2011-10-19 17:07:16 +0200417 const char *gname = pctlops->get_group_name(pctldev,
418 group_selector);
419 if (!strcmp(gname, pin_group)) {
Stephen Warren51cd24e2011-12-09 16:59:05 -0700420 dev_dbg(pctldev->dev,
Linus Walleij7afde8b2011-10-19 17:07:16 +0200421 "found group selector %u for %s\n",
422 group_selector,
423 pin_group);
424 return group_selector;
425 }
426
427 group_selector++;
428 }
429
Stephen Warren51cd24e2011-12-09 16:59:05 -0700430 dev_err(pctldev->dev, "does not have pin group %s\n",
Linus Walleij7afde8b2011-10-19 17:07:16 +0200431 pin_group);
432
433 return -EINVAL;
434}
435
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100436/**
437 * pinctrl_request_gpio() - request a single pin to be used in as GPIO
438 * @gpio: the GPIO pin number from the GPIO subsystem number space
439 *
440 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
441 * as part of their gpio_request() semantics, platforms and individual drivers
442 * shall *NOT* request GPIO pins to be muxed in.
443 */
444int pinctrl_request_gpio(unsigned gpio)
445{
446 struct pinctrl_dev *pctldev;
447 struct pinctrl_gpio_range *range;
448 int ret;
449 int pin;
450
Stephen Warren57b676f2012-03-02 13:05:44 -0700451 mutex_lock(&pinctrl_mutex);
452
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100453 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700454 if (ret) {
455 mutex_unlock(&pinctrl_mutex);
Dong Aisheng4650b7c2012-04-25 19:38:13 +0800456 return ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700457 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100458
459 /* Convert to the pin controllers number space */
460 pin = gpio - range->base + range->pin_base;
461
Stephen Warren57b676f2012-03-02 13:05:44 -0700462 ret = pinmux_request_gpio(pctldev, range, pin, gpio);
463
464 mutex_unlock(&pinctrl_mutex);
465 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100466}
467EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
468
469/**
470 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
471 * @gpio: the GPIO pin number from the GPIO subsystem number space
472 *
473 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
474 * as part of their gpio_free() semantics, platforms and individual drivers
475 * shall *NOT* request GPIO pins to be muxed out.
476 */
477void pinctrl_free_gpio(unsigned gpio)
478{
479 struct pinctrl_dev *pctldev;
480 struct pinctrl_gpio_range *range;
481 int ret;
482 int pin;
483
Stephen Warren57b676f2012-03-02 13:05:44 -0700484 mutex_lock(&pinctrl_mutex);
485
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100486 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
Stephen Warren57b676f2012-03-02 13:05:44 -0700487 if (ret) {
488 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100489 return;
Stephen Warren57b676f2012-03-02 13:05:44 -0700490 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100491
492 /* Convert to the pin controllers number space */
493 pin = gpio - range->base + range->pin_base;
494
Stephen Warren57b676f2012-03-02 13:05:44 -0700495 pinmux_free_gpio(pctldev, pin, range);
496
497 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100498}
499EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
500
501static int pinctrl_gpio_direction(unsigned gpio, bool input)
502{
503 struct pinctrl_dev *pctldev;
504 struct pinctrl_gpio_range *range;
505 int ret;
506 int pin;
507
508 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
509 if (ret)
510 return ret;
511
512 /* Convert to the pin controllers number space */
513 pin = gpio - range->base + range->pin_base;
514
515 return pinmux_gpio_direction(pctldev, range, pin, input);
516}
517
518/**
519 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
520 * @gpio: the GPIO pin number from the GPIO subsystem number space
521 *
522 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
523 * as part of their gpio_direction_input() semantics, platforms and individual
524 * drivers shall *NOT* touch pin control GPIO calls.
525 */
526int pinctrl_gpio_direction_input(unsigned gpio)
527{
Stephen Warren57b676f2012-03-02 13:05:44 -0700528 int ret;
529 mutex_lock(&pinctrl_mutex);
530 ret = pinctrl_gpio_direction(gpio, true);
531 mutex_unlock(&pinctrl_mutex);
532 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100533}
534EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
535
536/**
537 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
538 * @gpio: the GPIO pin number from the GPIO subsystem number space
539 *
540 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
541 * as part of their gpio_direction_output() semantics, platforms and individual
542 * drivers shall *NOT* touch pin control GPIO calls.
543 */
544int pinctrl_gpio_direction_output(unsigned gpio)
545{
Stephen Warren57b676f2012-03-02 13:05:44 -0700546 int ret;
547 mutex_lock(&pinctrl_mutex);
548 ret = pinctrl_gpio_direction(gpio, false);
549 mutex_unlock(&pinctrl_mutex);
550 return ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100551}
552EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
553
Stephen Warren6e5e9592012-03-02 13:05:47 -0700554static struct pinctrl_state *find_state(struct pinctrl *p,
555 const char *name)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100556{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700557 struct pinctrl_state *state;
558
559 list_for_each_entry(state, &p->states, node)
560 if (!strcmp(state->name, name))
561 return state;
562
563 return NULL;
564}
565
566static struct pinctrl_state *create_state(struct pinctrl *p,
567 const char *name)
568{
569 struct pinctrl_state *state;
570
571 state = kzalloc(sizeof(*state), GFP_KERNEL);
572 if (state == NULL) {
573 dev_err(p->dev,
574 "failed to alloc struct pinctrl_state\n");
575 return ERR_PTR(-ENOMEM);
576 }
577
578 state->name = name;
579 INIT_LIST_HEAD(&state->settings);
580
581 list_add_tail(&state->node, &p->states);
582
583 return state;
584}
585
586static int add_setting(struct pinctrl *p, struct pinctrl_map const *map)
587{
588 struct pinctrl_state *state;
589 struct pinctrl_setting *setting;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700590 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700591
592 state = find_state(p, map->name);
593 if (!state)
594 state = create_state(p, map->name);
595 if (IS_ERR(state))
596 return PTR_ERR(state);
597
Stephen Warren1e2082b2012-03-02 13:05:48 -0700598 if (map->type == PIN_MAP_TYPE_DUMMY_STATE)
599 return 0;
600
Stephen Warren6e5e9592012-03-02 13:05:47 -0700601 setting = kzalloc(sizeof(*setting), GFP_KERNEL);
602 if (setting == NULL) {
603 dev_err(p->dev,
604 "failed to alloc struct pinctrl_setting\n");
605 return -ENOMEM;
606 }
607
Stephen Warren1e2082b2012-03-02 13:05:48 -0700608 setting->type = map->type;
609
Stephen Warren6e5e9592012-03-02 13:05:47 -0700610 setting->pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
611 if (setting->pctldev == NULL) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700612 kfree(setting);
Linus Walleij89216492012-12-11 14:14:32 +0100613 /* Do not defer probing of hogs (circular loop) */
614 if (!strcmp(map->ctrl_dev_name, map->dev_name))
615 return -ENODEV;
Linus Walleijc05127c2012-04-10 10:00:38 +0200616 /*
617 * OK let us guess that the driver is not there yet, and
618 * let's defer obtaining this pinctrl handle to later...
619 */
Linus Walleij89216492012-12-11 14:14:32 +0100620 dev_info(p->dev, "unknown pinctrl device %s in map entry, deferring probe",
621 map->ctrl_dev_name);
Linus Walleijc05127c2012-04-10 10:00:38 +0200622 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700623 }
624
Linus Walleij1a789582012-10-17 20:51:54 +0200625 setting->dev_name = map->dev_name;
626
Stephen Warren1e2082b2012-03-02 13:05:48 -0700627 switch (map->type) {
628 case PIN_MAP_TYPE_MUX_GROUP:
629 ret = pinmux_map_to_setting(map, setting);
630 break;
631 case PIN_MAP_TYPE_CONFIGS_PIN:
632 case PIN_MAP_TYPE_CONFIGS_GROUP:
633 ret = pinconf_map_to_setting(map, setting);
634 break;
635 default:
636 ret = -EINVAL;
637 break;
638 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700639 if (ret < 0) {
640 kfree(setting);
641 return ret;
642 }
643
644 list_add_tail(&setting->node, &state->settings);
645
646 return 0;
647}
648
649static struct pinctrl *find_pinctrl(struct device *dev)
650{
651 struct pinctrl *p;
652
Stephen Warren1e2082b2012-03-02 13:05:48 -0700653 list_for_each_entry(p, &pinctrl_list, node)
Stephen Warren6e5e9592012-03-02 13:05:47 -0700654 if (p->dev == dev)
655 return p;
656
657 return NULL;
658}
659
660static void pinctrl_put_locked(struct pinctrl *p, bool inlist);
661
662static struct pinctrl *create_pinctrl(struct device *dev)
663{
664 struct pinctrl *p;
665 const char *devname;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700666 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100667 int i;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700668 struct pinctrl_map const *map;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700669 int ret;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100670
671 /*
672 * create the state cookie holder struct pinctrl for each
673 * mapping, this is what consumers will get when requesting
674 * a pin control handle with pinctrl_get()
675 */
Stephen Warren02f5b982012-02-22 14:26:00 -0700676 p = kzalloc(sizeof(*p), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700677 if (p == NULL) {
678 dev_err(dev, "failed to alloc struct pinctrl\n");
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100679 return ERR_PTR(-ENOMEM);
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700680 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700681 p->dev = dev;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700682 INIT_LIST_HEAD(&p->states);
Stephen Warren57291ce2012-03-23 10:29:46 -0600683 INIT_LIST_HEAD(&p->dt_maps);
684
685 ret = pinctrl_dt_to_map(p);
686 if (ret < 0) {
687 kfree(p);
688 return ERR_PTR(ret);
689 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700690
691 devname = dev_name(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100692
693 /* Iterate over the pin control maps to locate the right ones */
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700694 for_each_maps(maps_node, i, map) {
Stephen Warren1681f5a2012-02-22 14:25:58 -0700695 /* Map must be for this device */
696 if (strcmp(map->dev_name, devname))
697 continue;
698
Stephen Warren6e5e9592012-03-02 13:05:47 -0700699 ret = add_setting(p, map);
Linus Walleij89216492012-12-11 14:14:32 +0100700 /*
701 * At this point the adding of a setting may:
702 *
703 * - Defer, if the pinctrl device is not yet available
704 * - Fail, if the pinctrl device is not yet available,
705 * AND the setting is a hog. We cannot defer that, since
706 * the hog will kick in immediately after the device
707 * is registered.
708 *
709 * If the error returned was not -EPROBE_DEFER then we
710 * accumulate the errors to see if we end up with
711 * an -EPROBE_DEFER later, as that is the worst case.
712 */
713 if (ret == -EPROBE_DEFER) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700714 pinctrl_put_locked(p, false);
715 return ERR_PTR(ret);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100716 }
717 }
Linus Walleij89216492012-12-11 14:14:32 +0100718 if (ret < 0) {
719 /* If some other error than deferral occured, return here */
720 pinctrl_put_locked(p, false);
721 return ERR_PTR(ret);
722 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100723
Linus Walleijb0666ba2012-12-11 13:12:35 +0100724 /* Add the pinctrl handle to the global list */
Stephen Warren8b9c1392012-02-19 23:45:42 -0700725 list_add_tail(&p->node, &pinctrl_list);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100726
727 return p;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700728}
Stephen Warren7ecdb162012-03-02 13:05:45 -0700729
Stephen Warren6e5e9592012-03-02 13:05:47 -0700730static struct pinctrl *pinctrl_get_locked(struct device *dev)
731{
732 struct pinctrl *p;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700733
Stephen Warren6e5e9592012-03-02 13:05:47 -0700734 if (WARN_ON(!dev))
735 return ERR_PTR(-EINVAL);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700736
Stephen Warren6e5e9592012-03-02 13:05:47 -0700737 p = find_pinctrl(dev);
738 if (p != NULL)
739 return ERR_PTR(-EBUSY);
740
Richard Genoudd599bfb2012-08-10 16:53:49 +0200741 return create_pinctrl(dev);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100742}
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700743
744/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700745 * pinctrl_get() - retrieves the pinctrl handle for a device
746 * @dev: the device to obtain the handle for
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700747 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700748struct pinctrl *pinctrl_get(struct device *dev)
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700749{
750 struct pinctrl *p;
751
Stephen Warren57b676f2012-03-02 13:05:44 -0700752 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700753 p = pinctrl_get_locked(dev);
Stephen Warren57b676f2012-03-02 13:05:44 -0700754 mutex_unlock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700755
756 return p;
757}
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100758EXPORT_SYMBOL_GPL(pinctrl_get);
759
Stephen Warren6e5e9592012-03-02 13:05:47 -0700760static void pinctrl_put_locked(struct pinctrl *p, bool inlist)
Stephen Warren57b676f2012-03-02 13:05:44 -0700761{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700762 struct pinctrl_state *state, *n1;
763 struct pinctrl_setting *setting, *n2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700764
Stephen Warren6e5e9592012-03-02 13:05:47 -0700765 list_for_each_entry_safe(state, n1, &p->states, node) {
766 list_for_each_entry_safe(setting, n2, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700767 switch (setting->type) {
768 case PIN_MAP_TYPE_MUX_GROUP:
769 if (state == p->state)
770 pinmux_disable_setting(setting);
771 pinmux_free_setting(setting);
772 break;
773 case PIN_MAP_TYPE_CONFIGS_PIN:
774 case PIN_MAP_TYPE_CONFIGS_GROUP:
775 pinconf_free_setting(setting);
776 break;
777 default:
778 break;
779 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700780 list_del(&setting->node);
781 kfree(setting);
782 }
783 list_del(&state->node);
784 kfree(state);
Stephen Warren7ecdb162012-03-02 13:05:45 -0700785 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700786
Stephen Warren57291ce2012-03-23 10:29:46 -0600787 pinctrl_dt_free_maps(p);
788
Stephen Warren6e5e9592012-03-02 13:05:47 -0700789 if (inlist)
790 list_del(&p->node);
Stephen Warren57b676f2012-03-02 13:05:44 -0700791 kfree(p);
792}
793
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100794/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700795 * pinctrl_put() - release a previously claimed pinctrl handle
796 * @p: the pinctrl handle to release
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100797 */
798void pinctrl_put(struct pinctrl *p)
799{
Stephen Warren57b676f2012-03-02 13:05:44 -0700800 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700801 pinctrl_put_locked(p, true);
Stephen Warren57b676f2012-03-02 13:05:44 -0700802 mutex_unlock(&pinctrl_mutex);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100803}
804EXPORT_SYMBOL_GPL(pinctrl_put);
805
Stephen Warren6e5e9592012-03-02 13:05:47 -0700806static struct pinctrl_state *pinctrl_lookup_state_locked(struct pinctrl *p,
807 const char *name)
Stephen Warren57b676f2012-03-02 13:05:44 -0700808{
Stephen Warren6e5e9592012-03-02 13:05:47 -0700809 struct pinctrl_state *state;
810
811 state = find_state(p, name);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800812 if (!state) {
813 if (pinctrl_dummy_state) {
814 /* create dummy state */
815 dev_dbg(p->dev, "using pinctrl dummy state (%s)\n",
816 name);
817 state = create_state(p, name);
Richard Genoudd599bfb2012-08-10 16:53:49 +0200818 } else
819 state = ERR_PTR(-ENODEV);
Dong Aisheng5b3aa5f2012-04-26 16:15:50 +0800820 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700821
822 return state;
823}
824
825/**
826 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
827 * @p: the pinctrl handle to retrieve the state from
828 * @name: the state name to retrieve
829 */
830struct pinctrl_state *pinctrl_lookup_state(struct pinctrl *p, const char *name)
831{
832 struct pinctrl_state *s;
833
834 mutex_lock(&pinctrl_mutex);
835 s = pinctrl_lookup_state_locked(p, name);
836 mutex_unlock(&pinctrl_mutex);
837
838 return s;
839}
840EXPORT_SYMBOL_GPL(pinctrl_lookup_state);
841
842static int pinctrl_select_state_locked(struct pinctrl *p,
843 struct pinctrl_state *state)
844{
845 struct pinctrl_setting *setting, *setting2;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700846 int ret;
Stephen Warren57b676f2012-03-02 13:05:44 -0700847
Stephen Warren6e5e9592012-03-02 13:05:47 -0700848 if (p->state == state)
849 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700850
Stephen Warren6e5e9592012-03-02 13:05:47 -0700851 if (p->state) {
852 /*
853 * The set of groups with a mux configuration in the old state
854 * may not be identical to the set of groups with a mux setting
855 * in the new state. While this might be unusual, it's entirely
856 * possible for the "user"-supplied mapping table to be written
857 * that way. For each group that was configured in the old state
858 * but not in the new state, this code puts that group into a
859 * safe/disabled state.
860 */
861 list_for_each_entry(setting, &p->state->settings, node) {
862 bool found = false;
Stephen Warren1e2082b2012-03-02 13:05:48 -0700863 if (setting->type != PIN_MAP_TYPE_MUX_GROUP)
864 continue;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700865 list_for_each_entry(setting2, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700866 if (setting2->type != PIN_MAP_TYPE_MUX_GROUP)
867 continue;
868 if (setting2->data.mux.group ==
869 setting->data.mux.group) {
Stephen Warren6e5e9592012-03-02 13:05:47 -0700870 found = true;
871 break;
872 }
Stephen Warren7ecdb162012-03-02 13:05:45 -0700873 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700874 if (!found)
875 pinmux_disable_setting(setting);
876 }
877 }
878
879 p->state = state;
880
881 /* Apply all the settings for the new state */
882 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700883 switch (setting->type) {
884 case PIN_MAP_TYPE_MUX_GROUP:
885 ret = pinmux_enable_setting(setting);
886 break;
887 case PIN_MAP_TYPE_CONFIGS_PIN:
888 case PIN_MAP_TYPE_CONFIGS_GROUP:
889 ret = pinconf_apply_setting(setting);
890 break;
891 default:
892 ret = -EINVAL;
893 break;
894 }
Stephen Warren6e5e9592012-03-02 13:05:47 -0700895 if (ret < 0) {
896 /* FIXME: Difficult to return to prev state */
897 return ret;
Stephen Warren7ecdb162012-03-02 13:05:45 -0700898 }
Stephen Warren57b676f2012-03-02 13:05:44 -0700899 }
900
Stephen Warren7ecdb162012-03-02 13:05:45 -0700901 return 0;
Stephen Warren57b676f2012-03-02 13:05:44 -0700902}
903
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100904/**
Stephen Warren6e5e9592012-03-02 13:05:47 -0700905 * pinctrl_select() - select/activate/program a pinctrl state to HW
906 * @p: the pinctrl handle for the device that requests configuratio
907 * @state: the state handle to select/activate/program
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100908 */
Stephen Warren6e5e9592012-03-02 13:05:47 -0700909int pinctrl_select_state(struct pinctrl *p, struct pinctrl_state *state)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100910{
Stephen Warren57b676f2012-03-02 13:05:44 -0700911 int ret;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700912
Stephen Warren57b676f2012-03-02 13:05:44 -0700913 mutex_lock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700914 ret = pinctrl_select_state_locked(p, state);
Stephen Warren57b676f2012-03-02 13:05:44 -0700915 mutex_unlock(&pinctrl_mutex);
Stephen Warren6e5e9592012-03-02 13:05:47 -0700916
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100917 return ret;
918}
Stephen Warren6e5e9592012-03-02 13:05:47 -0700919EXPORT_SYMBOL_GPL(pinctrl_select_state);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100920
Stephen Warren6d4ca1f2012-04-16 10:51:00 -0600921static void devm_pinctrl_release(struct device *dev, void *res)
922{
923 pinctrl_put(*(struct pinctrl **)res);
924}
925
926/**
927 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
928 * @dev: the device to obtain the handle for
929 *
930 * If there is a need to explicitly destroy the returned struct pinctrl,
931 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
932 */
933struct pinctrl *devm_pinctrl_get(struct device *dev)
934{
935 struct pinctrl **ptr, *p;
936
937 ptr = devres_alloc(devm_pinctrl_release, sizeof(*ptr), GFP_KERNEL);
938 if (!ptr)
939 return ERR_PTR(-ENOMEM);
940
941 p = pinctrl_get(dev);
942 if (!IS_ERR(p)) {
943 *ptr = p;
944 devres_add(dev, ptr);
945 } else {
946 devres_free(ptr);
947 }
948
949 return p;
950}
951EXPORT_SYMBOL_GPL(devm_pinctrl_get);
952
953static int devm_pinctrl_match(struct device *dev, void *res, void *data)
954{
955 struct pinctrl **p = res;
956
957 return *p == data;
958}
959
960/**
961 * devm_pinctrl_put() - Resource managed pinctrl_put()
962 * @p: the pinctrl handle to release
963 *
964 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
965 * this function will not need to be called and the resource management
966 * code will ensure that the resource is freed.
967 */
968void devm_pinctrl_put(struct pinctrl *p)
969{
970 WARN_ON(devres_destroy(p->dev, devm_pinctrl_release,
971 devm_pinctrl_match, p));
972 pinctrl_put(p);
973}
974EXPORT_SYMBOL_GPL(devm_pinctrl_put);
975
Stephen Warren57291ce2012-03-23 10:29:46 -0600976int pinctrl_register_map(struct pinctrl_map const *maps, unsigned num_maps,
977 bool dup, bool locked)
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100978{
Stephen Warren1e2082b2012-03-02 13:05:48 -0700979 int i, ret;
Stephen Warrenb2b3e662012-02-19 23:45:43 -0700980 struct pinctrl_maps *maps_node;
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100981
982 pr_debug("add %d pinmux maps\n", num_maps);
983
984 /* First sanity check the new mapping */
985 for (i = 0; i < num_maps; i++) {
Stephen Warren1e2082b2012-03-02 13:05:48 -0700986 if (!maps[i].dev_name) {
987 pr_err("failed to register map %s (%d): no device given\n",
988 maps[i].name, i);
989 return -EINVAL;
990 }
991
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100992 if (!maps[i].name) {
993 pr_err("failed to register map %d: no map name given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -0700994 i);
Linus Walleijbefe5bd2012-02-09 19:47:48 +0100995 return -EINVAL;
996 }
997
Stephen Warren1e2082b2012-03-02 13:05:48 -0700998 if (maps[i].type != PIN_MAP_TYPE_DUMMY_STATE &&
999 !maps[i].ctrl_dev_name) {
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001000 pr_err("failed to register map %s (%d): no pin control device given\n",
1001 maps[i].name, i);
1002 return -EINVAL;
1003 }
1004
Stephen Warren1e2082b2012-03-02 13:05:48 -07001005 switch (maps[i].type) {
1006 case PIN_MAP_TYPE_DUMMY_STATE:
1007 break;
1008 case PIN_MAP_TYPE_MUX_GROUP:
1009 ret = pinmux_validate_map(&maps[i], i);
1010 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001011 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001012 break;
1013 case PIN_MAP_TYPE_CONFIGS_PIN:
1014 case PIN_MAP_TYPE_CONFIGS_GROUP:
1015 ret = pinconf_validate_map(&maps[i], i);
1016 if (ret < 0)
Stephen Warrenfde04f42012-04-25 10:32:16 -06001017 return ret;
Stephen Warren1e2082b2012-03-02 13:05:48 -07001018 break;
1019 default:
1020 pr_err("failed to register map %s (%d): invalid type given\n",
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001021 maps[i].name, i);
Stephen Warren1681f5a2012-02-22 14:25:58 -07001022 return -EINVAL;
1023 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001024 }
1025
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001026 maps_node = kzalloc(sizeof(*maps_node), GFP_KERNEL);
1027 if (!maps_node) {
1028 pr_err("failed to alloc struct pinctrl_maps\n");
1029 return -ENOMEM;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001030 }
1031
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001032 maps_node->num_maps = num_maps;
Stephen Warren57291ce2012-03-23 10:29:46 -06001033 if (dup) {
1034 maps_node->maps = kmemdup(maps, sizeof(*maps) * num_maps,
1035 GFP_KERNEL);
1036 if (!maps_node->maps) {
1037 pr_err("failed to duplicate mapping table\n");
1038 kfree(maps_node);
1039 return -ENOMEM;
1040 }
1041 } else {
1042 maps_node->maps = maps;
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001043 }
1044
Stephen Warren57291ce2012-03-23 10:29:46 -06001045 if (!locked)
1046 mutex_lock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001047 list_add_tail(&maps_node->node, &pinctrl_maps);
Stephen Warren57291ce2012-03-23 10:29:46 -06001048 if (!locked)
1049 mutex_unlock(&pinctrl_mutex);
Stephen Warrenb2b3e662012-02-19 23:45:43 -07001050
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001051 return 0;
1052}
1053
Stephen Warren57291ce2012-03-23 10:29:46 -06001054/**
1055 * pinctrl_register_mappings() - register a set of pin controller mappings
1056 * @maps: the pincontrol mappings table to register. This should probably be
1057 * marked with __initdata so it can be discarded after boot. This
1058 * function will perform a shallow copy for the mapping entries.
1059 * @num_maps: the number of maps in the mapping table
1060 */
1061int pinctrl_register_mappings(struct pinctrl_map const *maps,
1062 unsigned num_maps)
1063{
1064 return pinctrl_register_map(maps, num_maps, true, false);
1065}
1066
1067void pinctrl_unregister_map(struct pinctrl_map const *map)
1068{
1069 struct pinctrl_maps *maps_node;
1070
1071 list_for_each_entry(maps_node, &pinctrl_maps, node) {
1072 if (maps_node->maps == map) {
1073 list_del(&maps_node->node);
1074 return;
1075 }
1076 }
1077}
1078
Linus Walleij2744e8a2011-05-02 20:50:54 +02001079#ifdef CONFIG_DEBUG_FS
1080
1081static int pinctrl_pins_show(struct seq_file *s, void *what)
1082{
1083 struct pinctrl_dev *pctldev = s->private;
1084 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001085 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001086
1087 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001088
Stephen Warren57b676f2012-03-02 13:05:44 -07001089 mutex_lock(&pinctrl_mutex);
1090
Chanho Park706e8522012-01-03 16:47:50 +09001091 /* The pin number can be retrived from the pin controller descriptor */
1092 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001093 struct pin_desc *desc;
1094
Chanho Park706e8522012-01-03 16:47:50 +09001095 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001096 desc = pin_desc_get(pctldev, pin);
1097 /* Pin space may be sparse */
1098 if (desc == NULL)
1099 continue;
1100
1101 seq_printf(s, "pin %d (%s) ", pin,
1102 desc->name ? desc->name : "unnamed");
1103
1104 /* Driver-specific info per pin */
1105 if (ops->pin_dbg_show)
1106 ops->pin_dbg_show(pctldev, s, pin);
1107
1108 seq_puts(s, "\n");
1109 }
1110
Stephen Warren57b676f2012-03-02 13:05:44 -07001111 mutex_unlock(&pinctrl_mutex);
1112
Linus Walleij2744e8a2011-05-02 20:50:54 +02001113 return 0;
1114}
1115
1116static int pinctrl_groups_show(struct seq_file *s, void *what)
1117{
1118 struct pinctrl_dev *pctldev = s->private;
1119 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumard1e90e92012-03-30 11:25:40 +05301120 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001121
Viresh Kumard1e90e92012-03-30 11:25:40 +05301122 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001123 mutex_lock(&pinctrl_mutex);
1124
Linus Walleij2744e8a2011-05-02 20:50:54 +02001125 seq_puts(s, "registered pin groups:\n");
Viresh Kumard1e90e92012-03-30 11:25:40 +05301126 while (selector < ngroups) {
Stephen Warrena5818a82011-10-19 16:19:25 -06001127 const unsigned *pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001128 unsigned num_pins;
1129 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001130 const char *pname;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001131 int ret;
1132 int i;
1133
1134 ret = ops->get_group_pins(pctldev, selector,
1135 &pins, &num_pins);
1136 if (ret)
1137 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1138 gname);
1139 else {
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001140 seq_printf(s, "group: %s\n", gname);
1141 for (i = 0; i < num_pins; i++) {
1142 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001143 if (WARN_ON(!pname)) {
1144 mutex_unlock(&pinctrl_mutex);
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001145 return -EINVAL;
Wei Yongjunb4dd7842012-10-22 12:58:09 +08001146 }
Dong Aishengdcb5dbc2012-04-17 15:00:46 +08001147 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1148 }
1149 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001150 }
1151 selector++;
1152 }
1153
Stephen Warren57b676f2012-03-02 13:05:44 -07001154 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001155
1156 return 0;
1157}
1158
1159static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1160{
1161 struct pinctrl_dev *pctldev = s->private;
1162 struct pinctrl_gpio_range *range = NULL;
1163
1164 seq_puts(s, "GPIO ranges handled:\n");
1165
Stephen Warren57b676f2012-03-02 13:05:44 -07001166 mutex_lock(&pinctrl_mutex);
1167
Linus Walleij2744e8a2011-05-02 20:50:54 +02001168 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001169 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Linus Walleij75d66422011-11-16 09:58:51 +01001170 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1171 range->id, range->name,
1172 range->base, (range->base + range->npins - 1),
1173 range->pin_base,
1174 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001175 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001176
1177 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001178
1179 return 0;
1180}
1181
1182static int pinctrl_devices_show(struct seq_file *s, void *what)
1183{
1184 struct pinctrl_dev *pctldev;
1185
Linus Walleijae6b4d82011-10-19 18:14:33 +02001186 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001187
1188 mutex_lock(&pinctrl_mutex);
1189
Linus Walleij2744e8a2011-05-02 20:50:54 +02001190 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1191 seq_printf(s, "%s ", pctldev->desc->name);
1192 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001193 seq_puts(s, "yes ");
1194 else
1195 seq_puts(s, "no ");
1196 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001197 seq_puts(s, "yes");
1198 else
1199 seq_puts(s, "no");
1200 seq_puts(s, "\n");
1201 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001202
1203 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001204
1205 return 0;
1206}
1207
Stephen Warren1e2082b2012-03-02 13:05:48 -07001208static inline const char *map_type(enum pinctrl_map_type type)
1209{
1210 static const char * const names[] = {
1211 "INVALID",
1212 "DUMMY_STATE",
1213 "MUX_GROUP",
1214 "CONFIGS_PIN",
1215 "CONFIGS_GROUP",
1216 };
1217
1218 if (type >= ARRAY_SIZE(names))
1219 return "UNKNOWN";
1220
1221 return names[type];
1222}
1223
Stephen Warren3eedb432012-02-23 17:04:40 -07001224static int pinctrl_maps_show(struct seq_file *s, void *what)
1225{
1226 struct pinctrl_maps *maps_node;
1227 int i;
1228 struct pinctrl_map const *map;
1229
1230 seq_puts(s, "Pinctrl maps:\n");
1231
Stephen Warren57b676f2012-03-02 13:05:44 -07001232 mutex_lock(&pinctrl_mutex);
1233
Stephen Warren3eedb432012-02-23 17:04:40 -07001234 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001235 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1236 map->dev_name, map->name, map_type(map->type),
1237 map->type);
1238
1239 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1240 seq_printf(s, "controlling device %s\n",
1241 map->ctrl_dev_name);
1242
1243 switch (map->type) {
1244 case PIN_MAP_TYPE_MUX_GROUP:
1245 pinmux_show_map(s, map);
1246 break;
1247 case PIN_MAP_TYPE_CONFIGS_PIN:
1248 case PIN_MAP_TYPE_CONFIGS_GROUP:
1249 pinconf_show_map(s, map);
1250 break;
1251 default:
1252 break;
1253 }
1254
1255 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001256 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001257
1258 mutex_unlock(&pinctrl_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001259
1260 return 0;
1261}
1262
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001263static int pinctrl_show(struct seq_file *s, void *what)
1264{
1265 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001266 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001267 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001268
1269 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001270
1271 mutex_lock(&pinctrl_mutex);
1272
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001273 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001274 seq_printf(s, "device: %s current state: %s\n",
1275 dev_name(p->dev),
1276 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001277
Stephen Warren6e5e9592012-03-02 13:05:47 -07001278 list_for_each_entry(state, &p->states, node) {
1279 seq_printf(s, " state: %s\n", state->name);
1280
1281 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001282 struct pinctrl_dev *pctldev = setting->pctldev;
1283
1284 seq_printf(s, " type: %s controller %s ",
1285 map_type(setting->type),
1286 pinctrl_dev_get_name(pctldev));
1287
1288 switch (setting->type) {
1289 case PIN_MAP_TYPE_MUX_GROUP:
1290 pinmux_show_setting(s, setting);
1291 break;
1292 case PIN_MAP_TYPE_CONFIGS_PIN:
1293 case PIN_MAP_TYPE_CONFIGS_GROUP:
1294 pinconf_show_setting(s, setting);
1295 break;
1296 default:
1297 break;
1298 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001299 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001300 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001301 }
1302
Stephen Warren57b676f2012-03-02 13:05:44 -07001303 mutex_unlock(&pinctrl_mutex);
1304
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001305 return 0;
1306}
1307
Linus Walleij2744e8a2011-05-02 20:50:54 +02001308static int pinctrl_pins_open(struct inode *inode, struct file *file)
1309{
1310 return single_open(file, pinctrl_pins_show, inode->i_private);
1311}
1312
1313static int pinctrl_groups_open(struct inode *inode, struct file *file)
1314{
1315 return single_open(file, pinctrl_groups_show, inode->i_private);
1316}
1317
1318static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1319{
1320 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1321}
1322
1323static int pinctrl_devices_open(struct inode *inode, struct file *file)
1324{
1325 return single_open(file, pinctrl_devices_show, NULL);
1326}
1327
Stephen Warren3eedb432012-02-23 17:04:40 -07001328static int pinctrl_maps_open(struct inode *inode, struct file *file)
1329{
1330 return single_open(file, pinctrl_maps_show, NULL);
1331}
1332
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001333static int pinctrl_open(struct inode *inode, struct file *file)
1334{
1335 return single_open(file, pinctrl_show, NULL);
1336}
1337
Linus Walleij2744e8a2011-05-02 20:50:54 +02001338static const struct file_operations pinctrl_pins_ops = {
1339 .open = pinctrl_pins_open,
1340 .read = seq_read,
1341 .llseek = seq_lseek,
1342 .release = single_release,
1343};
1344
1345static const struct file_operations pinctrl_groups_ops = {
1346 .open = pinctrl_groups_open,
1347 .read = seq_read,
1348 .llseek = seq_lseek,
1349 .release = single_release,
1350};
1351
1352static const struct file_operations pinctrl_gpioranges_ops = {
1353 .open = pinctrl_gpioranges_open,
1354 .read = seq_read,
1355 .llseek = seq_lseek,
1356 .release = single_release,
1357};
1358
1359static const struct file_operations pinctrl_devices_ops = {
1360 .open = pinctrl_devices_open,
1361 .read = seq_read,
1362 .llseek = seq_lseek,
1363 .release = single_release,
1364};
1365
Stephen Warren3eedb432012-02-23 17:04:40 -07001366static const struct file_operations pinctrl_maps_ops = {
1367 .open = pinctrl_maps_open,
1368 .read = seq_read,
1369 .llseek = seq_lseek,
1370 .release = single_release,
1371};
1372
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001373static const struct file_operations pinctrl_ops = {
1374 .open = pinctrl_open,
1375 .read = seq_read,
1376 .llseek = seq_lseek,
1377 .release = single_release,
1378};
1379
Linus Walleij2744e8a2011-05-02 20:50:54 +02001380static struct dentry *debugfs_root;
1381
1382static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1383{
Tony Lindgren02157162012-01-20 08:17:22 -08001384 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001385
Stephen Warren51cd24e2011-12-09 16:59:05 -07001386 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001387 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001388 pctldev->device_root = device_root;
1389
Linus Walleij2744e8a2011-05-02 20:50:54 +02001390 if (IS_ERR(device_root) || !device_root) {
1391 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001392 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001393 return;
1394 }
1395 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1396 device_root, pctldev, &pinctrl_pins_ops);
1397 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1398 device_root, pctldev, &pinctrl_groups_ops);
1399 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1400 device_root, pctldev, &pinctrl_gpioranges_ops);
1401 pinmux_init_device_debugfs(device_root, pctldev);
Linus Walleijae6b4d82011-10-19 18:14:33 +02001402 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001403}
1404
Tony Lindgren02157162012-01-20 08:17:22 -08001405static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1406{
1407 debugfs_remove_recursive(pctldev->device_root);
1408}
1409
Linus Walleij2744e8a2011-05-02 20:50:54 +02001410static void pinctrl_init_debugfs(void)
1411{
1412 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1413 if (IS_ERR(debugfs_root) || !debugfs_root) {
1414 pr_warn("failed to create debugfs directory\n");
1415 debugfs_root = NULL;
1416 return;
1417 }
1418
1419 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1420 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001421 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1422 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001423 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1424 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001425}
1426
1427#else /* CONFIG_DEBUG_FS */
1428
1429static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1430{
1431}
1432
1433static void pinctrl_init_debugfs(void)
1434{
1435}
1436
Tony Lindgren02157162012-01-20 08:17:22 -08001437static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1438{
1439}
1440
Linus Walleij2744e8a2011-05-02 20:50:54 +02001441#endif
1442
Stephen Warrend26bc492012-03-16 14:54:25 -06001443static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1444{
1445 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1446
1447 if (!ops ||
Viresh Kumard1e90e92012-03-30 11:25:40 +05301448 !ops->get_groups_count ||
Stephen Warrend26bc492012-03-16 14:54:25 -06001449 !ops->get_group_name ||
1450 !ops->get_group_pins)
1451 return -EINVAL;
1452
Stephen Warren57291ce2012-03-23 10:29:46 -06001453 if (ops->dt_node_to_map && !ops->dt_free_map)
1454 return -EINVAL;
1455
Stephen Warrend26bc492012-03-16 14:54:25 -06001456 return 0;
1457}
1458
Linus Walleij2744e8a2011-05-02 20:50:54 +02001459/**
1460 * pinctrl_register() - register a pin controller device
1461 * @pctldesc: descriptor for this pin controller
1462 * @dev: parent device for this pin controller
1463 * @driver_data: private pin controller data for this pin controller
1464 */
1465struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1466 struct device *dev, void *driver_data)
1467{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001468 struct pinctrl_dev *pctldev;
1469 int ret;
1470
Devendra Nagada9aecb2012-06-16 23:43:16 +05301471 if (!pctldesc)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001472 return NULL;
Devendra Nagada9aecb2012-06-16 23:43:16 +05301473 if (!pctldesc->name)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001474 return NULL;
1475
Stephen Warren02f5b982012-02-22 14:26:00 -07001476 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001477 if (pctldev == NULL) {
1478 dev_err(dev, "failed to alloc struct pinctrl_dev\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001479 return NULL;
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001480 }
Linus Walleij2744e8a2011-05-02 20:50:54 +02001481
1482 /* Initialize pin control device struct */
1483 pctldev->owner = pctldesc->owner;
1484 pctldev->desc = pctldesc;
1485 pctldev->driver_data = driver_data;
1486 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001487 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001488 pctldev->dev = dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001489
Stephen Warrend26bc492012-03-16 14:54:25 -06001490 /* check core ops for sanity */
Devendra Nagada9aecb2012-06-16 23:43:16 +05301491 if (pinctrl_check_ops(pctldev)) {
John Crispinad6e1102012-04-26 16:47:11 +02001492 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrend26bc492012-03-16 14:54:25 -06001493 goto out_err;
1494 }
1495
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001496 /* If we're implementing pinmuxing, check the ops for sanity */
1497 if (pctldesc->pmxops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301498 if (pinmux_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001499 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001500 }
1501
1502 /* If we're implementing pinconfig, check the ops for sanity */
1503 if (pctldesc->confops) {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301504 if (pinconf_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001505 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001506 }
1507
Linus Walleij2744e8a2011-05-02 20:50:54 +02001508 /* Register all the pins */
John Crispinad6e1102012-04-26 16:47:11 +02001509 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001510 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1511 if (ret) {
John Crispinad6e1102012-04-26 16:47:11 +02001512 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001513 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1514 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001515 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001516 }
1517
Stephen Warren57b676f2012-03-02 13:05:44 -07001518 mutex_lock(&pinctrl_mutex);
1519
Stephen Warren8b9c1392012-02-19 23:45:42 -07001520 list_add_tail(&pctldev->node, &pinctrldev_list);
Stephen Warren57b676f2012-03-02 13:05:44 -07001521
Stephen Warren6e5e9592012-03-02 13:05:47 -07001522 pctldev->p = pinctrl_get_locked(pctldev->dev);
1523 if (!IS_ERR(pctldev->p)) {
1524 struct pinctrl_state *s =
1525 pinctrl_lookup_state_locked(pctldev->p,
1526 PINCTRL_STATE_DEFAULT);
John Crispinad6e1102012-04-26 16:47:11 +02001527 if (IS_ERR(s)) {
1528 dev_dbg(dev, "failed to lookup the default state\n");
1529 } else {
Devendra Nagada9aecb2012-06-16 23:43:16 +05301530 if (pinctrl_select_state_locked(pctldev->p, s))
John Crispinad6e1102012-04-26 16:47:11 +02001531 dev_err(dev,
1532 "failed to select default state\n");
John Crispinad6e1102012-04-26 16:47:11 +02001533 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001534 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001535
1536 mutex_unlock(&pinctrl_mutex);
1537
Stephen Warren2304b472012-02-22 14:26:01 -07001538 pinctrl_init_device_debugfs(pctldev);
1539
Linus Walleij2744e8a2011-05-02 20:50:54 +02001540 return pctldev;
1541
Stephen Warren51cd24e2011-12-09 16:59:05 -07001542out_err:
1543 kfree(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001544 return NULL;
1545}
1546EXPORT_SYMBOL_GPL(pinctrl_register);
1547
1548/**
1549 * pinctrl_unregister() - unregister pinmux
1550 * @pctldev: pin controller to unregister
1551 *
1552 * Called by pinmux drivers to unregister a pinmux.
1553 */
1554void pinctrl_unregister(struct pinctrl_dev *pctldev)
1555{
Dong Aisheng5d589b02012-05-23 21:22:40 +08001556 struct pinctrl_gpio_range *range, *n;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001557 if (pctldev == NULL)
1558 return;
1559
Tony Lindgren02157162012-01-20 08:17:22 -08001560 pinctrl_remove_device_debugfs(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001561
1562 mutex_lock(&pinctrl_mutex);
1563
Stephen Warren6e5e9592012-03-02 13:05:47 -07001564 if (!IS_ERR(pctldev->p))
1565 pinctrl_put_locked(pctldev->p, true);
Stephen Warren57b676f2012-03-02 13:05:44 -07001566
Linus Walleij2744e8a2011-05-02 20:50:54 +02001567 /* TODO: check that no pinmuxes are still active? */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001568 list_del(&pctldev->node);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001569 /* Destroy descriptor tree */
1570 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1571 pctldev->desc->npins);
Dong Aisheng5d589b02012-05-23 21:22:40 +08001572 /* remove gpio ranges map */
1573 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
1574 list_del(&range->node);
1575
Stephen Warren51cd24e2011-12-09 16:59:05 -07001576 kfree(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001577
1578 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001579}
1580EXPORT_SYMBOL_GPL(pinctrl_unregister);
1581
1582static int __init pinctrl_init(void)
1583{
1584 pr_info("initialized pinctrl subsystem\n");
1585 pinctrl_init_debugfs();
1586 return 0;
1587}
1588
1589/* init early since many drivers really need to initialized pinmux early */
1590core_initcall(pinctrl_init);