linux内核区分usb设备速度原理

linux内核区分usb设备速度原理
对于linux系统,系统初始时候hub驱动初始化了一个工作队列不停的轮训hub事件 ,事件的具体执行函数是hub_event,当有usb设备插入时候,会调到
port_event-> Y:\kernel\drivers\usb\core\hub.c
hub_port_connect_change->
hub_port_connect->
hub_port_init->
usb_speed_string(udev->speed); //如上所述
const char *usb_speed_string(enum usb_device_speed speed) //drivers/usb/common/common.c
{
if (speed < 0 || speed >= ARRAY_SIZE(speed_names))
speed = USB_SPEED_UNKNOWN;
return speed_names[speed];
}
static const char *const speed_names[] = { //drivers/usb/common/common.c
[USB_SPEED_UNKNOWN] = “UNKNOWN”,
[USB_SPEED_LOW] = “low-speed”,
[USB_SPEED_FULL] = “full-speed”,
[USB_SPEED_HIGH] = “high-speed”,
[USB_SPEED_WIRELESS] = “wireless”,
[USB_SPEED_SUPER] = “super-speed”,
[USB_SPEED_SUPER_PLUS] = “super-speed-plus”,
};
而这个full-speed与high-speed就是平时我们插入usb设备所打印的设备信息,通过这个信息即可判断usb设备版本是1.0还是2.0及3.0.
USB_SPEED_LOW 对应1.0
USB_SPEED_FULL对应usb 2.0
USB_SPEED_HIGH对应usb3…0

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

技术求索者

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值