All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH u-boot] dm: pci: Fix handling of errors when scanning device
@ 2021-09-07 16:07 Marek Behún
  2021-09-08  1:06 ` Bin Meng
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Marek Behún @ 2021-09-07 16:07 UTC (permalink / raw)
  To: Simon Glass, Stefan Roese; +Cc: u-boot, Pali Rohár, Marek Behún

From: Pali Rohár <pali@kernel.org>

Some PCIe controller's read_config() method support indicating error
directly via return value, but some cannot distinguish all-ones (or
all-zeros) read response from an error.

The current code in pci_bind_bus_devices() interprets all-ones /
all-zeros in PCI_VENDOR_ID register as "nothing connected", and
continues the cycle, but an error returned via return value breaks the
cycle.

This is wrong for the PCIe controllers which return this error via
return value.

Handle all errors when reading PCI_VENDOR_ID the same way.

This fixes enumeration of PCI devices for example when there is a PCI
bridge connected behind another PCI bridge and not all ports are
connected to a device, and the controller (for example Aardvark)
translates the UR error (Unsupported Request) as -EOPNOTSUPP.

Signed-off-by: Pali Rohár <pali@kernel.org>
Signed-off-by: Marek Behún <marek.behun@nic.cz>
---
 drivers/pci/pci-uclass.c | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c
index ce2eb5da2c..4d0e938fe5 100644
--- a/drivers/pci/pci-uclass.c
+++ b/drivers/pci/pci-uclass.c
@@ -856,10 +856,7 @@ int pci_bind_bus_devices(struct udevice *bus)
 		/* Check only the first access, we don't expect problems */
 		ret = pci_bus_read_config(bus, bdf, PCI_VENDOR_ID, &vendor,
 					  PCI_SIZE_16);
-		if (ret)
-			goto error;
-
-		if (vendor == 0xffff || vendor == 0x0000)
+		if (ret || vendor == 0xffff || vendor == 0x0000)
 			continue;
 
 		pci_bus_read_config(bus, bdf, PCI_HEADER_TYPE,
@@ -940,10 +937,6 @@ int pci_bind_bus_devices(struct udevice *bus)
 	}
 
 	return 0;
-error:
-	printf("Cannot read bus configuration: %d\n", ret);
-
-	return ret;
 }
 
 static void decode_regions(struct pci_controller *hose, ofnode parent_node,
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH u-boot] dm: pci: Fix handling of errors when scanning device
  2021-09-07 16:07 [PATCH u-boot] dm: pci: Fix handling of errors when scanning device Marek Behún
@ 2021-09-08  1:06 ` Bin Meng
  2021-09-08 12:02   ` Marek Behún
  2021-09-10  7:02 ` Stefan Roese
  2021-09-26 18:40 ` Simon Glass
  2 siblings, 1 reply; 7+ messages in thread
From: Bin Meng @ 2021-09-08  1:06 UTC (permalink / raw)
  To: Marek Behún
  Cc: Simon Glass, Stefan Roese, U-Boot Mailing List, Pali Rohár

On Wed, Sep 8, 2021 at 12:07 AM Marek Behún <marek.behun@nic.cz> wrote:
>
> From: Pali Rohár <pali@kernel.org>
>
> Some PCIe controller's read_config() method support indicating error
> directly via return value, but some cannot distinguish all-ones (or
> all-zeros) read response from an error.
>
> The current code in pci_bind_bus_devices() interprets all-ones /
> all-zeros in PCI_VENDOR_ID register as "nothing connected", and
> continues the cycle, but an error returned via return value breaks the
> cycle.
>
> This is wrong for the PCIe controllers which return this error via
> return value.
>
> Handle all errors when reading PCI_VENDOR_ID the same way.
>
> This fixes enumeration of PCI devices for example when there is a PCI
> bridge connected behind another PCI bridge and not all ports are
> connected to a device, and the controller (for example Aardvark)
> translates the UR error (Unsupported Request) as -EOPNOTSUPP.
>
> Signed-off-by: Pali Rohár <pali@kernel.org>
> Signed-off-by: Marek Behún <marek.behun@nic.cz>
> ---
>  drivers/pci/pci-uclass.c | 9 +--------
>  1 file changed, 1 insertion(+), 8 deletions(-)
>

Is it possible to update these PCI controller drivers to fill in
vendor id to all zeros when there is an errror?

Regards,
Bin

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH u-boot] dm: pci: Fix handling of errors when scanning device
  2021-09-08  1:06 ` Bin Meng
