RK3288 android7.1 适配 ilitek i2c接口TP

一,Ilitek 触摸屏简介

  1. Ilitek 提供多种型号的触控屏控制器,如 ILI6480、ILI9341 等,采用 I2C 接口。
    这些控制器能够支持多点触控,并具有优秀的灵敏度和响应速度。

  2. Ilitek 的触摸屏控制器监测屏幕上的触摸事件。
    当触摸发生时,控制器将触摸坐标(通常是 x 和 y 坐标)通过 I2C 总线发送给主机。


二,DTS配置

在这里插入图片描述

&i2c1 {status = "okay";ilitek@41 {compatible = "tchip,ilitek";reg = <0x41>;ilitek,irq-gpio = <&gpio7 6 GPIO_ACTIVE_HIGH>;ilitek,reset-gpio = <&gpio7 15 GPIO_ACTIVE_HIGH>; //修改相对应的gpio参数pinctrl-names = "default";pinctrl-0 = <&ilitek_gpio_e>;status = "okay";};
};&pinctrl {touchscreen {ilitek_gpio_e: ilitek-gpio-e {rockchip,pins =<7 6 RK_FUNC_GPIO &pcfg_pull_up>,<7 15 RK_FUNC_GPIO &pcfg_pull_up>;};};
};

注:一定要对应的I2C bus节点(硬件原理图上会有标注)。


三,驱动文件配置

在这里插入图片描述

1. ilitek_lim.c

static int ilitek_i2c_probe(struct i2c_client *client,const struct i2c_device_id *id)
{int ret = 0;int revert_x=0;int revert_y=0;int revert_x_y=0;struct device_node *param_node;
#ifdef ILI_UPDATE_FW#ifdef UPDATE_THREADEstruct task_struct *thread_update = NULL;#endif
#endif#ifdef RECOGNITION_LONGTIME_BUTTON
struct task_struct *thread_longtime_button = NULL;
#endif#ifdef WRITE_2210_CFGstruct task_struct *thread_write_cfg = NULL;
#endif#if IC2120int i = 0;
#endif//int i = 0;//uint8_t buf[8] = {0};
#ifdef DEBUG_NETLINKstruct netlink_kernel_cfg cfg = {.groups = 0,.input	= udp_receive,};#endiftp_log_info("Enter ilitek_i2c_probe +++++++++ client->addr = 0x%x++++++\n", client->addr);if(!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)){tp_log_err("%s, I2C_FUNC_I2C not support\n", __func__);return -1;}// initialize global variable#ifdef TOOLmemset(&dev_ilitek, 0, sizeof(struct dev_data));#endifmemset(&i2c, 0, sizeof(struct i2c_data));// initialize mutex object
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37)init_MUTEX(&i2c.wr_sem);
#elsesema_init(&i2c.wr_sem,1);
#endifi2c.wr_sem.count = 1;mutex_init(&(i2c.irq_mutex));i2c.report_status = 1;i2c.client = client;#ifdef CONFIG_ENABLE_REGULATOR_POWER_ONret = ilitek_get_regulator();if (ret) {tp_log_err("%s, ilitek_get_regulator failed\n", __func__);return ret;}ret = ilitek_power_on(true);if (ret) {tp_log_err("%s, power on failed\n", __func__);return ret;}#endif//ret = ilitek_request_io_port(client);if (ret != 0){tp_log_err("%s, io error", __func__);return ret;}param_node = of_find_node_by_path("/smdt_param");if (!param_node){printk("gt9xx wxl error smdt_param not node!!!\n");}of_property_read_u32(param_node, "ctp_revert_x_flag", &revert_x);of_property_read_u32(param_node, "ctp_revert_y_flag", &revert_y);of_property_read_u32(param_node, "ctp_exchange_x_y_flag", &revert_x_y);if(revert_x == 1 )REVERT_X = 1;else    REVERT_X = 0;if(revert_y == 1 )REVERT_Y = 1;else    REVERT_Y = 0;if(revert_x_y == 1 )EXCHANG_XY = 1;else    EXCHANG_XY = 0;i2c.client->irq  = gpio_to_irq(i2c.irq_gpio);tp_log_info("ilitek i2c.irq_gpio = %d, i2c.client->irq = %d\n", i2c.irq_gpio, i2c.client->irq);i2c.valid_i2c_register = 1;#if 1ilitek_reset(i2c.reset_gpio);#endif#if !IC2120mdelay(200);#elsefor (i = 0; i < 30; i++ ) {ret = ilitek_poll_int();tp_log_info("ilitek int status = %d\n", ret);if (ret == 0) {break;}else {mdelay(5);}}if (i >= 30) {#ifdef ILI_UPDATE_FWtp_log_info("ilitek reset but int not pull low so driver_upgrade_flag = true\n");driver_upgrade_flag = true;#endif}else #endif{#if 0msleep(2000);for (i = 0; i < 127; i++) {//buf[0] = 0x10;client->addr = i;ret = ilitek_i2c_write_and_read(i2c.client, buf, 0, 10, buf, 4);tp_log_info("ilitek %s, write 0x10 read buf = %X, %X, %X\n", __func__, buf[0], buf[1], buf[2]);if (ret < 0) {mdelay(5);}else {tp_log_info("ilitek %s, client->addr = 0x%X, read buf = %X, %X, %X\n", __func__, client->addr, buf[0], buf[1], buf[2]);tp_log_info("ilitek %s, client->addr = 0x%X, read buf = %X, %X, %X\n", __func__, client->addr, buf[0], buf[1], buf[2]);tp_log_info("ilitek %s, client->addr = 0x%X, read buf = %X, %X, %X\n", __func__, client->addr, buf[0], buf[1], buf[2]);tp_log_info("ilitek %s, client->addr = 0x%X, read buf = %X, %X, %X\n", __func__, client->addr, buf[0], buf[1], buf[2]);tp_log_info("ilitek %s, client->addr = 0x%X, read buf = %X, %X, %X\n", __func__, client->addr, buf[0], buf[1], buf[2]);break;}}#endif// read touch parameterret = ilitek_i2c_read_tp_info();if(ret < 0){tp_log_err("ilitek read tp info fail free gpio\n");if (gpio_is_valid(i2c.irq_gpio)) {gpio_free(i2c.irq_gpio);}if (gpio_is_valid(i2c.reset_gpio)) {gpio_free(i2c.reset_gpio);}return ret;}}
#ifdef CLOCK_INTERRUPT
#ifdef REPORT_THREADi2c.thread = kthread_run(ilitek_i2c_touchevent_thread, NULL, "ilitek_i2c_thread");if(i2c.thread == (struct task_struct*)ERR_PTR){i2c.thread = NULL;tp_log_err("%s, kthread create, error\n", __func__);}
#endif
#endifilitek_handle_irqorpolling();i2c.input_dev = input_allocate_device();if(i2c.input_dev == NULL){tp_log_err("%s, allocate input device, error\n", __func__);return -1;}ilitek_set_input_param(i2c.input_dev, i2c.max_tp, i2c.max_x, i2c.max_y);ret = input_register_device(i2c.input_dev);if(ret){tp_log_err("%s, register input device, error\n", __func__);return ret;}i2c.valid_input_register = 1;tp_log_info("%s, register input device, success\n", __func__);
#ifdef ILI_UPDATE_FW#ifndef UPDATE_THREADE{update_wait_flag = 1;ret = ilitek_upgrade_firmware();if(ret == ILITEK_UPDATE_OK) {tp_log_info("update end\n");}else if(ret == ILITEK_I2C_TRANSFER_ERR) {tp_log_info("i2c communication error\n");}if(i2c.reset_request_success){ilitek_reset(i2c.reset_gpio);}// read touch parameterret=ilitek_i2c_read_tp_info();if(ret < 0){tp_log_err("ilitek_i2c_read_tp_info err\n");return ret;}update_wait_flag = 0;#if 1input_unregister_device(i2c.input_dev);#if 1i2c.input_dev = input_allocate_device();if(i2c.input_dev == NULL){tp_log_err("%s, allocate input device, error\n", __func__);return -1;}#endif// register input device//memset(i2c.input_dev, 0, sizeof(struct input_dev));// register input deviceilitek_set_input_param(i2c.input_dev, i2c.max_tp, i2c.max_x, i2c.max_y);ret = input_register_device(i2c.input_dev);if(ret){tp_log_err("%s, register input device, error\n", __func__);return ret;}tp_log_info("%s, register input device, success\n", __func__);#endif}#else{thread_update= kthread_run(ilitek_i2c_update_thread, NULL, "ilitek_i2c_updatethread");if(thread_update == (struct task_struct*)ERR_PTR){thread_update = NULL;tp_log_err("%s,thread_update kthread create, error\n", __func__);}}#endif
#endif#ifdef WRITE_2210_CFGthread_write_cfg = kthread_run(ilitek_i2c_write_cfg_thread, NULL, "ilitek_i2c_write_cfg_thread");if(thread_write_cfg == (struct task_struct*)ERR_PTR){thread_write_cfg = NULL;tp_log_err("%s,thread_write_cfg kthread create, error\n", __func__);}
#endif#ifdef RECOGNITION_LONGTIME_BUTTONthread_longtime_button = kthread_run(ilitek_i2c_check_longtime_button_thread, NULL, "ilitek_i2c_check_longtime_button_thread");if(thread_longtime_button == (struct task_struct*)ERR_PTR){thread_longtime_button = NULL;tp_log_err("%s,thread_longtime_button kthread create, error\n", __func__);}
#endif#ifdef GESTUREilitek_system_resume = 1;input_set_capability(i2c.input_dev, EV_KEY, KEY_POWER);input_set_capability(i2c.input_dev, EV_KEY, KEY_W);input_set_capability(i2c.input_dev, EV_KEY, KEY_LEFT);input_set_capability(i2c.input_dev, EV_KEY, KEY_RIGHT);input_set_capability(i2c.input_dev, EV_KEY, KEY_UP);input_set_capability(i2c.input_dev, EV_KEY, KEY_DOWN);input_set_capability(i2c.input_dev, EV_KEY, KEY_O);input_set_capability(i2c.input_dev, EV_KEY, KEY_C);input_set_capability(i2c.input_dev, EV_KEY, KEY_E);input_set_capability(i2c.input_dev, EV_KEY, KEY_M);
#endif#ifdef TOOLret = create_tool_node();
#endif#ifdef SENSOR_TEST
#ifdef SYS_ATTR_FILEilitek_sensor_test_init();
#endif
#endif#ifdef HALL_CHECK
#if HALL_CHECK == HALL_CHECK_OTHERilitek_hall_check_init();	
#elif HALL_CHECK == HALL_CHECK_HWilitek_hall_check_hw_init();	
#endif //end of HALL_CHECK
#endifReport_Flag=0;#ifdef PLAT_ROCKCHIPi2c.tp.tp_resume = ilitek_i2c_late_resume;i2c.tp.tp_suspend = ilitek_i2c_early_suspend;tp_register_fb(&i2c.tp);
#endif#ifdef ILITEK_ESD_CHECKINIT_DELAYED_WORK(&esd_work, ilitek_touch_esd_func);esd_wq = create_singlethread_workqueue("esd_wq");	 if (!esd_wq) {return -ENOMEM;}queue_delayed_work(esd_wq, &esd_work, delay);
#endif #ifdef WRITE_2210_CFGret = sysfs_create_group(&client->dev.kobj, &ilitek_test_attribute_group);if (ret) {dev_err(&client->dev, "failed to create sysfs attributes: %d\n",ret);return ret;}
#endif
#ifdef DEBUG_NETLINK//netlink_sock = netlink_kernel_create(&init_net, 21, 0,udp_receive, NULL, THIS_MODULE);netlink_sock = netlink_kernel_create(&init_net, 21, &cfg);#endifdevice_init_wakeup(&client->dev, 1);return 0;
}

