3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * Inki Dae <inki.dae@samsung.com>
6 * Joonyoung Shim <jy0922.shim@samsung.com>
7 * Seung-Woo Kim <sw0312.kim@samsung.com>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
16 #include <drm/drm_crtc.h>
17 #include <drm/drm_fb_helper.h>
18 #include <drm/drm_crtc_helper.h>
19 #include <drm/exynos_drm.h>
21 #include <linux/console.h>
23 #include "exynos_drm_drv.h"
24 #include "exynos_drm_fb.h"
25 #include "exynos_drm_fbdev.h"
26 #include "exynos_drm_iommu.h"
28 #define MAX_CONNECTOR 4
29 #define PREFERRED_BPP 32
31 #define to_exynos_fbdev(x) container_of(x, struct exynos_drm_fbdev,\
34 struct exynos_drm_fbdev
{
35 struct drm_fb_helper drm_fb_helper
;
36 struct exynos_drm_gem
*exynos_gem
;
39 static int exynos_drm_fb_mmap(struct fb_info
*info
,
40 struct vm_area_struct
*vma
)
42 struct drm_fb_helper
*helper
= info
->par
;
43 struct exynos_drm_fbdev
*exynos_fbd
= to_exynos_fbdev(helper
);
44 struct exynos_drm_gem
*exynos_gem
= exynos_fbd
->exynos_gem
;
45 unsigned long vm_size
;
48 vma
->vm_flags
|= VM_IO
| VM_DONTEXPAND
| VM_DONTDUMP
;
50 vm_size
= vma
->vm_end
- vma
->vm_start
;
52 if (vm_size
> exynos_gem
->size
)
55 ret
= dma_mmap_attrs(to_dma_dev(helper
->dev
), vma
, exynos_gem
->cookie
,
56 exynos_gem
->dma_addr
, exynos_gem
->size
,
57 exynos_gem
->dma_attrs
);
59 DRM_ERROR("failed to mmap.\n");
66 static struct fb_ops exynos_drm_fb_ops
= {
68 DRM_FB_HELPER_DEFAULT_OPS
,
69 .fb_mmap
= exynos_drm_fb_mmap
,
70 .fb_fillrect
= drm_fb_helper_cfb_fillrect
,
71 .fb_copyarea
= drm_fb_helper_cfb_copyarea
,
72 .fb_imageblit
= drm_fb_helper_cfb_imageblit
,
75 static int exynos_drm_fbdev_update(struct drm_fb_helper
*helper
,
76 struct drm_fb_helper_surface_size
*sizes
,
77 struct exynos_drm_gem
*exynos_gem
)
80 struct drm_framebuffer
*fb
= helper
->fb
;
81 unsigned int size
= fb
->width
* fb
->height
* fb
->format
->cpp
[0];
82 unsigned int nr_pages
;
85 fbi
= drm_fb_helper_alloc_fbi(helper
);
87 DRM_ERROR("failed to allocate fb info.\n");
92 fbi
->flags
= FBINFO_FLAG_DEFAULT
;
93 fbi
->fbops
= &exynos_drm_fb_ops
;
95 drm_fb_helper_fill_fix(fbi
, fb
->pitches
[0], fb
->format
->depth
);
96 drm_fb_helper_fill_var(fbi
, helper
, sizes
->fb_width
, sizes
->fb_height
);
98 nr_pages
= exynos_gem
->size
>> PAGE_SHIFT
;
100 exynos_gem
->kvaddr
= (void __iomem
*) vmap(exynos_gem
->pages
, nr_pages
,
101 VM_MAP
, pgprot_writecombine(PAGE_KERNEL
));
102 if (!exynos_gem
->kvaddr
) {
103 DRM_ERROR("failed to map pages to kernel space.\n");
107 offset
= fbi
->var
.xoffset
* fb
->format
->cpp
[0];
108 offset
+= fbi
->var
.yoffset
* fb
->pitches
[0];
110 fbi
->screen_base
= exynos_gem
->kvaddr
+ offset
;
111 fbi
->screen_size
= size
;
112 fbi
->fix
.smem_len
= size
;
117 static int exynos_drm_fbdev_create(struct drm_fb_helper
*helper
,
118 struct drm_fb_helper_surface_size
*sizes
)
120 struct exynos_drm_fbdev
*exynos_fbdev
= to_exynos_fbdev(helper
);
121 struct exynos_drm_gem
*exynos_gem
;
122 struct drm_device
*dev
= helper
->dev
;
123 struct drm_mode_fb_cmd2 mode_cmd
= { 0 };
127 DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d\n",
128 sizes
->surface_width
, sizes
->surface_height
,
131 mode_cmd
.width
= sizes
->surface_width
;
132 mode_cmd
.height
= sizes
->surface_height
;
133 mode_cmd
.pitches
[0] = sizes
->surface_width
* (sizes
->surface_bpp
>> 3);
134 mode_cmd
.pixel_format
= drm_mode_legacy_fb_format(sizes
->surface_bpp
,
135 sizes
->surface_depth
);
137 size
= mode_cmd
.pitches
[0] * mode_cmd
.height
;
139 exynos_gem
= exynos_drm_gem_create(dev
, EXYNOS_BO_CONTIG
, size
);
141 * If physically contiguous memory allocation fails and if IOMMU is
142 * supported then try to get buffer from non physically contiguous
145 if (IS_ERR(exynos_gem
) && is_drm_iommu_supported(dev
)) {
146 dev_warn(dev
->dev
, "contiguous FB allocation failed, falling back to non-contiguous\n");
147 exynos_gem
= exynos_drm_gem_create(dev
, EXYNOS_BO_NONCONTIG
,
151 if (IS_ERR(exynos_gem
))
152 return PTR_ERR(exynos_gem
);
154 exynos_fbdev
->exynos_gem
= exynos_gem
;
157 exynos_drm_framebuffer_init(dev
, &mode_cmd
, &exynos_gem
, 1);
158 if (IS_ERR(helper
->fb
)) {
159 DRM_ERROR("failed to create drm framebuffer.\n");
160 ret
= PTR_ERR(helper
->fb
);
161 goto err_destroy_gem
;
164 ret
= exynos_drm_fbdev_update(helper
, sizes
, exynos_gem
);
166 goto err_destroy_framebuffer
;
170 err_destroy_framebuffer
:
171 drm_framebuffer_cleanup(helper
->fb
);
173 exynos_drm_gem_destroy(exynos_gem
);
176 * if failed, all resources allocated above would be released by
177 * drm_mode_config_cleanup() when drm_load() had been called prior
178 * to any specific driver such as fimd or hdmi driver.
184 static const struct drm_fb_helper_funcs exynos_drm_fb_helper_funcs
= {
185 .fb_probe
= exynos_drm_fbdev_create
,
188 int exynos_drm_fbdev_init(struct drm_device
*dev
)
190 struct exynos_drm_fbdev
*fbdev
;
191 struct exynos_drm_private
*private = dev
->dev_private
;
192 struct drm_fb_helper
*helper
;
195 if (!dev
->mode_config
.num_crtc
|| !dev
->mode_config
.num_connector
)
198 fbdev
= kzalloc(sizeof(*fbdev
), GFP_KERNEL
);
202 private->fb_helper
= helper
= &fbdev
->drm_fb_helper
;
204 drm_fb_helper_prepare(dev
, helper
, &exynos_drm_fb_helper_funcs
);
206 ret
= drm_fb_helper_init(dev
, helper
, MAX_CONNECTOR
);
208 DRM_ERROR("failed to initialize drm fb helper.\n");
212 ret
= drm_fb_helper_single_add_all_connectors(helper
);
214 DRM_ERROR("failed to register drm_fb_helper_connector.\n");
219 ret
= drm_fb_helper_initial_config(helper
, PREFERRED_BPP
);
221 DRM_ERROR("failed to set up hw configuration.\n");
228 drm_fb_helper_fini(helper
);
231 private->fb_helper
= NULL
;
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
) {
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
)
266 fbdev
= to_exynos_fbdev(private->fb_helper
);
268 exynos_drm_fbdev_destroy(dev
, private->fb_helper
);
270 private->fb_helper
= NULL
;
273 void exynos_drm_fbdev_suspend(struct drm_device
*dev
)
275 struct exynos_drm_private
*private = dev
->dev_private
;
278 drm_fb_helper_set_suspend(private->fb_helper
, 1);
282 void exynos_drm_fbdev_resume(struct drm_device
*dev
)
284 struct exynos_drm_private
*private = dev
->dev_private
;
287 drm_fb_helper_set_suspend(private->fb_helper
, 0);