All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mikko Perttunen <mperttunen@nvidia.com>
To: thierry.reding@gmail.com, jonathanh@nvidia.com,
	robh+dt@kernel.org, mark.rutland@arm.com
Cc: talho@nvidia.com, linux-tegra@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
	Mikko Perttunen <mperttunen@nvidia.com>
Subject: [PATCH v3 3/7] soc/tegra: pmc: Add Tegra194 compatibility string
Date: Thu, 15 Feb 2018 16:52:02 +0200	[thread overview]
Message-ID: <20180215145206.24775-4-mperttunen@nvidia.com> (raw)
In-Reply-To: <20180215145206.24775-1-mperttunen@nvidia.com>

The Tegra194 PMC is mostly compatible with Tegra186, including in all
currently supported features. As such, add a new compatibility string
but point to the existing Tegra186 SoC data for now.

Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
---
 drivers/soc/tegra/pmc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c
index ce62a47a6647..a2df230bf51a 100644
--- a/drivers/soc/tegra/pmc.c
+++ b/drivers/soc/tegra/pmc.c
@@ -1920,6 +1920,7 @@ static const struct tegra_pmc_soc tegra186_pmc_soc = {
 };
 
 static const struct of_device_id tegra_pmc_match[] = {
+	{ .compatible = "nvidia,tegra194-pmc", .data = &tegra186_pmc_soc },
 	{ .compatible = "nvidia,tegra186-pmc", .data = &tegra186_pmc_soc },
 	{ .compatible = "nvidia,tegra210-pmc", .data = &tegra210_pmc_soc },
 	{ .compatible = "nvidia,tegra132-pmc", .data = &tegra124_pmc_soc },
-- 
2.16.1

WARNING: multiple messages have this Message-ID (diff)
From: Mikko Perttunen <mperttunen@nvidia.com>
To: <thierry.reding@gmail.com>, <jonathanh@nvidia.com>,
	<robh+dt@kernel.org>, <mark.rutland@arm.com>
Cc: <talho@nvidia.com>, <linux-tegra@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>,
	Mikko Perttunen <mperttunen@nvidia.com>
Subject: [PATCH v3 3/7] soc/tegra: pmc: Add Tegra194 compatibility string
Date: Thu, 15 Feb 2018 16:52:02 +0200	[thread overview]
Message-ID: <20180215145206.24775-4-mperttunen@nvidia.com> (raw)
In-Reply-To: <20180215145206.24775-1-mperttunen@nvidia.com>

The Tegra194 PMC is mostly compatible with Tegra186, including in all
currently supported features. As such, add a new compatibility string
but point to the existing Tegra186 SoC data for now.

Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
---
 drivers/soc/tegra/pmc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c
index ce62a47a6647..a2df230bf51a 100644
--- a/drivers/soc/tegra/pmc.c
+++ b/drivers/soc/tegra/pmc.c
@@ -1920,6 +1920,7 @@ static const struct tegra_pmc_soc tegra186_pmc_soc = {
 };
 
 static const struct of_device_id tegra_pmc_match[] = {
+	{ .compatible = "nvidia,tegra194-pmc", .data = &tegra186_pmc_soc },
 	{ .compatible = "nvidia,tegra186-pmc", .data = &tegra186_pmc_soc },
 	{ .compatible = "nvidia,tegra210-pmc", .data = &tegra210_pmc_soc },
 	{ .compatible = "nvidia,tegra132-pmc", .data = &tegra124_pmc_soc },
-- 
2.16.1

WARNING: multiple messages have this Message-ID (diff)
From: mperttunen@nvidia.com (Mikko Perttunen)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 3/7] soc/tegra: pmc: Add Tegra194 compatibility string
Date: Thu, 15 Feb 2018 16:52:02 +0200	[thread overview]
Message-ID: <20180215145206.24775-4-mperttunen@nvidia.com> (raw)
In-Reply-To: <20180215145206.24775-1-mperttunen@nvidia.com>

The Tegra194 PMC is mostly compatible with Tegra186, including in all
currently supported features. As such, add a new compatibility string
but point to the existing Tegra186 SoC data for now.

Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
---
 drivers/soc/tegra/pmc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c
index ce62a47a6647..a2df230bf51a 100644
--- a/drivers/soc/tegra/pmc.c
+++ b/drivers/soc/tegra/pmc.c
@@ -1920,6 +1920,7 @@ static const struct tegra_pmc_soc tegra186_pmc_soc = {
 };
 
 static const struct of_device_id tegra_pmc_match[] = {
+	{ .compatible = "nvidia,tegra194-pmc", .data = &tegra186_pmc_soc },
 	{ .compatible = "nvidia,tegra186-pmc", .data = &tegra186_pmc_soc },
 	{ .compatible = "nvidia,tegra210-pmc", .data = &tegra210_pmc_soc },
 	{ .compatible = "nvidia,tegra132-pmc", .data = &tegra124_pmc_soc },
-- 
2.16.1

  parent reply	other threads:[~2018-02-15 14:52 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-15 14:51 [PATCH v3 0/7] Initial support for NVIDIA Tegra194 Mikko Perttunen
2018-02-15 14:51 ` Mikko Perttunen
2018-02-15 14:51 ` Mikko Perttunen
2018-02-15 14:52 ` [PATCH v3 1/7] firmware: tegra: Simplify channel management Mikko Perttunen
2018-02-15 14:52   ` Mikko Perttunen
2018-02-15 14:52   ` Mikko Perttunen
2018-02-15 14:52 ` [PATCH v3 2/7] soc/tegra: Add Tegra194 SoC configuration option Mikko Perttunen
2018-02-15 14:52   ` Mikko Perttunen
2018-02-15 14:52   ` Mikko Perttunen
2018-02-15 14:52 ` Mikko Perttunen [this message]
2018-02-15 14:52   ` [PATCH v3 3/7] soc/tegra: pmc: Add Tegra194 compatibility string Mikko Perttunen
2018-02-15 14:52   ` Mikko Perttunen
     [not found] ` <20180215145206.24775-1-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2018-02-15 14:52   ` [PATCH v3 4/7] dt-bindings: tegra: Add missing chips and NVIDIA boards Mikko Perttunen
2018-02-15 14:52     ` Mikko Perttunen
2018-02-15 14:52     ` Mikko Perttunen
2018-02-15 14:52   ` [PATCH v3 7/7] arm64: tegra: Add device tree for the Tegra194 P2972-0000 board Mikko Perttunen
2018-02-15 14:52     ` Mikko Perttunen
2018-02-15 14:52     ` Mikko Perttunen
2018-02-15 14:52 ` [PATCH v3 5/7] dt-bindings: tegra: Add documentation for nvidia,tegra194-pmc Mikko Perttunen
2018-02-15 14:52   ` [PATCH v3 5/7] dt-bindings: tegra: Add documentation for nvidia, tegra194-pmc Mikko Perttunen
2018-02-15 14:52   ` [PATCH v3 5/7] dt-bindings: tegra: Add documentation for nvidia,tegra194-pmc Mikko Perttunen
2018-02-15 14:52 ` [PATCH v3 6/7] arm64: tegra: Add Tegra194 chip device tree Mikko Perttunen
2018-02-15 14:52   ` Mikko Perttunen
2018-02-15 14:52   ` Mikko Perttunen
     [not found]   ` <20180215145206.24775-7-mperttunen-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2018-02-16 12:33     ` Philippe Ombredanne
2018-02-16 12:33       ` Philippe Ombredanne
2018-02-16 12:33       ` Philippe Ombredanne
2018-02-19  9:32       ` Mikko Perttunen
2018-02-19  9:32         ` Mikko Perttunen
2018-02-19  9:32         ` Mikko Perttunen

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=20180215145206.24775-4-mperttunen@nvidia.com \
    --to=mperttunen@nvidia.com \
    --cc=devicetree@vger.kernel.org \
    --cc=jonathanh@nvidia.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=talho@nvidia.com \
    --cc=thierry.reding@gmail.com \
    /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.