blob: 40259f0ab5dfae21380f4dd7d844e549d1ec4648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
#ifndef __FIMCTEST_H__
#define __FIMCTEST_H__
#include <stdbool.h>
#include "xf86drm.h"
#include "xf86drmMode.h"
#include "libkms.h"
#define MAX_LOOP 20
#define HALF_LOOP 10
#define MAX_BUF 3
#define RESULT_PATH "/tmp/"
struct connector {
uint32_t id;
char mode_str[64];
drmModeModeInfo *mode;
drmModeEncoder *encoder;
int crtc;
unsigned int fb_id[2], current_fb_id;
struct timeval start;
int swap_count;
};
struct crtc {
drmModeCrtc *crtc;
drmModeObjectProperties *props;
drmModePropertyRes **props_info;
drmModeModeInfo *mode;
};
struct encoder {
drmModeEncoder *encoder;
};
struct drm_connector {
drmModeConnector *connector;
drmModeObjectProperties *props;
drmModePropertyRes **props_info;
};
struct fb {
drmModeFB *fb;
};
struct plane {
drmModePlane *plane;
drmModeObjectProperties *props;
drmModePropertyRes **props_info;
};
struct resources {
drmModeRes *res;
drmModePlaneRes *plane_res;
struct crtc *crtcs;
struct encoder *encoders;
struct drm_connector *connectors;
struct fb *fbs;
struct plane *planes;
};
struct device {
int fd;
struct resources *resources;
struct kms_driver *kms;
struct {
unsigned int width;
unsigned int height;
unsigned int fb_id;
struct kms_bo *bo;
} mode;
};
struct pipe_arg {
uint32_t *con_ids;
unsigned int num_cons;
uint32_t crtc_id;
char mode_str[64];
char format_str[5];
unsigned int vrefresh;
unsigned int fourcc;
drmModeModeInfo *mode;
struct crtc *crtc;
struct timeval start;
};
struct plane_arg {
uint32_t crtc_id; /* the id of CRTC to bind to */
bool has_position;
int32_t x, y;
uint32_t w, h;
double scale;
unsigned int fb_id;
char format_str[5]; /* need to leave room for terminating \0 */
unsigned int fourcc;
};
extern int fd;
extern void connector_find_mode(struct connector *c);
#endif
|