diff options
author | Mathias Kresin <dev@kresin.me> | 2020-12-28 14:03:54 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2021-04-12 23:23:09 +0200 |
commit | 276c85825c859f93d3f7ce501630af631e4d9e32 (patch) | |
tree | 87c69b7747a4e8f21a3b6057526d6f6ccf9d5940 | |
parent | edbbec1bdd0a94e32f9bb6169dd7ec9e4da7c201 (diff) | |
download | upstream-276c85825c859f93d3f7ce501630af631e4d9e32.tar.gz upstream-276c85825c859f93d3f7ce501630af631e4d9e32.tar.bz2 upstream-276c85825c859f93d3f7ce501630af631e4d9e32.zip |
lantiq: dts: mark PCI bridges as such
Use the device_type property to mark PCI host bridges as such. With
linux 5.10 it is mandatory, otherwise the PCI IO space is flages as PCI
memory and the PCI init fails.
Signed-off-by: Mathias Kresin <dev@kresin.me>
3 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/ar9.dtsi b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/ar9.dtsi index 362ecaa90c..0eec0c614d 100644 --- a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/ar9.dtsi +++ b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/ar9.dtsi @@ -412,6 +412,8 @@ interrupt-map-mask = <0xf800 0x0 0x0 0x7>; interrupt-map = <0x7000 0 0 1 &icu0 30 1>; req-mask = <0x1>; + + device_type = "pci"; }; }; diff --git a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/danube.dtsi b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/danube.dtsi index bb3e9fb188..34d8289542 100644 --- a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/danube.dtsi +++ b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/danube.dtsi @@ -325,6 +325,8 @@ interrupt-map-mask = <0xf800 0x0 0x0 0x7>; interrupt-map = <0x7000 0 0 1 &icu0 30 1>; /* slot 14, irq 30 */ req-mask = <0x1>; /* GNT1 */ + + device_type = "pci"; }; }; diff --git a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9.dtsi b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9.dtsi index 3bb0b7e837..22d5509a33 100644 --- a/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9.dtsi +++ b/target/linux/lantiq/files/arch/mips/boot/dts/lantiq/vr9.dtsi @@ -520,6 +520,8 @@ interrupt-map-mask = <0xf800 0x0 0x0 0x7>; interrupt-map = <0x7000 0 0 1 &icu0 30 1>; /* slot 14, irq 30 */ req-mask = <0x1>; /* GNT1 */ + + device_type = "pci"; }; }; |