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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
|
/*
* uterm - Linux User-Space Terminal
*
* Copyright (c) 2011-2012 David Herrmann <dh.herrmann@googlemail.com>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* Internal definitions */
#ifndef UTERM_VIDEO_H
#define UTERM_VIDEO_H
#include <inttypes.h>
#include <limits.h>
#include <stdbool.h>
#include <stdlib.h>
#include "eloop.h"
#include "shl_hook.h"
#include "uterm.h"
/* backend-operations */
struct mode_ops {
int (*init) (struct uterm_mode *mode);
void (*destroy) (struct uterm_mode *mode);
const char *(*get_name) (const struct uterm_mode *mode);
unsigned int (*get_width) (const struct uterm_mode *mode);
unsigned int (*get_height) (const struct uterm_mode *mode);
};
struct display_ops {
int (*init) (struct uterm_display *display);
void (*destroy) (struct uterm_display *display);
int (*activate) (struct uterm_display *disp, struct uterm_mode *mode);
void (*deactivate) (struct uterm_display *disp);
int (*set_dpms) (struct uterm_display *disp, int state);
int (*use) (struct uterm_display *disp);
int (*swap) (struct uterm_display *disp);
int (*blit) (struct uterm_display *disp,
const struct uterm_video_buffer *buf,
unsigned int x, unsigned int y);
int (*blend) (struct uterm_display *disp,
const struct uterm_video_buffer *buf,
unsigned int x, unsigned int y,
uint8_t fr, uint8_t fg, uint8_t fb,
uint8_t br, uint8_t bg, uint8_t bb);
int (*blendv) (struct uterm_display *disp,
const struct uterm_video_blend_req *req, size_t num);
int (*fake_blendv) (struct uterm_display *disp,
const struct uterm_video_blend_req *req,
size_t num);
int (*fill) (struct uterm_display *disp,
uint8_t r, uint8_t g, uint8_t b, unsigned int x,
unsigned int y, unsigned int width, unsigned int height);
};
struct video_ops {
int (*init) (struct uterm_video *video, const char *node);
void (*destroy) (struct uterm_video *video);
void (*segfault) (struct uterm_video *video);
int (*use) (struct uterm_video *video);
int (*poll) (struct uterm_video *video);
void (*sleep) (struct uterm_video *video);
int (*wake_up) (struct uterm_video *video);
};
#define VIDEO_CALL(func, els, ...) (func ? func(__VA_ARGS__) : els)
/* drm */
#ifdef BUILD_ENABLE_VIDEO_DRM
#include <EGL/egl.h>
#include <EGL/eglext.h>
#include <gbm.h>
#include <GLES2/gl2.h>
#include <GLES2/gl2ext.h>
#include <xf86drm.h>
#include <xf86drmMode.h>
#include "static_gl.h"
struct drm_mode {
drmModeModeInfo info;
};
struct drm_rb {
struct uterm_display *disp;
struct gbm_bo *bo;
uint32_t fb;
};
struct drm_display {
uint32_t conn_id;
int crtc_id;
drmModeCrtc *saved_crtc;
struct gbm_surface *gbm;
EGLSurface surface;
struct drm_rb *current;
struct drm_rb *next;
unsigned int ignore_flips;
};
struct drm_video {
int fd;
struct ev_fd *efd;
struct gbm_device *gbm;
EGLDisplay disp;
EGLConfig conf;
EGLContext ctx;
unsigned int sinit;
bool supports_rowlen;
GLuint tex;
struct gl_shader *fill_shader;
GLuint uni_fill_proj;
struct gl_shader *blend_shader;
GLuint uni_blend_proj;
GLuint uni_blend_tex;
GLuint uni_blend_fgcol;
GLuint uni_blend_bgcol;
struct gl_shader *blit_shader;
GLuint uni_blit_proj;
GLuint uni_blit_tex;
};
static const bool drm_available = true;
extern const struct mode_ops drm_mode_ops;
extern const struct display_ops drm_display_ops;
extern const struct video_ops drm_video_ops;
#else /* !BUILD_ENABLE_VIDEO_DRM */
struct drm_mode {
int unused;
};
struct drm_display {
int unused;
};
struct drm_video {
int unused;
};
static const bool drm_available = false;
static const struct mode_ops drm_mode_ops;
static const struct display_ops drm_display_ops;
static const struct video_ops drm_video_ops;
#endif /* BUILD_ENABLE_VIDEO_DRM */
/* dumb drm */
#ifdef BUILD_ENABLE_VIDEO_DUMB
#include <xf86drm.h>
#include <xf86drmMode.h>
struct dumb_mode {
drmModeModeInfo info;
};
struct dumb_rb {
uint32_t fb;
uint32_t handle;
uint32_t stride;
uint64_t size;
void *map;
};
struct dumb_display {
uint32_t conn_id;
int crtc_id;
drmModeCrtc *saved_crtc;
int current_rb;
struct dumb_rb rb[2];
};
struct dumb_video {
int fd;
struct ev_fd *efd;
};
static const bool dumb_available = true;
extern const struct mode_ops dumb_mode_ops;
extern const struct display_ops dumb_display_ops;
extern const struct video_ops dumb_video_ops;
#else /* !BUILD_ENABLE_VIDEO_DUMB */
struct dumb_mode {
int unused;
};
struct dumb_display {
int unused;
};
struct dumb_video {
int unused;
};
static const bool dumb_available = false;
static const struct mode_ops dumb_mode_ops;
static const struct display_ops dumb_display_ops;
static const struct video_ops dumb_video_ops;
#endif /* BUILD_ENABLE_VIDEO_DUMB */
/* fbdev */
#ifdef BUILD_ENABLE_VIDEO_FBDEV
#include <linux/fb.h>
struct fbdev_mode {
unsigned int width;
unsigned int height;
};
struct fbdev_display {
char *node;
int fd;
bool pending_intro;
struct fb_fix_screeninfo finfo;
struct fb_var_screeninfo vinfo;
unsigned int rate;
unsigned int bufid;
size_t xres;
size_t yres;
size_t len;
uint8_t *map;
unsigned int stride;
bool xrgb32;
unsigned int Bpp;
unsigned int off_r;
unsigned int off_g;
unsigned int off_b;
unsigned int len_r;
unsigned int len_g;
unsigned int len_b;
int_fast32_t dither_r;
int_fast32_t dither_g;
int_fast32_t dither_b;
};
struct fbdev_video {
int unused;
};
static const bool fbdev_available = true;
extern const struct mode_ops fbdev_mode_ops;
extern const struct display_ops fbdev_display_ops;
extern const struct video_ops fbdev_video_ops;
#else /* !BUILD_ENABLE_VIDEO_FBDEV */
struct fbdev_mode {
int unused;
};
struct fbdev_display {
int unused;
};
struct fbdev_video {
int unused;
};
static const bool fbdev_available = false;
static const struct mode_ops fbdev_mode_ops;
static const struct display_ops fbdev_display_ops;
static const struct video_ops fbdev_video_ops;
#endif /* BUILD_ENABLE_VIDEO_FBDEV */
/* uterm_mode */
struct uterm_mode {
unsigned long ref;
struct uterm_mode *next;
const struct mode_ops *ops;
union {
struct drm_mode drm;
struct dumb_mode dumb;
struct fbdev_mode fbdev;
};
};
int mode_new(struct uterm_mode **out, const struct mode_ops *ops);
/* uterm_display */
#define DISPLAY_ONLINE 0x01
#define DISPLAY_VSYNC 0x02
#define DISPLAY_AVAILABLE 0x04
#define DISPLAY_OPEN 0x08
#define DISPLAY_DBUF 0x10
#define DISPLAY_DITHERING 0x20
struct uterm_display {
unsigned long ref;
unsigned int flags;
struct uterm_display *next;
struct uterm_video *video;
struct shl_hook *hook;
struct uterm_mode *modes;
struct uterm_mode *default_mode;
struct uterm_mode *current_mode;
int dpms;
bool vblank_scheduled;
struct itimerspec vblank_spec;
struct ev_timer *vblank_timer;
const struct display_ops *ops;
union {
struct drm_display drm;
struct dumb_display dumb;
struct fbdev_display fbdev;
};
};
int display_new(struct uterm_display **out, const struct display_ops *ops,
struct uterm_video *video);
void display_set_vblank_timer(struct uterm_display *disp,
unsigned int msecs);
int display_schedule_vblank_timer(struct uterm_display *disp);
#define DISPLAY_CB(disp, act) shl_hook_call((disp)->hook, (disp), \
&(struct uterm_display_event){ \
.action = (act), \
})
static inline bool display_is_conn(const struct uterm_display *disp)
{
return disp->video;
}
static inline bool display_is_online(const struct uterm_display *disp)
{
return display_is_conn(disp) && (disp->flags & DISPLAY_ONLINE);
}
/* uterm_video */
#define VIDEO_AWAKE 0x01
#define VIDEO_HOTPLUG 0x02
struct uterm_video {
unsigned long ref;
unsigned int flags;
struct ev_eloop *eloop;
struct uterm_display *displays;
struct shl_hook *hook;
const struct video_ops *ops;
union {
struct drm_video drm;
struct dumb_video dumb;
struct fbdev_video fbdev;
};
};
static inline bool video_is_awake(const struct uterm_video *video)
{
return video->flags & VIDEO_AWAKE;
}
static inline bool video_need_hotplug(const struct uterm_video *video)
{
return video->flags & VIDEO_HOTPLUG;
}
#define VIDEO_CB(vid, disp, act) shl_hook_call((vid)->hook, (vid), \
&(struct uterm_video_hotplug){ \
.display = (disp), \
.action = (act), \
})
static inline int video_do_use(struct uterm_video *video)
{
return VIDEO_CALL(video->ops->use, -EOPNOTSUPP, video);
}
#if defined(BUILD_ENABLE_VIDEO_DRM) || defined(BUILD_ENABLE_VIDEO_DUMB)
static inline bool video_drm_available(void)
{
return drmAvailable();
}
#else
static inline bool video_drm_available(void)
{
return false;
}
#endif
#endif /* UTERM_VIDEO_H */
|