All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data
@ 2014-03-25  4:29 Kuninori Morimoto
  2014-03-25  4:35 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support Kuninori Morimoto
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2014-03-25  4:29 UTC (permalink / raw)
  To: linux-sh


Hi Simon

Next R-Car sound driver supports new style platform data
which is required for DT support.
We need switch to new style on platform.
Current sound driver has new/old style compatibility,
but, I would like to remove old style compatibility immediately.
I can do it if these patches are accepted.

These patches are based on...

    1) Simon's renesas-devel-v3.14-rc7-20140324
    2) Mark's  asoc/topic/rcar
    3) Mark's  asoc/topic/simple
    4) Mark's  asoc/fix/rcar

Simon, can you use 2) branch for these patches ?
3) is needed to use sound, but not needed for compile.
4) will goes to linus/master soon

I would like to ask Mark to use cross brach between Simon's tree.
Is it possible ?

Kuninori Morimoto (6):
      ARM: lager: fixup SND_SOC_DAIFMT_CBx_CFx flags
      ARM: shmobile: r8a7778: remove old style audio clock
      ARM: shmobile: r8a7790: remove old style audio clock
      ARM: shmobile: bockw: remove old style audio clock
      ARM: shmobile: bockw: switch to use dai info for R-Car sound
      ARM: shmobile: lager: switch to use dai info for R-Car sound

 arch/arm/mach-shmobile/board-bockw.c   |   63 +++++++++++++++++++++-----------
 arch/arm/mach-shmobile/board-lager.c   |   21 +++++++----
 arch/arm/mach-shmobile/clock-r8a7778.c |   22 +++++------
 arch/arm/mach-shmobile/clock-r8a7790.c |   24 +++++-------
 4 files changed, 73 insertions(+), 57 deletions(-)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support
  2014-03-25  4:29 [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
@ 2014-03-25  4:35 ` Kuninori Morimoto
  2014-03-26  0:02 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2014-03-25  4:35 UTC (permalink / raw)
  To: linux-sh


Hi Simon

These patches adds sound DT support on r8a7778/r8a7790.
But, r8a7778 can't use it at this point,
since it doesn't support CCF.

These patches are based on...

     1) Simon's renesas-devel-v3.14-rc7-20140324
     2) Mark's  asoc/topic/rcar
     3) Mark's  asoc/topic/simple
     4) Mark's  asoc/fix/rcar
     5) my previous patches

Kuninori Morimoto (7):
      ARM: shmobile: r8a7790: add MSTP10 support on DTSI
      ARM: shmobile: r8a7790: add R-Car sound support on DTSI
      ARM: shmobile: r8a7778: add R-Car sound support on DTSI
      ARM: shmobile: lager: enable sound codec for DT
      ARM: shmobile: bockw: enable sound codec for DT
      ARM: shmobile: lager: add R-Car sound support on DTS
      ARM: shmobile: bockw: add R-Car sound support on DTS

 arch/arm/boot/dts/r8a7778-bockw-reference.dts |  138 +++++++++++++++++++++++++
 arch/arm/boot/dts/r8a7778.dtsi                |   54 ++++++++++
 arch/arm/boot/dts/r8a7790-lager.dts           |   51 +++++++++
 arch/arm/boot/dts/r8a7790.dtsi                |  105 +++++++++++++++++++
 arch/arm/mach-shmobile/Kconfig                |    3 +
 include/dt-bindings/clock/r8a7790-clock.h     |   24 +++++
 6 files changed, 375 insertions(+)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data
  2014-03-25  4:29 [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
  2014-03-25  4:35 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support Kuninori Morimoto
@ 2014-03-26  0:02 ` Kuninori Morimoto
  2014-04-10 23:22 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support Simon Horman
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2014-03-26  0:02 UTC (permalink / raw)
  To: linux-sh

Hi Simon

I will re-post these patches after merge window

> Next R-Car sound driver supports new style platform data
> which is required for DT support.
> We need switch to new style on platform.
> Current sound driver has new/old style compatibility,
> but, I would like to remove old style compatibility immediately.
> I can do it if these patches are accepted.
> 
> These patches are based on...
> 
>     1) Simon's renesas-devel-v3.14-rc7-20140324
>     2) Mark's  asoc/topic/rcar
>     3) Mark's  asoc/topic/simple
>     4) Mark's  asoc/fix/rcar
> 
> Simon, can you use 2) branch for these patches ?
> 3) is needed to use sound, but not needed for compile.
> 4) will goes to linus/master soon
> 
> I would like to ask Mark to use cross brach between Simon's tree.
> Is it possible ?
> 
> Kuninori Morimoto (6):
>       ARM: lager: fixup SND_SOC_DAIFMT_CBx_CFx flags
>       ARM: shmobile: r8a7778: remove old style audio clock
>       ARM: shmobile: r8a7790: remove old style audio clock
>       ARM: shmobile: bockw: remove old style audio clock
>       ARM: shmobile: bockw: switch to use dai info for R-Car sound
>       ARM: shmobile: lager: switch to use dai info for R-Car sound
> 
>  arch/arm/mach-shmobile/board-bockw.c   |   63 +++++++++++++++++++++-----------
>  arch/arm/mach-shmobile/board-lager.c   |   21 +++++++----
>  arch/arm/mach-shmobile/clock-r8a7778.c |   22 +++++------
>  arch/arm/mach-shmobile/clock-r8a7790.c |   24 +++++-------
>  4 files changed, 73 insertions(+), 57 deletions(-)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support
  2014-03-25  4:29 [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
  2014-03-25  4:35 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support Kuninori Morimoto
  2014-03-26  0:02 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
@ 2014-04-10 23:22 ` Simon Horman
  2014-04-11  0:46 ` Kuninori Morimoto
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Simon Horman @ 2014-04-10 23:22 UTC (permalink / raw)
  To: linux-sh

On Mon, Mar 24, 2014 at 09:35:56PM -0700, Kuninori Morimoto wrote:
> 
> Hi Simon
> 
> These patches adds sound DT support on r8a7778/r8a7790.
> But, r8a7778 can't use it at this point,
> since it doesn't support CCF.
> 
> These patches are based on...
> 
>      1) Simon's renesas-devel-v3.14-rc7-20140324
>      2) Mark's  asoc/topic/rcar
>      3) Mark's  asoc/topic/simple
>      4) Mark's  asoc/fix/rcar
>      5) my previous patches
> 
> Kuninori Morimoto (7):
>       ARM: shmobile: r8a7790: add MSTP10 support on DTSI
>       ARM: shmobile: r8a7790: add R-Car sound support on DTSI
>       ARM: shmobile: r8a7778: add R-Car sound support on DTSI
>       ARM: shmobile: lager: enable sound codec for DT
>       ARM: shmobile: bockw: enable sound codec for DT
>       ARM: shmobile: lager: add R-Car sound support on DTS
>       ARM: shmobile: bockw: add R-Car sound support on DTS

