All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Renesas ARM Based SoC Init Delay Updates For v3.18
@ 2014-08-25  1:10 ` Simon Horman
  0 siblings, 0 replies; 31+ messages in thread
From: Simon Horman @ 2014-08-25  1:10 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

Please consider these Renesas ARM based SoC init delay updates for v3.18.

This pull request is based on a merge of:

* Renesas ARM Based SoC Boards Updates for v3.18,
  tagged as renesas-boards-for-v3.18,
  which I have previously sent a pull-request for

* Renesas ARM Based SoC Updates for v3.18,
  tagged as renesas-soc-for-v3.18,
  which I have previously sent a pull-request for


The following changes since commit 93acbd2cd2482cb51bec70a1494fddf2c172c073:

  Merge branch 'boards-for-v3.18' into soc-init-delay-for-v3.18.base (2014-08-22 11:31:47 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-init-delay-for-v3.18

for you to fetch changes up to fc35ca258c079411b64ed94e517eb04e7d89bc44:

  ARM: shmobile: kzm9g: Use shmobile_init_delay() (2014-08-22 11:32:13 +0900)

----------------------------------------------------------------
Renesas ARM Based SoC Init Delay Updates For v3.18

* Use shmobile_init_delay across a wider range of SoCs

----------------------------------------------------------------
Magnus Damm (10):
      ARM: shmobile: sh7372: Update DTS to include CPU frequency
      ARM: shmobile: sh73a0: Update DTS to include CPU frequency
      ARM: shmobile: r8a7778: Update DTS to include CPU frequency
      ARM: shmobile: sh7372: Use shmobile_init_delay()
      ARM: shmobile: r8a73a4: Use shmobile_init_delay()
      ARM: shmobile: Remove shmobile_setup_delay()
      ARM: shmobile: sh73a0: Use shmobile_init_delay()
      ARM: shmobile: r8a7778: Use shmobile_init_delay()
      ARM: shmobile: bockw: Use shmobile_init_delay()
      ARM: shmobile: kzm9g: Use shmobile_init_delay()

 arch/arm/boot/dts/r8a7778.dtsi                 |  6 ++++++
 arch/arm/boot/dts/sh7372.dtsi                  |  1 +
 arch/arm/boot/dts/sh73a0.dtsi                  |  2 ++
 arch/arm/mach-shmobile/board-bockw-reference.c |  2 +-
 arch/arm/mach-shmobile/board-bockw.c           |  2 +-
 arch/arm/mach-shmobile/board-kzm9g-reference.c |  2 +-
 arch/arm/mach-shmobile/common.h                |  2 --
 arch/arm/mach-shmobile/r8a73a4.h               |  1 -
 arch/arm/mach-shmobile/setup-r8a73a4.c         |  9 +--------
 arch/arm/mach-shmobile/setup-r8a7778.c         |  2 +-
 arch/arm/mach-shmobile/setup-sh7372.c          |  2 +-
 arch/arm/mach-shmobile/setup-sh73a0.c          |  2 +-
 arch/arm/mach-shmobile/timer.c                 | 21 ++-------------------
 13 files changed, 18 insertions(+), 36 deletions(-)

^ permalink raw reply	[flat|nested] 31+ messages in thread
* [PATCH 10/10] ARM: shmobile: kzm9g: Use shmobile_init_delay()
@ 2014-08-20 13:03 Magnus Damm
  0 siblings, 0 replies; 31+ messages in thread
From: Magnus Damm @ 2014-08-20 13:03 UTC (permalink / raw)
  To: linux-sh

From: Magnus Damm <damm+renesas@opensource.se>

Adjust the KZM9G board support code to use shmobile_init_delay()
together with CPU Frequency settings from the DTS.

Signed-off-by: Magnus Damm <damm+renesas@opensource.se>
---

 arch/arm/mach-shmobile/board-kzm9g-reference.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- 0001/arch/arm/mach-shmobile/board-kzm9g-reference.c
+++ work/arch/arm/mach-shmobile/board-kzm9g-reference.c	2014-08-20 21:14:41.000000000 +0900
@@ -51,7 +51,7 @@ static const char *kzm9g_boards_compat_d
 DT_MACHINE_START(KZM9G_DT, "kzm9g-reference")
 	.smp		= smp_ops(sh73a0_smp_ops),
 	.map_io		= sh73a0_map_io,
-	.init_early	= sh73a0_init_delay,
+	.init_early	= shmobile_init_delay,
 	.init_machine	= kzm_init,
 	.init_late	= shmobile_init_late,
 	.dt_compat	= kzm9g_boards_compat_dt,

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

end of thread, other threads:[~2014-09-09  8:50 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-25  1:10 [GIT PULL] Renesas ARM Based SoC Init Delay Updates For v3.18 Simon Horman
2014-08-25  1:10 ` Simon Horman
2014-08-25  1:10 ` [PATCH 01/10] ARM: shmobile: sh7372: Update DTS to include CPU frequency Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 02/10] ARM: shmobile: sh73a0: " Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 03/10] ARM: shmobile: r8a7778: " Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 04/10] ARM: shmobile: sh7372: Use shmobile_init_delay() Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 05/10] ARM: shmobile: r8a73a4: " Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 06/10] ARM: shmobile: Remove shmobile_setup_delay() Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 07/10] ARM: shmobile: sh73a0: Use shmobile_init_delay() Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 08/10] ARM: shmobile: r8a7778: " Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 09/10] ARM: shmobile: bockw: " Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-08-25  1:10 ` [PATCH 10/10] ARM: shmobile: kzm9g: " Simon Horman
2014-08-25  1:10   ` Simon Horman
2014-09-05 15:27 ` [GIT PULL] Renesas ARM Based SoC Init Delay Updates For v3.18 Arnd Bergmann
2014-09-05 15:27   ` Arnd Bergmann
2014-09-09  2:02   ` Simon Horman
2014-09-09  2:02     ` Simon Horman
2014-09-09  8:50     ` Arnd Bergmann
2014-09-09  8:50       ` Arnd Bergmann
2014-09-05 16:13 ` Arnd Bergmann
2014-09-05 16:13   ` Arnd Bergmann
  -- strict thread matches above, loose matches on Subject: below --
2014-08-20 13:03 [PATCH 10/10] ARM: shmobile: kzm9g: Use shmobile_init_delay() Magnus Damm

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.