@ 2021-09-08 12:02   ` Marek Behún
  2021-09-08 12:57     ` Bin Meng
  0 siblings, 1 reply; 7+ messages in thread
From: Marek Behún @ 2021-09-08 12:02 UTC (permalink / raw)
  To: Bin Meng; +Cc: Simon Glass, Stefan Roese, U-Boot Mailing List, Pali Rohár

On Wed, 8 Sep 2021 09:06:28 +0800
Bin Meng <bmeng.cn@gmail.com> wrote:

> On Wed, Sep 8, 2021 at 12:07 AM Marek Behún <marek.behun@nic.cz>
> wrote:
> >
> > From: Pali Rohár <pali@kernel.org>
> >
> > Some PCIe controller's read_config() method support indicating error
> > directly via return value, but some cannot distinguish all-ones (or
> > all-zeros) read response from an error.
> >
> > The current code in pci_bind_bus_devices() interprets all-ones /
> > all-zeros in PCI_VENDOR_ID register as "nothing connected", and
> > continues the cycle, but an error returned via return value breaks
> > the cycle.
> >
> > This is wrong for the PCIe controllers which return this error via
> > return value.
> >
> > Handle all errors when reading PCI_VENDOR_ID the same way.
> >
> > This fixes enumeration of PCI devices for example when there is a
> > PCI bridge connected behind another PCI bridge and not all ports are
> > connected to a device, and the controller (for example Aardvark)
> > translates the UR error (Unsupported Request) as -EOPNOTSUPP.
> >
> > Signed-off-by: Pali Rohár <pali@kernel.org>
> > Signed-off-by: Marek Behún <marek.behun@nic.cz>
> > ---
> >  drivers/pci/pci-uclass.c | 9 +--------
> >  1 file changed, 1 insertion(+), 8 deletions(-)
> >  
> 
> Is it possible to update these PCI controller drivers to fill in
> vendor id to all zeros when there is an errror?

It is, but we think it is wrong. If the PCI controller supports
reporting errors, they should be propagated.

What we might want to change in those controller drivers, though, is
error numbers, so that they are the same for each controller. For
example Unsupported Request should be always translated to EOPNOTSUPP.

Marek

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH u-boot] dm: pci: Fix handling of errors when scanning device
  2021-09-08 12:02   ` Marek Behún
@ 2021-09-08 12:57     ` Bin Meng
  2021-09-08 13:14       ` Pali Rohár
  0 siblings, 1 reply; 7+ messages in thread
From: Bin Meng @ 2021-09-08 12:57 UTC (permalink / raw)
  To: Marek Behún
  Cc: Simon Glass, Stefan Roese, U-Boot Mailing List, Pali Rohár

On Wed, Sep 8, 2021 at 8:02 PM Marek Behún <kabel@kernel.org> wrote:
>
> On Wed, 8 Sep 2021 09:06:28 +0800
> Bin Meng <bmeng.cn@gmail.com> wrote:
>
> > On Wed, Sep 8, 2021 at 12:07 AM Marek Behún <marek.behun@nic.cz>
> > wrote:
> > >
> > > From: Pali Rohár <pali@kernel.org>
> > >
> > > Some PCIe controller's read_config() method support indicating error
> > > directly via return value, but some cannot distinguish all-ones (or
> > > all-zeros) read response from an error.
> > >
> > > The current code in pci_bind_bus_devices() interprets all-ones /
> > > all-zeros in PCI_VENDOR_ID register as "nothing connected", and
> > > continues the cycle, but an error returned via return value breaks
> > > the cycle.
> > >
> > > This is wrong for the PCIe controllers which return this error via
> > > return value.
> > >
> > > Handle all errors when reading PCI_VENDOR_ID the same way.
> > >
> > > This fixes enumeration of PCI devices for example when there is a
> > > PCI bridge connected behind another PCI bridge and not all ports are
> > > connected to a device, and the controller (for example Aardvark)
> > > translates the UR error (Unsupported Request) as -EOPNOTSUPP.
> > >
> > > Signed-off-by: Pali Rohár <pali@kernel.org>
> > > Signed-off-by: Marek Behún <marek.behun@nic.cz>
> > > ---
> > >  drivers/pci/pci-uclass.c | 9 +--------
> > >  1 file changed, 1 insertion(+), 8 deletions(-)
> > >
> >
> > Is it possible to update these PCI controller drivers to fill in
> > vendor id to all zeros when there is an errror?
>
> It is, but we think it is wrong. If the PCI controller supports
> reporting errors, they should be propagated.
>
> What we might want to change in those controller drivers, though, is
> error numbers, so that they are the same for each controller. For
> example Unsupported Request should be always translated to EOPNOTSUPP.

So if it is a real error that for some reason the controller cannot
read the configuration space, we should abort instead of continue
looping.

Not sure what is the best approach though.

FWIW,
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH u-boot] dm: pci: Fix handling of errors when scanning device
  2021-09-08 12:57     ` Bin Meng
@ 2021-09-08 13:14       ` Pali Rohár
  0 siblings, 0 replies; 7+ messages in thread
From: Pali Rohár @ 2021-09-08 13:14 UTC (permalink / raw)
  To: Bin Meng; +Cc: Marek Behún, Simon Glass, Stefan Roese, U-Boot Mailing List

On Wednesday 08 September 2021 20:57:06 Bin Meng wrote:
> On Wed, Sep 8, 2021 at 8:02 PM Marek Behún <kabel@kernel.org> wrote:
> >
> > On Wed, 8 Sep 2021 09:06:28 +0800
> > Bin Meng <bmeng.cn@gmail.com> wrote:
> >
> > > On Wed, Sep 8, 2021 at 12:07 AM Marek Behún <marek.behun@nic.cz>
> > > wrote:
> > > >
> > > > From: Pali Rohár <pali@kernel.org>
> > > >
> > > > Some PCIe controller's read_config() method support indicating error
> > > > directly via return value, but some cannot distinguish all-ones (or
> > > > all-zeros) read response from an error.
> > > >
> > > > The current code in pci_bind_bus_devices() interprets all-ones /
> > > > all-zeros in PCI_VENDOR_ID register as "nothing connected", and
> > > > continues the cycle, but an error returned via return value breaks
> > > > the cycle.
> > > >
> > > > This is wrong for the PCIe controllers which return this error via
> > > > return value.
> > > >
> > > > Handle all errors when reading PCI_VENDOR_ID the same way.
> > > >
> > > > This fixes enumeration of PCI devices for example when there is a
> > > > PCI bridge connected behind another PCI bridge and not all ports are
> > > > connected to a device, and the controller (for example Aardvark)
> > > > translates the UR error (Unsupported Request) as -EOPNOTSUPP.
> > > >
> > > > Signed-off-by: Pali Rohár <pali@kernel.org>
> > > > Signed-off-by: Marek Behún <marek.behun@nic.cz>
> > > > ---
> > > >  drivers/pci/pci-uclass.c | 9 +--------
> > > >  1 file changed, 1 insertion(+), 8 deletions(-)
> > > >
> > >
> > > Is it possible to update these PCI controller drivers to fill in
> > > vendor id to all zeros when there is an errror?
> >
> > It is, but we think it is wrong. If the PCI controller supports
> > reporting errors, they should be propagated.
> >
> > What we might want to change in those controller drivers, though, is
> > error numbers, so that they are the same for each controller. For
> > example Unsupported Request should be always translated to EOPNOTSUPP.
> 
> So if it is a real error that for some reason the controller cannot
> read the configuration space, we should abort instead of continue
> looping.

Also 0xFFFF value signals a real error that controllers cannot access
configuration space. Just it do not say what error it is. And also there
is no way to distinguish between "no error happened ans read value is
0xFFFF" and "error happened".

Anyway, I think that for multifunction device you need to continue
looping as on another function number there may be working function.

For non-multifunction devices we can abort touching configuration space.
But looking at the code, it is already implemented in this way - just it
'continue;' the loop.

> Not sure what is the best approach though.

Handle errors (independently on how they are signaled) in the same way.

We just know that card must not have PCI vendor 0xFFFF nor 0x0000 so
when reading this register we know that value 0xFFFF for sure signals
some (unknown) error.

There is a lot of stuff which could be improved, but this is the simple
step to fix usage of Bridge behind Bridge.

> FWIW,
> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH u-boot] dm: pci: Fix handling of errors when scanning device
  2021-09-07 16:07 [PATCH u-boot] dm: pci: Fix handling of errors when scanning device Marek Behún
  2021-09-08  1:06 ` Bin Meng
@ 2021-09-10  7:02 ` Stefan Roese
  2021-09-26 18:40 ` Simon Glass
  2 siblings, 0 replies; 7+ messages in thread
From: Stefan Roese @ 2021-09-10  7:02 UTC (permalink / raw)
  To: Marek Behún, Simon Glass; +Cc: u-boot, Pali Rohár

