linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 00/17] ARM: shmobile: r8a7779, marzen: CCF and multiplatform
@ 2014-05-15 11:31 Simon Horman
  2014-05-15 11:31 ` [PATCH v6 01/17] ARM: shmobile: r8a7779: Add clock index macros for DT sources Simon Horman
                   ` (16 more replies)
  0 siblings, 17 replies; 25+ messages in thread
From: Simon Horman @ 2014-05-15 11:31 UTC (permalink / raw)
  To: linux-arm-kernel

The aim of this series is to add common clock framework and in turn
multiplatform support to the r8a7779 SoC and marzen-reference.  It
subsequently removes non-multiplatform support from marzen-reference.

This is based on work for R-Car Gen2 by Laurent Pinchart and Magnus Damm.


This series is a minor update to v5 to take into account:
* An Ack
* Request for caching of the pin mode
* Patches that have been queued up for v3.16

I intend to merge this series unless there are objections.


Applied on top of a merge of:
* The renesas-devel-v3.15-rc1-20140515 tag of my renesas tree.
* The clk-next branch of Mike Turquettes's tree
  This is to provide the following which were previously part of this series:
  - clk: shmobile: r8a7779: Add MSTP clock support
  - clk: shmobile: r8a7779: Add clocks support


Caveats:

* SMSC_PHY is known not to work with marzen though the reason for
  this is not known. As this is selected in the shmobile_defconfig
  it should be manually disabled before compiling that configuration
  for use on Marzen.

Simon Horman (17):
  ARM: shmobile: r8a7779: Add clock index macros for DT sources
  ARM: shmobile: r8a7779: Add clocks
  ARM: shmobile: Sync Marzen DTS with Marzen reference DTS
  ARM: shmobile: marzen: Specify external clock frequency in DT
  ARM: shmobile: r8a7779: Reference clocks
  ARM: shmobile: r8a7779: Add helper to read mode pins
  ARM: shmobile: r8a7779: Move r8a7779_earlytimer_init to
    clock-r8a7779.c
  ARM: shmobile: marzen-reference: Move clock and OF device
    initialisation into board code
  ARM: shmobile: r8a7779: Do not include sh_clk.h in r8a7779.h
  ARM: shmobile: r8a7779: Initial multiplatform support
  ARM: shmobile: marzen-reference: Initialize CPG device
  ARM: shmobile: marzen-reference: Instantiate clkdevs for SCIF and TMU
  ARM: shmobile: marzen: Add to shmobile defconfig
  ARM: shmobile: Remove non-multiplatform Marzen reference support
  ARM: shmobile: Let Marzen multiplatform boot with Marzen DTB
  ARM: shmobile: Remove Marzen reference DTS
  ARM: shmobile: marzen-reference: Remove legacy clock support

 arch/arm/boot/dts/Makefile                      |   4 +-
 arch/arm/boot/dts/r8a7779-marzen-reference.dts  | 121 ------------------
 arch/arm/boot/dts/r8a7779-marzen.dts            |  98 +++++++++++++++
 arch/arm/boot/dts/r8a7779.dtsi                  | 156 ++++++++++++++++++++++++
 arch/arm/configs/shmobile_defconfig             |   2 +
 arch/arm/mach-shmobile/Kconfig                  |  23 ++--
 arch/arm/mach-shmobile/Makefile                 |   2 +-
 arch/arm/mach-shmobile/Makefile.boot            |   1 -
 arch/arm/mach-shmobile/board-marzen-reference.c |  28 +++++
 arch/arm/mach-shmobile/clock-r8a7779.c          |  22 ++--
 arch/arm/mach-shmobile/include/mach/r8a7779.h   |   2 +-
 arch/arm/mach-shmobile/setup-r8a7779.c          |  32 ++---
 include/dt-bindings/clock/r8a7779-clock.h       |  64 ++++++++++
 13 files changed, 393 insertions(+), 162 deletions(-)
 delete mode 100644 arch/arm/boot/dts/r8a7779-marzen-reference.dts
 create mode 100644 include/dt-bindings/clock/r8a7779-clock.h

-- 
1.8.5.2

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

end of thread, other threads:[~2014-05-16  9:08 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-15 11:31 [PATCH v6 00/17] ARM: shmobile: r8a7779, marzen: CCF and multiplatform Simon Horman
2014-05-15 11:31 ` [PATCH v6 01/17] ARM: shmobile: r8a7779: Add clock index macros for DT sources Simon Horman
2014-05-15 11:31 ` [PATCH v6 02/17] ARM: shmobile: r8a7779: Add clocks Simon Horman
2014-05-15 11:31 ` [PATCH v6 03/17] ARM: shmobile: Sync Marzen DTS with Marzen reference DTS Simon Horman
2014-05-15 11:31 ` [PATCH v6 04/17] ARM: shmobile: marzen: Specify external clock frequency in DT Simon Horman
2014-05-15 11:32 ` [PATCH v6 05/17] ARM: shmobile: r8a7779: Reference clocks Simon Horman
2014-05-15 11:32 ` [PATCH v6 06/17] ARM: shmobile: r8a7779: Add helper to read mode pins Simon Horman
2014-05-15 11:32 ` [PATCH v6 07/17] ARM: shmobile: r8a7779: Move r8a7779_earlytimer_init to clock-r8a7779.c Simon Horman
2014-05-15 11:32 ` [PATCH v6 08/17] ARM: shmobile: marzen-reference: Move clock and OF device initialisation into board code Simon Horman
2014-05-15 11:32 ` [PATCH v6 09/17] ARM: shmobile: r8a7779: Do not include sh_clk.h in r8a7779.h Simon Horman
2014-05-15 11:32 ` [PATCH v6 10/17] ARM: shmobile: r8a7779: Initial multiplatform support Simon Horman
2014-05-15 11:32 ` [PATCH v6 11/17] ARM: shmobile: marzen-reference: Initialize CPG device Simon Horman
2014-05-15 11:32 ` [PATCH v6 12/17] ARM: shmobile: marzen-reference: Instantiate clkdevs for SCIF and TMU Simon Horman
2014-05-15 11:32 ` [PATCH v6 13/17] ARM: shmobile: marzen: Add to shmobile defconfig Simon Horman
2014-05-15 11:57   ` Geert Uytterhoeven
2014-05-15 22:50     ` Simon Horman
2014-05-16  0:04       ` Simon Horman
2014-05-16  8:43         ` Geert Uytterhoeven
2014-05-16  8:51           ` Simon Horman
2014-05-16  9:00             ` Geert Uytterhoeven
2014-05-16  9:08               ` Simon Horman
2014-05-15 11:32 ` [PATCH v6 14/17] ARM: shmobile: Remove non-multiplatform Marzen reference support Simon Horman
2014-05-15 11:32 ` [PATCH v6 15/17] ARM: shmobile: Let Marzen multiplatform boot with Marzen DTB Simon Horman
2014-05-15 11:32 ` [PATCH v6 16/17] ARM: shmobile: Remove Marzen reference DTS Simon Horman
2014-05-15 11:32 ` [PATCH v6 17/17] ARM: shmobile: marzen-reference: Remove legacy clock support Simon Horman

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).