Jump to content

Screen Calibration: Difference between revisions

From postmarketOS Wiki
m Ollieparanoid moved page Screen-Calibration to Screen Calibration
update to gitlab.postmarketos.org
 
(24 intermediate revisions by 12 users not shown)
Line 5: Line 5:
If your framebuffer does not work out of the box, try the following:
If your framebuffer does not work out of the box, try the following:


* Run this to set the framebuffer resolution: <code>cat /sys/class/graphics/fb0/modes &gt; /sys/class/graphics/fb0/mode</code>
* Boot TWRP/Android and read out the correct framebuffer configurations from the /sys... paths and try to set them in pmOS
* Boot TWRP/Android and read out the correct framebuffer configurations from the /sys... paths and try to set them in pmOS
* If you made it work, create an initfs hook, that instantly sets the framebuffer right. [https://github.com/postmarketOS/pmbootstrap/blob/ad17254e86b7dab4f87e139eaeb298222f37a031/aports/device/device-lg-mako/initfs-hook.sh Example]
* If you made it work, create an initfs hook, that instantly sets the framebuffer right. [https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/blob/ad17254e86b7dab4f87e139eaeb298222f37a031/aports/device/device-mozilla-flame/initfs-hook.sh Example] (NOTE: old, later [https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/commit/10a163c265c844127f43db09ac094ff06b05ed65 replaced by MDSS driver]).


If the screen looks laggy, it might be a known issue with refresh rate. It can be solved by hardcoding the refresh rate in the video driver, see [https://github.com/postmarketOS/pmbootstrap/blob/ad17254e86b7dab4f87e139eaeb298222f37a031/aports/device/linux-sony-amami/mdss_fb_refresh_rate.patch mdss_fb_refresh_rate.patch].
If the screen looks laggy, it might be a known issue with refresh rate. It can be solved by hardcoding the refresh rate in the video driver, see  
[https://gitlab/postmarketOS/pmbootstrap/-/blob/ad17254e86b7dab4f87e139eaeb298222f37a031/aports/device/linux-sony-amami/mdss_fb_refresh_rate.patch mdss_fb_refresh_rate.patch].


== Weston ==
== Touch screen ==
 
See also [[Troubleshooting:touchscreen|touchscreen troubleshooting]].
 
=== libinput ===
This library is used by almost everything accessing your touch screen (e.g. Weston, X11, kwin). Just follow [[Osk-sdl#Set_touchscreen_device|these instructions]] to set your <code>deviceinfo_dev_touchscreen</code> variable in the [[deviceinfo]] file.
 
Modern [[Device specific package|device specific packages]] will generate the udev-rule automatically then, and as nice side-effect it will also work in <code>osk-sdl</code>.
 
If your device package does not generate the udev rule, please adjust the <code>build()</code> and <code>install()</code> functions as described [[Device specific package|here]]. For debugging use the [https://wayland.freedesktop.org/libinput/doc/latest/tools.html libinput Helper tools], e.g. <code>libinput debug-events '''--verbose'''</code>; [https://wayland.freedesktop.org/libinput/doc/latest/udev_config.html Static device configuration via udev] lists the configuration possibilities via udev.
 
==== Calibration (needed for resistive touch screens and or when the touch screen is rotated) ====
Please test first if your device works without any special calibration - in most cases you don't need it!
 
* Install postmarketOS with Weston on your phone
* Connect to your phone via SSH
* Run <code>weston-calibrator</code>
* (Optional) check below how to adjust the values. As it is hard to hit the crosses in weston-calibrator exactly you will get slightly wrong values easily but usually it is also easy to find out what the exact values are.
* Adjust your <code>deviceinfo_dev_touchscreen_calibration</code> to the output from <code>weston-calibrator</code> ([https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/merge_requests/1034/diffs#diff-content-4c87ceae4adc10c96fda5856201370b24ee9eab3 example]).
 
==== Adjust the generated values ====
 
Let the 6 calibration values be <code>A B C D E F</code>. Then the x and y coordinate of the touch input are translated into <code>x' = Ax + By + C</code> and <code>y' = Dx + Ey + F</code> according to {{issue|182}}.
Basically this means the following:
 
* Unless your touchscreen is slightly rotated (i.e., not 90° but like 1° or 2°), which is very unlikely, either A and E or B and D should be 0. If you get values close to 0 (i.e., smaller than 0.1 or so, larger values if you were not so precise) just set them to 0.
* The non-zero values of A, B, D and E should usually be 1 or -1. If you get values close to that, just set them to 1 or -1. At least for the Samsung n5110 <code>weston-calibrator</code> returned the aspect ratio of the screen (i.e., width/height or height/width) for these values. While this might be another likely value, it turned out to be wrong and 1/-1 turned out to be correct.
* The remaining two values, C and F, are pixel offsets. Therefore, you can easily get -20 or +17 here depending on how accurate you were. If your touchscreen has the same size as the display, these values should be either set to 0 or the display width or height (then probably in combination with a -1 for the same dimension, e.g. "0 1 0 -1 0 800" for a display height of 800px). Note that these last values have a different meaning in X.Org/libinput: here, it seems, the values are multiplied by the device width/height, so instead of the height/width, use 1.
 
If you have doubts if a certain value should be 0 or not, a good test is also to just run <code>weston-calibrator</code> multiple times. If the value is sometimes positive, sometimes negative, it should be 0.
 
Further information about the calibration matrix can be found in the [https://wayland.freedesktop.org/libinput/doc/latest/api/group__config.html#ga09a798f58cc601edd2797780096e9804 libinput documentation].
 
=== tslib ===
If <code>weston-calibrator</code> does not work for you, consider using <code>tslib</code> and converting the resulting calibration data afterwards (see {{MR|1493}} and [https://lists.freedesktop.org/archives/wayland-devel/2014-September/017581.html this mail]).
F
== Legacy ==
=== libinput: old method ===
{{syslog|weston}}
Here is how to do it without <code>devicepkg-dev</code> (not recommended, for reference only).


* Make sure, that Weston runs on the device
* Make sure, that Weston runs on the device
* Look in <code>/tmp/weston.log</code> (via SSH) for the touch device name. For <code>lg-mako</code>, the name is <code>touch_dev</code>, but it may be different for your device.
* Look in the logs (via SSH) for the touch device name. For <code>lg-mako</code>, the name is <code>touch_dev</code>, but it may be different for your device.
* Copy [https://github.com/postmarketOS/pmbootstrap/blob/master/aports/device/device-lg-mako/90-android-touch-dev.rules 90-android-touch-dev.rules] from <code>device-lg-mako</code> to your device's aport. Replace <code>touch_dev</code> with your touch device name. Adjust the <code>APKBUILD</code>, so it gets installed properly ([https://github.com/postmarketOS/pmbootstrap/blob/master/aports/device-lg-mako/APKBUILD Example])
* Copy [https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/blob/master/aports/device/device-lg-mako/90-android-touch-dev.rules 90-android-touch-dev.rules] from <code>device-lg-mako</code> to your device's aport. Replace <code>touch_dev</code> with your touch device name. Adjust the <code>APKBUILD</code>, so it gets installed properly ([https://gitlab.postmarketos.org/postmarketOS/pmbootstrap/-/blob/master/aports/device/device-lg-mako/APKBUILD Example])


<pre># use 'weston-calibrator' to calibrate the touchscreen!
<pre>
SUBSYSTEM==&quot;input&quot;, ATTRS{name}==&quot;touch_dev&quot;, \
SUBSYSTEM==&quot;input&quot;, ATTRS{name}==&quot;touch_dev&quot;, \
ENV{ID_INPUT}=&quot;1&quot;, ENV{ID_INPUT_TOUCHSCREEN}=&quot;1&quot; \
ENV{ID_INPUT}=&quot;1&quot;, ENV{ID_INPUT_TOUCHSCREEN}=&quot;1&quot;
ENV{WL_CALIBRATION}=&quot;0.982113 -0.006129 1.983124 -0.002560 1.000800 -6.012451&quot;</pre>
</pre>
Reload udev rules:
Reload udev rules:


<source lang="bash"># Reload all rules
<syntaxhighlight lang="bash">
# Reload all rules
udevadm control --reload
udevadm control --reload
# Re-apply those rules on all devices
# Re-apply those rules on all devices
udevadm trigger</source>
udevadm trigger
* This calibration may just work fine (it has been reported, that it works on <code>hammerhead</code>). If it does, you are done here. Otherwise continue for the calibration.
</syntaxhighlight>
* Connect to your phone via SSH
 
* Get a root shell: <code>sudo su -</code> (Because right now, Weston runs as root)
[[Category:Guide]]
* Run <code>weston-calibrator</code> as root
* Adjust your udev rules-file to the output from <code>weston-calibrator</code>

Latest revision as of 09:21, 3 November 2024

Framebuffer

On most Android devices, a somewhat working framebuffer is required to get Weston and other Wayland compositors running. The alternative to framebuffer would be DRI.

If your framebuffer does not work out of the box, try the following:

  • Boot TWRP/Android and read out the correct framebuffer configurations from the /sys... paths and try to set them in pmOS
  • If you made it work, create an initfs hook, that instantly sets the framebuffer right. Example (NOTE: old, later replaced by MDSS driver).

If the screen looks laggy, it might be a known issue with refresh rate. It can be solved by hardcoding the refresh rate in the video driver, see mdss_fb_refresh_rate.patch.

Touch screen

See also touchscreen troubleshooting.

libinput

This library is used by almost everything accessing your touch screen (e.g. Weston, X11, kwin). Just follow these instructions to set your deviceinfo_dev_touchscreen variable in the deviceinfo file.

Modern device specific packages will generate the udev-rule automatically then, and as nice side-effect it will also work in osk-sdl.

If your device package does not generate the udev rule, please adjust the build() and install() functions as described here. For debugging use the libinput Helper tools, e.g. libinput debug-events --verbose; Static device configuration via udev lists the configuration possibilities via udev.

Calibration (needed for resistive touch screens and or when the touch screen is rotated)

Please test first if your device works without any special calibration - in most cases you don't need it!

  • Install postmarketOS with Weston on your phone
  • Connect to your phone via SSH
  • Run weston-calibrator
  • (Optional) check below how to adjust the values. As it is hard to hit the crosses in weston-calibrator exactly you will get slightly wrong values easily but usually it is also easy to find out what the exact values are.
  • Adjust your deviceinfo_dev_touchscreen_calibration to the output from weston-calibrator (example).

Adjust the generated values

Let the 6 calibration values be A B C D E F. Then the x and y coordinate of the touch input are translated into x' = Ax + By + C and y' = Dx + Ey + F according to #182. Basically this means the following:

  • Unless your touchscreen is slightly rotated (i.e., not 90° but like 1° or 2°), which is very unlikely, either A and E or B and D should be 0. If you get values close to 0 (i.e., smaller than 0.1 or so, larger values if you were not so precise) just set them to 0.
  • The non-zero values of A, B, D and E should usually be 1 or -1. If you get values close to that, just set them to 1 or -1. At least for the Samsung n5110 weston-calibrator returned the aspect ratio of the screen (i.e., width/height or height/width) for these values. While this might be another likely value, it turned out to be wrong and 1/-1 turned out to be correct.
  • The remaining two values, C and F, are pixel offsets. Therefore, you can easily get -20 or +17 here depending on how accurate you were. If your touchscreen has the same size as the display, these values should be either set to 0 or the display width or height (then probably in combination with a -1 for the same dimension, e.g. "0 1 0 -1 0 800" for a display height of 800px). Note that these last values have a different meaning in X.Org/libinput: here, it seems, the values are multiplied by the device width/height, so instead of the height/width, use 1.

If you have doubts if a certain value should be 0 or not, a good test is also to just run weston-calibrator multiple times. If the value is sometimes positive, sometimes negative, it should be 0.

Further information about the calibration matrix can be found in the libinput documentation.

tslib

If weston-calibrator does not work for you, consider using tslib and converting the resulting calibration data afterwards (see !1493 and this mail). F

Legacy

libinput: old method

Relevant syslog entries: logread -f | grep weston

Here is how to do it without devicepkg-dev (not recommended, for reference only).

  • Make sure, that Weston runs on the device
  • Look in the logs (via SSH) for the touch device name. For lg-mako, the name is touch_dev, but it may be different for your device.
  • Copy 90-android-touch-dev.rules from device-lg-mako to your device's aport. Replace touch_dev with your touch device name. Adjust the APKBUILD, so it gets installed properly (Example)
SUBSYSTEM=="input", ATTRS{name}=="touch_dev", \
ENV{ID_INPUT}="1", ENV{ID_INPUT_TOUCHSCREEN}="1"

Reload udev rules:

# Reload all rules
udevadm control --reload
# Re-apply those rules on all devices
udevadm trigger