ilitek_i2c_probe 函数是 I2C 设备的初始化函数,在设备被识别和加载驱动时调用。它的主要职责包括:

  • 初始化设备:根据 I2C 客户端信息和设备 ID 来配置和初始化设备。
  • 分配所需资源:如内存、GPIO 等。
  • 设置中断处理程序(如适用):为设备配置中断。
  • 注册输入设备:根据设备类型设置输入设备的相关参数。

2. ilitek_ts.h

ilitek_ts.h用于定义驱动相关的数据结构、常量、函数原型以及其他必要的包含。该头文件的内容用于抽象和管理与 Ilitek 触摸屏控制器之间的接口。

3. ILI25110CN080O0003_CRC.ili

ILI25110CN080O0003_CRC.ili 可能是与 Ilitek 触摸屏控制器 ILI2511 系列相关的文件。

4. 驱动移植

a.将原厂提供的的驱动(ilitek)拷贝到下面的文件夹:

./kernel/drivers/input/touchscreen

b. 然后修改 touchscreen 目录下的 Makefile以及Kconfig。这个Makefile中定义的就是要编译哪个平台的触摸屏驱动的。

kernel/drivers/input/touchscreen/Makefile中添加:
obj-$(CONFIG_TOUCHSCREEN_ILITEK)     += ilitek/--------------------------------------------------------
kernel/drivers/input/touchscreen/Kconfig中添加:
config TOUCHSCREEN_ILITEKtristate "ILITEK touchscreens matched with screen support for rockchip platform"depends on I2C && ARCH_ROCKCHIPhelpSay Y here if you have a touchscreen interface using the ILITEKtouchscreen chip on Rockchip platform, and your board-specificinitialization code includes that in its table of IIC devices.If unsure, say N.

