linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11
@ 2013-07-02  4:35 Simon Horman
  2013-07-02  4:35 ` [PATCH 1/2] ARM: shmobile: r8a73a4: Fix resources for SCIFB0 Simon Horman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Simon Horman @ 2013-07-02  4:35 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Arnd, Hi Olof,

please consider the following fixes for v3.11, both of which are suitable for
stable.

This pull request is based on renesas-soc2-for-v3.11 which you have
already pulled.


The following changes since commit 018222f5d32bc5ca9fd830aebfeed10f1be96c93:

  ARM: shmobile: r8a7790: add clock definitions and aliases for MMCIF and SDHI (2013-06-12 21:07:38 +0900)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-fixes-for-v3.11

for you to fetch changes up to 1eb14ea1e6bcd11d6d0ba937fc39808bb4d3453e:

  ARM: shmobile: emev2 GIO3 resource fix (2013-07-02 12:28:01 +0900)

----------------------------------------------------------------
Renesas ARM based SoC fixes for v3.11

* Correct GIO3 base addresses for EMEV2 SoC
  - This bug bug added when GPIO support was added for the EMEV2 SoC
    in v3.5

* Correct SCIFB0 resources for r8a77a4 SoC
  - This was a bug was added when SCIF support was added for the r8a77a4 SoC
    in v3.10

----------------------------------------------------------------
Magnus Damm (1):
      ARM: shmobile: emev2 GIO3 resource fix

Takanari Hayama (1):
      ARM: shmobile: r8a73a4: Fix resources for SCIFB0

 arch/arm/mach-shmobile/setup-emev2.c   | 8 ++++----
 arch/arm/mach-shmobile/setup-r8a73a4.c | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

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

* [PATCH 1/2] ARM: shmobile: r8a73a4: Fix resources for SCIFB0
  2013-07-02  4:35 [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11 Simon Horman
@ 2013-07-02  4:35 ` Simon Horman
  2013-07-02  4:35 ` [PATCH 2/2] ARM: shmobile: emev2 GIO3 resource fix Simon Horman
  2013-07-03 12:35 ` [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11 Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2013-07-02  4:35 UTC (permalink / raw)
  To: linux-arm-kernel

From: Takanari Hayama <taki@igel.co.jp>

Fix base address and IRQ resources associated with SCIFB0.

This bug was introduced by e481a528901d0cd18b5b5fcbdc55207ea3b6ef68
("ARM: shmobile: r8a73a4 SCIF support V3") which was included in v3.10.

Signed-off-by: Takanari Hayama <taki@igel.co.jp>
Acked-by: Magnus Damm <damm@opensource.se>
[ horms+renesas at verge.net.au: Add information about commit and version
  this bug was added in ]
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Cc: stable at vger.kernel.org
---
 arch/arm/mach-shmobile/setup-r8a73a4.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-shmobile/setup-r8a73a4.c b/arch/arm/mach-shmobile/setup-r8a73a4.c
index c5a75a7..7f45c2e 100644
--- a/arch/arm/mach-shmobile/setup-r8a73a4.c
+++ b/arch/arm/mach-shmobile/setup-r8a73a4.c
@@ -62,7 +62,7 @@ enum { SCIFA0, SCIFA1, SCIFB0, SCIFB1, SCIFB2, SCIFB3 };
 static const struct plat_sci_port scif[] = {
 	SCIFA_DATA(SCIFA0, 0xe6c40000, gic_spi(144)), /* SCIFA0 */
 	SCIFA_DATA(SCIFA1, 0xe6c50000, gic_spi(145)), /* SCIFA1 */
-	SCIFB_DATA(SCIFB0, 0xe6c50000, gic_spi(145)), /* SCIFB0 */
+	SCIFB_DATA(SCIFB0, 0xe6c20000, gic_spi(148)), /* SCIFB0 */
 	SCIFB_DATA(SCIFB1, 0xe6c30000, gic_spi(149)), /* SCIFB1 */
 	SCIFB_DATA(SCIFB2, 0xe6ce0000, gic_spi(150)), /* SCIFB2 */
 	SCIFB_DATA(SCIFB3, 0xe6cf0000, gic_spi(151)), /* SCIFB3 */
-- 
1.8.2.1

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

* [PATCH 2/2] ARM: shmobile: emev2 GIO3 resource fix
  2013-07-02  4:35 [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11 Simon Horman
  2013-07-02  4:35 ` [PATCH 1/2] ARM: shmobile: r8a73a4: Fix resources for SCIFB0 Simon Horman
@ 2013-07-02  4:35 ` Simon Horman
  2013-07-03 12:35 ` [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11 Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2013-07-02  4:35 UTC (permalink / raw)
  To: linux-arm-kernel

From: Magnus Damm <damm@opensource.se>

Fix GIO3 base addresses for EMEV2.

This bug was introduced by 088efd9273b5076a0aead479aa31f1066d182b3e
("mach-shmobile: Emma Mobile EV2 GPIO support V3") which was included in v3.5.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Cc: stable at vger.kernel.org
---
 arch/arm/mach-shmobile/setup-emev2.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/mach-shmobile/setup-emev2.c b/arch/arm/mach-shmobile/setup-emev2.c
index 899a86c..1ccddd2 100644
--- a/arch/arm/mach-shmobile/setup-emev2.c
+++ b/arch/arm/mach-shmobile/setup-emev2.c
@@ -287,14 +287,14 @@ static struct gpio_em_config gio3_config = {
 static struct resource gio3_resources[] = {
 	[0] = {
 		.name	= "GIO_096",
-		.start	= 0xe0050100,
-		.end	= 0xe005012b,
+		.start	= 0xe0050180,
+		.end	= 0xe00501ab,
 		.flags	= IORESOURCE_MEM,
 	},
 	[1] = {
 		.name	= "GIO_096",
-		.start	= 0xe0050140,
-		.end	= 0xe005015f,
+		.start	= 0xe00501c0,
+		.end	= 0xe00501df,
 		.flags	= IORESOURCE_MEM,
 	},
 	[2] = {
-- 
1.8.2.1

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

* [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11
  2013-07-02  4:35 [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11 Simon Horman
  2013-07-02  4:35 ` [PATCH 1/2] ARM: shmobile: r8a73a4: Fix resources for SCIFB0 Simon Horman
  2013-07-02  4:35 ` [PATCH 2/2] ARM: shmobile: emev2 GIO3 resource fix Simon Horman
@ 2013-07-03 12:35 ` Arnd Bergmann
  2 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2013-07-03 12:35 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 02 July 2013, Simon Horman wrote:
> --------------------------------------------------
> Renesas ARM based SoC fixes for v3.11
> 
> * Correct GIO3 base addresses for EMEV2 SoC
>   - This bug bug added when GPIO support was added for the EMEV2 SoC
>     in v3.5
> 
> * Correct SCIFB0 resources for r8a77a4 SoC
>   - This was a bug was added when SCIF support was added for the r8a77a4 SoC
>     in v3.10
> 

Pulled into the fixes branch, thanks!

	Arnd

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

end of thread, other threads:[~2013-07-03 12:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-02  4:35 [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11 Simon Horman
2013-07-02  4:35 ` [PATCH 1/2] ARM: shmobile: r8a73a4: Fix resources for SCIFB0 Simon Horman
2013-07-02  4:35 ` [PATCH 2/2] ARM: shmobile: emev2 GIO3 resource fix Simon Horman
2013-07-03 12:35 ` [GIT PULL 0/2] Renesas ARM based SoC fixes for v3.11 Arnd Bergmann

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).