treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / drivers / gpu / drm / exynos / exynos_drm_fbdev.c
blob647a1fd1d815b6135253caa3c70c5fbb15489cf0
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* exynos_drm_fbdev.c
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * Authors:
6 * Inki Dae <inki.dae@samsung.com>
7 * Joonyoung Shim <jy0922.shim@samsung.com>
8 * Seung-Woo Kim <sw0312.kim@samsung.com>
9 */
11 #include <linux/console.h>
12 #include <linux/dma-mapping.h>
13 #include <linux/vmalloc.h>
15 #include <drm/drm_crtc.h>
16 #include <drm/drm_fb_helper.h>
17 #include <drm/drm_fourcc.h>
18 #include <drm/drm_probe_helper.h>
19 #include <drm/exynos_drm.h>
21 #include "exynos_drm_drv.h"
22 #include "exynos_drm_fb.h"
23 #include "exynos_drm_fbdev.h"
25 #define MAX_CONNECTOR 4
26 #define PREFERRED_BPP 32
28 #define to_exynos_fbdev(x) container_of(x, struct exynos_drm_fbdev,\
29 drm_fb_helper)
31 struct exynos_drm_fbdev {
32 struct drm_fb_helper drm_fb_helper;
33 struct exynos_drm_gem *exynos_gem;
36 static int exynos_drm_fb_mmap(struct fb_info *info,
37 struct vm_area_struct *vma)
39 struct drm_fb_helper *helper = info->par;
40 struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(helper);
41 struct exynos_drm_gem *exynos_gem = exynos_fbd->exynos_gem;
42 unsigned long vm_size;
43 int ret;
45 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
47 vm_size = vma->vm_end - vma->vm_start;
49 if (vm_size > exynos_gem->size)
50 return -EINVAL;
52 ret = dma_mmap_attrs(to_dma_dev(helper->dev), vma, exynos_gem->cookie,
53 exynos_gem->dma_addr, exynos_gem->size,
54 exynos_gem->dma_attrs);
55 if (ret < 0) {
56 DRM_DEV_ERROR(to_dma_dev(helper->dev), "failed to mmap.\n");
57 return ret;
60 return 0;
63 static const struct fb_ops exynos_drm_fb_ops = {
64 .owner = THIS_MODULE,
65 DRM_FB_HELPER_DEFAULT_OPS,
66 .fb_mmap = exynos_drm_fb_mmap,
67 .fb_fillrect = drm_fb_helper_cfb_fillrect,
68 .fb_copyarea = drm_fb_helper_cfb_copyarea,
69 .fb_imageblit = drm_fb_helper_cfb_imageblit,
72 static int exynos_drm_fbdev_update(struct drm_fb_helper *helper,
73 struct drm_fb_helper_surface_size *sizes,
74 struct exynos_drm_gem *exynos_gem)
76 struct fb_info *fbi;
77 struct drm_framebuffer *fb = helper->fb;
78 unsigned int size = fb->width * fb->height * fb->format->cpp[0];
79 unsigned int nr_pages;
80 unsigned long offset;
82 fbi = drm_fb_helper_alloc_fbi(helper);
83 if (IS_ERR(fbi)) {
84 DRM_DEV_ERROR(to_dma_dev(helper->dev),
85 "failed to allocate fb info.\n");
86 return PTR_ERR(fbi);
89 fbi->fbops = &exynos_drm_fb_ops;
91 drm_fb_helper_fill_info(fbi, helper, sizes);
93 nr_pages = exynos_gem->size >> PAGE_SHIFT;
95 exynos_gem->kvaddr = (void __iomem *) vmap(exynos_gem->pages, nr_pages,
96 VM_MAP, pgprot_writecombine(PAGE_KERNEL));
97 if (!exynos_gem->kvaddr) {
98 DRM_DEV_ERROR(to_dma_dev(helper->dev),
99 "failed to map pages to kernel space.\n");
100 return -EIO;
103 offset = fbi->var.xoffset * fb->format->cpp[0];
104 offset += fbi->var.yoffset * fb->pitches[0];
106 fbi->screen_base = exynos_gem->kvaddr + offset;
107 fbi->screen_size = size;
108 fbi->fix.smem_len = size;
110 return 0;
113 static int exynos_drm_fbdev_create(struct drm_fb_helper *helper,
114 struct drm_fb_helper_surface_size *sizes)
116 struct exynos_drm_fbdev *exynos_fbdev = to_exynos_fbdev(helper);
117 struct exynos_drm_gem *exynos_gem;
118 struct drm_device *dev = helper->dev;
119 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
120 unsigned long size;
121 int ret;
123 DRM_DEV_DEBUG_KMS(dev->dev,
124 "surface width(%d), height(%d) and bpp(%d\n",
125 sizes->surface_width, sizes->surface_height,
126 sizes->surface_bpp);
128 mode_cmd.width = sizes->surface_width;
129 mode_cmd.height = sizes->surface_height;
130 mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3);
131 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
132 sizes->surface_depth);
134 size = mode_cmd.pitches[0] * mode_cmd.height;
136 exynos_gem = exynos_drm_gem_create(dev, EXYNOS_BO_CONTIG, size);
138 * If physically contiguous memory allocation fails and if IOMMU is
139 * supported then try to get buffer from non physically contiguous
140 * memory area.
142 if (IS_ERR(exynos_gem) && is_drm_iommu_supported(dev)) {
143 dev_warn(dev->dev, "contiguous FB allocation failed, falling back to non-contiguous\n");
144 exynos_gem = exynos_drm_gem_create(dev, EXYNOS_BO_NONCONTIG,
145 size);
148 if (IS_ERR(exynos_gem))
149 return PTR_ERR(exynos_gem);
151 exynos_fbdev->exynos_gem = exynos_gem;
153 helper->fb =
154 exynos_drm_framebuffer_init(dev, &mode_cmd, &exynos_gem, 1);
155 if (IS_ERR(helper->fb)) {
156 DRM_DEV_ERROR(dev->dev, "failed to create drm framebuffer.\n");
157 ret = PTR_ERR(helper->fb);
158 goto err_destroy_gem;
161 ret = exynos_drm_fbdev_update(helper, sizes, exynos_gem);
162 if (ret < 0)
163 goto err_destroy_framebuffer;
165 return ret;
167 err_destroy_framebuffer:
168 drm_framebuffer_cleanup(helper->fb);
169 err_destroy_gem:
170 exynos_drm_gem_destroy(exynos_gem);
173 * if failed, all resources allocated above would be released by
174 * drm_mode_config_cleanup() when drm_load() had been called prior
175 * to any specific driver such as fimd or hdmi driver.
178 return ret;
181 static const struct drm_fb_helper_funcs exynos_drm_fb_helper_funcs = {
182 .fb_probe = exynos_drm_fbdev_create,
185 int exynos_drm_fbdev_init(struct drm_device *dev)
187 struct exynos_drm_fbdev *fbdev;
188 struct exynos_drm_private *private = dev->dev_private;
189 struct drm_fb_helper *helper;
190 int ret;
192 if (!dev->mode_config.num_crtc)
193 return 0;
195 fbdev = kzalloc(sizeof(*fbdev), GFP_KERNEL);
196 if (!fbdev)
197 return -ENOMEM;
199 private->fb_helper = helper = &fbdev->drm_fb_helper;
201 drm_fb_helper_prepare(dev, helper, &exynos_drm_fb_helper_funcs);
203 ret = drm_fb_helper_init(dev, helper, MAX_CONNECTOR);
204 if (ret < 0) {
205 DRM_DEV_ERROR(dev->dev,
206 "failed to initialize drm fb helper.\n");
207 goto err_init;
210 ret = drm_fb_helper_single_add_all_connectors(helper);
211 if (ret < 0) {
212 DRM_DEV_ERROR(dev->dev,
213 "failed to register drm_fb_helper_connector.\n");
214 goto err_setup;
218 ret = drm_fb_helper_initial_config(helper, PREFERRED_BPP);
219 if (ret < 0) {
220 DRM_DEV_ERROR(dev->dev,
221 "failed to set up hw configuration.\n");
222 goto err_setup;
225 return 0;
227 err_setup:
228 drm_fb_helper_fini(helper);
230 err_init:
231 private->fb_helper = NULL;
232 kfree(fbdev);
234 return ret;
237 static void exynos_drm_fbdev_destroy(struct drm_device *dev,
238 struct drm_fb_helper *fb_helper)
240 struct exynos_drm_fbdev *exynos_fbd = to_exynos_fbdev(fb_helper);
241 struct exynos_drm_gem *exynos_gem = exynos_fbd->exynos_gem;
242 struct drm_framebuffer *fb;
244 vunmap(exynos_gem->kvaddr);
246 /* release drm framebuffer and real buffer */
247 if (fb_helper->fb && fb_helper->fb->funcs) {
248 fb = fb_helper->fb;
249 if (fb)
250 drm_framebuffer_remove(fb);
253 drm_fb_helper_unregister_fbi(fb_helper);
255 drm_fb_helper_fini(fb_helper);
258 void exynos_drm_fbdev_fini(struct drm_device *dev)
260 struct exynos_drm_private *private = dev->dev_private;
261 struct exynos_drm_fbdev *fbdev;
263 if (!private || !private->fb_helper)
264 return;
266 fbdev = to_exynos_fbdev(private->fb_helper);
268 exynos_drm_fbdev_destroy(dev, private->fb_helper);
269 kfree(fbdev);
270 private->fb_helper = NULL;