All of lore.kernel.org
 help / color / mirror / Atom feed
From: Benoit Cousson <bcousson@baylibre.com>
To: Rajendra Nayak <rnayak@ti.com>, paul@pwsan.com, tony@atomide.com
Cc: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	devicetree@vger.kernel.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH v2 2/5] ARM: dts: omap: Add new bindings for OMAP
Date: Wed, 09 Oct 2013 17:13:44 +0200	[thread overview]
Message-ID: <525572A8.9060401@baylibre.com> (raw)
In-Reply-To: <1381313521-10422-3-git-send-email-rnayak@ti.com>

Hi Rajendra,

On 09/10/2013 12:11, Rajendra Nayak wrote:
> On OMAP we have co-processor IPs, memory controllers,
> GPIOs which control regulators and power switches to
> PMIC, and SoC internal Bus IPs, some or most of which
> should either not be reset or idled or both at init.
> (In some cases there are erratas which prevent an IP
> from being reset)
> Have a way to pass this information from DT.

Did you get some acked-by from the DT maintainers?
Every new bindings must be carefully reviewed now.

Regards,
Benoit

>
> Update the am33xx/omap4 and omap5 dtsi files with the
> new bindings for modules which either should not be
> idled. reset or both. A later patch would cleanup the
> same information that exists today as part of the hwmod
> data files.
>
> Signed-off-by: Rajendra Nayak <rnayak@ti.com>
> ---
>   .../devicetree/bindings/arm/omap/omap.txt          |    3 ++-
>   arch/arm/boot/dts/am33xx.dtsi                      |    2 ++
>   arch/arm/boot/dts/omap4.dtsi                       |    3 +++
>   arch/arm/boot/dts/omap5.dtsi                       |    2 ++
>   4 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/arm/omap/omap.txt b/Documentation/devicetree/bindings/arm/omap/omap.txt
> index 91b7049..808c154 100644
> --- a/Documentation/devicetree/bindings/arm/omap/omap.txt
> +++ b/Documentation/devicetree/bindings/arm/omap/omap.txt
> @@ -21,7 +21,8 @@ Required properties:
>   Optional properties:
>   - ti,no_idle_on_suspend: When present, it prevents the PM to idle the module
>     during suspend.
> -
> +- ti,no-reset-on-init: When present, the module should not be reset at init
> +- ti,no-idle-on-init: When present, the module should not be idled at init
>
>   Example:
>
> diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
> index f9c5da9..ec33ea0 100644
> --- a/arch/arm/boot/dts/am33xx.dtsi
> +++ b/arch/arm/boot/dts/am33xx.dtsi
> @@ -607,6 +607,7 @@
>   			reg = <0x44d00000 0x4000	/* M3 UMEM */
>   			       0x44d80000 0x2000>;	/* M3 DMEM */
>   			ti,hwmods = "wkup_m3";
> +			ti,no-reset-on-init;
>   		};
>
>   		elm: elm@48080000 {
> @@ -637,6 +638,7 @@
>   		gpmc: gpmc@50000000 {
>   			compatible = "ti,am3352-gpmc";
>   			ti,hwmods = "gpmc";
> +			ti,no-idle-on-init;
>   			reg = <0x50000000 0x2000>;
>   			interrupts = <100>;
>   			gpmc,num-cs = <7>;
> diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi
> index 22d9f2b..e8fe797 100644
> --- a/arch/arm/boot/dts/omap4.dtsi
> +++ b/arch/arm/boot/dts/omap4.dtsi
> @@ -214,6 +214,7 @@
>   			gpmc,num-cs = <8>;
>   			gpmc,num-waitpins = <4>;
>   			ti,hwmods = "gpmc";
> +			ti,no-idle-on-init;
>   		};
>
>   		uart1: serial@4806a000 {
> @@ -492,6 +493,7 @@
>   			reg = <0x4c000000 0x100>;
>   			interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
>   			ti,hwmods = "emif1";
> +			ti,no-idle-on-init;
>   			phy-type = <1>;
>   			hw-caps-read-idle-ctrl;
>   			hw-caps-ll-interface;
> @@ -503,6 +505,7 @@
>   			reg = <0x4d000000 0x100>;
>   			interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
>   			ti,hwmods = "emif2";
> +			ti,no-idle-on-init;
>   			phy-type = <1>;
>   			hw-caps-read-idle-ctrl;
>   			hw-caps-ll-interface;
> diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
> index 7cdea1b..a9d49df 100644
> --- a/arch/arm/boot/dts/omap5.dtsi
> +++ b/arch/arm/boot/dts/omap5.dtsi
> @@ -607,6 +607,7 @@
>   		emif1: emif@0x4c000000 {
>   			compatible	= "ti,emif-4d5";
>   			ti,hwmods	= "emif1";
> +			ti,no-idle-on-init;
>   			phy-type	= <2>; /* DDR PHY type: Intelli PHY */
>   			reg = <0x4c000000 0x400>;
>   			interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
> @@ -618,6 +619,7 @@
>   		emif2: emif@0x4d000000 {
>   			compatible	= "ti,emif-4d5";
>   			ti,hwmods	= "emif2";
> +			ti,no-idle-on-init;
>   			phy-type	= <2>; /* DDR PHY type: Intelli PHY */
>   			reg = <0x4d000000 0x400>;
>   			interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
>


WARNING: multiple messages have this Message-ID (diff)
From: bcousson@baylibre.com (Benoit Cousson)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 2/5] ARM: dts: omap: Add new bindings for OMAP
Date: Wed, 09 Oct 2013 17:13:44 +0200	[thread overview]
Message-ID: <525572A8.9060401@baylibre.com> (raw)
In-Reply-To: <1381313521-10422-3-git-send-email-rnayak@ti.com>

Hi Rajendra,

On 09/10/2013 12:11, Rajendra Nayak wrote:
> On OMAP we have co-processor IPs, memory controllers,
> GPIOs which control regulators and power switches to
> PMIC, and SoC internal Bus IPs, some or most of which
> should either not be reset or idled or both at init.
> (In some cases there are erratas which prevent an IP
> from being reset)
> Have a way to pass this information from DT.

Did you get some acked-by from the DT maintainers?
Every new bindings must be carefully reviewed now.

Regards,
Benoit

>
> Update the am33xx/omap4 and omap5 dtsi files with the
> new bindings for modules which either should not be
> idled. reset or both. A later patch would cleanup the
> same information that exists today as part of the hwmod
> data files.
>
> Signed-off-by: Rajendra Nayak <rnayak@ti.com>
> ---
>   .../devicetree/bindings/arm/omap/omap.txt          |    3 ++-
>   arch/arm/boot/dts/am33xx.dtsi                      |    2 ++
>   arch/arm/boot/dts/omap4.dtsi                       |    3 +++
>   arch/arm/boot/dts/omap5.dtsi                       |    2 ++
>   4 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/devicetree/bindings/arm/omap/omap.txt b/Documentation/devicetree/bindings/arm/omap/omap.txt
> index 91b7049..808c154 100644
> --- a/Documentation/devicetree/bindings/arm/omap/omap.txt
> +++ b/Documentation/devicetree/bindings/arm/omap/omap.txt
> @@ -21,7 +21,8 @@ Required properties:
>   Optional properties:
>   - ti,no_idle_on_suspend: When present, it prevents the PM to idle the module
>     during suspend.
> -
> +- ti,no-reset-on-init: When present, the module should not be reset at init
> +- ti,no-idle-on-init: When present, the module should not be idled at init
>
>   Example:
>
> diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi
> index f9c5da9..ec33ea0 100644
> --- a/arch/arm/boot/dts/am33xx.dtsi
> +++ b/arch/arm/boot/dts/am33xx.dtsi
> @@ -607,6 +607,7 @@
>   			reg = <0x44d00000 0x4000	/* M3 UMEM */
>   			       0x44d80000 0x2000>;	/* M3 DMEM */
>   			ti,hwmods = "wkup_m3";
> +			ti,no-reset-on-init;
>   		};
>
>   		elm: elm at 48080000 {
> @@ -637,6 +638,7 @@
>   		gpmc: gpmc at 50000000 {
>   			compatible = "ti,am3352-gpmc";
>   			ti,hwmods = "gpmc";
> +			ti,no-idle-on-init;
>   			reg = <0x50000000 0x2000>;
>   			interrupts = <100>;
>   			gpmc,num-cs = <7>;
> diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi
> index 22d9f2b..e8fe797 100644
> --- a/arch/arm/boot/dts/omap4.dtsi
> +++ b/arch/arm/boot/dts/omap4.dtsi
> @@ -214,6 +214,7 @@
>   			gpmc,num-cs = <8>;
>   			gpmc,num-waitpins = <4>;
>   			ti,hwmods = "gpmc";
> +			ti,no-idle-on-init;
>   		};
>
>   		uart1: serial at 4806a000 {
> @@ -492,6 +493,7 @@
>   			reg = <0x4c000000 0x100>;
>   			interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
>   			ti,hwmods = "emif1";
> +			ti,no-idle-on-init;
>   			phy-type = <1>;
>   			hw-caps-read-idle-ctrl;
>   			hw-caps-ll-interface;
> @@ -503,6 +505,7 @@
>   			reg = <0x4d000000 0x100>;
>   			interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
>   			ti,hwmods = "emif2";
> +			ti,no-idle-on-init;
>   			phy-type = <1>;
>   			hw-caps-read-idle-ctrl;
>   			hw-caps-ll-interface;
> diff --git a/arch/arm/boot/dts/omap5.dtsi b/arch/arm/boot/dts/omap5.dtsi
> index 7cdea1b..a9d49df 100644
> --- a/arch/arm/boot/dts/omap5.dtsi
> +++ b/arch/arm/boot/dts/omap5.dtsi
> @@ -607,6 +607,7 @@
>   		emif1: emif at 0x4c000000 {
>   			compatible	= "ti,emif-4d5";
>   			ti,hwmods	= "emif1";
> +			ti,no-idle-on-init;
>   			phy-type	= <2>; /* DDR PHY type: Intelli PHY */
>   			reg = <0x4c000000 0x400>;
>   			interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
> @@ -618,6 +619,7 @@
>   		emif2: emif at 0x4d000000 {
>   			compatible	= "ti,emif-4d5";
>   			ti,hwmods	= "emif2";
> +			ti,no-idle-on-init;
>   			phy-type	= <2>; /* DDR PHY type: Intelli PHY */
>   			reg = <0x4d000000 0x400>;
>   			interrupts = <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>;
>

  reply	other threads:[~2013-10-09 15:13 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-09 10:11 [PATCH v2 0/5] OMAP: Add DT bindings to specify when devices should not be idled or reset Rajendra Nayak
2013-10-09 10:11 ` Rajendra Nayak
2013-10-09 10:11 ` [PATCH v2 1/5] ARM: OMAP2+: hwmod: cleanup HWMOD_INIT_NO_RESET usage Rajendra Nayak
2013-10-09 10:11   ` Rajendra Nayak
2013-10-09 14:55   ` Paul Walmsley
2013-10-09 14:55     ` Paul Walmsley
2013-10-09 10:11 ` [PATCH v2 2/5] ARM: dts: omap: Add new bindings for OMAP Rajendra Nayak
2013-10-09 10:11   ` Rajendra Nayak
2013-10-09 15:13   ` Benoit Cousson [this message]
2013-10-09 15:13     ` Benoit Cousson
2013-10-09 16:41     ` Rajendra Nayak
2013-10-09 16:41       ` Rajendra Nayak
2013-10-09 16:45       ` Benoit Cousson
2013-10-09 16:45         ` Benoit Cousson
2013-10-15  7:27         ` Benoit Cousson
2013-10-15  7:27           ` Benoit Cousson
2013-10-15  8:23           ` Rajendra Nayak
2013-10-15  8:23             ` Rajendra Nayak
2013-10-09 10:11 ` [PATCH v2 3/5] ARM: OMAP2+: hwmod: Extract no-idle and no-reset info from DT Rajendra Nayak
2013-10-09 10:11   ` Rajendra Nayak
2013-10-09 14:55   ` Paul Walmsley
2013-10-09 14:55     ` Paul Walmsley
2013-10-09 10:12 ` [PATCH v2 4/5] ARM: OMAP2+: hwmod: Cleanup usage of HWMOD_INIT_NO_RESET and HWMOD_INIT_NO_IDLE Rajendra Nayak
2013-10-09 10:12   ` Rajendra Nayak
2013-10-09 10:12 ` [PATCH v2 5/5] ARM: dts: AM335x-evmsk: Do not reset gpio0 Rajendra Nayak
2013-10-09 10:12   ` Rajendra Nayak
2013-10-10 16:44 ` [PATCH] ARM: dts: omap4-panda-es: Do not reset gpio1 Nishanth Menon
2013-10-10 16:44   ` Nishanth Menon
2013-10-10 16:44   ` Nishanth Menon
2013-10-10 16:47   ` Tony Lindgren
2013-10-10 16:47     ` Tony Lindgren
2013-10-10 19:01     ` Nishanth Menon
2013-10-10 19:01       ` Nishanth Menon
2013-10-10 19:01       ` Nishanth Menon
2013-10-15  7:28   ` Benoit Cousson
2013-10-15  7:28     ` Benoit Cousson

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=525572A8.9060401@baylibre.com \
    --to=bcousson@baylibre.com \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=paul@pwsan.com \
    --cc=rnayak@ti.com \
    --cc=tony@atomide.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.