mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
pinctrl: pinctrl-single: add debugfs pin h/w state info
Adds support for displaying the individual pin h/w config state. Signed-off-by: Matt Porter <mporter@ti.com> Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
4401e2989b
commit
7d66ce7f8c
1 changed files with 9 additions and 1 deletions
|
@ -246,7 +246,15 @@ static void pcs_pin_dbg_show(struct pinctrl_dev *pctldev,
|
||||||
struct seq_file *s,
|
struct seq_file *s,
|
||||||
unsigned offset)
|
unsigned offset)
|
||||||
{
|
{
|
||||||
seq_printf(s, " " DRIVER_NAME);
|
struct pcs_device *pcs;
|
||||||
|
unsigned val;
|
||||||
|
|
||||||
|
pcs = pinctrl_dev_get_drvdata(pctldev);
|
||||||
|
|
||||||
|
val = pcs->read(pcs->base + offset);
|
||||||
|
val &= pcs->fmask;
|
||||||
|
|
||||||
|
seq_printf(s, "%08x %s " , val, DRIVER_NAME);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pcs_dt_free_map(struct pinctrl_dev *pctldev,
|
static void pcs_dt_free_map(struct pinctrl_dev *pctldev,
|
||||||
|
|
Loading…
Add table
Reference in a new issue