Import 2.3.18pre1
[davej-history.git] / drivers / net / auto_irq.c
blobefeaeb52c79269836d19208f5f1e28b61c8a3dfb
1 /* auto_irq.c: Auto-configure IRQ lines for linux. */
2 /*
3 Written 1994 by Donald Becker.
5 The author may be reached as becker@CESDIS.gsfc.nasa.gov, or C/O
6 Center of Excellence in Space Data and Information Sciences
7 Code 930.5, Goddard Space Flight Center, Greenbelt MD 20771
9 This code is a general-purpose IRQ line detector for devices with
10 jumpered IRQ lines. If you can make the device raise an IRQ (and
11 that IRQ line isn't already being used), these routines will tell
12 you what IRQ line it's using -- perfect for those oh-so-cool boot-time
13 device probes!
15 To use this, first call autoirq_setup(timeout). TIMEOUT is how many
16 'jiffies' (1/100 sec.) to detect other devices that have active IRQ lines,
17 and can usually be zero at boot. 'autoirq_setup()' returns the bit
18 vector of nominally-available IRQ lines (lines may be physically in-use,
19 but not yet registered to a device).
20 Next, set up your device to trigger an interrupt.
21 Finally call autoirq_report(TIMEOUT) to find out which IRQ line was
22 most recently active. The TIMEOUT should usually be zero, but may
23 be set to the number of jiffies to wait for a slow device to raise an IRQ.
25 The idea of using the setup timeout to filter out bogus IRQs came from
26 the serial driver.
30 #ifdef version
31 static const char *version=
32 "auto_irq.c:v1.11 Donald Becker (becker@cesdis.gsfc.nasa.gov)";
33 #endif
35 #include <linux/sched.h>
36 #include <linux/delay.h>
37 #include <asm/bitops.h>
38 #include <asm/io.h>
39 #include <asm/irq.h>
40 #include <linux/netdevice.h>
42 static unsigned long irqs;
44 void autoirq_setup(int waittime)
46 irqs = probe_irq_on();
49 #define BUSY_LOOP_UNTIL(j) while ((long)(jiffies-(j)) < 0) ;
50 int autoirq_report(int waittime)
52 unsigned long delay = jiffies + waittime;
53 BUSY_LOOP_UNTIL(delay)
54 return probe_irq_off(irqs);
58 * Local variables:
59 * compile-command: "gcc -DKERNEL -Wall -O6 -fomit-frame-pointer -I/usr/src/linux/net/tcp -c auto_irq.c"
60 * version-control: t
61 * kept-new-versions: 5
62 * c-indent-level: 4
63 * tab-width: 4
64 * End: