digplanet beta 1: Athena
Share digplanet:

Agriculture

Applied sciences

Arts

Belief

Business

Chronology

Culture

Education

Environment

Geography

Health

History

Humanities

Language

Law

Life

Mathematics

Nature

People

Politics

Science

Society

Technology

In computing, a device driver is a computer program that operates or controls a particular type of device that is attached to a computer.[1] A driver typically communicates with the device through the computer bus or communications subsystem to which the hardware connects. When a calling program invokes a routine in the driver, the driver issues commands to the device. Once the device sends data back to the driver, the driver may invoke routines in the original calling program. Drivers are hardware-dependent and operating-system-specific. They usually provide the interrupt handling required for any necessary asynchronous time-dependent hardware interface.[2]

Contents

Purpose[edit]

A device driver simplifies programming by acting as translator between a hardware device and the applications or operating systems that use it.[1] Programmers can write the higher-level application code independently of whatever specific hardware the end-user is using. Physical layers communicate with specific device instances. For example, a serial port needs to handle standard communication protocols such as XON/XOFF that are common for all serial port hardware. This would be managed by a serial port logical layer. However, the physical layer needs to communicate with a particular serial port chip. 16550 UART hardware differs from PL-011. The physical layer addresses these chip-specific variations. Conventionally, OS requests go to the logical layer first. In turn, the logical layer calls upon the physical layer to implement OS requests in terms understandable by the hardware. Conversely, when a hardware device needs to respond to the OS, it uses the physical layer to speak to the logical layer.

In Linux environments, programmers can build device drivers either as parts of the kernel or separately as loadable modules. Makedev includes a list of the devices in Linux: ttyS (terminal), lp (parallel port), hd (disk), loop (loopback disk device), sound (these include mixer, sequencer, dsp, and audio)...[3]

The Microsoft Windows .sys files and Linux .ko modules contain loadable device drivers. The advantage of loadable device drivers is that they can be loaded only when necessary and then unloaded, thus saving kernel memory.

Development[edit]

Writing a device driver requires an in-depth understanding of how the hardware and the software of a given platform function. Drivers operate in a privileged environment and can cause disaster if they get things wrong. In contrast, most user-level software on modern operating systems can be stopped without greatly affecting the rest of the system. Even drivers executing in user mode can crash a system if the device is erroneously programmed. These factors make it more difficult and dangerous to diagnose problems.[4]

The task of writing drivers thus usually falls to software engineers or computer engineers who work for hardware-development companies. This is because they have better information than most outsiders about the design of their hardware. Moreover, it was traditionally considered in the hardware manufacturer's interest to guarantee that their clients can use their hardware in an optimum way. Typically, the logical device driver (LDD) is written by the operating system vendor, while the physical device driver (PDD) is implemented by the device vendor. But in recent years non-vendors have written numerous device drivers, mainly for use with free and open source operating systems. In such cases, it is important that the hardware manufacturer provides information on how the device communicates. Although this information can instead be learned by reverse engineering, this is much more difficult with hardware than it is with software.

Microsoft has attempted to reduce system instability due to poorly written device drivers by creating a new framework for driver development, called Windows Driver Foundation (WDF). This includes User-Mode Driver Framework (UMDF) that encourages development of certain types of drivers—primarily those that implement a message-based protocol for communicating with their devices—as user-mode drivers. If such drivers malfunction, they do not cause system instability. The Kernel-Mode Driver Framework (KMDF) model continues to allow development of kernel-mode device drivers, but attempts to provide standard implementations of functions that are known to cause problems, including cancellation of I/O operations, power management, and plug and play device support.

Apple has an open-source framework for developing drivers on Mac OS X called the I/O Kit.

Kernel mode vs. user mode[edit]