Hi Morimoto-san,

as usual with DT patches. Please repost these once
all the dependencies have been merged. If there are
no-compile time dependencies then its sufficient for
the maintainer (Mark?) to have accepted them and I
can merge the DT bits for shmobile in parallel.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support
  2014-03-25  4:29 [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2014-04-10 23:22 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support Simon Horman
@ 2014-04-11  0:46 ` Kuninori Morimoto
  2014-04-11  6:12 ` Simon Horman
  2014-04-11  6:40 ` Kuninori Morimoto
  5 siblings, 0 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2014-04-11  0:46 UTC (permalink / raw)
  To: linux-sh


Hi Simon

> > Kuninori Morimoto (7):
> >       ARM: shmobile: r8a7790: add MSTP10 support on DTSI
> >       ARM: shmobile: r8a7790: add R-Car sound support on DTSI
> >       ARM: shmobile: r8a7778: add R-Car sound support on DTSI
> >       ARM: shmobile: lager: enable sound codec for DT
> >       ARM: shmobile: bockw: enable sound codec for DT
> >       ARM: shmobile: lager: add R-Car sound support on DTS
> >       ARM: shmobile: bockw: add R-Car sound support on DTS
> 
> Hi Morimoto-san,
> 
> as usual with DT patches. Please repost these once
> all the dependencies have been merged. If there are
> no-compile time dependencies then its sufficient for
> the maintainer (Mark?) to have accepted them and I
> can merge the DT bits for shmobile in parallel.

The dependency codes are included in current linus/master.
I will re-post these to SH-ARM ML if -rc1 was released
(or renesas-devel-v3.15-rc1-xxxx was released ?)


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support
  2014-03-25  4:29 [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
                   ` (3 preceding siblings ...)
  2014-04-11  0:46 ` Kuninori Morimoto
@ 2014-04-11  6:12 ` Simon Horman
  2014-04-11  6:40 ` Kuninori Morimoto
  5 siblings, 0 replies; 7+ messages in thread
From: Simon Horman @ 2014-04-11  6:12 UTC (permalink / raw)
  To: linux-sh

On Thu, Apr 10, 2014 at 05:46:42PM -0700, Kuninori Morimoto wrote:
> 
> Hi Simon
> 
> > > Kuninori Morimoto (7):
> > >       ARM: shmobile: r8a7790: add MSTP10 support on DTSI
> > >       ARM: shmobile: r8a7790: add R-Car sound support on DTSI
> > >       ARM: shmobile: r8a7778: add R-Car sound support on DTSI
> > >       ARM: shmobile: lager: enable sound codec for DT
> > >       ARM: shmobile: bockw: enable sound codec for DT
> > >       ARM: shmobile: lager: add R-Car sound support on DTS
> > >       ARM: shmobile: bockw: add R-Car sound support on DTS
> > 
> > Hi Morimoto-san,
> > 
> > as usual with DT patches. Please repost these once
> > all the dependencies have been merged. If there are
> > no-compile time dependencies then its sufficient for
> > the maintainer (Mark?) to have accepted them and I
> > can merge the DT bits for shmobile in parallel.
> 
> The dependency codes are included in current linus/master.
> I will re-post these to SH-ARM ML if -rc1 was released
> (or renesas-devel-v3.15-rc1-xxxx was released ?)

As soon as -rc1 is released is fine by me.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support
  2014-03-25  4:29 [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
                   ` (4 preceding siblings ...)
  2014-04-11  6:12 ` Simon Horman
@ 2014-04-11  6:40 ` Kuninori Morimoto
  5 siblings, 0 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2014-04-11  6:40 UTC (permalink / raw)
  To: linux-sh


Hi Simon

> > > as usual with DT patches. Please repost these once
> > > all the dependencies have been merged. If there are
> > > no-compile time dependencies then its sufficient for
> > > the maintainer (Mark?) to have accepted them and I
> > > can merge the DT bits for shmobile in parallel.
> > 
> > The dependency codes are included in current linus/master.
> > I will re-post these to SH-ARM ML if -rc1 was released
> > (or renesas-devel-v3.15-rc1-xxxx was released ?)
> 
> As soon as -rc1 is released is fine by me.

I see, will do

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-04-11  6:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-25  4:29 [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
2014-03-25  4:35 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support Kuninori Morimoto
2014-03-26  0:02 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: use new style sound data Kuninori Morimoto
2014-04-10 23:22 ` [PATCH 0/6] ARM: shmobile: r8a7778/r8a7790: sound DT support Simon Horman
2014-04-11  0:46 ` Kuninori Morimoto
2014-04-11  6:12 ` Simon Horman
2014-04-11  6:40 ` Kuninori Morimoto

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.