All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC 00/14] Convert Orion to generic clk framework
@ 2012-04-18 13:30 Andrew Lunn
  2012-04-18 20:53 ` Sascha Hauer
  0 siblings, 1 reply; 6+ messages in thread
From: Andrew Lunn @ 2012-04-18 13:30 UTC (permalink / raw)
  To: linux-arm-kernel

The generic clock framework is still exhibiting some flux, so these
patches are RFC, against 3.4.0-rc3. The changes to the drivers will be
least effected by clk flux, while the last patch will probably be most
affected. There will also be minor merge conflicts with the DT work.

Andrew Lunn (14):
  [ARM: Orion] Add clocks using the generic clk infrastructure.
  [ARM: Orion: SPI] Add clk/clkdev support.
  [ARM: Orion: Eth] Add clk/clkdev support.
  [ARM: Orion: WDT] Add clk/clkdev support
  [ARM: Orion: UART] Get the clock rate via clk_get_rate().
  [ARM: Orion: SATA] Add per channel clk/clkdev support.
  [ARM: Orion: EHCI] Add support for enabling clocks
  [ARM: Orion: NAND] Add support for clk, if there is one.
  [ARM: Orion: SDIO] Add support for clk.
  [ARM: Orion: CESA] Add support for clk
  [ARM: Orion: XOR] Add support for clk
  [ARM: Orion: PCIE] Add support for clk
  [ARM: Orion: Audio] Add clk/clkdev support
  [ARM: Kirkwood] Replace clock gating

 arch/arm/Kconfig                                  |    3 +
 arch/arm/mach-dove/common.c                       |   40 ++-
 arch/arm/mach-dove/dove-db-setup.c                |    1 -
 arch/arm/mach-kirkwood/board-dreamplug.c          |    1 -
 arch/arm/mach-kirkwood/common.c                   |  281 ++++++++++++++-------
 arch/arm/mach-kirkwood/include/mach/bridge-regs.h |   16 ++
 arch/arm/mach-kirkwood/mv88f6281gtw_ge-setup.c    |    1 -
 arch/arm/mach-kirkwood/pcie.c                     |   25 ++-
 arch/arm/mach-kirkwood/rd88f6192-nas-setup.c      |    1 -
 arch/arm/mach-kirkwood/t5325-setup.c              |    1 -
 arch/arm/mach-kirkwood/tsx1x-common.c             |    1 -
 arch/arm/mach-mv78xx0/common.c                    |   45 +++--
 arch/arm/mach-orion5x/common.c                    |   27 ++-
 arch/arm/mach-orion5x/rd88f6183ap-ge-setup.c      |    1 -
 arch/arm/plat-orion/common.c                      |  104 ++++----
 arch/arm/plat-orion/include/plat/common.h         |   34 ++--
 arch/arm/plat-orion/include/plat/orion_wdt.h      |   18 --
 arch/arm/plat-orion/pcie.c                        |    4 +-
 drivers/ata/sata_mv.c                             |   40 +++-
 drivers/crypto/mv_cesa.c                          |   14 +
 drivers/dma/mv_xor.c                              |   15 ++
 drivers/dma/mv_xor.h                              |    1 +
 drivers/mmc/host/mvsdio.c                         |   14 +
 drivers/mtd/nand/orion_nand.c                     |   18 ++
 drivers/net/ethernet/marvell/mv643xx_eth.c        |   42 +++-
 drivers/spi/spi-orion.c                           |   30 ++-
 drivers/usb/host/ehci-orion.c                     |   16 ++
 drivers/watchdog/orion_wdt.c                      |   16 +-
 include/linux/mv643xx_eth.h                       |    1 -
 include/linux/spi/orion_spi.h                     |   17 --
 sound/soc/kirkwood/kirkwood-i2s.c                 |   13 +
 sound/soc/kirkwood/kirkwood.h                     |    1 +
 32 files changed, 579 insertions(+), 263 deletions(-)
 delete mode 100644 arch/arm/plat-orion/include/plat/orion_wdt.h
 delete mode 100644 include/linux/spi/orion_spi.h

-- 
1.7.2.5

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

* [RFC 00/14] Convert Orion to generic clk framework
  2012-04-18 13:30 [RFC 00/14] Convert Orion to generic clk framework Andrew Lunn
@ 2012-04-18 20:53 ` Sascha Hauer
  2012-04-18 21:27   ` Turquette, Mike
  0 siblings, 1 reply; 6+ messages in thread
From: Sascha Hauer @ 2012-04-18 20:53 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Andrew,

On Wed, Apr 18, 2012 at 03:30:16PM +0200, Andrew Lunn wrote:
> The generic clock framework is still exhibiting some flux, so these
> patches are RFC, against 3.4.0-rc3. The changes to the drivers will be
> least effected by clk flux, while the last patch will probably be most
> affected. There will also be minor merge conflicts with the DT work.
>

For some reason your patches do not make it to the list. All we receive
is the introdutory mail. This happened with your last orion clock series
also.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

* [RFC 00/14] Convert Orion to generic clk framework
  2012-04-18 20:53 ` Sascha Hauer
