1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
8 #include <drm/drm_fb_helper.h>
9 #include <drm/drm_fourcc.h>
10 #include <drm/drm_probe_helper.h>
12 #include "rockchip_drm_drv.h"
13 #include "rockchip_drm_gem.h"
14 #include "rockchip_drm_fb.h"
15 #include "rockchip_drm_fbdev.h"
17 #define PREFERRED_BPP 32
18 #define to_drm_private(x) \
19 container_of(x, struct rockchip_drm_private, fbdev_helper)
21 static int rockchip_fbdev_mmap(struct fb_info *info,
22 struct vm_area_struct *vma)
24 struct drm_fb_helper *helper = info->par;
25 struct rockchip_drm_private *private = to_drm_private(helper);
27 return rockchip_gem_mmap_buf(private->fbdev_bo, vma);
30 static const struct fb_ops rockchip_drm_fbdev_ops = {
32 DRM_FB_HELPER_DEFAULT_OPS,
33 .fb_mmap = rockchip_fbdev_mmap,
34 .fb_fillrect = drm_fb_helper_cfb_fillrect,
35 .fb_copyarea = drm_fb_helper_cfb_copyarea,
36 .fb_imageblit = drm_fb_helper_cfb_imageblit,
39 static int rockchip_drm_fbdev_create(struct drm_fb_helper *helper,
40 struct drm_fb_helper_surface_size *sizes)
42 struct rockchip_drm_private *private = to_drm_private(helper);
43 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
44 struct drm_device *dev = helper->dev;
45 struct rockchip_gem_object *rk_obj;
46 struct drm_framebuffer *fb;
47 unsigned int bytes_per_pixel;
53 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8);
55 mode_cmd.width = sizes->surface_width;
56 mode_cmd.height = sizes->surface_height;
57 mode_cmd.pitches[0] = sizes->surface_width * bytes_per_pixel;
58 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
59 sizes->surface_depth);
61 size = mode_cmd.pitches[0] * mode_cmd.height;
63 rk_obj = rockchip_gem_create_object(dev, size, true);
67 private->fbdev_bo = &rk_obj->base;
69 fbi = drm_fb_helper_alloc_fbi(helper);
71 DRM_DEV_ERROR(dev->dev, "Failed to create framebuffer info.\n");
76 helper->fb = rockchip_drm_framebuffer_init(dev, &mode_cmd,
78 if (IS_ERR(helper->fb)) {
79 DRM_DEV_ERROR(dev->dev,
80 "Failed to allocate DRM framebuffer.\n");
81 ret = PTR_ERR(helper->fb);
85 fbi->fbops = &rockchip_drm_fbdev_ops;
88 drm_fb_helper_fill_info(fbi, helper, sizes);
90 offset = fbi->var.xoffset * bytes_per_pixel;
91 offset += fbi->var.yoffset * fb->pitches[0];
93 dev->mode_config.fb_base = 0;
94 fbi->screen_base = rk_obj->kvaddr + offset;
95 fbi->screen_size = rk_obj->base.size;
96 fbi->fix.smem_len = rk_obj->base.size;
98 DRM_DEBUG_KMS("FB [%dx%d]-%d kvaddr=%p offset=%ld size=%zu\n",
99 fb->width, fb->height, fb->format->depth,
106 rockchip_gem_free_object(&rk_obj->base);
110 static const struct drm_fb_helper_funcs rockchip_drm_fb_helper_funcs = {
111 .fb_probe = rockchip_drm_fbdev_create,
114 int rockchip_drm_fbdev_init(struct drm_device *dev)
116 struct rockchip_drm_private *private = dev->dev_private;
117 struct drm_fb_helper *helper;
120 if (!dev->mode_config.num_crtc || !dev->mode_config.num_connector)
123 helper = &private->fbdev_helper;
125 drm_fb_helper_prepare(dev, helper, &rockchip_drm_fb_helper_funcs);
127 ret = drm_fb_helper_init(dev, helper);
129 DRM_DEV_ERROR(dev->dev,
130 "Failed to initialize drm fb helper - %d.\n",
135 ret = drm_fb_helper_initial_config(helper, PREFERRED_BPP);
137 DRM_DEV_ERROR(dev->dev,
138 "Failed to set initial hw config - %d.\n",
140 goto err_drm_fb_helper_fini;
145 err_drm_fb_helper_fini:
146 drm_fb_helper_fini(helper);
150 void rockchip_drm_fbdev_fini(struct drm_device *dev)
152 struct rockchip_drm_private *private = dev->dev_private;
153 struct drm_fb_helper *helper;
155 helper = &private->fbdev_helper;
157 drm_fb_helper_unregister_fbi(helper);
160 drm_framebuffer_put(helper->fb);
162 drm_fb_helper_fini(helper);