Commit 6bb2ae53 authored by Gerhard Pircher's avatar Gerhard Pircher Committed by Benjamin Herrenschmidt

powerpc/amigaone: Limit ISA I/O range to 4k in the device tree

The kernel reserves the I/O address space from 0x0 to 0xfff for legacy
ISA devices. Change the ranges property for the PCI2ISA bridge to match
the kernels behavior, even if the ranges property isn't used for now.
Signed-off-by: default avatarGerhard Pircher <gerhard_pircher@gmx.net>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 3984114f
...@@ -70,8 +70,8 @@ isa@7 { ...@@ -70,8 +70,8 @@ isa@7 {
devsel-speed = <0x00000001>; devsel-speed = <0x00000001>;
min-grant = <0>; min-grant = <0>;
max-latency = <0>; max-latency = <0>;
/* First 64k for I/O at 0x0 on PCI mapped to 0x0 on ISA. */ /* First 4k for I/O at 0x0 on PCI mapped to 0x0 on ISA. */
ranges = <0x00000001 0 0x01000000 0 0x00000000 0x00010000>; ranges = <0x00000001 0 0x01000000 0 0x00000000 0x00001000>;
interrupt-parent = <&i8259>; interrupt-parent = <&i8259>;
#interrupt-cells = <2>; #interrupt-cells = <2>;
#address-cells = <2>; #address-cells = <2>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment