linux 触摸屏驱动编写
程序员文章站
2022-06-07 19:20:15
早在诺基亚手机还比较流行的时候,那时候触摸屏用的还不多。但是随着触摸屏手机、即智能手机的流行,触摸屏基本成了手机的标配。所以,今天可以看看触摸屏驱动在linux上是如何进行...
早在诺基亚手机还比较流行的时候,那时候触摸屏用的还不多。但是随着触摸屏手机、即智能手机的流行,触摸屏基本成了手机的标配。所以,今天可以看看触摸屏驱动在linux上是如何进行的。
1、驱动目录
drivers/input
2、看看这个目录的makefile如何设计
obj-$(config_input) += input-core.o input-core-y := input.o input-compat.o input-mt.o ff-core.o obj-$(config_input_touchscreen) += touchscreen/
3、除了input-core.o这个文件外,只需要看touchscreen目录就可以了
config touchscreen_s3c2410 tristate "samsung s3c2410/generic touchscreen input driver" depends on arch_s3c24xx || samsung_dev_ts depends on s3c_adc help say y here if you have the s3c2410 touchscreen. if unsure, say n. to compile this driver as a module, choose m here: the module will be called s3c2410_ts.
4、看懂了kconfig之后,再阅读makefile,注意s3c_adc宏可以参考arch/arm/plat-samsung/adc.c
obj-$(config_touchscreen_s3c2410) += s3c2410_ts.o
5、继续阅读s3c2410_ts.c文件
static const struct platform_device_id s3cts_driver_ids[] = { { "s3c2410-ts", 0 }, { "s3c2440-ts", 0 }, { "s3c64xx-ts", feat_pen_irq }, { } }; module_device_table(platform, s3cts_driver_ids); static struct platform_driver s3c_ts_driver = { .driver = { .name = "samsung-ts", #ifdef config_pm .pm = &s3c_ts_pmops, #endif }, .id_table = s3cts_driver_ids, .probe = s3c2410ts_probe, .remove = s3c2410ts_remove, }; module_platform_driver(s3c_ts_driver);
6、根据probe函数,看看有什么需要注意的内容
ts.client = s3c_adc_register(pdev, s3c24xx_ts_select, s3c24xx_ts_conversion, 1); if (is_err(ts.client)) { dev_err(dev, "failed to register adc client\n"); ret = ptr_err(ts.client); goto err_iomap; }
7、接着,查看是否有中断函数被注册
ret = request_irq(ts.irq_tc, stylus_irq, 0, "s3c2410_ts_pen", ts.input);
8、最后
很明显,触摸屏驱动本质上还是由touchscreen_s3c2410和s3c_adc两个macro一起完成的。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 电子杂志的创编制作过程实例详解
下一篇: 3ds Max 命令翻译列表