Device drivers, particularly on modern Microsoft Windows platforms, can run in kernel-mode (Ring 0 on x86 CPUs) or in user-mode (Ring 3 on x86 CPUs).[5] The primary benefit of running a driver in user mode is improved stability, since a poorly written user mode device driver cannot crash the system by overwriting kernel memory.[6] On the other hand, user/kernel-mode transitions usually impose a considerable performance overhead, thereby prohibiting user-mode drivers for low latency and high throughput requirements.

Kernel space can be accessed by user module only through the use of system calls. End user programs like the UNIX shell or other GUI-based applications are part of the user space. These applications interact with hardware through kernel supported functions.

Applications[edit]

Because of the diversity of modern hardware and operating systems, drivers operate in many different environments.[7] Drivers may interface with:

Common levels of abstraction for device drivers include:

  • For hardware:
    • Interfacing directly
    • Writing to or reading from a device control register
    • Using some higher-level interface (e.g. Video BIOS)
    • Using another lower-level device driver (e.g. file system drivers using disk drivers)
    • Simulating work with hardware, while doing something entirely different[citation needed]
  • For software:
    • Allowing the operating system direct access to hardware resources
    • Implementing only primitives
    • Implementing an interface for non-driver software (e.g., TWAIN)
    • Implementing a language, sometimes quite high-level (e.g., PostScript)

So choosing and installing the correct device drivers for given hardware is often a key component of computer system configuration.[citation needed]

Virtual device drivers[edit]

Virtual device drivers represent a particular variant of device drivers. They are used to emulate a hardware device, particularly in virtualization environments, for example when a DOS program is run on a Microsoft Windows computer or when a guest operating system is run on, for example, a Xen host. Instead of enabling the guest operating system to dialog with hardware, virtual device drivers take the opposite role and emulate a piece of hardware, so that the guest operating system and its drivers running inside a virtual machine can have the illusion of accessing real hardware. Attempts by the guest operating system to access the hardware are routed to the virtual device driver in the host operating system as e.g., function calls. The virtual device driver can also send simulated processor-level events like interrupts into the virtual machine.

Virtual devices may also operate in a non-virtualized environment. For example a virtual network adapter is used with a virtual private network, while a virtual disk device is used with iSCSI. The best example for virtual device drivers can be "Daemon Tools".

There are several variants of virtual device drivers.

Open drivers[edit]

Solaris descriptions of commonly used device drivers

  • fas: Fast/wide SCSI controller
  • hme: Fast (10/100 Mbit/s) Ethernet
  • isp: Differential SCSI controllers and the SunSwift card
  • glm: (Gigabaud Link Module[10]) UltraSCSI controllers
  • scsi: Small Computer Serial Interface (SCSI) devices
  • sf: soc+ or social Fiber Channel Arbitrated Loop (FCAL)
  • soc: SPARC Storage Array (SSA) controllers
  • social: Serial optical controllers for FCAL (soc+)

APIs[edit]

Identifiers[edit]

A device on the PCI bus or USB is identified by two IDs which consist of 4 hexadecimal numbers each. The vendor ID identifies the vendor of the device. The device ID identifies a specific device from that manufacturer/vendor.

A PCI device has often an ID pair for the main chip of the device, and also a subsystem ID pair which identifies the vendor, which may be different from the chip manufacturer.

See also[edit]

