diff options
author | Cédric Le Goater <clg@kaod.org> | 2017-04-19 15:43:15 +0200 |
---|---|---|
committer | Joel Stanley <joel@jms.id.au> | 2017-08-23 08:36:02 +0200 |
commit | bcbd328d3fe765f333642b7cfe384d59dffc2db2 (patch) | |
tree | 5d28e12696c0bd0e79c671f1fdbf28495392c322 /arch/arm/boot/dts/aspeed-g4.dtsi | |
parent | Linux v4.13-rc1 (diff) | |
download | linux-bcbd328d3fe765f333642b7cfe384d59dffc2db2.tar.xz linux-bcbd328d3fe765f333642b7cfe384d59dffc2db2.zip |
ARM: dts: aspeed-g4: fix AHB window size of the SMC controllers
The window of the Aspeed AST2400 SMC Controllers to map chips on the
AHB Bus has a 256MB size. The full window range is
[ 0x20000000 - 0x2FFFFFFF ] for the FMC controller
[ 0x30000000 - 0x3FFFFFFF ] for the SPI controller
This change requires CONFIG_VMSPLIT_2G to be set.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'arch/arm/boot/dts/aspeed-g4.dtsi')
-rw-r--r-- | arch/arm/boot/dts/aspeed-g4.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/aspeed-g4.dtsi b/arch/arm/boot/dts/aspeed-g4.dtsi index 8a04c7e2d818..22b958537d31 100644 --- a/arch/arm/boot/dts/aspeed-g4.dtsi +++ b/arch/arm/boot/dts/aspeed-g4.dtsi @@ -26,7 +26,7 @@ fmc: flash-controller@1e620000 { reg = < 0x1e620000 0x94 - 0x20000000 0x02000000 >; + 0x20000000 0x10000000 >; #address-cells = <1>; #size-cells = <0>; compatible = "aspeed,ast2400-fmc"; @@ -41,7 +41,7 @@ spi: flash-controller@1e630000 { reg = < 0x1e630000 0x18 - 0x30000000 0x02000000 >; + 0x30000000 0x10000000 >; #address-cells = <1>; #size-cells = <0>; compatible = "aspeed,ast2400-spi"; |