Purpose of IRQ

An Interrupt Request is necessary for things like keyboard presses, mouse movements, printer actions, and more. When the request is made by a device to momentarily stop the processor, the computer is then able to give the device some time to run its own operation. For example, each time you press a key on the keyboard, an interrupt handler tells the processor that it needs to stop what it’s currently doing so that it can handle the keystrokes. Each device communicates the request over a unique data line called a channel. Most of the time you see IRQ referenced, it’s alongside this channel number, also called an IRQ number. For example, IRQ 4 might be used for one device and IRQ 7 for another.

IRQ Errors

Errors related to Interrupt Request are usually only seen when installing new hardware or changing the settings in existing hardware. Here are some IRQ errors you might see: While it’s possible for the same IRQ channel to be used for more than one device (so long as both aren’t actually being used at the same time), it’s normally not the case. An IRQ conflict most likely occurs when two pieces of hardware are attempting to use the same channel for an interrupt request.  Since the Programmable Interrupt Controller (PIC) doesn’t support this, the computer might freeze up or the devices will stop working as expected (or stop working entirely). Back in the early Windows days, IRQ errors were common, and it took a lot of troubleshooting to fix them. This is because it was more common to set IRQ channels manually, like with DIP switches, which made it more likely that more than one device was using the same IRQ line. However, IRQs are handled much better in newer versions of Windows that use plug and play, so you’ll rarely see an IRQ conflict or other IRQ issue.

Viewing and Editing IRQ Settings

The easiest way to view IRQ information in Windows is with Device Manager. Change the View menu option to Resources by type to see the Interrupt request (IRQ) section. You can also use System Information. Execute the msinfo32.exe command from the Run dialog box (WIN+R), and then go to Hardware Resources > IRQs. Linux users can run the cat /proc/interrupts command to view IRQ mappings. You might need to change the IRQ line for a specific device if it’s using the same IRQ as another, though it’s usually unnecessary since system resources are automatically allocated for newer devices. It’s only older Industry Standard Architecture (ISA) devices that might need manual IRQ adjustments.

How to Change IRQ Settings

You can change IRQ settings in the BIOS or within Windows via Device Manager. Here’s how to change IRQ settings with Device Manager:

Common IRQ Channels

Here are what some of the more common IRQ channels are used for:

What Are Non-Maskable Interrupts?

There are also non-maskable interrupts (NMIs), which are interrupt requests that can’t be blocked. A non-maskable interrupt occurs when dealing with system resets or hardware errors. The interrupt request is executed immediately.