发布时间:2015-08-26 14:30:45
本文作为Linux USB驱动分析的第一部分,主要介绍USB2.0协议中的:
1、USB硬件介绍。
2、USB数据格式。
3、传输。
4、枚举......【阅读全文】
发布时间:2015-08-26 14:30:40
说道sysfs接口,就不得不提到函数宏 DEVICE_ATTR原型是#define DEVICE_ATTR(_name, _mode, _show, _store) \struct device_attribute dev_attr_##_name = __ATTR(_name, _mode,_show, _store)函数宏DEVICE_ATTR内封装的是__ATTR(_name,_mode,_show,_stroe)方法,_show表示的是读方法,_str.........【阅读全文】
发布时间:2015-08-26 14:30:36
Notifier是Linux中提供一种在内核子系统中共享事件信息的方法。基于版本2.6.22,notifier有四种types:1.Atomic notifier chains: Chain callbacks run in interrupt/atomic context. Callouts are not allowed to block.2.Blocking notifier chains: Chain callbacks run in .........【阅读全文】