Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1577112 > unrolled thread

[PATCH 0/2] ARM: dts: BCM5301X: bugfixes

Started byJon Mason <jon.mason@broadcom.com>
First post2017-02-08 22:40 +0100
Last post2017-02-09 00:40 +0100
Articles 2 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/2] ARM: dts: BCM5301X: bugfixes Jon Mason <jon.mason@broadcom.com> - 2017-02-08 22:40 +0100
    [PATCH 2/2] ARM: dts: BCM5301X: Fix memory start address Jon Mason <jon.mason@broadcom.com> - 2017-02-09 00:40 +0100

#1577112 — [PATCH 0/2] ARM: dts: BCM5301X: bugfixes

FromJon Mason <jon.mason@broadcom.com>
Date2017-02-08 22:40 +0100
Subject[PATCH 0/2] ARM: dts: BCM5301X: bugfixes
Message-ID<t8HF0-5pA-19@gated-at.bofh.it>
Bug fixes to get bcm953012k working again

Jon Mason (2):
  ARM: dts: BCM5301X: Fix UARTs on bcm953012k
  ARM: dts: BCM5301X: Fix memory start address

 arch/arm/boot/dts/bcm953012k.dts | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

-- 
2.7.4

[toc] | [next] | [standalone]


#1577198 — [PATCH 2/2] ARM: dts: BCM5301X: Fix memory start address

FromJon Mason <jon.mason@broadcom.com>
Date2017-02-09 00:40 +0100
Subject[PATCH 2/2] ARM: dts: BCM5301X: Fix memory start address
Message-ID<t8K0a-6KO-15@gated-at.bofh.it>
In reply to#1577112
Memory starts at 0x80000000, not 0.  0 "works" due to mirrior of the
first 128M of RAM to that address.  Anything greater than 128M will
quickly find nothing there.  Correcting the starting address has
everything working again.

Signed-off-by: Jon Mason <jon.mason@broadcom.com>
Fixes: 7eb05f6d ("ARM: dts: bcm5301x: Add BCM SVK DT files")
---
 arch/arm/boot/dts/bcm953012k.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/bcm953012k.dts b/arch/arm/boot/dts/bcm953012k.dts
index da5aa8f..ae31a58 100644
--- a/arch/arm/boot/dts/bcm953012k.dts
+++ b/arch/arm/boot/dts/bcm953012k.dts
@@ -48,7 +48,7 @@
 	};
 
 	memory {
-		reg = <0x00000000 0x10000000>;
+		reg = <0x80000000 0x10000000>;
 	};
 };
 
-- 
2.7.4

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web