2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "drm_fb_helper.h"
24 * fbdev funcs, to implement legacy fbdev interface on top of drm driver
27 #define to_msm_fbdev(x) container_of(x, struct msm_fbdev, base)
30 struct drm_fb_helper base
;
31 struct drm_framebuffer
*fb
;
32 struct drm_gem_object
*bo
;
35 static struct fb_ops msm_fb_ops
= {
38 /* Note: to properly handle manual update displays, we wrap the
39 * basic fbdev ops which write to the framebuffer
41 .fb_read
= fb_sys_read
,
42 .fb_write
= fb_sys_write
,
43 .fb_fillrect
= sys_fillrect
,
44 .fb_copyarea
= sys_copyarea
,
45 .fb_imageblit
= sys_imageblit
,
47 .fb_check_var
= drm_fb_helper_check_var
,
48 .fb_set_par
= drm_fb_helper_set_par
,
49 .fb_pan_display
= drm_fb_helper_pan_display
,
50 .fb_blank
= drm_fb_helper_blank
,
51 .fb_setcmap
= drm_fb_helper_setcmap
,
54 static int msm_fbdev_create(struct drm_fb_helper
*helper
,
55 struct drm_fb_helper_surface_size
*sizes
)
57 struct msm_fbdev
*fbdev
= to_msm_fbdev(helper
);
58 struct drm_device
*dev
= helper
->dev
;
59 struct drm_framebuffer
*fb
= NULL
;
60 struct fb_info
*fbi
= NULL
;
61 struct drm_mode_fb_cmd2 mode_cmd
= {0};
65 /* only doing ARGB32 since this is what is needed to alpha-blend
66 * with video overlays:
68 sizes
->surface_bpp
= 32;
69 sizes
->surface_depth
= 32;
71 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes
->surface_width
,
72 sizes
->surface_height
, sizes
->surface_bpp
,
73 sizes
->fb_width
, sizes
->fb_height
);
75 mode_cmd
.pixel_format
= drm_mode_legacy_fb_format(sizes
->surface_bpp
,
76 sizes
->surface_depth
);
78 mode_cmd
.width
= sizes
->surface_width
;
79 mode_cmd
.height
= sizes
->surface_height
;
81 mode_cmd
.pitches
[0] = align_pitch(
82 mode_cmd
.width
, sizes
->surface_bpp
);
84 /* allocate backing bo */
85 size
= mode_cmd
.pitches
[0] * mode_cmd
.height
;
86 DBG("allocating %d bytes for fb %d", size
, dev
->primary
->index
);
87 mutex_lock(&dev
->struct_mutex
);
88 fbdev
->bo
= msm_gem_new(dev
, size
, MSM_BO_SCANOUT
| MSM_BO_WC
);
89 mutex_unlock(&dev
->struct_mutex
);
90 if (IS_ERR(fbdev
->bo
)) {
91 ret
= PTR_ERR(fbdev
->bo
);
93 dev_err(dev
->dev
, "failed to allocate buffer object: %d\n", ret
);
97 fb
= msm_framebuffer_init(dev
, &mode_cmd
, &fbdev
->bo
);
99 dev_err(dev
->dev
, "failed to allocate fb\n");
100 /* note: if fb creation failed, we can't rely on fb destroy
103 drm_gem_object_unreference(fbdev
->bo
);
108 mutex_lock(&dev
->struct_mutex
);
110 /* TODO implement our own fb_mmap so we don't need this: */
111 msm_gem_get_iova_locked(fbdev
->bo
, 0, &paddr
);
113 fbi
= framebuffer_alloc(0, dev
->dev
);
115 dev_err(dev
->dev
, "failed to allocate fb info\n");
120 DBG("fbi=%p, dev=%p", fbi
, dev
);
127 fbi
->flags
= FBINFO_DEFAULT
;
128 fbi
->fbops
= &msm_fb_ops
;
130 strcpy(fbi
->fix
.id
, "msm");
132 ret
= fb_alloc_cmap(&fbi
->cmap
, 256, 0);
138 drm_fb_helper_fill_fix(fbi
, fb
->pitches
[0], fb
->depth
);
139 drm_fb_helper_fill_var(fbi
, helper
, sizes
->fb_width
, sizes
->fb_height
);
141 dev
->mode_config
.fb_base
= paddr
;
143 fbi
->screen_base
= msm_gem_vaddr_locked(fbdev
->bo
);
144 fbi
->screen_size
= fbdev
->bo
->size
;
145 fbi
->fix
.smem_start
= paddr
;
146 fbi
->fix
.smem_len
= fbdev
->bo
->size
;
148 DBG("par=%p, %dx%d", fbi
->par
, fbi
->var
.xres
, fbi
->var
.yres
);
149 DBG("allocated %dx%d fb", fbdev
->fb
->width
, fbdev
->fb
->height
);
151 mutex_unlock(&dev
->struct_mutex
);
156 mutex_unlock(&dev
->struct_mutex
);
161 framebuffer_release(fbi
);
163 drm_framebuffer_unregister_private(fb
);
164 drm_framebuffer_remove(fb
);
171 static void msm_crtc_fb_gamma_set(struct drm_crtc
*crtc
,
172 u16 red
, u16 green
, u16 blue
, int regno
)
174 DBG("fbdev: set gamma");
177 static void msm_crtc_fb_gamma_get(struct drm_crtc
*crtc
,
178 u16
*red
, u16
*green
, u16
*blue
, int regno
)
180 DBG("fbdev: get gamma");
183 static struct drm_fb_helper_funcs msm_fb_helper_funcs
= {
184 .gamma_set
= msm_crtc_fb_gamma_set
,
185 .gamma_get
= msm_crtc_fb_gamma_get
,
186 .fb_probe
= msm_fbdev_create
,
189 /* initialize fbdev helper */
190 struct drm_fb_helper
*msm_fbdev_init(struct drm_device
*dev
)
192 struct msm_drm_private
*priv
= dev
->dev_private
;
193 struct msm_fbdev
*fbdev
= NULL
;
194 struct drm_fb_helper
*helper
;
197 fbdev
= kzalloc(sizeof(*fbdev
), GFP_KERNEL
);
201 helper
= &fbdev
->base
;
203 helper
->funcs
= &msm_fb_helper_funcs
;
205 ret
= drm_fb_helper_init(dev
, helper
,
206 priv
->num_crtcs
, priv
->num_connectors
);
208 dev_err(dev
->dev
, "could not init fbdev: ret=%d\n", ret
);
212 drm_fb_helper_single_add_all_connectors(helper
);
214 /* disable all the possible outputs/crtcs before entering KMS mode */
215 drm_helper_disable_unused_functions(dev
);
217 drm_fb_helper_initial_config(helper
, 32);
219 priv
->fbdev
= helper
;
228 void msm_fbdev_free(struct drm_device
*dev
)
230 struct msm_drm_private
*priv
= dev
->dev_private
;
231 struct drm_fb_helper
*helper
= priv
->fbdev
;
232 struct msm_fbdev
*fbdev
;
239 /* only cleanup framebuffer if it is present */
241 unregister_framebuffer(fbi
);
242 framebuffer_release(fbi
);
245 drm_fb_helper_fini(helper
);
247 fbdev
= to_msm_fbdev(priv
->fbdev
);
249 /* this will free the backing object */
251 drm_framebuffer_unregister_private(fbdev
->fb
);
252 drm_framebuffer_remove(fbdev
->fb
);