SUPERH platform development
 help / color / mirror / Atom feed
* [PATCH v2 00/15] r8a7793 SoC, Gose board support
@ 2015-04-30 14:18 Ulrich Hecht
  2015-04-30 14:18 ` [PATCH v2 09/15] ARM: shmobile: r8a7793: add Gose board device tree Ulrich Hecht
                   ` (7 more replies)
  0 siblings, 8 replies; 23+ messages in thread
From: Ulrich Hecht @ 2015-04-30 14:18 UTC (permalink / raw)
  To: linux-sh

Hi!

Here is a revised set of patches adding R8A7793 (M2-N) support.
The major changes are that I dropped power management for now,
and that the PFC monster patch has been broken down for ease
of review.  Also a lot of small errors, most spotted by Geert,
have been fixed.

CU
Uli


Changes since v1:
- pfc: split patch in six
- pfc: fixed typos
- dts: named clock bits correctly
- dts: made more consistent with the very similar r8a7791 dts
- dts: removed adv7511, don't know the address
- pm: dropped for now, needs to be fixed up first
- everywhere: renamed M2N -> M2-N (and M2 to M2-W, while at it)
- everywhere: added Acks


Ulrich Hecht (15):
  pinctrl: sh-pfc: Add r8a7793 PFC support part 1: pinmux data
  pinctrl: sh-pfc: Add r8a7793 PFC support part 2: pin groups
  pinctrl: sh-pfc: Add r8a7793 PFC support part 3: pinmux config
    registers
  pinctrl: sh-pfc: Add r8a7793 pinmux info
  pinctrl: sh-pfc: Enable building of r8a7793 PFC support
  pinctrl: sh-pfc: Add renesas,pfc-r8a7793 to binding documentation
  ARM: shmobile: Basic r8a7793 SoC support
  ARM: shmobile: add r8a7793 SoC device tree
  ARM: shmobile: r8a7793: add Gose board device tree
  ARM: shmobile: r8a7793: add SMP support
  clk: shmobile: r8a7793: document DIV6 clock bindings
  mmc: sh_mmcif: Document r8a7793 DT bindings
  serial: sh-sci: Add device tree bindings for r8a7793
  clk: shmobile: Add r8a7793 SoC to MSTP bindings
  PCI: rcar: document r8a7793 DT bindings

 .../bindings/clock/renesas,cpg-div6-clocks.txt     |    3 +-
 .../bindings/clock/renesas,cpg-mstp-clocks.txt     |    3 +-
 .../devicetree/bindings/mmc/renesas,mmcif.txt      |    1 +
 .../devicetree/bindings/pci/pci-rcar-gen2.txt      |    1 +
 .../bindings/pinctrl/renesas,pfc-pinctrl.txt       |    3 +-
 .../bindings/serial/renesas,sci-serial.txt         |   12 +-
 arch/arm/boot/dts/Makefile                         |    1 +
 arch/arm/boot/dts/r8a7793-gose.dts                 |  534 ++
 arch/arm/boot/dts/r8a7793.dtsi                     | 1376 +++++
 arch/arm/mach-shmobile/Kconfig                     |    4 +
 arch/arm/mach-shmobile/Makefile                    |    2 +
 arch/arm/mach-shmobile/r8a7793.h                   |    6 +
 arch/arm/mach-shmobile/setup-r8a7793.c             |   35 +
 arch/arm/mach-shmobile/smp-r8a7793.c               |   67 +
 drivers/pinctrl/sh-pfc/Kconfig                     |    5 +
 drivers/pinctrl/sh-pfc/Makefile                    |    1 +
 drivers/pinctrl/sh-pfc/core.c                      |    6 +
 drivers/pinctrl/sh-pfc/core.h                      |    1 +
 drivers/pinctrl/sh-pfc/pfc-r8a7793.c               | 6033 ++++++++++++++++++++
 include/dt-bindings/clock/r8a7793-clock.h          |  158 +
 20 files changed, 8245 insertions(+), 7 deletions(-)
 create mode 100644 arch/arm/boot/dts/r8a7793-gose.dts
 create mode 100644 arch/arm/boot/dts/r8a7793.dtsi
 create mode 100644 arch/arm/mach-shmobile/r8a7793.h
 create mode 100644 arch/arm/mach-shmobile/setup-r8a7793.c
 create mode 100644 arch/arm/mach-shmobile/smp-r8a7793.c
 create mode 100644 drivers/pinctrl/sh-pfc/pfc-r8a7793.c
 create mode 100644 include/dt-bindings/clock/r8a7793-clock.h

-- 
2.3.5


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

end of thread, other threads:[~2015-05-22  1:23 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-30 14:18 [PATCH v2 00/15] r8a7793 SoC, Gose board support Ulrich Hecht
2015-04-30 14:18 ` [PATCH v2 09/15] ARM: shmobile: r8a7793: add Gose board device tree Ulrich Hecht
2015-04-30 14:19 ` [PATCH v2 11/15] clk: shmobile: r8a7793: document DIV6 clock bindings Ulrich Hecht
2015-05-05  9:37   ` Geert Uytterhoeven
     [not found] ` <1430403544-26742-1-git-send-email-ulrich.hecht+renesas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-04-30 14:18   ` [PATCH v2 06/15] pinctrl: sh-pfc: Add renesas,pfc-r8a7793 to binding documentation Ulrich Hecht
2015-05-01  0:44     ` Simon Horman
     [not found]     ` <1430403544-26742-7-git-send-email-ulrich.hecht+renesas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-05  9:10       ` Geert Uytterhoeven
2015-04-30 14:18   ` [PATCH v2 08/15] ARM: shmobile: add r8a7793 SoC device tree Ulrich Hecht
     [not found]     ` <1430403544-26742-9-git-send-email-ulrich.hecht+renesas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-05  9:27       ` Geert Uytterhoeven
2015-05-13  5:57     ` Kuninori Morimoto
2015-04-30 14:19   ` [PATCH v2 12/15] mmc: sh_mmcif: Document r8a7793 DT bindings Ulrich Hecht
2015-04-30 14:19   ` [PATCH v2 13/15] serial: sh-sci: Add device tree bindings for r8a7793 Ulrich Hecht
2015-05-01  0:41     ` Simon Horman
2015-05-05  9:37     ` Geert Uytterhoeven
2015-04-30 14:19   ` [PATCH v2 15/15] PCI: rcar: document r8a7793 DT bindings Ulrich Hecht
2015-05-01  0:36     ` Simon Horman
2015-04-30 14:19 ` [PATCH v2 14/15] clk: shmobile: Add r8a7793 SoC to MSTP bindings Ulrich Hecht
2015-05-01  0:33   ` Simon Horman
     [not found]   ` <1430403544-26742-15-git-send-email-ulrich.hecht+renesas-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-05-05  9:38     ` Geert Uytterhoeven
2015-05-01  0:49 ` [PATCH v2 00/15] r8a7793 SoC, Gose board support Simon Horman
2015-05-12  4:15 ` Simon Horman
2015-05-21 10:47 ` Ulrich Hecht
2015-05-22  1:23 ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox