public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* forcedeth: option to disable 100Hz timer (try 2)
@ 2008-09-09 19:34 Mikhail Kshevetskiy
  2008-09-10 23:31 ` Andrew Morton
  0 siblings, 1 reply; 10+ messages in thread
From: Mikhail Kshevetskiy @ 2008-09-09 19:34 UTC (permalink / raw)
  To: Linux Kernel Mailing List; +Cc: Ayaz Abdulla, Jeff Garzik

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

On some hardware no TX done interrupts are generated, thus special
100Hz timer interrupt is required to handle this situation properly.
Other device do not require that timer interrupt feature. 

Forcedeth has a DEV_NEED_TIMERIRQ flag to mark the broken devices.
Unfortunately, nobody know the actual list of broken devices, so all
device has this flag on. Other problem, this flag is not user visible,
so the kernel recompilation is required to disable timer interrupts and
test a device.

This patch add a "disable_timerirq" option to disable interrupt 
timer mentioned above. This may be extremely useful for laptop users.

Mikhail Kshevetskiy

[-- Attachment #2: forcedeth.diff --]
[-- Type: text/x-patch, Size: 1547 bytes --]

--- linux-2.6.27-rc5/drivers/net/forcedeth.c.orig	2008-09-02 00:58:07.000000000 +0400
+++ linux-2.6.27-rc5/drivers/net/forcedeth.c	2008-09-02 02:02:34.000000000 +0400
@@ -842,6 +842,16 @@
 static int poll_interval = -1;
 
 /*
+ * On some hardware no TX done interrupts are generated, thus special
+ * timer interrupt is required to handle this situation properly.
+ *
+ * Setting this variable to 1 leads to removing DEV_NEED_TIMERIRQ from
+ * the driver_data flags and thus disable 100Hz timer mentioned above.
+ * This may be extremely usefull for laptop users.
+ */
+static int disable_timerirq = 0;
+
+/*
  * MSI interrupts
  */
 enum {
@@ -5704,7 +5714,7 @@
 			np->msi_flags |= 0x0001;
 	}
 
-	if (id->driver_data & DEV_NEED_TIMERIRQ)
+	if (id->driver_data & DEV_NEED_TIMERIRQ && !disable_timerirq)
 		np->irqmask |= NVREG_IRQ_TIMER;
 	if (id->driver_data & DEV_NEED_LINKTIMER) {
 		dprintk(KERN_INFO "%s: link timer on.\n", pci_name(pci_dev));
@@ -6180,6 +6190,8 @@
 MODULE_PARM_DESC(dma_64bit, "High DMA is enabled by setting to 1 and disabled by setting to 0.");
 module_param(phy_cross, int, 0);
 MODULE_PARM_DESC(phy_cross, "Phy crossover detection for Realtek 8201 phy is enabled by setting to 1 and disabled by setting to 0.");
+module_param(disable_timerirq, int, 0);
+MODULE_PARM_DESC(disable_timerirq, "100Hz timer required for some hardware is disabled by setting to 1 and enabled by setting to 0.");
 
 MODULE_AUTHOR("Manfred Spraul <manfred@colorfullife.com>");
 MODULE_DESCRIPTION("Reverse Engineered nForce ethernet driver");

^ permalink raw reply	[flat|nested] 10+ messages in thread
[parent not found: <baho5-34g-25@gated-at.bofh.it>]
[parent not found: <fa.iCGOiwuSYhYKpu85Kihny1t9YbA@ifi.uio.no>]

end of thread, other threads:[~2008-09-11 20:34 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-09 19:34 forcedeth: option to disable 100Hz timer (try 2) Mikhail Kshevetskiy
2008-09-10 23:31 ` Andrew Morton
     [not found] <baho5-34g-25@gated-at.bofh.it>
2008-09-10 11:16 ` Bodo Eggert
     [not found] <fa.iCGOiwuSYhYKpu85Kihny1t9YbA@ifi.uio.no>
     [not found] ` <fa.4uZtuq0waBlpfBb/4OLq4bM5Pj8@ifi.uio.no>
2008-09-11  0:18   ` Robert Hancock
2008-09-11  0:36     ` Andrew Morton
2008-09-11  4:19       ` Mikhail Kshevetskiy
2008-09-11  4:25       ` Robert Hancock
2008-09-11  5:19         ` Andrew Morton
2008-09-11  5:31           ` Mikhail Kshevetskiy
2008-09-11 19:14           ` Alan Cox

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