* [PATCH 1/2] dt-bindings: mmc: tegra: Reformat compatible string list
@ 2017-03-14 19:01 Thierry Reding
[not found] ` <20170314190152.9167-1-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Thierry Reding @ 2017-03-14 19:01 UTC (permalink / raw)
To: Ulf Hansson, Rob Herring
Cc: Jonathan Hunter, linux-mmc, devicetree, linux-tegra
From: Thierry Reding <treding@nvidia.com>
The list of compatible strings is somewhat difficult to read and extend.
Reformat it into a list to make it more easily extensible.
While at it, also remove the "plus one of the above" clause because it
isn't actually valid.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
.../devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
index 15b8368ee1f2..c15aa22d4570 100644
--- a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
+++ b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
@@ -7,11 +7,12 @@ This file documents differences between the core properties described
by mmc.txt and the properties used by the sdhci-tegra driver.
Required properties:
-- compatible : For Tegra20, must contain "nvidia,tegra20-sdhci".
- For Tegra30, must contain "nvidia,tegra30-sdhci". For Tegra114,
- must contain "nvidia,tegra114-sdhci". For Tegra124, must contain
- "nvidia,tegra124-sdhci". Otherwise, must contain "nvidia,<chip>-sdhci",
- plus one of the above, where <chip> is tegra132 or tegra210.
+- compatible : should be one of:
+ - "nvidia,tegra20-sdhci": for Tegra20
+ - "nvidia,tegra30-sdhci": for Tegra30
+ - "nvidia,tegra114-sdhci": for Tegra114
+ - "nvidia,tegra124-sdhci": for Tegra124 and Tegra132
+ - "nvidia,tegra210-sdhci": for Tegra210
- clocks : Must contain one entry, for the module clock.
See ../clocks/clock-bindings.txt for details.
- resets : Must contain an entry for each entry in reset-names.
--
2.12.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] dt-bindings: mmc: tegra: Document Tegra186 compatible string
[not found] ` <20170314190152.9167-1-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2017-03-14 19:01 ` Thierry Reding
2017-03-16 14:46 ` Ulf Hansson
2017-03-16 14:46 ` [PATCH 1/2] dt-bindings: mmc: tegra: Reformat compatible string list Ulf Hansson
1 sibling, 1 reply; 4+ messages in thread
From: Thierry Reding @ 2017-03-14 19:01 UTC (permalink / raw)
To: Ulf Hansson, Rob Herring
Cc: Jonathan Hunter, linux-mmc-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA,
linux-tegra-u79uwXL29TY76Z2rM5mHXA
From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
The SDHCI controller found on Tegra186 in very similar to the controller
found on earlier generations of Tegra.
Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
index c15aa22d4570..9bce57862ed6 100644
--- a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
+++ b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
@@ -13,6 +13,7 @@ Required properties:
- "nvidia,tegra114-sdhci": for Tegra114
- "nvidia,tegra124-sdhci": for Tegra124 and Tegra132
- "nvidia,tegra210-sdhci": for Tegra210
+ - "nvidia,tegra186-sdhci": for Tegra186
- clocks : Must contain one entry, for the module clock.
See ../clocks/clock-bindings.txt for details.
- resets : Must contain an entry for each entry in reset-names.
--
2.12.0
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: mmc: tegra: Reformat compatible string list
[not found] ` <20170314190152.9167-1-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-03-14 19:01 ` [PATCH 2/2] dt-bindings: mmc: tegra: Document Tegra186 compatible string Thierry Reding
@ 2017-03-16 14:46 ` Ulf Hansson
1 sibling, 0 replies; 4+ messages in thread
From: Ulf Hansson @ 2017-03-16 14:46 UTC (permalink / raw)
To: Thierry Reding
Cc: Rob Herring, Jonathan Hunter,
linux-mmc-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
On 14 March 2017 at 20:01, Thierry Reding <thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
>
> The list of compatible strings is somewhat difficult to read and extend.
> Reformat it into a list to make it more easily extensible.
>
> While at it, also remove the "plus one of the above" clause because it
> isn't actually valid.
>
> Signed-off-by: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
Thanks, applied for next!
Kind regards
Uffe
> ---
> .../devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt | 11 ++++++-----
> 1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
> index 15b8368ee1f2..c15aa22d4570 100644
> --- a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
> +++ b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
> @@ -7,11 +7,12 @@ This file documents differences between the core properties described
> by mmc.txt and the properties used by the sdhci-tegra driver.
>
> Required properties:
> -- compatible : For Tegra20, must contain "nvidia,tegra20-sdhci".
> - For Tegra30, must contain "nvidia,tegra30-sdhci". For Tegra114,
> - must contain "nvidia,tegra114-sdhci". For Tegra124, must contain
> - "nvidia,tegra124-sdhci". Otherwise, must contain "nvidia,<chip>-sdhci",
> - plus one of the above, where <chip> is tegra132 or tegra210.
> +- compatible : should be one of:
> + - "nvidia,tegra20-sdhci": for Tegra20
> + - "nvidia,tegra30-sdhci": for Tegra30
> + - "nvidia,tegra114-sdhci": for Tegra114
> + - "nvidia,tegra124-sdhci": for Tegra124 and Tegra132
> + - "nvidia,tegra210-sdhci": for Tegra210
> - clocks : Must contain one entry, for the module clock.
> See ../clocks/clock-bindings.txt for details.
> - resets : Must contain an entry for each entry in reset-names.
> --
> 2.12.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] dt-bindings: mmc: tegra: Document Tegra186 compatible string
2017-03-14 19:01 ` [PATCH 2/2] dt-bindings: mmc: tegra: Document Tegra186 compatible string Thierry Reding
@ 2017-03-16 14:46 ` Ulf Hansson
0 siblings, 0 replies; 4+ messages in thread
From: Ulf Hansson @ 2017-03-16 14:46 UTC (permalink / raw)
To: Thierry Reding
Cc: Rob Herring, Jonathan Hunter, linux-mmc@vger.kernel.org,
devicetree@vger.kernel.org, linux-tegra@vger.kernel.org
On 14 March 2017 at 20:01, Thierry Reding <thierry.reding@gmail.com> wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> The SDHCI controller found on Tegra186 in very similar to the controller
> found on earlier generations of Tegra.
>
> Signed-off-by: Thierry Reding <treding@nvidia.com>
Thanks, applied for next!
Kind regards
Uffe
> ---
> Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
> index c15aa22d4570..9bce57862ed6 100644
> --- a/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
> +++ b/Documentation/devicetree/bindings/mmc/nvidia,tegra20-sdhci.txt
> @@ -13,6 +13,7 @@ Required properties:
> - "nvidia,tegra114-sdhci": for Tegra114
> - "nvidia,tegra124-sdhci": for Tegra124 and Tegra132
> - "nvidia,tegra210-sdhci": for Tegra210
> + - "nvidia,tegra186-sdhci": for Tegra186
> - clocks : Must contain one entry, for the module clock.
> See ../clocks/clock-bindings.txt for details.
> - resets : Must contain an entry for each entry in reset-names.
> --
> 2.12.0
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-03-16 14:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-14 19:01 [PATCH 1/2] dt-bindings: mmc: tegra: Reformat compatible string list Thierry Reding
[not found] ` <20170314190152.9167-1-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2017-03-14 19:01 ` [PATCH 2/2] dt-bindings: mmc: tegra: Document Tegra186 compatible string Thierry Reding
2017-03-16 14:46 ` Ulf Hansson
2017-03-16 14:46 ` [PATCH 1/2] dt-bindings: mmc: tegra: Reformat compatible string list Ulf Hansson
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).