Chapter 9
Interrupt Handling
Contents:
Although some devices can be controlled using nothing but their I/O
regions, most real-world devices are a bit more complicated than that.
Devices have to deal with the external world, which often includes
things such as spinning disks, moving tape, wires to distant places,
and so on. Much has to be done in a time frame that is different, and
slower, than that of the processor. Since it is almost always
undesirable to have the processor wait on external events, there must
be a way for a device to let the processor know when something has
happened.
That way, of course, is interrupts. An interruptis simply a signal that the hardware can send when it wants the
processor's attention. Linux handles interrupts in much the same way
that it handles signals in user space. For the most part, a driver
need only register a handler for its device's interrupts, and handle
them properly when they arrive. Of course, underneath that simple
picture there is some complexity; in particular, interrupt handlers
are somewhat limited in the actions they can perform as a result of
how they are run.
It is difficult to demonstrate the use of interrupts without a real
hardware device to generate them. Thus, the sample code used in this
chapter works with the parallel port. We'll be working with the
short module from the previous chapter;
with some small additions it can generate and handle interrupts from
the parallel port. The module's name,
short, actually means short
int (it is C, isn't it?), to remind us that it handles
interrupts.
The way that Linux handles interrupts has changed quite a bit over the
years, due to changes in design and in the hardware it works with.
The PC's view of interrupts in the early days was quite simple; there
were just 16 interrupt lines and one processor to deal with them.
Modern hardware can have many more interrupts, and can also be
equipped with fancy advanced programmable interrupt controllers
(APICs), which can distribute interrupts across multiple processors in
an intelligent (and programmable) way.
Happily, Linux has been able to deal with all of these changes with
relatively few incompatibilities at the driver level. Thus, the
interface described in this chapter works, with few differences,
across many kernel versions. Sometimes things do work out nicely.
Increasingly, however, even code like the previous example is
discouraged wherever possible. In a multiprocessor system, critical
code cannot be protected just by disabling interrupts; some sort of
locking mechanism must be used. Functions such as
spin_lock_irqsave (covered in "Using Spinlocks", later in this chapter) provide locking and
interrupt control together; these functions are the only really safe
way to control concurrency in the presence of interrupts.
Thus, explicit calls to cli and related functions
are slowly disappearing from much of the kernel. There are occasions
where you need them in a device driver, but they are rare. Before
calling cli, think about whether you
really need to disable all interrupts on the
system.
Like most devices, the parallel port doesn't actually generate
interrupts before it's instructed to do so; the parallel standard
states that setting bit 4 of port 2 (0x37a,
0x27a, or whatever) enables interrupt reporting. A
simple outb call to set the bit is performed by
short at module initialization.
Pin 9 is the most significant bit of the parallel data byte. If you
write binary data to /dev/short0, you'll generate
several interrupts. Writing ASCII text to the port won't generate
interrupts, though, because the most significant bit won't be set.
If you want to actually "see'' interrupts being generated, writing to
the hardware device isn't enough; a software handler must be
configured in the system. If the Linux kernel hasn't been told to
expect your interrupt, it will simply acknowledge and ignore it.
Interrupt lines are a precious and often limited resource,
particularly when there are only 15 or 16 of them. The kernel keeps a
registry of interrupt lines, similar to the registry of I/O ports. A
module is expected to request an interrupt channel (or IRQ, for
interrupt request) before using it, and to release it when it's done.
In many situations, modules are also expected to be able to share
interrupt lines with other drivers, as we will see. The following
functions, declared in ,
implement the interface:
int request_irq(unsigned int irq,
void (*handler)(int, void *, struct pt_regs *),
unsigned long flags,
const char *dev_name,
void *dev_id);
void free_irq(unsigned int irq, void *dev_id);
-
-
The pointer to the handling function being installed. We'll discuss
the arguments to this function later in this chapter.
-
- const char *dev_name
-
- void *dev_id
-
This pointer is used for shared interrupt lines. It is a unique
identifier that is used when the interrupt line is freed and that may
also be used by the driver to point to its own private data area (to
identify which device is interrupting). When no sharing is in force,
dev_id can be set to NULL, but
it a good idea anyway to use this item to point to the device
structure. We'll see a practical use for dev_id in
"Implementing a Handler", later in this chapter.
-
When set, this indicates a "fast'' interrupt handler. Fast handlers
are executed with interrupts disabled (the topic is covered in deeper
detail later in this chapter, in "Fast and Slow Handlers").
-
This bit signals that the interrupt can be shared between devices.
The concept of sharing is outlined in "Interrupt Sharing", later
in this chapter.
-
This bit indicates that the generated interrupts can contribute to the
entropy pool used by /dev/random and
/dev/urandom. These devices return truly random
numbers when read and are designed to help application software choose
secure keys for encryption. Such random numbers are extracted from an
entropy pool that is contributed by various random events. If your
device generates interrupts at truly random times, you should set this
flag. If, on the other hand, your interrupts will be predictable (for
example, vertical blanking of a frame grabber), the flag is not worth
setting -- it wouldn't contribute to system entropy anyway.
Devices that could be influenced by attackers should not set this
flag; for example, network drivers can be subjected to predictable
packet timing from outside and should not contribute to the entropy
pool. See the comments in drivers/char/random.cfor more information.
The interrupt handler can be installed either at driver initialization
or when the device is first opened. Although installing
the interrupt handler from within the module's initialization function
might sound like a good idea, it actually isn't. Because the number
of interrupt lines is limited, you don't want to waste them. You can
easily end up with more devices in your computer than there are
interrupts. If a module requests an IRQ at initialization, it
prevents any other driver from using the interrupt, even if the device
holding it is never used. Requesting the interrupt at device open, on
the other hand, allows some sharing of resources.
It is possible, for example, to run a frame grabber on the same
interrupt as a modem, as long as you don't use the two devices at the
same time. It is quite common for users to load the module for a
special device at system boot, even if the device is rarely used. A
data acquisition gadget might use the same interrupt as the second
serial port. While it's not too hard to avoid connecting to your
Internet service provider (ISP) during data acquisition, being forced
to unload a module in order to use the modem is really unpleasant.
The correct place to call request_irq is when the
device is first opened, before the hardware is
instructed to generate interrupts. The place to call
free_irq is the last time the device is closed,
after the hardware is told not to interrupt the
processor any more. The disadvantage of this technique is that you
need to keep a per-device open count. Using the module count isn't
enough if you control two or more devices from the same module.
This discussion notwithstanding, shortrequests its interrupt line at load time. This was done so that you
can run the test programs without having to run an extra process to
keep the device open. short, therefore,
requests the interrupt from within its initialization function
(short_init) instead of doing it in
short_open, as a real device driver would.
The interrupt requested by the following code is
short_irq. The actual assignment of the variable
(i.e., determining which IRQ to use) is shown later, since it is not
relevant to the current discussion. short_base is
the base I/O address of the parallel interface being used; register 2
of the interface is written to enable interrupt reporting.
Whenever a hardware interrupt reaches the processor, an internal
counter is incremented, providing a way to check whether the device is
working as expected. Reported interrupts are shown in
/proc/interrupts. The following snapshot was
taken after several days of uptime on a two-processor Pentium system:
The first column is the IRQ number. You can see from the IRQs that are
missing that the file shows only interrupts corresponding to installed
handlers. For example, the first serial port (which uses interrupt
number 4) is not shown, indicating that the modem isn't being used.
In fact, even if the modem had been used earlier but wasn't in use at
the time of the snapshot, it would not show up in the file; the serial
ports are well behaved and release their interrupt handlers when the
device is closed.
The /proc/interrupts display shows how many
interrupts have been delivered to each CPU on the system. As you can
see from the output, the Linux kernel tries to divide interrupt
traffic evenly across the processors, with some success. The final
columns give information on the programmable interrupt controller that
handles the interrupt (and which a driver writer need not worry
about), and the name(s) of the device(s) that have registered handlers
for the interrupt (as specified in the dev_name
argument to request_irq).
The first number is the total of all interrupts, while each of the
others represents a single IRQ line, starting with interrupt 0. This
snapshot shows that interrupt number 4 has been used 4907 times, even
though no handler is currently installed. If the
driver you're testing acquires and releases the interrupt at each open
and close cycle, you may find /proc/stat more
useful than /proc/interrupts.
Another difference between the two files is that
interrupts is not architecture dependent, whereas
stat is: the number of fields depends on the
hardware underlying the kernel. The number of available interrupts
varies from as few as 15 on the SPARC to as many as 256 on the IA-64
and a few other systems. It's interesting to note that the number of
interrupts defined on the x86 is currently 224, not 16 as you may
expect; this, as explained in
include/asm-i386/irq.h, depends on Linux using
the architectural limit instead of an implementation-specific limit
(like the 16 interrupt sources of the old-fashioned PC interrupt
controller).
One of the most compelling problems for a driver at initialization
time can be how to determine which IRQ line is going to be used by the
device. The driver needs the information in order to correctly install
the handler. Even though a programmer could require the user to
specify the interrupt number at load time, this is a bad practice
because most of the time the user doesn't know the number, either
because he didn't configure the jumpers or because the device is
jumperless. Autodetection of the interrupt number is a basic
requirement for driver usability.
Sometimes autodetection depends on the knowledge that some devices
feature a default behavior that rarely, if ever, changes. In this
case, the driver might assume that the default values apply. This is
exactly how short behaves by default with
the parallel port. The implementation is straightforward, as shown by
short itself:
Some devices are more advanced in design and simply "announce'' which
interrupt they're going to use. In this case, the driver retrieves
the interrupt number by reading a status byte from one of the device's
I/O ports or PCI configuration space. When the target device is one
that has the ability to tell the driver which interrupt it is going to
use, autodetecting the IRQ number just means probing the device, with
no additional work required to probe the interrupt.
It's interesting to note here that modern devices supply their
interrupt configuration. The PCI standard solves the problem by
requiring peripheral devices to declare what interrupt line(s) they
are going to use. The PCI standard is discussed in Chapter 15, "Overview of Peripheral Buses".
Unfortunately, not every device is programmer friendly, and
autodetection might require some probing. The technique is quite
simple: the driver tells the device to generate interrupts and watches
what happens. If everything goes well, only one interrupt line is
activated.
-
This function returns a bit mask of unassigned interrupts. The driver
must preserve the returned bit mask and pass it to
probe_irq_off later. After this call, the driver
should arrange for its device to generate at least one interrupt.
-
After the device has requested an interrupt, the driver calls this
function, passing as argument the bit mask previously returned by
probe_irq_on. probe_irq_offreturns the number of the interrupt that was issued after
"probe_on.'' If no interrupts occurred, 0 is returned (thus, IRQ 0
can't be probed for, but no custom device can use it on any of the
supported architectures anyway). If more than one interrupt occurred
(ambiguous detection), probe_irq_off returns a
negative value.
The programmer should be careful to enable interrupts on the device
after the call to
probe_irq_on and to disable them
before calling
probe_irq_off, Additionally, you must remember to
service the pending interrupt in your device after
probe_irq_off.
The short module demonstrates how to use
such probing. If you load the module with probe=1,
the following code is executed to detect your interrupt line, provided
pins 9 and 10 of the parallel connector are bound together:
-
-
These functions are used primarily in the network driver code, for
historical reasons. They are currently implemented with
probe_irq_on and
probe_irq_off; there is not usually any reason to
use the autoirq_ functions over the
probe_irq_ functions.
Probing might be a lengthy task. While this is not true for
short, probing a frame grabber, for
example, requires a delay of at least 20 ms (which is ages for the
processor), and other devices might take even longer. Therefore, it's
best to probe for the interrupt line only once, at module
initialization, independently of whether you install the handler at
device open (as you should) or within the initialization function
(which is not recommended).
It's interesting to note that on some platforms (PowerPC, M68k, most
MIPS implementations, and both SPARC versions), probing is unnecessary
and therefore the previous functions are just empty placeholders,
sometimes called "useless ISA nonsense.'' On other platforms, probing
is only implemented for ISA devices. Anyway, most architectures define
the functions (even if empty) to ease porting existing device drivers.
The mechanism is the same as the one described earlier: enable all
unused interrupts, then wait and see what happens. We can, however,
exploit our knowledge of the device. Often a device can be configured
to use one IRQ number from a set of three or four; probing just those
IRQs enables us to detect the right one, without having to test for
all possible IRQs.
The short implementation assumes that 3, 5,
7, and 9 are the only possible IRQ values. These numbers are actually
the values that some parallel devices allow you to select.
void short_probing(int irq, void *dev_id, struct pt_regs *regs)
{
if (short_irq == 0) short_irq = irq; /* found */
if (short_irq != irq) short_irq = -irq; /* ambiguous */
}
In modern kernels most of the differences between fast and slow
interrupts have disappeared. There remains only one: fast interrupts
(those that were requested with the SA_INTERRUPT
flag) are executed with all other interrupts disabled on the current
processor. Note that other processors can still handle interrupts,
though you will never see two processors handling the same IRQ at the
same time.
To summarize the slow and fast executing environments:
The first thing do_IRQ does is to acknowledge the
interrupt so that the interrupt controller can go on to other things.
It then obtains a spinlock for the given IRQ number, thus preventing
any other CPU from handling this IRQ. It clears a couple of status
bits (including one called IRQ_WAITING that we'll
look at shortly), and then looks up the handler(s) for this particular
IRQ. If there is no handler, there's nothing to do; the spinlock is
released, any pending tasklets and bottom halves are run, and
do_IRQ returns.
Usually, however, if a device is interrupting there is a handler
registered as well. The function
handle_IRQ_event is called to actually invoke the
handlers. It starts by testing a global interrupt lock bit; if that
bit is set, the processor will spin until it is cleared. Calling
cli sets this bit, thus blocking handling of
interrupts; the normal interrupt handling mechanism does
not set this bit, and thus allows further
processing of interrupts. If the handler is of the slow variety,
interrupts are reenabled in the hardware and the handler is invoked.
Then it's just a matter of cleaning up, running tasklets and bottom
halves, and getting back to regular work. The "regular work'' may
well have changed as a result of an interrupt (the handler could
wake_up a process, for example), so the last
thing that happens on return from an interrupt is a possible
rescheduling of the processor.
Probing for IRQs is done by setting the IRQ_WAITING
status bit for each IRQ that currently lacks a handler. When the
interrupt happens, do_IRQ clears that bit and
then returns, since no handler is registered.
probe_irq_off, when called by a driver, need only
search for the IRQ that no longer has IRQ_WAITING
set.
The only peculiarity is that a handler runs at interrupt time and
therefore suffers some restrictions on what it can do. These
restrictions are the same as those we saw with task queues. A handler
can't transfer data to or from user space, because it doesn't execute
in the context of a process. Handlers also cannot do anything that
would sleep, such as calling sleep_on, allocating
memory with anything other than GFP_ATOMIC, or
locking a semaphore. Finally, handlers cannot call
schedule.
The role of an interrupt handler is to give feedback to its device
about interrupt reception and to read or write data according to the
meaning of the interrupt being serviced. The first step usually
consists of clearing a bit on the interface board; most hardware
devices won't generate other interrupts until their
"interrupt-pending'' bit has been cleared. Some devices don't require
this step because they don't have an "interrupt-pending'' bit; such
devices are a minority, although the parallel port is one of them. For
that reason, short does not have to clear
such a bit.
A typical task for an interrupt handler is awakening processes
sleeping on the device if the interrupt signals the event they're
waiting for, such as the arrival of new data.
To stick with the frame grabber example, a process could acquire a
sequence of images by continuously reading the device; the
read call blocks before reading each frame, while
the interrupt handler awakens the process as soon as each new frame
arrives. This assumes that the grabber interrupts the processor to
signal successful arrival of each new frame.
The programmer should be careful to write a routine that executes in a
minimum of time, independent of its being a fast or slow handler. If a
long computation needs to be performed, the best approach is to use a
tasklet or task queue to schedule computation at a safer time (see
"Task Queues" in Chapter 6, "Flow of Time").
Our sample code in short makes use of the
interrupt to call do_gettimeofday and print the
current time to a page-sized circular buffer. It then awakens any
reading process because there is now data available to be read.
void short_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{
struct timeval tv;
int written;
do_gettimeofday(&tv);
/* Write a 16-byte record. Assume PAGE_SIZE is a multiple of 16 */
written = sprintf((char *)short_head,"%08u.%06u\n",
(int)(tv.tv_sec % 100000000), (int)(tv.tv_usec));
short_incr_bp(&short_head, written);
wake_up_interruptible(&short_queue); /* wake any reading process */
}
This function has been carefully written to wrap a pointer into the
circular buffer without ever exposing an incorrect value. By
assigning only the final value and placing a barrier to keep the
compiler from optimizing things, it is possible to manipulate the
circular buffer pointers safely without locks.
The device file used to read the buffer being filled at interrupt time
is /dev/shortint. This device special file,
together with /dev/shortprint, wasn't introduced
in Chapter 8, "Hardware Management", because its use is specific to interrupt
handling. The internals of /dev/shortint are
specifically tailored for interrupt generation and reporting. Writing
to the device generates one interrupt every other byte; reading the
device gives the time when each interrupt was reported.
If you connect together pins 9 and 10 of the parallel connector, you
can generate interrupts by raising the high bit of the parallel data
byte. This can be accomplished by writing binary data to
/dev/short0 or by writing anything to
/dev/shortint.[37]
The following code implements read and
write for /dev/shortint.
ssize_t short_i_read (struct file *filp, char *buf, size_t count,
loff_t *f_pos)
{
int count0;
while (short_head == short_tail) {
interruptible_sleep_on(&short_queue);
if (signal_pending (current)) /* a signal arrived */
return -ERESTARTSYS; /* tell the fs layer to handle it */
/* else, loop */
}
/* count0 is the number of readable data bytes */
count0 = short_head - short_tail;
if (count0 < 0) /* wrapped */
count0 = short_buffer + PAGE_SIZE - short_tail;
if (count0 < count) count = count0;
if (copy_to_user(buf, (char *)short_tail, count))
return -EFAULT;
short_incr_bp (&short_tail, count);
return count;
}
ssize_t short_i_write (struct file *filp, const char *buf, size_t count,
loff_t *f_pos)
{
int written = 0, odd = *f_pos & 1;
unsigned long address = short_base; /* output to the parallel
data latch */
if (use_mem) {
while (written < count)
writeb(0xff * ((++written + odd) & 1), address);
} else {
while (written < count)
outb(0xff * ((++written + odd) & 1), address);
}
*f_pos += count;
return written;
}
The other device special file, /dev/shortprint,
uses the parallel port to drive a printer, and you can use it if you
want to avoid soldering a wire between pin 9 and 10 of a D-25
connector. The write implementation of
shortprint uses a circular buffer to store
data to be printed, while the read implementation
is the one just shown (so you can read the time your printer takes to
eat each character).
Though short ignores them, three arguments
are passed to an interrupt handler: irq,
dev_id, and regs. Let's look at
the role of each.
The interrupt number (int irq) is useful as
information you may print in your log messages, if any. Although it
had a role in pre-2.0 kernels, when no dev_id
existed, dev_id serves that role much better.
The second argument, void *dev_id, is a sort of
ClientData; a void * argument is passed to
request_irq, and this same pointer is then passed
back as an argument to the handler when the interrupt happens.
You'll usually pass a pointer to your device data structure in
dev_id, so a driver that manages several instances
of the same device doesn't need any extra code in the interrupt
handler to find out which device is in charge of the current interrupt
event. Typical use of the argument in an interrupt handler is as
follows:
static void sample_interrupt(int irq, void *dev_id, struct pt_regs
*regs)
{
struct sample_dev *dev = dev_id;
/* now `dev' points to the right hardware item */
/* .... */
}
static void sample_open(struct inode *inode, struct file *filp)
{
struct sample_dev *dev = hwinfo + MINOR(inode->i_rdev);
request_irq(dev->irq, sample_interrupt,
0 /* flags */, "sample", dev /* dev_id */);
/*....*/
return 0;
}
The last argument, struct pt_regs *regs, is rarely
used. It holds a snapshot of the processor's context before the
processor entered interrupt code. The registers can be used for
monitoring and debugging; they are not normally needed for regular
device driver tasks.
disable_irq will not only disable the given
interrupt, but will also wait for a currently executing interrupt
handler, if any, to complete. disable_irq_nosync,
on the other hand, returns immediately. Thus, using the latter will
be a little faster, but may leave your driver open to race conditions.
But why disable an interrupt? Sticking to the parallel port, let's
look at the plip network interface. A
plip device uses the bare-bones parallel
port to transfer data. Since only five bits can be read from the
parallel connector, they are interpreted as four data bits and a
clock/handshake signal. When the first four bits of a packet are
transmitted by the initiator (the interface sending the packet), the
clock line is raised, causing the receiving interface to interrupt the
processor. The plip handler is then
invoked to deal with newly arrived data.
After the device has been alerted, the data transfer proceeds, using
the handshake line to clock new data to the receiving interface (this
might not be the best implementation, but it is necessary for
compatibility with other packet drivers using the parallel
port). Performance would be unbearable if the receiving interface had
to handle two interrupts for every byte received. The driver
therefore disables the interrupt during the reception of the packet;
instead, a poll-and-delay loop is used to bring in the data.
One of the main problems with interrupt handling is how to perform
longish tasks within a handler. Often a substantial amount of work
must be done in response to a device interrupt, but interrupt handlers
need to finish up quickly and not keep interrupts blocked for long.
These two needs (work and speed) conflict with each other, leaving the
driver writer in a bit of a bind.
Linux (along with many other systems) resolves this problem by
splitting the interrupt handler into two halves. The so-called top
half is the routine that actually responds to the interrupt -- the
one you register with request_irq. The bottom
half is a routine that is scheduled by the top half to be executed
later, at a safer time. The use of the term bottom half in the 2.4
kernel can be a bit confusing, in that it can mean either the second
half of an interrupt handler or one of the mechanisms used to
implement this second half, or both. When we refer to a
bottom half we are speaking generally about a
bottom half; the old Linux bottom-half implementation is referred to
explicitly with the acronym BH.
The big difference between the top-half handler and the bottom half is
that all interrupts are enabled during execution of the bottom
half -- that's why it runs at a safer time. In the typical
scenario, the top half saves device data to a device-specific buffer,
schedules its bottom half, and exits: this is very fast. The bottom
half then performs whatever other work is required, such as awakening
processes, starting up another I/O operation, and so on. This setup
permits the top half to service a new interrupt while the bottom half
is still working.
The Linux kernel has two different mechanisms that may be used to
implement bottom-half processing. Tasklets were introduced late in
the 2.3 development series; they are now the preferred way to do
bottom-half processing, but they are not portable to earlier kernel
versions. The older bottom-half (BH) implementation exists in even
very old kernels, though it is implemented with tasklets in 2.4.
We'll look at both mechanisms here. In general, device drivers
writing new code should choose tasklets for their bottom-half
processing if possible, though portability considerations may
determine that the BH mechanism needs to be used instead.
The following discussion works, once again, with the
short driver. When loaded with a module
option, short can be told to do interrupt
processing in a top/bottom-half mode, with either a tasklet or
bottom-half handler. In this case, the top half executes quickly; it
simply remembers the current time and schedules the bottom half
processing. The bottom half is then charged with encoding this time
and awakening any user processes that may be waiting for data.
Tasklets are also guaranteed to run on the same CPU as the function
that first schedules them. An interrupt handler can thus be secure
that a tasklet will not begin executing before the handler has
completed. However, another interrupt can certainly be delivered
while the tasklet is running, so locking between the tasklet and the
interrupt handler may still be required.
name is the name to be given to the tasklet,
function is the function that is called to execute
the tasklet (it takes one unsigned long argument
and returns void), and data is
an unsigned long value to be passed to the tasklet function.
void short_tl_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{
do_gettimeofday((struct timeval *) tv_head); /* cast to stop
'volatile' warning */
short_incr_tv(&tv_head);
tasklet_schedule(&short_tasklet);
short_bh_count++; /* record that an interrupt arrived */
}
The actual tasklet routine, short_do_tasklet,
will be executed shortly at the system's convenience. As mentioned
earlier, this routine performs the bulk of the work of handling the
interrupt; it looks like this:
void short_do_tasklet (unsigned long unused)
{
int savecount = short_bh_count, written;
short_bh_count = 0; /* we have already been removed from queue */
/*
* The bottom half reads the tv array, filled by the top half,
* and prints it to the circular text buffer, which is then consumed
* by reading processes
*/
/* First write the number of interrupts that occurred before
this bh */
written = sprintf((char *)short_head,"bh after %6i\n",savecount);
short_incr_bp(&short_head, written);
/*
* Then, write the time values. Write exactly 16 bytes at a time,
* so it aligns with PAGE_SIZE
*/
do {
written = sprintf((char *)short_head,"%08u.%06u\n",
(int)(tv_tail->tv_sec % 100000000),
(int)(tv_tail->tv_usec));
short_incr_bp(&short_head, written);
short_incr_tv(&tv_tail);
} while (tv_tail != tv_head);
wake_up_interruptible(&short_queue); /* wake any reading process */
}
Among other things, this tasklet makes a note of how many interrupts
have arrived since it was last called. A device like
short can generate a great many interrupts
in a brief period, so it is not uncommon for several to arrive before
the bottom half is executed. Drivers must always be prepared for this
possibility, and must be able to determine how much work there is to
perform from the information left by the top half.
Whenever some code wants to schedule a bottom half for running, it
calls mark_bh. In the older BH implemention,
mark_bh would set a bit in a bit mask, allowing
the corresponding bottom-half handler to be found quickly at runtime.
In modern kernels, it just calls tasklet_scheduleto schedule the bottom-half routine for execution.
Here, nr is the "number'' of the BH to
activate. The number is a symbolic constant defined in
that identifies the
bottom half to run. The function that corresponds to each bottom half
is provided by the driver that owns the bottom half. For example,
when mark_bh(SCSI_BH) is called, the function being
scheduled for execution is
scsi_bottom_half_handler, which is part of the
SCSI driver.
-
This is the most important bottom half for driver writers. The
function being scheduled runs (with
run_task_queue) the
tq_immediate task queue. A driver (like a custom
module) that doesn't own a bottom half can use the immediate queue as
if it were its own BH. After registering a task in the queue, the
driver must mark the BH in order to have its code actually executed;
how to do this was introduced in "The immediate queue", in Chapter 6, "Flow of Time".
-
-
This BH is marked by do_timer, the function in
charge of the clock tick. The function that this BH executes is the
one that drives the kernel timers. There is no way to use this
facility for a driver short of using add_timer.
Once a BH has been marked, it is executed when
bh_action (kernel/softirq.c)
is invoked, which happens when tasklets are run. This happens
whenever a process exits from a system call or when an interrupt
handler exits. Tasklets are always executed as part of the timer
interrupt, so a driver can usually expect that a bottom-half routine
will be executed at most 10 ms after it has been scheduled.
Drivers with exotic configurations -- multiple bottom halves or
other setups that can't easily be handled with a plain
tq_immediate -- can be satisfied by using a
custom task queue. The interrupt handler queues the tasks in its own
queue, and when it's ready to run them, a simple queue-consuming
function is inserted into the immediate queue. See "Running Your Own Task Queues" in Chapter 6, "Flow of Time" for details.
void short_bh_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{
/* cast to stop 'volatile' warning */
do_gettimeofday((struct timeval *) tv_head);
short_incr_tv(&tv_head);
/* Queue the bh. Don't care about multiple enqueueing */
queue_task(&short_task, &tq_immediate);
mark_bh(IMMEDIATE_BH);
short_bh_count++; /* record that an interrupt arrived */
}
morgana% echo 1122334455 > /dev/shortint ; cat /dev/shortint
bh after 5
50588804.876653
50588804.876693
50588804.876720
50588804.876747
50588804.876774
The actual timings that you will see will vary, of course, depending
on your particular system.
The notion of an IRQ conflict is almost synonymous with the PC
architecture. In general, IRQ lines on the PC have not been able to
serve more than one device, and there have never been enough of them.
As a result, frustrated users have often spent much time with their
computer case open, trying to find a way to make all of their hardware
play well together.
But, in fact, there is nothing in the design of the hardware itself
that says that interrupt lines cannot be shared. The problems are on
the software side. With the arrival of the PCI bus, the writers of
system software have had to work a little harder, since all PCI
interrupts can explicitly be shared. So Linux supports shared
interrupts -- and on all buses where it makes any sense, not just
the PCI. Thus, suitably aware drivers for ISA devices can also share
an IRQ line.
With a level-triggered interrupt line, the peripheral device asserts
the IRQ signal until software clears the pending interrupt (usually by
writing to a device register); therefore, if several devices pull the
line active, the CPU will signal an interrupt as soon as the IRQ is
enabled until all drivers have serviced their devices. This behavior
is safe with regard to sharing but may lead to lockup if a driver
fails to clear its interrupt source.
When using edge-triggered interrupts, on the other hand, interrupts
may be lost: if one device pulls the line active for too long a time,
when another device pulls the line active no edge will be generated,
and the processor will ignore the second request. A shared handler may
just not see the interrupt, and if its hardware doesn't deassert the
IRQ line no other interrupt will be notified for either shared device.
For this reason, even if interrupt sharing is supported under ISA, it
may not function properly; while some devices pull the IRQ line active
for a single clock cycle, other devices are not so well behaved and
may cause great pains to the driver writer who tries to share the
IRQ. We won't go any deeper into this issue; for the rest of this
section we assume that either the host bus supports sharing or that
you know what you are doing.
To develop a driver that can manage a shared interrupt line, some
details need to be considered. As discussed later, some of the
features described in this chapter are not available for devices using
interrupt sharing. Whenever possible, it's better to support sharing
because it presents fewer problems for the final user. In some cases
(e.g., when working with the PCI bus), interrupt sharing is mandatory.
The kernel keeps a list of shared handlers associated with the
interrupt, like a driver's signature, and dev_id
differentiates between them. If two drivers were to register
NULL as their signature on the same interrupt,
things might get mixed up at unload time, causing the kernel to oops
when an interrupt arrived. For this reason, modern kernels will
complain loudly if passed a NULL
dev_id when registering shared interrupts.
Whenever two or more drivers are sharing an interrupt line and the
hardware interrupts the processor on that line, the kernel invokes
every handler registered for that interrupt, passing each its own
dev_id. Therefore, a shared handler must be able to
recognize its own interrupts, and should quickly exit when its own
device has not interrupted.
If you need to probe for your device before requesting the IRQ line,
the kernel can't help you. No probing function is available for shared
handlers. The standard probing mechanism works if the line being used
is free, but if the line is already held by another driver with
sharing capabilities, the probe will fail, even if your driver would
have worked perfectly.
The only available technique for probing shared lines, then, is the
do-it-yourself way. The driver should request every possible IRQ line
as a shared handler and then see where interrupts are reported. The
difference between that and do-it-yourself probing is that the
probing handler must check with the device to see that the interrupt
actually occurred, because it could have been called in response to
another device interrupting on a shared line.
Releasing the handler is performed in the normal way, using
release_irq. Here the dev_id
argument is used to select the correct handler to release from the
list of shared handlers for the interrupt. That's why the
dev_id pointer must be unique.
A driver using a shared handler needs to be careful about one more
thing: it can't play with enable_irq or
disable_irq. If it does, things might go haywire
for other devices sharing the line. In general, the programmer must
remember that his driver doesn't own the IRQ, and its behavior should
be more "social'' than is necessary if one owns the interrupt line.
As suggested earlier, when the kernel receives an interrupt, all the
registered handlers are invoked. A shared handler must be able to
distinguish between interrupts that it needs to handle and interrupts
generated by other devices.
void short_sh_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{
int value, written;
struct timeval tv;
/* If it wasn't short, return immediately */
value = inb(short_base);
if (!(value & 0x80)) return;
/* clear the interrupting bit */
outb(value & 0x7F, short_base);
/* the rest is unchanged */
do_gettimeofday(&tv);
written = sprintf((char *)short_head,"%08u.%06u\n",
(int)(tv.tv_sec % 100000000), (int)(tv.tv_usec));
short_incr_bp(&short_head, written);
wake_up_interruptible(&short_queue); /* wake any reading process */
}
The handler resets the bit by zeroing the high bit of the parallel
interface's data port -- short assumes
that pins 9 and 10 are connected together. If one of the other
devices sharing the IRQ with shortgenerates an interrupt, short sees that its
own line is still inactive and does nothing.
A full-featured driver probably splits the work into top and bottom
halves, of course, but that's easy to add and does not have any impact
on the code that implements sharing. A real driver would also likely
use the dev_id argument to determine which, of
possibly many, devices might be interrupting.
A good buffering mechanism leads to interrupt-driven
I/O, in which an input buffer is filled at interrupt time
and is emptied by processes that read the device; an output buffer is
filled by processes that write to the device and is emptied at interrupt
time. An example of interrupt-driven output is the implementation of
/dev/shortint.
The timing relationships between a read or
write and the actual arrival of data were
introduced in "Blocking and Nonblocking Operations", in Chapter 5,
"Enhanced Char Driver Operations". But interrupt-driven I/O introduces
the problem of
synchronizing concurrent access to shared data items and all the
issues related to race conditions. The next section covers this
related topic in some depth.
We have already seen race conditions come up a number of times in the
previous chapters. Whereas race conditions can happen at any time on
SMP systems, uniprocessor systems, to this point, have had to worry
about them rather less.[38] Interrupts, however, can bring with them a
whole new set of race conditions, even on uniprocessor systems. Since
an interrupt can happen at any time, it can cause the interrupt
handler to be executed in the middle of an arbitrary piece of driver
code. Thus, any device driver that is working with
interrupts -- and that is most of them -- must be very concerned
with race conditions. For this reason, we look more closely at race
conditions and their prevention in this chapter.
Dealing with race conditions is one of the trickiest aspects of
programming, because the related bugs are subtle and very difficult to
reproduce, and it's hard to tell when there is a race condition
between interrupt code and the driver methods. The programmer must
take great care to avoid corruption of data or metadata.
Different techniques can be employed to prevent data corruption, and
we will introduce the most common ones. We won't show complete code
because the best code for each situation depends on the operating mode
of the device being driven, and on the programmer's taste. All of the
drivers in this book, however, protect themselves against race
conditions, so examples can be found in the sample code.
The most common ways of protecting data from concurrent access are as
follows:
Using a circular buffer is an effective way of handling
concurrent-access problems; the best way to deal with concurrent
access is to perform no concurrent access whatsoever.
The circular buffer uses an algorithm called "producer and
consumer'': one player pushes data in and the other pulls data
out. Concurrent access is avoided if there is exactly one producer and
exactly one consumer. There are two examples of producer and consumer
in short. In one case, the reading process
is waiting to consume data that is produced at interrupt time; in the
other, the bottom half consumes data produced by the top half.
Two pointers are used to address a circular buffer:
head and tail.
head is the point at which data is being written
and is updated only by the producer of the data. Data is being read
from tail, which is updated only by the consumer.
As mentioned earlier, if data is written at interrupt time, you must
be careful when accessing head multiple times. You
should either declare it as volatile or use some
sort of locking.
The circular buffer runs smoothly, except when it fills up. If that
happens, things become hairy, and you can choose among different
possible solutions. The shortimplementation just loses data; there's no check for overflow, and if
head goes beyond tail, a whole
buffer of data is lost. Some alternative implementations are to drop
the last item; to overwrite the buffer tail, as
printk does (see "How Messages Get Logged"
in Chapter 4, "Debugging Techniques"); to hold up the producer, as
scullpipe does; or to allocate a temporary
extra buffer to back up the main buffer. The best solution depends on
the importance of your data and other situation-specific questions, so
we won't cover it here.
Although the circular buffer appears to solve the problem of
concurrent access, there is still the possibility of a race condition
when the read function goes to sleep. This code
shows where the problem appears in short:
When executing this statement, it is possible that new data will
arrive after the while
condition is evaluated as true and before the
process goes to sleep. Information carried in by the interrupt won't
be read by the process; the process goes to sleep even though
head != tail, and it isn't awakened until the next
data item arrives.
We didn't implement correct locking for
short because the source of
short_read is included in "A Sample Driver" in Chapter 8, "Hardware Management", and at that point
this discussion was not worth introducing. Also, the data involved is
not worth the effort.
Although the data that short collects is
not vital, and the likelihood of getting an interrupt in the time
lapse between two successive instructions is often negligible,
sometimes you just can't take the risk of going to sleep when data is
pending. This problem is general enough to deserve special treatment
and is delayed to "Going to Sleep Without Races" later in this
chapter, where we'll discuss it in detail.
It's interesting to note that only a producer-and-consumer situation
can be addressed with a circular buffer. A programmer must often deal
with more complex data structures to solve the concurrent-access
problem. The producer/consumer situation is actually the simplest
class of these problems; other structures, such as linked lists,
simply don't lend themselves to a circular buffer implementation.
We have seen spinlocks before, for example, in the
scull driver. The discussion thus far has
looked only at a few uses of spinlocks; in this section we cover them
in rather more detail.
-
-
This version also acquires the lock; in addition, it disables
interrupts on the local processor and stores the current interrupt
state in flags. Note that all of the spinlock
primitives are defined as macros, and that the
flags argument is passed directly, not as a
pointer.
-
This function acts like spin_lock_irqsave, except
that it does not save the current interrupt state. This version is
slightly more efficient than spin_lock_irqsave,
but it should only be used in situations in which you know that
interrupts will not have already been disabled.
-
Obtains the given lock and prevents the execution of bottom halves.
-
-
spin_is_locked queries the state of a spinlock
without changing it. It returns nonzero if the lock is currently busy.
To attempt to acquire a lock without waiting, use
spin_trylock, which returns nonzero if the
operation failed (the lock was busy).
spin_unlock_wait waits until the lock becomes
free, but does not take possession of it.
It is worth considering an example here. Assume that your driver is
running in its read method, and it obtains a lock
with spin_lock. While the
read method is holding the lock, your device
interrupts, and your interrupt handler is executed on the same
processor. If it attempts to use the same lock, it will go into a
busy-wait loop, since your read method already
holds the lock. But, since the interrupt routine has preempted that
method, the lock will never be released and the processor deadlocks,
which is probably not what you wanted.
Regular spinlocks work well for most situations encountered by device
driver writers. In some cases, however, there is a particular pattern
of access to critical data that is worth treating specially. If you
have a situation in which numerous threads (processes, interrupt
handlers, bottom-half routines) need to access critical data in a
read-only mode, you may be worried about the overhead of using
spinlocks. Numerous readers cannot interfere with each other; only a
writer can create problems. In such situations, it is far more
efficient to allow all readers to access the data simultaneously.
-
-
-
-
It's quite common to have single-bit lock variables or to update
device status flags at interrupt time -- while a process may be
accessing them. The kernel offers a set of functions that modify or
test single bits atomically. Because the whole operation happens in a
single step, no interrupt (or other processor) can interfere.
-
-
-
-
This function is the only bit operation that doesn't need to be
atomic; it simply returns the current value of the bit.
-
-
-
Return the current value of v.
-
-
-
-
The one race condition that has been omitted so far in this discussion
is the problem of going to sleep. Generally stated, things can happen
in the time between when your driver decides to sleep and when the
sleep_on call is actually performed.
Occasionally, the condition you are sleeping for may come about before
you actually go to sleep, leading to a longer sleep than expected. It
is a problem far more general than interrupt-driven I/O, and an
efficient solution requires a little knowledge of the internals of
sleep_on.
In this case, the value of short_head could change
between the test in the while statement and the
call to interruptible_sleep_on. In that case,
the driver will sleep even though new data is available; this
condition leads to delays in the best case, and a lockup of the device
in the worst.
wait_queue_t wait;
init_waitqueue_entry(&wait, current);
add_wait_queue(&short_queue, &wait);
while (1) {
set_current_state(TASK_INTERRUPTIBLE);
if (short_head != short_tail) /* whatever test your driver needs */
break;
schedule();
}
set_current_state(TASK_RUNNING);
remove_wait_queue(&short_queue, &wait);
The process is not yet asleep, however. It gets closer to that state
with the call to set_current_state, which sets
the process's state to TASK_INTERRUPTIBLE. The
rest of the system now thinks that the process is asleep, and the
scheduler will not try to run it. This is an important step in the
"going to sleep'' process, but things still are not done.
What happens now is that the code tests for the condition for which it
is waiting, namely, that there is data in the buffer. If no data is
present, a call to schedule is made, causing some
other process to run and truly putting the current process to sleep.
Once the process is woken up, it will test for the condition again,
and possibly exit from the loop.
Beyond the loop, there is just a bit of cleaning up to do. The
current state is set to TASK_RUNNING to reflect the
fact that we are no longer asleep; this is necessary because if we
exited the loop without ever sleeping, we may still be in
TASK_INTERRUPTIBLE. Then
remove_wait_queue is used to take the process off
the wait queue.
So why is this code free of race conditions? When new data comes in,
the interrupt handler will call wake_up on
short_queue, which has the effect of setting the
state of every sleeping process on the queue to
TASK_RUNNING. If the wake_upcall happens after the buffer has been tested, the state of the task
will be changed and schedule will cause the
current process to continue running -- after a short delay, if not
immediately.
This sort of "test while half asleep'' pattern is so common in the kernel
source that a pair of macros was added during 2.1 development
to make life easier:
-
Both of these macros implement the code just discussed, testing the
condition (which, since this is a macro, is
evaluated at each iteration of the loop) in the middle of the "going
to sleep'' process.
As we stated at the beginning of this chapter, interrupt handling in
Linux presents relatively few compatibility problems with older
kernels. There are a few, however, which we discuss here. Most of
the changes occurred between versions 2.0 and 2.2 of the kernel;
interrupt handling has been remarkably stable since then.
The set_current_state function did not exist in
Linux 2.2 (but sysdep.h implements it). To
manipulate the current process state, it was necessary to manipulate
the task structure directly. For example:
current->state = TASK_INTERRUPTIBLE;
In Linux 2.0, there were many more differences between fast and slow
handlers. Slow handlers were slower even before they began to
execute, because of extra setup costs in the kernel. Fast handlers saved
time not only by keeping interrupts disabled, but also by not checking
for bottom halves before returning from the interrupt. Thus, the
delay before the execution of a bottom half marked in an interrupt
handler could be longer in the 2.0 kernel. Finally, when an IRQ line
was being shared in the 2.0 kernel, all of the registered handlers had
to be either fast or slow; the two modes could not be mixed.
Most of the SMP issues did not exist in 2.0, of course. Interrupt
handlers could only execute on one CPU at a time, so there was no
distinction between disabling interrupts locally or globally.
These symbols related to interrupt management were introduced in this
chapter.
- #include
- int request_irq(unsigned int irq, void (*handler)(), unsigned long flags, const char *dev_name, void *dev_id);
- void free_irq(unsigned int irq, void *dev_id);
-
-
-
-
These functions are used by the driver when it has to probe to
determine what interrupt line is being used by a device. The result
of probe_irq_on must be passed back to
probe_irq_off after the interrupt has been
generated. The return value of probe_irq_off is
the detected interrupt number.
-
-
Utilities for dealing with tasklets.
DECLARE_TASKLET declares a tasklet with the given
name; when run, the given
function will be called with
arg. Use tasklet_schedule to
schedule a tasklet for execution.
-
This function marks a bottom half for execution.
-
-
-
These functions atomically access bit values; they can be used for
flags or lock variables. Using these functions prevents any race
condition related to concurrent access to the bit.
-
-
The most commonly used values for the state of the current task. They
are used as hints for schedule.
- set_current_state(int state);
-
Sets the current task state to the given value.
-
-