On 07.09.21 18:07, Marek Behún wrote:
> From: Pali Rohár <pali@kernel.org>
> 
> Some PCIe controller's read_config() method support indicating error
> directly via return value, but some cannot distinguish all-ones (or
> all-zeros) read response from an error.
> 
> The current code in pci_bind_bus_devices() interprets all-ones /
> all-zeros in PCI_VENDOR_ID register as "nothing connected", and
> continues the cycle, but an error returned via return value breaks the
> cycle.
> 
> This is wrong for the PCIe controllers which return this error via
> return value.
> 
> Handle all errors when reading PCI_VENDOR_ID the same way.
> 
> This fixes enumeration of PCI devices for example when there is a PCI
> bridge connected behind another PCI bridge and not all ports are
> connected to a device, and the controller (for example Aardvark)
> translates the UR error (Unsupported Request) as -EOPNOTSUPP.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>
> Signed-off-by: Marek Behún <marek.behun@nic.cz>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   drivers/pci/pci-uclass.c | 9 +--------
>   1 file changed, 1 insertion(+), 8 deletions(-)
> 
> diff --git a/drivers/pci/pci-uclass.c b/drivers/pci/pci-uclass.c
> index ce2eb5da2c..4d0e938fe5 100644
> --- a/drivers/pci/pci-uclass.c
> +++ b/drivers/pci/pci-uclass.c
> @@ -856,10 +856,7 @@ int pci_bind_bus_devices(struct udevice *bus)
>   		/* Check only the first access, we don't expect problems */
>   		ret = pci_bus_read_config(bus, bdf, PCI_VENDOR_ID, &vendor,
>   					  PCI_SIZE_16);
> -		if (ret)
> -			goto error;
> -
> -		if (vendor == 0xffff || vendor == 0x0000)
> +		if (ret || vendor == 0xffff || vendor == 0x0000)
>   			continue;
>   
>   		pci_bus_read_config(bus, bdf, PCI_HEADER_TYPE,
> @@ -940,10 +937,6 @@ int pci_bind_bus_devices(struct udevice *bus)
>   	}
>   
>   	return 0;
> -error:
> -	printf("Cannot read bus configuration: %d\n", ret);
> -
> -	return ret;
>   }
>   
>   static void decode_regions(struct pci_controller *hose, ofnode parent_node,
> 


Viele Grüße,
Stefan

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH u-boot] dm: pci: Fix handling of errors when scanning device
  2021-09-07 16:07 [PATCH u-boot] dm: pci: Fix handling of errors when scanning device Marek Behún
  2021-09-08  1:06 ` Bin Meng
  2021-09-10  7:02 ` Stefan Roese
@ 2021-09-26 18:40 ` Simon Glass
  2 siblings, 0 replies; 7+ messages in thread
From: Simon Glass @ 2021-09-26 18:40 UTC (permalink / raw)
  To: Stefan Roese; +Cc: u-boot, Pali Rohár, Marek Behún, Simon Glass

On 07.09.21 18:07, Marek Behún wrote:
> From: Pali Rohár <pali@kernel.org>
>
> Some PCIe controller's read_config() method support indicating error
> directly via return value, but some cannot distinguish all-ones (or
> all-zeros) read response from an error.
>
> The current code in pci_bind_bus_devices() interprets all-ones /
> all-zeros in PCI_VENDOR_ID register as "nothing connected", and
> continues the cycle, but an error returned via return value breaks the
> cycle.
>
> This is wrong for the PCIe controllers which return this error via
> return value.
>
> Handle all errors when reading PCI_VENDOR_ID the same way.
>
> This fixes enumeration of PCI devices for example when there is a PCI
> bridge connected behind another PCI bridge and not all ports are
> connected to a device, and the controller (for example Aardvark)
> translates the UR error (Unsupported Request) as -EOPNOTSUPP.
>
> Signed-off-by: Pali Rohár <pali@kernel.org>
> Signed-off-by: Marek Behún <marek.behun@nic.cz>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   drivers/pci/pci-uclass.c | 9 +--------
>   1 file changed, 1 insertion(+), 8 deletions(-)
>
Applied to u-boot-dm/next, thanks!

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-09-26 18:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-07 16:07 [PATCH u-boot] dm: pci: Fix handling of errors when scanning device Marek Behún
2021-09-08  1:06 ` Bin Meng
2021-09-08 12:02   ` Marek Behún
2021-09-08 12:57     ` Bin Meng
2021-09-08 13:14       ` Pali Rohár
2021-09-10  7:02 ` Stefan Roese
2021-09-26 18:40 ` Simon Glass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.