|
发表于 2020-7-27 17:27:25
7821 浏览 6 回复
MTK CTP porting
本帖最后由 software13 于 2020-7-27 17:39 编辑
TP启动过程及驱动概述:
Mtk Touch driver 驱动包括:Mtkplatform 虚拟平台设备驱动、Module touch IC 驱动、Inputsubsystem。
Mtk platform 设备驱动是mtk为了兼容多个touch IC驱动而设计出来的虚拟驱动,它会去遍历每一个touch IC驱动,直到其中一个初始化成功。
Linux input_subsystem是linux的输入子系统,我们的输入设备都要通过这个子系统进行上报事件以及设置事件的类型。
- static struct tpd_driver_t tpd_device_driver = {
- .tpd_device_name = "FT5x0x",
- .tpd_local_init = tpd_local_init, //tp初始化,主要是注册iic、设置电压、注册中断等
- .suspend = tpd_suspend, //休眠
- .resume = tpd_resume, //唤醒
- .attrs = {
- .attr = ft5x0x_attrs,
- .num = ARRAY_SIZE(ft5x0x_attrs),
- },
- };
复制代码
TP启动流程
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|
|
|
|
|
|
|
楼主|
发表于 2020-7-27 17:51:56
本帖最后由 software13 于 2020-7-27 18:17 编辑
MTK平台添加新的TP:
1.将TP驱动文件添加到touchscreen文件下,路径:kernel-4.4\drivers\input\touchscreen\mediatek\ft5x0x
2.添加对应的TP配置:kernel-4.4\drivers\input\touchscreen\mediatek\kconfig- config TOUCHSCREEN_MTK_FT5X0X
- bool "FT5X0X for Mediatek package"
- default n
- help
- Say Y here if you have FT5X0X touch panel.
- If unsure, say N.
- To compile this dirver as a module, choose M here: the
- module will be called.
- source "drivers/input/touchscreen/mediatek/ft5x0x/Kconfig"
复制代码 3.添加makefile:kernel-4.4\drivers\input\touchscreen\mediatek\makefile- obj-$(CONFIG_TOUCHSCREEN_MTK_FT5X0X) += ft5x0x/
复制代码 4.打开对应TP的宏(把不用的屏蔽掉) kernel-4.4\arch\arm64\configs\k63v1us_64_bsp_defconfig
- CONFIG_TOUCHSCREEN_MTK_FT5X0X=y
复制代码 5.添加TP设备:device\mediateksample\k63v1us_64_bsp\ProjectConfig.mk
- CUSTOM_KERNEL_TOUCHPANEL = ft5x0x(文件名)
复制代码
|
|
|
|
|
|
|
|
楼主|
发表于 2020-7-27 18:18:29
本帖最后由 software13 于 2020-7-27 19:02 编辑
根据硬件接口配置dts:kernel-4.9\arch\arm\boot\dts\k61v1_32.dts - &touch {
- tpd-resolution = <720 1280>;/*分辨率*/
- use-tpd-button = <0>;/*是否有TP按键,有为1,无为0.*/
- tpd-key-num = <3>;/*TP按键个数*/
- tpd-key-local= <139 172 158 0>;/*按键编码 一般设置为meun、home、back */
- tpd-key-dim-local = <90 883 100 40 230 883 100 40 370 883 100 40 0 0 0 0>;
- /*<90 883 100 40> 代表meun key 中心坐标(90,883),100是key的宽度,40是高度*/
- tpd-max-touch-num = <5>;/*支持最大的触摸点数*/
- tpd-filter-enable = <1>;
- tpd-filter-pixel-density = <186>;
- tpd-filter-custom-prameters = <0 0 0 0 0 0 0 0 0 0 0 0>;
- tpd-filter-custom-speed = <0 0 0>;
- pinctrl-names = "default", "state_eint_as_int", "state_eint_output0", "state_eint_output1",
- "state_rst_output0", "state_rst_output1";
- pinctrl-0 = <&ctp_pins_default>;
- pinctrl-1 = <&ctp_pins_eint_as_int>;
- pinctrl-2 = <&ctp_pins_eint_output0>;
- pinctrl-3 = <&ctp_pins_eint_output1>;
- pinctrl-4 = <&ctp_pins_rst_output0>;
- pinctrl-5 = <&ctp_pins_rst_output1>;
- status = "okay";
- };
- &pio {
- /*配置中断pin*/
- ctp_pins_default: eint0default {
- };
- ctp_pins_eint_as_int: eint@0 {
- pins_cmd_dat {
- pins = <PINMUX_GPIO0__FUNC_GPIO0>;
- slew-rate = <0>;
- bias-disable;
- };
- };
- ctp_pins_eint_output0: eintoutput0 {
- pins_cmd_dat {
- pins = <PINMUX_GPIO0__FUNC_GPIO0>;
- slew-rate = <1>;
- output-low;
- };
- };
- ctp_pins_eint_output1: eintoutput1 {
- pins_cmd_dat {
- pins = <PINMUX_GPIO0__FUNC_GPIO0>;
- slew-rate = <1>;
- output-high;
- };
- };
- /*配置复位pin*/
- ctp_pins_rst_output0: rstoutput0 {
- pins_cmd_dat {
- pins = <PINMUX_GPIO90__FUNC_GPIO90>;
- slew-rate = <1>;
- output-low;
- };
- };
- ctp_pins_rst_output1: rstoutput1 {
- pins_cmd_dat {
- pins = <PINMUX_GPIO90__FUNC_GPIO90>;
- slew-rate = <1>;
- output-high;
- };
- };
- };
复制代码
|
|
|
|
|
|
|
|
发表于 2020-8-27 14:14:04
XY6580开发板对应的哪个驱动文件路径,还有以上第四第五步路径位置 |
|
|
|
|
|
|
|
XY6580的内核配置文件在:kernel-3.18\arch\arm\configs\k80_bsp_defconfig
dts文件路径在:kernel-3.18\arch\arm\boot\dts\k80_bsp.dts
CTP的驱动路径在:kernel-3.18\drivers\input\touchscreen\mediatek\ft5x0x |
|
手机微信同号:13682654092
|
|
|
|
|
|
本帖最后由 tangh 于 2020-9-8 19:15 编辑
该CTP的整篇移植部分缺少关于I2C的配置,MTK平台默认是将I2C的配置集成在了dws文件里面,通过工具直接修改dws文件并保存之后,编译时再会生成cust.dtsi文件,那我们如果需要更改ctp的i2c配置,方法如下:
android 8.1及以后
dws工具路径:vendor\mediatek\proprietary\scripts\dct\DrvGen.exe
DWS文件路径(MT6765为例):alps-release-p0.mp1-V5\kernel-4.9\drivers\misc\mediatek\dws\mt6765\k65v1_64_bsp.dws
详细的操作步骤参考附件中的图片所示:
保存之后,执行make -j24编译,查看生成文件:
alps-release-p0.mp1-V5\out\target\product\k65v1_64_bsp\obj\KERNEL_OBJ\arch\arm64\boot\dts\k65v1_64_bsp\cust.dtsi
- cap_touch_mtk:cap_touch@38 {
- compatible = "mediatek,cap_touch";
- reg = <0x38>;
- status = "okay";
- };
复制代码 说明已经修改到了。
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|
手机微信同号:13682654092
|
|
|
|
|
登录或注册
|