public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-06-14 20:30 Gary_Lerhaupt
@ 2004-06-15 13:57 ` David Brownell
  2004-07-13 18:07   ` Olaf Hering
  0 siblings, 1 reply; 15+ messages in thread
From: David Brownell @ 2004-06-15 13:57 UTC (permalink / raw)
  To: Gary_Lerhaupt; +Cc: linux-usb-devel, linux-kernel, Stuart_Hayes

Gary_Lerhaupt@Dell.com wrote:
> Stuart Hayes here at Dell has identified this or/and mix-up in the
> ehci-hcd driver.  Because of this, ehci-hcd is not properly released by
> BIOSes supporting full 2.0 and port behavior can then become erratic.

Good patch, it should be merged.  That handoff code actually
predates general availability of BIOSes handling _any_ EHCI
controllers, and your patch resolves a problem I'd seen on a
newish board but hadn't yet had time to track down (beyond
knowing that broken BIOS handoff was the issue).

Thanks to you and Stuart!

- Dave







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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-06-15 13:57 ` [linux-usb-devel] " David Brownell
@ 2004-07-13 18:07   ` Olaf Hering
  2004-07-13 20:26     ` David Brownell
  0 siblings, 1 reply; 15+ messages in thread
From: Olaf Hering @ 2004-07-13 18:07 UTC (permalink / raw)
  To: David Brownell; +Cc: Gary_Lerhaupt, linux-usb-devel, linux-kernel, Stuart_Hayes

 On Tue, Jun 15, David Brownell wrote:

> Gary_Lerhaupt@Dell.com wrote:
> >Stuart Hayes here at Dell has identified this or/and mix-up in the
> >ehci-hcd driver.  Because of this, ehci-hcd is not properly released by
> >BIOSes supporting full 2.0 and port behavior can then become erratic.
> 
> Good patch, it should be merged.  That handoff code actually
> predates general availability of BIOSes handling _any_ EHCI
> controllers, and your patch resolves a problem I'd seen on a
> newish board but hadn't yet had time to track down (beyond
> knowing that broken BIOS handoff was the issue).

David,

there are 2 reports about breakage by this patch. One is on lkml, and
another one is in my bugzilla inbox. How can we fix that one? I assume
that handoff patch is correct.

  <6>NET: Registered protocol family 17
  <3>ehci_hcd 0000:00:1d.7: BIOS handoff failed (104, 1010001)
  <3>ehci_hcd 0000:00:1d.7: can't reset
  <3>ehci_hcd 0000:00:1d.7: init 0000:00:1d.7 fail, -95
  <4>ehci_hcd: probe of 0000:00:1d.7 failed with error -95

this is a FSC Amilo D7830 notebook, the guy on lkml has a  Asus P4P800 board.

-- 
USB is for mice, FireWire is for men!

sUse lINUX ag, nÜRNBERG

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 18:07   ` Olaf Hering
@ 2004-07-13 20:26     ` David Brownell
  2004-07-13 20:44       ` Will Beers
  0 siblings, 1 reply; 15+ messages in thread
From: David Brownell @ 2004-07-13 20:26 UTC (permalink / raw)
  To: Olaf Hering; +Cc: Gary_Lerhaupt, linux-usb-devel, linux-kernel, Stuart_Hayes

Hi Olaf,

Olaf Hering wrote:
> 
> there are 2 reports about breakage by this patch. One is on lkml, and
> another one is in my bugzilla inbox. How can we fix that one? I assume
> that handoff patch is correct.

The only question I have about it right now is whether
it might not be more correct to use a _byte_ access to
set the "Host OS wants controller" flag.  It looks to me
like it does the right thing, per EHCI 1.0 section 5.1,
though maybe 500 msec is too short a period to wait.
See if 5000 msec helps.

The 0x01010001 flag is pretty clearly trouble, and
says that the BIOS hasn't reacted to the request.
Maybe it's polling at some rate slower than 2x/second
on those machines ... or maybe this is just a bios bug.

