All of lore.kernel.org
 help / color / mirror / Atom feed
From: sylvester.nawrocki@gmail.com (Sylwester Nawrocki)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] clk: register fixed-clock only if #clock-cells property is present
Date: Wed, 26 Mar 2014 20:57:57 +0100	[thread overview]
Message-ID: <53333145.4080903@gmail.com> (raw)
In-Reply-To: <CAOMZO5DJPKvha7A-foktsB2dEw9xGXL_++uBXj_3ScAPTXNOkw@mail.gmail.com>

Hi Fabio,

On 03/26/2014 07:33 PM, Fabio Estevam wrote:
> On Wed, Mar 26, 2014 at 3:22 PM, Sylwester Nawrocki
> <s.nawrocki@samsung.com> wrote:
[...]
> Still not able to boot with this patch applied:

Perhaps a change as below helps ?

 From 85ee85e4a92b42442354f3f2454be50c173e1c59 Mon Sep 17 00:00:00 2001
From: Sylwester Nawrocki <s.nawrocki@samsung.com>
Date: Wed, 26 Mar 2014 20:54:13 +0100
Subject: [PATCH] clk: reverse default clk provider initialization order 
in of_clk_init()

Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
---
  drivers/clk/clk.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index fb3c40b..d30809c 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -2608,7 +2608,7 @@ void __init of_clk_init(const struct of_device_id 
*matches)

  		parent->clk_init_cb = match->data;
  		parent->np = np;
-		list_add(&parent->node, &clk_provider_list);
+		list_add_tail(&parent->node, &clk_provider_list);
  	}

  	while (!list_empty(&clk_provider_list)) {
-- 
1.7.9.5


This should keep the clock providers initialization order as before,
rather than reversing it.
Anyway, I think the clock dependencies need to be specified in
the device tree explicitly to avoid surprises like this when,
e.g. clock nodes get reordered in dts or by dtc.

--
Regards,
Sylwester

WARNING: multiple messages have this Message-ID (diff)
From: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
To: Fabio Estevam <festevam@gmail.com>,
	Sylwester Nawrocki <s.nawrocki@samsung.com>
Cc: "linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	Mike Turquette <mturquette@linaro.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	Russell King <linux@arm.linux.org.uk>,
	t.figa@samsung.com, linux-kernel <linux-kernel@vger.kernel.org>,
	Boris BREZILLON <b.brezillon@overkiz.com>,
	Kevin Hilman <khilman@linaro.org>,
	Shawn Guo <shawn.guo@linaro.org>,
	Sascha Hauer <kernel@pengutronix.de>,
	Nicolas Ferre <nicolas.ferre@atmel.com>,
	Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Subject: Re: [PATCH] clk: register fixed-clock only if #clock-cells property is present
Date: Wed, 26 Mar 2014 20:57:57 +0100	[thread overview]
Message-ID: <53333145.4080903@gmail.com> (raw)
In-Reply-To: <CAOMZO5DJPKvha7A-foktsB2dEw9xGXL_++uBXj_3ScAPTXNOkw@mail.gmail.com>

Hi Fabio,

On 03/26/2014 07:33 PM, Fabio Estevam wrote:
> On Wed, Mar 26, 2014 at 3:22 PM, Sylwester Nawrocki
> <s.nawrocki@samsung.com> wrote:
[...]
> Still not able to boot with this patch applied:

Perhaps a change as below helps ?

 From 85ee85e4a92b42442354f3f2454be50c173e1c59 Mon Sep 17 00:00:00 2001
From: Sylwester Nawrocki <s.nawrocki@samsung.com>
Date: Wed, 26 Mar 2014 20:54:13 +0100
Subject: [PATCH] clk: reverse default clk provider initialization order 
in of_clk_init()

Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
---
  drivers/clk/clk.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index fb3c40b..d30809c 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -2608,7 +2608,7 @@ void __init of_clk_init(const struct of_device_id 
*matches)

  		parent->clk_init_cb = match->data;
  		parent->np = np;
-		list_add(&parent->node, &clk_provider_list);
+		list_add_tail(&parent->node, &clk_provider_list);
  	}

  	while (!list_empty(&clk_provider_list)) {
-- 
1.7.9.5


This should keep the clock providers initialization order as before,
rather than reversing it.
Anyway, I think the clock dependencies need to be specified in
the device tree explicitly to avoid surprises like this when,
e.g. clock nodes get reordered in dts or by dtc.

--
Regards,
Sylwester

  reply	other threads:[~2014-03-26 19:57 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-26 18:22 [PATCH] clk: register fixed-clock only if #clock-cells property is present Sylwester Nawrocki
2014-03-26 18:22 ` Sylwester Nawrocki
2014-03-26 18:22 ` Sylwester Nawrocki
2014-03-26 18:33 ` Fabio Estevam
2014-03-26 18:33   ` Fabio Estevam
2014-03-26 18:33   ` Fabio Estevam
2014-03-26 19:57   ` Sylwester Nawrocki [this message]
2014-03-26 19:57     ` Sylwester Nawrocki
2014-03-26 20:14     ` Fabio Estevam
2014-03-26 20:14       ` Fabio Estevam
2014-03-26 20:14       ` Fabio Estevam
2014-03-26 20:25       ` Gregory CLEMENT
2014-03-26 20:25         ` Gregory CLEMENT
2014-03-26 20:25         ` Gregory CLEMENT
2014-03-26 20:34         ` Fabio Estevam
2014-03-26 20:34           ` Fabio Estevam
2014-03-27  7:58       ` Boris BREZILLON
2014-03-27  7:58         ` Boris BREZILLON
2014-03-27  8:11         ` [PATCH] ARM: imx6/dt: add ccm dependency upon ckil, ckih1 and osc clocks Boris BREZILLON
2014-03-27  8:11           ` Boris BREZILLON
2014-03-27  8:11           ` Boris BREZILLON
2014-03-27  8:39           ` Boris BREZILLON
2014-03-27  8:39             ` Boris BREZILLON
2014-03-27  8:39             ` Boris BREZILLON
2014-03-27 11:19           ` Fabio Estevam
2014-03-27 11:19             ` Fabio Estevam
2014-03-27 11:19             ` Fabio Estevam
2014-03-27 13:27             ` Boris BREZILLON
2014-03-27 13:27               ` Boris BREZILLON
2014-03-27 10:01         ` [PATCH] clk: register fixed-clock only if #clock-cells property is present Sylwester Nawrocki
2014-03-27 10:01           ` Sylwester Nawrocki
2014-03-27 10:01           ` Sylwester Nawrocki
2014-03-27 11:14           ` Boris BREZILLON
2014-03-27 11:14             ` Boris BREZILLON
2014-03-27 11:14             ` Boris BREZILLON
2014-03-27 10:55 ` Sylwester Nawrocki
2014-03-27 10:55   ` Sylwester Nawrocki
2014-03-27 10:55   ` Sylwester Nawrocki

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=53333145.4080903@gmail.com \
    --to=sylvester.nawrocki@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.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.