linux内核struct device_driver定义
时间: 2023-09-04 12:06:53 浏览: 304
linux_char_device_driver_programming.rar_linux driver
在 Linux 内核中,struct device_driver 结构体用于表示设备驱动程序。它定义在 include/linux/device.h 头文件中,其定义如下:
```c
struct device_driver {
const char *name; /* 驱动程序的名称 */
struct bus_type *bus; /* 设备所在的总线类型 */
struct module *owner; /* 指向驱动程序的模块 */
const char *mod_name; /* 驱动程序的模块名称 */
bool suppress_bind_attrs; /* 是否抑制属性绑定 */
const struct of_device_id *of_match_table; /* of_match_table 数组 */
const struct acpi_device_id *acpi_match_table; /* ACPI 设备 ID 数组 */
const struct dmi_system_id *dmi_match_table; /* DMI 系统 ID 数组 */
const struct attribute_group **groups; /* 属性组数组 */
int (*probe) (struct device *dev); /* 探测设备 */
int (*remove) (struct device *dev); /* 移除设备 */
void (*shutdown) (struct device *dev); /* 关闭设备 */
int (*suspend) (struct device *dev, pm_message_t state); /* 挂起设备 */
int (*resume) (struct device *dev); /* 恢复设备 */
const struct dev_pm_ops *pm; /* 设备的电源管理操作 */
struct driver_private *p; /* 驱动程序的私有数据 */
};
```
其中,常用的成员变量如下:
- `name`:驱动程序的名称。
- `bus`:指向设备所在的总线类型的指针。
- `probe`:设备探测函数,当设备被发现时会调用该函数。
- `remove`:设备移除函数,当设备被移除时会调用该函数。
- `suspend`:设备挂起函数,当设备被挂起时会调用该函数。
- `resume`:设备恢复函数,当设备从挂起状态恢复时会调用该函数。
此外,还有一些用于设备属性和电源管理的成员变量,以及一些用于匹配设备的成员变量。
阅读全文