aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2012-02-24 00:53:04 -0500
committerLinus Walleij <linus.walleij@linaro.org>2012-02-29 13:10:42 -0500
commit1cf94c45ca31c0ad563e72b095782346cba26b6c (patch)
treee652152b9b46cf0efe40891e06bfdf64266d4928 /drivers/pinctrl
parent2304b4737f492b6ee9b714d8129e153af0bef989 (diff)
pinctrl: make the pinmux-pins more helpful
The debugfs file pinmux-pins used to tell which function was enabled but now states simply which device owns the pin. Being owned by the pinctrl driver itself means just that it's hogged so be a bit more helpful by printing that. ChangeLog v1->v2: - Preserve the self-referential owner field, just clarify that when the pin controller states itself as owner this means that it's hogged. Acked-by: Dong Aisheng <dong.aisheng@linaro.org> Acked-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r--drivers/pinctrl/pinmux.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/drivers/pinctrl/pinmux.c b/drivers/pinctrl/pinmux.c
index 98b89d6cffb0..2a405618b448 100644
--- a/drivers/pinctrl/pinmux.c
+++ b/drivers/pinctrl/pinmux.c
@@ -626,8 +626,8 @@ static int pinmux_pins_show(struct seq_file *s, void *what)
626 626
627 /* The pin number can be retrived from the pin controller descriptor */ 627 /* The pin number can be retrived from the pin controller descriptor */
628 for (i = 0; i < pctldev->desc->npins; i++) { 628 for (i = 0; i < pctldev->desc->npins; i++) {
629
630 struct pin_desc *desc; 629 struct pin_desc *desc;
630 bool is_hog = false;
631 631
632 pin = pctldev->desc->pins[i].number; 632 pin = pctldev->desc->pins[i].number;
633 desc = pin_desc_get(pctldev, pin); 633 desc = pin_desc_get(pctldev, pin);
@@ -635,9 +635,14 @@ static int pinmux_pins_show(struct seq_file *s, void *what)
635 if (desc == NULL) 635 if (desc == NULL)
636 continue; 636 continue;
637 637
638 seq_printf(s, "pin %d (%s): %s\n", pin, 638 if (desc->owner &&
639 !strcmp(desc->owner, pinctrl_dev_get_name(pctldev)))
640 is_hog = true;
641
642 seq_printf(s, "pin %d (%s): %s%s\n", pin,
639 desc->name ? desc->name : "unnamed", 643 desc->name ? desc->name : "unnamed",
640 desc->owner ? desc->owner : "UNCLAIMED"); 644 desc->owner ? desc->owner : "UNCLAIMED",
645 is_hog ? " (HOG)" : "");
641 } 646 }
642 647
643 return 0; 648 return 0;