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 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
12 * License terms: GNU General Public License (GPL) version 2
14 #define pr_fmt(fmt) "pinctrl core: " fmt
16 #include <linux/kernel.h>
17 #include <linux/export.h>
18 #include <linux/init.h>
19 #include <linux/device.h>
20 #include <linux/slab.h>
21 #include <linux/err.h>
22 #include <linux/list.h>
23 #include <linux/sysfs.h>
24 #include <linux/debugfs.h>
25 #include <linux/seq_file.h>
26 #include <linux/pinctrl/consumer.h>
27 #include <linux/pinctrl/pinctrl.h>
28 #include <linux/pinctrl/machine.h>
30 #include "devicetree.h"
35 * 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
41 struct list_head node
;
42 struct pinctrl_map
const *maps
;
46 static bool pinctrl_dummy_state
;
48 /* Mutex taken by all entry points */
49 DEFINE_MUTEX(pinctrl_mutex
);
51 /* Global list of pin control devices (struct pinctrl_dev) */
52 LIST_HEAD(pinctrldev_list
);
54 /* List of pin controller handles (struct pinctrl) */
55 static LIST_HEAD(pinctrl_list
);
57 /* List of pinctrl maps (struct pinctrl_maps) */
58 static LIST_HEAD(pinctrl_maps
);
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; \
64 _i_++, _map_ = &_maps_node_->maps[_i_])
67 * pinctrl_provide_dummies() - indicate if pinctrl provides dummy state support
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.
74 void pinctrl_provide_dummies(void)
76 pinctrl_dummy_state
= true;
79 const char *pinctrl_dev_get_name(struct pinctrl_dev
*pctldev
)
81 /* We're not allowed to register devices without name */
82 return pctldev
->desc
->name
;
84 EXPORT_SYMBOL_GPL(pinctrl_dev_get_name
);
86 void *pinctrl_dev_get_drvdata(struct pinctrl_dev
*pctldev
)
88 return pctldev
->driver_data
;
90 EXPORT_SYMBOL_GPL(pinctrl_dev_get_drvdata
);
93 * get_pinctrl_dev_from_devname() - look up pin controller device
94 * @devname: the name of a device instance, as returned by dev_name()
96 * Looks up a pin control device matching a certain device name or pure device
97 * pointer, the pure device pointer will take precedence.
99 struct pinctrl_dev
*get_pinctrl_dev_from_devname(const char *devname
)
101 struct pinctrl_dev
*pctldev
= NULL
;
107 list_for_each_entry(pctldev
, &pinctrldev_list
, node
) {
108 if (!strcmp(dev_name(pctldev
->dev
), devname
)) {
109 /* Matched on device name */
115 return found
? pctldev
: NULL
;
119 * 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
123 int pin_get_from_name(struct pinctrl_dev
*pctldev
, const char *name
)
127 /* The pin number can be retrived from the pin controller descriptor */
128 for (i
= 0; i
< pctldev
->desc
->npins
; i
++) {
129 struct pin_desc
*desc
;
131 pin
= pctldev
->desc
->pins
[i
].number
;
132 desc
= pin_desc_get(pctldev
, pin
);
133 /* Pin space may be sparse */
136 if (desc
->name
&& !strcmp(name
, desc
->name
))
144 * 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
148 const char *pin_get_name(struct pinctrl_dev
*pctldev
, const unsigned pin
)
150 const struct pin_desc
*desc
;
152 desc
= pin_desc_get(pctldev
, pin
);
154 dev_err(pctldev
->dev
, "failed to get pin(%d) name\n",
163 * 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
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.
170 bool pin_is_valid(struct pinctrl_dev
*pctldev
, int pin
)
172 struct pin_desc
*pindesc
;
177 mutex_lock(&pinctrl_mutex
);
178 pindesc
= pin_desc_get(pctldev
, pin
);
179 mutex_unlock(&pinctrl_mutex
);
181 return pindesc
!= NULL
;
183 EXPORT_SYMBOL_GPL(pin_is_valid
);
185 /* Deletes a range of pin descriptors */
186 static void pinctrl_free_pindescs(struct pinctrl_dev
*pctldev
,
187 const struct pinctrl_pin_desc
*pins
,
192 for (i
= 0; i
< num_pins
; i
++) {
193 struct pin_desc
*pindesc
;
195 pindesc
= radix_tree_lookup(&pctldev
->pin_desc_tree
,
197 if (pindesc
!= NULL
) {
198 radix_tree_delete(&pctldev
->pin_desc_tree
,
200 if (pindesc
->dynamic_name
)
201 kfree(pindesc
->name
);
207 static int pinctrl_register_one_pin(struct pinctrl_dev
*pctldev
,
208 unsigned number
, const char *name
)
210 struct pin_desc
*pindesc
;
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
);
219 pindesc
= kzalloc(sizeof(*pindesc
), GFP_KERNEL
);
220 if (pindesc
== NULL
) {
221 dev_err(pctldev
->dev
, "failed to alloc struct pin_desc\n");
226 pindesc
->pctldev
= pctldev
;
228 /* Copy basic pin info */
230 pindesc
->name
= name
;
232 pindesc
->name
= kasprintf(GFP_KERNEL
, "PIN%u", number
);
233 if (pindesc
->name
== NULL
) {
237 pindesc
->dynamic_name
= true;
240 radix_tree_insert(&pctldev
->pin_desc_tree
, number
, pindesc
);
241 pr_debug("registered pin %d (%s) on %s\n",
242 number
, pindesc
->name
, pctldev
->desc
->name
);
246 static int pinctrl_register_pins(struct pinctrl_dev
*pctldev
,
247 struct pinctrl_pin_desc
const *pins
,
253 for (i
= 0; i
< num_descs
; i
++) {
254 ret
= pinctrl_register_one_pin(pctldev
,
255 pins
[i
].number
, pins
[i
].name
);
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
268 * Tries to match a GPIO pin number to the ranges handled by a certain pin
269 * controller, return the range or NULL
271 static struct pinctrl_gpio_range
*
272 pinctrl_match_gpio_range(struct pinctrl_dev
*pctldev
, unsigned gpio
)
274 struct pinctrl_gpio_range
*range
= NULL
;
276 /* Loop over the ranges */
277 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
) {
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
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
296 * -EPROBE_DEFER if the GPIO range could not be found in any device since it
297 * may still have not been registered.
299 static int pinctrl_get_device_gpio_range(unsigned gpio
,
300 struct pinctrl_dev
**outdev
,
301 struct pinctrl_gpio_range
**outrange
)
303 struct pinctrl_dev
*pctldev
= NULL
;
305 /* Loop over the pin controllers */
306 list_for_each_entry(pctldev
, &pinctrldev_list
, node
) {
307 struct pinctrl_gpio_range
*range
;
309 range
= pinctrl_match_gpio_range(pctldev
, gpio
);
317 return -EPROBE_DEFER
;
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
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.
328 void pinctrl_add_gpio_range(struct pinctrl_dev
*pctldev
,
329 struct pinctrl_gpio_range
*range
)
331 mutex_lock(&pinctrl_mutex
);
332 list_add_tail(&range
->node
, &pctldev
->gpio_ranges
);
333 mutex_unlock(&pinctrl_mutex
);
335 EXPORT_SYMBOL_GPL(pinctrl_add_gpio_range
);
337 void pinctrl_add_gpio_ranges(struct pinctrl_dev
*pctldev
,
338 struct pinctrl_gpio_range
*ranges
,
343 for (i
= 0; i
< nranges
; i
++)
344 pinctrl_add_gpio_range(pctldev
, &ranges
[i
]);
346 EXPORT_SYMBOL_GPL(pinctrl_add_gpio_ranges
);
348 struct pinctrl_dev
*pinctrl_find_and_add_gpio_range(const char *devname
,
349 struct pinctrl_gpio_range
*range
)
351 struct pinctrl_dev
*pctldev
= get_pinctrl_dev_from_devname(devname
);
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.
359 return ERR_PTR(-EPROBE_DEFER
);
361 pinctrl_add_gpio_range(pctldev
, range
);
364 EXPORT_SYMBOL_GPL(pinctrl_find_and_add_gpio_range
);
367 * 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
371 struct pinctrl_gpio_range
*
372 pinctrl_find_gpio_range_from_pin(struct pinctrl_dev
*pctldev
,
375 struct pinctrl_gpio_range
*range
= NULL
;
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
) {
388 EXPORT_SYMBOL_GPL(pinctrl_find_gpio_range_from_pin
);
391 * 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
395 void pinctrl_remove_gpio_range(struct pinctrl_dev
*pctldev
,
396 struct pinctrl_gpio_range
*range
)
398 mutex_lock(&pinctrl_mutex
);
399 list_del(&range
->node
);
400 mutex_unlock(&pinctrl_mutex
);
402 EXPORT_SYMBOL_GPL(pinctrl_remove_gpio_range
);
405 * 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
409 int pinctrl_get_group_selector(struct pinctrl_dev
*pctldev
,
410 const char *pin_group
)
412 const struct pinctrl_ops
*pctlops
= pctldev
->desc
->pctlops
;
413 unsigned ngroups
= pctlops
->get_groups_count(pctldev
);
414 unsigned group_selector
= 0;
416 while (group_selector
< ngroups
) {
417 const char *gname
= pctlops
->get_group_name(pctldev
,
419 if (!strcmp(gname
, pin_group
)) {
420 dev_dbg(pctldev
->dev
,
421 "found group selector %u for %s\n",
424 return group_selector
;
430 dev_err(pctldev
->dev
, "does not have pin group %s\n",
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
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.
444 int pinctrl_request_gpio(unsigned gpio
)
446 struct pinctrl_dev
*pctldev
;
447 struct pinctrl_gpio_range
*range
;
451 mutex_lock(&pinctrl_mutex
);
453 ret
= pinctrl_get_device_gpio_range(gpio
, &pctldev
, &range
);
455 mutex_unlock(&pinctrl_mutex
);
459 /* Convert to the pin controllers number space */
460 pin
= gpio
- range
->base
+ range
->pin_base
;
462 ret
= pinmux_request_gpio(pctldev
, range
, pin
, gpio
);
464 mutex_unlock(&pinctrl_mutex
);
467 EXPORT_SYMBOL_GPL(pinctrl_request_gpio
);
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
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.
477 void pinctrl_free_gpio(unsigned gpio
)
479 struct pinctrl_dev
*pctldev
;
480 struct pinctrl_gpio_range
*range
;
484 mutex_lock(&pinctrl_mutex
);
486 ret
= pinctrl_get_device_gpio_range(gpio
, &pctldev
, &range
);
488 mutex_unlock(&pinctrl_mutex
);
492 /* Convert to the pin controllers number space */
493 pin
= gpio
- range
->base
+ range
->pin_base
;
495 pinmux_free_gpio(pctldev
, pin
, range
);
497 mutex_unlock(&pinctrl_mutex
);
499 EXPORT_SYMBOL_GPL(pinctrl_free_gpio
);
501 static int pinctrl_gpio_direction(unsigned gpio
, bool input
)
503 struct pinctrl_dev
*pctldev
;
504 struct pinctrl_gpio_range
*range
;
508 ret
= pinctrl_get_device_gpio_range(gpio
, &pctldev
, &range
);
512 /* Convert to the pin controllers number space */
513 pin
= gpio
- range
->base
+ range
->pin_base
;
515 return pinmux_gpio_direction(pctldev
, range
, pin
, input
);
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
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.
526 int pinctrl_gpio_direction_input(unsigned gpio
)
529 mutex_lock(&pinctrl_mutex
);
530 ret
= pinctrl_gpio_direction(gpio
, true);
531 mutex_unlock(&pinctrl_mutex
);
534 EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_input
);
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
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.
544 int pinctrl_gpio_direction_output(unsigned gpio
)
547 mutex_lock(&pinctrl_mutex
);
548 ret
= pinctrl_gpio_direction(gpio
, false);
549 mutex_unlock(&pinctrl_mutex
);
552 EXPORT_SYMBOL_GPL(pinctrl_gpio_direction_output
);
554 static struct pinctrl_state
*find_state(struct pinctrl
*p
,
557 struct pinctrl_state
*state
;
559 list_for_each_entry(state
, &p
->states
, node
)
560 if (!strcmp(state
->name
, name
))
566 static struct pinctrl_state
*create_state(struct pinctrl
*p
,
569 struct pinctrl_state
*state
;
571 state
= kzalloc(sizeof(*state
), GFP_KERNEL
);
574 "failed to alloc struct pinctrl_state\n");
575 return ERR_PTR(-ENOMEM
);
579 INIT_LIST_HEAD(&state
->settings
);
581 list_add_tail(&state
->node
, &p
->states
);
586 static int add_setting(struct pinctrl
*p
, struct pinctrl_map
const *map
)
588 struct pinctrl_state
*state
;
589 struct pinctrl_setting
*setting
;
592 state
= find_state(p
, map
->name
);
594 state
= create_state(p
, map
->name
);
596 return PTR_ERR(state
);
598 if (map
->type
== PIN_MAP_TYPE_DUMMY_STATE
)
601 setting
= kzalloc(sizeof(*setting
), GFP_KERNEL
);
602 if (setting
== NULL
) {
604 "failed to alloc struct pinctrl_setting\n");
608 setting
->type
= map
->type
;
610 setting
->pctldev
= get_pinctrl_dev_from_devname(map
->ctrl_dev_name
);
611 if (setting
->pctldev
== NULL
) {
612 dev_info(p
->dev
, "unknown pinctrl device %s in map entry, deferring probe",
616 * OK let us guess that the driver is not there yet, and
617 * let's defer obtaining this pinctrl handle to later...
619 return -EPROBE_DEFER
;
622 setting
->dev_name
= map
->dev_name
;
625 case PIN_MAP_TYPE_MUX_GROUP
:
626 ret
= pinmux_map_to_setting(map
, setting
);
628 case PIN_MAP_TYPE_CONFIGS_PIN
:
629 case PIN_MAP_TYPE_CONFIGS_GROUP
:
630 ret
= pinconf_map_to_setting(map
, setting
);
641 list_add_tail(&setting
->node
, &state
->settings
);
646 static struct pinctrl
*find_pinctrl(struct device
*dev
)
650 list_for_each_entry(p
, &pinctrl_list
, node
)
657 static void pinctrl_put_locked(struct pinctrl
*p
, bool inlist
);
659 static struct pinctrl
*create_pinctrl(struct device
*dev
)
663 struct pinctrl_maps
*maps_node
;
665 struct pinctrl_map
const *map
;
669 * create the state cookie holder struct pinctrl for each
670 * mapping, this is what consumers will get when requesting
671 * a pin control handle with pinctrl_get()
673 p
= kzalloc(sizeof(*p
), GFP_KERNEL
);
675 dev_err(dev
, "failed to alloc struct pinctrl\n");
676 return ERR_PTR(-ENOMEM
);
679 INIT_LIST_HEAD(&p
->states
);
680 INIT_LIST_HEAD(&p
->dt_maps
);
682 ret
= pinctrl_dt_to_map(p
);
688 devname
= dev_name(dev
);
690 /* Iterate over the pin control maps to locate the right ones */
691 for_each_maps(maps_node
, i
, map
) {
692 /* Map must be for this device */
693 if (strcmp(map
->dev_name
, devname
))
696 ret
= add_setting(p
, map
);
698 pinctrl_put_locked(p
, false);
703 /* Add the pinctrl handle to the global list */
704 list_add_tail(&p
->node
, &pinctrl_list
);
709 static struct pinctrl
*pinctrl_get_locked(struct device
*dev
)
714 return ERR_PTR(-EINVAL
);
716 p
= find_pinctrl(dev
);
718 return ERR_PTR(-EBUSY
);
720 return create_pinctrl(dev
);
724 * pinctrl_get() - retrieves the pinctrl handle for a device
725 * @dev: the device to obtain the handle for
727 struct pinctrl
*pinctrl_get(struct device
*dev
)
731 mutex_lock(&pinctrl_mutex
);
732 p
= pinctrl_get_locked(dev
);
733 mutex_unlock(&pinctrl_mutex
);
737 EXPORT_SYMBOL_GPL(pinctrl_get
);
739 static void pinctrl_put_locked(struct pinctrl
*p
, bool inlist
)
741 struct pinctrl_state
*state
, *n1
;
742 struct pinctrl_setting
*setting
, *n2
;
744 list_for_each_entry_safe(state
, n1
, &p
->states
, node
) {
745 list_for_each_entry_safe(setting
, n2
, &state
->settings
, node
) {
746 switch (setting
->type
) {
747 case PIN_MAP_TYPE_MUX_GROUP
:
748 if (state
== p
->state
)
749 pinmux_disable_setting(setting
);
750 pinmux_free_setting(setting
);
752 case PIN_MAP_TYPE_CONFIGS_PIN
:
753 case PIN_MAP_TYPE_CONFIGS_GROUP
:
754 pinconf_free_setting(setting
);
759 list_del(&setting
->node
);
762 list_del(&state
->node
);
766 pinctrl_dt_free_maps(p
);
774 * pinctrl_put() - release a previously claimed pinctrl handle
775 * @p: the pinctrl handle to release
777 void pinctrl_put(struct pinctrl
*p
)
779 mutex_lock(&pinctrl_mutex
);
780 pinctrl_put_locked(p
, true);
781 mutex_unlock(&pinctrl_mutex
);
783 EXPORT_SYMBOL_GPL(pinctrl_put
);
785 static struct pinctrl_state
*pinctrl_lookup_state_locked(struct pinctrl
*p
,
788 struct pinctrl_state
*state
;
790 state
= find_state(p
, name
);
792 if (pinctrl_dummy_state
) {
793 /* create dummy state */
794 dev_dbg(p
->dev
, "using pinctrl dummy state (%s)\n",
796 state
= create_state(p
, name
);
798 state
= ERR_PTR(-ENODEV
);
805 * pinctrl_lookup_state() - retrieves a state handle from a pinctrl handle
806 * @p: the pinctrl handle to retrieve the state from
807 * @name: the state name to retrieve
809 struct pinctrl_state
*pinctrl_lookup_state(struct pinctrl
*p
, const char *name
)
811 struct pinctrl_state
*s
;
813 mutex_lock(&pinctrl_mutex
);
814 s
= pinctrl_lookup_state_locked(p
, name
);
815 mutex_unlock(&pinctrl_mutex
);
819 EXPORT_SYMBOL_GPL(pinctrl_lookup_state
);
821 static int pinctrl_select_state_locked(struct pinctrl
*p
,
822 struct pinctrl_state
*state
)
824 struct pinctrl_setting
*setting
, *setting2
;
827 if (p
->state
== state
)
832 * The set of groups with a mux configuration in the old state
833 * may not be identical to the set of groups with a mux setting
834 * in the new state. While this might be unusual, it's entirely
835 * possible for the "user"-supplied mapping table to be written
836 * that way. For each group that was configured in the old state
837 * but not in the new state, this code puts that group into a
838 * safe/disabled state.
840 list_for_each_entry(setting
, &p
->state
->settings
, node
) {
842 if (setting
->type
!= PIN_MAP_TYPE_MUX_GROUP
)
844 list_for_each_entry(setting2
, &state
->settings
, node
) {
845 if (setting2
->type
!= PIN_MAP_TYPE_MUX_GROUP
)
847 if (setting2
->data
.mux
.group
==
848 setting
->data
.mux
.group
) {
854 pinmux_disable_setting(setting
);
860 /* Apply all the settings for the new state */
861 list_for_each_entry(setting
, &state
->settings
, node
) {
862 switch (setting
->type
) {
863 case PIN_MAP_TYPE_MUX_GROUP
:
864 ret
= pinmux_enable_setting(setting
);
866 case PIN_MAP_TYPE_CONFIGS_PIN
:
867 case PIN_MAP_TYPE_CONFIGS_GROUP
:
868 ret
= pinconf_apply_setting(setting
);
875 /* FIXME: Difficult to return to prev state */
884 * pinctrl_select() - select/activate/program a pinctrl state to HW
885 * @p: the pinctrl handle for the device that requests configuratio
886 * @state: the state handle to select/activate/program
888 int pinctrl_select_state(struct pinctrl
*p
, struct pinctrl_state
*state
)
892 mutex_lock(&pinctrl_mutex
);
893 ret
= pinctrl_select_state_locked(p
, state
);
894 mutex_unlock(&pinctrl_mutex
);
898 EXPORT_SYMBOL_GPL(pinctrl_select_state
);
900 static void devm_pinctrl_release(struct device
*dev
, void *res
)
902 pinctrl_put(*(struct pinctrl
**)res
);
906 * struct devm_pinctrl_get() - Resource managed pinctrl_get()
907 * @dev: the device to obtain the handle for
909 * If there is a need to explicitly destroy the returned struct pinctrl,
910 * devm_pinctrl_put() should be used, rather than plain pinctrl_put().
912 struct pinctrl
*devm_pinctrl_get(struct device
*dev
)
914 struct pinctrl
**ptr
, *p
;
916 ptr
= devres_alloc(devm_pinctrl_release
, sizeof(*ptr
), GFP_KERNEL
);
918 return ERR_PTR(-ENOMEM
);
920 p
= pinctrl_get(dev
);
923 devres_add(dev
, ptr
);
930 EXPORT_SYMBOL_GPL(devm_pinctrl_get
);
932 static int devm_pinctrl_match(struct device
*dev
, void *res
, void *data
)
934 struct pinctrl
**p
= res
;
940 * devm_pinctrl_put() - Resource managed pinctrl_put()
941 * @p: the pinctrl handle to release
943 * Deallocate a struct pinctrl obtained via devm_pinctrl_get(). Normally
944 * this function will not need to be called and the resource management
945 * code will ensure that the resource is freed.
947 void devm_pinctrl_put(struct pinctrl
*p
)
949 WARN_ON(devres_destroy(p
->dev
, devm_pinctrl_release
,
950 devm_pinctrl_match
, p
));
953 EXPORT_SYMBOL_GPL(devm_pinctrl_put
);
955 int pinctrl_register_map(struct pinctrl_map
const *maps
, unsigned num_maps
,
956 bool dup
, bool locked
)
959 struct pinctrl_maps
*maps_node
;
961 pr_debug("add %d pinmux maps\n", num_maps
);
963 /* First sanity check the new mapping */
964 for (i
= 0; i
< num_maps
; i
++) {
965 if (!maps
[i
].dev_name
) {
966 pr_err("failed to register map %s (%d): no device given\n",
972 pr_err("failed to register map %d: no map name given\n",
977 if (maps
[i
].type
!= PIN_MAP_TYPE_DUMMY_STATE
&&
978 !maps
[i
].ctrl_dev_name
) {
979 pr_err("failed to register map %s (%d): no pin control device given\n",
984 switch (maps
[i
].type
) {
985 case PIN_MAP_TYPE_DUMMY_STATE
:
987 case PIN_MAP_TYPE_MUX_GROUP
:
988 ret
= pinmux_validate_map(&maps
[i
], i
);
992 case PIN_MAP_TYPE_CONFIGS_PIN
:
993 case PIN_MAP_TYPE_CONFIGS_GROUP
:
994 ret
= pinconf_validate_map(&maps
[i
], i
);
999 pr_err("failed to register map %s (%d): invalid type given\n",
1005 maps_node
= kzalloc(sizeof(*maps_node
), GFP_KERNEL
);
1007 pr_err("failed to alloc struct pinctrl_maps\n");
1011 maps_node
->num_maps
= num_maps
;
1013 maps_node
->maps
= kmemdup(maps
, sizeof(*maps
) * num_maps
,
1015 if (!maps_node
->maps
) {
1016 pr_err("failed to duplicate mapping table\n");
1021 maps_node
->maps
= maps
;
1025 mutex_lock(&pinctrl_mutex
);
1026 list_add_tail(&maps_node
->node
, &pinctrl_maps
);
1028 mutex_unlock(&pinctrl_mutex
);
1034 * pinctrl_register_mappings() - register a set of pin controller mappings
1035 * @maps: the pincontrol mappings table to register. This should probably be
1036 * marked with __initdata so it can be discarded after boot. This
1037 * function will perform a shallow copy for the mapping entries.
1038 * @num_maps: the number of maps in the mapping table
1040 int pinctrl_register_mappings(struct pinctrl_map
const *maps
,
1043 return pinctrl_register_map(maps
, num_maps
, true, false);
1046 void pinctrl_unregister_map(struct pinctrl_map
const *map
)
1048 struct pinctrl_maps
*maps_node
;
1050 list_for_each_entry(maps_node
, &pinctrl_maps
, node
) {
1051 if (maps_node
->maps
== map
) {
1052 list_del(&maps_node
->node
);
1058 #ifdef CONFIG_DEBUG_FS
1060 static int pinctrl_pins_show(struct seq_file
*s
, void *what
)
1062 struct pinctrl_dev
*pctldev
= s
->private;
1063 const struct pinctrl_ops
*ops
= pctldev
->desc
->pctlops
;
1066 seq_printf(s
, "registered pins: %d\n", pctldev
->desc
->npins
);
1068 mutex_lock(&pinctrl_mutex
);
1070 /* The pin number can be retrived from the pin controller descriptor */
1071 for (i
= 0; i
< pctldev
->desc
->npins
; i
++) {
1072 struct pin_desc
*desc
;
1074 pin
= pctldev
->desc
->pins
[i
].number
;
1075 desc
= pin_desc_get(pctldev
, pin
);
1076 /* Pin space may be sparse */
1080 seq_printf(s
, "pin %d (%s) ", pin
,
1081 desc
->name
? desc
->name
: "unnamed");
1083 /* Driver-specific info per pin */
1084 if (ops
->pin_dbg_show
)
1085 ops
->pin_dbg_show(pctldev
, s
, pin
);
1090 mutex_unlock(&pinctrl_mutex
);
1095 static int pinctrl_groups_show(struct seq_file
*s
, void *what
)
1097 struct pinctrl_dev
*pctldev
= s
->private;
1098 const struct pinctrl_ops
*ops
= pctldev
->desc
->pctlops
;
1099 unsigned ngroups
, selector
= 0;
1101 ngroups
= ops
->get_groups_count(pctldev
);
1102 mutex_lock(&pinctrl_mutex
);
1104 seq_puts(s
, "registered pin groups:\n");
1105 while (selector
< ngroups
) {
1106 const unsigned *pins
;
1108 const char *gname
= ops
->get_group_name(pctldev
, selector
);
1113 ret
= ops
->get_group_pins(pctldev
, selector
,
1116 seq_printf(s
, "%s [ERROR GETTING PINS]\n",
1119 seq_printf(s
, "group: %s\n", gname
);
1120 for (i
= 0; i
< num_pins
; i
++) {
1121 pname
= pin_get_name(pctldev
, pins
[i
]);
1122 if (WARN_ON(!pname
)) {
1123 mutex_unlock(&pinctrl_mutex
);
1126 seq_printf(s
, "pin %d (%s)\n", pins
[i
], pname
);
1133 mutex_unlock(&pinctrl_mutex
);
1138 static int pinctrl_gpioranges_show(struct seq_file
*s
, void *what
)
1140 struct pinctrl_dev
*pctldev
= s
->private;
1141 struct pinctrl_gpio_range
*range
= NULL
;
1143 seq_puts(s
, "GPIO ranges handled:\n");
1145 mutex_lock(&pinctrl_mutex
);
1147 /* Loop over the ranges */
1148 list_for_each_entry(range
, &pctldev
->gpio_ranges
, node
) {
1149 seq_printf(s
, "%u: %s GPIOS [%u - %u] PINS [%u - %u]\n",
1150 range
->id
, range
->name
,
1151 range
->base
, (range
->base
+ range
->npins
- 1),
1153 (range
->pin_base
+ range
->npins
- 1));
1156 mutex_unlock(&pinctrl_mutex
);
1161 static int pinctrl_devices_show(struct seq_file
*s
, void *what
)
1163 struct pinctrl_dev
*pctldev
;
1165 seq_puts(s
, "name [pinmux] [pinconf]\n");
1167 mutex_lock(&pinctrl_mutex
);
1169 list_for_each_entry(pctldev
, &pinctrldev_list
, node
) {
1170 seq_printf(s
, "%s ", pctldev
->desc
->name
);
1171 if (pctldev
->desc
->pmxops
)
1172 seq_puts(s
, "yes ");
1175 if (pctldev
->desc
->confops
)
1182 mutex_unlock(&pinctrl_mutex
);
1187 static inline const char *map_type(enum pinctrl_map_type type
)
1189 static const char * const names
[] = {
1197 if (type
>= ARRAY_SIZE(names
))
1203 static int pinctrl_maps_show(struct seq_file
*s
, void *what
)
1205 struct pinctrl_maps
*maps_node
;
1207 struct pinctrl_map
const *map
;
1209 seq_puts(s
, "Pinctrl maps:\n");
1211 mutex_lock(&pinctrl_mutex
);
1213 for_each_maps(maps_node
, i
, map
) {
1214 seq_printf(s
, "device %s\nstate %s\ntype %s (%d)\n",
1215 map
->dev_name
, map
->name
, map_type(map
->type
),
1218 if (map
->type
!= PIN_MAP_TYPE_DUMMY_STATE
)
1219 seq_printf(s
, "controlling device %s\n",
1220 map
->ctrl_dev_name
);
1222 switch (map
->type
) {
1223 case PIN_MAP_TYPE_MUX_GROUP
:
1224 pinmux_show_map(s
, map
);
1226 case PIN_MAP_TYPE_CONFIGS_PIN
:
1227 case PIN_MAP_TYPE_CONFIGS_GROUP
:
1228 pinconf_show_map(s
, map
);
1234 seq_printf(s
, "\n");
1237 mutex_unlock(&pinctrl_mutex
);
1242 static int pinctrl_show(struct seq_file
*s
, void *what
)
1245 struct pinctrl_state
*state
;
1246 struct pinctrl_setting
*setting
;
1248 seq_puts(s
, "Requested pin control handlers their pinmux maps:\n");
1250 mutex_lock(&pinctrl_mutex
);
1252 list_for_each_entry(p
, &pinctrl_list
, node
) {
1253 seq_printf(s
, "device: %s current state: %s\n",
1255 p
->state
? p
->state
->name
: "none");
1257 list_for_each_entry(state
, &p
->states
, node
) {
1258 seq_printf(s
, " state: %s\n", state
->name
);
1260 list_for_each_entry(setting
, &state
->settings
, node
) {
1261 struct pinctrl_dev
*pctldev
= setting
->pctldev
;
1263 seq_printf(s
, " type: %s controller %s ",
1264 map_type(setting
->type
),
1265 pinctrl_dev_get_name(pctldev
));
1267 switch (setting
->type
) {
1268 case PIN_MAP_TYPE_MUX_GROUP
:
1269 pinmux_show_setting(s
, setting
);
1271 case PIN_MAP_TYPE_CONFIGS_PIN
:
1272 case PIN_MAP_TYPE_CONFIGS_GROUP
:
1273 pinconf_show_setting(s
, setting
);
1282 mutex_unlock(&pinctrl_mutex
);
1287 static int pinctrl_pins_open(struct inode
*inode
, struct file
*file
)
1289 return single_open(file
, pinctrl_pins_show
, inode
->i_private
);
1292 static int pinctrl_groups_open(struct inode
*inode
, struct file
*file
)
1294 return single_open(file
, pinctrl_groups_show
, inode
->i_private
);
1297 static int pinctrl_gpioranges_open(struct inode
*inode
, struct file
*file
)
1299 return single_open(file
, pinctrl_gpioranges_show
, inode
->i_private
);
1302 static int pinctrl_devices_open(struct inode
*inode
, struct file
*file
)
1304 return single_open(file
, pinctrl_devices_show
, NULL
);
1307 static int pinctrl_maps_open(struct inode
*inode
, struct file
*file
)
1309 return single_open(file
, pinctrl_maps_show
, NULL
);
1312 static int pinctrl_open(struct inode
*inode
, struct file
*file
)
1314 return single_open(file
, pinctrl_show
, NULL
);
1317 static const struct file_operations pinctrl_pins_ops
= {
1318 .open
= pinctrl_pins_open
,
1320 .llseek
= seq_lseek
,
1321 .release
= single_release
,
1324 static const struct file_operations pinctrl_groups_ops
= {
1325 .open
= pinctrl_groups_open
,
1327 .llseek
= seq_lseek
,
1328 .release
= single_release
,
1331 static const struct file_operations pinctrl_gpioranges_ops
= {
1332 .open
= pinctrl_gpioranges_open
,
1334 .llseek
= seq_lseek
,
1335 .release
= single_release
,
1338 static const struct file_operations pinctrl_devices_ops
= {
1339 .open
= pinctrl_devices_open
,
1341 .llseek
= seq_lseek
,
1342 .release
= single_release
,
1345 static const struct file_operations pinctrl_maps_ops
= {
1346 .open
= pinctrl_maps_open
,
1348 .llseek
= seq_lseek
,
1349 .release
= single_release
,
1352 static const struct file_operations pinctrl_ops
= {
1353 .open
= pinctrl_open
,
1355 .llseek
= seq_lseek
,
1356 .release
= single_release
,
1359 static struct dentry
*debugfs_root
;
1361 static void pinctrl_init_device_debugfs(struct pinctrl_dev
*pctldev
)
1363 struct dentry
*device_root
;
1365 device_root
= debugfs_create_dir(dev_name(pctldev
->dev
),
1367 pctldev
->device_root
= device_root
;
1369 if (IS_ERR(device_root
) || !device_root
) {
1370 pr_warn("failed to create debugfs directory for %s\n",
1371 dev_name(pctldev
->dev
));
1374 debugfs_create_file("pins", S_IFREG
| S_IRUGO
,
1375 device_root
, pctldev
, &pinctrl_pins_ops
);
1376 debugfs_create_file("pingroups", S_IFREG
| S_IRUGO
,
1377 device_root
, pctldev
, &pinctrl_groups_ops
);
1378 debugfs_create_file("gpio-ranges", S_IFREG
| S_IRUGO
,
1379 device_root
, pctldev
, &pinctrl_gpioranges_ops
);
1380 pinmux_init_device_debugfs(device_root
, pctldev
);
1381 pinconf_init_device_debugfs(device_root
, pctldev
);
1384 static void pinctrl_remove_device_debugfs(struct pinctrl_dev
*pctldev
)
1386 debugfs_remove_recursive(pctldev
->device_root
);
1389 static void pinctrl_init_debugfs(void)
1391 debugfs_root
= debugfs_create_dir("pinctrl", NULL
);
1392 if (IS_ERR(debugfs_root
) || !debugfs_root
) {
1393 pr_warn("failed to create debugfs directory\n");
1394 debugfs_root
= NULL
;
1398 debugfs_create_file("pinctrl-devices", S_IFREG
| S_IRUGO
,
1399 debugfs_root
, NULL
, &pinctrl_devices_ops
);
1400 debugfs_create_file("pinctrl-maps", S_IFREG
| S_IRUGO
,
1401 debugfs_root
, NULL
, &pinctrl_maps_ops
);
1402 debugfs_create_file("pinctrl-handles", S_IFREG
| S_IRUGO
,
1403 debugfs_root
, NULL
, &pinctrl_ops
);
1406 #else /* CONFIG_DEBUG_FS */
1408 static void pinctrl_init_device_debugfs(struct pinctrl_dev
*pctldev
)
1412 static void pinctrl_init_debugfs(void)
1416 static void pinctrl_remove_device_debugfs(struct pinctrl_dev
*pctldev
)
1422 static int pinctrl_check_ops(struct pinctrl_dev
*pctldev
)
1424 const struct pinctrl_ops
*ops
= pctldev
->desc
->pctlops
;
1427 !ops
->get_groups_count
||
1428 !ops
->get_group_name
||
1429 !ops
->get_group_pins
)
1432 if (ops
->dt_node_to_map
&& !ops
->dt_free_map
)
1439 * pinctrl_register() - register a pin controller device
1440 * @pctldesc: descriptor for this pin controller
1441 * @dev: parent device for this pin controller
1442 * @driver_data: private pin controller data for this pin controller
1444 struct pinctrl_dev
*pinctrl_register(struct pinctrl_desc
*pctldesc
,
1445 struct device
*dev
, void *driver_data
)
1447 struct pinctrl_dev
*pctldev
;
1452 if (!pctldesc
->name
)
1455 pctldev
= kzalloc(sizeof(*pctldev
), GFP_KERNEL
);
1456 if (pctldev
== NULL
) {
1457 dev_err(dev
, "failed to alloc struct pinctrl_dev\n");
1461 /* Initialize pin control device struct */
1462 pctldev
->owner
= pctldesc
->owner
;
1463 pctldev
->desc
= pctldesc
;
1464 pctldev
->driver_data
= driver_data
;
1465 INIT_RADIX_TREE(&pctldev
->pin_desc_tree
, GFP_KERNEL
);
1466 INIT_LIST_HEAD(&pctldev
->gpio_ranges
);
1469 /* check core ops for sanity */
1470 if (pinctrl_check_ops(pctldev
)) {
1471 dev_err(dev
, "pinctrl ops lacks necessary functions\n");
1475 /* If we're implementing pinmuxing, check the ops for sanity */
1476 if (pctldesc
->pmxops
) {
1477 if (pinmux_check_ops(pctldev
))
1481 /* If we're implementing pinconfig, check the ops for sanity */
1482 if (pctldesc
->confops
) {
1483 if (pinconf_check_ops(pctldev
))
1487 /* Register all the pins */
1488 dev_dbg(dev
, "try to register %d pins ...\n", pctldesc
->npins
);
1489 ret
= pinctrl_register_pins(pctldev
, pctldesc
->pins
, pctldesc
->npins
);
1491 dev_err(dev
, "error during pin registration\n");
1492 pinctrl_free_pindescs(pctldev
, pctldesc
->pins
,
1497 mutex_lock(&pinctrl_mutex
);
1499 list_add_tail(&pctldev
->node
, &pinctrldev_list
);
1501 pctldev
->p
= pinctrl_get_locked(pctldev
->dev
);
1502 if (!IS_ERR(pctldev
->p
)) {
1503 struct pinctrl_state
*s
=
1504 pinctrl_lookup_state_locked(pctldev
->p
,
1505 PINCTRL_STATE_DEFAULT
);
1507 dev_dbg(dev
, "failed to lookup the default state\n");
1509 if (pinctrl_select_state_locked(pctldev
->p
, s
))
1511 "failed to select default state\n");
1515 mutex_unlock(&pinctrl_mutex
);
1517 pinctrl_init_device_debugfs(pctldev
);
1525 EXPORT_SYMBOL_GPL(pinctrl_register
);
1528 * pinctrl_unregister() - unregister pinmux
1529 * @pctldev: pin controller to unregister
1531 * Called by pinmux drivers to unregister a pinmux.
1533 void pinctrl_unregister(struct pinctrl_dev
*pctldev
)
1535 struct pinctrl_gpio_range
*range
, *n
;
1536 if (pctldev
== NULL
)
1539 pinctrl_remove_device_debugfs(pctldev
);
1541 mutex_lock(&pinctrl_mutex
);
1543 if (!IS_ERR(pctldev
->p
))
1544 pinctrl_put_locked(pctldev
->p
, true);
1546 /* TODO: check that no pinmuxes are still active? */
1547 list_del(&pctldev
->node
);
1548 /* Destroy descriptor tree */
1549 pinctrl_free_pindescs(pctldev
, pctldev
->desc
->pins
,
1550 pctldev
->desc
->npins
);
1551 /* remove gpio ranges map */
1552 list_for_each_entry_safe(range
, n
, &pctldev
->gpio_ranges
, node
)
1553 list_del(&range
->node
);
1557 mutex_unlock(&pinctrl_mutex
);
1559 EXPORT_SYMBOL_GPL(pinctrl_unregister
);
1561 static int __init
pinctrl_init(void)
1563 pr_info("initialized pinctrl subsystem\n");
1564 pinctrl_init_debugfs();
1568 /* init early since many drivers really need to initialized pinmux early */
1569 core_initcall(pinctrl_init
);