References[edit]

  1. ^ a b "What is a device driver?, The purpose of device drivers". PC Gesund. Retrieved November 8, 2012. 
  2. ^ EMC Education Services (2010). Information Storage and Management: Storing, Managing, and Protecting Digital Information. John Wiley & Sons. 
  3. ^ "MAKEDEV — Linux Command — Unix Command". Linux.about.com. 2009-09-11. Retrieved 2009-09-17. 
  4. ^ Burke, Timothy (1995). Writing device drivers: tutorial and reference. Digital Press. 
  5. ^ "User-mode vs. Kernel-mode Drivers". Microsoft. 2003-03-01. Retrieved 2008-03-04. 
  6. ^ "Introduction to the User-Mode Driver Framework (UMDF)". Microsoft. 2006-10-10. Retrieved 2008-03-04. 
  7. ^ Deborah Morley (2009). Understanding Computers 2009: Today and Tomorrow. Cengage Learning. 
  8. ^ "CCISS". SourceForge. 2010. Retrieved 2010-08-11. "Drivers for the HP (previously Compaq) Smart Array controllers which provide hardware RAID capability." 
  9. ^ Russell, Steve; et al. (2003-10-21). "Abbreviations and acronyms". Server Consolidation with the IBM eserver xSeries 440 and VMware ESX Serve. IBM International Technical Support Organization. p. 207. ISBN 0-7384-2684-9. Retrieved 2011-08-14. 
  10. ^ "US Patent 5969841 - Gigabaud link module with received power detect signal". PatentStorm LLC. Retrieved 2009-09-08. "An improved Gigabaud Link Module (GLM) is provided for performing bi-directional data transfers between a host device and a serial transfer medium." 

External links[edit]


Original courtesy of Wikipedia: http://en.wikipedia.org/wiki/Device_driver — Please support Wikipedia.
A portion of the proceeds from advertising on Digplanet goes to supporting Wikipedia.

139 news items

ElectronicsWeekly.com

ElectronicsWeekly.com
Tue, 04 Jun 2013 07:14:15 -0700

With Strong background on Linux Kernel Device Driver development, targeting Android Systems. - Familiarity with HW (Reading Schematics, understanding datasheets, using measurement equipment). Or fancy working in Sweden? Check out “Software ...
 
LXer (press release)
Thu, 06 Jun 2013 09:10:54 -0700

With the increasing adoption of Linux in wide variety of environments, supporting Linux has become vital for device vendors. Being able to support Linux opens a rapidly growing market to these device vendors. For developers,the skill set to develop and ...
 
India Education Diary
Wed, 05 Jun 2013 04:44:35 -0700

Report by India Education bureau, Bangalore: Ricoh Company Ltd., a global leader in imaging devices and industry products, announced that they have entered a licensing agreement with Vayavya Labs Pvt. Ltd. for using DDGen to accelerate development ...
 
PC Magazine
Thu, 13 Jun 2013 05:03:26 -0700

It's called a device driver. It's a little computer program for communicating and translating between your PC and its hardware. They're operating system-specific; a driver for the same device on Microsoft Windows will be different for Mac OS. Sometimes ...
 
TechTarget
Wed, 19 Jun 2013 14:44:43 -0700

We have a device driver that pushes it into the silicon." Cumulus has hitched itself to Linux as the basis of its software for three reasons: Linux is mature. "Linux has a very full-featured networking stack," Rivers said. "Someone can go and reinvent ...
 
PR Web (press release)
Fri, 31 May 2013 08:15:36 -0700

Intelligraphics Inc., the industry leader in device driver development services since 1992, announces the launch of the IGX4100 Wi-Fi Driver Suite for Qualcomm Atheros AR4100 and AP4100P chipsets. The IGX4100 Wi-Fi Driver Suite supports the widest ...
 
Fort Mills Times
Tue, 18 Jun 2013 00:25:17 -0700

Combining it with new Ron-optimized 12V transistors minimizes the required silicon area for piezo or capacitive device driver applications. In addition, an OTP memory compiler for the 5V module is available for trimming purposes up to 16k bit; it ...
 
Technorati
Wed, 29 May 2013 07:14:01 -0700

This will be a good help to those owners who pays their drivers without knowing they are not working as expected. Also when this device will be used in computers, surely there is a Device Driver for it. If there is, it is necessary for it to be ...
Loading

Oops, we seem to be having trouble contacting Twitter

Talk About Device driver

You can talk about Device driver with people all over the world in our discussions.

Support Wikipedia

A portion of the proceeds from advertising on Digplanet goes to supporting Wikipedia. Please add your support for Wikipedia!