diff options
author | Aapo Vienamo <avienamo@nvidia.com> | 2018-08-10 21:08:09 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2018-08-27 12:25:17 +0200 |
commit | f142b9d6461c4f60feb2a602bafcd582aa324288 (patch) | |
tree | e9fcf5817d0274716362a921475d6b7ba2f8f46d /drivers/soc/tegra | |
parent | 00ead3c913afe8872a428e56e2a815adb2b230d1 (diff) |
soc/tegra: pmc: Implement tegra_io_pad_is_powered()
Implement a function to query whether a pad is in deep power down mode.
This is needed by the pinctrl callbacks.
Signed-off-by: Aapo Vienamo <avienamo@nvidia.com>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/soc/tegra')
-rw-r--r-- | drivers/soc/tegra/pmc.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c index c04ff5eb7cad..d366ebcca171 100644 --- a/drivers/soc/tegra/pmc.c +++ b/drivers/soc/tegra/pmc.c @@ -1075,6 +1075,21 @@ unlock: } EXPORT_SYMBOL(tegra_io_pad_power_disable); +static int tegra_io_pad_is_powered(enum tegra_io_pad id) +{ + unsigned long request, status; + u32 mask, value; + int err; + + err = tegra_io_pad_get_dpd_register_bit(id, &request, &status, &mask); + if (err) + return err; + + value = tegra_pmc_readl(status); + + return !(value & mask); +} + int tegra_io_pad_set_voltage(enum tegra_io_pad id, enum tegra_io_pad_voltage voltage) { |