Go to main content

Writing Device Drivers in Oracle® Solaris 11.4

Exit Print View

Updated: November 2020
 
 

Device Driver Entry Points

Entry Points Common to All Drivers

Some operations can be performed by any type of driver, such as the functions that are required for module loading and for the required autoconfiguration entry points. This section discusses types of entry points that are common to all drivers. The common entry points are listed in Summary of Common Entry Points with links to man pages and other relevant discussions.

Device Access Entry Points

Drivers for character and block devices export the cb_ops(9S) structure, which defines the driver entry points for block device access and character device access. Both types of drivers are required to support the open(9E) and close(9E) entry points. Block drivers are required to support strategy(9E), while character drivers can choose to implement whatever mix of read(9E), write(9E), ioctl(9E), mmap(9E), or devmap(9E) entry points is appropriate for the type of device. Character drivers can also support a polling interface through chpoll(9E). Asynchronous I/O is supported through aread(9E) and awrite(9E) for block drivers and those drivers that can use both block and character file systems.

Loadable Module Entry Points

All drivers are required to implement the loadable module entry points _init(9E), _fini(9E), and _info(9E) to load, unload, and report information about the driver module.

Drivers should allocate and initialize any global resources in _init(9E). Drivers should release their resources in _fini(9E).


Note -  In the Oracle Solaris OS, only the loadable module routines must be visible outside the driver object module. Other routines can have the storage class static.

Autoconfiguration Entry Points

Drivers are required to implement the attach(9E), detach(9E), and getinfo(9E) entry points for device autoconfiguration. Drivers can also implement the optional entry point probe(9E) in cases where devices do not identify themselves during boot-up, such as SCSI target devices. See Driver Autoconfiguration for more information about these routines.

Kernel Statistics Entry Points

The Oracle Solaris platform provides a rich set of interfaces to maintain and export kernel-level statistics, also known as kstats. Drivers are free to use these interfaces to export driver and device statistics that can be used by user applications to observe the internal state of the driver. The ks2_update() entry point is provided for working with kernel statistics. This entry point can be used to update kstat data at will. The ks2_update() entry point is useful in situations where a device is set up to track kernel data but extracting that data is time-consuming.

For further information, see the kstat2_create(9F) and kstat2(9S) man pages. See also Kernel Statistics.

Power Management Entry Point

Drivers for hardware devices that provide Power Management functionality can support the optional power(9E) entry point. See Power Management for details about this entry point.

System Quiesce Entry Point

A driver that manages devices must implement the quiesce(9E) entry point. Drivers that do not manage devices can set the devo_quiesce field in the dev_ops structure to ddi_quiesce_not_needed(). The quiesce() function can be called only when the system is single-threaded at high PIL (priority interrupt level) with preemption disabled. Therefore, this function must not be blocked. If a device has a defined reset state configuration, the driver should return that device to that reset state as part of the quiesce operation. An example of this case is Fast Reboot, where firmware is bypassed when booting to a new operating system image.

Summary of Common Entry Points

The following table lists entry points that can be used by all types of drivers.

Table 1  Entry Points for All Driver Types
Category / Entry Point
Usage
Description
cb_ops Entry Points
Required
Gets access to a device. Additional information:
Required
Gives up access to a device. The version of close() for STREAMS drivers has a different signature than character and block drivers. Additional information:
Loadable Module Entry Points
Required
Initializes a loadable module. Additional information: Loadable Driver Interfaces
Required
Prepares a loadable module for unloading. Required for all driver types. Additional information: Loadable Driver Interfaces
Required
Returns information about a loadable module. Additional information: Loadable Driver Interfaces
Autoconfiguration Entry Points
Required
Adds a device to the system as part of initialization. Also used to resume a system that has been suspended. Additional information: attach Entry Point
Required
Detaches a device from the system. Also, used to suspend a device temporarily. Additional information: detach Entry Point
Required
Gets device information that is specific to the driver, such as the mapping between a device number and the corresponding instance. Additional information:
See Description
Determines if a non-self-identifying device is present. Required for a device that cannot identify itself. Additional information:
Kernel Statistics Entry Points
Optional
Updates kstat2(9S) data dynamically. Additional information: Kernel Statistics
Power Management Entry Point
Required
Sets the power level of a device. If not used, set to NULL. Additional information: power Entry Point
System Quiesce Entry Point
See Description
Quiesces a device so that the device no longer generates interrupts or modifies or accesses memory.
Miscellaneous Entry Points
See Description
Reports driver property information. Required unless ddi_prop_op(9F) is substituted. Additional information:
See Description
Dumps memory to a device during system failure. Required for any device that is to be used as the dump device during a panic. Additional information:
identify(9E)
Obsolete
Do not use this entry point. Assign nulldev(9F) to this entry point in the dev_ops structure.

