linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] pinctrl: soc/tegra: Add support to configure IO rail voltage and pad power states
@ 2016-04-12 14:56 Laxman Dewangan
  2016-04-12 14:56 ` [PATCH 1/7] soc/tegra: pmc: Use BIT macro for register field definition Laxman Dewangan
                   ` (6 more replies)
  0 siblings, 7 replies; 59+ messages in thread
From: Laxman Dewangan @ 2016-04-12 14:56 UTC (permalink / raw)
  To: swarren, thierry.reding, linus.walleij, gnurou, robh+dt,
	mark.rutland, jonathanh
  Cc: linux-tegra, devicetree, linux-kernel, linux-gpio, Laxman Dewangan

NVIDIA Tegra210 supports the IO pads which can operate at 1.8V
or 3.3V I/O voltage levels. Also the IO pads can be configured
for power down state if it is not used. SW needs to configure the
voltage level of IO pads based on IO rail voltage and its power
state based on platform usage.
    
The voltage rail configuration and pad power states are done in
Tegra PMC registers.

This series add the required interface in soc/tegra/pmc for required
configruations.  This series also add the pincontrol driver for tegra210
IO pads conifguration. This will helps to provide framework for IO pad
configurations via pincontrol DT support and pincontrol dynamic
configruations.

Laxman Dewangan (7):
  soc/tegra: pmc: Use BIT macro for register field definition
  soc/tegra: pmc: Add new Tegra210 IO rails
  soc/tegra: pmc: Add interface to get IO rail power status
  soc/tegra: pmc: Add interface to set voltage of IO rails
  soc/tegra: pmc: Register sub-devices of PMC
  pinctrl: tegra: Add DT binding for io pads control
  pinctrl: tegra: Add driver to configure voltage and power state of io
    pads

 .../bindings/pinctrl/nvidia,tegra210-io-pad.txt    | 102 +++++++
 drivers/pinctrl/tegra/Kconfig                      |  11 +
 drivers/pinctrl/tegra/Makefile                     |   1 +
 drivers/pinctrl/tegra/pinctrl-tegra210-io-pad.c    | 302 +++++++++++++++++++++
 drivers/soc/tegra/pmc.c                            | 159 +++++++++--
 .../dt-bindings/pinctrl/pinctrl-tegra210-io-pad.h  |  24 ++
 include/soc/tegra/pmc.h                            |  52 ++++
 7 files changed, 630 insertions(+), 21 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/nvidia,tegra210-io-pad.txt
 create mode 100644 drivers/pinctrl/tegra/pinctrl-tegra210-io-pad.c
 create mode 100644 include/dt-bindings/pinctrl/pinctrl-tegra210-io-pad.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2016-04-26 15:31 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-12 14:56 [PATCH 0/7] pinctrl: soc/tegra: Add support to configure IO rail voltage and pad power states Laxman Dewangan
2016-04-12 14:56 ` [PATCH 1/7] soc/tegra: pmc: Use BIT macro for register field definition Laxman Dewangan
2016-04-12 15:26   ` Thierry Reding
2016-04-12 16:58     ` Laxman Dewangan
2016-04-15  7:44     ` Linus Walleij
2016-04-12 14:56 ` [PATCH 2/7] soc/tegra: pmc: Add new Tegra210 IO rails Laxman Dewangan
2016-04-12 15:28   ` Thierry Reding
2016-04-12 16:59     ` Laxman Dewangan
2016-04-12 18:03       ` Jon Hunter
2016-04-12 17:57         ` Laxman Dewangan
2016-04-12 14:56 ` [PATCH 3/7] soc/tegra: pmc: Add interface to get IO rail power status Laxman Dewangan
2016-04-12 18:06   ` kbuild test robot
2016-04-12 18:13   ` Jon Hunter
2016-04-12 14:56 ` [PATCH 4/7] soc/tegra: pmc: Add interface to set voltage of IO rails Laxman Dewangan
2016-04-13  8:47   ` Jon Hunter
2016-04-13  9:00     ` Laxman Dewangan
2016-04-13  9:25       ` Jon Hunter
2016-04-13  9:20         ` Laxman Dewangan
2016-04-13  9:56           ` Jon Hunter
2016-04-15  7:54   ` Linus Walleij
2016-04-15  8:00     ` Mark Brown
2016-04-15  8:25       ` Laxman Dewangan
2016-04-15  9:19         ` Linus Walleij
2016-04-15 16:24   ` Stephen Warren
2016-04-15 16:21     ` Laxman Dewangan
2016-04-15 16:41       ` Stephen Warren
2016-04-15 16:33         ` Laxman Dewangan
2016-04-15 16:59           ` Stephen Warren
2016-04-12 14:56 ` [PATCH 5/7] soc/tegra: pmc: Register sub-devices of PMC Laxman Dewangan
2016-04-15 16:31   ` Stephen Warren
2016-04-12 14:56 ` [PATCH 6/7] pinctrl: tegra: Add DT binding for io pads control Laxman Dewangan
2016-04-13  9:04   ` Jon Hunter
2016-04-13  9:08     ` Laxman Dewangan
2016-04-13  9:31       ` Jon Hunter
2016-04-15 14:16   ` Jon Hunter
2016-04-15 14:12     ` Laxman Dewangan
2016-04-15 15:14       ` Jon Hunter
2016-04-15 15:14         ` Laxman Dewangan
2016-04-15 15:45           ` Jon Hunter
2016-04-15 16:41             ` Laxman Dewangan
2016-04-15 17:44               ` Jon Hunter
2016-04-15 17:49                 ` Laxman Dewangan
2016-04-15 18:30                   ` Jon Hunter
2016-04-15 18:43                     ` Laxman Dewangan
2016-04-15 16:35   ` Stephen Warren
2016-04-15 16:31     ` Laxman Dewangan
2016-04-12 14:56 ` [PATCH 7/7] pinctrl: tegra: Add driver to configure voltage and power state of io pads Laxman Dewangan
2016-04-15  8:08   ` Linus Walleij
2016-04-15  8:39     ` Laxman Dewangan
2016-04-15  9:25       ` Linus Walleij
2016-04-15  9:55         ` Laxman Dewangan
2016-04-15 11:15           ` Linus Walleij
2016-04-15 11:47             ` Laxman Dewangan
2016-04-15 14:03               ` Linus Walleij
2016-04-15 13:59                 ` Laxman Dewangan
2016-04-19  9:49                   ` Laxman Dewangan
2016-04-26 13:32               ` Laxman Dewangan
2016-04-26 15:31                 ` Stephen Warren
2016-04-15 16:38       ` Stephen Warren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).