1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#ifndef DRM_PLANE_HELPER_H
25#define DRM_PLANE_HELPER_H
26
27#include <drm/drm_rect.h>
28#include <drm/drm_crtc.h>
29#include <drm/drm_modeset_helper_vtables.h>
30#include <drm/drm_modeset_helper.h>
31
32
33
34
35
36
37
38
39#define DRM_PLANE_HELPER_NO_SCALING (1<<16)
40
41int drm_plane_helper_check_state(struct drm_plane_state *state,
42 const struct drm_rect *clip,
43 int min_scale, int max_scale,
44 bool can_position,
45 bool can_update_disabled);
46int drm_plane_helper_check_update(struct drm_plane *plane,
47 struct drm_crtc *crtc,
48 struct drm_framebuffer *fb,
49 struct drm_rect *src,
50 struct drm_rect *dest,
51 const struct drm_rect *clip,
52 unsigned int rotation,
53 int min_scale,
54 int max_scale,
55 bool can_position,
56 bool can_update_disabled,
57 bool *visible);
58int drm_primary_helper_update(struct drm_plane *plane,
59 struct drm_crtc *crtc,
60 struct drm_framebuffer *fb,
61 int crtc_x, int crtc_y,
62 unsigned int crtc_w, unsigned int crtc_h,
63 uint32_t src_x, uint32_t src_y,
64 uint32_t src_w, uint32_t src_h,
65 struct drm_modeset_acquire_ctx *ctx);
66int drm_primary_helper_disable(struct drm_plane *plane,
67 struct drm_modeset_acquire_ctx *ctx);
68void drm_primary_helper_destroy(struct drm_plane *plane);
69extern const struct drm_plane_funcs drm_primary_helper_funcs;
70
71int drm_plane_helper_update(struct drm_plane *plane, struct drm_crtc *crtc,
72 struct drm_framebuffer *fb,
73 int crtc_x, int crtc_y,
74 unsigned int crtc_w, unsigned int crtc_h,
75 uint32_t src_x, uint32_t src_y,
76 uint32_t src_w, uint32_t src_h);
77int drm_plane_helper_disable(struct drm_plane *plane);
78
79
80int drm_plane_helper_commit(struct drm_plane *plane,
81 struct drm_plane_state *plane_state,
82 struct drm_framebuffer *old_fb);
83#endif
84