@ 2012-04-18 21:27   ` Turquette, Mike
  2012-04-19  7:43     ` Andrew Lunn
  2012-04-20 16:49     ` Andrew Lunn
  0 siblings, 2 replies; 6+ messages in thread
From: Turquette, Mike @ 2012-04-18 21:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Apr 18, 2012 at 1:53 PM, Sascha Hauer <s.hauer@pengutronix.de> wrote:
> Hi Andrew,
>
> On Wed, Apr 18, 2012 at 03:30:16PM +0200, Andrew Lunn wrote:
>> The generic clock framework is still exhibiting some flux, so these
>> patches are RFC, against 3.4.0-rc3. The changes to the drivers will be
>> least effected by clk flux, while the last patch will probably be most
>> affected. There will also be minor merge conflicts with the DT work.
>>
>
> For some reason your patches do not make it to the list. All we receive
> is the introdutory mail. This happened with your last orion clock series
> also.

I got most the series, but I'm missing patches 2, 11 and 12...

Are these hosted on a public git tree somewhere?

Regards,
Mike

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

* [RFC 00/14] Convert Orion to generic clk framework
  2012-04-18 21:27   ` Turquette, Mike
@ 2012-04-19  7:43     ` Andrew Lunn
  2012-04-19 11:37       ` Arnd Bergmann
  2012-04-20 16:49     ` Andrew Lunn
  1 sibling, 1 reply; 6+ messages in thread
From: Andrew Lunn @ 2012-04-19  7:43 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Apr 18, 2012 at 02:27:50PM -0700, Turquette, Mike wrote:
> On Wed, Apr 18, 2012 at 1:53 PM, Sascha Hauer <s.hauer@pengutronix.de> wrote:
> > Hi Andrew,
> >
> > On Wed, Apr 18, 2012 at 03:30:16PM +0200, Andrew Lunn wrote:
> >> The generic clock framework is still exhibiting some flux, so these
> >> patches are RFC, against 3.4.0-rc3. The changes to the drivers will be
> >> least effected by clk flux, while the last patch will probably be most
> >> affected. There will also be minor merge conflicts with the DT work.
> >>
> >
> > For some reason your patches do not make it to the list. All we receive
> > is the introdutory mail. This happened with your last orion clock series
> > also.
> 
> I got most the series, but I'm missing patches 2, 11 and 12...

I get an email from the list server saying it does not like one of the
headers and the email needs approving. It gives no idea which header
it does not like, and email to the list maintainer goes
unanswered. I'm not doing anything strange either, just 
git send-email.

I'm supprised Mike did not get the full set, since i --cc you, so no
list server involved.

> Are these hosted on a public git tree somewhere?

Not yet, but i think it is time to do that.

    Andrew

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

* [RFC 00/14] Convert Orion to generic clk framework
  2012-04-19  7:43     ` Andrew Lunn
@ 2012-04-19 11:37       ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2012-04-19 11:37 UTC (permalink / raw)
  To: linux-arm-kernel

On Thursday 19 April 2012, Andrew Lunn wrote:
> I get an email from the list server saying it does not like one of the
> headers and the email needs approving. It gives no idea which header
> it does not like, and email to the list maintainer goes
> unanswered. I'm not doing anything strange either, just 
> git send-email.
> 

This has also happened to me a few times when I sent out stuff.

> I'm supprised Mike did not get the full set, since i --cc you, so no
> list server involved.
> 
> > Are these hosted on a public git tree somewhere?
> 
> Not yet, but i think it is time to do that.

Yes, it's fairly easy to do, too.  If you plan to resubmit your
series soon, I'd also like a copy of the patches.

	Arnd

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

* [RFC 00/14] Convert Orion to generic clk framework
  2012-04-18 21:27   ` Turquette, Mike
  2012-04-19  7:43     ` Andrew Lunn
@ 2012-04-20 16:49     ` Andrew Lunn
  1 sibling, 0 replies; 6+ messages in thread
From: Andrew Lunn @ 2012-04-20 16:49 UTC (permalink / raw)
  To: linux-arm-kernel

> I got most the series, but I'm missing patches 2, 11 and 12...
> 
> Are these hosted on a public git tree somewhere?

Hi Mike

git://github.com/lunn/orion-clk.git branch v3.4-clk-orion

    Andrew

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

end of thread, other threads:[~2012-04-20 16:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-18 13:30 [RFC 00/14] Convert Orion to generic clk framework Andrew Lunn
2012-04-18 20:53 ` Sascha Hauer
2012-04-18 21:27   ` Turquette, Mike
2012-04-19  7:43     ` Andrew Lunn
2012-04-19 11:37       ` Arnd Bergmann
2012-04-20 16:49     ` Andrew Lunn

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.