c. 内核中加载驱动:

kernel/arch/arm/configs/rockchip_defconfig中添加:
CONFIG_TOUCHSCREEN_ILITEK=y

四,调试

  1. 确认 /sys/bus/i2c/devices 下有裝置节点 (-0041);
    在这里插入图片描述
  2. 报点问题:
    有触摸效果,只是坐标 mapping 问题。

X、Y 需要交換。
將 ILITEK_ROTATE_FLAG 设定值由 0 改为 1 或由 1 改为 0。

X、Y 值要做鏡像变化。
將 ILITEK_REVERT_X 或 ILITEK_REVERT_Y 的设定值由 0 改为 1 或由 1 改为 0。

若需要指定显示屏的解析度。
则开放 ILITEK_USE_LCM_RESOLUTION 宏,同时將TOUCH_SCREEN_X_MAX 和 TOUCH_SCREEN_Y_MAX 设为正确值。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.xdnf.cn/news/8887.html

如若内容造成侵权/违法违规/事实不符,请联系一条长河网进行投诉反馈,一经查实,立即删除!

相关文章

【AI写作宝-注册安全分析报告-无验证方式导致安全隐患】

前言 由于网站注册入口容易被黑客攻击&#xff0c;存在如下安全问题&#xff1a; 1. 暴力破解密码&#xff0c;造成用户信息泄露 2. 短信盗刷的安全问题&#xff0c;影响业务及导致用户投诉 3. 带来经济损失&#xff0c;尤其是后付费客户&#xff0c;风险巨大&#xff0c;造…

