Device driver

Device driver

In computing, a device driver or software driver is a computer program allowing higher-level computer programs to interact with a hardware device.

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.

Contents

Purpose

A device driver simplifies programming by acting as translator between a hardware device and the applications or operating systems that use it. Programmers can write the higher-level application code independently of whatever specific hardware device.

Design

Device drivers can be abstracted into logical and physical layers. Logical layers process data for a class of devices such as Ethernet ports or disk drives. 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. Inversely, 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)...[1]

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

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 highly privileged environment and can cause disaster if they get things wrong.[2] 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.

Thus the task of writing drivers usually falls to software 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 well 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

Device drivers, particularly on modern Windows platforms, can run in kernel-mode (Ring 0 on x86 CPUs) or in user-mode (Ring 3 on x86 CPUs).[3] 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.[4] 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

Because of the diversity of modern hardware and operating systems, drivers operate in many different environments. 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)

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

Virtual device drivers

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"

Open drivers

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[7]) 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

Identifiers

A device on the PCI or USB bus is identified by two ID's which consist of 4 numbers and/or letters A to F. 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

References

  1. ^ "MAKEDEV — Linux Command — Unix Command". Linux.about.com. 2009-09-11. http://linux.about.com/od/commands/l/blcmdl8_MAKEDEV.htm. Retrieved 2009-09-17. 
  2. ^ "Device Driver Basics". http://www.linux-tutorial.info/modules.php?name=Tutorial&pageid=255. 
  3. ^ "User-mode vs. Kernel-mode Drivers". Microsoft. 2003-03-01. http://technet2.microsoft.com/windowsserver/en/library/eb1936c0-e19c-4a17-a1a8-39292e4929a41033.mspx?mfr=true. Retrieved 2008-03-04. 
  4. ^ "Introduction to the User-Mode Driver Framework (UMDF)". Microsoft. 2006-10-10. http://blogs.msdn.com/iliast/archive/2006/10/10/Introduction-to-the-User_2D00_Mode-Driver-Framework.aspx. Retrieved 2008-03-04. 
  5. ^ "CCISS". SourceForge. 2010. http://sourceforge.net/projects/cciss/. Retrieved 2010-08-11. "Drivers for the HP (previously Compaq) Smart Array controllers which provide hardware RAID capability." 
  6. ^ 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 0738426849. http://www.redbooks.ibm.com/redbooks/pdfs/sg246852.pd. Retrieved 2011-08-14. 
  7. ^ "US Patent 5969841 - Gigabaud link module with received power detect signal". PatentStorm LLC. http://www.patentstorm.us/patents/5969841.html. 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


Wikimedia Foundation. 2010.

Игры ⚽ Нужно сделать НИР?

Look at other dictionaries:

  • Device Driver —   [engl.], Gerätetreiber …   Universal-Lexikon

  • device driver — noun (computer science) a program that determines how a computer will communicate with a peripheral device • Syn: ↑driver • Derivationally related forms: ↑drive (for: ↑driver) • Topics: ↑ …   Useful english dictionary

  • device driver —    A small program that allows a computer to communicate with and control a device. Each operating system contains a standard set of device drivers for the keyboard,themonitor,andsoon.Whenyou add specialized peripheral devices, such as a CD ROM… …   Dictionary of networking

  • device driver — tvarkyklė statusas T sritis informatika apibrėžtis Programa, valdanti kompiuterio ↑įtaisą: klaviatūrą, diskų įtaisą, pelę ir kt. atitikmenys: angl. device driver; driver ryšiai: dar žiūrėk – įtaisas palygink – tvarkytuvė siauresnis terminas –… …   Enciklopedinis kompiuterijos žodynas

  • device driver — įtaiso tvarkyklė statusas T sritis radioelektronika atitikmenys: angl. device driver vok. Gerätetreiber, m rus. драйвер устройства, m pranc. gestionnaire de périphérique, m …   Radioelektronikos terminų žodynas

  • Device driver synthesis and verification — The device driver is a program which allows the software or higher level computer programs to interact with a hardware device. These software components act as a link between the devices and the operating systems, communicating with each of these …   Wikipedia

  • device driver — interface for a peripheral device, program which allows an operating system to communicate with a hardware device …   English contemporary dictionary

  • device driver — /dəˈvaɪs draɪvə/ (say duh vuys druyvuh) noun Computers a program that enables the operating system of a computer to recognise peripheral devices, such as modems, printers, mouses, etc. Also, driver …  

  • device driver —    see driver …   IT glossary of terms, acronyms and abbreviations

  • device driver — noun software, supplied with the operating system or by a hardware manufacturer, that communicates between the operating system of a personal computer and a specific hardware device …   Wiktionary

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”