From: Robert Jarzmik <robert.jarzmik@free.fr>
To: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>,
Mike Turquette <mturquette@linaro.org>,
Marek Vasut <marek.vasut@gmail.com>,
Ian Molton <ian.molton@codethink.co.uk>,
linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
Daniel Mack <zonque@gmail.com>,
kernel list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v1 0/3] Transition pxa25x clock to common clocks
Date: Sat, 08 Nov 2014 18:26:27 +0100 [thread overview]
Message-ID: <87lhnlwqm4.fsf@free.fr> (raw)
In-Reply-To: <CALT56yOCBN1NAfNw=vThVZ_o=ONGOTvzKHBH5tCTQShJY0wkrQ@mail.gmail.com> (Dmitry Eremin-Solenikov's message of "Thu, 6 Nov 2014 12:45:02 +0400")
[-- Attachment #1: Type: text/plain, Size: 588 bytes --]
Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> writes:
> Hello,
> Tested in qemu (pxa25x target).
>
> 2) sa1100-rtc could not find a clock and thus failed to be probed.
> 4) Got an issue with IrDA driver - it gets -ENODEV for UARTCLK clock
Hi Dmitry,
Would you mind retesting with the patch in [1] applied to see if points 2 and 4
are fixed ? Alternatively you can refetch from the github tree, I included that
incremental patch there too.
If it works correctly for you, could I have your Tested-by ? If not, tell me and
I'll try to figure out what's wrong.
Cheers.
--
Robert
[1]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-fixup-clk-add-pxa25x-clock-drivers.patch --]
[-- Type: text/x-diff, Size: 1467 bytes --]
>From 7f43d2f9c9d415b8bc1ed7e2f3e422de349d6957 Mon Sep 17 00:00:00 2001
From: Robert Jarzmik <robert.jarzmik@free.fr>
Date: Sat, 8 Nov 2014 18:20:18 +0100
Subject: [PATCH] fixup! clk: add pxa25x clock drivers
---
drivers/clk/pxa/clk-pxa25x.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/clk/pxa/clk-pxa25x.c b/drivers/clk/pxa/clk-pxa25x.c
index db07d4b..fb73e58 100644
--- a/drivers/clk/pxa/clk-pxa25x.c
+++ b/drivers/clk/pxa/clk-pxa25x.c
@@ -127,7 +127,6 @@ static struct desc_clk_cken pxa25x_clocks[] __initdata = {
PXA25X_PBUS147_CKEN("pxa2xx-uart.1", NULL, BTUART, 1, 10, 1),
PXA25X_PBUS147_CKEN("pxa2xx-uart.2", NULL, STUART, 1, 10, 1),
PXA25X_PBUS147_CKEN("pxa2xx-uart.3", NULL, HWUART, 1, 10, 1),
- PXA25X_PBUS147_CKEN("pxa2xx-ir", "UARTCLK", STUART, 1, 10, 1),
PXA25X_PBUS147_CKEN("pxa2xx-i2s", NULL, I2S, 1, 1, 0),
PXA25X_PBUS147_CKEN(NULL, "AC97CLK", AC97, 1, 12, 0),
PXA25X_OSC3_CKEN("pxa25x-ssp.0", NULL, SSP, 1, 1, 0),
@@ -233,8 +232,9 @@ static struct dummy_clk dummy_clks[] __initdata = {
DUMMY_CLK(NULL, "pxa26x-gpio", "osc_32_768khz"),
DUMMY_CLK("GPIO11_CLK", NULL, "osc_3_6864mhz"),
DUMMY_CLK("GPIO12_CLK", NULL, "osc_32_768khz"),
- DUMMY_CLK("sa1100-rtc", NULL, "osc_32_768khz"),
+ DUMMY_CLK(NULL, "sa1100-rtc", "osc_32_768khz"),
DUMMY_CLK("OSTIMER0", NULL, "osc_32_768khz"),
+ DUMMY_CLK("UARTCLK", "pxa2xx-ir", "STUART"),
};
static void __init pxa25x_dummy_clocks_init(void)
--
2.1.0
next prev parent reply other threads:[~2014-11-08 17:26 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-02 15:16 Robert Jarzmik
2014-11-02 15:16 ` [PATCH v1 1/3] clk: add pxa25x clock drivers Robert Jarzmik
2014-11-02 15:16 ` [PATCH v1 2/3] arm: pxa: Transition pxa25x to clk framework Robert Jarzmik
2014-11-02 15:16 ` [PATCH v1 3/3] ARM: pxa: move gpio11 clock to board files Robert Jarzmik
2014-11-06 8:45 ` [PATCH v1 0/3] Transition pxa25x clock to common clocks Dmitry Eremin-Solenikov
2014-11-06 20:04 ` Robert Jarzmik
2014-11-08 17:26 ` Robert Jarzmik [this message]
2014-11-08 19:55 ` Dmitry Eremin-Solenikov
2014-11-08 21:01 ` Robert Jarzmik
2014-11-09 16:11 ` Dmitry Eremin-Solenikov
2014-11-09 18:19 ` Robert Jarzmik
2014-11-11 10:09 ` Robert Jarzmik
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=87lhnlwqm4.fsf@free.fr \
--to=robert.jarzmik@free.fr \
--cc=dbaryshkov@gmail.com \
--cc=haojian.zhuang@gmail.com \
--cc=ian.molton@codethink.co.uk \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marek.vasut@gmail.com \
--cc=mturquette@linaro.org \
--cc=zonque@gmail.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
Powered by JetHome