Device Extensions

Device Extensions


Introduction
~~~~~~~~~~~~

Device extensions are internal extensions to a device, bus, or class
driver. Extensions may or may not have an external interface
associated with them and typically apply to every of a particular driver.

An example of an extension is the procfs or driverfs interface for PCI
devices. Each PCI device gets a procfs file and two driverfs files.
These extensions may or may not be present based on configuration
options; or they may be included in a module. Instead of hard coding
calls to add the devices to these interfaces, the extensions can be
registered with the driver and each device added implicitly.


Programming Interface
~~~~~~~~~~~~~~~~~~~~~

struct device_extension {
char * name;
rwlock_t lock;
struct list_head node;
dev_add_t add_device;
dev_remove_t remove_device;
};

extern int dev_ext_register(struct device_extension *);
extern void dev_ext_unregister(struct device_extension *);

extern int bus_ext_register(struct bus_type *, struct device_extension *);
extern void bus_ext_unregister(struct bus_type *, struct device_extension *);

extern int class_ext_register(struct device_class *, struct device_extension *);
extern void class_ext_unregister(struct device_class *, struct device_extension *);


Extensions are specific to a particular driver, but the structure is
common for each type of extension. So, a pointer to the entity that
the extension belongs to must be passed to the registration function.


Devices
~~~~~~~
As devices are added to the various drivers, it is added to each
extension of that driver. Extensions don't have to be applied to each
device, but it is up to the extension to determine that.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值