Source
34
34
*/
35
35
36
36
/*
37
37
* TODO the types we are after are defined in diffrent headers on diffrent
38
38
* platforms find which headers to include to get uint32_t
39
39
*/
40
40
#include <stdint.h>
41
41
#include <sys/ioctl.h>
42
42
#include <stdio.h>
43
43
44
+
#ifdef HAVE_CONFIG_H
45
+
#include "config.h"
46
+
#endif
47
+
44
48
#include "xf86drmMode.h"
45
49
#include "xf86drm.h"
46
50
#include <drm.h>
47
51
#include <string.h>
48
52
#include <dirent.h>
49
53
#include <unistd.h>
50
54
#include <errno.h>
51
55
56
+
#ifdef HAVE_VALGRIND
57
+
#include <valgrind.h>
58
+
#include <memcheck.h>
59
+
#define VG(x) x
60
+
#else
61
+
#define VG(x)
62
+
#endif
63
+
64
+
#define VG_CLEAR(s) VG(memset(&s, 0, sizeof(s)))
65
+
52
66
#define U642VOID(x) ((void *)(unsigned long)(x))
53
67
#define VOID2U64(x) ((uint64_t)(unsigned long)(x))
54
68
55
69
static inline int DRM_IOCTL(int fd, unsigned long cmd, void *arg)
56
70
{
57
71
int ret = drmIoctl(fd, cmd, arg);
58
72
return ret < 0 ? -errno : ret;
59
73
}
60
74
61
75
/*
238
252
return r;
239
253
}
240
254
241
255
int drmModeAddFB(int fd, uint32_t width, uint32_t height, uint8_t depth,
242
256
uint8_t bpp, uint32_t pitch, uint32_t bo_handle,
243
257
uint32_t *buf_id)
244
258
{
245
259
struct drm_mode_fb_cmd f;
246
260
int ret;
247
261
262
+
VG_CLEAR(f);
248
263
f.width = width;
249
264
f.height = height;
250
265
f.pitch = pitch;
251
266
f.bpp = bpp;
252
267
f.depth = depth;
253
268
f.handle = bo_handle;
254
269
255
270
if ((ret = DRM_IOCTL(fd, DRM_IOCTL_MODE_ADDFB, &f)))
256
271
return ret;
257
272
328
343
329
344
/*
330
345
* Crtc functions
331
346
*/
332
347
333
348
drmModeCrtcPtr drmModeGetCrtc(int fd, uint32_t crtcId)
334
349
{
335
350
struct drm_mode_crtc crtc;
336
351
drmModeCrtcPtr r;
337
352
353
+
VG_CLEAR(crtc);
338
354
crtc.crtc_id = crtcId;
339
355
340
356
if (drmIoctl(fd, DRM_IOCTL_MODE_GETCRTC, &crtc))
341
357
return 0;
342
358
343
359
/*
344
360
* return
345
361
*/
346
362
347
363
if (!(r = drmMalloc(sizeof(*r))))
361
377
return r;
362
378
}
363
379
364
380
365
381
int drmModeSetCrtc(int fd, uint32_t crtcId, uint32_t bufferId,
366
382
uint32_t x, uint32_t y, uint32_t *connectors, int count,
367
383
drmModeModeInfoPtr mode)
368
384
{
369
385
struct drm_mode_crtc crtc;
370
386
387
+
VG_CLEAR(crtc);
371
388
crtc.x = x;
372
389
crtc.y = y;
373
390
crtc.crtc_id = crtcId;
374
391
crtc.fb_id = bufferId;
375
392
crtc.set_connectors_ptr = VOID2U64(connectors);
376
393
crtc.count_connectors = count;
377
394
if (mode) {
378
395
memcpy(&crtc.mode, mode, sizeof(struct drm_mode_modeinfo));
379
396
crtc.mode_valid = 1;
380
397
} else
429
446
430
447
/*
431
448
* Encoder get
432
449
*/
433
450
drmModeEncoderPtr drmModeGetEncoder(int fd, uint32_t encoder_id)
434
451
{
435
452
struct drm_mode_get_encoder enc;
436
453
drmModeEncoderPtr r = NULL;
437
454
438
455
enc.encoder_id = encoder_id;
456
+
enc.crtc_id = 0;
439
457
enc.encoder_type = 0;
440
458
enc.possible_crtcs = 0;
441
459
enc.possible_clones = 0;
442
460
443
461
if (drmIoctl(fd, DRM_IOCTL_MODE_GETENCODER, &enc))
444
462
return 0;
445
463
446
464
if (!(r = drmMalloc(sizeof(*r))))
447
465
return 0;
448
466
573
591
574
592
return DRM_IOCTL(fd, DRM_IOCTL_MODE_DETACHMODE, &res);
575
593
}
576
594
577
595
578
596
drmModePropertyPtr drmModeGetProperty(int fd, uint32_t property_id)
579
597
{
580
598
struct drm_mode_get_property prop;
581
599
drmModePropertyPtr r;
582
600
601
+
VG_CLEAR(prop);
583
602
prop.prop_id = property_id;
584
603
prop.count_enum_blobs = 0;
585
604
prop.count_values = 0;
586
605
prop.flags = 0;
587
606
prop.enum_blob_ptr = 0;
588
607
prop.values_ptr = 0;
589
608
590
609
if (drmIoctl(fd, DRM_IOCTL_MODE_GETPROPERTY, &prop))
591
610
return 0;
592
611