]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm: mali-dp: use div_u64 for expensive 64-bit divisions
authorArnd Bergmann <arnd@arndb.de>
Tue, 25 Apr 2017 19:56:53 +0000 (21:56 +0200)
committerLiviu Dudau <Liviu.Dudau@arm.com>
Wed, 26 Apr 2017 16:54:58 +0000 (17:54 +0100)
On 32-bit machines, we can't divide 64-bit integers:

drivers/gpu/drm/arm/malidp_crtc.o: In function `malidp_crtc_atomic_check':
malidp_crtc.c:(.text.malidp_crtc_atomic_check+0x3c0): undefined reference to `__aeabi_uldivmod'
malidp_crtc.c:(.text.malidp_crtc_atomic_check+0x3dc): undefined reference to `__aeabi_uldivmod'

This calls the div_u64 function explicitly instead.

Fixes: 4cea4e9f6690 ("drm: mali-dp: Add plane upscaling support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
drivers/gpu/drm/arm/malidp_crtc.c

index 19f1f3b346912c591850148775bd8c6542daf81c..9446a673d46950883e8a21911eaebc90023add20 100644 (file)
@@ -266,7 +266,6 @@ static int malidp_crtc_atomic_check_scaling(struct drm_crtc *crtc,
 
        drm_atomic_crtc_state_for_each_plane_state(plane, pstate, state) {
                struct malidp_plane *mp = to_malidp_plane(plane);
-               u64 crtc_w, crtc_h;
                u32 phase;
 
                if (!(mp->layer->id & scaling))
@@ -276,10 +275,10 @@ static int malidp_crtc_atomic_check_scaling(struct drm_crtc *crtc,
                 * Convert crtc_[w|h] to U32.32, then divide by U16.16 src_[w|h]
                 * to get the U16.16 result.
                 */
-               crtc_w = (u64)pstate->crtc_w << 32;
-               crtc_h = (u64)pstate->crtc_h << 32;
-               h_upscale_factor = (u32)(crtc_w / pstate->src_w);
-               v_upscale_factor = (u32)(crtc_h / pstate->src_h);
+               h_upscale_factor = div_u64((u64)pstate->crtc_w << 32,
+                                          pstate->src_w);
+               v_upscale_factor = div_u64((u64)pstate->crtc_h << 32,
+                                          pstate->src_h);
 
                s->enhancer_enable = ((h_upscale_factor >> 16) >= 2 ||
                                      (v_upscale_factor >> 16) >= 2);