* [PATCH 1/3] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree
@ 2018-06-14 3:56 Benjamin Herrenschmidt
2018-06-14 3:56 ` [PATCH 2/3] arm: dts: Update AST2500 device-tree Benjamin Herrenschmidt
2018-06-14 3:56 ` [PATCH 3/3] arm: dts: Update AST2400 device-tree Benjamin Herrenschmidt
0 siblings, 2 replies; 3+ messages in thread
From: Benjamin Herrenschmidt @ 2018-06-14 3:56 UTC (permalink / raw)
To: linux-aspeed
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.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/3] arm: dts: Update AST2500 device-tree
2018-06-14 3:56 [PATCH 1/3] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree Benjamin Herrenschmidt
@ 2018-06-14 3:56 ` Benjamin Herrenschmidt
2018-06-14 3:56 ` [PATCH 3/3] arm: dts: Update AST2400 device-tree Benjamin Herrenschmidt
1 sibling, 0 replies; 3+ messages in thread
From: Benjamin Herrenschmidt @ 2018-06-14 3:56 UTC (permalink / raw)
To: linux-aspeed
Add the missing node for the CVIC (the coprocessor interrupt
controller) and add a label to the SRAM node so it can be
referenced from the board device-tree file.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
arch/arm/boot/dts/aspeed-g5.dtsi | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/aspeed-g5.dtsi b/arch/arm/boot/dts/aspeed-g5.dtsi
index 17f2714d18a7..251664984398 100644
--- a/arch/arm/boot/dts/aspeed-g5.dtsi
+++ b/arch/arm/boot/dts/aspeed-g5.dtsi
@@ -127,6 +127,11 @@
reg = <0x1e6c0080 0x80>;
};
+ cvic: interrupt-controller at 1e6c2000 {
+ compatible = "aspeed,ast2400-cvic";
+ reg = <0x1e6c2000 0x80>;
+ };
+
mac0: ethernet at 1e660000 {
compatible = "aspeed,ast2500-mac", "faraday,ftgmac100";
reg = <0x1e660000 0x180>;
@@ -211,7 +216,7 @@
status = "disabled";
};
- sram at 1e720000 {
+ sram: sram at 1e720000 {
compatible = "mmio-sram";
reg = <0x1e720000 0x9000>; // 36K
};
--
2.17.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 3/3] arm: dts: Update AST2400 device-tree
2018-06-14 3:56 [PATCH 1/3] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree Benjamin Herrenschmidt
2018-06-14 3:56 ` [PATCH 2/3] arm: dts: Update AST2500 device-tree Benjamin Herrenschmidt
@ 2018-06-14 3:56 ` Benjamin Herrenschmidt
1 sibling, 0 replies; 3+ messages in thread
From: Benjamin Herrenschmidt @ 2018-06-14 3:56 UTC (permalink / raw)
To: linux-aspeed
Add the missing node for the CVIC (the coprocessor interrupt
controller) and add a label to the SRAM node so it can be
referenced from the board device-tree file.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
arch/arm/boot/dts/aspeed-g4.dtsi | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/aspeed-g4.dtsi b/arch/arm/boot/dts/aspeed-g4.dtsi
index 75df1573380e..435595534ec4 100644
--- a/arch/arm/boot/dts/aspeed-g4.dtsi
+++ b/arch/arm/boot/dts/aspeed-g4.dtsi
@@ -92,6 +92,11 @@
reg = <0x1e6c0080 0x80>;
};
+ cvic: interrupt-controller at 1e6c2000 {
+ compatible = "aspeed,ast2400-cvic";
+ reg = <0x1e6c2000 0x80>;
+ };
+
mac0: ethernet at 1e660000 {
compatible = "aspeed,ast2400-mac", "faraday,ftgmac100";
reg = <0x1e660000 0x180>;
@@ -161,7 +166,7 @@
status = "disabled";
};
- sram at 1e720000 {
+ sram: sram at 1e720000 {
compatible = "mmio-sram";
reg = <0x1e720000 0x8000>; // 32K
};
--
2.17.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-06-14 3:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-14 3:56 [PATCH 1/3] arm: dts: Fix error in Aspeed OpenPower Romulus device-tree Benjamin Herrenschmidt
2018-06-14 3:56 ` [PATCH 2/3] arm: dts: Update AST2500 device-tree Benjamin Herrenschmidt
2018-06-14 3:56 ` [PATCH 3/3] arm: dts: Update AST2400 device-tree Benjamin Herrenschmidt
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).