一文熟悉新版llama.cpp使用并本地部署LLAMA

0. 简介 最近是快到双十一了再给大家上点干货。去年我们写了一个大模型的系列&#xff0c;经过一年&#xff0c;大模型的发展已经日新月异。这一次我们来看一下使用llama.cpp这个项目&#xff0c;其主要解决的是推理过程中的性能问题。主要有两点优化&#xff1a; llama.cpp …

安全、高效、有序的隧道照明能源管理解决方案

徐悦 &#xff08;安科瑞电气股份有限公司 上海嘉定201801&#xff09; 前言 双碳数字化能源管理对高速公路来说是个新鲜事。今年的中央经济工作会议提出&#xff1a;将“做好碳达峰、碳中和工作”作为2021年的任务之一&#xff0c;而我国高速公路里程15.5万公里&#xff0c;…

Navigating Net 算法简介

0. Inro \textbf{0. Inro} 0. Inro 1️⃣一些要用到的符号 ( U , dist ⁡ ) (U, \operatorname{dist}) (U,dist)为基础度量空间&#xff0c; S ⊆ U S \subseteq U S⊆U为包含 n ≥ 2 n \geq 2 n≥2个对象的 Input \text{Input} Input​ h ⌈ log ⁡ 2 diam ⁡ ( S ) ⌉ h\lef…

flutter 语法糖库 flutter_magic 发布 1.0.1

众所周知&#xff0c;flutter 是一款由谷歌开发的跨平台工具&#xff0c;一直在开发者心中久负盛名。 但是语法死亡嵌套是个诟病。 最近有 flutter 开发者 panjing&#xff0c;发布了 flutter 语法精简库&#xff0c;flutter_magic&#xff0c;可以让语法变成类似 swiftui 一…

【日志】392.判断子序列

2024.11.8 【力扣刷题】 392. 判断子序列 - 力扣&#xff08;LeetCode&#xff09;https://leetcode.cn/problems/is-subsequence/?envTypestudy-plan-v2&envIdtop-interview-150 整个题从一开始就是打算从双指针的思想往下走的。但是&#xff0c;我设置了四个变量sLeft…

07 Lambda和StreamAPI

目录 1.Lambda表达式 语法格式&#xff1a; 简单示例 2.函数式接口 常见的函数式接口 1. Supplier 2. Consumer 3. Function,> 4. Predicate 总结 3.流式编程——StreamAPI 基本概念 常见的 Stream 操作 1. 创建 Stream 2. 中间操作 3. 终端操作 简单练习 …

TMDOG的Gin学习笔记_02——Gin集成支付宝支付沙箱环境

TMDOG的Gin学习笔记_02——Gin集成支付宝支付沙箱环境 博客地址&#xff1a;TMDOG的博客 作者自述&#xff1a; 最近忙着整理自己的项目代码&#xff0c;终于有时间更新一下博客。这次的内容是关于如何在Gin框架下集成支付宝的支付沙箱环境&#xff0c;具体包括如何初始化支付…

Docker网络概述

