lkml.org 
[lkml]   [2022]   [May]   [26]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v1] PCI: brcmstb: Fix regression regarding missing PCIe linkup
On Mon, May 23, 2022 at 05:10:36PM -0500, Bjorn Helgaas wrote:
> On Sat, May 21, 2022 at 02:51:42PM -0400, Jim Quinlan wrote:
> > On Sat, May 21,
> > 2CONFIG_INITRAMFS_SOURCE="/work3/jq921458/cpio/54-arm64-rootfs.cpio022
> > at 12:43 PM Bjorn Helgaas <helgaas@kernel.org> wrote:
> > > On Wed, May 18, 2022 at 03:42:11PM -0400, Jim Quinlan wrote:
> > > > commit 93e41f3fca3d ("PCI: brcmstb: Add control of subdevice
> > > > voltage regulators")
> > > >
> > > > introduced a regression on the PCIe RPi4 Compute Module. If the
> > > > PCIe endpoint node described in [2] was missing, no linkup would
> > > > be attempted, and subsequent accesses would cause a panic
> > > > because this particular PCIe HW causes a CPU abort on illegal
> > > > accesses (instead of returning 0xffffffff).
> > > >
> > > > We fix this by allowing the DT endpoint subnode to be missing.
> > > > This is important for platforms like the CM4 which have a
> > > > standard PCIe socket and the endpoint device is unknown.
> > >
> > > I think the problem here is that on the CM, we try to enumerate
> > > devices that are not powered up, isn't it? The commit log should
> > > say something about that power situation and how the driver learns
> > > about the power regulators instead of just pointing at an DT
> > > endpoint node.
> >
> > This is incorrect. The regression occurred because the code
> > mistakenly skips PCIe-linkup if the PCI portdrv DT node does not
> > exist. With our RC HW, doing a config space access to bus 1 w/o
> > first linking up results in a CPU abort. This regression has
> > nothing to do with EP power at all.
>
> OK, I think I'm starting to see, but I'm still missing some things.
>
> 67211aadcb4b ("PCI: brcmstb: Add mechanism to turn on subdev
> regulators") added pci_subdev_regulators_add_bus() as an .add_bus()
> method. This is called by pci_alloc_child_bus(), and if the DT
> describes any regulators for the bridge leading to the new child bus,
> we turn them on.
>
> Then 93e41f3fca3d ("PCI: brcmstb: Add control of subdevice voltage
> regulators") added brcm_pcie_add_bus() and made *it* the .add_bus()
> method. It turns on the regulators and brings the link up, but it
> skips both if there's no DT node for the bridge to the new bus.
>
> I guess RPi4 CM has no DT node to describe regulators, so we skip both
> turning them on *and* bringing the link up?
>
> But above you say it's the *endpoint* node that doesn't exist. The
> existing code looks like it's checking for the *bridge* node
> (bus->dev->of_node). We haven't even enumerated the devices on the
> child bus, so we don't know about them at this point.
>
> What happens if there is a DT node for the bridge, but it doesn't
> describe any regulators? I assume regulator_bulk_get() will fail, and
> it looks like that might still keep us from bringing the link up?
>
> I would think that lack of regulator description in the DT would mean
> that any regulators are always on and the OS doesn't need to do
> anything.
>
> > > What happens if we turn on the power but don't find any
> > > downstream devices?
> >
> > They are turned off to conserve power.
> >
> > > From looking at the code, I assume we just leave the power on.
> > > Maybe that's what you want, I dunno.
>
> > For STB and Cable Modem products we do not leave the power on. In
> > fact, our Cable Modem group was the first to request this feature.
> > It appears that the RPi CM4 always keeps endpoint power on but I do
> > not know for sure.
>
> I'm confused. Why can't we tell by looking at pcie-brcmstb.c? All I
> know is what's in pcie-brcmstb.c; I have no idea which things apply to
> which products.
>
> The only calls to regulator_bulk_disable() are in
> pci_subdev_regulators_remove_bus(), brcm_pcie_suspend(), and
> brcm_pcie_resume(). I don't think the fact that enumeration didn't
> find any devices necessarily leads to any of those. What am I
> missing? (This is really a tangent that isn't critical for fixing the
> regression.)
>
> > > I added Rafael because this seems vaguely similar to runtime power
> > > management, and if we can integrate with that somehow, I'd sure like
> > > to avoid building a parallel infrastructure for it.
> > >
> > > The current path we're on is to move some of this code that's
> > > currently in pcie-brcmstb.c to the PCIe portdrv [0]. I'm a little
> > > hesitant about that because ACPI does just fine without it. If we're
> > > adding new DT functionality that could not be implemented via ACPI,
> > > that's one thing. But I'm not convinced this is that new.
> >
> > AFAICT, Broadcom STB and Cable Modem products do not have/use/want
> > ACPI. We are fine with keeping this "PCIe regulator" feature
> > private to our driver and giving you speedy and full support in
> > maintaining it.
>
> I don't mean that you should use ACPI, only that ACPI platforms can do
> this sort of power control using the existing PCI core infrastructure,
> and maybe there's a way for OF/DT platforms to hook into that same
> infrastructure to minimize the driver-specific work. E.g., maybe
> there's a way to extend platform_pci_set_power_state() and similar to
> manage these regulators.

The big difference is ACPI abstracts how to control power for a device.
The OS just knows D0, D3, etc. states. For DT, there is no such
abstraction. You need device specific code to do device specific power
management.

> > > [0] https://lore.kernel.org/r/20211110221456.11977-6-jim2101024@gmail.com
> > >
> > > > [1] https://bugzilla.kernel.org/show_bug.cgi?id=215925
> > > > [2] Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
> > > >
> > > > Fixes: 93e41f3fca3d ("PCI: brcmstb: Add control of subdevice voltage regulators")
> > > > Fixes: 830aa6f29f07 ("PCI: brcmstb: Split brcm_pcie_setup() into two funcs")
> > > > Link: https://bugzilla.kernel.org/show_bug.cgi?id=215925
> > > > Signed-off-by: Jim Quinlan <jim2101024@gmail.com>
> > > > ---
> > > > drivers/pci/controller/pcie-brcmstb.c | 8 +++++---
> > > > 1 file changed, 5 insertions(+), 3 deletions(-)
> > > >
> > > > diff --git a/drivers/pci/controller/pcie-brcmstb.c b/drivers/pci/controller/pcie-brcmstb.c
> > > > index ba5c120816b2..adca74e235cb 100644
> > > > --- a/drivers/pci/controller/pcie-brcmstb.c
> > > > +++ b/drivers/pci/controller/pcie-brcmstb.c
> > > > @@ -540,16 +540,18 @@ static int pci_subdev_regulators_add_bus(struct pci_bus *bus)
> > > >
> > > > static int brcm_pcie_add_bus(struct pci_bus *bus)
> > > > {
> > > > - struct device *dev = &bus->dev;
> > > > struct brcm_pcie *pcie = (struct brcm_pcie *) bus->sysdata;
> > > > int ret;
> > > >
> > > > - if (!dev->of_node || !bus->parent || !pci_is_root_bus(bus->parent))
> > > > + /* Only busno==1 requires us to linkup */
> > > > + if ((int)bus->number != 1)
> > > > return 0;
> > > >
> > > > ret = pci_subdev_regulators_add_bus(bus);
> > > > - if (ret)
> > > > + if (ret) {
> > > > + pcie->refusal_mode = true;
> > > > return ret;
> > > > + }
> > > >
> > > > /* Grab the regulators for suspend/resume */
> > > > pcie->sr = bus->dev.driver_data;
> > >
> > > IIUC, this path:
> > >
> > > pci_alloc_child_bus
> > > brcm_pcie_add_bus # .add_bus method
> > > pci_subdev_regulators_add_bus # in pcie-brcmstb.c for now
> > > alloc_subdev_regulators # in pcie-brcmstb.c for now
> > > regulator_bulk_get
> > > regulator_bulk_enable
> > > brcm_pcie_linkup # bring link up
> > >
> > > is basically so we can leave power to downstream devices off, then
> > > turn it on when we're ready to enumerate those downstream devices.
> >
> > Yes -- it is the "chicken-and-egg" problem. Ideally, we would like
> > for the endpoint driver to turn on its own regulators, but even to
> > know which endpoint driver to probe we must turn on the regulator to
> > establish linkup.
>
> I don't think having an endpoint driver turn on power to its device is
> the right goal.

DT requires device specific code to control a specific device. That
belongs in the driver for that device.

> As you said, if the power is off, we don't know
> whether there's an endpoint or what it is, so the driver isn't in the
> picture (I know sometimes endpoints are described in DT, and that
> might be needed for non-discoverable properties, but I don't think
> it's a good way to *enumerate* the device).

Well, I don't think there is another way. People have tried to hack
around this for years. There's the 'generic' bindings with never ending
properties added one-by-one to try to handle new ctrl or timing needs
for new device. Or there's the pseudo virtual platform device and driver
to do power management on the side.

The only way generic control by the upstream (on the bus) device works
is if there's a standard connector which has standard power supplies,
reset, etc. which we know the timing for ('cause it's in the PCI spec).


> I don't know much about ACPI power management, but I kind of think it
> turns on power to *everything* initially so we can enumerate all the
> devices (Rafael or others, please correct me!) After enumeration, we
> can turn off devices we don't need, and the power management framework
> already supports turning devices on again when we use them.

That's basically requiring the firmware turn on everything before boot.
Might work for some, but probably not everyone because they can't change
firmware. There's also the issue that the kernel turns off unused clocks
and regulators at late_initcall which is a problem if the PCI device's
driver is a module.

Rob

\
 
 \ /
  Last update: 2022-05-26 21:26    [W:0.127 / U:0.016 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site