📄 driver.txt
字号:
Device Driversstruct device_driver { char * name; struct bus_type * bus; rwlock_t lock; atomic_t refcount; list_t bus_list; list_t devices; struct driver_dir_entry dir; int (*probe) (struct device * dev); int (*remove) (struct device * dev); int (*suspend) (struct device * dev, u32 state, u32 level); int (*resume) (struct device * dev, u32 level); void (*release) (struct device_driver * drv);};Allocation~~~~~~~~~~Device drivers are statically allocated structures. Though there maybe multiple devices in a system that a driver supports, structdevice_driver represents the driver as a whole (not a particulardevice instance).Initialization~~~~~~~~~~~~~~The driver must initialize at least the name and bus fields. It shouldalso initialize the devclass field (when it arrives), so it may obtainthe proper linkage internally. It should also initialize as many ofthe callbacks as possible, though each is optional.Declaration~~~~~~~~~~~As stated above, struct device_driver objects are staticallyallocated. Below is an example declaration of the eepro100driver. This declaration is hypothetical only; it relies on the driverbeing converted completely to the new model. static struct device_driver eepro100_driver = { .name = "eepro100", .bus = &pci_bus_type, .devclass = ðernet_devclass, /* when it's implemented */ .probe = eepro100_probe, .remove = eepro100_remove, .suspend = eepro100_suspend, .resume = eepro100_resume,};Most drivers will not be able to be converted completely to the newmodel because the bus they belong to has a bus-specific structure withbus-specific fields that cannot be generalized. The most common example of this are device ID structures. A drivertypically defines an array of device IDs that it supports. The formatof these structures and the semantics for comparing device IDs arecompletely bus-specific. Defining them as bus-specific entities wouldsacrifice type-safety, so we keep bus-specific structures around. Bus-specific drivers should include a generic struct device_driver inthe definition of the bus-specific driver. Like this:struct pci_driver { const struct pci_device_id *id_table; struct device_driver driver;};A definition that included bus-specific fields would look like(using the eepro100 driver again):static struct pci_driver eepro100_driver = { .id_table = eepro100_pci_tbl, .driver = { .name = "eepro100", .bus = &pci_bus_type, .devclass = ðernet_devclass, /* when it's implemented */ .probe = eepro100_probe, .remove = eepro100_remove, .suspend = eepro100_suspend, .resume = eepro100_resume, },};Some may find the syntax of embedded struct initialization awkward oreven a bit ugly. So far, it's the best way we've found to do what we want...Registration~~~~~~~~~~~~int driver_register(struct device_driver * drv);The driver registers the structure on startup. For drivers that haveno bus-specific fields (i.e. don't have a bus-specific driverstructure), they would use driver_register and pass a pointer to theirstruct device_driver object. Most drivers, however, will have a bus-specific structure and willneed to register with the bus using something like pci_driver_register.It is important that drivers register their driver structure as early aspossible. Registration with the core initializes several fields in thestruct device_driver object, including the reference count and thelock. These fields are assumed to be valid at all times and may beused by the device model core or the bus driver.Transition Bus Drivers~~~~~~~~~~~~~~~~~~~~~~By defining wrapper functions, the transition to the new model can bemade easier. Drivers can ignore the generic structure altogether andlet the bus wrapper fill in the fields. For the callbacks, the bus candefine generic callbacks that forward the call to the bus-specificcallbacks of the drivers. This solution is intended to be only temporary. In order to get classinformation in the driver, the drivers must be modified anyway. Sinceconverting drivers to the new model should reduce some infrastructuralcomplexity and code size, it is recommended that they are converted asclass information is added.Access~~~~~~Once the object has been registered, it may access the common fields ofthe object, like the lock and the list of devices. int driver_for_each_dev(struct device_driver * drv, void * data, int (*callback)(struct device * dev, void * data));The devices field is a list of all the devices that have been bound tothe driver. The LDM core provides a helper function to operate on allthe devices a driver controls. This helper locks the driver on eachnode access, and does proper reference counting on each device as itaccesses it. sysfs~~~~~When a driver is registered, a sysfs directory is created in itsbus's directory. In this directory, the driver can export an interfaceto userspace to control operation of the driver on a global basis;e.g. toggling debugging output in the driver.A future feature of this directory will be a 'devices' directory. Thisdirectory will contain symlinks to the directories of devices itsupports.Callbacks~~~~~~~~~ int (*probe) (struct device * dev);probe is called to verify the existence of a certain type ofhardware. This is called during the driver binding process, after thebus has verified that the device ID of a device matches one of thedevice IDs supported by the driver. This callback only verifies that there actually is supported hardwarepresent. It may allocate a driver-specific structure, but it shouldnot do any initialization of the hardware itself. The device-specificstructure may be stored in the device's driver_data field. int (*init) (struct device * dev);init is called during the binding stage. It is called after probe hassuccessfully returned and the device has been registered with itsclass. It is responsible for initializing the hardware. int (*remove) (struct device * dev);remove is called to dissociate a driver with a device. This may becalled if a device is physically removed from the system, if thedriver module is being unloaded, or during a reboot sequence. It is up to the driver to determine if the device is present ornot. It should free any resources allocated specifically for thedevice; i.e. anything in the device's driver_data field. If the device is still present, it should quiesce the device and placeit into a supported low-power state. int (*suspend) (struct device * dev, u32 state, u32 level);suspend is called to put the device in a low power state. There areseveral stages to successfully suspending a device, which is denoted inthe @level parameter. Breaking the suspend transition into severalstages affords the platform flexibility in performing device powermanagement based on the requirements of the system and theuser-defined policy.SUSPEND_NOTIFY notifies the device that a suspend transition is aboutto happen. This happens on system power state transitions to verifythat all devices can successfully suspend.A driver may choose to fail on this call, which should cause theentire suspend transition to fail. A driver should fail only if itknows that the device will not be able to be resumed properly when thesystem wakes up again. It could also fail if it somehow determines itis in the middle of an operation too important to stop.SUSPEND_DISABLE tells the device to stop I/O transactions. When itstops transactions, or what it should do with unfinished transactionsis a policy of the driver. After this call, the driver should notaccept any other I/O requests.SUSPEND_SAVE_STATE tells the device to save the context of thehardware. This includes any bus-specific hardware state anddevice-specific hardware state. A pointer to this saved state can bestored in the device's saved_state field.SUSPEND_POWER_DOWN tells the driver to place the device in the lowpower state requested. Whether suspend is called with a given level is a policy of theplatform. Some levels may be omitted; drivers must not assume thereception of any level. However, all levels must be called in theorder above; i.e. notification will always come before disabling;disabling the device will come before suspending the device.All calls are made with interrupts enabled, except for theSUSPEND_POWER_DOWN level. int (*resume) (struct device * dev, u32 level);Resume is used to bring a device back from a low power state. Like thesuspend transition, it happens in several stages. RESUME_POWER_ON tells the driver to set the power state to the statebefore the suspend call (The device could have already been in a lowpower state before the suspend call to put in a lower power state). RESUME_RESTORE_STATE tells the driver to restore the state saved bythe SUSPEND_SAVE_STATE suspend call. RESUME_ENABLE tells the driver to start accepting I/O transactionsagain. Depending on driver policy, the device may already have pendingI/O requests. RESUME_POWER_ON is called with interrupts disabled. The other resumelevels are called with interrupts enabled. As with the various suspend stages, the driver must not assume thatany other resume calls have been or will be made. Each call should beself-contained and not dependent on any external state.Attributes~~~~~~~~~~struct driver_attribute { struct attribute attr; ssize_t (*show)(struct device_driver *, char * buf, size_t count, loff_t off); ssize_t (*store)(struct device_driver *, const char * buf, size_t count, loff_t off);};Device drivers can export attributes via their sysfs directories. Drivers can declare attributes using a DRIVER_ATTR macro that worksidentically to the DEVICE_ATTR macro. Example:DRIVER_ATTR(debug,0644,show_debug,store_debug);This is equivalent to declaring:struct driver_attribute driver_attr_debug;This can then be used to add and remove the attribute from thedriver's directory using:int driver_create_file(struct device_driver *, struct driver_attribute *);void driver_remove_file(struct device_driver *, struct driver_attribute *);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -