From: Tero Kristo <t-kristo@ti.com>
To: Tony Lindgren <tony@atomide.com>
Cc: nm@ti.com, devicetree@vger.kernel.org, paul@pwsan.com,
mturquette@linaro.org, linux-omap@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCHv2 13/14] ARM: OMAP24xx: clock: remove legacy clock data
Date: Wed, 5 Mar 2014 10:14:46 +0200 [thread overview]
Message-ID: <5316DCF6.6070808@ti.com> (raw)
In-Reply-To: <20140304212811.GA8705@atomide.com>
On 03/04/2014 11:28 PM, Tony Lindgren wrote:
> * Tero Kristo <t-kristo@ti.com> [140304 10:58]:
>> On 03/04/2014 07:32 PM, Tony Lindgren wrote:
>>> * Tero Kristo <t-kristo@ti.com> [140304 01:22]:
>>>> This is no longer needed as clock data is provided through DT.
>>>
>>> Looks like there's a new error even before applying this patch in
>>> the series as I'm now getting the following oops on n8x0. So cannot
>>> test this patch yet.
>>
>> Is this with OMAP2 only boot?
>
> Yeah that's with omap2 only.
That explains it, as previous series was never boot tested in omap2 only
config (due to build issues.)
I just force pushed the branch with the below additional patch, can you
check if it works now?
-Tero
------------------------------------
From b8be115c8bba8088f7b25922ed81c1d5867af974 Mon Sep 17 00:00:00 2001
From: Tero Kristo <t-kristo@ti.com>
Date: Wed, 5 Mar 2014 10:03:38 +0200
Subject: [PATCH 12/15] CLK: TI: gate: add composite interface clock to OMAP2
only build
Composite interface clock is needed by OMAP2, but it was only built
in for OMAP3. Fixed the conditional build flag checks for this.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
---
drivers/clk/ti/gate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/clk/ti/gate.c b/drivers/clk/ti/gate.c
index 3e2999d..474c171 100644
--- a/drivers/clk/ti/gate.c
+++ b/drivers/clk/ti/gate.c
@@ -185,7 +185,7 @@ of_ti_composite_no_wait_gate_clk_setup(struct
device_node *node)
CLK_OF_DECLARE(ti_composite_no_wait_gate_clk,
"ti,composite-no-wait-gate-clock",
of_ti_composite_no_wait_gate_clk_setup);
-#ifdef CONFIG_ARCH_OMAP3
+#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3)
static void __init of_ti_composite_interface_clk_setup(struct
device_node *node)
{
_of_ti_composite_gate_clk_setup(node, &clkhwops_iclk_wait);
--
1.7.9.5
next prev parent reply other threads:[~2014-03-05 8:14 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-04 9:18 [PATCHv2 00/14]: ARM: OMAP2: clock DT conversion Tero Kristo
2014-03-04 9:18 ` [PATCHv2 01/14] ARM: OMAP2: convert sys_ck and osc_ck to standard clock types Tero Kristo
2014-03-04 9:18 ` [PATCHv2 02/14] ARM: OMAP2420: clock: get rid of fixed-div property use Tero Kristo
2014-03-04 9:18 ` [PATCHv2 03/14] CLK: TI: DPLL: simplify autoidle register detection logic Tero Kristo
2014-03-04 9:18 ` [PATCHv2 04/14] CLK: TI: DPLL: add support for omap2 core dpll Tero Kristo
2014-03-04 9:18 ` [PATCHv2 05/14] CLK: TI: APLL: add support for omap2 aplls Tero Kristo
2014-03-04 9:18 ` [PATCHv2 06/14] CLK: TI: gate: fixed DT binding documentation bugs Tero Kristo
2014-03-04 9:18 ` [PATCHv2 07/14] CLK: TI: interface: add support for omap2430 specific interface clock Tero Kristo
2014-03-04 9:18 ` [PATCHv2 08/14] CLK: TI: OMAP2: add clock init support Tero Kristo
2014-03-04 9:18 ` [PATCHv2 09/14] ARM: OMAP2: PRM: add support for OMAP2 specific clock providers Tero Kristo
2014-03-04 9:18 ` [PATCHv2 10/14] ARM: dts: omap2 clock data Tero Kristo
2014-03-04 9:18 ` [PATCHv2 11/14] ARM: OMAP2: clock: add DT boot support for cpufreq_ck Tero Kristo
2014-03-04 9:18 ` [PATCHv2 12/14] ARM: OMAP2: clock: use DT clock boot if available Tero Kristo
[not found] ` <1393924700-6510-1-git-send-email-t-kristo-l0cyMroinI0@public.gmane.org>
2014-03-04 9:18 ` [PATCHv2 13/14] ARM: OMAP24xx: clock: remove legacy clock data Tero Kristo
2014-03-04 17:32 ` Tony Lindgren
2014-03-04 18:54 ` Tero Kristo
2014-03-04 21:28 ` Tony Lindgren
2014-03-05 8:14 ` Tero Kristo [this message]
2014-03-05 17:08 ` Tony Lindgren
[not found] ` <20140305170857.GD4983-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
2014-03-05 18:10 ` Tony Lindgren
2014-03-06 13:39 ` Tero Kristo
2014-03-04 9:18 ` [PATCHv2 14/14] ARM: OMAP3: " Tero Kristo
2014-03-04 17:32 ` Tony Lindgren
2014-03-05 7:32 ` Tero Kristo
2014-03-05 16:28 ` Tony Lindgren
2014-05-19 14:21 ` [PATCHv2 00/14]: ARM: OMAP2: clock DT conversion Tero Kristo
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=5316DCF6.6070808@ti.com \
--to=t-kristo@ti.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=mturquette@linaro.org \
--cc=nm@ti.com \
--cc=paul@pwsan.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 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).