8674b41c0d
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
60 lines
2.3 KiB
Diff
60 lines
2.3 KiB
Diff
From b67cad33176e472df6d16a24ee7624299bdcd5d5 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
|
Date: Fri, 16 Jun 2023 12:58:27 +0200
|
|
Subject: [PATCH] ARM: dts: BCM5301X: Add cells sizes to PCIe nodes
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
This fixes:
|
|
arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dtb: pcie@12000: '#address-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dtb: pcie@12000: '#size-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dtb: pcie@13000: '#address-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dtb: pcie@13000: '#size-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dtb: pcie@14000: '#address-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
arch/arm/boot/dts/bcm4708-asus-rt-ac56u.dtb: pcie@14000: '#size-cells' is a required property
|
|
From schema: /lib/python3.10/site-packages/dtschema/schemas/pci/pci-bus.yaml
|
|
|
|
Two properties that need to be added later are "device_type" and
|
|
"ranges". Adding "device_type" on its own causes a new warning and the
|
|
value of "ranges" needs to be determined yet.
|
|
|
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
|
Link: https://lore.kernel.org/r/20230616105827.21656-1-zajec5@gmail.com
|
|
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
|
|
---
|
|
arch/arm/boot/dts/bcm-ns.dtsi | 9 +++++++++
|
|
1 file changed, 9 insertions(+)
|
|
|
|
--- a/arch/arm/boot/dts/bcm-ns.dtsi
|
|
+++ b/arch/arm/boot/dts/bcm-ns.dtsi
|
|
@@ -176,14 +176,23 @@
|
|
|
|
pcie0: pcie@12000 {
|
|
reg = <0x00012000 0x1000>;
|
|
+
|
|
+ #address-cells = <3>;
|
|
+ #size-cells = <2>;
|
|
};
|
|
|
|
pcie1: pcie@13000 {
|
|
reg = <0x00013000 0x1000>;
|
|
+
|
|
+ #address-cells = <3>;
|
|
+ #size-cells = <2>;
|
|
};
|
|
|
|
pcie2: pcie@14000 {
|
|
reg = <0x00014000 0x1000>;
|
|
+
|
|
+ #address-cells = <3>;
|
|
+ #size-cells = <2>;
|
|
};
|
|
|
|
usb2: usb2@21000 {
|