]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/drm/drm_fb_cma_helper.h
net/dst: add new function skb_dst_update_pmtu_no_confirm
[mirror_ubuntu-bionic-kernel.git] / include / drm / drm_fb_cma_helper.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
2e3b3c42
LPC
2#ifndef __DRM_FB_CMA_HELPER_H__
3#define __DRM_FB_CMA_HELPER_H__
4
5struct drm_fbdev_cma;
6struct drm_gem_cma_object;
7
199c7717
NT
8struct drm_fb_helper_surface_size;
9struct drm_framebuffer_funcs;
10struct drm_fb_helper_funcs;
2e3b3c42 11struct drm_framebuffer;
199c7717 12struct drm_fb_helper;
2e3b3c42
LPC
13struct drm_device;
14struct drm_file;
15struct drm_mode_fb_cmd2;
196594ef
MV
16struct drm_plane;
17struct drm_plane_state;
2e3b3c42 18
199c7717 19struct drm_fbdev_cma *drm_fbdev_cma_init_with_funcs(struct drm_device *dev,
e4563f6b
GKB
20 unsigned int preferred_bpp, unsigned int max_conn_count,
21 const struct drm_framebuffer_funcs *funcs);
2e3b3c42 22struct drm_fbdev_cma *drm_fbdev_cma_init(struct drm_device *dev,
e4563f6b 23 unsigned int preferred_bpp, unsigned int max_conn_count);
2e3b3c42
LPC
24void drm_fbdev_cma_fini(struct drm_fbdev_cma *fbdev_cma);
25
26void drm_fbdev_cma_restore_mode(struct drm_fbdev_cma *fbdev_cma);
27void drm_fbdev_cma_hotplug_event(struct drm_fbdev_cma *fbdev_cma);
d0a29878 28void drm_fbdev_cma_set_suspend(struct drm_fbdev_cma *fbdev_cma, bool state);
a4405b56 29void drm_fbdev_cma_set_suspend_unlocked(struct drm_fbdev_cma *fbdev_cma,
d0a29878 30 bool state);
199c7717 31
2e3b3c42
LPC
32struct drm_gem_cma_object *drm_fb_cma_get_gem_obj(struct drm_framebuffer *fb,
33 unsigned int plane);
34
4636ce93
YF
35dma_addr_t drm_fb_cma_get_gem_addr(struct drm_framebuffer *fb,
36 struct drm_plane_state *state,
37 unsigned int plane);
38
6f646095 39#ifdef CONFIG_DEBUG_FS
80588a86
MR
40struct seq_file;
41
6f646095
RC
42int drm_fb_cma_debugfs_show(struct seq_file *m, void *arg);
43#endif
44
2e3b3c42
LPC
45#endif
46