pinctrl: factor pin control handles over to the core
[linux-2.6/btrfs-unstable.git] / drivers / pinctrl / core.c
blobec32c545f07ff831434b29a46bcefe87da9bc611
1 /*
2 * Core driver for the pin control subsystem
4 * Copyright (C) 2011-2012 ST-Ericsson SA
5 * Written on behalf of Linaro for ST-Ericsson
6 * Based on bits of regulator core, gpio core and clk core
8 * Author: Linus Walleij <linus.walleij@linaro.org>
10 * License terms: GNU General Public License (GPL) version 2
12 #define pr_fmt(fmt) "pinctrl core: " fmt
14 #include <linux/kernel.h>
15 #include <linux/export.h>
16 #include <linux/init.h>
17 #include <linux/device.h>
18 #include <linux/slab.h>
19 #include <linux/radix-tree.h>
20 #include <linux/err.h>
21 #include <linux/list.h>
22 #include <linux/mutex.h>
23 #include <linux/spinlock.h>
24 #include <linux/sysfs.h>
25 #include <linux/debugfs.h>
26 #include <linux/seq_file.h>
27 #include <linux/pinctrl/pinctrl.h>
28 #include <linux/pinctrl/machine.h>
29 #include "core.h"
30 #include "pinmux.h"
31 #include "pinconf.h"
33 /**
34 * struct pinctrl_hog - a list item to stash control hogs
35 * @node: pin control hog list node
36 * @map: map entry responsible for this hogging
37 * @pmx: the pin control hogged by this item
39 struct pinctrl_hog {
40 struct list_head node;
41 struct pinctrl_map const *map;
42 struct pinctrl *p;
45 /* Global list of pin control devices */
46 static DEFINE_MUTEX(pinctrldev_list_mutex);
47 static LIST_HEAD(pinctrldev_list);
49 /* List of pin controller handles */
50 static DEFINE_MUTEX(pinctrl_list_mutex);
51 static LIST_HEAD(pinctrl_list);
53 /* Global pinctrl maps */
54 static struct pinctrl_map *pinctrl_maps;
55 static unsigned pinctrl_maps_num;
57 const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev)
59 /* We're not allowed to register devices without name */
60 return pctldev->desc->name;
62 EXPORT_SYMBOL_GPL(pinctrl_dev_get_name);
64 void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev)
66 return pctldev->driver_data;
68 EXPORT_SYMBOL_GPL(pinctrl_dev_get_drvdata);
70 /**
71 * get_pinctrl_dev_from_devname() - look up pin controller device
72 * @devname: the name of a device instance, as returned by dev_name()
74 * Looks up a pin control device matching a certain device name or pure device
75 * pointer, the pure device pointer will take precedence.
77 struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *devname)
79 struct pinctrl_dev *pctldev = NULL;
80 bool found = false;
82 if (!devname)
83 return NULL;
85 mutex_lock(&pinctrldev_list_mutex);
86 list_for_each_entry(pctldev, &pinctrldev_list, node) {
87 if (!strcmp(dev_name(pctldev->dev), devname)) {
88 /* Matched on device name */
89 found = true;
90 break;
93 mutex_unlock(&pinctrldev_list_mutex);
95 return found ? pctldev : NULL;
98 struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev, unsigned int pin)
100 struct pin_desc *pindesc;
101 unsigned long flags;
103 spin_lock_irqsave(&pctldev->pin_desc_tree_lock, flags);
104 pindesc = radix_tree_lookup(&pctldev->pin_desc_tree, pin);
105 spin_unlock_irqrestore(&pctldev->pin_desc_tree_lock, flags);
107 return pindesc;
111 * pin_get_from_name() - look up a pin number from a name
112 * @pctldev: the pin control device to lookup the pin on
113 * @name: the name of the pin to look up
115 int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name)
117 unsigned i, pin;
119 /* The pin number can be retrived from the pin controller descriptor */
120 for (i = 0; i < pctldev->desc->npins; i++) {
121 struct pin_desc *desc;
123 pin = pctldev->desc->pins[i].number;
124 desc = pin_desc_get(pctldev, pin);
125 /* Pin space may be sparse */
126 if (desc == NULL)
127 continue;
128 if (desc->name && !strcmp(name, desc->name))
129 return pin;
132 return -EINVAL;
136 * pin_is_valid() - check if pin exists on controller
137 * @pctldev: the pin control device to check the pin on
138 * @pin: pin to check, use the local pin controller index number
140 * This tells us whether a certain pin exist on a certain pin controller or
141 * not. Pin lists may be sparse, so some pins may not exist.
143 bool pin_is_valid(struct pinctrl_dev *pctldev, int pin)
145 struct pin_desc *pindesc;
147 if (pin < 0)
148 return false;
150 pindesc = pin_desc_get(pctldev, pin);
151 if (pindesc == NULL)
152 return false;
154 return true;
156 EXPORT_SYMBOL_GPL(pin_is_valid);
158 /* Deletes a range of pin descriptors */
159 static void pinctrl_free_pindescs(struct pinctrl_dev *pctldev,
160 const struct pinctrl_pin_desc *pins,
161 unsigned num_pins)
163 int i;
165 spin_lock(&pctldev->pin_desc_tree_lock);
166 for (i = 0; i < num_pins; i++) {
167 struct pin_desc *pindesc;
169 pindesc = radix_tree_lookup(&pctldev->pin_desc_tree,
170 pins[i].number);
171 if (pindesc != NULL) {
172 radix_tree_delete(&pctldev->pin_desc_tree,
173 pins[i].number);
174 if (pindesc->dynamic_name)
175 kfree(pindesc->name);
177 kfree(pindesc);
179 spin_unlock(&pctldev->pin_desc_tree_lock);
182 static int pinctrl_register_one_pin(struct pinctrl_dev *pctldev,
183 unsigned number, const char *name)
185 struct pin_desc *pindesc;
187 pindesc = pin_desc_get(pctldev, number);
188 if (pindesc != NULL) {
189 pr_err("pin %d already registered on %s\n", number,
190 pctldev->desc->name);
191 return -EINVAL;
194 pindesc = kzalloc(sizeof(*pindesc), GFP_KERNEL);
195 if (pindesc == NULL)
196 return -ENOMEM;
198 spin_lock_init(&pindesc->lock);
200 /* Set owner */
201 pindesc->pctldev = pctldev;
203 /* Copy basic pin info */
204 if (name) {
205 pindesc->name = name;
206 } else {
207 pindesc->name = kasprintf(GFP_KERNEL, "PIN%u", number);
208 if (pindesc->name == NULL)
209 return -ENOMEM;
210 pindesc->dynamic_name = true;
213 spin_lock(&pctldev->pin_desc_tree_lock);
214 radix_tree_insert(&pctldev->pin_desc_tree, number, pindesc);
215 spin_unlock(&pctldev->pin_desc_tree_lock);
216 pr_debug("registered pin %d (%s) on %s\n",
217 number, pindesc->name, pctldev->desc->name);
218 return 0;
221 static int pinctrl_register_pins(struct pinctrl_dev *pctldev,
222 struct pinctrl_pin_desc const *pins,
223 unsigned num_descs)
225 unsigned i;
226 int ret = 0;
228 for (i = 0; i < num_descs; i++) {
229 ret = pinctrl_register_one_pin(pctldev,
230 pins[i].number, pins[i].name);
231 if (ret)
232 return ret;
235 return 0;
239 * pinctrl_match_gpio_range() - check if a certain GPIO pin is in range
240 * @pctldev: pin controller device to check
241 * @gpio: gpio pin to check taken from the global GPIO pin space
243 * Tries to match a GPIO pin number to the ranges handled by a certain pin
244 * controller, return the range or NULL
246 static struct pinctrl_gpio_range *
247 pinctrl_match_gpio_range(struct pinctrl_dev *pctldev, unsigned gpio)
249 struct pinctrl_gpio_range *range = NULL;
251 /* Loop over the ranges */
252 mutex_lock(&pctldev->gpio_ranges_lock);
253 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
254 /* Check if we're in the valid range */
255 if (gpio >= range->base &&
256 gpio < range->base + range->npins) {
257 mutex_unlock(&pctldev->gpio_ranges_lock);
258 return range;
261 mutex_unlock(&pctldev->gpio_ranges_lock);
263 return NULL;
267 * pinctrl_get_device_gpio_range() - find device for GPIO range
268 * @gpio: the pin to locate the pin controller for
269 * @outdev: the pin control device if found
270 * @outrange: the GPIO range if found
272 * Find the pin controller handling a certain GPIO pin from the pinspace of
273 * the GPIO subsystem, return the device and the matching GPIO range. Returns
274 * negative if the GPIO range could not be found in any device.
276 int pinctrl_get_device_gpio_range(unsigned gpio,
277 struct pinctrl_dev **outdev,
278 struct pinctrl_gpio_range **outrange)
280 struct pinctrl_dev *pctldev = NULL;
282 /* Loop over the pin controllers */
283 mutex_lock(&pinctrldev_list_mutex);
284 list_for_each_entry(pctldev, &pinctrldev_list, node) {
285 struct pinctrl_gpio_range *range;
287 range = pinctrl_match_gpio_range(pctldev, gpio);
288 if (range != NULL) {
289 *outdev = pctldev;
290 *outrange = range;
291 mutex_unlock(&pinctrldev_list_mutex);
292 return 0;
295 mutex_unlock(&pinctrldev_list_mutex);
297 return -EINVAL;
301 * pinctrl_add_gpio_range() - register a GPIO range for a controller
302 * @pctldev: pin controller device to add the range to
303 * @range: the GPIO range to add
305 * This adds a range of GPIOs to be handled by a certain pin controller. Call
306 * this to register handled ranges after registering your pin controller.
308 void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev,
309 struct pinctrl_gpio_range *range)
311 mutex_lock(&pctldev->gpio_ranges_lock);
312 list_add(&range->node, &pctldev->gpio_ranges);
313 mutex_unlock(&pctldev->gpio_ranges_lock);
317 * pinctrl_remove_gpio_range() - remove a range of GPIOs fro a pin controller
318 * @pctldev: pin controller device to remove the range from
319 * @range: the GPIO range to remove
321 void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
322 struct pinctrl_gpio_range *range)
324 mutex_lock(&pctldev->gpio_ranges_lock);
325 list_del(&range->node);
326 mutex_unlock(&pctldev->gpio_ranges_lock);
330 * pinctrl_get_group_selector() - returns the group selector for a group
331 * @pctldev: the pin controller handling the group
332 * @pin_group: the pin group to look up
334 int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
335 const char *pin_group)
337 const struct pinctrl_ops *pctlops = pctldev->desc->pctlops;
338 unsigned group_selector = 0;
340 while (pctlops->list_groups(pctldev, group_selector) >= 0) {
341 const char *gname = pctlops->get_group_name(pctldev,
342 group_selector);
343 if (!strcmp(gname, pin_group)) {
344 dev_dbg(pctldev->dev,
345 "found group selector %u for %s\n",
346 group_selector,
347 pin_group);
348 return group_selector;
351 group_selector++;
354 dev_err(pctldev->dev, "does not have pin group %s\n",
355 pin_group);
357 return -EINVAL;
361 * pinctrl_request_gpio() - request a single pin to be used in as GPIO
362 * @gpio: the GPIO pin number from the GPIO subsystem number space
364 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
365 * as part of their gpio_request() semantics, platforms and individual drivers
366 * shall *NOT* request GPIO pins to be muxed in.
368 int pinctrl_request_gpio(unsigned gpio)
370 struct pinctrl_dev *pctldev;
371 struct pinctrl_gpio_range *range;
372 int ret;
373 int pin;
375 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
376 if (ret)
377 return -EINVAL;
379 /* Convert to the pin controllers number space */
380 pin = gpio - range->base + range->pin_base;
382 return pinmux_request_gpio(pctldev, range, pin, gpio);
384 EXPORT_SYMBOL_GPL(pinctrl_request_gpio);
387 * pinctrl_free_gpio() - free control on a single pin, currently used as GPIO
388 * @gpio: the GPIO pin number from the GPIO subsystem number space
390 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
391 * as part of their gpio_free() semantics, platforms and individual drivers
392 * shall *NOT* request GPIO pins to be muxed out.
394 void pinctrl_free_gpio(unsigned gpio)
396 struct pinctrl_dev *pctldev;
397 struct pinctrl_gpio_range *range;
398 int ret;
399 int pin;
401 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
402 if (ret)
403 return;
405 /* Convert to the pin controllers number space */
406 pin = gpio - range->base + range->pin_base;
408 return pinmux_free_gpio(pctldev, pin, range);
410 EXPORT_SYMBOL_GPL(pinctrl_free_gpio);
412 static int pinctrl_gpio_direction(unsigned gpio, bool input)
414 struct pinctrl_dev *pctldev;
415 struct pinctrl_gpio_range *range;
416 int ret;
417 int pin;
419 ret = pinctrl_get_device_gpio_range(gpio, &pctldev, &range);
420 if (ret)
421 return ret;
423 /* Convert to the pin controllers number space */
424 pin = gpio - range->base + range->pin_base;
426 return pinmux_gpio_direction(pctldev, range, pin, input);
430 * pinctrl_gpio_direction_input() - request a GPIO pin to go into input mode
431 * @gpio: the GPIO pin number from the GPIO subsystem number space
433 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
434 * as part of their gpio_direction_input() semantics, platforms and individual
435 * drivers shall *NOT* touch pin control GPIO calls.
437 int pinctrl_gpio_direction_input(unsigned gpio)
439 return pinctrl_gpio_direction(gpio, true);
441 EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input);
444 * pinctrl_gpio_direction_output() - request a GPIO pin to go into output mode
445 * @gpio: the GPIO pin number from the GPIO subsystem number space
447 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
448 * as part of their gpio_direction_output() semantics, platforms and individual
449 * drivers shall *NOT* touch pin control GPIO calls.
451 int pinctrl_gpio_direction_output(unsigned gpio)
453 return pinctrl_gpio_direction(gpio, false);
455 EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output);
458 * pinctrl_get() - retrieves the pin controller handle for a certain device
459 * @dev: the device to get the pin controller handle for
460 * @name: an optional specific control mapping name or NULL, the name is only
461 * needed if you want to have more than one mapping per device, or if you
462 * need an anonymous pin control (not tied to any specific device)
464 struct pinctrl *pinctrl_get(struct device *dev, const char *name)
466 struct pinctrl_map const *map = NULL;
467 struct pinctrl_dev *pctldev = NULL;
468 const char *devname = NULL;
469 struct pinctrl *p;
470 bool found_map;
471 unsigned num_maps = 0;
472 int ret = -ENODEV;
473 int i;
475 /* We must have dev or ID or both */
476 if (!dev && !name)
477 return ERR_PTR(-EINVAL);
479 if (dev)
480 devname = dev_name(dev);
482 pr_debug("get pin control handle %s for device %s\n", name,
483 devname ? devname : "(none)");
486 * create the state cookie holder struct pinctrl for each
487 * mapping, this is what consumers will get when requesting
488 * a pin control handle with pinctrl_get()
490 p = kzalloc(sizeof(struct pinctrl), GFP_KERNEL);
491 if (p == NULL)
492 return ERR_PTR(-ENOMEM);
493 mutex_init(&p->mutex);
494 pinmux_init_pinctrl_handle(p);
496 /* Iterate over the pin control maps to locate the right ones */
497 for (i = 0; i < pinctrl_maps_num; i++) {
498 map = &pinctrl_maps[i];
499 found_map = false;
502 * First, try to find the pctldev given in the map
504 pctldev = get_pinctrl_dev_from_devname(map->ctrl_dev_name);
505 if (!pctldev) {
506 pr_warning("could not find a pinctrl device for pinmux function %s, fishy, they shall all have one\n",
507 map->function);
508 pr_warning("given pinctrl device name: %s",
509 map->ctrl_dev_name);
511 /* Continue to check the other mappings anyway... */
512 continue;
515 pr_debug("in map, found pctldev %s to handle function %s",
516 dev_name(pctldev->dev), map->function);
520 * If we're looking for a specific named map, this must match,
521 * else we loop and look for the next.
523 if (name != NULL) {
524 if (map->name == NULL)
525 continue;
526 if (strcmp(map->name, name))
527 continue;
531 * This is for the case where no device name is given, we
532 * already know that the function name matches from above
533 * code.
535 if (!map->dev_name && (name != NULL))
536 found_map = true;
538 /* If the mapping has a device set up it must match */
539 if (map->dev_name &&
540 (!devname || !strcmp(map->dev_name, devname)))
541 /* MATCH! */
542 found_map = true;
544 /* If this map is applicable, then apply it */
545 if (found_map) {
546 ret = pinmux_apply_muxmap(pctldev, p, dev,
547 devname, map);
548 if (ret) {
549 kfree(p);
550 return ERR_PTR(ret);
552 num_maps++;
556 /* We should have atleast one map, right */
557 if (!num_maps) {
558 pr_err("could not find any mux maps for device %s, ID %s\n",
559 devname ? devname : "(anonymous)",
560 name ? name : "(undefined)");
561 kfree(p);
562 return ERR_PTR(-EINVAL);
565 pr_debug("found %u mux maps for device %s, UD %s\n",
566 num_maps,
567 devname ? devname : "(anonymous)",
568 name ? name : "(undefined)");
570 /* Add the pinmux to the global list */
571 mutex_lock(&pinctrl_list_mutex);
572 list_add(&p->node, &pinctrl_list);
573 mutex_unlock(&pinctrl_list_mutex);
575 return p;
577 EXPORT_SYMBOL_GPL(pinctrl_get);
580 * pinctrl_put() - release a previously claimed pin control handle
581 * @p: a pin control handle previously claimed by pinctrl_get()
583 void pinctrl_put(struct pinctrl *p)
585 if (p == NULL)
586 return;
588 mutex_lock(&p->mutex);
589 if (p->usecount)
590 pr_warn("releasing pin control handle with active users!\n");
591 /* Free the groups and all acquired pins */
592 pinmux_put(p);
593 mutex_unlock(&p->mutex);
595 /* Remove from list */
596 mutex_lock(&pinctrl_list_mutex);
597 list_del(&p->node);
598 mutex_unlock(&pinctrl_list_mutex);
600 kfree(p);
602 EXPORT_SYMBOL_GPL(pinctrl_put);
605 * pinctrl_enable() - enable a certain pin controller setting
606 * @p: the pin control handle to enable, previously claimed by pinctrl_get()
608 int pinctrl_enable(struct pinctrl *p)
610 int ret = 0;
612 if (p == NULL)
613 return -EINVAL;
614 mutex_lock(&p->mutex);
615 if (p->usecount++ == 0) {
616 ret = pinmux_enable(p);
617 if (ret)
618 p->usecount--;
620 mutex_unlock(&p->mutex);
621 return ret;
623 EXPORT_SYMBOL_GPL(pinctrl_enable);
626 * pinctrl_disable() - disable a certain pin control setting
627 * @p: the pin control handle to disable, previously claimed by pinctrl_get()
629 void pinctrl_disable(struct pinctrl *p)
631 if (p == NULL)
632 return;
634 mutex_lock(&p->mutex);
635 if (--p->usecount == 0) {
636 pinmux_disable(p);
638 mutex_unlock(&p->mutex);
640 EXPORT_SYMBOL_GPL(pinctrl_disable);
643 * pinctrl_register_mappings() - register a set of pin controller mappings
644 * @maps: the pincontrol mappings table to register, this should be marked with
645 * __initdata so it can be discarded after boot, this function will
646 * perform a shallow copy for the mapping entries.
647 * @num_maps: the number of maps in the mapping table
649 * Only call this once during initialization of your machine, the function is
650 * tagged as __init and won't be callable after init has completed. The map
651 * passed into this function will be owned by the pinmux core and cannot be
652 * freed.
654 int __init pinctrl_register_mappings(struct pinctrl_map const *maps,
655 unsigned num_maps)
657 void *tmp_maps;
658 int i;
660 pr_debug("add %d pinmux maps\n", num_maps);
662 /* First sanity check the new mapping */
663 for (i = 0; i < num_maps; i++) {
664 if (!maps[i].name) {
665 pr_err("failed to register map %d: no map name given\n",
667 return -EINVAL;
670 if (!maps[i].ctrl_dev_name) {
671 pr_err("failed to register map %s (%d): no pin control device given\n",
672 maps[i].name, i);
673 return -EINVAL;
676 if (!maps[i].function) {
677 pr_err("failed to register map %s (%d): no function ID given\n",
678 maps[i].name, i);
679 return -EINVAL;
682 if (!maps[i].dev_name)
683 pr_debug("add system map %s function %s with no device\n",
684 maps[i].name,
685 maps[i].function);
686 else
687 pr_debug("register map %s, function %s\n",
688 maps[i].name,
689 maps[i].function);
693 * Make a copy of the map array - string pointers will end up in the
694 * kernel const section anyway so these do not need to be deep copied.
696 if (!pinctrl_maps_num) {
697 /* On first call, just copy them */
698 tmp_maps = kmemdup(maps,
699 sizeof(struct pinctrl_map) * num_maps,
700 GFP_KERNEL);
701 if (!tmp_maps)
702 return -ENOMEM;
703 } else {
704 /* Subsequent calls, reallocate array to new size */
705 size_t oldsize = sizeof(struct pinctrl_map) * pinctrl_maps_num;
706 size_t newsize = sizeof(struct pinctrl_map) * num_maps;
708 tmp_maps = krealloc(pinctrl_maps,
709 oldsize + newsize, GFP_KERNEL);
710 if (!tmp_maps)
711 return -ENOMEM;
712 memcpy((tmp_maps + oldsize), maps, newsize);
715 pinctrl_maps = tmp_maps;
716 pinctrl_maps_num += num_maps;
717 return 0;
720 /* Hog a single map entry and add to the hoglist */
721 static int pinctrl_hog_map(struct pinctrl_dev *pctldev,
722 struct pinctrl_map const *map)
724 struct pinctrl_hog *hog;
725 struct pinctrl *p;
726 int ret;
728 if (map->dev_name) {
730 * TODO: the day we have device tree support, we can
731 * traverse the device tree and hog to specific device nodes
732 * without any problems, so then we can hog pinmuxes for
733 * all devices that just want a static pin mux at this point.
735 dev_err(pctldev->dev, "map %s wants to hog a non-system pinmux, this is not going to work\n",
736 map->name);
737 return -EINVAL;
740 hog = kzalloc(sizeof(struct pinctrl_hog), GFP_KERNEL);
741 if (!hog)
742 return -ENOMEM;
744 p = pinctrl_get(NULL, map->name);
745 if (IS_ERR(p)) {
746 kfree(hog);
747 dev_err(pctldev->dev,
748 "could not get the %s pin control mapping for hogging\n",
749 map->name);
750 return PTR_ERR(p);
753 ret = pinctrl_enable(p);
754 if (ret) {
755 pinctrl_put(p);
756 kfree(hog);
757 dev_err(pctldev->dev,
758 "could not enable the %s pin control mapping for hogging\n",
759 map->name);
760 return ret;
763 hog->map = map;
764 hog->p = p;
766 dev_info(pctldev->dev, "hogged map %s, function %s\n", map->name,
767 map->function);
768 mutex_lock(&pctldev->pinctrl_hogs_lock);
769 list_add(&hog->node, &pctldev->pinctrl_hogs);
770 mutex_unlock(&pctldev->pinctrl_hogs_lock);
772 return 0;
776 * pinctrl_hog_maps() - hog specific map entries on controller device
777 * @pctldev: the pin control device to hog entries on
779 * When the pin controllers are registered, there may be some specific pinmux
780 * map entries that need to be hogged, i.e. get+enabled until the system shuts
781 * down.
783 int pinctrl_hog_maps(struct pinctrl_dev *pctldev)
785 struct device *dev = pctldev->dev;
786 const char *devname = dev_name(dev);
787 int ret;
788 int i;
790 INIT_LIST_HEAD(&pctldev->pinctrl_hogs);
791 mutex_init(&pctldev->pinctrl_hogs_lock);
793 for (i = 0; i < pinctrl_maps_num; i++) {
794 struct pinctrl_map const *map = &pinctrl_maps[i];
796 if (!map->hog_on_boot)
797 continue;
799 if (map->ctrl_dev_name &&
800 !strcmp(map->ctrl_dev_name, devname)) {
801 /* OK time to hog! */
802 ret = pinctrl_hog_map(pctldev, map);
803 if (ret)
804 return ret;
807 return 0;
811 * pinctrl_unhog_maps() - unhog specific map entries on controller device
812 * @pctldev: the pin control device to unhog entries on
814 void pinctrl_unhog_maps(struct pinctrl_dev *pctldev)
816 struct list_head *node, *tmp;
818 mutex_lock(&pctldev->pinctrl_hogs_lock);
819 list_for_each_safe(node, tmp, &pctldev->pinctrl_hogs) {
820 struct pinctrl_hog *hog =
821 list_entry(node, struct pinctrl_hog, node);
822 pinctrl_disable(hog->p);
823 pinctrl_put(hog->p);
824 list_del(node);
825 kfree(hog);
827 mutex_unlock(&pctldev->pinctrl_hogs_lock);
830 #ifdef CONFIG_DEBUG_FS
832 static int pinctrl_pins_show(struct seq_file *s, void *what)
834 struct pinctrl_dev *pctldev = s->private;
835 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
836 unsigned i, pin;
838 seq_printf(s, "registered pins: %d\n", pctldev->desc->npins);
840 /* The pin number can be retrived from the pin controller descriptor */
841 for (i = 0; i < pctldev->desc->npins; i++) {
842 struct pin_desc *desc;
844 pin = pctldev->desc->pins[i].number;
845 desc = pin_desc_get(pctldev, pin);
846 /* Pin space may be sparse */
847 if (desc == NULL)
848 continue;
850 seq_printf(s, "pin %d (%s) ", pin,
851 desc->name ? desc->name : "unnamed");
853 /* Driver-specific info per pin */
854 if (ops->pin_dbg_show)
855 ops->pin_dbg_show(pctldev, s, pin);
857 seq_puts(s, "\n");
860 return 0;
863 static int pinctrl_groups_show(struct seq_file *s, void *what)
865 struct pinctrl_dev *pctldev = s->private;
866 const struct pinctrl_ops *ops = pctldev->desc->pctlops;
867 unsigned selector = 0;
869 /* No grouping */
870 if (!ops)
871 return 0;
873 seq_puts(s, "registered pin groups:\n");
874 while (ops->list_groups(pctldev, selector) >= 0) {
875 const unsigned *pins;
876 unsigned num_pins;
877 const char *gname = ops->get_group_name(pctldev, selector);
878 int ret;
879 int i;
881 ret = ops->get_group_pins(pctldev, selector,
882 &pins, &num_pins);
883 if (ret)
884 seq_printf(s, "%s [ERROR GETTING PINS]\n",
885 gname);
886 else {
887 seq_printf(s, "group: %s, pins = [ ", gname);
888 for (i = 0; i < num_pins; i++)
889 seq_printf(s, "%d ", pins[i]);
890 seq_puts(s, "]\n");
892 selector++;
896 return 0;
899 static int pinctrl_gpioranges_show(struct seq_file *s, void *what)
901 struct pinctrl_dev *pctldev = s->private;
902 struct pinctrl_gpio_range *range = NULL;
904 seq_puts(s, "GPIO ranges handled:\n");
906 /* Loop over the ranges */
907 mutex_lock(&pctldev->gpio_ranges_lock);
908 list_for_each_entry(range, &pctldev->gpio_ranges, node) {
909 seq_printf(s, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
910 range->id, range->name,
911 range->base, (range->base + range->npins - 1),
912 range->pin_base,
913 (range->pin_base + range->npins - 1));
915 mutex_unlock(&pctldev->gpio_ranges_lock);
917 return 0;
920 static int pinctrl_maps_show(struct seq_file *s, void *what)
922 int i;
924 seq_puts(s, "Pinctrl maps:\n");
926 for (i = 0; i < pinctrl_maps_num; i++) {
927 struct pinctrl_map const *map = &pinctrl_maps[i];
929 seq_printf(s, "%s:\n", map->name);
930 if (map->dev_name)
931 seq_printf(s, " device: %s\n",
932 map->dev_name);
933 else
934 seq_printf(s, " SYSTEM MUX\n");
935 seq_printf(s, " controlling device %s\n",
936 map->ctrl_dev_name);
937 seq_printf(s, " function: %s\n", map->function);
938 seq_printf(s, " group: %s\n", map->group ? map->group :
939 "(default)");
941 return 0;
944 static int pinmux_hogs_show(struct seq_file *s, void *what)
946 struct pinctrl_dev *pctldev = s->private;
947 struct pinctrl_hog *hog;
949 seq_puts(s, "Pin control map hogs held by device\n");
951 list_for_each_entry(hog, &pctldev->pinctrl_hogs, node)
952 seq_printf(s, "%s\n", hog->map->name);
954 return 0;
957 static int pinctrl_devices_show(struct seq_file *s, void *what)
959 struct pinctrl_dev *pctldev;
961 seq_puts(s, "name [pinmux] [pinconf]\n");
962 mutex_lock(&pinctrldev_list_mutex);
963 list_for_each_entry(pctldev, &pinctrldev_list, node) {
964 seq_printf(s, "%s ", pctldev->desc->name);
965 if (pctldev->desc->pmxops)
966 seq_puts(s, "yes ");
967 else
968 seq_puts(s, "no ");
969 if (pctldev->desc->confops)
970 seq_puts(s, "yes");
971 else
972 seq_puts(s, "no");
973 seq_puts(s, "\n");
975 mutex_unlock(&pinctrldev_list_mutex);
977 return 0;
980 static int pinctrl_show(struct seq_file *s, void *what)
982 struct pinctrl *p;
984 seq_puts(s, "Requested pin control handlers their pinmux maps:\n");
985 list_for_each_entry(p, &pinctrl_list, node) {
986 struct pinctrl_dev *pctldev = p->pctldev;
988 if (!pctldev) {
989 seq_puts(s, "NO PIN CONTROLLER DEVICE\n");
990 continue;
993 seq_printf(s, "device: %s",
994 pinctrl_dev_get_name(p->pctldev));
996 pinmux_dbg_show(s, p);
998 seq_printf(s, " users: %u map-> %s\n",
999 p->usecount,
1000 p->dev ? dev_name(p->dev) : "(system)");
1003 return 0;
1006 static int pinctrl_pins_open(struct inode *inode, struct file *file)
1008 return single_open(file, pinctrl_pins_show, inode->i_private);
1011 static int pinctrl_groups_open(struct inode *inode, struct file *file)
1013 return single_open(file, pinctrl_groups_show, inode->i_private);
1016 static int pinctrl_gpioranges_open(struct inode *inode, struct file *file)
1018 return single_open(file, pinctrl_gpioranges_show, inode->i_private);
1021 static int pinctrl_maps_open(struct inode *inode, struct file *file)
1023 return single_open(file, pinctrl_maps_show, inode->i_private);
1026 static int pinmux_hogs_open(struct inode *inode, struct file *file)
1028 return single_open(file, pinmux_hogs_show, inode->i_private);
1031 static int pinctrl_devices_open(struct inode *inode, struct file *file)
1033 return single_open(file, pinctrl_devices_show, NULL);
1036 static int pinctrl_open(struct inode *inode, struct file *file)
1038 return single_open(file, pinctrl_show, NULL);
1041 static const struct file_operations pinctrl_pins_ops = {
1042 .open = pinctrl_pins_open,
1043 .read = seq_read,
1044 .llseek = seq_lseek,
1045 .release = single_release,
1048 static const struct file_operations pinctrl_groups_ops = {
1049 .open = pinctrl_groups_open,
1050 .read = seq_read,
1051 .llseek = seq_lseek,
1052 .release = single_release,
1055 static const struct file_operations pinctrl_gpioranges_ops = {
1056 .open = pinctrl_gpioranges_open,
1057 .read = seq_read,
1058 .llseek = seq_lseek,
1059 .release = single_release,
1062 static const struct file_operations pinctrl_maps_ops = {
1063 .open = pinctrl_maps_open,
1064 .read = seq_read,
1065 .llseek = seq_lseek,
1066 .release = single_release,
1069 static const struct file_operations pinmux_hogs_ops = {
1070 .open = pinmux_hogs_open,
1071 .read = seq_read,
1072 .llseek = seq_lseek,
1073 .release = single_release,
1076 static const struct file_operations pinctrl_devices_ops = {
1077 .open = pinctrl_devices_open,
1078 .read = seq_read,
1079 .llseek = seq_lseek,
1080 .release = single_release,
1083 static const struct file_operations pinctrl_ops = {
1084 .open = pinctrl_open,
1085 .read = seq_read,
1086 .llseek = seq_lseek,
1087 .release = single_release,
1090 static struct dentry *debugfs_root;
1092 static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1094 struct dentry *device_root;
1096 device_root = debugfs_create_dir(dev_name(pctldev->dev),
1097 debugfs_root);
1098 pctldev->device_root = device_root;
1100 if (IS_ERR(device_root) || !device_root) {
1101 pr_warn("failed to create debugfs directory for %s\n",
1102 dev_name(pctldev->dev));
1103 return;
1105 debugfs_create_file("pins", S_IFREG | S_IRUGO,
1106 device_root, pctldev, &pinctrl_pins_ops);
1107 debugfs_create_file("pingroups", S_IFREG | S_IRUGO,
1108 device_root, pctldev, &pinctrl_groups_ops);
1109 debugfs_create_file("gpio-ranges", S_IFREG | S_IRUGO,
1110 device_root, pctldev, &pinctrl_gpioranges_ops);
1111 debugfs_create_file("pinctrl-maps", S_IFREG | S_IRUGO,
1112 device_root, pctldev, &pinctrl_maps_ops);
1113 debugfs_create_file("pinmux-hogs", S_IFREG | S_IRUGO,
1114 device_root, pctldev, &pinmux_hogs_ops);
1115 pinmux_init_device_debugfs(device_root, pctldev);
1116 pinconf_init_device_debugfs(device_root, pctldev);
1119 static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1121 debugfs_remove_recursive(pctldev->device_root);
1124 static void pinctrl_init_debugfs(void)
1126 debugfs_root = debugfs_create_dir("pinctrl", NULL);
1127 if (IS_ERR(debugfs_root) || !debugfs_root) {
1128 pr_warn("failed to create debugfs directory\n");
1129 debugfs_root = NULL;
1130 return;
1133 debugfs_create_file("pinctrl-devices", S_IFREG | S_IRUGO,
1134 debugfs_root, NULL, &pinctrl_devices_ops);
1135 debugfs_create_file("pinctrl-handles", S_IFREG | S_IRUGO,
1136 debugfs_root, NULL, &pinctrl_ops);
1139 #else /* CONFIG_DEBUG_FS */
1141 static void pinctrl_init_device_debugfs(struct pinctrl_dev *pctldev)
1145 static void pinctrl_init_debugfs(void)
1149 static void pinctrl_remove_device_debugfs(struct pinctrl_dev *pctldev)
1153 #endif
1156 * pinctrl_register() - register a pin controller device
1157 * @pctldesc: descriptor for this pin controller
1158 * @dev: parent device for this pin controller
1159 * @driver_data: private pin controller data for this pin controller
1161 struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
1162 struct device *dev, void *driver_data)
1164 struct pinctrl_dev *pctldev;
1165 int ret;
1167 if (pctldesc == NULL)
1168 return NULL;
1169 if (pctldesc->name == NULL)
1170 return NULL;
1172 pctldev = kzalloc(sizeof(struct pinctrl_dev), GFP_KERNEL);
1173 if (pctldev == NULL)
1174 return NULL;
1176 /* Initialize pin control device struct */
1177 pctldev->owner = pctldesc->owner;
1178 pctldev->desc = pctldesc;
1179 pctldev->driver_data = driver_data;
1180 INIT_RADIX_TREE(&pctldev->pin_desc_tree, GFP_KERNEL);
1181 spin_lock_init(&pctldev->pin_desc_tree_lock);
1182 INIT_LIST_HEAD(&pctldev->gpio_ranges);
1183 mutex_init(&pctldev->gpio_ranges_lock);
1184 pctldev->dev = dev;
1186 /* If we're implementing pinmuxing, check the ops for sanity */
1187 if (pctldesc->pmxops) {
1188 ret = pinmux_check_ops(pctldev);
1189 if (ret) {
1190 pr_err("%s pinmux ops lacks necessary functions\n",
1191 pctldesc->name);
1192 goto out_err;
1196 /* If we're implementing pinconfig, check the ops for sanity */
1197 if (pctldesc->confops) {
1198 ret = pinconf_check_ops(pctldev);
1199 if (ret) {
1200 pr_err("%s pin config ops lacks necessary functions\n",
1201 pctldesc->name);
1202 goto out_err;
1206 /* Register all the pins */
1207 pr_debug("try to register %d pins on %s...\n",
1208 pctldesc->npins, pctldesc->name);
1209 ret = pinctrl_register_pins(pctldev, pctldesc->pins, pctldesc->npins);
1210 if (ret) {
1211 pr_err("error during pin registration\n");
1212 pinctrl_free_pindescs(pctldev, pctldesc->pins,
1213 pctldesc->npins);
1214 goto out_err;
1217 pinctrl_init_device_debugfs(pctldev);
1218 mutex_lock(&pinctrldev_list_mutex);
1219 list_add(&pctldev->node, &pinctrldev_list);
1220 mutex_unlock(&pinctrldev_list_mutex);
1221 pinctrl_hog_maps(pctldev);
1222 return pctldev;
1224 out_err:
1225 kfree(pctldev);
1226 return NULL;
1228 EXPORT_SYMBOL_GPL(pinctrl_register);
1231 * pinctrl_unregister() - unregister pinmux
1232 * @pctldev: pin controller to unregister
1234 * Called by pinmux drivers to unregister a pinmux.
1236 void pinctrl_unregister(struct pinctrl_dev *pctldev)
1238 if (pctldev == NULL)
1239 return;
1241 pinctrl_remove_device_debugfs(pctldev);
1242 pinctrl_unhog_maps(pctldev);
1243 /* TODO: check that no pinmuxes are still active? */
1244 mutex_lock(&pinctrldev_list_mutex);
1245 list_del(&pctldev->node);
1246 mutex_unlock(&pinctrldev_list_mutex);
1247 /* Destroy descriptor tree */
1248 pinctrl_free_pindescs(pctldev, pctldev->desc->pins,
1249 pctldev->desc->npins);
1250 kfree(pctldev);
1252 EXPORT_SYMBOL_GPL(pinctrl_unregister);
1254 static int __init pinctrl_init(void)
1256 pr_info("initialized pinctrl subsystem\n");
1257 pinctrl_init_debugfs();
1258 return 0;
1261 /* init early since many drivers really need to initialized pinmux early */
1262 core_initcall(pinctrl_init);