In this case, one could just look at byte 106 (104 + 2)
of pci config space later to see if it changed after
the 500 msec passed.

- Dave


>   <6>NET: Registered protocol family 17
>   <3>ehci_hcd 0000:00:1d.7: BIOS handoff failed (104, 1010001)
>   <3>ehci_hcd 0000:00:1d.7: can't reset
>   <3>ehci_hcd 0000:00:1d.7: init 0000:00:1d.7 fail, -95
>   <4>ehci_hcd: probe of 0000:00:1d.7 failed with error -95
> 
> this is a FSC Amilo D7830 notebook, the guy on lkml has a  Asus P4P800 board.
> 



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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 20:26     ` David Brownell
@ 2004-07-13 20:44       ` Will Beers
  2004-07-13 21:11         ` David Brownell
  0 siblings, 1 reply; 15+ messages in thread
From: Will Beers @ 2004-07-13 20:44 UTC (permalink / raw)
  To: David Brownell
  Cc: Olaf Hering, Gary_Lerhaupt, linux-usb-devel, linux-kernel,
	Stuart_Hayes

[-- Attachment #1: Type: text/plain, Size: 398 bytes --]

 > though maybe 500 msec is too short a period to wait.
 > See if 5000 msec helps.

I went all the way up to 20000 msec and it still didn't help.  I'm sure 
it's a bad idea, but removing that whole if-block below it makes it work 
(which is effectively what switching the and/or did).  I don't know enough 
about it to judge whether it's correct, but what exactly is it checking for 
there?

-Will

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3186 bytes --]

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

* RE: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
@ 2004-07-13 20:52 Stuart_Hayes
  2004-07-13 21:56 ` Pete Zaitcev
  0 siblings, 1 reply; 15+ messages in thread
From: Stuart_Hayes @ 2004-07-13 20:52 UTC (permalink / raw)
  To: whbeers, david-b; +Cc: olh, Gary_Lerhaupt, linux-usb-devel, linux-kernel

Will Beers wrote:
>  > though maybe 500 msec is too short a period to wait.
>  > See if 5000 msec helps.
> 
> I went all the way up to 20000 msec and it still didn't help.  I'm
> sure it's a bad idea, but removing that whole if-block below it makes
> it work (which is effectively what switching the and/or did).  I
> don't know enough about it to judge whether it's correct, but what
> exactly is it checking for there?    
> 
> -Will

Without the patch, Linux would just ignore the BIOS handoff--Linux was
writing "0" to the bit that it was supposed to wait for the BIOS to
clear, so it never waited for the BIOS to let go of the controller.

I bet you have a bad BIOS that won't hand off, but I would try the other
thing David suggested--change the write to a byte write.  It seems
unlikely, but, since Linux is writing a "1" to the "BIOS owns the
controller" bit right now, you might be hitting something like this, if
the system is breaking up the write into multiple smaller writes:

the "OS wants the controller" bit is getting written to 1 (first part of
the Linux write, which the system broke into pieces)
the system BIOS (SMI handler) sees that bit set to 1, and clears the
"BIOS owns" bit
the "BIOS owns" bit is getting written back to a 1 (the second part of
the Linux write)
Linux waits in vain for BIOS to clear the "BIOS owns" bit\

Again, seems unlikely, but worth a try if you're recompiling and
testing.



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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 20:44       ` Will Beers
@ 2004-07-13 21:11         ` David Brownell
  2004-07-13 21:24           ` Will Beers
  2004-07-13 21:31           ` Will Beers
  0 siblings, 2 replies; 15+ messages in thread
From: David Brownell @ 2004-07-13 21:11 UTC (permalink / raw)
  To: Will Beers
  Cc: Olaf Hering, Gary_Lerhaupt, linux-usb-devel, linux-kernel,
	Stuart_Hayes

Will Beers wrote:
>  > though maybe 500 msec is too short a period to wait.
>  > See if 5000 msec helps.
> 
> I went all the way up to 20000 msec and it still didn't help.  I'm sure 
> it's a bad idea, but removing that whole if-block below it makes it work 
> (which is effectively what switching the and/or did).  I don't know 
> enough about it to judge whether it's correct, but what exactly is it 
> checking for there?

There are two flags in adjacent bytes of pci config space.
State transitions are shown in the spec [1] (simple state
diagrams), but basically your hardware started out in a
"BIOS owned" mode, and we want Linux to run it instead.
So we change (0,1) to (1,1), then BIOS should get an IRQ
before changing it to (1,0) and ignoring EHCI ... it's not.

Sounds to me like your BIOS may be broken.  But if you're
up for it, you could try using byte access to write that one
flag byte; I could also believe some hardware won't issue the
SMI interrupt without that.  There are also a lot of bits in
the next word, which might let you stomp on on the BIOS in
constructive useful ways.

- Dave

[1] http://www.usb.org/developers/docs/ at the very
     bottom of the page, for that part you won't need
     to know anything else about USB.


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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 21:11         ` David Brownell
@ 2004-07-13 21:24           ` Will Beers
  2004-07-13 21:35             ` David Brownell
  2004-07-13 21:31           ` Will Beers
  1 sibling, 1 reply; 15+ messages in thread
From: Will Beers @ 2004-07-13 21:24 UTC (permalink / raw)
  To: David Brownell
  Cc: Olaf Hering, Gary_Lerhaupt, linux-usb-devel, linux-kernel,
	Stuart_Hayes

