
input子系统分析
文章平均质量分 77
zhigouliu
这个作者很懒,什么都没留下…
展开
-
input子系统分析:1. 概述及主要数据结构分析
一、概述1. input子系统是什么? input子系统是linux用来管理不同类型、不同原理、不同的输入信息的众多输入设备的系统 这边要注意,input子系统只支持字符流的输入设备,并不支持如lcm、camera等非字符流的设备 input子系统支持的常见设备有:键盘、鼠标、触摸屏、游戏手柄、sensor、按键 linux中有很多个子系统:平台总线,inp...原创 2018-05-25 11:05:29 · 392 阅读 · 0 评论 -
input子系统分析:2. 开机注册流程
============================================= input 核心层: input.c 【注册流程】 static LIST_HEAD(input_dev_list); // 定义全局链表 : input device static LIST_HEAD(input_handler_list); // 定义全局链表 : input handl...原创 2018-05-25 11:05:39 · 482 阅读 · 0 评论 -
input子系统分析:源码1. kernel-3.18\drivers\input\input.c
/* * The input core * * Copyright (c) 1999-2002 Vojtech Pavlik */ /* * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public Licens...原创 2018-05-25 11:07:54 · 1092 阅读 · 0 评论 -
input子系统分析:源码2. kernel-3.18\drivers\input\evdev.c
/* * Event char devices, giving access to raw input device events. * * Copyright (c) 1999-2002 Vojtech Pavlik * * This program is free software; you can redistribute it and/or modify it * under ...原创 2018-05-25 11:09:08 · 535 阅读 · 0 评论