All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/11] Improvements to Tegra-based Chromebook support
@ 2015-02-11 15:06 ` Tomeu Vizoso
  0 siblings, 0 replies; 31+ messages in thread
From: Tomeu Vizoso @ 2015-02-11 15:06 UTC (permalink / raw)
  To: linux-tegra-u79uwXL29TY76Z2rM5mHXA
  Cc: Stephen Warren, Javier Martinez Canillas, Simon Glass, Dylan Reid,
	Andrew Bresticker, Tomeu Vizoso, Alexandre Courbot, David Airlie,
	devicetree-u79uwXL29TY76Z2rM5mHXA,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, Ian Campbell,
	Kumar Gala, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Mark Rutland,
	Mikko Perttunen, Paul Walmsley, Pawel Moll, Rob Herring,
	Russell King, Terje Bergström, Thierry Reding

v4:	* Added support for the system reset GPIO, for proper reboots
	* Moved out changes to ASOC to their own series, as requested by Mark
	Brown
	* Added patch to reset the SOR, to make sure it's in a known state
	* Changed nvidia,model property of the sound nodes to GoogleNyanBig
	and GoogleNyanBlaze so they can be told apart in userspace

v3:	* Added bindings for the LTN140AT29 panel
	* Removed the delay in pwrseq, as what was actually needed was to add
	a dependency on the power supplies of the host
	* Uses the pinmux for the Blaze as generated by tegra-pinmux-scripts
	* Uses the pinmux for the Big as in the last patch from Simon Glass

Hello,

this series adds support for the Tegra-based HP Chromebook 14 (aka nyan
blaze), which is very similar to the Acer Chromebook 13 (aka nyan big).
Because they both include tegra124-nyan.dtsi, some improvements to Blaze
support have also benefitted the Big. I have tested that USB2, the panels,
HDMI, the trackpad, Wifi and sound work on both.

The DT for the Big includes the pinmux configuration as generated by
tegra-pinmux-scripts with Simon's patch at:

https://patchwork.ozlabs.org/patch/417779/

These patches are based on top of linux-next 20150211.

http://cgit.collabora.com/git/user/tomeu/linux.git/log/?h=nyan-v4

Regards,

Tomeu

Andrew Bresticker (1):
  ARM: tegra: add support for warm reset GPIO

Stéphane Marchesin (1):
  drm/panel: add support for Samsung LTN140AT29 panel

Tomeu Vizoso (9):
  ARM: tegra: Change model of sound card in Nyan Big
  ARM: tegra: Move out nyan-generic parts out from the nyan-big DT
  ARM: tegra: Add DTS for the nyan-blaze board
  ARM: tegra: Add node for trackpad in Nyan boards
  ARM: tegra: Use pwrseq-simple for the wifi in Nyan
  ARM: tegra: Use the generated pinmux data
  ARM: tegra: Set spi-max-frequency property to flash node
  ARM: tegra: Set nvidia,reset-gpio property on the PMC node
  drm/tegra: Reset the SOR on probe

 .../bindings/arm/tegra/nvidia,tegra20-pmc.txt      |    1 +
 .../bindings/panel/samsung,ltn140at29-301.txt      |    7 +
 arch/arm/boot/dts/Makefile                         |    1 +
 arch/arm/boot/dts/tegra124-nyan-big.dts            | 2119 +++++++++++---------
 arch/arm/boot/dts/tegra124-nyan-blaze.dts          | 1332 ++++++++++++
 arch/arm/boot/dts/tegra124-nyan.dtsi               |  689 +++++++
 drivers/gpu/drm/panel/panel-simple.c               |   26 +
 drivers/gpu/drm/tegra/sor.c                        |   14 +
 drivers/soc/tegra/pmc.c                            |   33 +
 9 files changed, 3261 insertions(+), 961 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/panel/samsung,ltn140at29-301.txt
 create mode 100644 arch/arm/boot/dts/tegra124-nyan-blaze.dts
 create mode 100644 arch/arm/boot/dts/tegra124-nyan.dtsi

-- 
1.9.3

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

end of thread, other threads:[~2015-02-12 16:54 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-11 15:06 [PATCH v4 00/11] Improvements to Tegra-based Chromebook support Tomeu Vizoso
2015-02-11 15:06 ` Tomeu Vizoso
2015-02-11 15:06 ` Tomeu Vizoso
     [not found] ` <1423667220-1062-1-git-send-email-tomeu.vizoso-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org>
2015-02-11 15:06   ` [PATCH v4 01/11] ARM: tegra: Change model of sound card in Nyan Big Tomeu Vizoso
2015-02-11 15:06     ` Tomeu Vizoso
2015-02-11 15:06     ` Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 02/11] ARM: tegra: Move out nyan-generic parts out from the nyan-big DT Tomeu Vizoso
2015-02-11 15:06   ` Tomeu Vizoso
     [not found]   ` <1423667220-1062-3-git-send-email-tomeu.vizoso-ZGY8ohtN/8qB+jHODAdFcQ@public.gmane.org>
2015-02-11 17:26     ` Andrew Bresticker
2015-02-11 17:26       ` Andrew Bresticker
2015-02-11 17:26       ` Andrew Bresticker
2015-02-12  6:18       ` Tomeu Vizoso
2015-02-12  6:18         ` Tomeu Vizoso
2015-02-12 16:54         ` Andrew Bresticker
2015-02-12 16:54           ` Andrew Bresticker
2015-02-11 15:06 ` [PATCH v4 03/11] drm/panel: add support for Samsung LTN140AT29 panel Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 04/11] ARM: tegra: Add DTS for the nyan-blaze board Tomeu Vizoso
2015-02-11 15:06   ` Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 05/11] ARM: tegra: Add node for trackpad in Nyan boards Tomeu Vizoso
2015-02-11 15:06   ` Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 06/11] ARM: tegra: Use pwrseq-simple for the wifi in Nyan Tomeu Vizoso
2015-02-11 15:06   ` Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 07/11] ARM: tegra: Use the generated pinmux data Tomeu Vizoso
2015-02-11 15:06   ` Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 08/11] ARM: tegra: Set spi-max-frequency property to flash node Tomeu Vizoso
2015-02-11 15:06   ` Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 09/11] ARM: tegra: add support for warm reset GPIO Tomeu Vizoso
2015-02-11 17:17   ` Andrew Bresticker
2015-02-11 15:06 ` [PATCH v4 10/11] ARM: tegra: Set nvidia,reset-gpio property on the PMC node Tomeu Vizoso
2015-02-11 15:06   ` [PATCH v4 10/11] ARM: tegra: Set nvidia, reset-gpio " Tomeu Vizoso
2015-02-11 15:06 ` [PATCH v4 11/11] drm/tegra: Reset the SOR on probe Tomeu Vizoso

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.