2 * Copyright (C) 2012-2013 Avionic Design GmbH
3 * Copyright (C) 2012 NVIDIA CORPORATION. All rights reserved.
5 * Based on the KMS/FB CMA helpers
6 * Copyright (C) 2012 Analog Device Inc.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/console.h>
18 static inline struct tegra_fb *to_tegra_fb(struct drm_framebuffer *fb)
20 return container_of(fb, struct tegra_fb, base);
23 #ifdef CONFIG_DRM_FBDEV_EMULATION
24 static inline struct tegra_fbdev *to_tegra_fbdev(struct drm_fb_helper *helper)
26 return container_of(helper, struct tegra_fbdev, base);
30 struct tegra_bo *tegra_fb_get_plane(struct drm_framebuffer *framebuffer,
33 struct tegra_fb *fb = to_tegra_fb(framebuffer);
35 if (index >= drm_format_num_planes(framebuffer->pixel_format))
38 return fb->planes[index];
41 bool tegra_fb_is_bottom_up(struct drm_framebuffer *framebuffer)
43 struct tegra_fb *fb = to_tegra_fb(framebuffer);
45 if (fb->planes[0]->flags & TEGRA_BO_BOTTOM_UP)
51 int tegra_fb_get_tiling(struct drm_framebuffer *framebuffer,
52 struct tegra_bo_tiling *tiling)
54 struct tegra_fb *fb = to_tegra_fb(framebuffer);
56 /* TODO: handle YUV formats? */
57 *tiling = fb->planes[0]->tiling;
62 static void tegra_fb_destroy(struct drm_framebuffer *framebuffer)
64 struct tegra_fb *fb = to_tegra_fb(framebuffer);
67 for (i = 0; i < fb->num_planes; i++) {
68 struct tegra_bo *bo = fb->planes[i];
71 if (bo->pages && bo->vaddr)
74 drm_gem_object_unreference_unlocked(&bo->gem);
78 drm_framebuffer_cleanup(framebuffer);
83 static int tegra_fb_create_handle(struct drm_framebuffer *framebuffer,
84 struct drm_file *file, unsigned int *handle)
86 struct tegra_fb *fb = to_tegra_fb(framebuffer);
88 return drm_gem_handle_create(file, &fb->planes[0]->gem, handle);
91 static const struct drm_framebuffer_funcs tegra_fb_funcs = {
92 .destroy = tegra_fb_destroy,
93 .create_handle = tegra_fb_create_handle,
96 static struct tegra_fb *tegra_fb_alloc(struct drm_device *drm,
97 const struct drm_mode_fb_cmd2 *mode_cmd,
98 struct tegra_bo **planes,
99 unsigned int num_planes)
105 fb = kzalloc(sizeof(*fb), GFP_KERNEL);
107 return ERR_PTR(-ENOMEM);
109 fb->planes = kzalloc(num_planes * sizeof(*planes), GFP_KERNEL);
112 return ERR_PTR(-ENOMEM);
115 fb->num_planes = num_planes;
117 drm_helper_mode_fill_fb_struct(&fb->base, mode_cmd);
119 for (i = 0; i < fb->num_planes; i++)
120 fb->planes[i] = planes[i];
122 err = drm_framebuffer_init(drm, &fb->base, &tegra_fb_funcs);
124 dev_err(drm->dev, "failed to initialize framebuffer: %d\n",
134 struct drm_framebuffer *tegra_fb_create(struct drm_device *drm,
135 struct drm_file *file,
136 const struct drm_mode_fb_cmd2 *cmd)
138 unsigned int hsub, vsub, i;
139 struct tegra_bo *planes[4];
140 struct drm_gem_object *gem;
144 hsub = drm_format_horz_chroma_subsampling(cmd->pixel_format);
145 vsub = drm_format_vert_chroma_subsampling(cmd->pixel_format);
147 for (i = 0; i < drm_format_num_planes(cmd->pixel_format); i++) {
148 unsigned int width = cmd->width / (i ? hsub : 1);
149 unsigned int height = cmd->height / (i ? vsub : 1);
150 unsigned int size, bpp;
152 gem = drm_gem_object_lookup(drm, file, cmd->handles[i]);
158 bpp = drm_format_plane_cpp(cmd->pixel_format, i);
160 size = (height - 1) * cmd->pitches[i] +
161 width * bpp + cmd->offsets[i];
163 if (gem->size < size) {
168 planes[i] = to_tegra_bo(gem);
171 fb = tegra_fb_alloc(drm, cmd, planes, i);
181 drm_gem_object_unreference_unlocked(&planes[i]->gem);
186 #ifdef CONFIG_DRM_FBDEV_EMULATION
187 static struct fb_ops tegra_fb_ops = {
188 .owner = THIS_MODULE,
189 .fb_fillrect = drm_fb_helper_sys_fillrect,
190 .fb_copyarea = drm_fb_helper_sys_copyarea,
191 .fb_imageblit = drm_fb_helper_sys_imageblit,
192 .fb_check_var = drm_fb_helper_check_var,
193 .fb_set_par = drm_fb_helper_set_par,
194 .fb_blank = drm_fb_helper_blank,
195 .fb_pan_display = drm_fb_helper_pan_display,
196 .fb_setcmap = drm_fb_helper_setcmap,
199 static int tegra_fbdev_probe(struct drm_fb_helper *helper,
200 struct drm_fb_helper_surface_size *sizes)
202 struct tegra_fbdev *fbdev = to_tegra_fbdev(helper);
203 struct tegra_drm *tegra = helper->dev->dev_private;
204 struct drm_device *drm = helper->dev;
205 struct drm_mode_fb_cmd2 cmd = { 0 };
206 unsigned int bytes_per_pixel;
207 struct drm_framebuffer *fb;
208 unsigned long offset;
209 struct fb_info *info;
214 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8);
216 cmd.width = sizes->surface_width;
217 cmd.height = sizes->surface_height;
218 cmd.pitches[0] = round_up(sizes->surface_width * bytes_per_pixel,
220 cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
221 sizes->surface_depth);
223 size = cmd.pitches[0] * cmd.height;
225 bo = tegra_bo_create(drm, size, 0);
229 info = drm_fb_helper_alloc_fbi(helper);
231 dev_err(drm->dev, "failed to allocate framebuffer info\n");
232 drm_gem_object_unreference_unlocked(&bo->gem);
233 return PTR_ERR(info);
236 fbdev->fb = tegra_fb_alloc(drm, &cmd, &bo, 1);
237 if (IS_ERR(fbdev->fb)) {
238 err = PTR_ERR(fbdev->fb);
239 dev_err(drm->dev, "failed to allocate DRM framebuffer: %d\n",
241 drm_gem_object_unreference_unlocked(&bo->gem);
245 fb = &fbdev->fb->base;
247 helper->fbdev = info;
250 info->flags = FBINFO_FLAG_DEFAULT;
251 info->fbops = &tegra_fb_ops;
253 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);
254 drm_fb_helper_fill_var(info, helper, fb->width, fb->height);
256 offset = info->var.xoffset * bytes_per_pixel +
257 info->var.yoffset * fb->pitches[0];
260 bo->vaddr = vmap(bo->pages, bo->num_pages, VM_MAP,
261 pgprot_writecombine(PAGE_KERNEL));
263 dev_err(drm->dev, "failed to vmap() framebuffer\n");
269 drm->mode_config.fb_base = (resource_size_t)bo->paddr;
270 info->screen_base = (void __iomem *)bo->vaddr + offset;
271 info->screen_size = size;
272 info->fix.smem_start = (unsigned long)(bo->paddr + offset);
273 info->fix.smem_len = size;
278 drm_framebuffer_unregister_private(fb);
279 tegra_fb_destroy(fb);
281 drm_fb_helper_release_fbi(helper);
285 static const struct drm_fb_helper_funcs tegra_fb_helper_funcs = {
286 .fb_probe = tegra_fbdev_probe,
289 static struct tegra_fbdev *tegra_fbdev_create(struct drm_device *drm)
291 struct tegra_fbdev *fbdev;
293 fbdev = kzalloc(sizeof(*fbdev), GFP_KERNEL);
295 dev_err(drm->dev, "failed to allocate DRM fbdev\n");
296 return ERR_PTR(-ENOMEM);
299 drm_fb_helper_prepare(drm, &fbdev->base, &tegra_fb_helper_funcs);
304 static void tegra_fbdev_free(struct tegra_fbdev *fbdev)
309 static int tegra_fbdev_init(struct tegra_fbdev *fbdev,
310 unsigned int preferred_bpp,
311 unsigned int num_crtc,
312 unsigned int max_connectors)
314 struct drm_device *drm = fbdev->base.dev;
317 err = drm_fb_helper_init(drm, &fbdev->base, num_crtc, max_connectors);
319 dev_err(drm->dev, "failed to initialize DRM FB helper: %d\n",
324 err = drm_fb_helper_single_add_all_connectors(&fbdev->base);
326 dev_err(drm->dev, "failed to add connectors: %d\n", err);
330 err = drm_fb_helper_initial_config(&fbdev->base, preferred_bpp);
332 dev_err(drm->dev, "failed to set initial configuration: %d\n",
340 drm_fb_helper_fini(&fbdev->base);
344 static void tegra_fbdev_exit(struct tegra_fbdev *fbdev)
346 drm_fb_helper_unregister_fbi(&fbdev->base);
347 drm_fb_helper_release_fbi(&fbdev->base);
350 drm_framebuffer_unregister_private(&fbdev->fb->base);
351 drm_framebuffer_remove(&fbdev->fb->base);
354 drm_fb_helper_fini(&fbdev->base);
355 tegra_fbdev_free(fbdev);
358 void tegra_fbdev_restore_mode(struct tegra_fbdev *fbdev)
361 drm_fb_helper_restore_fbdev_mode_unlocked(&fbdev->base);
364 void tegra_fb_output_poll_changed(struct drm_device *drm)
366 struct tegra_drm *tegra = drm->dev_private;
369 drm_fb_helper_hotplug_event(&tegra->fbdev->base);
373 int tegra_drm_fb_prepare(struct drm_device *drm)
375 #ifdef CONFIG_DRM_FBDEV_EMULATION
376 struct tegra_drm *tegra = drm->dev_private;
378 tegra->fbdev = tegra_fbdev_create(drm);
379 if (IS_ERR(tegra->fbdev))
380 return PTR_ERR(tegra->fbdev);
386 void tegra_drm_fb_free(struct drm_device *drm)
388 #ifdef CONFIG_DRM_FBDEV_EMULATION
389 struct tegra_drm *tegra = drm->dev_private;
391 tegra_fbdev_free(tegra->fbdev);
395 int tegra_drm_fb_init(struct drm_device *drm)
397 #ifdef CONFIG_DRM_FBDEV_EMULATION
398 struct tegra_drm *tegra = drm->dev_private;
401 err = tegra_fbdev_init(tegra->fbdev, 32, drm->mode_config.num_crtc,
402 drm->mode_config.num_connector);
410 void tegra_drm_fb_exit(struct drm_device *drm)
412 #ifdef CONFIG_DRM_FBDEV_EMULATION
413 struct tegra_drm *tegra = drm->dev_private;
415 tegra_fbdev_exit(tegra->fbdev);
419 void tegra_drm_fb_suspend(struct drm_device *drm)
421 #ifdef CONFIG_DRM_FBDEV_EMULATION
422 struct tegra_drm *tegra = drm->dev_private;
425 drm_fb_helper_set_suspend(&tegra->fbdev->base, 1);
430 void tegra_drm_fb_resume(struct drm_device *drm)
432 #ifdef CONFIG_DRM_FBDEV_EMULATION
433 struct tegra_drm *tegra = drm->dev_private;
436 drm_fb_helper_set_suspend(&tegra->fbdev->base, 0);