All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v11 0/8] arm64: renesas: Add Renesas R8A7795 SoC support
@ 2015-10-15  6:23 ` Simon Horman
  0 siblings, 0 replies; 50+ messages in thread
From: Simon Horman @ 2015-10-15  6:23 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

this pathcset adds basic support for the Renesas R-Car H3 (R8A7795) SoC
and its Saovator-X board.

This series has undergone a number of rounds of development and review
on the linux-sh mailing list. This is the first posting to a wider audience
from which we are now seeking review.

It is anticpated that the CPG bindings used this patchset will be
changed before they hit mainline and thus this patchset will need
to be updated accordinly. Reviwers are advised to skip over that portion
of this patchset unless they have a particlar interest in that discussion.


Based on v4.3-rc1.

Further run-time dependencies are included in the
topic/gen3-latest branch of Geert Uytterhoeven's renesas-drivers tree.
which currently includes these patches less the MAINTAINERS update.

To aid review (and Geert's branch preparation) this series is available in
the topic/arm64-rcar-gen3-v11 branch of the my renesas tree.

Gaku Inami (1):
  arm64: renesas: r8a7795: Add Renesas R8A7795 SoC support

Geert Uytterhoeven (3):
  arm64: renesas: r8a7795 dtsi: Add all common divider clocks
  arm64: renesas: r8a7795 dtsi: Add dummy dma-controller nodes
  arm64: renesas: r8a7795 dtsi: Add all SCIF nodes

Kuninori Morimoto (3):
  arm64: renesas: r8a7795: enable PFC
  arm64: renesas: add Salvator-X board support on DTS
  arm64: defconfig: renesas: Enable Renesas r8a7795 SoC

Simon Horman (1):
  MAINTAINERS: Add entry Renesas arm64 architecture

 Documentation/devicetree/bindings/arm/shmobile.txt |   4 +
 MAINTAINERS                                        |  10 +
 arch/arm64/Kconfig.platforms                       |  17 +
 arch/arm64/boot/dts/Makefile                       |   1 +
 arch/arm64/boot/dts/renesas/Makefile               |   4 +
 arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts |  62 ++++
 arch/arm64/boot/dts/renesas/r8a7795.dtsi           | 384 +++++++++++++++++++++
 arch/arm64/configs/defconfig                       |   5 +
 include/dt-bindings/clock/r8a7795-clock.h          |  44 +++
 9 files changed, 531 insertions(+)
 create mode 100644 arch/arm64/boot/dts/renesas/Makefile
 create mode 100644 arch/arm64/boot/dts/renesas/r8a7795-salvator-x.dts
 create mode 100644 arch/arm64/boot/dts/renesas/r8a7795.dtsi
 create mode 100644 include/dt-bindings/clock/r8a7795-clock.h

-- 
2.1.4


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

end of thread, other threads:[~2015-12-09  8:23 UTC | newest]

Thread overview: 50+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-15  6:23 [PATCH v11 0/8] arm64: renesas: Add Renesas R8A7795 SoC support Simon Horman
2015-10-15  6:23 ` Simon Horman
2015-10-15  6:23 ` [PATCH v11 1/8] arm64: renesas: r8a7795: " Simon Horman
2015-10-15  6:23   ` Simon Horman
2015-10-15 10:58   ` Mark Rutland
2015-10-15 10:58     ` Mark Rutland
2015-10-21 13:34     ` Geert Uytterhoeven
2015-10-21 13:34       ` Geert Uytterhoeven
2015-11-03 14:28       ` Mark Rutland
2015-11-03 14:28         ` Mark Rutland
2015-11-03 14:43         ` Geert Uytterhoeven
2015-11-03 14:43           ` Geert Uytterhoeven
2015-12-09  8:23         ` Geert Uytterhoeven
2015-12-09  8:23           ` Geert Uytterhoeven
2015-10-15  6:23 ` [PATCH v11 2/8] arm64: renesas: r8a7795 dtsi: Add all common divider clocks Simon Horman
2015-10-15  6:23   ` Simon Horman
2015-10-15  6:23 ` [PATCH v11 3/8] arm64: renesas: r8a7795 dtsi: Add dummy dma-controller nodes Simon Horman
2015-10-15  6:23   ` Simon Horman
2015-10-15  6:23 ` [PATCH v11 4/8] arm64: renesas: r8a7795 dtsi: Add all SCIF nodes Simon Horman
2015-10-15  6:23   ` Simon Horman
2015-10-15  6:24 ` [PATCH v11 5/8] arm64: renesas: r8a7795: enable PFC Simon Horman
2015-10-15  6:24   ` Simon Horman
2015-10-15  6:24 ` [PATCH v11 6/8] arm64: renesas: add Salvator-X board support on DTS Simon Horman
2015-10-15  6:24   ` Simon Horman
2015-10-15 11:01   ` Mark Rutland
2015-10-15 11:01     ` Mark Rutland
2015-10-23  7:00     ` Simon Horman
2015-10-23  7:00       ` Simon Horman
2015-10-29  7:52       ` Geert Uytterhoeven
2015-10-29  7:52         ` Geert Uytterhoeven
2015-10-30  7:51         ` Simon Horman
2015-10-30  7:51           ` Simon Horman
2015-11-03 14:24         ` Geert Uytterhoeven
2015-11-03 14:24           ` Geert Uytterhoeven
2015-11-09  2:19           ` Simon Horman
2015-11-09  2:19             ` Simon Horman
2015-11-16  9:53           ` Geert Uytterhoeven
2015-11-16  9:53             ` Geert Uytterhoeven
2015-11-17 17:31             ` Simon Horman
2015-11-17 17:31               ` Simon Horman
2015-10-15  6:24 ` [PATCH v11 7/8] arm64: defconfig: renesas: Enable Renesas r8a7795 SoC Simon Horman
2015-10-15  6:24   ` Simon Horman
2015-10-15  6:24 ` [PATCH v11 8/8] MAINTAINERS: Add entry Renesas arm64 architecture Simon Horman
2015-10-15  6:24   ` Simon Horman
2015-10-15  6:45   ` Khiem Nguyen
2015-10-15  6:45     ` Khiem Nguyen
2015-10-15  8:04     ` Russell King - ARM Linux
2015-10-15  8:04       ` Russell King - ARM Linux
2015-10-15  8:10       ` Khiem Nguyen
2015-10-15  8:10         ` Khiem Nguyen

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.