timeline_syncobj 0.2.0

bindings for the timeline variant of drm_syncobjs
Documentation
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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
use core::slice;
use std::os::fd::{FromRawFd, OwnedFd, RawFd};

use bitflags::bitflags;
use derive_more::Deref;
use rustix::ioctl::{Ioctl, opcode::read_write};

pub const DRM_IOCTL_BASE: u8 = b'd';

pub const DRM_CAP_SYNCOBJ: DrmCap = DrmCap(0x13);
pub const DRM_CAP_SYNCOBJ_TIMELINE: DrmCap = DrmCap(0x14);
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Deref)]
#[repr(transparent)]
pub struct DrmCap(u64);
#[repr(C)]
pub struct DrmGetCap {
    pub cap: DrmCap,
    pub value: u64,
}

bitflags! {
    #[repr(transparent)]
    pub struct SyncobjCreateFlags: u32 {
        const CREATE_SIGNALED = 1 << 0;

        const _ = !0;
    }
}

#[repr(C)]
pub struct DrmSyncobjCreate {
    pub handle: u32,
    pub flags: SyncobjCreateFlags,
}

#[repr(C)]
pub struct DrmSyncobjDestroy {
    pub handle: RawDrmSyncobjHandle,
    pub _padding: u32,
}

bitflags! {
    #[repr(transparent)]
    pub struct SyncobjFdToHandleFlags: u32 {
        const IMPORT_SYNC_FILE = 1 << 0;
        const TIMELINE = 1 << 1;

        const _ = !0;
    }
}
bitflags! {
    #[repr(transparent)]
    #[derive(Debug)]
    pub struct SyncobjHandleToFdFlags: u32 {
        const EXPORT_SYNC_FILE = 1 << 0;
        const TIMELINE = 1 << 1;

        const _ = !0;
    }
}

#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Deref)]
#[repr(transparent)]
pub struct RawDrmSyncobjHandle(u32);
impl RawDrmSyncobjHandle {
    pub const NULL: Self = Self(0);
}

#[repr(C)]
pub struct DrmSyncobjHandleToFd {
    pub handle: RawDrmSyncobjHandle,
    pub flags: SyncobjHandleToFdFlags,
    pub fd: RawFd,
    pub _padding: u32,
    pub point: u64,
}
#[repr(C)]
pub struct DrmSyncobjFdToHandle {
    pub handle: RawDrmSyncobjHandle,
    pub flags: SyncobjFdToHandleFlags,
    pub fd: RawFd,
    pub _padding: u32,
    pub point: u64,
}
bitflags! {
    #[repr(transparent)]
    pub struct SyncobjTransferFlags: u32 {

        const _ = !0;
    }
}
#[repr(C)]
pub struct DrmSyncobjTransfer {
    pub src_handle: RawDrmSyncobjHandle,
    pub dst_handle: RawDrmSyncobjHandle,
    pub src_point: u64,
    pub dst_point: u64,
    pub flags: SyncobjTransferFlags,
    pub pad: u32,
}

bitflags! {
    #[repr(transparent)]
    pub struct SyncobjWaitFlags: u32 {
        /// Wait for all provided syncobjs to be signaled, instead of returning when one is signaled
        const ALL = 1 << 0;
        /// Wait for the underlying fence to be available before waiting on the fence
        const FOR_SUBMIT = 1 << 1;
        /// Only wait for the fence to be available, not for it to be signaled
        const AVAILABLE = 1 << 2;
        /// Set absolute deadline point, used for scheduling
        const DEADLINE = 1 << 3;

        const _ = !0;
    }
}
#[repr(C)]
pub struct DrmSyncobjWait {
    pub handles: u64,
    pub timeout_nsec: i64,
    pub count_handles: u32,
    pub flags: SyncobjWaitFlags,
    pub first_signaled: u32,
    pub _padding: u32,
    pub deadline_nsec: u64,
}
#[repr(C)]
pub struct DrmSyncobjTimelineWait {
    pub handles: u64,
    pub points: u64,
    pub timeout_nsec: i64,
    pub count_handles: u32,
    pub flags: SyncobjWaitFlags,
    pub first_signaled: u32,
    pub _padding: u32,
    pub deadline_nsec: u64,
}
bitflags! {
    #[repr(transparent)]
    pub struct SyncobjEventFdFlags: u32 {
        const WAIT_AVAILABLE = 1 << 0;

        const _ = !0;
    }
}
#[repr(C)]
pub struct DrmSyncobjEventFd {
    pub handle: RawDrmSyncobjHandle,
    // TODO: figure out what type this should be, maybe wait flags?
    pub flags: SyncobjEventFdFlags,
    pub point: u64,
    pub fd: RawFd,
    pub _padding: u32,
}

