All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thierry Reding <thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: [PATCH 06/10] ARM: tegra: Add Tegra114 gr2d support
Date: Thu, 19 Dec 2013 16:59:30 +0100	[thread overview]
Message-ID: <1387468774-14216-7-git-send-email-treding@nvidia.com> (raw)
In-Reply-To: <1387468774-14216-1-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

Add the device tree for the gr2d hardware found on Tegra114 SoCs.

Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
Changes in v3:
- add resets and reset-names properties

Changes in v2:
- mark as backwards-compatible with Tegra20

 arch/arm/boot/dts/tegra114.dtsi | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/boot/dts/tegra114.dtsi b/arch/arm/boot/dts/tegra114.dtsi
index 28d2eea46b52..3dd7b50d8f93 100644
--- a/arch/arm/boot/dts/tegra114.dtsi
+++ b/arch/arm/boot/dts/tegra114.dtsi
@@ -30,6 +30,15 @@
 
 		ranges = <0x54000000 0x54000000 0x01000000>;
 
+		gr2d@54140000 {
+			compatible = "nvidia,tegra114-gr2d", "nvidia,tegra20-gr2d";
+			reg = <0x54140000 0x00040000>;
+			interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&tegra_car TEGRA114_CLK_GR2D>;
+			resets = <&tegra_car 21>;
+			reset-names = "2d";
+		};
+
 		dc@54200000 {
 			compatible = "nvidia,tegra114-dc", "nvidia,tegra20-dc";
 			reg = <0x54200000 0x00040000>;
-- 
1.8.4.2

WARNING: multiple messages have this Message-ID (diff)
From: thierry.reding@gmail.com (Thierry Reding)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 06/10] ARM: tegra: Add Tegra114 gr2d support
Date: Thu, 19 Dec 2013 16:59:30 +0100	[thread overview]
Message-ID: <1387468774-14216-7-git-send-email-treding@nvidia.com> (raw)
In-Reply-To: <1387468774-14216-1-git-send-email-treding@nvidia.com>

Add the device tree for the gr2d hardware found on Tegra114 SoCs.

Signed-off-by: Thierry Reding <treding@nvidia.com>
---
Changes in v3:
- add resets and reset-names properties

Changes in v2:
- mark as backwards-compatible with Tegra20

 arch/arm/boot/dts/tegra114.dtsi | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/boot/dts/tegra114.dtsi b/arch/arm/boot/dts/tegra114.dtsi
index 28d2eea46b52..3dd7b50d8f93 100644
--- a/arch/arm/boot/dts/tegra114.dtsi
+++ b/arch/arm/boot/dts/tegra114.dtsi
@@ -30,6 +30,15 @@
 
 		ranges = <0x54000000 0x54000000 0x01000000>;
 
+		gr2d at 54140000 {
+			compatible = "nvidia,tegra114-gr2d", "nvidia,tegra20-gr2d";
+			reg = <0x54140000 0x00040000>;
+			interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
+			clocks = <&tegra_car TEGRA114_CLK_GR2D>;
+			resets = <&tegra_car 21>;
+			reset-names = "2d";
+		};
+
 		dc at 54200000 {
 			compatible = "nvidia,tegra114-dc", "nvidia,tegra20-dc";
 			reg = <0x54200000 0x00040000>;
-- 
1.8.4.2

  parent reply	other threads:[~2013-12-19 15:59 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-19 15:59 [PATCH 00/10] ARM: tegra: DSI and panel support Thierry Reding
2013-12-19 15:59 ` Thierry Reding
     [not found] ` <1387468774-14216-1-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-12-19 15:59   ` [PATCH 01/10] ARM: tegra: Enable LVDS on Harmony Thierry Reding
2013-12-19 15:59     ` Thierry Reding
2013-12-19 15:59   ` [PATCH 02/10] ARM: tegra: Enable LVDS on Cardhu Thierry Reding
2013-12-19 15:59     ` Thierry Reding
2013-12-19 15:59   ` [PATCH 03/10] ARM: tegra: Add MIPI calibration DT entries for Tegra114 Thierry Reding
2013-12-19 15:59     ` Thierry Reding
     [not found]     ` <1387468774-14216-4-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-12-20  0:11       ` Stephen Warren
2013-12-20  0:11         ` Stephen Warren
     [not found]         ` <52B38B14.8080605-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-12-20 11:56           ` Thierry Reding
2013-12-20 11:56             ` Thierry Reding
2013-12-19 15:59   ` [PATCH 04/10] ARM: tegra: Add host1x, DC and HDMI to Tegra114 device tree Thierry Reding
2013-12-19 15:59     ` Thierry Reding
2013-12-19 15:59   ` [PATCH 05/10] ARM: tegra: Add Tegra114 DSI support Thierry Reding
2013-12-19 15:59     ` Thierry Reding
     [not found]     ` <1387468774-14216-6-git-send-email-treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-12-19 19:57       ` Stephen Warren
2013-12-19 19:57         ` Stephen Warren
     [not found]         ` <52B34FC2.5010409-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-12-20 11:54           ` Thierry Reding
2013-12-20 11:54             ` Thierry Reding
2013-12-19 15:59   ` Thierry Reding [this message]
2013-12-19 15:59     ` [PATCH 06/10] ARM: tegra: Add Tegra114 gr2d support Thierry Reding
2013-12-19 15:59   ` [PATCH 07/10] ARM: tegra: Add Tegra114 gr3d support Thierry Reding
2013-12-19 15:59     ` Thierry Reding
2013-12-19 15:59   ` [PATCH 08/10] ARM: tegra: Enable DSI support on Dalmore Thierry Reding
2013-12-19 15:59     ` Thierry Reding
2013-12-19 15:59   ` [PATCH 09/10] ARM: tegra: Enable HDMI " Thierry Reding
2013-12-19 15:59     ` Thierry Reding
2013-12-19 15:59   ` [PATCH 10/10] ARM: tegra: Enable DRM panel support Thierry Reding
2013-12-19 15:59     ` Thierry Reding
2013-12-19 20:12   ` [PATCH 00/10] ARM: tegra: DSI and " Stephen Warren
2013-12-19 20:12     ` Stephen Warren
     [not found]     ` <52B35346.1070202-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-12-20 10:16       ` Marc Dietrich
2013-12-20 10:16         ` Marc Dietrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1387468774-14216-7-git-send-email-treding@nvidia.com \
    --to=thierry.reding-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.