2 * Core driver for the pin muxing portions of the pin control subsystem
4 * Copyright (C) 2011 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) "pinmux core: " fmt
14 #include <linux/kernel.h>
15 #include <linux/module.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/string.h>
25 #include <linux/sysfs.h>
26 #include <linux/debugfs.h>
27 #include <linux/seq_file.h>
28 #include <linux/pinctrl/machine.h>
29 #include <linux/pinctrl/pinmux.h>
32 /* List of pinmuxes */
33 static DEFINE_MUTEX(pinmux_list_mutex
);
34 static LIST_HEAD(pinmux_list
);
36 /* Global pinmux maps, we allow one set only */
37 static struct pinmux_map
*pinmux_maps
;
38 static unsigned pinmux_maps_num
;
41 * struct pinmux_group - group list item for pinmux groups
42 * @node: pinmux group list node
43 * @group_selector: the group selector for this group
46 struct list_head node
;
47 unsigned group_selector
;
51 * struct pinmux - per-device pinmux state holder
52 * @node: global list node
53 * @dev: the device using this pinmux
54 * @usecount: the number of active users of this mux setting, used to keep
55 * track of nested use cases
56 * @pins: an array of discrete physical pins used in this mapping, taken
57 * from the global pin enumeration space (copied from pinmux map)
58 * @num_pins: the number of pins in this mapping array, i.e. the number of
59 * elements in .pins so we can iterate over that array (copied from
61 * @pctldev: pin control device handling this pinmux
62 * @func_selector: the function selector for the pinmux device handling
64 * @groups: the group selectors for the pinmux device and
65 * selector combination handling this pinmux, this is a list that
66 * will be traversed on all pinmux operations such as
67 * get/put/enable/disable
68 * @mutex: a lock for the pinmux state holder
71 struct list_head node
;
74 struct pinctrl_dev
*pctldev
;
75 unsigned func_selector
;
76 struct list_head groups
;
81 * struct pinmux_hog - a list item to stash mux hogs
82 * @node: pinmux hog list node
83 * @map: map entry responsible for this hogging
84 * @pmx: the pinmux hogged by this item
87 struct list_head node
;
88 struct pinmux_map
const *map
;
93 * pin_request() - request a single pin to be muxed in, typically for GPIO
94 * @pin: the pin number in the global pin space
95 * @function: a functional name to give to this pin, passed to the driver
96 * so it knows what function to mux in, e.g. the string "gpioNN"
97 * means that you want to mux in the pin for use as GPIO number NN
98 * @gpio_range: the range matching the GPIO pin if this is a request for a
101 static int pin_request(struct pinctrl_dev
*pctldev
,
102 int pin
, const char *function
,
103 struct pinctrl_gpio_range
*gpio_range
)
105 struct pin_desc
*desc
;
106 const struct pinmux_ops
*ops
= pctldev
->desc
->pmxops
;
107 int status
= -EINVAL
;
109 dev_dbg(&pctldev
->dev
, "request pin %d for %s\n", pin
, function
);
111 desc
= pin_desc_get(pctldev
, pin
);
113 dev_err(&pctldev
->dev
,
114 "pin is not registered so it cannot be requested\n");
119 dev_err(&pctldev
->dev
, "no function name given\n");
123 spin_lock(&desc
->lock
);
124 if (desc
->mux_function
) {
125 spin_unlock(&desc
->lock
);
126 dev_err(&pctldev
->dev
,
127 "pin already requested\n");
130 desc
->mux_function
= function
;
131 spin_unlock(&desc
->lock
);
133 /* Let each pin increase references to this module */
134 if (!try_module_get(pctldev
->owner
)) {
135 dev_err(&pctldev
->dev
,
136 "could not increase module refcount for pin %d\n",
143 * If there is no kind of request function for the pin we just assume
144 * we got it by default and proceed.
146 if (gpio_range
&& ops
->gpio_request_enable
)
147 /* This requests and enables a single GPIO pin */
148 status
= ops
->gpio_request_enable(pctldev
, gpio_range
, pin
);
149 else if (ops
->request
)
150 status
= ops
->request(pctldev
, pin
);
155 dev_err(&pctldev
->dev
, "->request on device %s failed "
157 pctldev
->desc
->name
, pin
);
160 spin_lock(&desc
->lock
);
161 desc
->mux_function
= NULL
;
162 spin_unlock(&desc
->lock
);
166 dev_err(&pctldev
->dev
, "pin-%d (%s) status %d\n",
167 pin
, function
? : "?", status
);
173 * pin_free() - release a single muxed in pin so something else can be muxed
174 * @pctldev: pin controller device handling this pin
175 * @pin: the pin to free
176 * @gpio_range: the range matching the GPIO pin if this is a request for a
179 * This function returns a pointer to the function name in use. This is used
180 * for callers that dynamically allocate a function name so it can be freed
181 * once the pin is free. This is done for GPIO request functions.
183 static const char *pin_free(struct pinctrl_dev
*pctldev
, int pin
,
184 struct pinctrl_gpio_range
*gpio_range
)
186 const struct pinmux_ops
*ops
= pctldev
->desc
->pmxops
;
187 struct pin_desc
*desc
;
190 desc
= pin_desc_get(pctldev
, pin
);
192 dev_err(&pctldev
->dev
,
193 "pin is not registered so it cannot be freed\n");
198 * If there is no kind of request function for the pin we just assume
199 * we got it by default and proceed.
201 if (gpio_range
&& ops
->gpio_disable_free
)
202 ops
->gpio_disable_free(pctldev
, gpio_range
, pin
);
204 ops
->free(pctldev
, pin
);
206 spin_lock(&desc
->lock
);
207 func
= desc
->mux_function
;
208 desc
->mux_function
= NULL
;
209 spin_unlock(&desc
->lock
);
210 module_put(pctldev
->owner
);
216 * pinmux_request_gpio() - request a single pin to be muxed in as GPIO
217 * @gpio: the GPIO pin number from the GPIO subsystem number space
219 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
220 * as part of their gpio_request() semantics, platforms and individual drivers
221 * shall *NOT* request GPIO pins to be muxed in.
223 int pinmux_request_gpio(unsigned gpio
)
226 const char *function
;
227 struct pinctrl_dev
*pctldev
;
228 struct pinctrl_gpio_range
*range
;
232 ret
= pinctrl_get_device_gpio_range(gpio
, &pctldev
, &range
);
236 /* Convert to the pin controllers number space */
237 pin
= gpio
- range
->base
+ range
->pin_base
;
239 /* Conjure some name stating what chip and pin this is taken by */
240 snprintf(gpiostr
, 15, "%s:%d", range
->name
, gpio
);
242 function
= kstrdup(gpiostr
, GFP_KERNEL
);
246 ret
= pin_request(pctldev
, pin
, function
, range
);
252 EXPORT_SYMBOL_GPL(pinmux_request_gpio
);
255 * pinmux_free_gpio() - free a single pin, currently used as GPIO
256 * @gpio: the GPIO pin number from the GPIO subsystem number space
258 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
259 * as part of their gpio_free() semantics, platforms and individual drivers
260 * shall *NOT* request GPIO pins to be muxed out.
262 void pinmux_free_gpio(unsigned gpio
)
264 struct pinctrl_dev
*pctldev
;
265 struct pinctrl_gpio_range
*range
;
270 ret
= pinctrl_get_device_gpio_range(gpio
, &pctldev
, &range
);
274 /* Convert to the pin controllers number space */
275 pin
= gpio
- range
->base
+ range
->pin_base
;
277 func
= pin_free(pctldev
, pin
, range
);
280 EXPORT_SYMBOL_GPL(pinmux_free_gpio
);
282 static int pinmux_gpio_direction(unsigned gpio
, bool input
)
284 struct pinctrl_dev
*pctldev
;
285 struct pinctrl_gpio_range
*range
;
286 const struct pinmux_ops
*ops
;
290 ret
= pinctrl_get_device_gpio_range(gpio
, &pctldev
, &range
);
294 ops
= pctldev
->desc
->pmxops
;
296 /* Convert to the pin controllers number space */
297 pin
= gpio
- range
->base
+ range
->pin_base
;
299 if (ops
->gpio_set_direction
)
300 ret
= ops
->gpio_set_direction(pctldev
, range
, pin
, input
);
308 * pinmux_gpio_direction_input() - request a GPIO pin to go into input mode
309 * @gpio: the GPIO pin number from the GPIO subsystem number space
311 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
312 * as part of their gpio_direction_input() semantics, platforms and individual
313 * drivers shall *NOT* touch pinmux GPIO calls.
315 int pinmux_gpio_direction_input(unsigned gpio
)
317 return pinmux_gpio_direction(gpio
, true);
319 EXPORT_SYMBOL_GPL(pinmux_gpio_direction_input
);
322 * pinmux_gpio_direction_output() - request a GPIO pin to go into output mode
323 * @gpio: the GPIO pin number from the GPIO subsystem number space
325 * This function should *ONLY* be used from gpiolib-based GPIO drivers,
326 * as part of their gpio_direction_output() semantics, platforms and individual
327 * drivers shall *NOT* touch pinmux GPIO calls.
329 int pinmux_gpio_direction_output(unsigned gpio
)
331 return pinmux_gpio_direction(gpio
, false);
333 EXPORT_SYMBOL_GPL(pinmux_gpio_direction_output
);
336 * pinmux_register_mappings() - register a set of pinmux mappings
337 * @maps: the pinmux mappings table to register, this should be marked with
338 * __initdata so it can be discarded after boot, this function will
339 * perform a shallow copy for the mapping entries.
340 * @num_maps: the number of maps in the mapping table
342 * Only call this once during initialization of your machine, the function is
343 * tagged as __init and won't be callable after init has completed. The map
344 * passed into this function will be owned by the pinmux core and cannot be
347 int __init
pinmux_register_mappings(struct pinmux_map
const *maps
,
353 if (pinmux_maps_num
!= 0) {
354 pr_err("pinmux mappings already registered, you can only "
355 "register one set of maps\n");
359 pr_debug("add %d pinmux maps\n", num_maps
);
362 * Make a copy of the map array - string pointers will end up in the
363 * kernel const section anyway so these do not need to be deep copied.
365 pinmux_maps
= kmemdup(maps
, sizeof(struct pinmux_map
) * num_maps
,
370 for (i
= 0; i
< num_maps
; i
++) {
371 /* Sanity check the mapping while copying it */
373 pr_err("failed to register map %d: "
374 "no map name given\n", i
);
379 if (!maps
[i
].ctrl_dev
&& !maps
[i
].ctrl_dev_name
) {
380 pr_err("failed to register map %s (%d): "
381 "no pin control device given\n",
387 if (!maps
[i
].function
) {
388 pr_err("failed to register map %s (%d): "
389 "no function ID given\n", maps
[i
].name
, i
);
394 if (!maps
[i
].dev
&& !maps
[i
].dev_name
)
395 pr_debug("add system map %s function %s with no device\n",
399 pr_debug("register map %s, function %s\n",
416 * acquire_pins() - acquire all the pins for a certain funcion on a pinmux
417 * @pctldev: the device to take the pins on
418 * @func_selector: the function selector to acquire the pins for
419 * @group_selector: the group selector containing the pins to acquire
421 static int acquire_pins(struct pinctrl_dev
*pctldev
,
422 unsigned func_selector
,
423 unsigned group_selector
)
425 const struct pinctrl_ops
*pctlops
= pctldev
->desc
->pctlops
;
426 const struct pinmux_ops
*pmxops
= pctldev
->desc
->pmxops
;
427 const char *func
= pmxops
->get_function_name(pctldev
,
429 const unsigned *pins
;
434 ret
= pctlops
->get_group_pins(pctldev
, group_selector
,
439 dev_dbg(&pctldev
->dev
, "requesting the %u pins from group %u\n",
440 num_pins
, group_selector
);
442 /* Try to allocate all pins in this group, one by one */
443 for (i
= 0; i
< num_pins
; i
++) {
444 ret
= pin_request(pctldev
, pins
[i
], func
, NULL
);
446 dev_err(&pctldev
->dev
,
447 "could not get pin %d for function %s "
448 "on device %s - conflicting mux mappings?\n",
449 pins
[i
], func
? : "(undefined)",
450 pinctrl_dev_get_name(pctldev
));
451 /* On error release all taken pins */
452 i
--; /* this pin just failed */
454 pin_free(pctldev
, pins
[i
], NULL
);
462 * release_pins() - release pins taken by earlier acquirement
463 * @pctldev: the device to free the pinx on
464 * @group_selector: the group selector containing the pins to free
466 static void release_pins(struct pinctrl_dev
*pctldev
,
467 unsigned group_selector
)
469 const struct pinctrl_ops
*pctlops
= pctldev
->desc
->pctlops
;
470 const unsigned *pins
;
475 ret
= pctlops
->get_group_pins(pctldev
, group_selector
,
478 dev_err(&pctldev
->dev
, "could not get pins to release for "
479 "group selector %d\n",
483 for (i
= 0; i
< num_pins
; i
++)
484 pin_free(pctldev
, pins
[i
], NULL
);
488 * pinmux_check_pin_group() - check function and pin group combo
489 * @pctldev: device to check the pin group vs function for
490 * @func_selector: the function selector to check the pin group for, we have
491 * already looked this up in the calling function
492 * @pin_group: the pin group to match to the function
494 * This function will check that the pinmux driver can supply the
495 * selected pin group for a certain function, returns the group selector if
496 * the group and function selector will work fine together, else returns
499 static int pinmux_check_pin_group(struct pinctrl_dev
*pctldev
,
500 unsigned func_selector
,
501 const char *pin_group
)
503 const struct pinmux_ops
*pmxops
= pctldev
->desc
->pmxops
;
504 const struct pinctrl_ops
*pctlops
= pctldev
->desc
->pctlops
;
508 * If the driver does not support different pin groups for the
509 * functions, we only support group 0, and assume this exists.
511 if (!pctlops
|| !pctlops
->list_groups
)
515 * Passing NULL (no specific group) will select the first and
516 * hopefully only group of pins available for this function.
519 char const * const *groups
;
522 ret
= pmxops
->get_function_groups(pctldev
, func_selector
,
523 &groups
, &num_groups
);
528 ret
= pinctrl_get_group_selector(pctldev
, groups
[0]);
530 dev_err(&pctldev
->dev
,
531 "function %s wants group %s but the pin "
532 "controller does not seem to have that group\n",
533 pmxops
->get_function_name(pctldev
, func_selector
),
539 dev_dbg(&pctldev
->dev
,
540 "function %s support more than one group, "
541 "default-selecting first group %s (%d)\n",
542 pmxops
->get_function_name(pctldev
, func_selector
),
549 dev_dbg(&pctldev
->dev
,
550 "check if we have pin group %s on controller %s\n",
551 pin_group
, pinctrl_dev_get_name(pctldev
));
553 ret
= pinctrl_get_group_selector(pctldev
, pin_group
);
555 dev_dbg(&pctldev
->dev
,
556 "%s does not support pin group %s with function %s\n",
557 pinctrl_dev_get_name(pctldev
),
559 pmxops
->get_function_name(pctldev
, func_selector
));
565 * pinmux_search_function() - check pin control driver for a certain function
566 * @pctldev: device to check for function and position
567 * @map: function map containing the function and position to look for
568 * @func_selector: returns the applicable function selector if found
569 * @group_selector: returns the applicable group selector if found
571 * This will search the pinmux driver for an applicable
572 * function with a specific pin group, returns 0 if these can be mapped
575 static int pinmux_search_function(struct pinctrl_dev
*pctldev
,
576 struct pinmux_map
const *map
,
577 unsigned *func_selector
,
578 unsigned *group_selector
)
580 const struct pinmux_ops
*ops
= pctldev
->desc
->pmxops
;
581 unsigned selector
= 0;
583 /* See if this pctldev has this function */
584 while (ops
->list_functions(pctldev
, selector
) >= 0) {
585 const char *fname
= ops
->get_function_name(pctldev
,
589 if (!strcmp(map
->function
, fname
)) {
590 /* Found the function, check pin group */
591 ret
= pinmux_check_pin_group(pctldev
, selector
,
596 /* This function and group selector can be used */
597 *func_selector
= selector
;
598 *group_selector
= ret
;
605 pr_err("%s does not support function %s\n",
606 pinctrl_dev_get_name(pctldev
), map
->function
);
611 * pinmux_enable_muxmap() - enable a map entry for a certain pinmux
613 static int pinmux_enable_muxmap(struct pinctrl_dev
*pctldev
,
617 struct pinmux_map
const *map
)
619 unsigned func_selector
;
620 unsigned group_selector
;
621 struct pinmux_group
*grp
;
625 * Note that we're not locking the pinmux mutex here, because
626 * this is only called at pinmux initialization time when it
627 * has not been added to any list and thus is not reachable
631 if (pmx
->pctldev
&& pmx
->pctldev
!= pctldev
) {
632 dev_err(&pctldev
->dev
,
633 "different pin control devices given for device %s, "
640 pmx
->pctldev
= pctldev
;
642 /* Now go into the driver and try to match a function and group */
643 ret
= pinmux_search_function(pctldev
, map
, &func_selector
,
649 * If the function selector is already set, it needs to be identical,
650 * we support several groups with one function but not several
651 * functions with one or several groups in the same pinmux.
653 if (pmx
->func_selector
!= UINT_MAX
&&
654 pmx
->func_selector
!= func_selector
) {
655 dev_err(&pctldev
->dev
,
656 "dual function defines in the map for device %s\n",
660 pmx
->func_selector
= func_selector
;
662 /* Now add this group selector, we may have many of them */
663 grp
= kmalloc(sizeof(struct pinmux_group
), GFP_KERNEL
);
666 grp
->group_selector
= group_selector
;
667 ret
= acquire_pins(pctldev
, func_selector
, group_selector
);
672 list_add(&grp
->node
, &pmx
->groups
);
677 static void pinmux_free_groups(struct pinmux
*pmx
)
679 struct list_head
*node
, *tmp
;
681 list_for_each_safe(node
, tmp
, &pmx
->groups
) {
682 struct pinmux_group
*grp
=
683 list_entry(node
, struct pinmux_group
, node
);
684 /* Release all pins taken by this group */
685 release_pins(pmx
->pctldev
, grp
->group_selector
);
692 * pinmux_get() - retrieves the pinmux for a certain device
693 * @dev: the device to get the pinmux for
694 * @name: an optional specific mux mapping name or NULL, the name is only
695 * needed if you want to have more than one mapping per device, or if you
696 * need an anonymous pinmux (not tied to any specific device)
698 struct pinmux
*pinmux_get(struct device
*dev
, const char *name
)
701 struct pinmux_map
const *map
= NULL
;
702 struct pinctrl_dev
*pctldev
= NULL
;
703 const char *devname
= NULL
;
706 unsigned num_maps
= 0;
710 /* We must have dev or ID or both */
712 return ERR_PTR(-EINVAL
);
715 devname
= dev_name(dev
);
717 pr_debug("get mux %s for device %s\n", name
,
718 devname
? devname
: "(none)");
721 * create the state cookie holder struct pinmux for each
722 * mapping, this is what consumers will get when requesting
723 * a pinmux handle with pinmux_get()
725 pmx
= kzalloc(sizeof(struct pinmux
), GFP_KERNEL
);
727 return ERR_PTR(-ENOMEM
);
728 mutex_init(&pmx
->mutex
);
729 pmx
->func_selector
= UINT_MAX
;
730 INIT_LIST_HEAD(&pmx
->groups
);
732 /* Iterate over the pinmux maps to locate the right ones */
733 for (i
= 0; i
< pinmux_maps_num
; i
++) {
734 map
= &pinmux_maps
[i
];
738 * First, try to find the pctldev given in the map
740 pctldev
= get_pinctrl_dev_from_dev(map
->ctrl_dev
,
743 const char *devname
= NULL
;
746 devname
= dev_name(map
->ctrl_dev
);
747 else if (map
->ctrl_dev_name
)
748 devname
= map
->ctrl_dev_name
;
750 pr_warning("could not find a pinctrl device for pinmux "
751 "function %s, fishy, they shall all have one\n",
753 pr_warning("given pinctrl device name: %s",
754 devname
? devname
: "UNDEFINED");
756 /* Continue to check the other mappings anyway... */
760 pr_debug("in map, found pctldev %s to handle function %s",
761 dev_name(&pctldev
->dev
), map
->function
);
765 * If we're looking for a specific named map, this must match,
766 * else we loop and look for the next.
769 if (map
->name
== NULL
)
771 if (strcmp(map
->name
, name
))
776 * This is for the case where no device name is given, we
777 * already know that the function name matches from above
780 if (!map
->dev_name
&& (name
!= NULL
))
783 /* If the mapping has a device set up it must match */
785 (!devname
|| !strcmp(map
->dev_name
, devname
)))
789 /* If this map is applicable, then apply it */
791 ret
= pinmux_enable_muxmap(pctldev
, pmx
, dev
,
794 pinmux_free_groups(pmx
);
803 /* We should have atleast one map, right */
805 pr_err("could not find any mux maps for device %s, ID %s\n",
806 devname
? devname
: "(anonymous)",
807 name
? name
: "(undefined)");
809 return ERR_PTR(-EINVAL
);
812 pr_debug("found %u mux maps for device %s, UD %s\n",
814 devname
? devname
: "(anonymous)",
815 name
? name
: "(undefined)");
817 /* Add the pinmux to the global list */
818 mutex_lock(&pinmux_list_mutex
);
819 list_add(&pmx
->node
, &pinmux_list
);
820 mutex_unlock(&pinmux_list_mutex
);
824 EXPORT_SYMBOL_GPL(pinmux_get
);
827 * pinmux_put() - release a previously claimed pinmux
828 * @pmx: a pinmux previously claimed by pinmux_get()
830 void pinmux_put(struct pinmux
*pmx
)
835 mutex_lock(&pmx
->mutex
);
837 pr_warn("releasing pinmux with active users!\n");
838 /* Free the groups and all acquired pins */
839 pinmux_free_groups(pmx
);
840 mutex_unlock(&pmx
->mutex
);
842 /* Remove from list */
843 mutex_lock(&pinmux_list_mutex
);
844 list_del(&pmx
->node
);
845 mutex_unlock(&pinmux_list_mutex
);
849 EXPORT_SYMBOL_GPL(pinmux_put
);
852 * pinmux_enable() - enable a certain pinmux setting
853 * @pmx: the pinmux to enable, previously claimed by pinmux_get()
855 int pinmux_enable(struct pinmux
*pmx
)
861 mutex_lock(&pmx
->mutex
);
862 if (pmx
->usecount
++ == 0) {
863 struct pinctrl_dev
*pctldev
= pmx
->pctldev
;
864 const struct pinmux_ops
*ops
= pctldev
->desc
->pmxops
;
865 struct pinmux_group
*grp
;
867 list_for_each_entry(grp
, &pmx
->groups
, node
) {
868 ret
= ops
->enable(pctldev
, pmx
->func_selector
,
869 grp
->group_selector
);
872 * TODO: call disable() on all groups we called
873 * enable() on to this point?
880 mutex_unlock(&pmx
->mutex
);
883 EXPORT_SYMBOL_GPL(pinmux_enable
);
886 * pinmux_disable() - disable a certain pinmux setting
887 * @pmx: the pinmux to disable, previously claimed by pinmux_get()
889 void pinmux_disable(struct pinmux
*pmx
)
894 mutex_lock(&pmx
->mutex
);
895 if (--pmx
->usecount
== 0) {
896 struct pinctrl_dev
*pctldev
= pmx
->pctldev
;
897 const struct pinmux_ops
*ops
= pctldev
->desc
->pmxops
;
898 struct pinmux_group
*grp
;
900 list_for_each_entry(grp
, &pmx
->groups
, node
) {
901 ops
->disable(pctldev
, pmx
->func_selector
,
902 grp
->group_selector
);
905 mutex_unlock(&pmx
->mutex
);
907 EXPORT_SYMBOL_GPL(pinmux_disable
);
909 int pinmux_check_ops(const struct pinmux_ops
*ops
)
911 /* Check that we implement required operations */
912 if (!ops
->list_functions
||
913 !ops
->get_function_name
||
914 !ops
->get_function_groups
||
922 /* Hog a single map entry and add to the hoglist */
923 static int pinmux_hog_map(struct pinctrl_dev
*pctldev
,
924 struct pinmux_map
const *map
)
926 struct pinmux_hog
*hog
;
930 if (map
->dev
|| map
->dev_name
) {
932 * TODO: the day we have device tree support, we can
933 * traverse the device tree and hog to specific device nodes
934 * without any problems, so then we can hog pinmuxes for
935 * all devices that just want a static pin mux at this point.
937 dev_err(&pctldev
->dev
, "map %s wants to hog a non-system "
938 "pinmux, this is not going to work\n", map
->name
);
942 hog
= kzalloc(sizeof(struct pinmux_hog
), GFP_KERNEL
);
946 pmx
= pinmux_get(NULL
, map
->name
);
949 dev_err(&pctldev
->dev
,
950 "could not get the %s pinmux mapping for hogging\n",
955 ret
= pinmux_enable(pmx
);
959 dev_err(&pctldev
->dev
,
960 "could not enable the %s pinmux mapping for hogging\n",
968 dev_info(&pctldev
->dev
, "hogged map %s, function %s\n", map
->name
,
970 mutex_lock(&pctldev
->pinmux_hogs_lock
);
971 list_add(&hog
->node
, &pctldev
->pinmux_hogs
);
972 mutex_unlock(&pctldev
->pinmux_hogs_lock
);
978 * pinmux_hog_maps() - hog specific map entries on controller device
979 * @pctldev: the pin control device to hog entries on
981 * When the pin controllers are registered, there may be some specific pinmux
982 * map entries that need to be hogged, i.e. get+enabled until the system shuts
985 int pinmux_hog_maps(struct pinctrl_dev
*pctldev
)
987 struct device
*dev
= &pctldev
->dev
;
988 const char *devname
= dev_name(dev
);
992 INIT_LIST_HEAD(&pctldev
->pinmux_hogs
);
993 mutex_init(&pctldev
->pinmux_hogs_lock
);
995 for (i
= 0; i
< pinmux_maps_num
; i
++) {
996 struct pinmux_map
const *map
= &pinmux_maps
[i
];
998 if (((map
->ctrl_dev
== dev
) ||
999 !strcmp(map
->ctrl_dev_name
, devname
)) &&
1001 /* OK time to hog! */
1002 ret
= pinmux_hog_map(pctldev
, map
);
1011 * pinmux_unhog_maps() - unhog specific map entries on controller device
1012 * @pctldev: the pin control device to unhog entries on
1014 void pinmux_unhog_maps(struct pinctrl_dev
*pctldev
)
1016 struct list_head
*node
, *tmp
;
1018 mutex_lock(&pctldev
->pinmux_hogs_lock
);
1019 list_for_each_safe(node
, tmp
, &pctldev
->pinmux_hogs
) {
1020 struct pinmux_hog
*hog
=
1021 list_entry(node
, struct pinmux_hog
, node
);
1022 pinmux_disable(hog
->pmx
);
1023 pinmux_put(hog
->pmx
);
1027 mutex_unlock(&pctldev
->pinmux_hogs_lock
);
1030 #ifdef CONFIG_DEBUG_FS
1032 /* Called from pincontrol core */
1033 static int pinmux_functions_show(struct seq_file
*s
, void *what
)
1035 struct pinctrl_dev
*pctldev
= s
->private;
1036 const struct pinmux_ops
*pmxops
= pctldev
->desc
->pmxops
;
1037 unsigned func_selector
= 0;
1039 while (pmxops
->list_functions(pctldev
, func_selector
) >= 0) {
1040 const char *func
= pmxops
->get_function_name(pctldev
,
1042 const char * const *groups
;
1043 unsigned num_groups
;
1047 ret
= pmxops
->get_function_groups(pctldev
, func_selector
,
1048 &groups
, &num_groups
);
1050 seq_printf(s
, "function %s: COULD NOT GET GROUPS\n",
1053 seq_printf(s
, "function: %s, groups = [ ", func
);
1054 for (i
= 0; i
< num_groups
; i
++)
1055 seq_printf(s
, "%s ", groups
[i
]);
1065 static int pinmux_pins_show(struct seq_file
*s
, void *what
)
1067 struct pinctrl_dev
*pctldev
= s
->private;
1070 seq_puts(s
, "Pinmux settings per pin\n");
1071 seq_puts(s
, "Format: pin (name): pinmuxfunction\n");
1073 /* The highest pin number need to be included in the loop, thus <= */
1074 for (pin
= 0; pin
<= pctldev
->desc
->maxpin
; pin
++) {
1076 struct pin_desc
*desc
;
1078 desc
= pin_desc_get(pctldev
, pin
);
1079 /* Pin space may be sparse */
1083 seq_printf(s
, "pin %d (%s): %s\n", pin
,
1084 desc
->name
? desc
->name
: "unnamed",
1085 desc
->mux_function
? desc
->mux_function
1092 static int pinmux_hogs_show(struct seq_file
*s
, void *what
)
1094 struct pinctrl_dev
*pctldev
= s
->private;
1095 struct pinmux_hog
*hog
;
1097 seq_puts(s
, "Pinmux map hogs held by device\n");
1099 list_for_each_entry(hog
, &pctldev
->pinmux_hogs
, node
)
1100 seq_printf(s
, "%s\n", hog
->map
->name
);
1105 static int pinmux_show(struct seq_file
*s
, void *what
)
1109 seq_puts(s
, "Requested pinmuxes and their maps:\n");
1110 list_for_each_entry(pmx
, &pinmux_list
, node
) {
1111 struct pinctrl_dev
*pctldev
= pmx
->pctldev
;
1112 const struct pinmux_ops
*pmxops
;
1113 const struct pinctrl_ops
*pctlops
;
1114 struct pinmux_group
*grp
;
1117 seq_puts(s
, "NO PIN CONTROLLER DEVICE\n");
1121 pmxops
= pctldev
->desc
->pmxops
;
1122 pctlops
= pctldev
->desc
->pctlops
;
1124 seq_printf(s
, "device: %s function: %s (%u),",
1125 pinctrl_dev_get_name(pmx
->pctldev
),
1126 pmxops
->get_function_name(pctldev
, pmx
->func_selector
),
1127 pmx
->func_selector
);
1129 seq_printf(s
, " groups: [");
1130 list_for_each_entry(grp
, &pmx
->groups
, node
) {
1131 seq_printf(s
, " %s (%u)",
1132 pctlops
->get_group_name(pctldev
, grp
->group_selector
),
1133 grp
->group_selector
);
1135 seq_printf(s
, " ]");
1137 seq_printf(s
, " users: %u map-> %s\n",
1139 pmx
->dev
? dev_name(pmx
->dev
) : "(system)");
1145 static int pinmux_maps_show(struct seq_file
*s
, void *what
)
1149 seq_puts(s
, "Pinmux maps:\n");
1151 for (i
= 0; i
< pinmux_maps_num
; i
++) {
1152 struct pinmux_map
const *map
= &pinmux_maps
[i
];
1154 seq_printf(s
, "%s:\n", map
->name
);
1155 if (map
->dev
|| map
->dev_name
)
1156 seq_printf(s
, " device: %s\n",
1157 map
->dev
? dev_name(map
->dev
) :
1160 seq_printf(s
, " SYSTEM MUX\n");
1161 seq_printf(s
, " controlling device %s\n",
1162 map
->ctrl_dev
? dev_name(map
->ctrl_dev
) :
1163 map
->ctrl_dev_name
);
1164 seq_printf(s
, " function: %s\n", map
->function
);
1165 seq_printf(s
, " group: %s\n", map
->group
? map
->group
:
1171 static int pinmux_functions_open(struct inode
*inode
, struct file
*file
)
1173 return single_open(file
, pinmux_functions_show
, inode
->i_private
);
1176 static int pinmux_pins_open(struct inode
*inode
, struct file
*file
)
1178 return single_open(file
, pinmux_pins_show
, inode
->i_private
);
1181 static int pinmux_hogs_open(struct inode
*inode
, struct file
*file
)
1183 return single_open(file
, pinmux_hogs_show
, inode
->i_private
);
1186 static int pinmux_open(struct inode
*inode
, struct file
*file
)
1188 return single_open(file
, pinmux_show
, NULL
);
1191 static int pinmux_maps_open(struct inode
*inode
, struct file
*file
)
1193 return single_open(file
, pinmux_maps_show
, NULL
);
1196 static const struct file_operations pinmux_functions_ops
= {
1197 .open
= pinmux_functions_open
,
1199 .llseek
= seq_lseek
,
1200 .release
= single_release
,
1203 static const struct file_operations pinmux_pins_ops
= {
1204 .open
= pinmux_pins_open
,
1206 .llseek
= seq_lseek
,
1207 .release
= single_release
,
1210 static const struct file_operations pinmux_hogs_ops
= {
1211 .open
= pinmux_hogs_open
,
1213 .llseek
= seq_lseek
,
1214 .release
= single_release
,
1217 static const struct file_operations pinmux_ops
= {
1218 .open
= pinmux_open
,
1220 .llseek
= seq_lseek
,
1221 .release
= single_release
,
1224 static const struct file_operations pinmux_maps_ops
= {
1225 .open
= pinmux_maps_open
,
1227 .llseek
= seq_lseek
,
1228 .release
= single_release
,
1231 void pinmux_init_device_debugfs(struct dentry
*devroot
,
1232 struct pinctrl_dev
*pctldev
)
1234 debugfs_create_file("pinmux-functions", S_IFREG
| S_IRUGO
,
1235 devroot
, pctldev
, &pinmux_functions_ops
);
1236 debugfs_create_file("pinmux-pins", S_IFREG
| S_IRUGO
,
1237 devroot
, pctldev
, &pinmux_pins_ops
);
1238 debugfs_create_file("pinmux-hogs", S_IFREG
| S_IRUGO
,
1239 devroot
, pctldev
, &pinmux_hogs_ops
);
1242 void pinmux_init_debugfs(struct dentry
*subsys_root
)
1244 debugfs_create_file("pinmuxes", S_IFREG
| S_IRUGO
,
1245 subsys_root
, NULL
, &pinmux_ops
);
1246 debugfs_create_file("pinmux-maps", S_IFREG
| S_IRUGO
,
1247 subsys_root
, NULL
, &pinmux_maps_ops
);
1250 #endif /* CONFIG_DEBUG_FS */