This is not a complete guide. But a start for future discussions.
As far as we know, companies may or may not include touchscreen drivers in the kernel. In such situations, experts analyze the kernel and modify it to include the correct driver and try to make the touch screen work. If you've seen the situation happen and you don't have extra touchscreen driver files, go to the links to learn about it or ask for help:
How to modify a (Meditek) Android kernel - github thanks for @ADeadTrousers
Unlocking touchpad driver when booting in recovery mode on MTK processors - 4pda thanks for Chela_vek
Touch Input not working on TWRP 3.1.1 for Mediatek MT6753 Device - github
Nowadays, some companies have decided to separate into a file or other files that can determine touchscreen drivers and touchscreen operation. In this sense, it is important for those who are going to compile the custom recovery to pay attention to some definitions in the device tree and to the correct files.
Some time ago I saw some devices with these details and today I also had to think about it because I received a device with the same problem. I researched some possible solutions and left posts here: Problem with touch screen
I've even made some changes like this before but I had no idea it was a solution to the problem because there were no devices available to solve it.
Now everyone who is going to collect (compile or PORTing) custom recovery should pay attention to firmware files
Is need the stock ROM to get the vendor.img and extracting that to have \vendor\firmware\files - May have one or more files.
-
With PORTing
- Copy the files like novatek****.bin and or chippone-tddi-****.bin (specially for XiaoMi devices) in the \ramdisk\vendor\firmware\
- Repack and have the new-file.img
- Test.
-
Compiling
-
Add files to the device tree in the same way in the structure device_manufacture_model /recovery/root/vendor/firmware/files
-
Change
false
or unset#
the device_manufacture_model/BoardConfig.mk optionTW_SCREEN_BLANK_ON_BOOT := true
for this
#TW_SCREEN_BLANK_ON_BOOT := true
-
Some devices come with additional locks, and only those who understand the source code of the device can try to change something and do the necessary tests. I'm talking about compiling a new kernel, which is more complicated. But there is a thread for this on xda or 4pda.
It all depends on what you have and what you can do.
📴
thanks