HID Architecture

The architecture of the HID driver stack in Windows is built on the class driver named hidclass.sys. Clients and transport minidrivers access the class driver from user-mode or kernel-mode.

The HID Class Driver

The system-supplied HID class driver is the WDM function driver and bus driver for the HID device setup class (HIDClass). The executable component of the HID class driver is hidclass.sys. The HID Class driver is the glue between HID clients and various transports. This allows a HID Client to be written in an independent way from transports. This level of abstraction allows clients to continue to work (with little to no modifications) when a new standard, or a 3rd party transport is introduced.

The following is a simplified stack diagram of a generic HID client and transport.

Simplified HID driver stack, showing HID clients, the HID class driver and the HID transport components.

The preceding diagram includes the following:

  • HID Clients – Identifies the Windows and 3rd party clients and their interfaces.
  • HID Class driver - The hidclass.sys executable.
  • HID Transport Minidriver - Identifies the Windows and 3rd party transports and their interfaces.

HID Clients

The HID Clients are drivers, services or applications that communicate with HIDClass.sys and often represent a specific type of device (E.g. sensor, keyboard, mouse, etc). They identify the device via a hardware ID or a specific HID Collection and communicate with the HID Collection via the following guidance.

User-mode drivers and applications, and kernel-mode drivers, do the following to operate HID collections:

  • User-mode drivers and applications use HIDClass support routines (HidD_Xxx) to obtain information about a HID collection.
  • Kernel-mode drivers, user-mode drivers and applications use HID parsing support routines (HidP_Xxx), and kernel-mode drivers use HID class driver IOCTLs to handle HID reports.

The following table is a simplification of the information listed above.

Drivers Applications
User Mode HidD_Xxx HidP_Xxx
Kernel Mode HidD_Xxx OR IOCTL_HID_xxx N/A

 

For more information, see Opening HID collections.

For a list of all supported HID Clients, see HID Clients Supported in Windows.

The HID Transport Driver

The HID class driver is designed to use HID minidrivers to access a hardware input device. A HID minidriver abstracts the device-specific operation of the input devices that it supports. The HID minidriver binds its operation to the HID class driver by registering with the HID class driver. The HID class driver communicates with a HID minidriver by calling the minidriver's support routines. The HID minidriver, in turn, sends communications down the driver stack to an underlying bus or port driver.

For a list of the HID Transports provided in Windows, see HID Transports Supported in Windows.

 

 

Send comments about this topic to Microsoft