All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 2.5.65] ehci-hcd, don't use PCI MWI
@ 2003-03-19 15:21 David Brownell
  2003-03-19 15:34 ` Jeff Garzik
  0 siblings, 1 reply; 5+ messages in thread
From: David Brownell @ 2003-03-19 15:21 UTC (permalink / raw)
  To: Greg KH; +Cc: usb-devel, linux-kernel, Ivan Kokshaysky, Jeff Garzik

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

Hi,

Some users have been sending init logs for Athlon kernels that
include PCI warning messages about the PCI cache line size
getting set incorrectly ... where the kernel thinks that the
right value is 16 bytes.  Since 64 bytes is the right number,
it's dangerous to enable MWI on such systems.

This patch stops trying to use MWI; it's a workaround for the
misbehavior of that PCI cacheline-setting code.  Please apply
to 2.5 and 2.4 trees.

- Dave

[-- Attachment #2: ehci-0319a.patch --]
[-- Type: text/plain, Size: 543 bytes --]

--- 1.45/drivers/usb/host/ehci-hcd.c	Mon Feb 24 03:30:38 2003
+++ edited/drivers/usb/host/ehci-hcd.c	Wed Mar 19 07:05:33 2003
@@ -432,7 +432,11 @@
 	}
 
 	/* help hc dma work well with cachelines */
-	pci_set_mwi (ehci->hcd.pdev);
+	/* NOTE:  disabled until it works reliably ... some x86/Athlon
+	 * kernels are thinking 16 byte cachelines, not 64 byte ones,
+	 * so clearly the MWI prep logic is wrong.
+	 */
+	// pci_set_mwi (ehci->hcd.pdev);
 
 	/* clear interrupt enables, set irq latency */
 	temp = readl (&ehci->regs->command) & 0xff;

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

end of thread, other threads:[~2003-03-19 18:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-19 15:21 [patch 2.5.65] ehci-hcd, don't use PCI MWI David Brownell
2003-03-19 15:34 ` Jeff Garzik
2003-03-19 15:53   ` David Brownell
2003-03-19 16:34     ` Ivan Kokshaysky
2003-03-19 18:12     ` Greg KH

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.