From: horms+renesas@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 00/26] Renesas ARM based SoC board updates for v3.14
Date: Mon, 23 Dec 2013 11:06:53 +0900 [thread overview]
Message-ID: <cover.1387763524.git.horms+renesas@verge.net.au> (raw)
The following changes since commit ea8d8a911f4850312834a0ff45c3d5ebc31fb1f1:
Merge tag 'renesas-cleanup-for-v3.14' into boards-base (2013-12-10 17:22:55 +0900)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-boards-for-v3.14
for you to fetch changes up to be0647d556985ae58a42e7fc3751a293c418c41e:
ARM: shmobile: lager: add gpio/fixed regulator for SDHI (2013-12-10 17:24:50 +0900)
----------------------------------------------------------------
Renesas ARM based SoC board updates for v3.14
* Global
- Kconfig: Mention Renesas ARM SoCs instead of SH-Mobile
* r7s72100 SoC (RZ/A1H) based Genmai Board
- Add Multiplatform support
- Add Reference DT
* r8a7791 (R-Car M2) based Koelsch board
- Add pinctrl_register_mappings() for Koelsch
- Hook up SW30-SW36 on Koelsch
- Mark GPIO keys as wake-up sources
- Use ->init_late()
- Add Multiplatform support
- Set .debounce_interval for GPIO keys
- Add SW2 to GPIO keys
- Add Led 6, 7 and 8 support
- Add reference DT
- Enable PFC/GPIO
* r8a7790 (R-Car H2) based Lager board
- Add gpio/fixed regulator for SDHI
- Add SPI FLASH support on QSPI
- Mark GPIO keys as wake-up sources
- Use ->init_late()
- Set .debounce_interval for GPIO keys
* r8a7778 (R-Car M1) based Bock-W board
- bockw: remove unused RSND_SSI_CLK_FROM_ADG
- Set .debounce_interval for GPIO keys
- Correct FPGA ioremap area
- Use regulator for MMCIF
* r8a7740 (R-Mobile A1) based Armadillo board
- Correct FSI address size
* sh7374 (SH-Mobile AP4) based Mackerel board
- Use pinconf API to configure pin pull-down
- clk_round_rate() can return a zero to indicate an error
----------------------------------------------------------------
Hiep Cao Minh (1):
ARM: shmobile: Lager:add SPI FLASH support on QSPI
Kuninori Morimoto (6):
ARM: shmobile: bockw: use regulator for MMCIF
ARM: shmobile: bockw: fixup FPGA ioremap area
ARM: shmobile: bockw: add pin pull-up setting for SDHI
ARM: shmobile: armadillo: fixup FSI address size
ARM: shmobile: bockw: remove unused RSND_SSI_CLK_FROM_ADG
ARM: shmobile: lager: add gpio/fixed regulator for SDHI
Laurent Pinchart (2):
ARM: shmobile: mackerel: Use pinconf API to configure pin pull-down
ARM: Kconfig: Mention Renesas ARM SoCs instead of SH-Mobile
Magnus Damm (13):
ARM: shmobile: Enable PFC/GPIO on the Koelsch board
ARM: shmobile: Add Koelsch LED6, LED7 and LED8 support
ARM: shmobile: Add Koelsch SW2 support
ARM: shmobile: r8a7791 Koelsch DT reference C bits
ARM: shmobile: Initial r8a7791 and Koelsch multiplatform support
ARM: shmobile: r7s72100 Genmai DT reference DTS bits
ARM: shmobile: r7s72100 Genmai DT reference C bits
ARM: shmobile: r7s72100 Genmai Multiplatform
ARM: shmobile: Use ->init_late() on Koelsch
ARM: shmobile: koelsch: mark GPIO keys as wake-up sources
ARM: shmobile: Hook up SW30-SW36 on Koelsch
ARM: shmobile: Use ->init_late() on Lager
ARM: shmobile: Add pinctrl_register_mappings() for Koelsch
Paul Walmsley (1):
ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error
Shinya Kuribayashi (2):
ARM: shmobile: lager: set .debounce_interval
ARM: shmobile: lager: mark GPIO keys as wake-up sources
Simon Horman (1):
ARM: shmobile: koelsch: set .debounce_interval
arch/arm/Kconfig | 7 +-
arch/arm/boot/dts/Makefile | 5 +-
arch/arm/boot/dts/r7s72100-genmai-reference.dts | 31 +++++
arch/arm/mach-shmobile/Kconfig | 55 +++++++--
arch/arm/mach-shmobile/Makefile | 4 +
arch/arm/mach-shmobile/Makefile.boot | 4 +-
arch/arm/mach-shmobile/board-armadillo800eva.c | 2 +-
arch/arm/mach-shmobile/board-bockw-reference.c | 19 ++-
arch/arm/mach-shmobile/board-bockw.c | 17 ++-
arch/arm/mach-shmobile/board-genmai-reference.c | 49 ++++++++
arch/arm/mach-shmobile/board-koelsch-reference.c | 53 ++++++++
arch/arm/mach-shmobile/board-koelsch.c | 73 ++++++++++-
arch/arm/mach-shmobile/board-lager-reference.c | 2 +
arch/arm/mach-shmobile/board-lager.c | 151 ++++++++++++++++++++++-
arch/arm/mach-shmobile/board-mackerel.c | 21 ++--
arch/arm/mach-shmobile/sh-gpio.h | 19 ---
include/sound/rcar_snd.h | 1 -
17 files changed, 458 insertions(+), 55 deletions(-)
create mode 100644 arch/arm/boot/dts/r7s72100-genmai-reference.dts
create mode 100644 arch/arm/mach-shmobile/board-genmai-reference.c
create mode 100644 arch/arm/mach-shmobile/board-koelsch-reference.c
next reply other threads:[~2013-12-23 2:06 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-23 2:06 Simon Horman [this message]
2013-12-23 2:07 ` [PATCH 10/26] ARM: shmobile: Initial r8a7791 and Koelsch multiplatform support Simon Horman
2013-12-23 2:07 ` [PATCH 01/26] ARM: shmobile: bockw: use regulator for MMCIF Simon Horman
2013-12-23 2:07 ` [PATCH 02/26] ARM: shmobile: Enable PFC/GPIO on the Koelsch board Simon Horman
2013-12-23 2:07 ` [PATCH 11/26] ARM: shmobile: r7s72100 Genmai DT reference DTS bits Simon Horman
2013-12-23 2:07 ` [PATCH 12/26] ARM: shmobile: r7s72100 Genmai DT reference C bits Simon Horman
2013-12-23 2:07 ` [PATCH 03/26] ARM: shmobile: Add Koelsch LED6, LED7 and LED8 support Simon Horman
2013-12-23 2:07 ` [PATCH 04/26] ARM: shmobile: Add Koelsch SW2 support Simon Horman
2013-12-23 2:07 ` [PATCH 13/26] ARM: shmobile: r7s72100 Genmai Multiplatform Simon Horman
2013-12-23 2:07 ` [PATCH 14/26] ARM: shmobile: lager: mark GPIO keys as wake-up sources Simon Horman
2013-12-23 2:07 ` [PATCH 05/26] ARM: shmobile: r8a7791 Koelsch DT reference C bits Simon Horman
2013-12-23 2:07 ` [PATCH 06/26] ARM: shmobile: bockw: fixup FPGA ioremap area Simon Horman
2013-12-23 2:07 ` [PATCH 15/26] ARM: shmobile: Use ->init_late() on Koelsch Simon Horman
2013-12-23 2:07 ` [PATCH 07/26] ARM: shmobile: bockw: add pin pull-up setting for SDHI Simon Horman
2013-12-23 2:07 ` [PATCH 16/26] ARM: shmobile: koelsch: mark GPIO keys as wake-up sources Simon Horman
2013-12-23 2:07 ` [PATCH 17/26] ARM: shmobile: Hook up SW30-SW36 on Koelsch Simon Horman
2013-12-23 2:07 ` [PATCH 08/26] ARM: shmobile: lager: set .debounce_interval Simon Horman
2013-12-23 2:07 ` [PATCH 18/26] ARM: shmobile: Use ->init_late() on Lager Simon Horman
2013-12-23 2:07 ` [PATCH 09/26] ARM: shmobile: koelsch: set .debounce_interval Simon Horman
2013-12-23 2:07 ` [PATCH 19/26] ARM: shmobile: Add pinctrl_register_mappings() for Koelsch Simon Horman
2013-12-23 2:07 ` [PATCH 20/26] ARM: shmobile: mackerel: clk_round_rate() can return a zero to indicate an error Simon Horman
2013-12-23 2:07 ` [PATCH 21/26] ARM: shmobile: Lager:add SPI FLASH support on QSPI Simon Horman
2013-12-23 2:07 ` [PATCH 22/26] ARM: shmobile: mackerel: Use pinconf API to configure pin pull-down Simon Horman
2013-12-23 2:07 ` [PATCH 23/26] ARM: Kconfig: Mention Renesas ARM SoCs instead of SH-Mobile Simon Horman
2013-12-23 2:07 ` [PATCH 24/26] ARM: shmobile: armadillo: fixup FSI address size Simon Horman
2013-12-23 2:07 ` [PATCH 25/26] ARM: shmobile: bockw: remove unused RSND_SSI_CLK_FROM_ADG Simon Horman
2013-12-23 2:07 ` [PATCH 26/26] ARM: shmobile: lager: add gpio/fixed regulator for SDHI Simon Horman
2013-12-29 21:16 ` [GIT PULL 00/26] Renesas ARM based SoC board updates for v3.14 Olof Johansson
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.1387763524.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).