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.
16 static inline struct tegra_fb *to_tegra_fb(struct drm_framebuffer *fb)
18 return container_of(fb, struct tegra_fb, base);
21 #ifdef CONFIG_DRM_TEGRA_FBDEV
22 static inline struct tegra_fbdev *to_tegra_fbdev(struct drm_fb_helper *helper)
24 return container_of(helper, struct tegra_fbdev, base);
28 struct tegra_bo *tegra_fb_get_plane(struct drm_framebuffer *framebuffer,
31 struct tegra_fb *fb = to_tegra_fb(framebuffer);
33 if (index >= drm_format_num_planes(framebuffer->pixel_format))
36 return fb->planes[index];
39 bool tegra_fb_is_bottom_up(struct drm_framebuffer *framebuffer)
41 struct tegra_fb *fb = to_tegra_fb(framebuffer);
43 if (fb->planes[0]->flags & TEGRA_BO_BOTTOM_UP)
49 bool tegra_fb_is_tiled(struct drm_framebuffer *framebuffer)
51 struct tegra_fb *fb = to_tegra_fb(framebuffer);
53 if (fb->planes[0]->flags & TEGRA_BO_TILED)
59 static void tegra_fb_destroy(struct drm_framebuffer *framebuffer)
61 struct tegra_fb *fb = to_tegra_fb(framebuffer);
64 for (i = 0; i < fb->num_planes; i++) {
65 struct tegra_bo *bo = fb->planes[i];
68 drm_gem_object_unreference_unlocked(&bo->gem);
71 drm_framebuffer_cleanup(framebuffer);
76 static int tegra_fb_create_handle(struct drm_framebuffer *framebuffer,
77 struct drm_file *file, unsigned int *handle)
79 struct tegra_fb *fb = to_tegra_fb(framebuffer);
81 return drm_gem_handle_create(file, &fb->planes[0]->gem, handle);
84 static struct drm_framebuffer_funcs tegra_fb_funcs = {
85 .destroy = tegra_fb_destroy,
86 .create_handle = tegra_fb_create_handle,
89 static struct tegra_fb *tegra_fb_alloc(struct drm_device *drm,
90 struct drm_mode_fb_cmd2 *mode_cmd,
91 struct tegra_bo **planes,
92 unsigned int num_planes)
98 fb = kzalloc(sizeof(*fb), GFP_KERNEL);
100 return ERR_PTR(-ENOMEM);
102 fb->planes = kzalloc(num_planes * sizeof(*planes), GFP_KERNEL);
105 return ERR_PTR(-ENOMEM);
108 fb->num_planes = num_planes;
110 drm_helper_mode_fill_fb_struct(&fb->base, mode_cmd);
112 for (i = 0; i < fb->num_planes; i++)
113 fb->planes[i] = planes[i];
115 err = drm_framebuffer_init(drm, &fb->base, &tegra_fb_funcs);
117 dev_err(drm->dev, "failed to initialize framebuffer: %d\n",
127 static struct drm_framebuffer *tegra_fb_create(struct drm_device *drm,
128 struct drm_file *file,
129 struct drm_mode_fb_cmd2 *cmd)
131 unsigned int hsub, vsub, i;
132 struct tegra_bo *planes[4];
133 struct drm_gem_object *gem;
137 hsub = drm_format_horz_chroma_subsampling(cmd->pixel_format);
138 vsub = drm_format_vert_chroma_subsampling(cmd->pixel_format);
140 for (i = 0; i < drm_format_num_planes(cmd->pixel_format); i++) {
141 unsigned int width = cmd->width / (i ? hsub : 1);
142 unsigned int height = cmd->height / (i ? vsub : 1);
143 unsigned int size, bpp;
145 gem = drm_gem_object_lookup(drm, file, cmd->handles[i]);
151 bpp = drm_format_plane_cpp(cmd->pixel_format, i);
153 size = (height - 1) * cmd->pitches[i] +
154 width * bpp + cmd->offsets[i];
156 if (gem->size < size) {
161 planes[i] = to_tegra_bo(gem);
164 fb = tegra_fb_alloc(drm, cmd, planes, i);
174 drm_gem_object_unreference_unlocked(&planes[i]->gem);
179 #ifdef CONFIG_DRM_TEGRA_FBDEV
180 static struct fb_ops tegra_fb_ops = {
181 .owner = THIS_MODULE,
182 .fb_fillrect = sys_fillrect,
183 .fb_copyarea = sys_copyarea,
184 .fb_imageblit = sys_imageblit,
185 .fb_check_var = drm_fb_helper_check_var,
186 .fb_set_par = drm_fb_helper_set_par,
187 .fb_blank = drm_fb_helper_blank,
188 .fb_pan_display = drm_fb_helper_pan_display,
189 .fb_setcmap = drm_fb_helper_setcmap,
192 static int tegra_fbdev_probe(struct drm_fb_helper *helper,
193 struct drm_fb_helper_surface_size *sizes)
195 struct tegra_fbdev *fbdev = to_tegra_fbdev(helper);
196 struct drm_device *drm = helper->dev;
197 struct drm_mode_fb_cmd2 cmd = { 0 };
198 unsigned int bytes_per_pixel;
199 struct drm_framebuffer *fb;
200 unsigned long offset;
201 struct fb_info *info;
206 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8);
208 cmd.width = sizes->surface_width;
209 cmd.height = sizes->surface_height;
210 cmd.pitches[0] = sizes->surface_width * bytes_per_pixel;
211 cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
212 sizes->surface_depth);
214 size = cmd.pitches[0] * cmd.height;
216 bo = tegra_bo_create(drm, size, 0);
220 info = framebuffer_alloc(0, drm->dev);
222 dev_err(drm->dev, "failed to allocate framebuffer info\n");
223 tegra_bo_free_object(&bo->gem);
227 fbdev->fb = tegra_fb_alloc(drm, &cmd, &bo, 1);
228 if (IS_ERR(fbdev->fb)) {
229 dev_err(drm->dev, "failed to allocate DRM framebuffer\n");
230 err = PTR_ERR(fbdev->fb);
234 fb = &fbdev->fb->base;
236 helper->fbdev = info;
239 info->flags = FBINFO_FLAG_DEFAULT;
240 info->fbops = &tegra_fb_ops;
242 err = fb_alloc_cmap(&info->cmap, 256, 0);
244 dev_err(drm->dev, "failed to allocate color map: %d\n", err);
248 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->depth);
249 drm_fb_helper_fill_var(info, helper, fb->width, fb->height);
251 offset = info->var.xoffset * bytes_per_pixel +
252 info->var.yoffset * fb->pitches[0];
254 drm->mode_config.fb_base = (resource_size_t)bo->paddr;
255 info->screen_base = (void __iomem *)bo->vaddr + offset;
256 info->screen_size = size;
257 info->fix.smem_start = (unsigned long)(bo->paddr + offset);
258 info->fix.smem_len = size;
263 drm_framebuffer_unregister_private(fb);
264 tegra_fb_destroy(fb);
266 framebuffer_release(info);
270 static struct drm_fb_helper_funcs tegra_fb_helper_funcs = {
271 .fb_probe = tegra_fbdev_probe,
274 static struct tegra_fbdev *tegra_fbdev_create(struct drm_device *drm,
275 unsigned int preferred_bpp,
276 unsigned int num_crtc,
277 unsigned int max_connectors)
279 struct drm_fb_helper *helper;
280 struct tegra_fbdev *fbdev;
283 fbdev = kzalloc(sizeof(*fbdev), GFP_KERNEL);
285 dev_err(drm->dev, "failed to allocate DRM fbdev\n");
286 return ERR_PTR(-ENOMEM);
289 fbdev->base.funcs = &tegra_fb_helper_funcs;
290 helper = &fbdev->base;
292 err = drm_fb_helper_init(drm, &fbdev->base, num_crtc, max_connectors);
294 dev_err(drm->dev, "failed to initialize DRM FB helper\n");
298 err = drm_fb_helper_single_add_all_connectors(&fbdev->base);
300 dev_err(drm->dev, "failed to add connectors\n");
304 drm_helper_disable_unused_functions(drm);
306 err = drm_fb_helper_initial_config(&fbdev->base, preferred_bpp);
308 dev_err(drm->dev, "failed to set initial configuration\n");
315 drm_fb_helper_fini(&fbdev->base);
321 static void tegra_fbdev_free(struct tegra_fbdev *fbdev)
323 struct fb_info *info = fbdev->base.fbdev;
328 err = unregister_framebuffer(info);
330 DRM_DEBUG_KMS("failed to unregister framebuffer\n");
333 fb_dealloc_cmap(&info->cmap);
335 framebuffer_release(info);
339 drm_framebuffer_unregister_private(&fbdev->fb->base);
340 tegra_fb_destroy(&fbdev->fb->base);
343 drm_fb_helper_fini(&fbdev->base);
347 void tegra_fbdev_restore_mode(struct tegra_fbdev *fbdev)
350 drm_modeset_lock_all(fbdev->base.dev);
351 drm_fb_helper_restore_fbdev_mode(&fbdev->base);
352 drm_modeset_unlock_all(fbdev->base.dev);
356 static void tegra_fb_output_poll_changed(struct drm_device *drm)
358 struct tegra_drm *tegra = drm->dev_private;
361 drm_fb_helper_hotplug_event(&tegra->fbdev->base);
365 static const struct drm_mode_config_funcs tegra_drm_mode_funcs = {
366 .fb_create = tegra_fb_create,
367 #ifdef CONFIG_DRM_TEGRA_FBDEV
368 .output_poll_changed = tegra_fb_output_poll_changed,
372 int tegra_drm_fb_init(struct drm_device *drm)
374 #ifdef CONFIG_DRM_TEGRA_FBDEV
375 struct tegra_drm *tegra = drm->dev_private;
378 drm->mode_config.min_width = 0;
379 drm->mode_config.min_height = 0;
381 drm->mode_config.max_width = 4096;
382 drm->mode_config.max_height = 4096;
384 drm->mode_config.funcs = &tegra_drm_mode_funcs;
386 #ifdef CONFIG_DRM_TEGRA_FBDEV
387 tegra->fbdev = tegra_fbdev_create(drm, 32, drm->mode_config.num_crtc,
388 drm->mode_config.num_connector);
389 if (IS_ERR(tegra->fbdev))
390 return PTR_ERR(tegra->fbdev);
396 void tegra_drm_fb_exit(struct drm_device *drm)
398 #ifdef CONFIG_DRM_TEGRA_FBDEV
399 struct tegra_drm *tegra = drm->dev_private;
401 tegra_fbdev_free(tegra->fbdev);