Entry Points for Block Device Drivers

Devices that support a file system are known as block devices. Drivers written for these devices are known as block device drivers. Block device drivers take a file system request, in the form of a buf(9S) structure, and issue the I/O operations to the disk to transfer the specified block. The main interface to the file system is the strategy(9E) routine. See Drivers for Block Devices for more information.

A block device driver can also provide a character driver interface to enable utility programs to bypass the file system and to access the device directly. This device access is commonly referred to as the raw interface to a block device.

The following table lists additional entry points that can be used by block device drivers. See also Entry Points Common to All Drivers.

Table 2  Additional Entry Points for Block Drivers
Entry Point
Usage
Description
Optional
Performs an asynchronous read. Drivers that do not support an aread() entry point should use the nodev(9F) error return function. Additional information:
Optional
Performs an asynchronous write. Drivers that do not support an awrite() entry point should use the nodev(9F) error return function. Additional information:
Required
Displays a driver message on the system console. Additional information: print Entry Point (Block Drivers)
Required
Perform block I/O. Additional information:

Entry Points for Character Device Drivers

Character device drivers normally perform I/O in a byte stream. Examples of devices that use character drivers include tape drives and serial ports. Character device drivers can also provide additional interfaces not present in block drivers, such as I/O control (ioctl) commands, memory mapping, and device polling. See Drivers for Character Devices for more information.

The main task of any device driver is to perform I/O, and many character device drivers do what is called byte-stream or character I/O. The driver transfers data to and from the device without using a specific device address. This type of transfer is in contrast to block device drivers, where part of the file system request identifies a specific location on the device.

The read(9E) and write(9E) entry points handle byte-stream I/O for standard character drivers. See I/O Request Handling for more information.

The following table lists additional entry points that can be used by character device drivers. For other entry points, see Entry Points Common to All Drivers.

Table 3  Additional Entry Points for Character Drivers
Entry Point
Usage
Description
Optional
Polls events for a non-STREAMS character driver. Additional information: Multiplexing I/O on File Descriptors
Optional
Performs a range of I/O commands for character drivers. ioctl() routines must make sure that user data is copied into or out of the kernel address space explicitly using copyin(9F), copyout(9F), ddi_copyin(9F), and ddi_copyout(9F), as appropriate. Additional information:
Required
Reads data from a device. Additional information:
Optional
Maps device memory into user space. Additional information:
Required
Writes data to a device. Additional information:

Entry Points for STREAMS Device Drivers

STREAMS is a separate programming model for writing a character driver. Devices that receive data asynchronously, such as terminal and network devices, are suited to a STREAMS implementation. STREAMS device drivers must provide the loading and autoconfiguration support described in Driver Autoconfiguration. See the STREAMS Programming Guide for additional information about how to write STREAMS drivers.

The following table lists additional entry points that can be used by STREAMS device drivers. For other entry points, see Entry Points Common to All Drivers and Entry Points for Character Device Drivers.

Table 4  Entry Points for STREAMS Drivers
Entry Point
Usage
Description
See Description
Coordinates the passing of messages from one queue to the next queue in a stream. Required, except for the side of the driver that reads data. Additional information: STREAMS Programming Guide
Required
Manipulate messages in a queue. Additional information: STREAMS Programming Guide

