All of lore.kernel.org
 help / color / mirror / Atom feed
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: linux-aspeed@lists.ozlabs.org
Subject: [PATCH v2 1/4] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree
Date: Mon, 18 Jun 2018 14:58:59 +1000	[thread overview]
Message-ID: <20180618045902.11453-2-benh@kernel.crashing.org> (raw)
In-Reply-To: <20180618045902.11453-1-benh@kernel.crashing.org>

The reserved memory for the VGA frame buffer is at the wrong address
for this system.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
---
 arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts b/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
index 0b9b37d4d6ef..7d28c03a9e0b 100644
--- a/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
@@ -21,9 +21,9 @@
 		#size-cells = <1>;
 		ranges;
 
-		vga_memory: framebuffer at bf000000 {
+		vga_memory: framebuffer at 9f000000 {
 			no-map;
-			reg = <0xbf000000 0x01000000>; /* 16M */
+			reg = <0x9f000000 0x01000000>; /* 16M */
 		};
 
 		flash_memory: region at 98000000 {
-- 
2.17.1


WARNING: multiple messages have this Message-ID (diff)
From: benh@kernel.crashing.org (Benjamin Herrenschmidt)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 1/4] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree
Date: Mon, 18 Jun 2018 14:58:59 +1000	[thread overview]
Message-ID: <20180618045902.11453-2-benh@kernel.crashing.org> (raw)
In-Reply-To: <20180618045902.11453-1-benh@kernel.crashing.org>

The reserved memory for the VGA frame buffer is at the wrong address
for this system.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
---
 arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts b/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
index 0b9b37d4d6ef..7d28c03a9e0b 100644
--- a/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
@@ -21,9 +21,9 @@
 		#size-cells = <1>;
 		ranges;
 
-		vga_memory: framebuffer at bf000000 {
+		vga_memory: framebuffer at 9f000000 {
 			no-map;
-			reg = <0xbf000000 0x01000000>; /* 16M */
+			reg = <0x9f000000 0x01000000>; /* 16M */
 		};
 
 		flash_memory: region at 98000000 {
-- 
2.17.1

WARNING: multiple messages have this Message-ID (diff)
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Joel Stanley <joel@jms.id.au>
Cc: Andrew Jeffery <andrew@aj.id.au>,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-aspeed@lists.ozlabs.org,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>
Subject: [PATCH v2 1/4] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree
Date: Mon, 18 Jun 2018 14:58:59 +1000	[thread overview]
Message-ID: <20180618045902.11453-2-benh@kernel.crashing.org> (raw)
In-Reply-To: <20180618045902.11453-1-benh@kernel.crashing.org>

The reserved memory for the VGA frame buffer is at the wrong address
for this system.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
---
 arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts b/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
index 0b9b37d4d6ef..7d28c03a9e0b 100644
--- a/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
+++ b/arch/arm/boot/dts/aspeed-bmc-opp-romulus.dts
@@ -21,9 +21,9 @@
 		#size-cells = <1>;
 		ranges;
 
-		vga_memory: framebuffer@bf000000 {
+		vga_memory: framebuffer@9f000000 {
 			no-map;
-			reg = <0xbf000000 0x01000000>; /* 16M */
+			reg = <0x9f000000 0x01000000>; /* 16M */
 		};
 
 		flash_memory: region@98000000 {
-- 
2.17.1

  reply	other threads:[~2018-06-18  4:58 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-18  4:58 [PATCH v2 0/4] arm: dts: Aspeed SoC device-tree update Benjamin Herrenschmidt
2018-06-18  4:58 ` Benjamin Herrenschmidt
2018-06-18  4:58 ` Benjamin Herrenschmidt
2018-06-18  4:58 ` Benjamin Herrenschmidt [this message]
2018-06-18  4:58   ` [PATCH v2 1/4] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree Benjamin Herrenschmidt
2018-06-18  4:58   ` Benjamin Herrenschmidt
2018-06-18  5:16   ` Benjamin Herrenschmidt
2018-06-18  5:16     ` Benjamin Herrenschmidt
2018-06-18  5:16     ` Benjamin Herrenschmidt
2018-06-18  4:59 ` [PATCH v2 2/4] dt-bindings: misc: Aspeed coprocessor interrupt controller Benjamin Herrenschmidt
2018-06-18  4:59   ` Benjamin Herrenschmidt
2018-06-18  4:59   ` Benjamin Herrenschmidt
2018-06-19  6:56   ` Joel Stanley
2018-06-19  6:56     ` Joel Stanley
2018-06-19  6:56     ` Joel Stanley
2018-06-19  6:58     ` Benjamin Herrenschmidt
2018-06-19  6:58       ` Benjamin Herrenschmidt
2018-06-19  6:58       ` Benjamin Herrenschmidt
2018-06-20 19:49   ` Rob Herring
2018-06-20 19:49     ` Rob Herring
2018-06-20 19:49     ` Rob Herring
2018-06-20 23:05     ` Benjamin Herrenschmidt
2018-06-20 23:05       ` Benjamin Herrenschmidt
2018-06-20 23:05       ` Benjamin Herrenschmidt
2018-06-18  4:59 ` [PATCH v2 3/4] arm: dts: Update AST2500 device-tree Benjamin Herrenschmidt
2018-06-18  4:59   ` Benjamin Herrenschmidt
2018-06-18  4:59   ` Benjamin Herrenschmidt
2018-06-18  4:59 ` [PATCH v2 4/4] arm: dts: Update AST2400 device-tree Benjamin Herrenschmidt
2018-06-18  4:59   ` Benjamin Herrenschmidt
2018-06-18  4:59   ` Benjamin Herrenschmidt

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=20180618045902.11453-2-benh@kernel.crashing.org \
    --to=benh@kernel.crashing.org \
    --cc=linux-aspeed@lists.ozlabs.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 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.