linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: horms+renesas@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] Second Round of Renesas ARM Based SoC R-Car SYSC Updates for v4.7
Date: Tue, 26 Apr 2016 11:28:38 +1000	[thread overview]
Message-ID: <cover.1461632180.git.horms+renesas@verge.net.au> (raw)

Hi Olof, Hi Kevin, Hi Arnd,

Please consider these second round of Renesas ARM based SoC R-Car SYSC
updates for v4.7.

This pull request is based on a merge of:

* Thee previous round of such requests, tagged as renesas-rcar-sysc-for-v4.7,
  which you have previously pulled.
* The clk-renesas-for-v4.7-tag2 tag of Geert Uytterhoeven's renesas-drivers
  tree which has been accepted into clk-next by Stephen Boyd.

There are follow-up DT changes that depend on this driver which I plan to
send in a pull-request for in the near future.


The following changes since commit a93fed0956bef9e4df420aa181198d86d347895d:

  Merge tag 'clk-renesas-for-v4.7-tag2' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers into rcar-sysc-for-v4.7 (2016-04-22 17:22:21 +1000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-rcar-sysc2-for-v4.7

for you to fetch changes up to 23f1e2ecdecee9f2ec45de0a468b82bb1f7f3ca2:

  soc: renesas: rcar-sysc: Add support for R-Car H3 power areas (2016-04-26 09:56:38 +1000)

----------------------------------------------------------------
Second Round of Renesas ARM Based SoC R-Car SYSC Updates for v4.7

Introduce a DT-based driver for the R-Car System Controller, as found on
Renesas R-Car H1, R-Car Gen2, and R-Car Gen3 SoCs.

----------------------------------------------------------------
Geert Uytterhoeven (11):
      soc: renesas: Move pm-rcar to drivers/soc/renesas/rcar-sysc
      soc: renesas: rcar-sysc: Improve rcar_sysc_power() debug info
      soc: renesas: rcar-sysc: Add DT support for SYSC PM domains
      soc: renesas: rcar-sysc: Make rcar_sysc_power_is_off() static
      soc: renesas: rcar-sysc: Enable Clock Domain for I/O devices
      soc: renesas: rcar-sysc: Add support for R-Car H1 power areas
      soc: renesas: rcar-sysc: Add support for R-Car H2 power areas
      soc: renesas: rcar-sysc: Add support for R-Car M2-W power areas
      soc: renesas: rcar-sysc: Add support for R-Car M2-N power areas
      soc: renesas: rcar-sysc: Add support for R-Car E2 power areas
      soc: renesas: rcar-sysc: Add support for R-Car H3 power areas

 MAINTAINERS                                        |   4 +
 arch/arm/mach-shmobile/Kconfig                     |  11 +-
 arch/arm/mach-shmobile/Makefile                    |   1 -
 arch/arm/mach-shmobile/pm-r8a7779.c                |   3 +-
 arch/arm/mach-shmobile/pm-rcar-gen2.c              |   2 +-
 arch/arm/mach-shmobile/pm-rcar.c                   | 164 ---------
 arch/arm/mach-shmobile/smp-r8a7779.c               |   2 +-
 arch/arm/mach-shmobile/smp-r8a7790.c               |   2 +-
 drivers/soc/Makefile                               |   3 +-
 drivers/soc/renesas/Makefile                       |   7 +
 drivers/soc/renesas/r8a7779-sysc.c                 |  34 ++
 drivers/soc/renesas/r8a7790-sysc.c                 |  48 +++
 drivers/soc/renesas/r8a7791-sysc.c                 |  33 ++
 drivers/soc/renesas/r8a7794-sysc.c                 |  33 ++
 drivers/soc/renesas/r8a7795-sysc.c                 |  56 +++
 drivers/soc/renesas/rcar-sysc.c                    | 401 +++++++++++++++++++++
 drivers/soc/renesas/rcar-sysc.h                    |  58 +++
 .../linux/soc/renesas/rcar-sysc.h                  |   9 +-
 18 files changed, 690 insertions(+), 181 deletions(-)
 delete mode 100644 arch/arm/mach-shmobile/pm-rcar.c
 create mode 100644 drivers/soc/renesas/Makefile
 create mode 100644 drivers/soc/renesas/r8a7779-sysc.c
 create mode 100644 drivers/soc/renesas/r8a7790-sysc.c
 create mode 100644 drivers/soc/renesas/r8a7791-sysc.c
 create mode 100644 drivers/soc/renesas/r8a7794-sysc.c
 create mode 100644 drivers/soc/renesas/r8a7795-sysc.c
 create mode 100644 drivers/soc/renesas/rcar-sysc.c
 create mode 100644 drivers/soc/renesas/rcar-sysc.h
 rename arch/arm/mach-shmobile/pm-rcar.h => include/linux/soc/renesas/rcar-sysc.h (60%)

             reply	other threads:[~2016-04-26  1:28 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-26  1:28 Simon Horman [this message]
2016-04-26  1:28 ` [PATCH 01/11] soc: renesas: Move pm-rcar to drivers/soc/renesas/rcar-sysc Simon Horman
2016-04-26  1:28 ` [PATCH 02/11] soc: renesas: rcar-sysc: Improve rcar_sysc_power() debug info Simon Horman
2016-04-26  1:28 ` [PATCH 03/11] soc: renesas: rcar-sysc: Add DT support for SYSC PM domains Simon Horman
2016-04-26  1:28 ` [PATCH 04/11] soc: renesas: rcar-sysc: Make rcar_sysc_power_is_off() static Simon Horman
2016-04-26  1:28 ` [PATCH 05/11] soc: renesas: rcar-sysc: Enable Clock Domain for I/O devices Simon Horman
2016-04-26  1:28 ` [PATCH 06/11] soc: renesas: rcar-sysc: Add support for R-Car H1 power areas Simon Horman
2016-04-26  1:28 ` [PATCH 07/11] soc: renesas: rcar-sysc: Add support for R-Car H2 " Simon Horman
2016-04-26  1:28 ` [PATCH 08/11] soc: renesas: rcar-sysc: Add support for R-Car M2-W " Simon Horman
2016-04-26  1:28 ` [PATCH 09/11] soc: renesas: rcar-sysc: Add support for R-Car M2-N " Simon Horman
2016-04-26  1:28 ` [PATCH 10/11] soc: renesas: rcar-sysc: Add support for R-Car E2 " Simon Horman
2016-04-26  1:28 ` [PATCH 11/11] soc: renesas: rcar-sysc: Add support for R-Car H3 " Simon Horman
2016-04-26 10:44 ` [GIT PULL] Second Round of Renesas ARM Based SoC R-Car SYSC Updates for v4.7 Arnd Bergmann
2016-04-27 22:57   ` Simon Horman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1461632180.git.horms+renesas@verge.net.au \
    --to=horms+renesas@verge.net.au \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).