public inbox for linux-tegra@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] paz00 updates for 3.3
@ 2011-10-22 20:16 Marc Dietrich
       [not found] ` <cover.1319313019.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
  0 siblings, 1 reply; 24+ messages in thread
From: Marc Dietrich @ 2011-10-22 20:16 UTC (permalink / raw)
  To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
  Cc: Olof Johansson, Colin Cross, Marc Dietrich

Hi,

the following three patches are intended for the 3.3 merge window and are based
on linux-next.

The first one adds support for the embedded controller (which handles keyboard,
touchpad, leds, and suspend functions - and some other stuff). The way it is
initialized will probably change in the future, but we like to include it for
now as it makes debugging more easier.

The second patch adds wakeup support similar to seaboard, but with the
difference that the wakeup gpio is connected to the embedded controller instead
of a real gpio key.

The final patch adds a dts file for paz00. I also like add paz00 to board-dt.c,
but I couldn't find an up to date version of it (which includes all the patches
on the tegra-ml). I'll update this one as soon as it emerges. So take it as some
kind of "preview".

Thanks

Marc

Marc Dietrich (3):
  ARM: tegra: paz00: add support for the embedded controller
  ARM: tegra: paz00: add support for wakeup gpio key
  arm/dt: tegra: add dts file for paz00

 arch/arm/boot/dts/tegra-paz00.dts        |   51 ++++++++++++++++++++++++++++++
 arch/arm/mach-tegra/board-paz00-pinmux.c |    1 +
 arch/arm/mach-tegra/board-paz00.c        |   40 +++++++++++++++++++++++-
 arch/arm/mach-tegra/board-paz00.h        |    6 +++
 4 files changed, 97 insertions(+), 1 deletions(-)
 create mode 100644 arch/arm/boot/dts/tegra-paz00.dts

-- 
1.7.5.4

^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PATCH v3 0/3] paz00 updates for 3.3
@ 2011-10-31 19:58 Marc Dietrich
       [not found] ` <cover.1320088857.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
  0 siblings, 1 reply; 24+ messages in thread
From: Marc Dietrich @ 2011-10-31 19:58 UTC (permalink / raw)
  To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
  Cc: Olof Johansson, Colin Cross, Stephen Warren, linux-arm-kernel,
	Marc Dietrich

Hi,

the following three patches are intended for the 3.3 merge window and are based
on linux-next.

The first one adds wakeup support similar to seaboard, but with the difference
that the wakeup gpio is connected to the embedded controller instead of a real
gpio key.

The second patch adds device tree support for the nvec driver. This way we can
make use of it without adding more platform devices to the board files (and it
is also modern to do so).

The final one adds device tree support for paz00. The way the nvec it is
initialized will probably change in the future, but we like to include it for
now as it makes debugging easier.

The patches are against linux-next from Oct 25th.

Thanks

Marc

Changes since v2
    - remove the mem= from the bootargs, this is handled by the memory property
      already
    - change the root device until the sdhci init order can be changed
    - do not init unused serial ports
    - add dt documentation for nvec
    - remove CONFIG_OF #ifdefs from nvec.c
    - exchange the order of patch 2 and 3
Changes since v1
    - replace addition of the embedded controller to the board file by a device-tree
      based implementation.

Marc Dietrich (3):
  ARM: tegra: paz00: add support for wakeup gpio key
  staging: nvec: add device tree support
  arm/dt: tegra: add dts file for paz00

 .../devicetree/bindings/nvec/nvec_nvidia.txt       |    9 ++
 arch/arm/boot/dts/tegra-paz00.dts                  |   78 ++++++++++++++++++++
 arch/arm/mach-tegra/Makefile                       |    1 +
 arch/arm/mach-tegra/Makefile.boot                  |    1 +
 arch/arm/mach-tegra/board-dt.c                     |    3 +
 arch/arm/mach-tegra/board-paz00.c                  |   27 +++++++
 arch/arm/mach-tegra/board-paz00.h                  |    3 +
 drivers/staging/nvec/nvec.c                        |   35 ++++++++-
 8 files changed, 155 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/nvec/nvec_nvidia.txt
 create mode 100644 arch/arm/boot/dts/tegra-paz00.dts

-- 
1.7.5.4

^ permalink raw reply	[flat|nested] 24+ messages in thread
* [PATCH v4 0/3] paz00 updates for 3.3
@ 2011-11-01 20:37 Marc Dietrich
       [not found] ` <cover.1320173572.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
  0 siblings, 1 reply; 24+ messages in thread
From: Marc Dietrich @ 2011-11-01 20:37 UTC (permalink / raw)
  To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
  Cc: Olof Johansson, Colin Cross, Stephen Warren, linux-arm-kernel,
	Marc Dietrich

Hi,

the following three patches are intended for the 3.3 merge window and are based
on linux-next.

The first one adds wakeup support similar to seaboard, but with the difference
that the wakeup gpio is connected to the embedded controller instead of a real
gpio key.

The second patch adds device tree support for the nvec driver. This way we can
make use of it without adding more platform devices to the board files (and it
is also modern to do so).

The final one adds device tree support for paz00. The way the nvec it is
initialized will probably change in the future, but we like to include it for
now as it makes debugging easier.

The patches are against linux-next from Nov 1st.

Thanks

Marc

Changes since v3
    - use of_property_read_u32 in nvec
    - also disable uart-e in the device tree

Changes since v2
    - remove the mem= from the bootargs, this is handled by the memory property
      already
    - change the root device until the sdhci init order can be changed
    - do not init unused serial ports
    - add dt documentation for nvec
    - remove CONFIG_OF #ifdefs from nvec.c
    - exchange the order of patch 2 and 3
Changes since v1
    - replace addition of the embedded controller to the board file by a device-tree
      based implementation.

Marc Dietrich (3):
  ARM: tegra: paz00: add support for wakeup gpio key
  staging: nvec: add device tree support
  arm/dt: tegra: add dts file for paz00

 .../devicetree/bindings/nvec/nvec_nvidia.txt       |    9 ++
 arch/arm/boot/dts/tegra-paz00.dts                  |   82 ++++++++++++++++++++
 arch/arm/mach-tegra/Makefile                       |    1 +
 arch/arm/mach-tegra/Makefile.boot                  |    1 +
 arch/arm/mach-tegra/board-dt.c                     |    3 +
 arch/arm/mach-tegra/board-paz00.c                  |   27 +++++++
 arch/arm/mach-tegra/board-paz00.h                  |    3 +
 drivers/staging/nvec/nvec.c                        |   30 +++++++-
 8 files changed, 154 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/nvec/nvec_nvidia.txt
 create mode 100644 arch/arm/boot/dts/tegra-paz00.dts

-- 
1.7.5.4

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

end of thread, other threads:[~2011-11-01 22:37 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-22 20:16 [PATCH 0/3] paz00 updates for 3.3 Marc Dietrich
     [not found] ` <cover.1319313019.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-10-22 20:16   ` [PATCH 1/3] ARM: tegra: paz00: add support for the embedded controller Marc Dietrich
     [not found]     ` <b5f0dc6e7996a21d4493f8e7765e322fe6d8b7ef.1319313020.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-10-22 20:27       ` Olof Johansson
     [not found]         ` <CAOesGMhVFk6n0n98akeVdM-cLtK9ip0-M01u9jy8WEdJNU+xsg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-10-22 20:49           ` Marc Dietrich
2011-10-23  6:54             ` Olof Johansson
2011-10-25  5:06       ` Stephen Warren
     [not found]         ` <74CDBE0F657A3D45AFBB94109FB122FF173E1B4187-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2011-10-25  7:16           ` Olof Johansson
     [not found]             ` <CAOesGMgs97awtrKXd=Ek9R62pWMVDtKcxXAx9Xb5_P6wa6wdpg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-10-25 21:04               ` Marc Dietrich
2011-10-26  6:51                 ` Stephen Warren
2011-10-25 19:11           ` [PATCH 1/3] ARM: tegra: paz00: add support for the embeddedcontroller Marc Dietrich
2011-10-22 20:16   ` [PATCH 2/3] ARM: tegra: paz00: add support for wakeup gpio key Marc Dietrich
     [not found]     ` <41e637f863f255c23f6a6e4af79efeac0f81aff1.1319313020.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-10-25  5:10       ` Stephen Warren
2011-10-22 20:16   ` [PATCH 3/3] arm/dt: tegra: add dts file for paz00 Marc Dietrich
     [not found]     ` <90ee88bcde84141e0280ffa4ccbd288462489eba.1319313020.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-10-25  5:16       ` Stephen Warren
     [not found]         ` <74CDBE0F657A3D45AFBB94109FB122FF173E1B4189-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2011-10-25 19:05           ` Marc Dietrich
2011-10-26  6:43             ` Stephen Warren
     [not found]               ` <74CDBE0F657A3D45AFBB94109FB122FF173E1B4536-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2011-10-26 20:18                 ` Marc Dietrich
2011-10-25 19:51           ` Rob Herring
     [not found]             ` <4EA7134C.3050102-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2011-10-26  6:40               ` Stephen Warren
  -- strict thread matches above, loose matches on Subject: below --
2011-10-31 19:58 [PATCH v3 0/3] paz00 updates for 3.3 Marc Dietrich
     [not found] ` <cover.1320088857.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-10-31 19:58   ` [PATCH 3/3] arm/dt: tegra: add dts file for paz00 Marc Dietrich
     [not found]     ` <855f09f77c03a9f081818a03effdbd3bf7a30c91.1320088857.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-10-31 20:14       ` Stephen Warren
2011-10-31 22:20         ` Marc Dietrich
2011-11-01 20:37 [PATCH v4 0/3] paz00 updates for 3.3 Marc Dietrich
     [not found] ` <cover.1320173572.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-11-01 20:37   ` [PATCH 3/3] arm/dt: tegra: add dts file for paz00 Marc Dietrich
     [not found]     ` <f3590ac48475e25c1a583124095809b42570db98.1320173573.git.marvin24-Mmb7MZpHnFY@public.gmane.org>
2011-11-01 22:37       ` Stephen Warren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox