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 int tegra_fb_get_tiling(struct drm_framebuffer
*framebuffer
,
50 struct tegra_bo_tiling
*tiling
)
52 struct tegra_fb
*fb
= to_tegra_fb(framebuffer
);
54 /* TODO: handle YUV formats? */
55 *tiling
= fb
->planes
[0]->tiling
;
60 static void tegra_fb_destroy(struct drm_framebuffer
*framebuffer
)
62 struct tegra_fb
*fb
= to_tegra_fb(framebuffer
);
65 for (i
= 0; i
< fb
->num_planes
; i
++) {
66 struct tegra_bo
*bo
= fb
->planes
[i
];
69 if (bo
->pages
&& bo
->vaddr
)
72 drm_gem_object_unreference_unlocked(&bo
->gem
);
76 drm_framebuffer_cleanup(framebuffer
);
81 static int tegra_fb_create_handle(struct drm_framebuffer
*framebuffer
,
82 struct drm_file
*file
, unsigned int *handle
)
84 struct tegra_fb
*fb
= to_tegra_fb(framebuffer
);
86 return drm_gem_handle_create(file
, &fb
->planes
[0]->gem
, handle
);
89 static struct drm_framebuffer_funcs tegra_fb_funcs
= {
90 .destroy
= tegra_fb_destroy
,
91 .create_handle
= tegra_fb_create_handle
,
94 static struct tegra_fb
*tegra_fb_alloc(struct drm_device
*drm
,
95 struct drm_mode_fb_cmd2
*mode_cmd
,
96 struct tegra_bo
**planes
,
97 unsigned int num_planes
)
103 fb
= kzalloc(sizeof(*fb
), GFP_KERNEL
);
105 return ERR_PTR(-ENOMEM
);
107 fb
->planes
= kzalloc(num_planes
* sizeof(*planes
), GFP_KERNEL
);
110 return ERR_PTR(-ENOMEM
);
113 fb
->num_planes
= num_planes
;
115 drm_helper_mode_fill_fb_struct(&fb
->base
, mode_cmd
);
117 for (i
= 0; i
< fb
->num_planes
; i
++)
118 fb
->planes
[i
] = planes
[i
];
120 err
= drm_framebuffer_init(drm
, &fb
->base
, &tegra_fb_funcs
);
122 dev_err(drm
->dev
, "failed to initialize framebuffer: %d\n",
132 struct drm_framebuffer
*tegra_fb_create(struct drm_device
*drm
,
133 struct drm_file
*file
,
134 struct drm_mode_fb_cmd2
*cmd
)
136 unsigned int hsub
, vsub
, i
;
137 struct tegra_bo
*planes
[4];
138 struct drm_gem_object
*gem
;
142 hsub
= drm_format_horz_chroma_subsampling(cmd
->pixel_format
);
143 vsub
= drm_format_vert_chroma_subsampling(cmd
->pixel_format
);
145 for (i
= 0; i
< drm_format_num_planes(cmd
->pixel_format
); i
++) {
146 unsigned int width
= cmd
->width
/ (i
? hsub
: 1);
147 unsigned int height
= cmd
->height
/ (i
? vsub
: 1);
148 unsigned int size
, bpp
;
150 gem
= drm_gem_object_lookup(drm
, file
, cmd
->handles
[i
]);
156 bpp
= drm_format_plane_cpp(cmd
->pixel_format
, i
);
158 size
= (height
- 1) * cmd
->pitches
[i
] +
159 width
* bpp
+ cmd
->offsets
[i
];
161 if (gem
->size
< size
) {
166 planes
[i
] = to_tegra_bo(gem
);
169 fb
= tegra_fb_alloc(drm
, cmd
, planes
, i
);
179 drm_gem_object_unreference_unlocked(&planes
[i
]->gem
);
184 #ifdef CONFIG_DRM_TEGRA_FBDEV
185 static struct fb_ops tegra_fb_ops
= {
186 .owner
= THIS_MODULE
,
187 .fb_fillrect
= drm_fb_helper_sys_fillrect
,
188 .fb_copyarea
= drm_fb_helper_sys_copyarea
,
189 .fb_imageblit
= drm_fb_helper_sys_imageblit
,
190 .fb_check_var
= drm_fb_helper_check_var
,
191 .fb_set_par
= drm_fb_helper_set_par
,
192 .fb_blank
= drm_fb_helper_blank
,
193 .fb_pan_display
= drm_fb_helper_pan_display
,
194 .fb_setcmap
= drm_fb_helper_setcmap
,
197 static int tegra_fbdev_probe(struct drm_fb_helper
*helper
,
198 struct drm_fb_helper_surface_size
*sizes
)
200 struct tegra_fbdev
*fbdev
= to_tegra_fbdev(helper
);
201 struct tegra_drm
*tegra
= helper
->dev
->dev_private
;
202 struct drm_device
*drm
= helper
->dev
;
203 struct drm_mode_fb_cmd2 cmd
= { 0 };
204 unsigned int bytes_per_pixel
;
205 struct drm_framebuffer
*fb
;
206 unsigned long offset
;
207 struct fb_info
*info
;
212 bytes_per_pixel
= DIV_ROUND_UP(sizes
->surface_bpp
, 8);
214 cmd
.width
= sizes
->surface_width
;
215 cmd
.height
= sizes
->surface_height
;
216 cmd
.pitches
[0] = round_up(sizes
->surface_width
* bytes_per_pixel
,
218 cmd
.pixel_format
= drm_mode_legacy_fb_format(sizes
->surface_bpp
,
219 sizes
->surface_depth
);
221 size
= cmd
.pitches
[0] * cmd
.height
;
223 bo
= tegra_bo_create(drm
, size
, 0);
227 info
= drm_fb_helper_alloc_fbi(helper
);
229 dev_err(drm
->dev
, "failed to allocate framebuffer info\n");
230 drm_gem_object_unreference_unlocked(&bo
->gem
);
231 return PTR_ERR(info
);
234 fbdev
->fb
= tegra_fb_alloc(drm
, &cmd
, &bo
, 1);
235 if (IS_ERR(fbdev
->fb
)) {
236 err
= PTR_ERR(fbdev
->fb
);
237 dev_err(drm
->dev
, "failed to allocate DRM framebuffer: %d\n",
239 drm_gem_object_unreference_unlocked(&bo
->gem
);
243 fb
= &fbdev
->fb
->base
;
245 helper
->fbdev
= info
;
248 info
->flags
= FBINFO_FLAG_DEFAULT
;
249 info
->fbops
= &tegra_fb_ops
;
251 drm_fb_helper_fill_fix(info
, fb
->pitches
[0], fb
->depth
);
252 drm_fb_helper_fill_var(info
, helper
, fb
->width
, fb
->height
);
254 offset
= info
->var
.xoffset
* bytes_per_pixel
+
255 info
->var
.yoffset
* fb
->pitches
[0];
258 bo
->vaddr
= vmap(bo
->pages
, bo
->num_pages
, VM_MAP
,
259 pgprot_writecombine(PAGE_KERNEL
));
261 dev_err(drm
->dev
, "failed to vmap() framebuffer\n");
267 drm
->mode_config
.fb_base
= (resource_size_t
)bo
->paddr
;
268 info
->screen_base
= (void __iomem
*)bo
->vaddr
+ offset
;
269 info
->screen_size
= size
;
270 info
->fix
.smem_start
= (unsigned long)(bo
->paddr
+ offset
);
271 info
->fix
.smem_len
= size
;
276 drm_framebuffer_unregister_private(fb
);
277 tegra_fb_destroy(fb
);
279 drm_fb_helper_release_fbi(helper
);
283 static const struct drm_fb_helper_funcs tegra_fb_helper_funcs
= {
284 .fb_probe
= tegra_fbdev_probe
,
287 static struct tegra_fbdev
*tegra_fbdev_create(struct drm_device
*drm
)
289 struct tegra_fbdev
*fbdev
;
291 fbdev
= kzalloc(sizeof(*fbdev
), GFP_KERNEL
);
293 dev_err(drm
->dev
, "failed to allocate DRM fbdev\n");
294 return ERR_PTR(-ENOMEM
);
297 drm_fb_helper_prepare(drm
, &fbdev
->base
, &tegra_fb_helper_funcs
);
302 static void tegra_fbdev_free(struct tegra_fbdev
*fbdev
)
307 static int tegra_fbdev_init(struct tegra_fbdev
*fbdev
,
308 unsigned int preferred_bpp
,
309 unsigned int num_crtc
,
310 unsigned int max_connectors
)
312 struct drm_device
*drm
= fbdev
->base
.dev
;
315 err
= drm_fb_helper_init(drm
, &fbdev
->base
, num_crtc
, max_connectors
);
317 dev_err(drm
->dev
, "failed to initialize DRM FB helper: %d\n",
322 err
= drm_fb_helper_single_add_all_connectors(&fbdev
->base
);
324 dev_err(drm
->dev
, "failed to add connectors: %d\n", err
);
328 err
= drm_fb_helper_initial_config(&fbdev
->base
, preferred_bpp
);
330 dev_err(drm
->dev
, "failed to set initial configuration: %d\n",
338 drm_fb_helper_fini(&fbdev
->base
);
342 static void tegra_fbdev_exit(struct tegra_fbdev
*fbdev
)
344 drm_fb_helper_unregister_fbi(&fbdev
->base
);
345 drm_fb_helper_release_fbi(&fbdev
->base
);
348 drm_framebuffer_unregister_private(&fbdev
->fb
->base
);
349 drm_framebuffer_remove(&fbdev
->fb
->base
);
352 drm_fb_helper_fini(&fbdev
->base
);
353 tegra_fbdev_free(fbdev
);
356 void tegra_fbdev_restore_mode(struct tegra_fbdev
*fbdev
)
359 drm_fb_helper_restore_fbdev_mode_unlocked(&fbdev
->base
);
362 void tegra_fb_output_poll_changed(struct drm_device
*drm
)
364 struct tegra_drm
*tegra
= drm
->dev_private
;
367 drm_fb_helper_hotplug_event(&tegra
->fbdev
->base
);
371 int tegra_drm_fb_prepare(struct drm_device
*drm
)
373 #ifdef CONFIG_DRM_TEGRA_FBDEV
374 struct tegra_drm
*tegra
= drm
->dev_private
;
376 tegra
->fbdev
= tegra_fbdev_create(drm
);
377 if (IS_ERR(tegra
->fbdev
))
378 return PTR_ERR(tegra
->fbdev
);
384 void tegra_drm_fb_free(struct drm_device
*drm
)
386 #ifdef CONFIG_DRM_TEGRA_FBDEV
387 struct tegra_drm
*tegra
= drm
->dev_private
;
389 tegra_fbdev_free(tegra
->fbdev
);
393 int tegra_drm_fb_init(struct drm_device
*drm
)
395 #ifdef CONFIG_DRM_TEGRA_FBDEV
396 struct tegra_drm
*tegra
= drm
->dev_private
;
399 err
= tegra_fbdev_init(tegra
->fbdev
, 32, drm
->mode_config
.num_crtc
,
400 drm
->mode_config
.num_connector
);
408 void tegra_drm_fb_exit(struct drm_device
*drm
)
410 #ifdef CONFIG_DRM_TEGRA_FBDEV
411 struct tegra_drm
*tegra
= drm
->dev_private
;
413 tegra_fbdev_exit(tegra
->fbdev
);