From: Nishanth Menon <nm-l0cyMroinI0@public.gmane.org>
To: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>,
linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: "Benoît Cousson"
<bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
"Rafael J . Wysocki"
<rafael.j.wysocki-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
"Tero Kristo" <t-kristo-l0cyMroinI0@public.gmane.org>
Subject: Re: [PATCH 17/17] ARM: dts: Add missing hwmod related properties for dra7
Date: Mon, 28 Aug 2017 16:34:38 -0500 [thread overview]
Message-ID: <8c0ecbf6-26fb-1998-6bb5-0a74d9daa2ab@ti.com> (raw)
In-Reply-To: <20170828211918.11573-18-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
On 08/28/2017 04:19 PM, Tony Lindgren wrote:
> On dra7 we're missing the smartreflex and hdq nodes with their
> related "ti,hwmods" property that the SoC interconnect code needs.
>
> Note that this will only show up as a bug with "doesn't have
> mpu register target base" boot errors when the legacy platform
> data is removed.
>
> Note that the related driver also needs to be updated to probe
> using device tree and get the platform data passed to it using
> auxdata with arch/arm/mach-omap2/pdata-quirks.c.
>
> Let's also update the related binding documentation while at it.
>
> Cc: Nishanth Menon <nm-l0cyMroinI0@public.gmane.org>
> Cc: Rafael J. Wysocki <rafael.j.wysocki-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Cc: Tero Kristo <t-kristo-l0cyMroinI0@public.gmane.org>
> Signed-off-by: Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
> ---
> .../devicetree/bindings/power/ti-smartreflex.txt | 2 ++
> arch/arm/boot/dts/dra7.dtsi | 20 ++++++++++++++++++++
> 2 files changed, 22 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/power/ti-smartreflex.txt b/Documentation/devicetree/bindings/power/ti-smartreflex.txt
> --- a/Documentation/devicetree/bindings/power/ti-smartreflex.txt
> +++ b/Documentation/devicetree/bindings/power/ti-smartreflex.txt
> @@ -11,6 +11,8 @@ compatible: Shall be one of the following:
> "ti,omap4-smartreflex-core"
> "ti,omap4-smartreflex-mpu"
> "ti,omap4-smartreflex-iva"
> + "ti,dra7-smartreflex-core"
> + "ti,dra7-smartreflex-mpu"
>
> reg: Shall contain the device instance IO range
>
> diff --git a/arch/arm/boot/dts/dra7.dtsi b/arch/arm/boot/dts/dra7.dtsi
> --- a/arch/arm/boot/dts/dra7.dtsi
> +++ b/arch/arm/boot/dts/dra7.dtsi
> @@ -457,6 +457,7 @@
> #dma-cells = <1>;
> dma-channels = <32>;
> dma-requests = <127>;
> + ti,hwmods = "dma_system";
> };
>
> edma: edma@43300000 {
> @@ -1069,6 +1070,13 @@
> max-frequency = <192000000>;
> };
>
> + hdqw1w: 1w@480b2000 {
> + compatible = "ti,omap3-1w";
> + reg = <0x480b2000 0x1000>;
> + interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
> + ti,hwmods = "hdq1w";
> + };
> +
> mmc2: mmc@480b4000 {
> compatible = "ti,omap4-hsmmc";
> reg = <0x480b4000 0x400>;
> @@ -1489,6 +1497,18 @@
> };
> };
>
> + smartreflex_core: smartreflex4a0dd000 {
> + compatible = "ti,dra7-smartreflex-core";
> + ti,hwmods = "smartreflex_core";
> + reg = <0x4a0dd000 0x80>;
> + };
> +
> + smartreflex_mpu: smartreflex@4a0d9000 {
> + compatible = "ti,dra7-smartreflex-mpu";
> + ti,hwmods = "smartreflex_mpu";
> + reg = <0x4a0d9000 0x80>;
> + };
Have you checked TRM for these?
http://www.ti.com/lit/ug/sprui30d/sprui30d.pdf
These are disabled on the SoC and marked as reserved.
--
Regards,
Nishanth Menon
--
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
next prev parent reply other threads:[~2017-08-28 21:34 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-28 21:19 [PATCH 00/17] Fix missing device tree hwmods and IO ranges omap variants Tony Lindgren
[not found] ` <20170828211918.11573-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-28 21:19 ` [PATCH 01/17] ARM: dts: Add missing dma hwmods property for omap3 Tony Lindgren
2017-08-28 21:19 ` [PATCH 02/17] ARM: dts: Configure pmu without interrupt for omap4430 Tony Lindgren
2017-08-28 21:19 ` [PATCH 03/17] ARM: dts: Add missing properties for omap4 control modules Tony Lindgren
2017-08-28 21:19 ` [PATCH 04/17] ARM: dts: Add missing hwmods property for omap4 dma Tony Lindgren
2017-08-28 21:19 ` [PATCH 05/17] ARM: dts: Add missing smartreflex node and binding for omap4 Tony Lindgren
2017-08-28 21:19 ` [PATCH 06/17] ARM: dts: Add missing slimbus " Tony Lindgren
2017-08-28 21:19 ` [PATCH 07/17] ARM: dts: Add missing onewire node " Tony Lindgren
2017-08-28 21:19 ` [PATCH 08/17] ARM: dts: Add missing hsi " Tony Lindgren
[not found] ` <20170828211918.11573-9-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 9:18 ` Sebastian Reichel
2017-08-29 14:20 ` Tony Lindgren
2017-08-28 21:19 ` [PATCH 09/17] ARM: dts: Add missing iss node and binding " Tony Lindgren
[not found] ` <20170828211918.11573-10-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 12:37 ` Laurent Pinchart
2017-08-29 14:22 ` Tony Lindgren
2017-08-28 21:19 ` [PATCH 10/17] ARM: dts: Add missing wdt3 node " Tony Lindgren
2017-08-28 21:19 ` [PATCH 11/17] ARM: dts: Add missing mcasp " Tony Lindgren
[not found] ` <20170828211918.11573-12-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-09-04 6:55 ` Peter Ujfalusi
2017-08-28 21:19 ` [PATCH 12/17] ARM: dts: Add missing aess node and binding " Tony Lindgren
2017-08-28 21:19 ` [PATCH 13/17] ARM: dts: Add missing fdif " Tony Lindgren
[not found] ` <20170828211918.11573-14-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 12:48 ` Laurent Pinchart
2017-08-29 14:29 ` Tony Lindgren
[not found] ` <20170829142941.GU6008-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 17:13 ` Laurent Pinchart
2017-08-29 19:01 ` Tony Lindgren
2017-08-28 21:19 ` [PATCH 14/17] ARM: dts: Add missing gpu " Tony Lindgren
[not found] ` <20170828211918.11573-15-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 9:00 ` Sebastian Reichel
2017-08-29 11:35 ` Tomi Valkeinen
[not found] ` <201708291135.v7TBZCHH020827-mYkuYio3Bc71T2qfsofKZtBPR1lH4CV8@public.gmane.org>
2017-08-29 12:10 ` Sebastian Reichel
2017-08-29 12:24 ` Tomi Valkeinen
[not found] ` <e0c6447f-5a0f-b43a-7087-5ee37af2a1c1-l0cyMroinI0@public.gmane.org>
2017-08-29 14:34 ` Tony Lindgren
[not found] ` <20170829143453.GV6008-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 15:57 ` Tony Lindgren
[not found] ` <20170829155738.GB6008-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 16:26 ` Tony Lindgren
2017-08-29 12:27 ` Tomi Valkeinen
[not found] ` <5efc9078-5886-5826-834e-facd67ddfbe5-l0cyMroinI0@public.gmane.org>
2017-08-29 14:37 ` Tony Lindgren
2017-08-29 14:42 ` Tony Lindgren
[not found] ` <20170829144205.GX6008-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-29 15:31 ` Adam Ford
[not found] ` <CAHCN7xK7Vy8Hw1OV3AQb4vAo3n=6qfE_8xunL1MXQaTLY0Yy4w-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-08-29 15:35 ` Tony Lindgren
2017-08-28 21:19 ` [PATCH 15/17] ARM: dts: Add missing dma hwmod property for omap5 Tony Lindgren
2017-08-28 21:19 ` [PATCH 16/17] ARM: dts: Add missing hwmod related nodes for am33xx Tony Lindgren
2017-08-28 21:19 ` [PATCH 17/17] ARM: dts: Add missing hwmod related properties for dra7 Tony Lindgren
[not found] ` <20170828211918.11573-18-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-28 21:34 ` Nishanth Menon [this message]
[not found] ` <8c0ecbf6-26fb-1998-6bb5-0a74d9daa2ab-l0cyMroinI0@public.gmane.org>
2017-08-28 21:37 ` Tony Lindgren
[not found] ` <20170828213753.GP6008-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-28 21:52 ` Nishanth Menon
[not found] ` <fd064c10-2051-1579-bde1-60c3fed2b4a0-l0cyMroinI0@public.gmane.org>
2017-08-28 22:27 ` Tony Lindgren
-- strict thread matches above, loose matches on Subject: below --
2017-08-30 15:19 [PATCHv2 00/17] Fix missing device tree hwmods and IO ranges omap variants Tony Lindgren
[not found] ` <20170830151953.30856-1-tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2017-08-30 15:19 ` [PATCH 17/17] ARM: dts: Add missing hwmod related properties for dra7 Tony Lindgren
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=8c0ecbf6-26fb-1998-6bb5-0a74d9daa2ab@ti.com \
--to=nm-l0cymroini0@public.gmane.org \
--cc=bcousson-rdvid1DuHRBWk0Htik3J/w@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=rafael.j.wysocki-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=t-kristo-l0cyMroinI0@public.gmane.org \
--cc=tony-4v6yS6AI5VpBDgjK7y7TUQ@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 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).