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 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
16 * The above copyright notice and this permission notice (including the next
17 * paragraph) shall be included in all copies or substantial portions of the
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
24 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
26 * OTHER DEALINGS IN THE SOFTWARE.
31 #include "drm_fb_helper.h"
32 #include "drm_crtc_helper.h"
34 #include "exynos_drm_drv.h"
35 #include "exynos_drm_fb.h"
36 #include "exynos_drm_buf.h"
38 #define MAX_CONNECTOR 4
39 #define PREFERRED_BPP 32
41 #define to_exynos_fbdev(x) container_of(x, struct exynos_drm_fbdev,\
44 struct exynos_drm_fbdev
{
45 struct drm_fb_helper drm_fb_helper
;
46 struct drm_framebuffer
*fb
;
49 static int exynos_drm_fbdev_set_par(struct fb_info
*info
)
51 struct fb_var_screeninfo
*var
= &info
->var
;
53 switch (var
->bits_per_pixel
) {
59 info
->fix
.visual
= FB_VISUAL_TRUECOLOR
;
62 info
->fix
.visual
= FB_VISUAL_MONO01
;
65 info
->fix
.visual
= FB_VISUAL_PSEUDOCOLOR
;
69 info
->fix
.line_length
= (var
->xres_virtual
* var
->bits_per_pixel
) / 8;
71 return drm_fb_helper_set_par(info
);
75 static struct fb_ops exynos_drm_fb_ops
= {
77 .fb_fillrect
= cfb_fillrect
,
78 .fb_copyarea
= cfb_copyarea
,
79 .fb_imageblit
= cfb_imageblit
,
80 .fb_check_var
= drm_fb_helper_check_var
,
81 .fb_set_par
= exynos_drm_fbdev_set_par
,
82 .fb_blank
= drm_fb_helper_blank
,
83 .fb_pan_display
= drm_fb_helper_pan_display
,
84 .fb_setcmap
= drm_fb_helper_setcmap
,
87 static int exynos_drm_fbdev_update(struct drm_fb_helper
*helper
,
88 struct drm_framebuffer
*fb
,
89 unsigned int fb_width
,
90 unsigned int fb_height
)
92 struct fb_info
*fbi
= helper
->fbdev
;
93 struct drm_device
*dev
= helper
->dev
;
94 struct exynos_drm_fbdev
*exynos_fb
= to_exynos_fbdev(helper
);
95 struct exynos_drm_buf_entry
*entry
;
96 unsigned int size
= fb_width
* fb_height
* (fb
->bits_per_pixel
>> 3);
99 DRM_DEBUG_KMS("%s\n", __FILE__
);
103 drm_fb_helper_fill_fix(fbi
, fb
->pitch
, fb
->depth
);
104 drm_fb_helper_fill_var(fbi
, helper
, fb_width
, fb_height
);
106 entry
= exynos_drm_fb_get_buf(fb
);
108 DRM_LOG_KMS("entry is null.\n");
112 offset
= fbi
->var
.xoffset
* (fb
->bits_per_pixel
>> 3);
113 offset
+= fbi
->var
.yoffset
* fb
->pitch
;
115 dev
->mode_config
.fb_base
= entry
->paddr
;
116 fbi
->screen_base
= entry
->vaddr
+ offset
;
117 fbi
->fix
.smem_start
= entry
->paddr
+ offset
;
118 fbi
->screen_size
= size
;
119 fbi
->fix
.smem_len
= size
;
124 static int exynos_drm_fbdev_create(struct drm_fb_helper
*helper
,
125 struct drm_fb_helper_surface_size
*sizes
)
127 struct exynos_drm_fbdev
*exynos_fbdev
= to_exynos_fbdev(helper
);
128 struct drm_device
*dev
= helper
->dev
;
130 struct drm_mode_fb_cmd mode_cmd
= { 0 };
131 struct platform_device
*pdev
= dev
->platformdev
;
134 DRM_DEBUG_KMS("%s\n", __FILE__
);
136 DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d\n",
137 sizes
->surface_width
, sizes
->surface_height
,
140 mode_cmd
.width
= sizes
->surface_width
;
141 mode_cmd
.height
= sizes
->surface_height
;
142 mode_cmd
.bpp
= sizes
->surface_bpp
;
143 mode_cmd
.depth
= sizes
->surface_depth
;
145 mutex_lock(&dev
->struct_mutex
);
147 fbi
= framebuffer_alloc(0, &pdev
->dev
);
149 DRM_ERROR("failed to allocate fb info.\n");
154 exynos_fbdev
->fb
= exynos_drm_fb_create(dev
, NULL
, &mode_cmd
);
155 if (IS_ERR_OR_NULL(exynos_fbdev
->fb
)) {
156 DRM_ERROR("failed to create drm framebuffer.\n");
157 ret
= PTR_ERR(exynos_fbdev
->fb
);
161 helper
->fb
= exynos_fbdev
->fb
;
165 fbi
->flags
= FBINFO_FLAG_DEFAULT
;
166 fbi
->fbops
= &exynos_drm_fb_ops
;
168 ret
= fb_alloc_cmap(&fbi
->cmap
, 256, 0);
170 DRM_ERROR("failed to allocate cmap.\n");
174 ret
= exynos_drm_fbdev_update(helper
, helper
->fb
, sizes
->fb_width
,
177 fb_dealloc_cmap(&fbi
->cmap
);
180 * if failed, all resources allocated above would be released by
181 * drm_mode_config_cleanup() when drm_load() had been called prior
182 * to any specific driver such as fimd or hdmi driver.
185 mutex_unlock(&dev
->struct_mutex
);
190 exynos_drm_fbdev_is_samefb(struct drm_framebuffer
*fb
,
191 struct drm_fb_helper_surface_size
*sizes
)
193 if (fb
->width
!= sizes
->surface_width
)
195 if (fb
->height
!= sizes
->surface_height
)
197 if (fb
->bits_per_pixel
!= sizes
->surface_bpp
)
199 if (fb
->depth
!= sizes
->surface_depth
)
205 static int exynos_drm_fbdev_recreate(struct drm_fb_helper
*helper
,
206 struct drm_fb_helper_surface_size
*sizes
)
208 struct drm_device
*dev
= helper
->dev
;
209 struct exynos_drm_fbdev
*exynos_fbdev
= to_exynos_fbdev(helper
);
210 struct drm_framebuffer
*fb
= exynos_fbdev
->fb
;
211 struct drm_mode_fb_cmd mode_cmd
= { 0 };
213 DRM_DEBUG_KMS("%s\n", __FILE__
);
215 if (helper
->fb
!= fb
) {
216 DRM_ERROR("drm framebuffer is different\n");
220 if (exynos_drm_fbdev_is_samefb(fb
, sizes
))
223 mode_cmd
.width
= sizes
->surface_width
;
224 mode_cmd
.height
= sizes
->surface_height
;
225 mode_cmd
.bpp
= sizes
->surface_bpp
;
226 mode_cmd
.depth
= sizes
->surface_depth
;
228 if (fb
->funcs
->destroy
)
229 fb
->funcs
->destroy(fb
);
231 exynos_fbdev
->fb
= exynos_drm_fb_create(dev
, NULL
, &mode_cmd
);
232 if (IS_ERR(exynos_fbdev
->fb
)) {
233 DRM_ERROR("failed to allocate fb.\n");
234 return PTR_ERR(exynos_fbdev
->fb
);
237 helper
->fb
= exynos_fbdev
->fb
;
238 return exynos_drm_fbdev_update(helper
, helper
->fb
, sizes
->fb_width
,
242 static int exynos_drm_fbdev_probe(struct drm_fb_helper
*helper
,
243 struct drm_fb_helper_surface_size
*sizes
)
247 DRM_DEBUG_KMS("%s\n", __FILE__
);
250 ret
= exynos_drm_fbdev_create(helper
, sizes
);
252 DRM_ERROR("failed to create fbdev.\n");
257 * fb_helper expects a value more than 1 if succeed
258 * because register_framebuffer() should be called.
262 ret
= exynos_drm_fbdev_recreate(helper
, sizes
);
264 DRM_ERROR("failed to reconfigure fbdev\n");
272 static struct drm_fb_helper_funcs exynos_drm_fb_helper_funcs
= {
273 .fb_probe
= exynos_drm_fbdev_probe
,
276 int exynos_drm_fbdev_init(struct drm_device
*dev
)
278 struct exynos_drm_fbdev
*fbdev
;
279 struct exynos_drm_private
*private = dev
->dev_private
;
280 struct drm_fb_helper
*helper
;
281 unsigned int num_crtc
;
284 DRM_DEBUG_KMS("%s\n", __FILE__
);
286 if (!dev
->mode_config
.num_crtc
|| !dev
->mode_config
.num_connector
)
289 fbdev
= kzalloc(sizeof(*fbdev
), GFP_KERNEL
);
291 DRM_ERROR("failed to allocate drm fbdev.\n");
295 private->fb_helper
= helper
= &fbdev
->drm_fb_helper
;
296 helper
->funcs
= &exynos_drm_fb_helper_funcs
;
298 num_crtc
= dev
->mode_config
.num_crtc
;
300 ret
= drm_fb_helper_init(dev
, helper
, num_crtc
, MAX_CONNECTOR
);
302 DRM_ERROR("failed to initialize drm fb helper.\n");
306 ret
= drm_fb_helper_single_add_all_connectors(helper
);
308 DRM_ERROR("failed to register drm_fb_helper_connector.\n");
313 ret
= drm_fb_helper_initial_config(helper
, PREFERRED_BPP
);
315 DRM_ERROR("failed to set up hw configuration.\n");
322 drm_fb_helper_fini(helper
);
325 private->fb_helper
= NULL
;
331 static void exynos_drm_fbdev_destroy(struct drm_device
*dev
,
332 struct drm_fb_helper
*fb_helper
)
334 struct drm_framebuffer
*fb
;
336 /* release drm framebuffer and real buffer */
337 if (fb_helper
->fb
&& fb_helper
->fb
->funcs
) {
339 if (fb
&& fb
->funcs
->destroy
)
340 fb
->funcs
->destroy(fb
);
343 /* release linux framebuffer */
344 if (fb_helper
->fbdev
) {
345 struct fb_info
*info
;
348 info
= fb_helper
->fbdev
;
349 ret
= unregister_framebuffer(info
);
351 DRM_DEBUG_KMS("failed unregister_framebuffer()\n");
354 fb_dealloc_cmap(&info
->cmap
);
356 framebuffer_release(info
);
359 drm_fb_helper_fini(fb_helper
);
362 void exynos_drm_fbdev_fini(struct drm_device
*dev
)
364 struct exynos_drm_private
*private = dev
->dev_private
;
365 struct exynos_drm_fbdev
*fbdev
;
367 if (!private || !private->fb_helper
)
370 fbdev
= to_exynos_fbdev(private->fb_helper
);
372 exynos_drm_fbdev_destroy(dev
, private->fb_helper
);
374 private->fb_helper
= NULL
;
377 void exynos_drm_fbdev_restore_mode(struct drm_device
*dev
)
379 struct exynos_drm_private
*private = dev
->dev_private
;
381 if (!private || !private->fb_helper
)
384 drm_fb_helper_restore_fbdev_mode(private->fb_helper
);
387 int exynos_drm_fbdev_reinit(struct drm_device
*dev
)
389 struct exynos_drm_private
*private = dev
->dev_private
;
390 struct drm_fb_helper
*fb_helper
;
397 * if all sub drivers were unloaded then num_connector is 0
398 * so at this time, the framebuffers also should be destroyed.
400 if (!dev
->mode_config
.num_connector
) {
401 exynos_drm_fbdev_fini(dev
);
405 fb_helper
= private->fb_helper
;
408 drm_fb_helper_fini(fb_helper
);
410 ret
= drm_fb_helper_init(dev
, fb_helper
,
411 dev
->mode_config
.num_crtc
, MAX_CONNECTOR
);
413 DRM_ERROR("failed to initialize drm fb helper\n");
417 ret
= drm_fb_helper_single_add_all_connectors(fb_helper
);
419 DRM_ERROR("failed to add fb helper to connectors\n");
423 ret
= drm_fb_helper_initial_config(fb_helper
, PREFERRED_BPP
);
425 DRM_ERROR("failed to set up hw configuration.\n");
430 * if drm_load() failed whem drm load() was called prior
431 * to specific drivers, fb_helper must be NULL and so
432 * this fuction should be called again to re-initialize and
433 * re-configure the fb helper. it means that this function
434 * has been called by the specific drivers.
436 ret
= exynos_drm_fbdev_init(dev
);
443 * if drm_load() failed when drm load() was called prior
444 * to specific drivers, the fb_helper must be NULL and so check it.
447 drm_fb_helper_fini(fb_helper
);
452 MODULE_AUTHOR("Inki Dae <inki.dae@samsung.com>");
453 MODULE_AUTHOR("Joonyoung Shim <jy0922.shim@samsung.com>");
454 MODULE_AUTHOR("Seung-Woo Kim <sw0312.kim@samsung.com>");
455 MODULE_DESCRIPTION("Samsung SoC DRM FBDEV Driver");
456 MODULE_LICENSE("GPL");