Entry Points for Memory Mapped Devices

For certain devices, such as frame buffers, providing application programs with direct access to device memory is more efficient than byte-stream I/O. Applications can map device memory into their address spaces using the mmap(2) system call. To support memory mapping, device drivers implement segmap(9E) and devmap(9E) entry points. For information about devmap(9E), see Mapping Device and Kernel Memory. For information about segmap(9E), see Drivers for Character Devices.

Drivers that define the devmap(9E) entry point usually do not define read(9E) and write(9E) entry points, because application programs perform I/O directly to the devices after calling mmap(2).

The following table lists additional entry points that can be used by character device drivers that use the devmap framework to perform memory mapping. For other entry points, see Entry Points Common to All Drivers and Entry Points for Character Device Drivers.

Table 5  Entry Points for Character Drivers That Use devmap for Memory Mapping
Entry Point
Usage
Description
Required
Validates and translates virtual mapping for a memory-mapped device. Additional information: Exporting the Mapping
Optional
Notifies drivers when an access is made to a mapping with validation or protection problems. Additional information: devmap_access Entry Point
Required
Performs device context switching on a mapping. Additional information: devmap_contextmgt Entry Point
Optional
Duplicates a device mapping. Additional information: devmap_dup Entry Point
Optional
Creates a device mapping. Additional information: devmap_map Entry Point
Optional
Cancels a device mapping. Additional information: devmap_unmap Entry Point

Entry Points for Network Device Drivers

See Figure 18, Table 18, GLDv3 Interfaces for a list of entry points for network device drivers that use the Generic LAN Driver version 3 (GLDv3) framework. For more information, see GLDv3 Network Device Driver Framework and GLDv3 MAC Registration Functions in Drivers for Network Devices.

Entry Points for SCSI HBA Drivers

The following table lists additional entry points that can be used by SCSI HBA device drivers. For information about the SCSI HBA transport structure, see scsi_hba_tran(9S). For other entry points, see Entry Points Common to All Drivers and Entry Points for Character Device Drivers.

Table 6  Additional Entry Points for SCSI HBA Drivers
Entry Point
Usage
Description
Required
Aborts a specified SCSI command that has been transported to a SCSI Host Bus Adapter (HBA) driver. Additional information: tran_abort Entry Point
Optional
Resets a SCSI bus. Additional information: tran_bus_reset Entry Point
Required
Frees resources that are allocated for a SCSI packet. Additional information: tran_destroy_pkt Entry Point
Required
Frees DMA resources that have been allocated for a SCSI packet. Additional information: tran_dmafree Entry Point
Required
Gets the current value of a specific capability that is provided by the HBA driver. Additional information: tran_getcap Entry Point
Required
Allocate and initialize resources for a SCSI packet. Additional information: Resource Allocation
Optional
Stop all activity on a SCSI bus, typically for dynamic reconfiguration. Additional information: Dynamic Reconfiguration
Required
Resets a SCSI bus or target device. Additional information: tran_reset Entry Point
Optional
Requests notification of a SCSI target device for a bus reset. Additional information: tran_reset_notify Entry Point
Required
Sets the value of a specific capability that is provided by the SCSI HBA driver. Additional information: tran_setcap Entry Point
Required
Requests the transport of a SCSI command. Additional information: tran_start Entry Point
Required
Synchronizes the view of data by an HBA driver or device. Additional information: tran_sync_pkt Entry Point
Optional
Requests allocated SCSI HBA resources to be freed on behalf of a target device. Additional information:
Optional
Requests SCSI HBA resources to be initialized on behalf of a target device. Additional information:
Optional
Probes a specified target on a SCSI bus. Additional information: tran_tgt_probe Entry Point
Optional
Resumes I/O activity on a SCSI bus after tran_quiesce(9E) has been called, typically for dynamic reconfiguration. Additional information: Dynamic Reconfiguration