linux内核struct device_driver结构体定义
时间: 2023-09-02 14:07:06 浏览: 186
在 Linux 内核中,`struct device_driver` 结构体用于表示设备驱动程序,其定义如下:
```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;
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 attribute_group **groups;
const struct dev_pm_ops *pm;
const struct driver_private *p;
};
```
其中,各字段的含义如下:
- `name`:设备驱动程序的名称字符串。
- `bus`:指向该设备驱动程序所属的总线类型的指针。
- `owner`:指向该设备驱动程序所属的内核模块的指针。
- `mod_name`:该设备驱动程序所属的内核模块的名称。
- `suppress_bind_attrs`:该字段用于控制是否在 sysfs 中显示驱动程序的绑定属性。
- `of_match_table`:指向 Open Firmware 设备匹配表的指针。
- `probe`:设备探测函数。
- `remove`:设备删除函数。
- `shutdown`:设备关机函数。
- `suspend`:设备挂起函数。
- `resume`:设备恢复函数。
- `groups`:指向设备驱动程序的属性组的指针。
- `pm`:指向设备驱动程序的电源管理操作的指针。
- `p`:指向设备驱动程序的私有数据的指针。
需要注意的是,`struct device_driver` 结构体中的各个字段都是可选的,具体实现时可以根据需要进行选择。
阅读全文