]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/armada: Use regular fbdev I/O helpers
authorThomas Zimmermann <tzimmermann@suse.de>
Tue, 30 May 2023 15:12:18 +0000 (17:12 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Thu, 1 Jun 2023 10:26:47 +0000 (12:26 +0200)
Use the regular fbdev helpers for framebuffer I/O instead of DRM's
helpers. Armada does not use damage handling, so DRM's fbdev helpers
are mere wrappers around the fbdev code.

By using fbdev helpers directly within each DRM fbdev emulation,
we can eventually remove DRM's wrapper functions entirely.

v4:
* use initializer macros for struct fb_ops
v2:
* use FB_IO_HELPERS option

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Russell King <linux@armlinux.org.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20230530151228.22979-4-tzimmermann@suse.de
drivers/gpu/drm/armada/Kconfig
drivers/gpu/drm/armada/armada_fbdev.c

index f5c66d89ba99768dfbf4fb87ae206351d0a8d4b3..5afade25e217df39c00e0d0aa133d561ffe8f297 100644 (file)
@@ -3,6 +3,7 @@ config DRM_ARMADA
        tristate "DRM support for Marvell Armada SoCs"
        depends on DRM && HAVE_CLK && ARM && MMU
        select DRM_KMS_HELPER
+       select FB_IO_HELPERS if DRM_FBDEV_EMULATION
        help
          Support the "LCD" controllers found on the Marvell Armada 510
          devices.  There are two controllers on the device, each controller
index 0a5fd1aa86ebdf2d1b5d872e47d73b3ab7247335..3943e89cc06c826b768009222aef337cbbc7e2af 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include <linux/errno.h>
+#include <linux/fb.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
 
@@ -33,12 +34,8 @@ static void armada_fbdev_fb_destroy(struct fb_info *info)
 
 static const struct fb_ops armada_fb_ops = {
        .owner          = THIS_MODULE,
+       FB_DEFAULT_IO_OPS,
        DRM_FB_HELPER_DEFAULT_OPS,
-       .fb_read        = drm_fb_helper_cfb_read,
-       .fb_write       = drm_fb_helper_cfb_write,
-       .fb_fillrect    = drm_fb_helper_cfb_fillrect,
-       .fb_copyarea    = drm_fb_helper_cfb_copyarea,
-       .fb_imageblit   = drm_fb_helper_cfb_imageblit,
        .fb_destroy     = armada_fbdev_fb_destroy,
 };