]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commit
drm/exynos: g2d: use monotonic timestamps
authorArnd Bergmann <arnd@arndb.de>
Wed, 17 Jan 2018 17:01:21 +0000 (18:01 +0100)
committerInki Dae <inki.dae@samsung.com>
Tue, 20 Feb 2018 00:16:18 +0000 (09:16 +0900)
commita588a8bb7b25a3fb4f7fed00feb7aec541fc2632
treeacd5b8050d6d1ee9ec6714ec1218a1323775bf73
parentbfad2d08e540b18cfd92694fbb388e7d202df31f
drm/exynos: g2d: use monotonic timestamps

The exynos DRM driver uses real-time 'struct timeval' values
for exporting its timestamps to user space. This has multiple
problems:

1. signed seconds overflow in y2038
2. the 'struct timeval' definition is deprecated in the kernel
3. time may jump or go backwards after a 'settimeofday()' syscall
4. other DRM timestamps are in CLOCK_MONOTONIC domain, so they
   can't be compared
5. exporting microseconds requires a division by 1000, which may
   be slow on some architectures.

The code existed in two places before, but the IPP portion was
removed in 8ded59413ccc ("drm/exynos: ipp: Remove Exynos DRM
IPP subsystem"), so we no longer need to worry about it.

Ideally timestamps should just use 64-bit nanoseconds instead, but
of course we can't change that now. Instead, this tries to address
the first four points above by using monotonic 'timespec' values.

According to Tobias Jakobi, user space doesn't care about the
timestamp at the moment, so we can change the format. Even if
there is something looking at them, it will work just fine with
monotonic times as long as the application only looks at the
relative values between two events.

Link: https://patchwork.kernel.org/patch/10038593/
Cc: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Tobias Jakobi <tjakobi@math.uni-bielefeld.de>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
drivers/gpu/drm/exynos/exynos_drm_g2d.c