Linux-hid

/kernel/drivers/hid/hid-core.c

hid总线驱动

/kernel/drivers/hid/hid-generic.c

hid通用驱动

/kernel/drivers/hid/hid-multitouch.c

多点触控面板驱动

/kernel/drivers/hid/hid-quirks.c

hid-quirks.c 是 Linux 内核中的一个文件,用于实现 HID(Human Interface Device)设备的修正和补丁。
在 Linux 系统中,不同的 HID 设备可能存在一些硬件或固件上的问题,导致其在正常使用时出现兼容性或功能方面的限制。
hid-quirks.c 中的驱动程序可以通过对这些设备应用特定的修正和补丁,解决或规避这些问题。

struct hid_device_id hid_quirks[]
struct hid_device_id hid_have_special_driver[]
struct hid_device_id hid_ignore_list[]
struct hid_device_id hid_mouse_ignore_list[]

bool hid_ignore(struct hid_device *hdev)	//判断hid设备是否被忽略
static struct hid_device_id *hid_exists_dquirk(const struct hid_device *hdev)	//查找hid设备动态quirk
static int hid_modify_dquirk(const struct hid_device_id *id, const unsigned long quirks)	//修改hid设备动态quirk
static void hid_remove_all_dquirks(__u16 bus)	//删除所有hid设备动态quirk
int hid_quirks_init(char **quirks_param, __u16 bus, int count)	//模块加载时应用具体的quirk
void hid_quirks_exit(__u16 bus)	//释放内存中的动态quirk
static unsigned long hid_gets_squirk(const struct hid_device *hdev)	//查找hid设备静态quirk
unsigned long hid_lookup_quirk(const struct hid_device *hdev)	//查找hid设备动态和静态quirk
相关推荐
暮暮七41 分钟前
hive和spark读写分区表NULL列
大数据·linux·hive·hadoop·sql·spark
有来技术1 小时前
Linux 服务器安装 Docker - CentOS 9 (Stream)
linux·服务器·docker
jekc8682 小时前
Centos 相关网络配置
linux·网络·centos
DADIAN_GONG2 小时前
How to install tree on Centos? what is difference between apt and yum?
linux·运维·centos
夏沫の浅雨4 小时前
imx-6ULL uboot 移植
linux·uboot·nxp·6ull
C++忠实粉丝4 小时前
计算机网络之应用层协议HTTP
linux·网络·c++·网络协议·tcp/ip·计算机网络·http
Lin_Aries_04214 小时前
CentOS 7 安装部署 KVM
linux·运维·centos
深思慎考5 小时前
计算机操作系统——进程控制(Linux)
linux·服务器·c++·c
阿熊不会编程5 小时前
【计网】自定义协议与序列化(一) —— Socket封装于服务器端改写
linux·开发语言·网络·c++·设计模式