aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Martinez Canillas <[email protected]>2013-02-27 02:30:51 +0100
committerBenoit Cousson <[email protected]>2013-04-09 00:18:00 +0200
commit41644e75c5daef04f6849037c5abb98fe949769f (patch)
treefcbfb2ac834384ff493bdf047abdc4cd645f33b8
parent6e8489dffd57c8e1afdac3da971604140492de9e (diff)
ARM: dts: OMAP3: reduce GPMC mapped registers address space
Currently the OMAP General-Purpose Memory Controller (GPMC) device node maps 16 MB of address space for its hardware registers. This is because the OMAP Technical Reference Manual says that the GPMC module register address space size is 16 MB. But in practice the maximum address offset used by a GPMC register is 0x02d0. So, there is no need to map such a big address space for GPMC regs. This change was suggested by Jon Hunter [1]. [1]: https://patchwork.kernel.org/patch/2057111/ Signed-off-by: Javier Martinez Canillas <[email protected]> Acked-by: Jon Hunter <[email protected]> Signed-off-by: Benoit Cousson <[email protected]>
-rw-r--r--arch/arm/boot/dts/omap3.dtsi2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/omap3.dtsi b/arch/arm/boot/dts/omap3.dtsi
index 33bc0c47a8cd..ea59c0a8cce8 100644
--- a/arch/arm/boot/dts/omap3.dtsi
+++ b/arch/arm/boot/dts/omap3.dtsi
@@ -431,7 +431,7 @@
gpmc: gpmc@6e000000 {
compatible = "ti,omap3430-gpmc";
ti,hwmods = "gpmc";
- reg = <0x6e000000 0x1000000>;
+ reg = <0x6e000000 0x02d0>;
interrupts = <20>;
gpmc,num-cs = <8>;
gpmc,num-waitpins = <4>;