1. Docker 网络概述 1.1 网络组件 Docker网络的核心组件包括网络驱动程序、网络、容器以及IP地址管理&#xff08;IPAM&#xff09;。这些组件共同工作&#xff0c;为容器提供网络连接和通信能力。 网络驱动程序&#xff1a;Docker支持多种网络驱动程序&#xff0c;每种驱动程…

OpenHarmony4.1蓝牙芯片如何适配?触觉智能RK3568主板SBC3568演示

当打开蓝牙后没有反应时&#xff0c;需要排查蓝牙节点是否对应、固件是否加载成功&#xff0c;本文介绍开源鸿蒙OpenHarmony4.1系统下适配蓝牙的方法&#xff0c;触觉智能SBC3568主板演示 修改对应节点 开发板蓝牙硬件连接为UART1&#xff0c;修改对应的节点&#xff0c;路径为…

QT 如何使QLabel的文字垂直显示

想要实现QLabel文字的垂直显示&#xff0c;可以通过使用“文字分割填充换行符”的方式来实现QLabel文字垂直显示的效果&#xff0c;下面是效果图&#xff1a; 具体实现代码&#xff1a; #include "mainwindow.h" #include "ui_mainwindow.h"MainWindow:…

数据结构选择题及答案

一、选择题 1、下列查找方法中&#xff0c;&#xff08; &#xff09;适用于查找有序单链表。 A&#xff0e;分块查找; B&#xff0e;哈希查找; C&#xff0e;顺序查找; D&#xff0e;二分查找; 2、在有n个结点的二叉树的二叉链表表示中&#xff0c;空指针数为( )。 A&#xf…

2024上半年上午30

CPU没有减法器的说法

php实现excel表格数据快速入库

项目场景&#xff1a;大概有一百来份excel表格数据需要整理入库&#xff0c;基础字段一样&#xff0c;如果按照传统的处理方法&#xff0c;需要先整理好数据&#xff08;数据清洗、合并等&#xff09;&#xff0c;并且按照系统导入模板整理出来&#xff0c;费时费力。 需要解决…

【青牛科技】GC5931:工业风扇驱动芯片的卓越替代者

在工业领域&#xff0c;工业风扇的稳定高效运行对于维持良好的生产环境至关重要。而驱动芯片作为工业风扇控制系统的核心元件&#xff0c;其性能直接影响风扇的工作状态。芯麦 GC5931 作为一款新型驱动芯片&#xff0c;在替代 A5931/Allegro 应用于工业风扇中展现出了非凡的优势…

CST案例分析:TLM算法仿真5G毫米波手机天线和整机

5G时代&#xff0c;产品复杂&#xff0c;更新换代快&#xff0c;如何快速仿真不同的设计版本是影响研发效率的关键问题。本期我们用达索系统SIMULIA自己的手机模型来演示5G毫米波的仿真。 &#xff08;图片仅为概念演示&#xff0c;未经达索系统授权不得使用&#xff09; 完整的…

小猿口算炸鱼脚本

目录 写在前面&#xff1a; 一、关于小猿口算&#xff1a; 二、代码逻辑 1.数字识别 2.答题部分 三、代码分享&#xff1a; 补充&#xff1a;软件包下载 写在前面&#xff1a; 最近小猿口算已经被不少大学生攻占&#xff0c;小学生直呼有挂。原本是以为大学生都打着本…

【debug】QT 相关问题error汇总

总结一下碰到过的所有问题error以及解决方案 qt的UI更新之后构建后发现没有变化 取消项目中的Shadow build的勾选&#xff0c;作用是取消影子构建&#xff0c;此后构建目录与源码处于同一目录&#xff0c;每次编译更新程序使用的UI文件error: ‘class QWidget’ has no member…

滑动窗口最大值

239. 滑动窗口最大值 - 力扣&#xff08;LeetCode&#xff09; 题目描述 给你一个整数数组 nums&#xff0c;有一个大小为 k 的滑动窗口从数组的最左侧移动到数组的最右侧。你只可以看到在滑动窗口内的 k 个数字。滑动窗口每次只向右移动一位。 返回 滑动窗口中的最大值 。 …

GEE 案例——利用哨兵-2 图像时间序列和谷歌地球引擎云计算自动绘制和监测香港海洋水质参数

目录 简介 结论 代码 结果 APP链接 引用 简介 对沿海水质的持续监测对于水资源管理和海洋生态系统的可持续性至关重要。 遥感数据&#xff08;如哨兵-2 卫星图像&#xff09;可提供用于时间序列分析的高分辨率观测数据&#xff0c;而基于云的谷歌地球引擎&#xff08;GE…