blob: 3611753725988fa3781b66ac340835bf8d224ed8 [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 Warren4be45fa2012-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 Warrenc221fde2012-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 Aisheng1484b142012-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 Warrenc221fde2012-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 Liakhovetski20adcc72012-05-23 00:20:17 +020064 _i_++, _map_ = &_maps_node_->maps[_i_])
Linus Walleijbefe5bd2012-02-09 19:47:48 +010065
Dong Aisheng1484b142012-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 Aisheng38491d22012-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 Kamat1c2c4bc2012-09-25 12:41:40 +0530233 if (pindesc->name == NULL) {
234 kfree(pindesc);
Linus Walleijca53c5f2011-12-14 20:33:37 +0100235 return -ENOMEM;
Sachin Kamat1c2c4bc2012-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 Aishengd6ae09112012-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 Warren4ecce452012-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 Aishengd6ae09112012-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 Warren4ecce452012-02-19 23:45:47 -0700335EXPORT_SYMBOL_GPL(pinctrl_add_gpio_range);
Linus Walleij2744e8a2011-05-02 20:50:54 +0200336
Dong Aisheng89b725e2012-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 Walleij9577ee82012-11-20 14:03:37 +0100348struct pinctrl_dev *pinctrl_find_and_add_gpio_range(const char *devname,
Shiraz Hashime77d22c2012-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 Walleij4035a6b2012-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 Hashime77d22c2012-10-27 15:21:36 +0530358 if (!pctldev)
Linus Walleij4035a6b2012-11-20 14:54:18 +0100359 return ERR_PTR(-EPROBE_DEFER);
Shiraz Hashime77d22c2012-10-27 15:21:36 +0530360
361 pinctrl_add_gpio_range(pctldev, range);
362 return pctldev;
363}
Linus Walleij9577ee82012-11-20 14:03:37 +0100364EXPORT_SYMBOL_GPL(pinctrl_find_and_add_gpio_range);
Shiraz Hashime77d22c2012-10-27 15:21:36 +0530365
Linus Walleij2744e8a2011-05-02 20:50:54 +0200366/**
Linus Walleij257ad892012-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 Kumar6b74abd2012-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 Kumar203c1b32012-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 Kumar203c1b32012-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 Aishengd6ae09112012-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 Walleij6eacf842012-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 Walleija13f7d32012-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 Walleij6eacf842012-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 Walleija13f7d32012-04-10 10:00:38 +0200622 return -EPROBE_DEFER;
Stephen Warren6e5e9592012-03-02 13:05:47 -0700623 }
624
Linus Walleij696b23a2012-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 Warrenc221fde2012-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 Walleij6eacf842012-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 Walleij6eacf842012-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 Walleij8527f412012-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 Genoudb32fc672012-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 Warrenc221fde2012-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 Aisheng1484b142012-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 Genoudb32fc672012-08-10 16:53:49 +0200818 } else
819 state = ERR_PTR(-ENODEV);
Dong Aisheng1484b142012-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 Warren4be45fa2012-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 Warrenc221fde2012-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 Warren5a0fa5b2012-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 Warren5a0fa5b2012-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 Warrenc221fde2012-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 Warrenc221fde2012-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 Warrenc221fde2012-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 Warrenc221fde2012-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
Julien Delacoub02491e2012-12-10 14:47:33 +01001079/**
1080 * pinctrl_force_sleep() - turn a given controller device into sleep state
1081 * @pctldev: pin controller device
1082 */
1083int pinctrl_force_sleep(struct pinctrl_dev *pctldev)
1084{
1085 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_sleep))
1086 return pinctrl_select_state(pctldev->p, pctldev->hog_sleep);
1087 return 0;
1088}
1089EXPORT_SYMBOL_GPL(pinctrl_force_sleep);
1090
1091/**
1092 * pinctrl_force_default() - turn a given controller device into default state
1093 * @pctldev: pin controller device
1094 */
1095int pinctrl_force_default(struct pinctrl_dev *pctldev)
1096{
1097 if (!IS_ERR(pctldev->p) && !IS_ERR(pctldev->hog_default))
1098 return pinctrl_select_state(pctldev->p, pctldev->hog_default);
1099 return 0;
1100}
1101EXPORT_SYMBOL_GPL(pinctrl_force_default);
1102
Linus Walleij2744e8a2011-05-02 20:50:54 +02001103#ifdef CONFIG_DEBUG_FS
1104
1105static int pinctrl_pins_show(struct seq_file *s, void *what)
1106{
1107 struct pinctrl_dev *pctldev = s->private;
1108 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Chanho Park706e8522012-01-03 16:47:50 +09001109 unsigned i, pin;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001110
1111 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001112
Stephen Warren57b676f2012-03-02 13:05:44 -07001113 mutex_lock(&pinctrl_mutex);
1114
Chanho Park706e8522012-01-03 16:47:50 +09001115 /* The pin number can be retrived from the pin controller descriptor */
1116 for (i = 0; i < pctldev->desc->npins; i++) {
Linus Walleij2744e8a2011-05-02 20:50:54 +02001117 struct pin_desc *desc;
1118
Chanho Park706e8522012-01-03 16:47:50 +09001119 pin = pctldev->desc->pins[i].number;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001120 desc = pin_desc_get(pctldev, pin);
1121 /* Pin space may be sparse */
1122 if (desc == NULL)
1123 continue;
1124
1125 seq_printf(s, "pin %d (%s) ", pin,
1126 desc->name ? desc->name : "unnamed");
1127
1128 /* Driver-specific info per pin */
1129 if (ops->pin_dbg_show)
1130 ops->pin_dbg_show(pctldev, s, pin);
1131
1132 seq_puts(s, "\n");
1133 }
1134
Stephen Warren57b676f2012-03-02 13:05:44 -07001135 mutex_unlock(&pinctrl_mutex);
1136
Linus Walleij2744e8a2011-05-02 20:50:54 +02001137 return 0;
1138}
1139
1140static int pinctrl_groups_show(struct seq_file *s, void *what)
1141{
1142 struct pinctrl_dev *pctldev = s->private;
1143 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
Viresh Kumar203c1b32012-03-30 11:25:40 +05301144 unsigned ngroups, selector = 0;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001145
Viresh Kumar203c1b32012-03-30 11:25:40 +05301146 ngroups = ops->get_groups_count(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001147 mutex_lock(&pinctrl_mutex);
1148
Linus Walleij2744e8a2011-05-02 20:50:54 +02001149 seq_puts(s, "registered pin groups:\n");
Viresh Kumar203c1b32012-03-30 11:25:40 +05301150 while (selector < ngroups) {
Stephen Warrena5818a82011-10-19 16:19:25 -06001151 const unsigned *pins;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001152 unsigned num_pins;
1153 const char *gname = ops->get_group_name(pctldev, selector);
Dong Aisheng38491d22012-04-17 15:00:46 +08001154 const char *pname;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001155 int ret;
1156 int i;
1157
1158 ret = ops->get_group_pins(pctldev, selector,
1159 &pins, &num_pins);
1160 if (ret)
1161 seq_printf(s, "%s [ERROR GETTING PINS]\n",
1162 gname);
1163 else {
Dong Aisheng38491d22012-04-17 15:00:46 +08001164 seq_printf(s, "group: %s\n", gname);
1165 for (i = 0; i < num_pins; i++) {
1166 pname = pin_get_name(pctldev, pins[i]);
Wei Yongjunc76fbb72012-10-22 12:58:09 +08001167 if (WARN_ON(!pname)) {
1168 mutex_unlock(&pinctrl_mutex);
Dong Aisheng38491d22012-04-17 15:00:46 +08001169 return -EINVAL;
Wei Yongjunc76fbb72012-10-22 12:58:09 +08001170 }
Dong Aisheng38491d22012-04-17 15:00:46 +08001171 seq_printf(s, "pin %d (%s)\n", pins[i], pname);
1172 }
1173 seq_puts(s, "\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001174 }
1175 selector++;
1176 }
1177
Stephen Warren57b676f2012-03-02 13:05:44 -07001178 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001179
1180 return 0;
1181}
1182
1183static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
1184{
1185 struct pinctrl_dev *pctldev = s->private;
1186 struct pinctrl_gpio_range *range = NULL;
1187
1188 seq_puts(s, "GPIO ranges handled:\n");
1189
Stephen Warren57b676f2012-03-02 13:05:44 -07001190 mutex_lock(&pinctrl_mutex);
1191
Linus Walleij2744e8a2011-05-02 20:50:54 +02001192 /* Loop over the ranges */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001193 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
Linus Walleij75d66422011-11-16 09:58:51 +01001194 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1195 range->id, range->name,
1196 range->base, (range->base + range->npins - 1),
1197 range->pin_base,
1198 (range->pin_base + range->npins - 1));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001199 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001200
1201 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001202
1203 return 0;
1204}
1205
1206static int pinctrl_devices_show(struct seq_file *s, void *what)
1207{
1208 struct pinctrl_dev *pctldev;
1209
Linus Walleijae6b4d82011-10-19 18:14:33 +02001210 seq_puts(s, "name [pinmux] [pinconf]\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001211
1212 mutex_lock(&pinctrl_mutex);
1213
Linus Walleij2744e8a2011-05-02 20:50:54 +02001214 list_for_each_entry(pctldev, &pinctrldev_list, node) {
1215 seq_printf(s, "%s ", pctldev->desc->name);
1216 if (pctldev->desc->pmxops)
Linus Walleijae6b4d82011-10-19 18:14:33 +02001217 seq_puts(s, "yes ");
1218 else
1219 seq_puts(s, "no ");
1220 if (pctldev->desc->confops)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001221 seq_puts(s, "yes");
1222 else
1223 seq_puts(s, "no");
1224 seq_puts(s, "\n");
1225 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001226
1227 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001228
1229 return 0;
1230}
1231
Stephen Warren1e2082b2012-03-02 13:05:48 -07001232static inline const char *map_type(enum pinctrl_map_type type)
1233{
1234 static const char * const names[] = {
1235 "INVALID",
1236 "DUMMY_STATE",
1237 "MUX_GROUP",
1238 "CONFIGS_PIN",
1239 "CONFIGS_GROUP",
1240 };
1241
1242 if (type >= ARRAY_SIZE(names))
1243 return "UNKNOWN";
1244
1245 return names[type];
1246}
1247
Stephen Warren3eedb432012-02-23 17:04:40 -07001248static int pinctrl_maps_show(struct seq_file *s, void *what)
1249{
1250 struct pinctrl_maps *maps_node;
1251 int i;
1252 struct pinctrl_map const *map;
1253
1254 seq_puts(s, "Pinctrl maps:\n");
1255
Stephen Warren57b676f2012-03-02 13:05:44 -07001256 mutex_lock(&pinctrl_mutex);
1257
Stephen Warren3eedb432012-02-23 17:04:40 -07001258 for_each_maps(maps_node, i, map) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001259 seq_printf(s, "device %s\nstate %s\ntype %s (%d)\n",
1260 map->dev_name, map->name, map_type(map->type),
1261 map->type);
1262
1263 if (map->type != PIN_MAP_TYPE_DUMMY_STATE)
1264 seq_printf(s, "controlling device %s\n",
1265 map->ctrl_dev_name);
1266
1267 switch (map->type) {
1268 case PIN_MAP_TYPE_MUX_GROUP:
1269 pinmux_show_map(s, map);
1270 break;
1271 case PIN_MAP_TYPE_CONFIGS_PIN:
1272 case PIN_MAP_TYPE_CONFIGS_GROUP:
1273 pinconf_show_map(s, map);
1274 break;
1275 default:
1276 break;
1277 }
1278
1279 seq_printf(s, "\n");
Stephen Warren3eedb432012-02-23 17:04:40 -07001280 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001281
1282 mutex_unlock(&pinctrl_mutex);
Stephen Warren3eedb432012-02-23 17:04:40 -07001283
1284 return 0;
1285}
1286
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001287static int pinctrl_show(struct seq_file *s, void *what)
1288{
1289 struct pinctrl *p;
Stephen Warren6e5e9592012-03-02 13:05:47 -07001290 struct pinctrl_state *state;
Stephen Warren7ecdb162012-03-02 13:05:45 -07001291 struct pinctrl_setting *setting;
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001292
1293 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
Stephen Warren57b676f2012-03-02 13:05:44 -07001294
1295 mutex_lock(&pinctrl_mutex);
1296
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001297 list_for_each_entry(p, &pinctrl_list, node) {
Stephen Warren6e5e9592012-03-02 13:05:47 -07001298 seq_printf(s, "device: %s current state: %s\n",
1299 dev_name(p->dev),
1300 p->state ? p->state->name : "none");
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001301
Stephen Warren6e5e9592012-03-02 13:05:47 -07001302 list_for_each_entry(state, &p->states, node) {
1303 seq_printf(s, " state: %s\n", state->name);
1304
1305 list_for_each_entry(setting, &state->settings, node) {
Stephen Warren1e2082b2012-03-02 13:05:48 -07001306 struct pinctrl_dev *pctldev = setting->pctldev;
1307
1308 seq_printf(s, " type: %s controller %s ",
1309 map_type(setting->type),
1310 pinctrl_dev_get_name(pctldev));
1311
1312 switch (setting->type) {
1313 case PIN_MAP_TYPE_MUX_GROUP:
1314 pinmux_show_setting(s, setting);
1315 break;
1316 case PIN_MAP_TYPE_CONFIGS_PIN:
1317 case PIN_MAP_TYPE_CONFIGS_GROUP:
1318 pinconf_show_setting(s, setting);
1319 break;
1320 default:
1321 break;
1322 }
Stephen Warren6e5e9592012-03-02 13:05:47 -07001323 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001324 }
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001325 }
1326
Stephen Warren57b676f2012-03-02 13:05:44 -07001327 mutex_unlock(&pinctrl_mutex);
1328
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001329 return 0;
1330}
1331
Linus Walleij2744e8a2011-05-02 20:50:54 +02001332static int pinctrl_pins_open(struct inode *inode, struct file *file)
1333{
1334 return single_open(file, pinctrl_pins_show, inode->i_private);
1335}
1336
1337static int pinctrl_groups_open(struct inode *inode, struct file *file)
1338{
1339 return single_open(file, pinctrl_groups_show, inode->i_private);
1340}
1341
1342static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1343{
1344 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1345}
1346
1347static int pinctrl_devices_open(struct inode *inode, struct file *file)
1348{
1349 return single_open(file, pinctrl_devices_show, NULL);
1350}
1351
Stephen Warren3eedb432012-02-23 17:04:40 -07001352static int pinctrl_maps_open(struct inode *inode, struct file *file)
1353{
1354 return single_open(file, pinctrl_maps_show, NULL);
1355}
1356
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001357static int pinctrl_open(struct inode *inode, struct file *file)
1358{
1359 return single_open(file, pinctrl_show, NULL);
1360}
1361
Linus Walleij2744e8a2011-05-02 20:50:54 +02001362static const struct file_operations pinctrl_pins_ops = {
1363 .open = pinctrl_pins_open,
1364 .read = seq_read,
1365 .llseek = seq_lseek,
1366 .release = single_release,
1367};
1368
1369static const struct file_operations pinctrl_groups_ops = {
1370 .open = pinctrl_groups_open,
1371 .read = seq_read,
1372 .llseek = seq_lseek,
1373 .release = single_release,
1374};
1375
1376static const struct file_operations pinctrl_gpioranges_ops = {
1377 .open = pinctrl_gpioranges_open,
1378 .read = seq_read,
1379 .llseek = seq_lseek,
1380 .release = single_release,
1381};
1382
1383static const struct file_operations pinctrl_devices_ops = {
1384 .open = pinctrl_devices_open,
1385 .read = seq_read,
1386 .llseek = seq_lseek,
1387 .release = single_release,
1388};
1389
Stephen Warren3eedb432012-02-23 17:04:40 -07001390static const struct file_operations pinctrl_maps_ops = {
1391 .open = pinctrl_maps_open,
1392 .read = seq_read,
1393 .llseek = seq_lseek,
1394 .release = single_release,
1395};
1396
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001397static const struct file_operations pinctrl_ops = {
1398 .open = pinctrl_open,
1399 .read = seq_read,
1400 .llseek = seq_lseek,
1401 .release = single_release,
1402};
1403
Linus Walleij2744e8a2011-05-02 20:50:54 +02001404static struct dentry *debugfs_root;
1405
1406static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1407{
Tony Lindgren02157162012-01-20 08:17:22 -08001408 struct dentry *device_root;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001409
Stephen Warren51cd24e2011-12-09 16:59:05 -07001410 device_root = debugfs_create_dir(dev_name(pctldev->dev),
Linus Walleij2744e8a2011-05-02 20:50:54 +02001411 debugfs_root);
Tony Lindgren02157162012-01-20 08:17:22 -08001412 pctldev->device_root = device_root;
1413
Linus Walleij2744e8a2011-05-02 20:50:54 +02001414 if (IS_ERR(device_root) || !device_root) {
1415 pr_warn("failed to create debugfs directory for %s\n",
Stephen Warren51cd24e2011-12-09 16:59:05 -07001416 dev_name(pctldev->dev));
Linus Walleij2744e8a2011-05-02 20:50:54 +02001417 return;
1418 }
1419 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1420 device_root, pctldev, &pinctrl_pins_ops);
1421 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1422 device_root, pctldev, &pinctrl_groups_ops);
1423 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1424 device_root, pctldev, &pinctrl_gpioranges_ops);
1425 pinmux_init_device_debugfs(device_root, pctldev);
Linus Walleijae6b4d82011-10-19 18:14:33 +02001426 pinconf_init_device_debugfs(device_root, pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001427}
1428
Tony Lindgren02157162012-01-20 08:17:22 -08001429static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1430{
1431 debugfs_remove_recursive(pctldev->device_root);
1432}
1433
Linus Walleij2744e8a2011-05-02 20:50:54 +02001434static void pinctrl_init_debugfs(void)
1435{
1436 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1437 if (IS_ERR(debugfs_root) || !debugfs_root) {
1438 pr_warn("failed to create debugfs directory\n");
1439 debugfs_root = NULL;
1440 return;
1441 }
1442
1443 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1444 debugfs_root, NULL, &pinctrl_devices_ops);
Stephen Warren3eedb432012-02-23 17:04:40 -07001445 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1446 debugfs_root, NULL, &pinctrl_maps_ops);
Linus Walleijbefe5bd2012-02-09 19:47:48 +01001447 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1448 debugfs_root, NULL, &pinctrl_ops);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001449}
1450
1451#else /* CONFIG_DEBUG_FS */
1452
1453static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1454{
1455}
1456
1457static void pinctrl_init_debugfs(void)
1458{
1459}
1460
Tony Lindgren02157162012-01-20 08:17:22 -08001461static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1462{
1463}
1464
Linus Walleij2744e8a2011-05-02 20:50:54 +02001465#endif
1466
Stephen Warrenf84cc342012-03-16 14:54:25 -06001467static int pinctrl_check_ops(struct pinctrl_dev *pctldev)
1468{
1469 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
1470
1471 if (!ops ||
Viresh Kumar203c1b32012-03-30 11:25:40 +05301472 !ops->get_groups_count ||
Stephen Warrenf84cc342012-03-16 14:54:25 -06001473 !ops->get_group_name ||
1474 !ops->get_group_pins)
1475 return -EINVAL;
1476
Stephen Warrenc221fde2012-03-23 10:29:46 -06001477 if (ops->dt_node_to_map && !ops->dt_free_map)
1478 return -EINVAL;
1479
Stephen Warrenf84cc342012-03-16 14:54:25 -06001480 return 0;
1481}
1482
Linus Walleij2744e8a2011-05-02 20:50:54 +02001483/**
1484 * pinctrl_register() - register a pin controller device
1485 * @pctldesc: descriptor for this pin controller
1486 * @dev: parent device for this pin controller
1487 * @driver_data: private pin controller data for this pin controller
1488 */
1489struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1490 struct device *dev, void *driver_data)
1491{
Linus Walleij2744e8a2011-05-02 20:50:54 +02001492 struct pinctrl_dev *pctldev;
1493 int ret;
1494
Devendra Naga8f4ca4c2012-06-16 23:43:16 +05301495 if (!pctldesc)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001496 return NULL;
Devendra Naga8f4ca4c2012-06-16 23:43:16 +05301497 if (!pctldesc->name)
Linus Walleij2744e8a2011-05-02 20:50:54 +02001498 return NULL;
1499
Stephen Warren02f5b982012-02-22 14:26:00 -07001500 pctldev = kzalloc(sizeof(*pctldev), GFP_KERNEL);
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001501 if (pctldev == NULL) {
1502 dev_err(dev, "failed to alloc struct pinctrl_dev\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001503 return NULL;
Stephen Warren95dcd4a2012-02-22 14:25:59 -07001504 }
Linus Walleij2744e8a2011-05-02 20:50:54 +02001505
1506 /* Initialize pin control device struct */
1507 pctldev->owner = pctldesc->owner;
1508 pctldev->desc = pctldesc;
1509 pctldev->driver_data = driver_data;
1510 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001511 INIT_LIST_HEAD(&pctldev->gpio_ranges);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001512 pctldev->dev = dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001513
Stephen Warrenf84cc342012-03-16 14:54:25 -06001514 /* check core ops for sanity */
Devendra Naga8f4ca4c2012-06-16 23:43:16 +05301515 if (pinctrl_check_ops(pctldev)) {
John Crispina5982f02012-04-26 16:47:11 +02001516 dev_err(dev, "pinctrl ops lacks necessary functions\n");
Stephen Warrenf84cc342012-03-16 14:54:25 -06001517 goto out_err;
1518 }
1519
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001520 /* If we're implementing pinmuxing, check the ops for sanity */
1521 if (pctldesc->pmxops) {
Devendra Naga8f4ca4c2012-06-16 23:43:16 +05301522 if (pinmux_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001523 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001524 }
1525
1526 /* If we're implementing pinconfig, check the ops for sanity */
1527 if (pctldesc->confops) {
Devendra Naga8f4ca4c2012-06-16 23:43:16 +05301528 if (pinconf_check_ops(pctldev))
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001529 goto out_err;
Tony Lindgrenb9130b72012-01-24 16:28:08 -08001530 }
1531
Linus Walleij2744e8a2011-05-02 20:50:54 +02001532 /* Register all the pins */
John Crispina5982f02012-04-26 16:47:11 +02001533 dev_dbg(dev, "try to register %d pins ...\n", pctldesc->npins);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001534 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1535 if (ret) {
John Crispina5982f02012-04-26 16:47:11 +02001536 dev_err(dev, "error during pin registration\n");
Linus Walleij2744e8a2011-05-02 20:50:54 +02001537 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1538 pctldesc->npins);
Stephen Warren51cd24e2011-12-09 16:59:05 -07001539 goto out_err;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001540 }
1541
Stephen Warren57b676f2012-03-02 13:05:44 -07001542 mutex_lock(&pinctrl_mutex);
1543
Stephen Warren8b9c1392012-02-19 23:45:42 -07001544 list_add_tail(&pctldev->node, &pinctrldev_list);
Stephen Warren57b676f2012-03-02 13:05:44 -07001545
Stephen Warren6e5e9592012-03-02 13:05:47 -07001546 pctldev->p = pinctrl_get_locked(pctldev->dev);
1547 if (!IS_ERR(pctldev->p)) {
Julien Delacoub02491e2012-12-10 14:47:33 +01001548 pctldev->hog_default =
Stephen Warren6e5e9592012-03-02 13:05:47 -07001549 pinctrl_lookup_state_locked(pctldev->p,
1550 PINCTRL_STATE_DEFAULT);
Julien Delacoub02491e2012-12-10 14:47:33 +01001551 if (IS_ERR(pctldev->hog_default)) {
John Crispina5982f02012-04-26 16:47:11 +02001552 dev_dbg(dev, "failed to lookup the default state\n");
1553 } else {
Julien Delacoub02491e2012-12-10 14:47:33 +01001554 if (pinctrl_select_state_locked(pctldev->p,
1555 pctldev->hog_default))
John Crispina5982f02012-04-26 16:47:11 +02001556 dev_err(dev,
1557 "failed to select default state\n");
John Crispina5982f02012-04-26 16:47:11 +02001558 }
Julien Delacoub02491e2012-12-10 14:47:33 +01001559
1560 pctldev->hog_sleep =
1561 pinctrl_lookup_state_locked(pctldev->p,
1562 PINCTRL_STATE_SLEEP);
1563 if (IS_ERR(pctldev->hog_sleep))
1564 dev_dbg(dev, "failed to lookup the sleep state\n");
Stephen Warren6e5e9592012-03-02 13:05:47 -07001565 }
Stephen Warren57b676f2012-03-02 13:05:44 -07001566
1567 mutex_unlock(&pinctrl_mutex);
1568
Stephen Warren2304b472012-02-22 14:26:01 -07001569 pinctrl_init_device_debugfs(pctldev);
1570
Linus Walleij2744e8a2011-05-02 20:50:54 +02001571 return pctldev;
1572
Stephen Warren51cd24e2011-12-09 16:59:05 -07001573out_err:
1574 kfree(pctldev);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001575 return NULL;
1576}
1577EXPORT_SYMBOL_GPL(pinctrl_register);
1578
1579/**
1580 * pinctrl_unregister() - unregister pinmux
1581 * @pctldev: pin controller to unregister
1582 *
1583 * Called by pinmux drivers to unregister a pinmux.
1584 */
1585void pinctrl_unregister(struct pinctrl_dev *pctldev)
1586{
Dong Aisheng8f83ecd2012-05-23 21:22:40 +08001587 struct pinctrl_gpio_range *range, *n;
Linus Walleij2744e8a2011-05-02 20:50:54 +02001588 if (pctldev == NULL)
1589 return;
1590
Tony Lindgren02157162012-01-20 08:17:22 -08001591 pinctrl_remove_device_debugfs(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001592
1593 mutex_lock(&pinctrl_mutex);
1594
Stephen Warren6e5e9592012-03-02 13:05:47 -07001595 if (!IS_ERR(pctldev->p))
1596 pinctrl_put_locked(pctldev->p, true);
Stephen Warren57b676f2012-03-02 13:05:44 -07001597
Linus Walleij2744e8a2011-05-02 20:50:54 +02001598 /* TODO: check that no pinmuxes are still active? */
Linus Walleij2744e8a2011-05-02 20:50:54 +02001599 list_del(&pctldev->node);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001600 /* Destroy descriptor tree */
1601 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1602 pctldev->desc->npins);
Dong Aisheng8f83ecd2012-05-23 21:22:40 +08001603 /* remove gpio ranges map */
1604 list_for_each_entry_safe(range, n, &pctldev->gpio_ranges, node)
1605 list_del(&range->node);
1606
Stephen Warren51cd24e2011-12-09 16:59:05 -07001607 kfree(pctldev);
Stephen Warren57b676f2012-03-02 13:05:44 -07001608
1609 mutex_unlock(&pinctrl_mutex);
Linus Walleij2744e8a2011-05-02 20:50:54 +02001610}
1611EXPORT_SYMBOL_GPL(pinctrl_unregister);
1612
1613static int __init pinctrl_init(void)
1614{
1615 pr_info("initialized pinctrl subsystem\n");
1616 pinctrl_init_debugfs();
1617 return 0;
1618}
1619
1620/* init early since many drivers really need to initialized pinmux early */
1621core_initcall(pinctrl_init);