LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address
@ 2021-08-30 10:39 Nicolas Saenz Julienne
2021-08-30 13:39 ` Rob Herring
0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Saenz Julienne @ 2021-08-30 10:39 UTC (permalink / raw)
To: robh+dt, nsaenz, f.fainelli
Cc: gregkh, devicetree, bcm-kernel-feedback-list, linux-rpi-kernel,
linux-arm-kernel, linux-kernel, stefan.wahren,
Nicolas Saenz Julienne
dtbs_check currently complains that:
arch/arm/boot/dts/bcm2711-rpi-4-b.dts:220.10-231.4: Warning
(pci_device_reg): /scb/pcie@7d500000/pci@1,0: PCI unit address format
error, expected "0,0"
Unsurprisingly pci@0,0 is the right address, as illustrated by its reg
property:
&pcie0 {
pci@0,0 {
/*
* As defined in the IEEE Std 1275-1994 document,
* reg is a five-cell address encoded as (phys.hi
* phys.mid phys.lo size.hi size.lo). phys.hi
* should contain the device's BDF as 0b00000000
* bbbbbbbb dddddfff 00000000. The other cells
* should be zero.
*/
reg = <0 0 0 0 0>;
};
};
The bus is clearly 0. So fix it.
Fixes: 258f92d2f840 ("ARM: dts: bcm2711: Add reset controller to xHCI node")
Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com>
---
arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
index f24bdd0870a5..8a77f9e942be 100644
--- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
+++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
@@ -217,7 +217,7 @@ phy1: ethernet-phy@1 {
};
&pcie0 {
- pci@1,0 {
+ pci@0,0 {
#address-cells = <3>;
#size-cells = <2>;
ranges;
--
2.31.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address
2021-08-30 10:39 [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address Nicolas Saenz Julienne
@ 2021-08-30 13:39 ` Rob Herring
2021-08-30 13:52 ` nsaenzju
2021-08-30 16:45 ` nsaenzju
0 siblings, 2 replies; 5+ messages in thread
From: Rob Herring @ 2021-08-30 13:39 UTC (permalink / raw)
To: Nicolas Saenz Julienne
Cc: nsaenz, f.fainelli, gregkh, devicetree, bcm-kernel-feedback-list,
linux-rpi-kernel, linux-arm-kernel, linux-kernel, stefan.wahren
On Mon, Aug 30, 2021 at 12:39:09PM +0200, Nicolas Saenz Julienne wrote:
> dtbs_check currently complains that:
>
> arch/arm/boot/dts/bcm2711-rpi-4-b.dts:220.10-231.4: Warning
> (pci_device_reg): /scb/pcie@7d500000/pci@1,0: PCI unit address format
> error, expected "0,0"
>
> Unsurprisingly pci@0,0 is the right address, as illustrated by its reg
> property:
>
> &pcie0 {
> pci@0,0 {
> /*
> * As defined in the IEEE Std 1275-1994 document,
> * reg is a five-cell address encoded as (phys.hi
> * phys.mid phys.lo size.hi size.lo). phys.hi
> * should contain the device's BDF as 0b00000000
> * bbbbbbbb dddddfff 00000000. The other cells
> * should be zero.
> */
> reg = <0 0 0 0 0>;
> };
> };
>
> The bus is clearly 0. So fix it.
s/bus/device/
The unit-address format is '<device>,<function>' (and function is
optional). The bus number is not part of the unit-address because that
is dynamic and then the path would not be fixed/known. The bus is part
of 'reg' for true OpenFirmware, but for FDT I think it should always be
0 as the DT is static.
Looks like the child node is wrong (both unit-address and reg) as well:
usb@1,0 {
reg = <0x10000 0 0 0 0>;
resets = <&reset RASPBERRYPI_FIRMWARE_RESET_ID_USB>;
};
It doesn't warn because the bridge node is also missing 'device_type =
"pci";'.
This is all fairly hard to get right (see recent hikey970 patches for a
complex example). I'm thinking about writing a tool that generates a DT
with PCI nodes by reading the PCI hierachy from sysfs.
Rob
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address
2021-08-30 13:39 ` Rob Herring
@ 2021-08-30 13:52 ` nsaenzju
2021-08-30 16:45 ` nsaenzju
1 sibling, 0 replies; 5+ messages in thread
From: nsaenzju @ 2021-08-30 13:52 UTC (permalink / raw)
To: Rob Herring
Cc: f.fainelli, gregkh, devicetree, bcm-kernel-feedback-list,
linux-rpi-kernel, linux-arm-kernel, linux-kernel, stefan.wahren
On Mon, 2021-08-30 at 08:39 -0500, Rob Herring wrote:
> On Mon, Aug 30, 2021 at 12:39:09PM +0200, Nicolas Saenz Julienne wrote:
> > dtbs_check currently complains that:
> >
> > arch/arm/boot/dts/bcm2711-rpi-4-b.dts:220.10-231.4: Warning
> > (pci_device_reg): /scb/pcie@7d500000/pci@1,0: PCI unit address format
> > error, expected "0,0"
> >
> > Unsurprisingly pci@0,0 is the right address, as illustrated by its reg
> > property:
> >
> > &pcie0 {
> > pci@0,0 {
> > /*
> > * As defined in the IEEE Std 1275-1994 document,
> > * reg is a five-cell address encoded as (phys.hi
> > * phys.mid phys.lo size.hi size.lo). phys.hi
> > * should contain the device's BDF as 0b00000000
> > * bbbbbbbb dddddfff 00000000. The other cells
> > * should be zero.
> > */
> > reg = <0 0 0 0 0>;
> > };
> > };
> >
> > The bus is clearly 0. So fix it.
>
> s/bus/device/
>
> The unit-address format is '<device>,<function>' (and function is
> optional). The bus number is not part of the unit-address because that
> is dynamic and then the path would not be fixed/known. The bus is part
> of 'reg' for true OpenFirmware, but for FDT I think it should always be
> 0 as the DT is static.
>
> Looks like the child node is wrong (both unit-address and reg) as well:
>
> usb@1,0 {
> reg = <0x10000 0 0 0 0>;
> resets = <&reset RASPBERRYPI_FIRMWARE_RESET_ID_USB>;
> };
>
> It doesn't warn because the bridge node is also missing 'device_type =
> "pci";'.
>
> This is all fairly hard to get right (see recent hikey970 patches for a
> complex example). I'm thinking about writing a tool that generates a DT
> with PCI nodes by reading the PCI hierachy from sysfs.
Thanks for the review, I'll fix all those. That tool would be very helpful.
--
Nicolás Sáenz
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address
2021-08-30 13:39 ` Rob Herring
2021-08-30 13:52 ` nsaenzju
@ 2021-08-30 16:45 ` nsaenzju
2021-08-30 21:56 ` Rob Herring
1 sibling, 1 reply; 5+ messages in thread
From: nsaenzju @ 2021-08-30 16:45 UTC (permalink / raw)
To: Rob Herring
Cc: f.fainelli, gregkh, devicetree, bcm-kernel-feedback-list,
linux-rpi-kernel, linux-arm-kernel, linux-kernel, stefan.wahren
On Mon, 2021-08-30 at 08:39 -0500, Rob Herring wrote:
> On Mon, Aug 30, 2021 at 12:39:09PM +0200, Nicolas Saenz Julienne wrote:
> > dtbs_check currently complains that:
> >
> > arch/arm/boot/dts/bcm2711-rpi-4-b.dts:220.10-231.4: Warning
> > (pci_device_reg): /scb/pcie@7d500000/pci@1,0: PCI unit address format
> > error, expected "0,0"
> >
> > Unsurprisingly pci@0,0 is the right address, as illustrated by its reg
> > property:
> >
> > &pcie0 {
> > pci@0,0 {
> > /*
> > * As defined in the IEEE Std 1275-1994 document,
> > * reg is a five-cell address encoded as (phys.hi
> > * phys.mid phys.lo size.hi size.lo). phys.hi
> > * should contain the device's BDF as 0b00000000
> > * bbbbbbbb dddddfff 00000000. The other cells
> > * should be zero.
> > */
> > reg = <0 0 0 0 0>;
> > };
> > };
> >
> > The bus is clearly 0. So fix it.
>
> s/bus/device/
>
> The unit-address format is '<device>,<function>' (and function is
> optional). The bus number is not part of the unit-address because that
> is dynamic and then the path would not be fixed/known. The bus is part
> of 'reg' for true OpenFirmware, but for FDT I think it should always be
> 0 as the DT is static.
>
> Looks like the child node is wrong (both unit-address and reg) as well:
>
> usb@1,0 {
> reg = <0x10000 0 0 0 0>;
> resets = <&reset RASPBERRYPI_FIRMWARE_RESET_ID_USB>;
> };
>
> It doesn't warn because the bridge node is also missing 'device_type =
> "pci";'.
>
> This is all fairly hard to get right (see recent hikey970 patches for a
> complex example). I'm thinking about writing a tool that generates a DT
> with PCI nodes by reading the PCI hierachy from sysfs.
Just to double-check I understood everything, with:
lspci -D -PP
0000:00:00.0 PCI bridge: Broadcom Inc. and subsidiaries BCM2711 PCIe Bridge (rev 10)
0000:00:00.0/01:00.0 USB controller: VIA Technologies, Inc. VL805/806 xHCI USB 3.0 Controller (rev 01)
It should look like this:
&pcie0 {
pci@0,0 {
device_type = "pci";
#address-cells = <3>;
#size-cells = <2>;
ranges;
reg = <0 0 0 0 0>;
usb@0,0 {
reg = <0 0 0 0 0>;
resets = <&reset RASPBERRYPI_FIRMWARE_RESET_ID_USB>;
};
};
};
Thanks!
--
Nicolás Sáenz
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address
2021-08-30 16:45 ` nsaenzju
@ 2021-08-30 21:56 ` Rob Herring
0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2021-08-30 21:56 UTC (permalink / raw)
To: nsaenzju
Cc: Florian Fainelli, Greg Kroah-Hartman, devicetree,
maintainer:BROADCOM BCM7XXX ARM ARCHITECTURE,
moderated list:BROADCOM BCM2835 ARM ARCHITECTURE,
linux-arm-kernel, linux-kernel, Stefan Wahren
On Mon, Aug 30, 2021 at 11:45 AM <nsaenzju@redhat.com> wrote:
>
> On Mon, 2021-08-30 at 08:39 -0500, Rob Herring wrote:
> > On Mon, Aug 30, 2021 at 12:39:09PM +0200, Nicolas Saenz Julienne wrote:
> > > dtbs_check currently complains that:
> > >
> > > arch/arm/boot/dts/bcm2711-rpi-4-b.dts:220.10-231.4: Warning
> > > (pci_device_reg): /scb/pcie@7d500000/pci@1,0: PCI unit address format
> > > error, expected "0,0"
> > >
> > > Unsurprisingly pci@0,0 is the right address, as illustrated by its reg
> > > property:
> > >
> > > &pcie0 {
> > > pci@0,0 {
> > > /*
> > > * As defined in the IEEE Std 1275-1994 document,
> > > * reg is a five-cell address encoded as (phys.hi
> > > * phys.mid phys.lo size.hi size.lo). phys.hi
> > > * should contain the device's BDF as 0b00000000
> > > * bbbbbbbb dddddfff 00000000. The other cells
> > > * should be zero.
> > > */
> > > reg = <0 0 0 0 0>;
> > > };
> > > };
> > >
> > > The bus is clearly 0. So fix it.
> >
> > s/bus/device/
> >
> > The unit-address format is '<device>,<function>' (and function is
> > optional). The bus number is not part of the unit-address because that
> > is dynamic and then the path would not be fixed/known. The bus is part
> > of 'reg' for true OpenFirmware, but for FDT I think it should always be
> > 0 as the DT is static.
> >
> > Looks like the child node is wrong (both unit-address and reg) as well:
> >
> > usb@1,0 {
> > reg = <0x10000 0 0 0 0>;
> > resets = <&reset RASPBERRYPI_FIRMWARE_RESET_ID_USB>;
> > };
> >
> > It doesn't warn because the bridge node is also missing 'device_type =
> > "pci";'.
> >
> > This is all fairly hard to get right (see recent hikey970 patches for a
> > complex example). I'm thinking about writing a tool that generates a DT
> > with PCI nodes by reading the PCI hierachy from sysfs.
>
> Just to double-check I understood everything, with:
>
> lspci -D -PP
> 0000:00:00.0 PCI bridge: Broadcom Inc. and subsidiaries BCM2711 PCIe Bridge (rev 10)
> 0000:00:00.0/01:00.0 USB controller: VIA Technologies, Inc. VL805/806 xHCI USB 3.0 Controller (rev 01)
>
> It should look like this:
>
> &pcie0 {
> pci@0,0 {
> device_type = "pci";
> #address-cells = <3>;
> #size-cells = <2>;
> ranges;
>
> reg = <0 0 0 0 0>;
>
> usb@0,0 {
> reg = <0 0 0 0 0>;
> resets = <&reset RASPBERRYPI_FIRMWARE_RESET_ID_USB>;
> };
> };
> };
Yes, that looks correct.
Rob
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-08-30 21:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-30 10:39 [PATCH] ARM: dts: bcm2711-rpi-4-b: Fix pcie0's unit address Nicolas Saenz Julienne
2021-08-30 13:39 ` Rob Herring
2021-08-30 13:52 ` nsaenzju
2021-08-30 16:45 ` nsaenzju
2021-08-30 21:56 ` Rob Herring
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).