linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Simon Horman <horms@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v6 00/12] CCF support for Renesas r7s72100
Date: Fri, 16 May 2014 00:19:45 +0000	[thread overview]
Message-ID: <20140516001944.GA9418@verge.net.au> (raw)
In-Reply-To: <20140514230241.GA29233@verge.net.au>

On Thu, May 15, 2014 at 08:02:47AM +0900, Simon Horman wrote:
> On Wed, May 14, 2014 at 11:44:02AM +0200, Geert Uytterhoeven wrote:
> > Hi Wolfram, Simon,
> > 
> > On Wed, May 14, 2014 at 7:08 AM, Simon Horman <horms@verge.net.au> wrote:
> > > On Wed, May 14, 2014 at 03:10:04AM +0200, Wolfram Sang wrote:
> > >> This series moves the r7s72100 platfrom from the legacy clock implementation to
> > >> the common clock framework.
> > >>
> > >> This series has been tested with the renesas-devel-v3.15-rc2-20140428 tag. If
> > >> you want to boot into a console, you have a runtime dependency [1] which is
> > >> expected to go away in 3.15-rc6.
> > >>
> > >> Changes since V5:
> > >>
> > >> * rebased and tested against latest renesas/devel-tag
> > >>   (with and without CCF)
> > 
> > That's genmai-legacy (ARCH_SHMOBILE_LEGACY=y, MACH_GENMAI=y),
> > and genmai-multiplatform (ARCH_SHMOBILE_MULTI=y, MACH_GENMAI=y,
> > right?
> > 
> > There's still a third variant: genmai-reference (ARCH_SHMOBILE_LEGACY=y,
> > MACH_GENMAI_REFERENCE=y), which uses board-genmai-reference.c,
> > but without CCF, i.e. with clock-r7s72100.c.
> > For that, you still need the legacy clocks (also for serial!), so I needed the
> > (gmail-whitespace-damaged) temporary workaround below in my local tree.
> > 
> > > Thanks, I have queued up this series.
> > 
> > Do we want to go for the quick fix below, or just fix the issue for good,
> > and merge genmai-reference and genmai-multiplatform now, just like we did
> > for koelsch/lager?
> > 
> > I can send a proper patch for the quick fix, depending on your decision.
> 
> I do not feel particularly strongly about this.  But it seems to me that it
> would make sense to take the same approach as koelsch and lager.

Wolfram, are you planing to handle this one way or another?

> > >From 1b7b851a5d1b7d10f42f68a35b65278827b03cc4 Mon Sep 17 00:00:00 2001
> > From: Geert Uytterhoeven <geert+renesas@glider.be>
> > Date: Mon, 12 May 2014 14:32:25 +0200
> > Subject: [PATCH] ARM: shmobile: genmai-reference: Re-add legacy clocks
> > 
> > genmai-reference still uses non-CCF, so it needs the legacy clocks
> > 
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > ---
> >  arch/arm/mach-shmobile/clock-r7s72100.c |   10 ++++++++++
> >  1 file changed, 10 insertions(+)
> > 
> > diff --git a/arch/arm/mach-shmobile/clock-r7s72100.c
> > b/arch/arm/mach-shmobile/clock-r7s72100.c
> > index df187484de5d..1b677e0a69c6 100644
> > --- a/arch/arm/mach-shmobile/clock-r7s72100.c
> > +++ b/arch/arm/mach-shmobile/clock-r7s72100.c
> > @@ -194,6 +194,16 @@ static struct clk_lookup lookups[] = {
> >   CLKDEV_DEV_ID("rspi-rz.2", &mstp_clks[MSTP105]),
> >   CLKDEV_DEV_ID("rspi-rz.3", &mstp_clks[MSTP104]),
> >   CLKDEV_DEV_ID("rspi-rz.4", &mstp_clks[MSTP103]),
> > + CLKDEV_DEV_ID("e800c800.spi", &mstp_clks[MSTP107]),
> > + CLKDEV_DEV_ID("e800d000.spi", &mstp_clks[MSTP106]),
> > + CLKDEV_DEV_ID("e800d800.spi", &mstp_clks[MSTP105]),
> > + CLKDEV_DEV_ID("e800e000.spi", &mstp_clks[MSTP104]),
> > + CLKDEV_DEV_ID("e800e800.spi", &mstp_clks[MSTP103]),
> > + CLKDEV_DEV_ID("fcfee000.i2c", &mstp_clks[MSTP97]),
> > + CLKDEV_DEV_ID("fcfee400.i2c", &mstp_clks[MSTP96]),
> > + CLKDEV_DEV_ID("fcfee800.i2c", &mstp_clks[MSTP95]),
> > + CLKDEV_DEV_ID("fcfeec00.i2c", &mstp_clks[MSTP94]),
> > + CLKDEV_DEV_ID("e8008000.serial", &mstp_clks[MSTP45]),
> >   CLKDEV_DEV_ID("r7s72100-ether", &mstp_clks[MSTP74]),
> > 
> >   /* ICK */
> > -- 
> > 1.7.9.5
> > 
> > Gr{oetje,eeting}s,
> > 
> >                         Geert
> > 
> > --
> > Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
> > 
> > In personal conversations with technical people, I call myself a hacker. But
> > when I'm talking to journalists I just say "programmer" or something like that.
> >                                 -- Linus Torvalds
> > 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

  reply	other threads:[~2014-05-16  0:19 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-14  1:10 [PATCH v6 00/12] CCF support for Renesas r7s72100 Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 01/12] ARM: shmobile: r7s72100: document MSTP clock support Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 02/12] ARM: shmobile: r7s72100: add essential clock nodes to dtsi Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 03/12] ARM: shmobile: r7s72100: genmai: populate nodes for external clocks Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 04/12] ARM: shmobile: r7s72100: add scif nodes to dtsi Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 05/12] ARM: shmobile: r7s72100: genmai: add uart alias and activate scif2 as console Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 06/12] ARM: shmobile: r7s72100: genmai: platform scif devices only for legacy support Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 07/12] ARM: shmobile: r7s72100: add i2c clocks to dtsi Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 08/12] ARM: shmobile: r7s72100: remove I2C DT clocks from legacy clock support Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 09/12] ARM: shmobile: r7s72100: add spi clocks to dtsi Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 10/12] ARM: shmobile: r7s72100: remove SPI DT clocks from legacy clock support Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 11/12] ARM: shmobile: r7s72100: use workaround for non DT-clocks Wolfram Sang
2014-05-14  1:10 ` [PATCH v6 12/12] ARM: shmobile: Add forward declaration of struct clk to silence warning Wolfram Sang
2014-05-14  5:08 ` [PATCH v6 00/12] CCF support for Renesas r7s72100 Simon Horman
2014-05-14  7:46   ` Wolfram Sang
2014-05-14  8:09     ` Simon Horman
2014-05-14  9:44   ` Geert Uytterhoeven
2014-05-14 23:02     ` Simon Horman
2014-05-16  0:19       ` Simon Horman [this message]
2014-05-16  6:49         ` Wolfram Sang
2014-05-16  7:03           ` Simon Horman
2014-05-16  8:22             ` Wolfram Sang

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=20140516001944.GA9418@verge.net.au \
    --to=horms@verge.net.au \
    --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 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).