[-- Attachment #1: Type: text/plain, Size: 858 bytes --]

 > Sounds to me like your BIOS may be broken.  But if you're
 > up for it, you could try using byte access to write that one

Changing the pci_read_config to a byte access fixes it, thanks!

(included a diff)

-Will


diff -Nru a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
--- a/drivers/usb/host/ehci-hcd.c       2004-07-13 01:09:00.000000000 -0400
+++ b/drivers/usb/host/ehci-hcd.c       2004-07-13 17:06:00.000000000 -0400
@@ -300,7 +300,7 @@
                 do {
                         msleep(10);
                         msec -= 10;
-                       pci_read_config_dword(pdev, where, &cap);
+                       pci_read_config_byte(pdev, where, &cap);
                 } while ((cap & (1 << 16)) && msec);
                 if (cap & (1 << 16)) {
                         ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n",

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3186 bytes --]

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 21:11         ` David Brownell
  2004-07-13 21:24           ` Will Beers
@ 2004-07-13 21:31           ` Will Beers
  1 sibling, 0 replies; 15+ messages in thread
From: Will Beers @ 2004-07-13 21:31 UTC (permalink / raw)
  To: David Brownell
  Cc: Olaf Hering, Gary_Lerhaupt, linux-usb-devel, linux-kernel,
	Stuart_Hayes

[-- Attachment #1: Type: text/plain, Size: 104 bytes --]

Clarification - changing the write to use byte access didn't fix it, but 
changing the read did.

-Will

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3186 bytes --]

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 21:24           ` Will Beers
@ 2004-07-13 21:35             ` David Brownell
  2004-07-13 21:43               ` Will Beers
  0 siblings, 1 reply; 15+ messages in thread
From: David Brownell @ 2004-07-13 21:35 UTC (permalink / raw)
  To: Will Beers
  Cc: Olaf Hering, Gary_Lerhaupt, linux-usb-devel, linux-kernel,
	Stuart_Hayes

[-- Attachment #1: Type: text/plain, Size: 474 bytes --]

Will Beers wrote:
>  > Sounds to me like your BIOS may be broken.  But if you're
>  > up for it, you could try using byte access to write that one
> 
> Changing the pci_read_config to a byte access fixes it, thanks!

You're reading byte 0 not byte 2 of that field ... I meant
more like the attached patch to _write_ the flag (untested).


> -                       pci_read_config_dword(pdev, where, &cap);
> +                       pci_read_config_byte(pdev, where, &cap);

[-- Attachment #2: Diff --]
[-- Type: text/plain, Size: 407 bytes --]

--- 1.89/drivers/usb/host/ehci-hcd.c	Wed Jun 30 19:10:04 2004
+++ edited/drivers/usb/host/ehci-hcd.c	Tue Jul 13 14:33:41 2004
@@ -293,8 +293,7 @@
 		struct pci_dev *pdev = to_pci_dev(ehci->hcd.self.controller);
 
 		/* request handoff to OS */
-		cap |= 1 << 24;
-		pci_write_config_dword(pdev, where, cap);
+		pci_write_config_byte(pdev, where + 3, 1);
 
 		/* and wait a while for it to happen */
 		do {

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 21:35             ` David Brownell
@ 2004-07-13 21:43               ` Will Beers
  0 siblings, 0 replies; 15+ messages in thread
From: Will Beers @ 2004-07-13 21:43 UTC (permalink / raw)
  To: David Brownell
  Cc: Olaf Hering, Gary_Lerhaupt, linux-usb-devel, linux-kernel,
	Stuart_Hayes

[-- Attachment #1: Type: text/plain, Size: 267 bytes --]

 > more like the attached patch to _write_ the flag (untested).

Alright, sorry for the misunderstanding - that patch doesn't fix it either, 
so it must just be a broken bios.  But regardless, I'll go read those docs 
and hopefully it'll make more sense then.

-Will

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3186 bytes --]

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 20:52 [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd Stuart_Hayes
@ 2004-07-13 21:56 ` Pete Zaitcev
  2004-07-13 23:04   ` David Brownell
  0 siblings, 1 reply; 15+ messages in thread
From: Pete Zaitcev @ 2004-07-13 21:56 UTC (permalink / raw)
  To: Stuart_Hayes
  Cc: whbeers, david-b, olh, Gary_Lerhaupt, linux-usb-devel,
	linux-kernel, zaitcev

On Tue, 13 Jul 2004 15:52:43 -0500
<Stuart_Hayes@Dell.com> wrote:

> the "OS wants the controller" bit is getting written to 1 (first part of
> the Linux write, which the system broke into pieces)

If something breaks word writes into pieces, all hell breaks lose.
I don't believe it can happen.

I hit regressions when we implemented the proper handoff as requested
by Stuart @Dell, so I think for the moment the right thing would be this:

--- linux-2.4.21-15.18.EL/drivers/usb/host/ehci-hcd.c	2004-07-01
08:07:56.000000000 -0700
+++ linux-2.4.21-15.18-usb/drivers/usb/host/ehci-hcd.c	2004-07-08
15:15:05.944863675 -0700
@@ -302,7 +302,8 @@
 		if (cap & (1 << 16)) {
 			ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n",
 				where, cap);
-			return 1;
+			pci_write_config_dword (ehci->hcd.pdev, where, 0);
+			return 0;
 		} 
 		ehci_dbg (ehci, "BIOS handoff succeeded\n");
 	}

Essentially, here I insist on doing the right thing with cap|=(1<<24),
which fixes Dell boxes which implement proper handoff, but then if we
time out as on Thinkpads, write zero as the old code did (probably
pointless, but just to be safe) and continue.

David, any comment?

-- Pete

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 21:56 ` Pete Zaitcev
@ 2004-07-13 23:04   ` David Brownell
  2004-07-15  9:37     ` Olaf Hering
  0 siblings, 1 reply; 15+ messages in thread
From: David Brownell @ 2004-07-13 23:04 UTC (permalink / raw)
  To: Pete Zaitcev
  Cc: Stuart_Hayes, whbeers, olh, Gary_Lerhaupt, linux-usb-devel,
	linux-kernel

Pete Zaitcev wrote:

> I hit regressions when we implemented the proper handoff as requested
> by Stuart @Dell, so I think for the moment the right thing would be this:
> 
> --- linux-2.4.21-15.18.EL/drivers/usb/host/ehci-hcd.c	2004-07-01
> 08:07:56.000000000 -0700
> +++ linux-2.4.21-15.18-usb/drivers/usb/host/ehci-hcd.c	2004-07-08
> 15:15:05.944863675 -0700
> @@ -302,7 +302,8 @@
>  		if (cap & (1 << 16)) {
>  			ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n",
>  				where, cap);
> -			return 1;
> +			pci_write_config_dword (ehci->hcd.pdev, where, 0);
> +			return 0;
>  		} 
>  		ehci_dbg (ehci, "BIOS handoff succeeded\n");
>  	}
> 
> Essentially, here I insist on doing the right thing with cap|=(1<<24),
> which fixes Dell boxes which implement proper handoff, but then if we
> time out as on Thinkpads, write zero as the old code did (probably
> pointless, but just to be safe) and continue.

I'd rather not change the config space again ... that's clearly wrong.
Or is there some policy about what sorts of BIOS bugs we should assume?

Instead, how about:  (a) longer timeout, 5 seconds to match OHCI's
absurdly long default there; (b) change that "handoff failed" message
to add "continuing anyway"; and (c) return 0 as you do, which I'm
expecting is the key part of that patch.

That'll evidently work for Will, as well as correctly functioning hardware
with EHCI-aware BIOS (the Dell boxes and the AMI BIOS box I tested) also
the classic EHCI-unaware BIOS setups.

- Dave



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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-13 23:04   ` David Brownell
@ 2004-07-15  9:37     ` Olaf Hering
  2004-08-05 13:39       ` Olaf Hering
  0 siblings, 1 reply; 15+ messages in thread
From: Olaf Hering @ 2004-07-15  9:37 UTC (permalink / raw)
  To: David Brownell
  Cc: Pete Zaitcev, Stuart_Hayes, whbeers, Gary_Lerhaupt,
	linux-usb-devel, linux-kernel

 On Tue, Jul 13, David Brownell wrote:

> Instead, how about:  (a) longer timeout, 5 seconds to match OHCI's
> absurdly long default there; (b) change that "handoff failed" message
> to add "continuing anyway"; and (c) return 0 as you do, which I'm
> expecting is the key part of that patch.

This patch works for me:

diff -purN linux-2.6.8-rc1-bk3.bios-handoff/drivers/usb/host/ehci-hcd.c linux-2.6.8-rc1-bk3/drivers/usb/host/ehci-hcd.c
--- linux-2.6.8-rc1-bk3.bios-handoff/drivers/usb/host/ehci-hcd.c	2004-07-15 11:24:14.000000000 +0200
+++ linux-2.6.8-rc1-bk3/drivers/usb/host/ehci-hcd.c	2004-07-15 11:32:28.463930957 +0200
@@ -303,9 +303,11 @@ static int bios_handoff (struct ehci_hcd
 			pci_read_config_dword(pdev, where, &cap);
 		} while ((cap & (1 << 16)) && msec);
 		if (cap & (1 << 16)) {
-			ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n",
+			ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n"
+				" Devices connected to this controller will not work correctly.\n"
+				" Complain to your BIOS vendor.\n", /* Really! */
 				where, cap);
-			return 1;
+			return 0;
 		} 
 		ehci_dbg (ehci, "BIOS handoff succeeded\n");
 	}

-- 
USB is for mice, FireWire is for men!

sUse lINUX ag, nÜRNBERG

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-07-15  9:37     ` Olaf Hering
@ 2004-08-05 13:39       ` Olaf Hering
  2004-08-05 15:49         ` David Brownell
  0 siblings, 1 reply; 15+ messages in thread
From: Olaf Hering @ 2004-08-05 13:39 UTC (permalink / raw)
  To: David Brownell
  Cc: Pete Zaitcev, Stuart_Hayes, whbeers, Gary_Lerhaupt,
	linux-usb-devel, linux-kernel

 On Thu, Jul 15, Olaf Hering wrote:

>  On Tue, Jul 13, David Brownell wrote:
> 
> > Instead, how about:  (a) longer timeout, 5 seconds to match OHCI's
> > absurdly long default there; (b) change that "handoff failed" message
> > to add "continuing anyway"; and (c) return 0 as you do, which I'm
> > expecting is the key part of that patch.

David, what is the status with this bios problem?
Can a patch like this patch go in?
What could we lose if the error is ignored?

> diff -purN linux-2.6.8-rc1-bk3.bios-handoff/drivers/usb/host/ehci-hcd.c linux-2.6.8-rc1-bk3/drivers/usb/host/ehci-hcd.c
> --- linux-2.6.8-rc1-bk3.bios-handoff/drivers/usb/host/ehci-hcd.c	2004-07-15 11:24:14.000000000 +0200
> +++ linux-2.6.8-rc1-bk3/drivers/usb/host/ehci-hcd.c	2004-07-15 11:32:28.463930957 +0200
> @@ -303,9 +303,11 @@ static int bios_handoff (struct ehci_hcd
>  			pci_read_config_dword(pdev, where, &cap);
>  		} while ((cap & (1 << 16)) && msec);
>  		if (cap & (1 << 16)) {
> -			ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n",
> +			ehci_err (ehci, "BIOS handoff failed (%d, %04x)\n"
> +				" Devices connected to this controller will not work correctly.\n"
> +				" Complain to your BIOS vendor.\n", /* Really! */
>  				where, cap);
> -			return 1;
> +			return 0;
>  		} 
>  		ehci_dbg (ehci, "BIOS handoff succeeded\n");
>  	}

-- 
USB is for mice, FireWire is for men!

sUse lINUX ag, nÜRNBERG

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

* Re: [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd
  2004-08-05 13:39       ` Olaf Hering
@ 2004-08-05 15:49         ` David Brownell
  0 siblings, 0 replies; 15+ messages in thread
From: David Brownell @ 2004-08-05 15:49 UTC (permalink / raw)
  To: Olaf Hering
  Cc: Pete Zaitcev, Stuart_Hayes, whbeers, Gary_Lerhaupt,
	linux-usb-devel, linux-kernel

On Thursday 05 August 2004 06:39, Olaf Hering wrote:
>  On Thu, Jul 15, Olaf Hering wrote:
> 
> >  On Tue, Jul 13, David Brownell wrote:
> > 
> > > Instead, how about:  (a) longer timeout, 5 seconds to match OHCI's
> > > absurdly long default there; (b) change that "handoff failed" message
> > > to add "continuing anyway"; and (c) return 0 as you do, which I'm
> > > expecting is the key part of that patch.
> 
> David, what is the status with this bios problem?
> Can a patch like this patch go in?
> What could we lose if the error is ignored?

I submitted a very similar patch yesterday, not yet merged but
closer to what I described:

http://www.mail-archive.com/linux-usb-devel%40lists.sourceforge.net/msg26725.html

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

end of thread, other threads:[~2004-08-05 15:59 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-13 20:52 [linux-usb-devel] [PATCH] proper bios handoff in ehci-hcd Stuart_Hayes
2004-07-13 21:56 ` Pete Zaitcev
2004-07-13 23:04   ` David Brownell
2004-07-15  9:37     ` Olaf Hering
2004-08-05 13:39       ` Olaf Hering
2004-08-05 15:49         ` David Brownell
  -- strict thread matches above, loose matches on Subject: below --
2004-06-14 20:30 Gary_Lerhaupt
2004-06-15 13:57 ` [linux-usb-devel] " David Brownell
2004-07-13 18:07   ` Olaf Hering
2004-07-13 20:26     ` David Brownell
2004-07-13 20:44       ` Will Beers
2004-07-13 21:11         ` David Brownell
2004-07-13 21:24           ` Will Beers
2004-07-13 21:35             ` David Brownell
2004-07-13 21:43               ` Will Beers
2004-07-13 21:31           ` Will Beers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox