drm/ofdrm: Use video aperture helpers
authorThomas Zimmermann <tzimmermann@suse.de>
Mon, 30 Sep 2024 13:03:11 +0000 (15:03 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Mon, 14 Oct 2024 13:28:47 +0000 (15:28 +0200)
DRM's aperture functions have long been implemented as helpers
under drivers/video/ for use with fbdev. Avoid the DRM wrappers by
calling the video functions directly.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240930130921.689876-14-tzimmermann@suse.de
drivers/gpu/drm/tiny/ofdrm.c

index 04ffa93..220c124 100644 (file)
@@ -1,10 +1,10 @@
 // SPDX-License-Identifier: GPL-2.0-only
 
+#include <linux/aperture.h>
 #include <linux/of_address.h>
 #include <linux/pci.h>
 #include <linux/platform_device.h>
 
-#include <drm/drm_aperture.h>
 #include <drm/drm_atomic.h>
 #include <drm/drm_atomic_state_helper.h>
 #include <drm/drm_client_setup.h>
@@ -1220,7 +1220,7 @@ static struct ofdrm_device *ofdrm_device_create(struct drm_driver *drv,
        fb_pgbase = round_down(fb_base, PAGE_SIZE);
        fb_pgsize = fb_base - fb_pgbase + round_up(fb_size, PAGE_SIZE);
 
-       ret = devm_aperture_acquire_from_firmware(dev, fb_pgbase, fb_pgsize);
+       ret = devm_aperture_acquire_for_platform_device(pdev, fb_pgbase, fb_pgsize);
        if (ret) {
                drm_err(dev, "could not acquire memory range %pr: error %d\n", &res, ret);
                return ERR_PTR(ret);