#[repr(C)]
pub struct DrmSyncobjReset {
    pub handles: u64,
    pub count_handles: u32,
    pub pad: u32,
}
#[repr(C)]
pub struct DrmSyncobjSignal {
    pub handles: u64,
    pub count_handles: u32,
    pub pad: u32,
}

bitflags! {
    #[repr(transparent)]
    pub struct SyncobjTimelineQueryFlags: u32 {
        const LAST_SUBMITTED = 1 << 0;

        const _ = !0;
    }
}
bitflags! {
    #[repr(transparent)]
    pub struct SyncobjTimelineSignalFlags: u32 {

        const _ = !0;
    }
}
#[repr(C)]
pub struct DrmSyncobjTimelineSignal {
    pub handles: u64,
    pub points: u64,
    pub count_handles: u32,
    pub flags: SyncobjTimelineSignalFlags,
}
#[repr(C)]
pub struct DrmSyncobjTimelineQuery {
    pub handles: u64,
    pub points: u64,
    pub count_handles: u32,
    pub flags: SyncobjTimelineQueryFlags,
}
unsafe impl Ioctl for DrmSyncobjCreate {
    type Output = RawDrmSyncobjHandle;

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xBF)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        let ptr = extract_output as *mut Self;
        let v = unsafe { &(*ptr) };
        Ok(RawDrmSyncobjHandle(v.handle))
    }
}
unsafe impl Ioctl for DrmSyncobjDestroy {
    type Output = ();

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xC0)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        _extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        Ok(())
    }
}
unsafe impl Ioctl for DrmSyncobjHandleToFd {
    type Output = OwnedFd;

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xC1)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        let ptr = extract_output as *mut Self;
        let v = unsafe { &(*ptr) };
        Ok(unsafe { OwnedFd::from_raw_fd(v.fd) })
    }
}
unsafe impl Ioctl for DrmSyncobjFdToHandle {
    type Output = RawDrmSyncobjHandle;

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xC2)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        let ptr = extract_output as *mut Self;
        let v = unsafe { &(*ptr) };
        Ok(v.handle)
    }
}
unsafe impl Ioctl for DrmSyncobjWait {
    type Output = Option<u32>;

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xC3)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        let ptr = extract_output as *mut Self;
        let v = unsafe { &(*ptr) };
        Ok((!v.flags.contains(SyncobjWaitFlags::ALL)).then(|| v.first_signaled))
    }
}
unsafe impl Ioctl for DrmSyncobjReset {
    type Output = ();

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xC4)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        _extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        Ok(())
    }
}
unsafe impl Ioctl for DrmSyncobjSignal {
    type Output = ();

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xC5)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        _extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        Ok(())
    }
}
unsafe impl Ioctl for DrmSyncobjTimelineWait {
    type Output = Option<u32>;

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xCA)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        let ptr = extract_output as *mut Self;
        let v = unsafe { &(*ptr) };
        Ok((!v.flags.contains(SyncobjWaitFlags::ALL)).then(|| v.first_signaled))
    }
}
unsafe impl Ioctl for DrmSyncobjTimelineQuery {
    type Output = Vec<u64>;

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xCB)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        let ptr = extract_output as *mut Self;
        let v = unsafe { &(*ptr) };
        // really unsure about this one
        let array = v.points as *const u64;
        let slice = unsafe { slice::from_raw_parts(array, v.count_handles as usize) };
        Ok(slice.to_vec())
    }
}
unsafe impl Ioctl for DrmSyncobjTransfer {
    type Output = ();

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xCC)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        _extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        Ok(())
    }
}
unsafe impl Ioctl for DrmSyncobjTimelineSignal {
    type Output = ();

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xCD)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        _extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        Ok(())
    }
}
unsafe impl Ioctl for DrmSyncobjEventFd {
    type Output = ();

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0xCF)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        _extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        Ok(())
    }
}
unsafe impl Ioctl for DrmGetCap {
    type Output = u64;

    const IS_MUTATING: bool = true;

    fn opcode(&self) -> rustix::ioctl::Opcode {
        read_write::<Self>(DRM_IOCTL_BASE, 0x0C)
    }

    fn as_ptr(&mut self) -> *mut rustix::ffi::c_void {
        self as *mut _ as *mut _
    }

    unsafe fn output_from_ptr(
        _out: rustix::ioctl::IoctlOutput,
        extract_output: *mut rustix::ffi::c_void,
    ) -> rustix::io::Result<Self::Output> {
        let ptr = extract_output as *mut Self;
        let v = unsafe { &(*ptr) };
        Ok(v.value)
    }
}