Without drivers the computer would not be able to send and receive data correctly to

Skip to main content

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

What is a driver?

  • Article
  • 11/04/2022
  • 4 minutes to read

In this article

It's challenging to give a single precise definition for the term driver. In the most fundamental sense, a driver is a software component that lets the operating system and a device communicate with each other.

For example, suppose an application needs to read some data from a device. The application calls a function implemented by the operating system, and the operating system calls a function implemented by the driver. The driver, which was written by the same company that designed and manufactured the device, knows how to communicate with the device hardware to get the data. After the driver gets the data from the device, it returns the data to the operating system, which returns it to the application.

Without drivers the computer would not be able to send and receive data correctly to

Expanding the definition

Our explanation so far is oversimplified in several ways:

  • Not all drivers have to be written by the company that designed the device.

    In many cases, a device is designed according to a published hardware standard. Therefore, the driver can be written by Microsoft and the device designer doesn't have to provide a driver.

  • Not all drivers communicate directly with a device.

    For a given I/O request (like reading data from a device), there are often several drivers layered in a driver stack that participate in the request. The conventional way to visualize the stack is with the first participant at the top and the last participant at the bottom, as shown in this diagram. Some of the drivers in the stack might participate by transforming the request from one format to another. These drivers don't communicate directly with the device; they just manipulate the request and pass the request along to drivers that are lower in the stack.

    Without drivers the computer would not be able to send and receive data correctly to

    Function driver: The one driver in the stack that communicates directly with the device is called the function driver.

    Filter driver: The drivers that perform auxiliary processing are called filter drivers.

    For more information on stacks, see Driver stacks.

  • Some filter drivers observe and record information about I/O requests but don't actively participate in them. For example, certain filter drivers act as verifiers to make sure the other drivers in the stack are handling the I/O request correctly.

We could expand our definition of driver by saying that a driver is any software component that observes or participates in the communication between the operating system and a device.

Software drivers

Our expanded definition is reasonably accurate but is still incomplete because some drivers aren't associated with any hardware device at all.

For example, suppose you need to write a tool that has access to core operating system data structures. These structures can only be accessed by code running in kernel mode. You can do that by splitting the tool into two components. The first component runs in user mode and presents the user interface. The second component runs in kernel mode and has access to the core operating system data. The component that runs in user mode is called an application, and the component that runs in kernel mode is called a software driver. A software driver isn't associated with a hardware device.

This diagram illustrates a user-mode application communicating with a kernel-mode software driver.

Without drivers the computer would not be able to send and receive data correctly to

Software drivers always run in kernel mode. The main reason for writing a software driver is to gain access to protected data that is available only in kernel mode. However device drivers don't always need access to kernel-mode data and resources. So some device drivers run in user mode.

For more information about processor modes, see User Mode and Kernel Mode.

Bus drivers

There's a category of driver we haven't mentioned yet, the bus driver. To understand bus drivers, you need to understand device nodes and the device tree.

For information about device trees, device nodes, and bus drivers, see Device Nodes and Device Stacks.

More on function drivers

Our explanation so far oversimplifies the definition of function driver. We said that the function driver for a device is the one driver in the stack that communicates directly with the device. This is true for a device that connects directly to the Peripheral Component Interconnect (PCI) bus. The function driver for a PCI device obtains addresses that are mapped to port and memory resources on the device. The function driver communicates directly with the device by writing to those addresses.

However in many cases, a device doesn't connect directly to the PCI bus. Instead the device connects to a host bus adapter that is connected to the PCI bus. For example, a USB toaster connects to a host bus adapter (called a USB host controller), which is connected to the PCI bus. The USB toaster has a function driver, and the USB host controller also has a function driver. The function driver for the toaster communicates indirectly with the toaster by sending a request to the function driver for the USB host controller. The function driver for the USB host controller then communicates directly with the USB host controller hardware, which communicates with the toaster.

Without drivers the computer would not be able to send and receive data correctly to

Feedback

Submit and view feedback for

Which Cannot work without a device driver?

More commonly known as a driver, a device driver or hardware driver is a group of files that enable one or more hardware devices to communicate with the computer's operating system. Without drivers, the computer could not send and receive data correctly to hardware devices, such as a printer.

Why does a computer need drivers?

A driver, or device driver, is a set of files that tells a piece of hardware how to function by communicating with a computer's operating system. All pieces of hardware require a driver, from your internal computer components, such as your graphics card, to your external peripherals, like a printer.

What are the drivers on a computer?

A computer driver is a set of files that help your computer's operating system interface with certain pieces of hardware, like a graphics card. Think of it as a team of translators passing instructions between a factory's management and its machinery operators.

What is the function of driver software?

In the most fundamental sense, a driver is a software component that lets the operating system and a device communicate with each other. For example, suppose an application needs to read some data from a device.