7f13d241417f916e44d3307386bb50bac0b62c2d
[linux-2.6-microblaze.git] / include / uapi / drm / i915_drm.h
1 /*
2  * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sub license, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the
14  * next paragraph) shall be included in all copies or substantial portions
15  * of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
20  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
21  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  *
25  */
26
27 #ifndef _UAPI_I915_DRM_H_
28 #define _UAPI_I915_DRM_H_
29
30 #include "drm.h"
31
32 #if defined(__cplusplus)
33 extern "C" {
34 #endif
35
36 /* Please note that modifications to all structs defined here are
37  * subject to backwards-compatibility constraints.
38  */
39
40 /**
41  * DOC: uevents generated by i915 on it's device node
42  *
43  * I915_L3_PARITY_UEVENT - Generated when the driver receives a parity mismatch
44  *      event from the gpu l3 cache. Additional information supplied is ROW,
45  *      BANK, SUBBANK, SLICE of the affected cacheline. Userspace should keep
46  *      track of these events and if a specific cache-line seems to have a
47  *      persistent error remap it with the l3 remapping tool supplied in
48  *      intel-gpu-tools.  The value supplied with the event is always 1.
49  *
50  * I915_ERROR_UEVENT - Generated upon error detection, currently only via
51  *      hangcheck. The error detection event is a good indicator of when things
52  *      began to go badly. The value supplied with the event is a 1 upon error
53  *      detection, and a 0 upon reset completion, signifying no more error
54  *      exists. NOTE: Disabling hangcheck or reset via module parameter will
55  *      cause the related events to not be seen.
56  *
57  * I915_RESET_UEVENT - Event is generated just before an attempt to reset the
58  *      GPU. The value supplied with the event is always 1. NOTE: Disable
59  *      reset via module parameter will cause this event to not be seen.
60  */
61 #define I915_L3_PARITY_UEVENT           "L3_PARITY_ERROR"
62 #define I915_ERROR_UEVENT               "ERROR"
63 #define I915_RESET_UEVENT               "RESET"
64
65 /**
66  * struct i915_user_extension - Base class for defining a chain of extensions
67  *
68  * Many interfaces need to grow over time. In most cases we can simply
69  * extend the struct and have userspace pass in more data. Another option,
70  * as demonstrated by Vulkan's approach to providing extensions for forward
71  * and backward compatibility, is to use a list of optional structs to
72  * provide those extra details.
73  *
74  * The key advantage to using an extension chain is that it allows us to
75  * redefine the interface more easily than an ever growing struct of
76  * increasing complexity, and for large parts of that interface to be
77  * entirely optional. The downside is more pointer chasing; chasing across
78  * the __user boundary with pointers encapsulated inside u64.
79  *
80  * Example chaining:
81  *
82  * .. code-block:: C
83  *
84  *      struct i915_user_extension ext3 {
85  *              .next_extension = 0, // end
86  *              .name = ...,
87  *      };
88  *      struct i915_user_extension ext2 {
89  *              .next_extension = (uintptr_t)&ext3,
90  *              .name = ...,
91  *      };
92  *      struct i915_user_extension ext1 {
93  *              .next_extension = (uintptr_t)&ext2,
94  *              .name = ...,
95  *      };
96  *
97  * Typically the struct i915_user_extension would be embedded in some uAPI
98  * struct, and in this case we would feed it the head of the chain(i.e ext1),
99  * which would then apply all of the above extensions.
100  *
101  */
102 struct i915_user_extension {
103         /**
104          * @next_extension:
105          *
106          * Pointer to the next struct i915_user_extension, or zero if the end.
107          */
108         __u64 next_extension;
109         /**
110          * @name: Name of the extension.
111          *
112          * Note that the name here is just some integer.
113          *
114          * Also note that the name space for this is not global for the whole
115          * driver, but rather its scope/meaning is limited to the specific piece
116          * of uAPI which has embedded the struct i915_user_extension.
117          */
118         __u32 name;
119         /**
120          * @flags: MBZ
121          *
122          * All undefined bits must be zero.
123          */
124         __u32 flags;
125         /**
126          * @rsvd: MBZ
127          *
128          * Reserved for future use; must be zero.
129          */
130         __u32 rsvd[4];
131 };
132
133 /*
134  * MOCS indexes used for GPU surfaces, defining the cacheability of the
135  * surface data and the coherency for this data wrt. CPU vs. GPU accesses.
136  */
137 enum i915_mocs_table_index {
138         /*
139          * Not cached anywhere, coherency between CPU and GPU accesses is
140          * guaranteed.
141          */
142         I915_MOCS_UNCACHED,
143         /*
144          * Cacheability and coherency controlled by the kernel automatically
145          * based on the DRM_I915_GEM_SET_CACHING IOCTL setting and the current
146          * usage of the surface (used for display scanout or not).
147          */
148         I915_MOCS_PTE,
149         /*
150          * Cached in all GPU caches available on the platform.
151          * Coherency between CPU and GPU accesses to the surface is not
152          * guaranteed without extra synchronization.
153          */
154         I915_MOCS_CACHED,
155 };
156
157 /*
158  * Different engines serve different roles, and there may be more than one
159  * engine serving each role. enum drm_i915_gem_engine_class provides a
160  * classification of the role of the engine, which may be used when requesting
161  * operations to be performed on a certain subset of engines, or for providing
162  * information about that group.
163  */
164 enum drm_i915_gem_engine_class {
165         I915_ENGINE_CLASS_RENDER        = 0,
166         I915_ENGINE_CLASS_COPY          = 1,
167         I915_ENGINE_CLASS_VIDEO         = 2,
168         I915_ENGINE_CLASS_VIDEO_ENHANCE = 3,
169
170         /* should be kept compact */
171
172         I915_ENGINE_CLASS_INVALID       = -1
173 };
174
175 /*
176  * There may be more than one engine fulfilling any role within the system.
177  * Each engine of a class is given a unique instance number and therefore
178  * any engine can be specified by its class:instance tuplet. APIs that allow
179  * access to any engine in the system will use struct i915_engine_class_instance
180  * for this identification.
181  */
182 struct i915_engine_class_instance {
183         __u16 engine_class; /* see enum drm_i915_gem_engine_class */
184         __u16 engine_instance;
185 #define I915_ENGINE_CLASS_INVALID_NONE -1
186 #define I915_ENGINE_CLASS_INVALID_VIRTUAL -2
187 };
188
189 /**
190  * DOC: perf_events exposed by i915 through /sys/bus/event_sources/drivers/i915
191  *
192  */
193
194 enum drm_i915_pmu_engine_sample {
195         I915_SAMPLE_BUSY = 0,
196         I915_SAMPLE_WAIT = 1,
197         I915_SAMPLE_SEMA = 2
198 };
199
200 #define I915_PMU_SAMPLE_BITS (4)
201 #define I915_PMU_SAMPLE_MASK (0xf)
202 #define I915_PMU_SAMPLE_INSTANCE_BITS (8)
203 #define I915_PMU_CLASS_SHIFT \
204         (I915_PMU_SAMPLE_BITS + I915_PMU_SAMPLE_INSTANCE_BITS)
205
206 #define __I915_PMU_ENGINE(class, instance, sample) \
207         ((class) << I915_PMU_CLASS_SHIFT | \
208         (instance) << I915_PMU_SAMPLE_BITS | \
209         (sample))
210
211 #define I915_PMU_ENGINE_BUSY(class, instance) \
212         __I915_PMU_ENGINE(class, instance, I915_SAMPLE_BUSY)
213
214 #define I915_PMU_ENGINE_WAIT(class, instance) \
215         __I915_PMU_ENGINE(class, instance, I915_SAMPLE_WAIT)
216
217 #define I915_PMU_ENGINE_SEMA(class, instance) \
218         __I915_PMU_ENGINE(class, instance, I915_SAMPLE_SEMA)
219
220 #define __I915_PMU_OTHER(x) (__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x))
221
222 #define I915_PMU_ACTUAL_FREQUENCY       __I915_PMU_OTHER(0)
223 #define I915_PMU_REQUESTED_FREQUENCY    __I915_PMU_OTHER(1)
224 #define I915_PMU_INTERRUPTS             __I915_PMU_OTHER(2)
225 #define I915_PMU_RC6_RESIDENCY          __I915_PMU_OTHER(3)
226 #define I915_PMU_SOFTWARE_GT_AWAKE_TIME __I915_PMU_OTHER(4)
227
228 #define I915_PMU_LAST /* Deprecated - do not use */ I915_PMU_RC6_RESIDENCY
229
230 /* Each region is a minimum of 16k, and there are at most 255 of them.
231  */
232 #define I915_NR_TEX_REGIONS 255 /* table size 2k - maximum due to use
233                                  * of chars for next/prev indices */
234 #define I915_LOG_MIN_TEX_REGION_SIZE 14
235
236 typedef struct _drm_i915_init {
237         enum {
238                 I915_INIT_DMA = 0x01,
239                 I915_CLEANUP_DMA = 0x02,
240                 I915_RESUME_DMA = 0x03
241         } func;
242         unsigned int mmio_offset;
243         int sarea_priv_offset;
244         unsigned int ring_start;
245         unsigned int ring_end;
246         unsigned int ring_size;
247         unsigned int front_offset;
248         unsigned int back_offset;
249         unsigned int depth_offset;
250         unsigned int w;
251         unsigned int h;
252         unsigned int pitch;
253         unsigned int pitch_bits;
254         unsigned int back_pitch;
255         unsigned int depth_pitch;
256         unsigned int cpp;
257         unsigned int chipset;
258 } drm_i915_init_t;
259
260 typedef struct _drm_i915_sarea {
261         struct drm_tex_region texList[I915_NR_TEX_REGIONS + 1];
262         int last_upload;        /* last time texture was uploaded */
263         int last_enqueue;       /* last time a buffer was enqueued */
264         int last_dispatch;      /* age of the most recently dispatched buffer */
265         int ctxOwner;           /* last context to upload state */
266         int texAge;
267         int pf_enabled;         /* is pageflipping allowed? */
268         int pf_active;
269         int pf_current_page;    /* which buffer is being displayed? */
270         int perf_boxes;         /* performance boxes to be displayed */
271         int width, height;      /* screen size in pixels */
272
273         drm_handle_t front_handle;
274         int front_offset;
275         int front_size;
276
277         drm_handle_t back_handle;
278         int back_offset;
279         int back_size;
280
281         drm_handle_t depth_handle;
282         int depth_offset;
283         int depth_size;
284
285         drm_handle_t tex_handle;
286         int tex_offset;
287         int tex_size;
288         int log_tex_granularity;
289         int pitch;
290         int rotation;           /* 0, 90, 180 or 270 */
291         int rotated_offset;
292         int rotated_size;
293         int rotated_pitch;
294         int virtualX, virtualY;
295
296         unsigned int front_tiled;
297         unsigned int back_tiled;
298         unsigned int depth_tiled;
299         unsigned int rotated_tiled;
300         unsigned int rotated2_tiled;
301
302         int pipeA_x;
303         int pipeA_y;
304         int pipeA_w;
305         int pipeA_h;
306         int pipeB_x;
307         int pipeB_y;
308         int pipeB_w;
309         int pipeB_h;
310
311         /* fill out some space for old userspace triple buffer */
312         drm_handle_t unused_handle;
313         __u32 unused1, unused2, unused3;
314
315         /* buffer object handles for static buffers. May change
316          * over the lifetime of the client.
317          */
318         __u32 front_bo_handle;
319         __u32 back_bo_handle;
320         __u32 unused_bo_handle;
321         __u32 depth_bo_handle;
322
323 } drm_i915_sarea_t;
324
325 /* due to userspace building against these headers we need some compat here */
326 #define planeA_x pipeA_x
327 #define planeA_y pipeA_y
328 #define planeA_w pipeA_w
329 #define planeA_h pipeA_h
330 #define planeB_x pipeB_x
331 #define planeB_y pipeB_y
332 #define planeB_w pipeB_w
333 #define planeB_h pipeB_h
334
335 /* Flags for perf_boxes
336  */
337 #define I915_BOX_RING_EMPTY    0x1
338 #define I915_BOX_FLIP          0x2
339 #define I915_BOX_WAIT          0x4
340 #define I915_BOX_TEXTURE_LOAD  0x8
341 #define I915_BOX_LOST_CONTEXT  0x10
342
343 /*
344  * i915 specific ioctls.
345  *
346  * The device specific ioctl range is [DRM_COMMAND_BASE, DRM_COMMAND_END) ie
347  * [0x40, 0xa0) (a0 is excluded). The numbers below are defined as offset
348  * against DRM_COMMAND_BASE and should be between [0x0, 0x60).
349  */
350 #define DRM_I915_INIT           0x00
351 #define DRM_I915_FLUSH          0x01
352 #define DRM_I915_FLIP           0x02
353 #define DRM_I915_BATCHBUFFER    0x03
354 #define DRM_I915_IRQ_EMIT       0x04
355 #define DRM_I915_IRQ_WAIT       0x05
356 #define DRM_I915_GETPARAM       0x06
357 #define DRM_I915_SETPARAM       0x07
358 #define DRM_I915_ALLOC          0x08
359 #define DRM_I915_FREE           0x09
360 #define DRM_I915_INIT_HEAP      0x0a
361 #define DRM_I915_CMDBUFFER      0x0b
362 #define DRM_I915_DESTROY_HEAP   0x0c
363 #define DRM_I915_SET_VBLANK_PIPE        0x0d
364 #define DRM_I915_GET_VBLANK_PIPE        0x0e
365 #define DRM_I915_VBLANK_SWAP    0x0f
366 #define DRM_I915_HWS_ADDR       0x11
367 #define DRM_I915_GEM_INIT       0x13
368 #define DRM_I915_GEM_EXECBUFFER 0x14
369 #define DRM_I915_GEM_PIN        0x15
370 #define DRM_I915_GEM_UNPIN      0x16
371 #define DRM_I915_GEM_BUSY       0x17
372 #define DRM_I915_GEM_THROTTLE   0x18
373 #define DRM_I915_GEM_ENTERVT    0x19
374 #define DRM_I915_GEM_LEAVEVT    0x1a
375 #define DRM_I915_GEM_CREATE     0x1b
376 #define DRM_I915_GEM_PREAD      0x1c
377 #define DRM_I915_GEM_PWRITE     0x1d
378 #define DRM_I915_GEM_MMAP       0x1e
379 #define DRM_I915_GEM_SET_DOMAIN 0x1f
380 #define DRM_I915_GEM_SW_FINISH  0x20
381 #define DRM_I915_GEM_SET_TILING 0x21
382 #define DRM_I915_GEM_GET_TILING 0x22
383 #define DRM_I915_GEM_GET_APERTURE 0x23
384 #define DRM_I915_GEM_MMAP_GTT   0x24
385 #define DRM_I915_GET_PIPE_FROM_CRTC_ID  0x25
386 #define DRM_I915_GEM_MADVISE    0x26
387 #define DRM_I915_OVERLAY_PUT_IMAGE      0x27
388 #define DRM_I915_OVERLAY_ATTRS  0x28
389 #define DRM_I915_GEM_EXECBUFFER2        0x29
390 #define DRM_I915_GEM_EXECBUFFER2_WR     DRM_I915_GEM_EXECBUFFER2
391 #define DRM_I915_GET_SPRITE_COLORKEY    0x2a
392 #define DRM_I915_SET_SPRITE_COLORKEY    0x2b
393 #define DRM_I915_GEM_WAIT       0x2c
394 #define DRM_I915_GEM_CONTEXT_CREATE     0x2d
395 #define DRM_I915_GEM_CONTEXT_DESTROY    0x2e
396 #define DRM_I915_GEM_SET_CACHING        0x2f
397 #define DRM_I915_GEM_GET_CACHING        0x30
398 #define DRM_I915_REG_READ               0x31
399 #define DRM_I915_GET_RESET_STATS        0x32
400 #define DRM_I915_GEM_USERPTR            0x33
401 #define DRM_I915_GEM_CONTEXT_GETPARAM   0x34
402 #define DRM_I915_GEM_CONTEXT_SETPARAM   0x35
403 #define DRM_I915_PERF_OPEN              0x36
404 #define DRM_I915_PERF_ADD_CONFIG        0x37
405 #define DRM_I915_PERF_REMOVE_CONFIG     0x38
406 #define DRM_I915_QUERY                  0x39
407 #define DRM_I915_GEM_VM_CREATE          0x3a
408 #define DRM_I915_GEM_VM_DESTROY         0x3b
409 #define DRM_I915_GEM_CREATE_EXT         0x3c
410 /* Must be kept compact -- no holes */
411
412 #define DRM_IOCTL_I915_INIT             DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t)
413 #define DRM_IOCTL_I915_FLUSH            DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH)
414 #define DRM_IOCTL_I915_FLIP             DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLIP)
415 #define DRM_IOCTL_I915_BATCHBUFFER      DRM_IOW( DRM_COMMAND_BASE + DRM_I915_BATCHBUFFER, drm_i915_batchbuffer_t)
416 #define DRM_IOCTL_I915_IRQ_EMIT         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_IRQ_EMIT, drm_i915_irq_emit_t)
417 #define DRM_IOCTL_I915_IRQ_WAIT         DRM_IOW( DRM_COMMAND_BASE + DRM_I915_IRQ_WAIT, drm_i915_irq_wait_t)
418 #define DRM_IOCTL_I915_GETPARAM         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GETPARAM, drm_i915_getparam_t)
419 #define DRM_IOCTL_I915_SETPARAM         DRM_IOW( DRM_COMMAND_BASE + DRM_I915_SETPARAM, drm_i915_setparam_t)
420 #define DRM_IOCTL_I915_ALLOC            DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_ALLOC, drm_i915_mem_alloc_t)
421 #define DRM_IOCTL_I915_FREE             DRM_IOW( DRM_COMMAND_BASE + DRM_I915_FREE, drm_i915_mem_free_t)
422 #define DRM_IOCTL_I915_INIT_HEAP        DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT_HEAP, drm_i915_mem_init_heap_t)
423 #define DRM_IOCTL_I915_CMDBUFFER        DRM_IOW( DRM_COMMAND_BASE + DRM_I915_CMDBUFFER, drm_i915_cmdbuffer_t)
424 #define DRM_IOCTL_I915_DESTROY_HEAP     DRM_IOW( DRM_COMMAND_BASE + DRM_I915_DESTROY_HEAP, drm_i915_mem_destroy_heap_t)
425 #define DRM_IOCTL_I915_SET_VBLANK_PIPE  DRM_IOW( DRM_COMMAND_BASE + DRM_I915_SET_VBLANK_PIPE, drm_i915_vblank_pipe_t)
426 #define DRM_IOCTL_I915_GET_VBLANK_PIPE  DRM_IOR( DRM_COMMAND_BASE + DRM_I915_GET_VBLANK_PIPE, drm_i915_vblank_pipe_t)
427 #define DRM_IOCTL_I915_VBLANK_SWAP      DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_VBLANK_SWAP, drm_i915_vblank_swap_t)
428 #define DRM_IOCTL_I915_HWS_ADDR         DRM_IOW(DRM_COMMAND_BASE + DRM_I915_HWS_ADDR, struct drm_i915_gem_init)
429 #define DRM_IOCTL_I915_GEM_INIT         DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_INIT, struct drm_i915_gem_init)
430 #define DRM_IOCTL_I915_GEM_EXECBUFFER   DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER, struct drm_i915_gem_execbuffer)
431 #define DRM_IOCTL_I915_GEM_EXECBUFFER2  DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER2, struct drm_i915_gem_execbuffer2)
432 #define DRM_IOCTL_I915_GEM_EXECBUFFER2_WR       DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER2_WR, struct drm_i915_gem_execbuffer2)
433 #define DRM_IOCTL_I915_GEM_PIN          DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_PIN, struct drm_i915_gem_pin)
434 #define DRM_IOCTL_I915_GEM_UNPIN        DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_UNPIN, struct drm_i915_gem_unpin)
435 #define DRM_IOCTL_I915_GEM_BUSY         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_BUSY, struct drm_i915_gem_busy)
436 #define DRM_IOCTL_I915_GEM_SET_CACHING          DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_SET_CACHING, struct drm_i915_gem_caching)
437 #define DRM_IOCTL_I915_GEM_GET_CACHING          DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_GET_CACHING, struct drm_i915_gem_caching)
438 #define DRM_IOCTL_I915_GEM_THROTTLE     DRM_IO ( DRM_COMMAND_BASE + DRM_I915_GEM_THROTTLE)
439 #define DRM_IOCTL_I915_GEM_ENTERVT      DRM_IO(DRM_COMMAND_BASE + DRM_I915_GEM_ENTERVT)
440 #define DRM_IOCTL_I915_GEM_LEAVEVT      DRM_IO(DRM_COMMAND_BASE + DRM_I915_GEM_LEAVEVT)
441 #define DRM_IOCTL_I915_GEM_CREATE       DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_CREATE, struct drm_i915_gem_create)
442 #define DRM_IOCTL_I915_GEM_CREATE_EXT   DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_CREATE_EXT, struct drm_i915_gem_create_ext)
443 #define DRM_IOCTL_I915_GEM_PREAD        DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_PREAD, struct drm_i915_gem_pread)
444 #define DRM_IOCTL_I915_GEM_PWRITE       DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_PWRITE, struct drm_i915_gem_pwrite)
445 #define DRM_IOCTL_I915_GEM_MMAP         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP, struct drm_i915_gem_mmap)
446 #define DRM_IOCTL_I915_GEM_MMAP_GTT     DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP_GTT, struct drm_i915_gem_mmap_gtt)
447 #define DRM_IOCTL_I915_GEM_MMAP_OFFSET  DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP_GTT, struct drm_i915_gem_mmap_offset)
448 #define DRM_IOCTL_I915_GEM_SET_DOMAIN   DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_SET_DOMAIN, struct drm_i915_gem_set_domain)
449 #define DRM_IOCTL_I915_GEM_SW_FINISH    DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_SW_FINISH, struct drm_i915_gem_sw_finish)
450 #define DRM_IOCTL_I915_GEM_SET_TILING   DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_SET_TILING, struct drm_i915_gem_set_tiling)
451 #define DRM_IOCTL_I915_GEM_GET_TILING   DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_TILING, struct drm_i915_gem_get_tiling)
452 #define DRM_IOCTL_I915_GEM_GET_APERTURE DRM_IOR  (DRM_COMMAND_BASE + DRM_I915_GEM_GET_APERTURE, struct drm_i915_gem_get_aperture)
453 #define DRM_IOCTL_I915_GET_PIPE_FROM_CRTC_ID DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_PIPE_FROM_CRTC_ID, struct drm_i915_get_pipe_from_crtc_id)
454 #define DRM_IOCTL_I915_GEM_MADVISE      DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MADVISE, struct drm_i915_gem_madvise)
455 #define DRM_IOCTL_I915_OVERLAY_PUT_IMAGE        DRM_IOW(DRM_COMMAND_BASE + DRM_I915_OVERLAY_PUT_IMAGE, struct drm_intel_overlay_put_image)
456 #define DRM_IOCTL_I915_OVERLAY_ATTRS    DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_OVERLAY_ATTRS, struct drm_intel_overlay_attrs)
457 #define DRM_IOCTL_I915_SET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_SET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey)
458 #define DRM_IOCTL_I915_GET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey)
459 #define DRM_IOCTL_I915_GEM_WAIT         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_WAIT, struct drm_i915_gem_wait)
460 #define DRM_IOCTL_I915_GEM_CONTEXT_CREATE       DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_CREATE, struct drm_i915_gem_context_create)
461 #define DRM_IOCTL_I915_GEM_CONTEXT_CREATE_EXT   DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_CREATE, struct drm_i915_gem_context_create_ext)
462 #define DRM_IOCTL_I915_GEM_CONTEXT_DESTROY      DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_DESTROY, struct drm_i915_gem_context_destroy)
463 #define DRM_IOCTL_I915_REG_READ                 DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_REG_READ, struct drm_i915_reg_read)
464 #define DRM_IOCTL_I915_GET_RESET_STATS          DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GET_RESET_STATS, struct drm_i915_reset_stats)
465 #define DRM_IOCTL_I915_GEM_USERPTR                      DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_USERPTR, struct drm_i915_gem_userptr)
466 #define DRM_IOCTL_I915_GEM_CONTEXT_GETPARAM     DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_GETPARAM, struct drm_i915_gem_context_param)
467 #define DRM_IOCTL_I915_GEM_CONTEXT_SETPARAM     DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_SETPARAM, struct drm_i915_gem_context_param)
468 #define DRM_IOCTL_I915_PERF_OPEN        DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_OPEN, struct drm_i915_perf_open_param)
469 #define DRM_IOCTL_I915_PERF_ADD_CONFIG  DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_ADD_CONFIG, struct drm_i915_perf_oa_config)
470 #define DRM_IOCTL_I915_PERF_REMOVE_CONFIG       DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_REMOVE_CONFIG, __u64)
471 #define DRM_IOCTL_I915_QUERY                    DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_QUERY, struct drm_i915_query)
472 #define DRM_IOCTL_I915_GEM_VM_CREATE    DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_VM_CREATE, struct drm_i915_gem_vm_control)
473 #define DRM_IOCTL_I915_GEM_VM_DESTROY   DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_VM_DESTROY, struct drm_i915_gem_vm_control)
474
475 /* Allow drivers to submit batchbuffers directly to hardware, relying
476  * on the security mechanisms provided by hardware.
477  */
478 typedef struct drm_i915_batchbuffer {
479         int start;              /* agp offset */
480         int used;               /* nr bytes in use */
481         int DR1;                /* hw flags for GFX_OP_DRAWRECT_INFO */
482         int DR4;                /* window origin for GFX_OP_DRAWRECT_INFO */
483         int num_cliprects;      /* mulitpass with multiple cliprects? */
484         struct drm_clip_rect __user *cliprects; /* pointer to userspace cliprects */
485 } drm_i915_batchbuffer_t;
486
487 /* As above, but pass a pointer to userspace buffer which can be
488  * validated by the kernel prior to sending to hardware.
489  */
490 typedef struct _drm_i915_cmdbuffer {
491         char __user *buf;       /* pointer to userspace command buffer */
492         int sz;                 /* nr bytes in buf */
493         int DR1;                /* hw flags for GFX_OP_DRAWRECT_INFO */
494         int DR4;                /* window origin for GFX_OP_DRAWRECT_INFO */
495         int num_cliprects;      /* mulitpass with multiple cliprects? */
496         struct drm_clip_rect __user *cliprects; /* pointer to userspace cliprects */
497 } drm_i915_cmdbuffer_t;
498
499 /* Userspace can request & wait on irq's:
500  */
501 typedef struct drm_i915_irq_emit {
502         int __user *irq_seq;
503 } drm_i915_irq_emit_t;
504
505 typedef struct drm_i915_irq_wait {
506         int irq_seq;
507 } drm_i915_irq_wait_t;
508
509 /*
510  * Different modes of per-process Graphics Translation Table,
511  * see I915_PARAM_HAS_ALIASING_PPGTT
512  */
513 #define I915_GEM_PPGTT_NONE     0
514 #define I915_GEM_PPGTT_ALIASING 1
515 #define I915_GEM_PPGTT_FULL     2
516
517 /* Ioctl to query kernel params:
518  */
519 #define I915_PARAM_IRQ_ACTIVE            1
520 #define I915_PARAM_ALLOW_BATCHBUFFER     2
521 #define I915_PARAM_LAST_DISPATCH         3
522 #define I915_PARAM_CHIPSET_ID            4
523 #define I915_PARAM_HAS_GEM               5
524 #define I915_PARAM_NUM_FENCES_AVAIL      6
525 #define I915_PARAM_HAS_OVERLAY           7
526 #define I915_PARAM_HAS_PAGEFLIPPING      8
527 #define I915_PARAM_HAS_EXECBUF2          9
528 #define I915_PARAM_HAS_BSD               10
529 #define I915_PARAM_HAS_BLT               11
530 #define I915_PARAM_HAS_RELAXED_FENCING   12
531 #define I915_PARAM_HAS_COHERENT_RINGS    13
532 #define I915_PARAM_HAS_EXEC_CONSTANTS    14
533 #define I915_PARAM_HAS_RELAXED_DELTA     15
534 #define I915_PARAM_HAS_GEN7_SOL_RESET    16
535 #define I915_PARAM_HAS_LLC               17
536 #define I915_PARAM_HAS_ALIASING_PPGTT    18
537 #define I915_PARAM_HAS_WAIT_TIMEOUT      19
538 #define I915_PARAM_HAS_SEMAPHORES        20
539 #define I915_PARAM_HAS_PRIME_VMAP_FLUSH  21
540 #define I915_PARAM_HAS_VEBOX             22
541 #define I915_PARAM_HAS_SECURE_BATCHES    23
542 #define I915_PARAM_HAS_PINNED_BATCHES    24
543 #define I915_PARAM_HAS_EXEC_NO_RELOC     25
544 #define I915_PARAM_HAS_EXEC_HANDLE_LUT   26
545 #define I915_PARAM_HAS_WT                27
546 #define I915_PARAM_CMD_PARSER_VERSION    28
547 #define I915_PARAM_HAS_COHERENT_PHYS_GTT 29
548 #define I915_PARAM_MMAP_VERSION          30
549 #define I915_PARAM_HAS_BSD2              31
550 #define I915_PARAM_REVISION              32
551 #define I915_PARAM_SUBSLICE_TOTAL        33
552 #define I915_PARAM_EU_TOTAL              34
553 #define I915_PARAM_HAS_GPU_RESET         35
554 #define I915_PARAM_HAS_RESOURCE_STREAMER 36
555 #define I915_PARAM_HAS_EXEC_SOFTPIN      37
556 #define I915_PARAM_HAS_POOLED_EU         38
557 #define I915_PARAM_MIN_EU_IN_POOL        39
558 #define I915_PARAM_MMAP_GTT_VERSION      40
559
560 /*
561  * Query whether DRM_I915_GEM_EXECBUFFER2 supports user defined execution
562  * priorities and the driver will attempt to execute batches in priority order.
563  * The param returns a capability bitmask, nonzero implies that the scheduler
564  * is enabled, with different features present according to the mask.
565  *
566  * The initial priority for each batch is supplied by the context and is
567  * controlled via I915_CONTEXT_PARAM_PRIORITY.
568  */
569 #define I915_PARAM_HAS_SCHEDULER         41
570 #define   I915_SCHEDULER_CAP_ENABLED    (1ul << 0)
571 #define   I915_SCHEDULER_CAP_PRIORITY   (1ul << 1)
572 #define   I915_SCHEDULER_CAP_PREEMPTION (1ul << 2)
573 #define   I915_SCHEDULER_CAP_SEMAPHORES (1ul << 3)
574 #define   I915_SCHEDULER_CAP_ENGINE_BUSY_STATS  (1ul << 4)
575 /*
576  * Indicates the 2k user priority levels are statically mapped into 3 buckets as
577  * follows:
578  *
579  * -1k to -1    Low priority
580  * 0            Normal priority
581  * 1 to 1k      Highest priority
582  */
583 #define   I915_SCHEDULER_CAP_STATIC_PRIORITY_MAP        (1ul << 5)
584
585 #define I915_PARAM_HUC_STATUS            42
586
587 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to opt-out of
588  * synchronisation with implicit fencing on individual objects.
589  * See EXEC_OBJECT_ASYNC.
590  */
591 #define I915_PARAM_HAS_EXEC_ASYNC        43
592
593 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports explicit fence support -
594  * both being able to pass in a sync_file fd to wait upon before executing,
595  * and being able to return a new sync_file fd that is signaled when the
596  * current request is complete. See I915_EXEC_FENCE_IN and I915_EXEC_FENCE_OUT.
597  */
598 #define I915_PARAM_HAS_EXEC_FENCE        44
599
600 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to capture
601  * user specified bufffers for post-mortem debugging of GPU hangs. See
602  * EXEC_OBJECT_CAPTURE.
603  */
604 #define I915_PARAM_HAS_EXEC_CAPTURE      45
605
606 #define I915_PARAM_SLICE_MASK            46
607
608 /* Assuming it's uniform for each slice, this queries the mask of subslices
609  * per-slice for this system.
610  */
611 #define I915_PARAM_SUBSLICE_MASK         47
612
613 /*
614  * Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying the batch buffer
615  * as the first execobject as opposed to the last. See I915_EXEC_BATCH_FIRST.
616  */
617 #define I915_PARAM_HAS_EXEC_BATCH_FIRST  48
618
619 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying an array of
620  * drm_i915_gem_exec_fence structures.  See I915_EXEC_FENCE_ARRAY.
621  */
622 #define I915_PARAM_HAS_EXEC_FENCE_ARRAY  49
623
624 /*
625  * Query whether every context (both per-file default and user created) is
626  * isolated (insofar as HW supports). If this parameter is not true, then
627  * freshly created contexts may inherit values from an existing context,
628  * rather than default HW values. If true, it also ensures (insofar as HW
629  * supports) that all state set by this context will not leak to any other
630  * context.
631  *
632  * As not every engine across every gen support contexts, the returned
633  * value reports the support of context isolation for individual engines by
634  * returning a bitmask of each engine class set to true if that class supports
635  * isolation.
636  */
637 #define I915_PARAM_HAS_CONTEXT_ISOLATION 50
638
639 /* Frequency of the command streamer timestamps given by the *_TIMESTAMP
640  * registers. This used to be fixed per platform but from CNL onwards, this
641  * might vary depending on the parts.
642  */
643 #define I915_PARAM_CS_TIMESTAMP_FREQUENCY 51
644
645 /*
646  * Once upon a time we supposed that writes through the GGTT would be
647  * immediately in physical memory (once flushed out of the CPU path). However,
648  * on a few different processors and chipsets, this is not necessarily the case
649  * as the writes appear to be buffered internally. Thus a read of the backing
650  * storage (physical memory) via a different path (with different physical tags
651  * to the indirect write via the GGTT) will see stale values from before
652  * the GGTT write. Inside the kernel, we can for the most part keep track of
653  * the different read/write domains in use (e.g. set-domain), but the assumption
654  * of coherency is baked into the ABI, hence reporting its true state in this
655  * parameter.
656  *
657  * Reports true when writes via mmap_gtt are immediately visible following an
658  * lfence to flush the WCB.
659  *
660  * Reports false when writes via mmap_gtt are indeterminately delayed in an in
661  * internal buffer and are _not_ immediately visible to third parties accessing
662  * directly via mmap_cpu/mmap_wc. Use of mmap_gtt as part of an IPC
663  * communications channel when reporting false is strongly disadvised.
664  */
665 #define I915_PARAM_MMAP_GTT_COHERENT    52
666
667 /*
668  * Query whether DRM_I915_GEM_EXECBUFFER2 supports coordination of parallel
669  * execution through use of explicit fence support.
670  * See I915_EXEC_FENCE_OUT and I915_EXEC_FENCE_SUBMIT.
671  */
672 #define I915_PARAM_HAS_EXEC_SUBMIT_FENCE 53
673
674 /*
675  * Revision of the i915-perf uAPI. The value returned helps determine what
676  * i915-perf features are available. See drm_i915_perf_property_id.
677  */
678 #define I915_PARAM_PERF_REVISION        54
679
680 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying an array of
681  * timeline syncobj through drm_i915_gem_execbuffer_ext_timeline_fences. See
682  * I915_EXEC_USE_EXTENSIONS.
683  */
684 #define I915_PARAM_HAS_EXEC_TIMELINE_FENCES 55
685
686 /* Must be kept compact -- no holes and well documented */
687
688 typedef struct drm_i915_getparam {
689         __s32 param;
690         /*
691          * WARNING: Using pointers instead of fixed-size u64 means we need to write
692          * compat32 code. Don't repeat this mistake.
693          */
694         int __user *value;
695 } drm_i915_getparam_t;
696
697 /* Ioctl to set kernel params:
698  */
699 #define I915_SETPARAM_USE_MI_BATCHBUFFER_START            1
700 #define I915_SETPARAM_TEX_LRU_LOG_GRANULARITY             2
701 #define I915_SETPARAM_ALLOW_BATCHBUFFER                   3
702 #define I915_SETPARAM_NUM_USED_FENCES                     4
703 /* Must be kept compact -- no holes */
704
705 typedef struct drm_i915_setparam {
706         int param;
707         int value;
708 } drm_i915_setparam_t;
709
710 /* A memory manager for regions of shared memory:
711  */
712 #define I915_MEM_REGION_AGP 1
713
714 typedef struct drm_i915_mem_alloc {
715         int region;
716         int alignment;
717         int size;
718         int __user *region_offset;      /* offset from start of fb or agp */
719 } drm_i915_mem_alloc_t;
720
721 typedef struct drm_i915_mem_free {
722         int region;
723         int region_offset;
724 } drm_i915_mem_free_t;
725
726 typedef struct drm_i915_mem_init_heap {
727         int region;
728         int size;
729         int start;
730 } drm_i915_mem_init_heap_t;
731
732 /* Allow memory manager to be torn down and re-initialized (eg on
733  * rotate):
734  */
735 typedef struct drm_i915_mem_destroy_heap {
736         int region;
737 } drm_i915_mem_destroy_heap_t;
738
739 /* Allow X server to configure which pipes to monitor for vblank signals
740  */
741 #define DRM_I915_VBLANK_PIPE_A  1
742 #define DRM_I915_VBLANK_PIPE_B  2
743
744 typedef struct drm_i915_vblank_pipe {
745         int pipe;
746 } drm_i915_vblank_pipe_t;
747
748 /* Schedule buffer swap at given vertical blank:
749  */
750 typedef struct drm_i915_vblank_swap {
751         drm_drawable_t drawable;
752         enum drm_vblank_seq_type seqtype;
753         unsigned int sequence;
754 } drm_i915_vblank_swap_t;
755
756 typedef struct drm_i915_hws_addr {
757         __u64 addr;
758 } drm_i915_hws_addr_t;
759
760 struct drm_i915_gem_init {
761         /**
762          * Beginning offset in the GTT to be managed by the DRM memory
763          * manager.
764          */
765         __u64 gtt_start;
766         /**
767          * Ending offset in the GTT to be managed by the DRM memory
768          * manager.
769          */
770         __u64 gtt_end;
771 };
772
773 struct drm_i915_gem_create {
774         /**
775          * Requested size for the object.
776          *
777          * The (page-aligned) allocated size for the object will be returned.
778          */
779         __u64 size;
780         /**
781          * Returned handle for the object.
782          *
783          * Object handles are nonzero.
784          */
785         __u32 handle;
786         __u32 pad;
787 };
788
789 struct drm_i915_gem_pread {
790         /** Handle for the object being read. */
791         __u32 handle;
792         __u32 pad;
793         /** Offset into the object to read from */
794         __u64 offset;
795         /** Length of data to read */
796         __u64 size;
797         /**
798          * Pointer to write the data into.
799          *
800          * This is a fixed-size type for 32/64 compatibility.
801          */
802         __u64 data_ptr;
803 };
804
805 struct drm_i915_gem_pwrite {
806         /** Handle for the object being written to. */
807         __u32 handle;
808         __u32 pad;
809         /** Offset into the object to write to */
810         __u64 offset;
811         /** Length of data to write */
812         __u64 size;
813         /**
814          * Pointer to read the data from.
815          *
816          * This is a fixed-size type for 32/64 compatibility.
817          */
818         __u64 data_ptr;
819 };
820
821 struct drm_i915_gem_mmap {
822         /** Handle for the object being mapped. */
823         __u32 handle;
824         __u32 pad;
825         /** Offset in the object to map. */
826         __u64 offset;
827         /**
828          * Length of data to map.
829          *
830          * The value will be page-aligned.
831          */
832         __u64 size;
833         /**
834          * Returned pointer the data was mapped at.
835          *
836          * This is a fixed-size type for 32/64 compatibility.
837          */
838         __u64 addr_ptr;
839
840         /**
841          * Flags for extended behaviour.
842          *
843          * Added in version 2.
844          */
845         __u64 flags;
846 #define I915_MMAP_WC 0x1
847 };
848
849 struct drm_i915_gem_mmap_gtt {
850         /** Handle for the object being mapped. */
851         __u32 handle;
852         __u32 pad;
853         /**
854          * Fake offset to use for subsequent mmap call
855          *
856          * This is a fixed-size type for 32/64 compatibility.
857          */
858         __u64 offset;
859 };
860
861 /**
862  * struct drm_i915_gem_mmap_offset - Retrieve an offset so we can mmap this buffer object.
863  *
864  * This struct is passed as argument to the `DRM_IOCTL_I915_GEM_MMAP_OFFSET` ioctl,
865  * and is used to retrieve the fake offset to mmap an object specified by &handle.
866  *
867  * The legacy way of using `DRM_IOCTL_I915_GEM_MMAP` is removed on gen12+.
868  * `DRM_IOCTL_I915_GEM_MMAP_GTT` is an older supported alias to this struct, but will behave
869  * as setting the &extensions to 0, and &flags to `I915_MMAP_OFFSET_GTT`.
870  */
871 struct drm_i915_gem_mmap_offset {
872         /** @handle: Handle for the object being mapped. */
873         __u32 handle;
874         /** @pad: Must be zero */
875         __u32 pad;
876         /**
877          * @offset: The fake offset to use for subsequent mmap call
878          *
879          * This is a fixed-size type for 32/64 compatibility.
880          */
881         __u64 offset;
882
883         /**
884          * @flags: Flags for extended behaviour.
885          *
886          * It is mandatory that one of the `MMAP_OFFSET` types
887          * should be included:
888          *
889          * - `I915_MMAP_OFFSET_GTT`: Use mmap with the object bound to GTT. (Write-Combined)
890          * - `I915_MMAP_OFFSET_WC`: Use Write-Combined caching.
891          * - `I915_MMAP_OFFSET_WB`: Use Write-Back caching.
892          * - `I915_MMAP_OFFSET_FIXED`: Use object placement to determine caching.
893          *
894          * On devices with local memory `I915_MMAP_OFFSET_FIXED` is the only valid
895          * type. On devices without local memory, this caching mode is invalid.
896          *
897          * As caching mode when specifying `I915_MMAP_OFFSET_FIXED`, WC or WB will
898          * be used, depending on the object placement on creation. WB will be used
899          * when the object can only exist in system memory, WC otherwise.
900          */
901         __u64 flags;
902
903 #define I915_MMAP_OFFSET_GTT    0
904 #define I915_MMAP_OFFSET_WC     1
905 #define I915_MMAP_OFFSET_WB     2
906 #define I915_MMAP_OFFSET_UC     3
907 #define I915_MMAP_OFFSET_FIXED  4
908
909         /**
910          * @extensions: Zero-terminated chain of extensions.
911          *
912          * No current extensions defined; mbz.
913          */
914         __u64 extensions;
915 };
916
917 /**
918  * struct drm_i915_gem_set_domain - Adjust the objects write or read domain, in
919  * preparation for accessing the pages via some CPU domain.
920  *
921  * Specifying a new write or read domain will flush the object out of the
922  * previous domain(if required), before then updating the objects domain
923  * tracking with the new domain.
924  *
925  * Note this might involve waiting for the object first if it is still active on
926  * the GPU.
927  *
928  * Supported values for @read_domains and @write_domain:
929  *
930  *      - I915_GEM_DOMAIN_WC: Uncached write-combined domain
931  *      - I915_GEM_DOMAIN_CPU: CPU cache domain
932  *      - I915_GEM_DOMAIN_GTT: Mappable aperture domain
933  *
934  * All other domains are rejected.
935  *
936  * Note that for discrete, starting from DG1, this is no longer supported, and
937  * is instead rejected. On such platforms the CPU domain is effectively static,
938  * where we also only support a single &drm_i915_gem_mmap_offset cache mode,
939  * which can't be set explicitly and instead depends on the object placements,
940  * as per the below.
941  *
942  * Implicit caching rules, starting from DG1:
943  *
944  *      - If any of the object placements (see &drm_i915_gem_create_ext_memory_regions)
945  *        contain I915_MEMORY_CLASS_DEVICE then the object will be allocated and
946  *        mapped as write-combined only.
947  *
948  *      - Everything else is always allocated and mapped as write-back, with the
949  *        guarantee that everything is also coherent with the GPU.
950  *
951  * Note that this is likely to change in the future again, where we might need
952  * more flexibility on future devices, so making this all explicit as part of a
953  * new &drm_i915_gem_create_ext extension is probable.
954  */
955 struct drm_i915_gem_set_domain {
956         /** @handle: Handle for the object. */
957         __u32 handle;
958
959         /** @read_domains: New read domains. */
960         __u32 read_domains;
961
962         /**
963          * @write_domain: New write domain.
964          *
965          * Note that having something in the write domain implies it's in the
966          * read domain, and only that read domain.
967          */
968         __u32 write_domain;
969 };
970
971 struct drm_i915_gem_sw_finish {
972         /** Handle for the object */
973         __u32 handle;
974 };
975
976 struct drm_i915_gem_relocation_entry {
977         /**
978          * Handle of the buffer being pointed to by this relocation entry.
979          *
980          * It's appealing to make this be an index into the mm_validate_entry
981          * list to refer to the buffer, but this allows the driver to create
982          * a relocation list for state buffers and not re-write it per
983          * exec using the buffer.
984          */
985         __u32 target_handle;
986
987         /**
988          * Value to be added to the offset of the target buffer to make up
989          * the relocation entry.
990          */
991         __u32 delta;
992
993         /** Offset in the buffer the relocation entry will be written into */
994         __u64 offset;
995
996         /**
997          * Offset value of the target buffer that the relocation entry was last
998          * written as.
999          *
1000          * If the buffer has the same offset as last time, we can skip syncing
1001          * and writing the relocation.  This value is written back out by
1002          * the execbuffer ioctl when the relocation is written.
1003          */
1004         __u64 presumed_offset;
1005
1006         /**
1007          * Target memory domains read by this operation.
1008          */
1009         __u32 read_domains;
1010
1011         /**
1012          * Target memory domains written by this operation.
1013          *
1014          * Note that only one domain may be written by the whole
1015          * execbuffer operation, so that where there are conflicts,
1016          * the application will get -EINVAL back.
1017          */
1018         __u32 write_domain;
1019 };
1020
1021 /** @{
1022  * Intel memory domains
1023  *
1024  * Most of these just align with the various caches in
1025  * the system and are used to flush and invalidate as
1026  * objects end up cached in different domains.
1027  */
1028 /** CPU cache */
1029 #define I915_GEM_DOMAIN_CPU             0x00000001
1030 /** Render cache, used by 2D and 3D drawing */
1031 #define I915_GEM_DOMAIN_RENDER          0x00000002
1032 /** Sampler cache, used by texture engine */
1033 #define I915_GEM_DOMAIN_SAMPLER         0x00000004
1034 /** Command queue, used to load batch buffers */
1035 #define I915_GEM_DOMAIN_COMMAND         0x00000008
1036 /** Instruction cache, used by shader programs */
1037 #define I915_GEM_DOMAIN_INSTRUCTION     0x00000010
1038 /** Vertex address cache */
1039 #define I915_GEM_DOMAIN_VERTEX          0x00000020
1040 /** GTT domain - aperture and scanout */
1041 #define I915_GEM_DOMAIN_GTT             0x00000040
1042 /** WC domain - uncached access */
1043 #define I915_GEM_DOMAIN_WC              0x00000080
1044 /** @} */
1045
1046 struct drm_i915_gem_exec_object {
1047         /**
1048          * User's handle for a buffer to be bound into the GTT for this
1049          * operation.
1050          */
1051         __u32 handle;
1052
1053         /** Number of relocations to be performed on this buffer */
1054         __u32 relocation_count;
1055         /**
1056          * Pointer to array of struct drm_i915_gem_relocation_entry containing
1057          * the relocations to be performed in this buffer.
1058          */
1059         __u64 relocs_ptr;
1060
1061         /** Required alignment in graphics aperture */
1062         __u64 alignment;
1063
1064         /**
1065          * Returned value of the updated offset of the object, for future
1066          * presumed_offset writes.
1067          */
1068         __u64 offset;
1069 };
1070
1071 /* DRM_IOCTL_I915_GEM_EXECBUFFER was removed in Linux 5.13 */
1072 struct drm_i915_gem_execbuffer {
1073         /**
1074          * List of buffers to be validated with their relocations to be
1075          * performend on them.
1076          *
1077          * This is a pointer to an array of struct drm_i915_gem_validate_entry.
1078          *
1079          * These buffers must be listed in an order such that all relocations
1080          * a buffer is performing refer to buffers that have already appeared
1081          * in the validate list.
1082          */
1083         __u64 buffers_ptr;
1084         __u32 buffer_count;
1085
1086         /** Offset in the batchbuffer to start execution from. */
1087         __u32 batch_start_offset;
1088         /** Bytes used in batchbuffer from batch_start_offset */
1089         __u32 batch_len;
1090         __u32 DR1;
1091         __u32 DR4;
1092         __u32 num_cliprects;
1093         /** This is a struct drm_clip_rect *cliprects */
1094         __u64 cliprects_ptr;
1095 };
1096
1097 struct drm_i915_gem_exec_object2 {
1098         /**
1099          * User's handle for a buffer to be bound into the GTT for this
1100          * operation.
1101          */
1102         __u32 handle;
1103
1104         /** Number of relocations to be performed on this buffer */
1105         __u32 relocation_count;
1106         /**
1107          * Pointer to array of struct drm_i915_gem_relocation_entry containing
1108          * the relocations to be performed in this buffer.
1109          */
1110         __u64 relocs_ptr;
1111
1112         /** Required alignment in graphics aperture */
1113         __u64 alignment;
1114
1115         /**
1116          * When the EXEC_OBJECT_PINNED flag is specified this is populated by
1117          * the user with the GTT offset at which this object will be pinned.
1118          * When the I915_EXEC_NO_RELOC flag is specified this must contain the
1119          * presumed_offset of the object.
1120          * During execbuffer2 the kernel populates it with the value of the
1121          * current GTT offset of the object, for future presumed_offset writes.
1122          */
1123         __u64 offset;
1124
1125 #define EXEC_OBJECT_NEEDS_FENCE          (1<<0)
1126 #define EXEC_OBJECT_NEEDS_GTT            (1<<1)
1127 #define EXEC_OBJECT_WRITE                (1<<2)
1128 #define EXEC_OBJECT_SUPPORTS_48B_ADDRESS (1<<3)
1129 #define EXEC_OBJECT_PINNED               (1<<4)
1130 #define EXEC_OBJECT_PAD_TO_SIZE          (1<<5)
1131 /* The kernel implicitly tracks GPU activity on all GEM objects, and
1132  * synchronises operations with outstanding rendering. This includes
1133  * rendering on other devices if exported via dma-buf. However, sometimes
1134  * this tracking is too coarse and the user knows better. For example,
1135  * if the object is split into non-overlapping ranges shared between different
1136  * clients or engines (i.e. suballocating objects), the implicit tracking
1137  * by kernel assumes that each operation affects the whole object rather
1138  * than an individual range, causing needless synchronisation between clients.
1139  * The kernel will also forgo any CPU cache flushes prior to rendering from
1140  * the object as the client is expected to be also handling such domain
1141  * tracking.
1142  *
1143  * The kernel maintains the implicit tracking in order to manage resources
1144  * used by the GPU - this flag only disables the synchronisation prior to
1145  * rendering with this object in this execbuf.
1146  *
1147  * Opting out of implicit synhronisation requires the user to do its own
1148  * explicit tracking to avoid rendering corruption. See, for example,
1149  * I915_PARAM_HAS_EXEC_FENCE to order execbufs and execute them asynchronously.
1150  */
1151 #define EXEC_OBJECT_ASYNC               (1<<6)
1152 /* Request that the contents of this execobject be copied into the error
1153  * state upon a GPU hang involving this batch for post-mortem debugging.
1154  * These buffers are recorded in no particular order as "user" in
1155  * /sys/class/drm/cardN/error. Query I915_PARAM_HAS_EXEC_CAPTURE to see
1156  * if the kernel supports this flag.
1157  */
1158 #define EXEC_OBJECT_CAPTURE             (1<<7)
1159 /* All remaining bits are MBZ and RESERVED FOR FUTURE USE */
1160 #define __EXEC_OBJECT_UNKNOWN_FLAGS -(EXEC_OBJECT_CAPTURE<<1)
1161         __u64 flags;
1162
1163         union {
1164                 __u64 rsvd1;
1165                 __u64 pad_to_size;
1166         };
1167         __u64 rsvd2;
1168 };
1169
1170 struct drm_i915_gem_exec_fence {
1171         /**
1172          * User's handle for a drm_syncobj to wait on or signal.
1173          */
1174         __u32 handle;
1175
1176 #define I915_EXEC_FENCE_WAIT            (1<<0)
1177 #define I915_EXEC_FENCE_SIGNAL          (1<<1)
1178 #define __I915_EXEC_FENCE_UNKNOWN_FLAGS (-(I915_EXEC_FENCE_SIGNAL << 1))
1179         __u32 flags;
1180 };
1181
1182 /*
1183  * See drm_i915_gem_execbuffer_ext_timeline_fences.
1184  */
1185 #define DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES 0
1186
1187 /*
1188  * This structure describes an array of drm_syncobj and associated points for
1189  * timeline variants of drm_syncobj. It is invalid to append this structure to
1190  * the execbuf if I915_EXEC_FENCE_ARRAY is set.
1191  */
1192 struct drm_i915_gem_execbuffer_ext_timeline_fences {
1193         struct i915_user_extension base;
1194
1195         /**
1196          * Number of element in the handles_ptr & value_ptr arrays.
1197          */
1198         __u64 fence_count;
1199
1200         /**
1201          * Pointer to an array of struct drm_i915_gem_exec_fence of length
1202          * fence_count.
1203          */
1204         __u64 handles_ptr;
1205
1206         /**
1207          * Pointer to an array of u64 values of length fence_count. Values
1208          * must be 0 for a binary drm_syncobj. A Value of 0 for a timeline
1209          * drm_syncobj is invalid as it turns a drm_syncobj into a binary one.
1210          */
1211         __u64 values_ptr;
1212 };
1213
1214 struct drm_i915_gem_execbuffer2 {
1215         /**
1216          * List of gem_exec_object2 structs
1217          */
1218         __u64 buffers_ptr;
1219         __u32 buffer_count;
1220
1221         /** Offset in the batchbuffer to start execution from. */
1222         __u32 batch_start_offset;
1223         /** Bytes used in batchbuffer from batch_start_offset */
1224         __u32 batch_len;
1225         __u32 DR1;
1226         __u32 DR4;
1227         __u32 num_cliprects;
1228         /**
1229          * This is a struct drm_clip_rect *cliprects if I915_EXEC_FENCE_ARRAY
1230          * & I915_EXEC_USE_EXTENSIONS are not set.
1231          *
1232          * If I915_EXEC_FENCE_ARRAY is set, then this is a pointer to an array
1233          * of struct drm_i915_gem_exec_fence and num_cliprects is the length
1234          * of the array.
1235          *
1236          * If I915_EXEC_USE_EXTENSIONS is set, then this is a pointer to a
1237          * single struct i915_user_extension and num_cliprects is 0.
1238          */
1239         __u64 cliprects_ptr;
1240 #define I915_EXEC_RING_MASK              (0x3f)
1241 #define I915_EXEC_DEFAULT                (0<<0)
1242 #define I915_EXEC_RENDER                 (1<<0)
1243 #define I915_EXEC_BSD                    (2<<0)
1244 #define I915_EXEC_BLT                    (3<<0)
1245 #define I915_EXEC_VEBOX                  (4<<0)
1246
1247 /* Used for switching the constants addressing mode on gen4+ RENDER ring.
1248  * Gen6+ only supports relative addressing to dynamic state (default) and
1249  * absolute addressing.
1250  *
1251  * These flags are ignored for the BSD and BLT rings.
1252  */
1253 #define I915_EXEC_CONSTANTS_MASK        (3<<6)
1254 #define I915_EXEC_CONSTANTS_REL_GENERAL (0<<6) /* default */
1255 #define I915_EXEC_CONSTANTS_ABSOLUTE    (1<<6)
1256 #define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */
1257         __u64 flags;
1258         __u64 rsvd1; /* now used for context info */
1259         __u64 rsvd2;
1260 };
1261
1262 /** Resets the SO write offset registers for transform feedback on gen7. */
1263 #define I915_EXEC_GEN7_SOL_RESET        (1<<8)
1264
1265 /** Request a privileged ("secure") batch buffer. Note only available for
1266  * DRM_ROOT_ONLY | DRM_MASTER processes.
1267  */
1268 #define I915_EXEC_SECURE                (1<<9)
1269
1270 /** Inform the kernel that the batch is and will always be pinned. This
1271  * negates the requirement for a workaround to be performed to avoid
1272  * an incoherent CS (such as can be found on 830/845). If this flag is
1273  * not passed, the kernel will endeavour to make sure the batch is
1274  * coherent with the CS before execution. If this flag is passed,
1275  * userspace assumes the responsibility for ensuring the same.
1276  */
1277 #define I915_EXEC_IS_PINNED             (1<<10)
1278
1279 /** Provide a hint to the kernel that the command stream and auxiliary
1280  * state buffers already holds the correct presumed addresses and so the
1281  * relocation process may be skipped if no buffers need to be moved in
1282  * preparation for the execbuffer.
1283  */
1284 #define I915_EXEC_NO_RELOC              (1<<11)
1285
1286 /** Use the reloc.handle as an index into the exec object array rather
1287  * than as the per-file handle.
1288  */
1289 #define I915_EXEC_HANDLE_LUT            (1<<12)
1290
1291 /** Used for switching BSD rings on the platforms with two BSD rings */
1292 #define I915_EXEC_BSD_SHIFT      (13)
1293 #define I915_EXEC_BSD_MASK       (3 << I915_EXEC_BSD_SHIFT)
1294 /* default ping-pong mode */
1295 #define I915_EXEC_BSD_DEFAULT    (0 << I915_EXEC_BSD_SHIFT)
1296 #define I915_EXEC_BSD_RING1      (1 << I915_EXEC_BSD_SHIFT)
1297 #define I915_EXEC_BSD_RING2      (2 << I915_EXEC_BSD_SHIFT)
1298
1299 /** Tell the kernel that the batchbuffer is processed by
1300  *  the resource streamer.
1301  */
1302 #define I915_EXEC_RESOURCE_STREAMER     (1<<15)
1303
1304 /* Setting I915_EXEC_FENCE_IN implies that lower_32_bits(rsvd2) represent
1305  * a sync_file fd to wait upon (in a nonblocking manner) prior to executing
1306  * the batch.
1307  *
1308  * Returns -EINVAL if the sync_file fd cannot be found.
1309  */
1310 #define I915_EXEC_FENCE_IN              (1<<16)
1311
1312 /* Setting I915_EXEC_FENCE_OUT causes the ioctl to return a sync_file fd
1313  * in the upper_32_bits(rsvd2) upon success. Ownership of the fd is given
1314  * to the caller, and it should be close() after use. (The fd is a regular
1315  * file descriptor and will be cleaned up on process termination. It holds
1316  * a reference to the request, but nothing else.)
1317  *
1318  * The sync_file fd can be combined with other sync_file and passed either
1319  * to execbuf using I915_EXEC_FENCE_IN, to atomic KMS ioctls (so that a flip
1320  * will only occur after this request completes), or to other devices.
1321  *
1322  * Using I915_EXEC_FENCE_OUT requires use of
1323  * DRM_IOCTL_I915_GEM_EXECBUFFER2_WR ioctl so that the result is written
1324  * back to userspace. Failure to do so will cause the out-fence to always
1325  * be reported as zero, and the real fence fd to be leaked.
1326  */
1327 #define I915_EXEC_FENCE_OUT             (1<<17)
1328
1329 /*
1330  * Traditionally the execbuf ioctl has only considered the final element in
1331  * the execobject[] to be the executable batch. Often though, the client
1332  * will known the batch object prior to construction and being able to place
1333  * it into the execobject[] array first can simplify the relocation tracking.
1334  * Setting I915_EXEC_BATCH_FIRST tells execbuf to use element 0 of the
1335  * execobject[] as the * batch instead (the default is to use the last
1336  * element).
1337  */
1338 #define I915_EXEC_BATCH_FIRST           (1<<18)
1339
1340 /* Setting I915_FENCE_ARRAY implies that num_cliprects and cliprects_ptr
1341  * define an array of i915_gem_exec_fence structures which specify a set of
1342  * dma fences to wait upon or signal.
1343  */
1344 #define I915_EXEC_FENCE_ARRAY   (1<<19)
1345
1346 /*
1347  * Setting I915_EXEC_FENCE_SUBMIT implies that lower_32_bits(rsvd2) represent
1348  * a sync_file fd to wait upon (in a nonblocking manner) prior to executing
1349  * the batch.
1350  *
1351  * Returns -EINVAL if the sync_file fd cannot be found.
1352  */
1353 #define I915_EXEC_FENCE_SUBMIT          (1 << 20)
1354
1355 /*
1356  * Setting I915_EXEC_USE_EXTENSIONS implies that
1357  * drm_i915_gem_execbuffer2.cliprects_ptr is treated as a pointer to an linked
1358  * list of i915_user_extension. Each i915_user_extension node is the base of a
1359  * larger structure. The list of supported structures are listed in the
1360  * drm_i915_gem_execbuffer_ext enum.
1361  */
1362 #define I915_EXEC_USE_EXTENSIONS        (1 << 21)
1363
1364 #define __I915_EXEC_UNKNOWN_FLAGS (-(I915_EXEC_USE_EXTENSIONS << 1))
1365
1366 #define I915_EXEC_CONTEXT_ID_MASK       (0xffffffff)
1367 #define i915_execbuffer2_set_context_id(eb2, context) \
1368         (eb2).rsvd1 = context & I915_EXEC_CONTEXT_ID_MASK
1369 #define i915_execbuffer2_get_context_id(eb2) \
1370         ((eb2).rsvd1 & I915_EXEC_CONTEXT_ID_MASK)
1371
1372 struct drm_i915_gem_pin {
1373         /** Handle of the buffer to be pinned. */
1374         __u32 handle;
1375         __u32 pad;
1376
1377         /** alignment required within the aperture */
1378         __u64 alignment;
1379
1380         /** Returned GTT offset of the buffer. */
1381         __u64 offset;
1382 };
1383
1384 struct drm_i915_gem_unpin {
1385         /** Handle of the buffer to be unpinned. */
1386         __u32 handle;
1387         __u32 pad;
1388 };
1389
1390 struct drm_i915_gem_busy {
1391         /** Handle of the buffer to check for busy */
1392         __u32 handle;
1393
1394         /** Return busy status
1395          *
1396          * A return of 0 implies that the object is idle (after
1397          * having flushed any pending activity), and a non-zero return that
1398          * the object is still in-flight on the GPU. (The GPU has not yet
1399          * signaled completion for all pending requests that reference the
1400          * object.) An object is guaranteed to become idle eventually (so
1401          * long as no new GPU commands are executed upon it). Due to the
1402          * asynchronous nature of the hardware, an object reported
1403          * as busy may become idle before the ioctl is completed.
1404          *
1405          * Furthermore, if the object is busy, which engine is busy is only
1406          * provided as a guide and only indirectly by reporting its class
1407          * (there may be more than one engine in each class). There are race
1408          * conditions which prevent the report of which engines are busy from
1409          * being always accurate.  However, the converse is not true. If the
1410          * object is idle, the result of the ioctl, that all engines are idle,
1411          * is accurate.
1412          *
1413          * The returned dword is split into two fields to indicate both
1414          * the engine classess on which the object is being read, and the
1415          * engine class on which it is currently being written (if any).
1416          *
1417          * The low word (bits 0:15) indicate if the object is being written
1418          * to by any engine (there can only be one, as the GEM implicit
1419          * synchronisation rules force writes to be serialised). Only the
1420          * engine class (offset by 1, I915_ENGINE_CLASS_RENDER is reported as
1421          * 1 not 0 etc) for the last write is reported.
1422          *
1423          * The high word (bits 16:31) are a bitmask of which engines classes
1424          * are currently reading from the object. Multiple engines may be
1425          * reading from the object simultaneously.
1426          *
1427          * The value of each engine class is the same as specified in the
1428          * I915_CONTEXT_PARAM_ENGINES context parameter and via perf, i.e.
1429          * I915_ENGINE_CLASS_RENDER, I915_ENGINE_CLASS_COPY, etc.
1430          * Some hardware may have parallel execution engines, e.g. multiple
1431          * media engines, which are mapped to the same class identifier and so
1432          * are not separately reported for busyness.
1433          *
1434          * Caveat emptor:
1435          * Only the boolean result of this query is reliable; that is whether
1436          * the object is idle or busy. The report of which engines are busy
1437          * should be only used as a heuristic.
1438          */
1439         __u32 busy;
1440 };
1441
1442 /**
1443  * struct drm_i915_gem_caching - Set or get the caching for given object
1444  * handle.
1445  *
1446  * Allow userspace to control the GTT caching bits for a given object when the
1447  * object is later mapped through the ppGTT(or GGTT on older platforms lacking
1448  * ppGTT support, or if the object is used for scanout). Note that this might
1449  * require unbinding the object from the GTT first, if its current caching value
1450  * doesn't match.
1451  *
1452  * Note that this all changes on discrete platforms, starting from DG1, the
1453  * set/get caching is no longer supported, and is now rejected.  Instead the CPU
1454  * caching attributes(WB vs WC) will become an immutable creation time property
1455  * for the object, along with the GTT caching level. For now we don't expose any
1456  * new uAPI for this, instead on DG1 this is all implicit, although this largely
1457  * shouldn't matter since DG1 is coherent by default(without any way of
1458  * controlling it).
1459  *
1460  * Implicit caching rules, starting from DG1:
1461  *
1462  *     - If any of the object placements (see &drm_i915_gem_create_ext_memory_regions)
1463  *       contain I915_MEMORY_CLASS_DEVICE then the object will be allocated and
1464  *       mapped as write-combined only.
1465  *
1466  *     - Everything else is always allocated and mapped as write-back, with the
1467  *       guarantee that everything is also coherent with the GPU.
1468  *
1469  * Note that this is likely to change in the future again, where we might need
1470  * more flexibility on future devices, so making this all explicit as part of a
1471  * new &drm_i915_gem_create_ext extension is probable.
1472  *
1473  * Side note: Part of the reason for this is that changing the at-allocation-time CPU
1474  * caching attributes for the pages might be required(and is expensive) if we
1475  * need to then CPU map the pages later with different caching attributes. This
1476  * inconsistent caching behaviour, while supported on x86, is not universally
1477  * supported on other architectures. So for simplicity we opt for setting
1478  * everything at creation time, whilst also making it immutable, on discrete
1479  * platforms.
1480  */
1481 struct drm_i915_gem_caching {
1482         /**
1483          * @handle: Handle of the buffer to set/get the caching level.
1484          */
1485         __u32 handle;
1486
1487         /**
1488          * @caching: The GTT caching level to apply or possible return value.
1489          *
1490          * The supported @caching values:
1491          *
1492          * I915_CACHING_NONE:
1493          *
1494          * GPU access is not coherent with CPU caches.  Default for machines
1495          * without an LLC. This means manual flushing might be needed, if we
1496          * want GPU access to be coherent.
1497          *
1498          * I915_CACHING_CACHED:
1499          *
1500          * GPU access is coherent with CPU caches and furthermore the data is
1501          * cached in last-level caches shared between CPU cores and the GPU GT.
1502          *
1503          * I915_CACHING_DISPLAY:
1504          *
1505          * Special GPU caching mode which is coherent with the scanout engines.
1506          * Transparently falls back to I915_CACHING_NONE on platforms where no
1507          * special cache mode (like write-through or gfdt flushing) is
1508          * available. The kernel automatically sets this mode when using a
1509          * buffer as a scanout target.  Userspace can manually set this mode to
1510          * avoid a costly stall and clflush in the hotpath of drawing the first
1511          * frame.
1512          */
1513 #define I915_CACHING_NONE               0
1514 #define I915_CACHING_CACHED             1
1515 #define I915_CACHING_DISPLAY            2
1516         __u32 caching;
1517 };
1518
1519 #define I915_TILING_NONE        0
1520 #define I915_TILING_X           1
1521 #define I915_TILING_Y           2
1522 #define I915_TILING_LAST        I915_TILING_Y
1523
1524 #define I915_BIT_6_SWIZZLE_NONE         0
1525 #define I915_BIT_6_SWIZZLE_9            1
1526 #define I915_BIT_6_SWIZZLE_9_10         2
1527 #define I915_BIT_6_SWIZZLE_9_11         3
1528 #define I915_BIT_6_SWIZZLE_9_10_11      4
1529 /* Not seen by userland */
1530 #define I915_BIT_6_SWIZZLE_UNKNOWN      5
1531 /* Seen by userland. */
1532 #define I915_BIT_6_SWIZZLE_9_17         6
1533 #define I915_BIT_6_SWIZZLE_9_10_17      7
1534
1535 struct drm_i915_gem_set_tiling {
1536         /** Handle of the buffer to have its tiling state updated */
1537         __u32 handle;
1538
1539         /**
1540          * Tiling mode for the object (I915_TILING_NONE, I915_TILING_X,
1541          * I915_TILING_Y).
1542          *
1543          * This value is to be set on request, and will be updated by the
1544          * kernel on successful return with the actual chosen tiling layout.
1545          *
1546          * The tiling mode may be demoted to I915_TILING_NONE when the system
1547          * has bit 6 swizzling that can't be managed correctly by GEM.
1548          *
1549          * Buffer contents become undefined when changing tiling_mode.
1550          */
1551         __u32 tiling_mode;
1552
1553         /**
1554          * Stride in bytes for the object when in I915_TILING_X or
1555          * I915_TILING_Y.
1556          */
1557         __u32 stride;
1558
1559         /**
1560          * Returned address bit 6 swizzling required for CPU access through
1561          * mmap mapping.
1562          */
1563         __u32 swizzle_mode;
1564 };
1565
1566 struct drm_i915_gem_get_tiling {
1567         /** Handle of the buffer to get tiling state for. */
1568         __u32 handle;
1569
1570         /**
1571          * Current tiling mode for the object (I915_TILING_NONE, I915_TILING_X,
1572          * I915_TILING_Y).
1573          */
1574         __u32 tiling_mode;
1575
1576         /**
1577          * Returned address bit 6 swizzling required for CPU access through
1578          * mmap mapping.
1579          */
1580         __u32 swizzle_mode;
1581
1582         /**
1583          * Returned address bit 6 swizzling required for CPU access through
1584          * mmap mapping whilst bound.
1585          */
1586         __u32 phys_swizzle_mode;
1587 };
1588
1589 struct drm_i915_gem_get_aperture {
1590         /** Total size of the aperture used by i915_gem_execbuffer, in bytes */
1591         __u64 aper_size;
1592
1593         /**
1594          * Available space in the aperture used by i915_gem_execbuffer, in
1595          * bytes
1596          */
1597         __u64 aper_available_size;
1598 };
1599
1600 struct drm_i915_get_pipe_from_crtc_id {
1601         /** ID of CRTC being requested **/
1602         __u32 crtc_id;
1603
1604         /** pipe of requested CRTC **/
1605         __u32 pipe;
1606 };
1607
1608 #define I915_MADV_WILLNEED 0
1609 #define I915_MADV_DONTNEED 1
1610 #define __I915_MADV_PURGED 2 /* internal state */
1611
1612 struct drm_i915_gem_madvise {
1613         /** Handle of the buffer to change the backing store advice */
1614         __u32 handle;
1615
1616         /* Advice: either the buffer will be needed again in the near future,
1617          *         or wont be and could be discarded under memory pressure.
1618          */
1619         __u32 madv;
1620
1621         /** Whether the backing store still exists. */
1622         __u32 retained;
1623 };
1624
1625 /* flags */
1626 #define I915_OVERLAY_TYPE_MASK          0xff
1627 #define I915_OVERLAY_YUV_PLANAR         0x01
1628 #define I915_OVERLAY_YUV_PACKED         0x02
1629 #define I915_OVERLAY_RGB                0x03
1630
1631 #define I915_OVERLAY_DEPTH_MASK         0xff00
1632 #define I915_OVERLAY_RGB24              0x1000
1633 #define I915_OVERLAY_RGB16              0x2000
1634 #define I915_OVERLAY_RGB15              0x3000
1635 #define I915_OVERLAY_YUV422             0x0100
1636 #define I915_OVERLAY_YUV411             0x0200
1637 #define I915_OVERLAY_YUV420             0x0300
1638 #define I915_OVERLAY_YUV410             0x0400
1639
1640 #define I915_OVERLAY_SWAP_MASK          0xff0000
1641 #define I915_OVERLAY_NO_SWAP            0x000000
1642 #define I915_OVERLAY_UV_SWAP            0x010000
1643 #define I915_OVERLAY_Y_SWAP             0x020000
1644 #define I915_OVERLAY_Y_AND_UV_SWAP      0x030000
1645
1646 #define I915_OVERLAY_FLAGS_MASK         0xff000000
1647 #define I915_OVERLAY_ENABLE             0x01000000
1648
1649 struct drm_intel_overlay_put_image {
1650         /* various flags and src format description */
1651         __u32 flags;
1652         /* source picture description */
1653         __u32 bo_handle;
1654         /* stride values and offsets are in bytes, buffer relative */
1655         __u16 stride_Y; /* stride for packed formats */
1656         __u16 stride_UV;
1657         __u32 offset_Y; /* offset for packet formats */
1658         __u32 offset_U;
1659         __u32 offset_V;
1660         /* in pixels */
1661         __u16 src_width;
1662         __u16 src_height;
1663         /* to compensate the scaling factors for partially covered surfaces */
1664         __u16 src_scan_width;
1665         __u16 src_scan_height;
1666         /* output crtc description */
1667         __u32 crtc_id;
1668         __u16 dst_x;
1669         __u16 dst_y;
1670         __u16 dst_width;
1671         __u16 dst_height;
1672 };
1673
1674 /* flags */
1675 #define I915_OVERLAY_UPDATE_ATTRS       (1<<0)
1676 #define I915_OVERLAY_UPDATE_GAMMA       (1<<1)
1677 #define I915_OVERLAY_DISABLE_DEST_COLORKEY      (1<<2)
1678 struct drm_intel_overlay_attrs {
1679         __u32 flags;
1680         __u32 color_key;
1681         __s32 brightness;
1682         __u32 contrast;
1683         __u32 saturation;
1684         __u32 gamma0;
1685         __u32 gamma1;
1686         __u32 gamma2;
1687         __u32 gamma3;
1688         __u32 gamma4;
1689         __u32 gamma5;
1690 };
1691
1692 /*
1693  * Intel sprite handling
1694  *
1695  * Color keying works with a min/mask/max tuple.  Both source and destination
1696  * color keying is allowed.
1697  *
1698  * Source keying:
1699  * Sprite pixels within the min & max values, masked against the color channels
1700  * specified in the mask field, will be transparent.  All other pixels will
1701  * be displayed on top of the primary plane.  For RGB surfaces, only the min
1702  * and mask fields will be used; ranged compares are not allowed.
1703  *
1704  * Destination keying:
1705  * Primary plane pixels that match the min value, masked against the color
1706  * channels specified in the mask field, will be replaced by corresponding
1707  * pixels from the sprite plane.
1708  *
1709  * Note that source & destination keying are exclusive; only one can be
1710  * active on a given plane.
1711  */
1712
1713 #define I915_SET_COLORKEY_NONE          (1<<0) /* Deprecated. Instead set
1714                                                 * flags==0 to disable colorkeying.
1715                                                 */
1716 #define I915_SET_COLORKEY_DESTINATION   (1<<1)
1717 #define I915_SET_COLORKEY_SOURCE        (1<<2)
1718 struct drm_intel_sprite_colorkey {
1719         __u32 plane_id;
1720         __u32 min_value;
1721         __u32 channel_mask;
1722         __u32 max_value;
1723         __u32 flags;
1724 };
1725
1726 struct drm_i915_gem_wait {
1727         /** Handle of BO we shall wait on */
1728         __u32 bo_handle;
1729         __u32 flags;
1730         /** Number of nanoseconds to wait, Returns time remaining. */
1731         __s64 timeout_ns;
1732 };
1733
1734 struct drm_i915_gem_context_create {
1735         __u32 ctx_id; /* output: id of new context*/
1736         __u32 pad;
1737 };
1738
1739 struct drm_i915_gem_context_create_ext {
1740         __u32 ctx_id; /* output: id of new context*/
1741         __u32 flags;
1742 #define I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS        (1u << 0)
1743 #define I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE       (1u << 1)
1744 #define I915_CONTEXT_CREATE_FLAGS_UNKNOWN \
1745         (-(I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE << 1))
1746         __u64 extensions;
1747 };
1748
1749 struct drm_i915_gem_context_param {
1750         __u32 ctx_id;
1751         __u32 size;
1752         __u64 param;
1753 #define I915_CONTEXT_PARAM_BAN_PERIOD   0x1
1754 /* I915_CONTEXT_PARAM_NO_ZEROMAP has been removed.  On the off chance
1755  * someone somewhere has attempted to use it, never re-use this context
1756  * param number.
1757  */
1758 #define I915_CONTEXT_PARAM_NO_ZEROMAP   0x2
1759 #define I915_CONTEXT_PARAM_GTT_SIZE     0x3
1760 #define I915_CONTEXT_PARAM_NO_ERROR_CAPTURE     0x4
1761 #define I915_CONTEXT_PARAM_BANNABLE     0x5
1762 #define I915_CONTEXT_PARAM_PRIORITY     0x6
1763 #define   I915_CONTEXT_MAX_USER_PRIORITY        1023 /* inclusive */
1764 #define   I915_CONTEXT_DEFAULT_PRIORITY         0
1765 #define   I915_CONTEXT_MIN_USER_PRIORITY        -1023 /* inclusive */
1766         /*
1767          * When using the following param, value should be a pointer to
1768          * drm_i915_gem_context_param_sseu.
1769          */
1770 #define I915_CONTEXT_PARAM_SSEU         0x7
1771
1772 /*
1773  * Not all clients may want to attempt automatic recover of a context after
1774  * a hang (for example, some clients may only submit very small incremental
1775  * batches relying on known logical state of previous batches which will never
1776  * recover correctly and each attempt will hang), and so would prefer that
1777  * the context is forever banned instead.
1778  *
1779  * If set to false (0), after a reset, subsequent (and in flight) rendering
1780  * from this context is discarded, and the client will need to create a new
1781  * context to use instead.
1782  *
1783  * If set to true (1), the kernel will automatically attempt to recover the
1784  * context by skipping the hanging batch and executing the next batch starting
1785  * from the default context state (discarding the incomplete logical context
1786  * state lost due to the reset).
1787  *
1788  * On creation, all new contexts are marked as recoverable.
1789  */
1790 #define I915_CONTEXT_PARAM_RECOVERABLE  0x8
1791
1792         /*
1793          * The id of the associated virtual memory address space (ppGTT) of
1794          * this context. Can be retrieved and passed to another context
1795          * (on the same fd) for both to use the same ppGTT and so share
1796          * address layouts, and avoid reloading the page tables on context
1797          * switches between themselves.
1798          *
1799          * See DRM_I915_GEM_VM_CREATE and DRM_I915_GEM_VM_DESTROY.
1800          */
1801 #define I915_CONTEXT_PARAM_VM           0x9
1802
1803 /*
1804  * I915_CONTEXT_PARAM_ENGINES:
1805  *
1806  * Bind this context to operate on this subset of available engines. Henceforth,
1807  * the I915_EXEC_RING selector for DRM_IOCTL_I915_GEM_EXECBUFFER2 operates as
1808  * an index into this array of engines; I915_EXEC_DEFAULT selecting engine[0]
1809  * and upwards. Slots 0...N are filled in using the specified (class, instance).
1810  * Use
1811  *      engine_class: I915_ENGINE_CLASS_INVALID,
1812  *      engine_instance: I915_ENGINE_CLASS_INVALID_NONE
1813  * to specify a gap in the array that can be filled in later, e.g. by a
1814  * virtual engine used for load balancing.
1815  *
1816  * Setting the number of engines bound to the context to 0, by passing a zero
1817  * sized argument, will revert back to default settings.
1818  *
1819  * See struct i915_context_param_engines.
1820  *
1821  * Extensions:
1822  *   i915_context_engines_load_balance (I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE)
1823  *   i915_context_engines_bond (I915_CONTEXT_ENGINES_EXT_BOND)
1824  */
1825 #define I915_CONTEXT_PARAM_ENGINES      0xa
1826
1827 /*
1828  * I915_CONTEXT_PARAM_PERSISTENCE:
1829  *
1830  * Allow the context and active rendering to survive the process until
1831  * completion. Persistence allows fire-and-forget clients to queue up a
1832  * bunch of work, hand the output over to a display server and then quit.
1833  * If the context is marked as not persistent, upon closing (either via
1834  * an explicit DRM_I915_GEM_CONTEXT_DESTROY or implicitly from file closure
1835  * or process termination), the context and any outstanding requests will be
1836  * cancelled (and exported fences for cancelled requests marked as -EIO).
1837  *
1838  * By default, new contexts allow persistence.
1839  */
1840 #define I915_CONTEXT_PARAM_PERSISTENCE  0xb
1841
1842 /* This API has been removed.  On the off chance someone somewhere has
1843  * attempted to use it, never re-use this context param number.
1844  */
1845 #define I915_CONTEXT_PARAM_RINGSIZE     0xc
1846 /* Must be kept compact -- no holes and well documented */
1847
1848         __u64 value;
1849 };
1850
1851 /*
1852  * Context SSEU programming
1853  *
1854  * It may be necessary for either functional or performance reason to configure
1855  * a context to run with a reduced number of SSEU (where SSEU stands for Slice/
1856  * Sub-slice/EU).
1857  *
1858  * This is done by configuring SSEU configuration using the below
1859  * @struct drm_i915_gem_context_param_sseu for every supported engine which
1860  * userspace intends to use.
1861  *
1862  * Not all GPUs or engines support this functionality in which case an error
1863  * code -ENODEV will be returned.
1864  *
1865  * Also, flexibility of possible SSEU configuration permutations varies between
1866  * GPU generations and software imposed limitations. Requesting such a
1867  * combination will return an error code of -EINVAL.
1868  *
1869  * NOTE: When perf/OA is active the context's SSEU configuration is ignored in
1870  * favour of a single global setting.
1871  */
1872 struct drm_i915_gem_context_param_sseu {
1873         /*
1874          * Engine class & instance to be configured or queried.
1875          */
1876         struct i915_engine_class_instance engine;
1877
1878         /*
1879          * Unknown flags must be cleared to zero.
1880          */
1881         __u32 flags;
1882 #define I915_CONTEXT_SSEU_FLAG_ENGINE_INDEX (1u << 0)
1883
1884         /*
1885          * Mask of slices to enable for the context. Valid values are a subset
1886          * of the bitmask value returned for I915_PARAM_SLICE_MASK.
1887          */
1888         __u64 slice_mask;
1889
1890         /*
1891          * Mask of subslices to enable for the context. Valid values are a
1892          * subset of the bitmask value return by I915_PARAM_SUBSLICE_MASK.
1893          */
1894         __u64 subslice_mask;
1895
1896         /*
1897          * Minimum/Maximum number of EUs to enable per subslice for the
1898          * context. min_eus_per_subslice must be inferior or equal to
1899          * max_eus_per_subslice.
1900          */
1901         __u16 min_eus_per_subslice;
1902         __u16 max_eus_per_subslice;
1903
1904         /*
1905          * Unused for now. Must be cleared to zero.
1906          */
1907         __u32 rsvd;
1908 };
1909
1910 /**
1911  * DOC: Virtual Engine uAPI
1912  *
1913  * Virtual engine is a concept where userspace is able to configure a set of
1914  * physical engines, submit a batch buffer, and let the driver execute it on any
1915  * engine from the set as it sees fit.
1916  *
1917  * This is primarily useful on parts which have multiple instances of a same
1918  * class engine, like for example GT3+ Skylake parts with their two VCS engines.
1919  *
1920  * For instance userspace can enumerate all engines of a certain class using the
1921  * previously described `Engine Discovery uAPI`_. After that userspace can
1922  * create a GEM context with a placeholder slot for the virtual engine (using
1923  * `I915_ENGINE_CLASS_INVALID` and `I915_ENGINE_CLASS_INVALID_NONE` for class
1924  * and instance respectively) and finally using the
1925  * `I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE` extension place a virtual engine in
1926  * the same reserved slot.
1927  *
1928  * Example of creating a virtual engine and submitting a batch buffer to it:
1929  *
1930  * .. code-block:: C
1931  *
1932  *      I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(virtual, 2) = {
1933  *              .base.name = I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE,
1934  *              .engine_index = 0, // Place this virtual engine into engine map slot 0
1935  *              .num_siblings = 2,
1936  *              .engines = { { I915_ENGINE_CLASS_VIDEO, 0 },
1937  *                           { I915_ENGINE_CLASS_VIDEO, 1 }, },
1938  *      };
1939  *      I915_DEFINE_CONTEXT_PARAM_ENGINES(engines, 1) = {
1940  *              .engines = { { I915_ENGINE_CLASS_INVALID,
1941  *                             I915_ENGINE_CLASS_INVALID_NONE } },
1942  *              .extensions = to_user_pointer(&virtual), // Chains after load_balance extension
1943  *      };
1944  *      struct drm_i915_gem_context_create_ext_setparam p_engines = {
1945  *              .base = {
1946  *                      .name = I915_CONTEXT_CREATE_EXT_SETPARAM,
1947  *              },
1948  *              .param = {
1949  *                      .param = I915_CONTEXT_PARAM_ENGINES,
1950  *                      .value = to_user_pointer(&engines),
1951  *                      .size = sizeof(engines),
1952  *              },
1953  *      };
1954  *      struct drm_i915_gem_context_create_ext create = {
1955  *              .flags = I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS,
1956  *              .extensions = to_user_pointer(&p_engines);
1957  *      };
1958  *
1959  *      ctx_id = gem_context_create_ext(drm_fd, &create);
1960  *
1961  *      // Now we have created a GEM context with its engine map containing a
1962  *      // single virtual engine. Submissions to this slot can go either to
1963  *      // vcs0 or vcs1, depending on the load balancing algorithm used inside
1964  *      // the driver. The load balancing is dynamic from one batch buffer to
1965  *      // another and transparent to userspace.
1966  *
1967  *      ...
1968  *      execbuf.rsvd1 = ctx_id;
1969  *      execbuf.flags = 0; // Submits to index 0 which is the virtual engine
1970  *      gem_execbuf(drm_fd, &execbuf);
1971  */
1972
1973 /*
1974  * i915_context_engines_load_balance:
1975  *
1976  * Enable load balancing across this set of engines.
1977  *
1978  * Into the I915_EXEC_DEFAULT slot [0], a virtual engine is created that when
1979  * used will proxy the execbuffer request onto one of the set of engines
1980  * in such a way as to distribute the load evenly across the set.
1981  *
1982  * The set of engines must be compatible (e.g. the same HW class) as they
1983  * will share the same logical GPU context and ring.
1984  *
1985  * To intermix rendering with the virtual engine and direct rendering onto
1986  * the backing engines (bypassing the load balancing proxy), the context must
1987  * be defined to use a single timeline for all engines.
1988  */
1989 struct i915_context_engines_load_balance {
1990         struct i915_user_extension base;
1991
1992         __u16 engine_index;
1993         __u16 num_siblings;
1994         __u32 flags; /* all undefined flags must be zero */
1995
1996         __u64 mbz64; /* reserved for future use; must be zero */
1997
1998         struct i915_engine_class_instance engines[0];
1999 } __attribute__((packed));
2000
2001 #define I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(name__, N__) struct { \
2002         struct i915_user_extension base; \
2003         __u16 engine_index; \
2004         __u16 num_siblings; \
2005         __u32 flags; \
2006         __u64 mbz64; \
2007         struct i915_engine_class_instance engines[N__]; \
2008 } __attribute__((packed)) name__
2009
2010 /*
2011  * i915_context_engines_bond:
2012  *
2013  * Constructed bonded pairs for execution within a virtual engine.
2014  *
2015  * All engines are equal, but some are more equal than others. Given
2016  * the distribution of resources in the HW, it may be preferable to run
2017  * a request on a given subset of engines in parallel to a request on a
2018  * specific engine. We enable this selection of engines within a virtual
2019  * engine by specifying bonding pairs, for any given master engine we will
2020  * only execute on one of the corresponding siblings within the virtual engine.
2021  *
2022  * To execute a request in parallel on the master engine and a sibling requires
2023  * coordination with a I915_EXEC_FENCE_SUBMIT.
2024  */
2025 struct i915_context_engines_bond {
2026         struct i915_user_extension base;
2027
2028         struct i915_engine_class_instance master;
2029
2030         __u16 virtual_index; /* index of virtual engine in ctx->engines[] */
2031         __u16 num_bonds;
2032
2033         __u64 flags; /* all undefined flags must be zero */
2034         __u64 mbz64[4]; /* reserved for future use; must be zero */
2035
2036         struct i915_engine_class_instance engines[0];
2037 } __attribute__((packed));
2038
2039 #define I915_DEFINE_CONTEXT_ENGINES_BOND(name__, N__) struct { \
2040         struct i915_user_extension base; \
2041         struct i915_engine_class_instance master; \
2042         __u16 virtual_index; \
2043         __u16 num_bonds; \
2044         __u64 flags; \
2045         __u64 mbz64[4]; \
2046         struct i915_engine_class_instance engines[N__]; \
2047 } __attribute__((packed)) name__
2048
2049 /**
2050  * DOC: Context Engine Map uAPI
2051  *
2052  * Context engine map is a new way of addressing engines when submitting batch-
2053  * buffers, replacing the existing way of using identifiers like `I915_EXEC_BLT`
2054  * inside the flags field of `struct drm_i915_gem_execbuffer2`.
2055  *
2056  * To use it created GEM contexts need to be configured with a list of engines
2057  * the user is intending to submit to. This is accomplished using the
2058  * `I915_CONTEXT_PARAM_ENGINES` parameter and `struct
2059  * i915_context_param_engines`.
2060  *
2061  * For such contexts the `I915_EXEC_RING_MASK` field becomes an index into the
2062  * configured map.
2063  *
2064  * Example of creating such context and submitting against it:
2065  *
2066  * .. code-block:: C
2067  *
2068  *      I915_DEFINE_CONTEXT_PARAM_ENGINES(engines, 2) = {
2069  *              .engines = { { I915_ENGINE_CLASS_RENDER, 0 },
2070  *                           { I915_ENGINE_CLASS_COPY, 0 } }
2071  *      };
2072  *      struct drm_i915_gem_context_create_ext_setparam p_engines = {
2073  *              .base = {
2074  *                      .name = I915_CONTEXT_CREATE_EXT_SETPARAM,
2075  *              },
2076  *              .param = {
2077  *                      .param = I915_CONTEXT_PARAM_ENGINES,
2078  *                      .value = to_user_pointer(&engines),
2079  *                      .size = sizeof(engines),
2080  *              },
2081  *      };
2082  *      struct drm_i915_gem_context_create_ext create = {
2083  *              .flags = I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS,
2084  *              .extensions = to_user_pointer(&p_engines);
2085  *      };
2086  *
2087  *      ctx_id = gem_context_create_ext(drm_fd, &create);
2088  *
2089  *      // We have now created a GEM context with two engines in the map:
2090  *      // Index 0 points to rcs0 while index 1 points to bcs0. Other engines
2091  *      // will not be accessible from this context.
2092  *
2093  *      ...
2094  *      execbuf.rsvd1 = ctx_id;
2095  *      execbuf.flags = 0; // Submits to index 0, which is rcs0 for this context
2096  *      gem_execbuf(drm_fd, &execbuf);
2097  *
2098  *      ...
2099  *      execbuf.rsvd1 = ctx_id;
2100  *      execbuf.flags = 1; // Submits to index 0, which is bcs0 for this context
2101  *      gem_execbuf(drm_fd, &execbuf);
2102  */
2103
2104 struct i915_context_param_engines {
2105         __u64 extensions; /* linked chain of extension blocks, 0 terminates */
2106 #define I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE 0 /* see i915_context_engines_load_balance */
2107 #define I915_CONTEXT_ENGINES_EXT_BOND 1 /* see i915_context_engines_bond */
2108         struct i915_engine_class_instance engines[0];
2109 } __attribute__((packed));
2110
2111 #define I915_DEFINE_CONTEXT_PARAM_ENGINES(name__, N__) struct { \
2112         __u64 extensions; \
2113         struct i915_engine_class_instance engines[N__]; \
2114 } __attribute__((packed)) name__
2115
2116 struct drm_i915_gem_context_create_ext_setparam {
2117 #define I915_CONTEXT_CREATE_EXT_SETPARAM 0
2118         struct i915_user_extension base;
2119         struct drm_i915_gem_context_param param;
2120 };
2121
2122 /* This API has been removed.  On the off chance someone somewhere has
2123  * attempted to use it, never re-use this extension number.
2124  */
2125 #define I915_CONTEXT_CREATE_EXT_CLONE 1
2126
2127 struct drm_i915_gem_context_destroy {
2128         __u32 ctx_id;
2129         __u32 pad;
2130 };
2131
2132 /*
2133  * DRM_I915_GEM_VM_CREATE -
2134  *
2135  * Create a new virtual memory address space (ppGTT) for use within a context
2136  * on the same file. Extensions can be provided to configure exactly how the
2137  * address space is setup upon creation.
2138  *
2139  * The id of new VM (bound to the fd) for use with I915_CONTEXT_PARAM_VM is
2140  * returned in the outparam @id.
2141  *
2142  * No flags are defined, with all bits reserved and must be zero.
2143  *
2144  * An extension chain maybe provided, starting with @extensions, and terminated
2145  * by the @next_extension being 0. Currently, no extensions are defined.
2146  *
2147  * DRM_I915_GEM_VM_DESTROY -
2148  *
2149  * Destroys a previously created VM id, specified in @id.
2150  *
2151  * No extensions or flags are allowed currently, and so must be zero.
2152  */
2153 struct drm_i915_gem_vm_control {
2154         __u64 extensions;
2155         __u32 flags;
2156         __u32 vm_id;
2157 };
2158
2159 struct drm_i915_reg_read {
2160         /*
2161          * Register offset.
2162          * For 64bit wide registers where the upper 32bits don't immediately
2163          * follow the lower 32bits, the offset of the lower 32bits must
2164          * be specified
2165          */
2166         __u64 offset;
2167 #define I915_REG_READ_8B_WA (1ul << 0)
2168
2169         __u64 val; /* Return value */
2170 };
2171
2172 /* Known registers:
2173  *
2174  * Render engine timestamp - 0x2358 + 64bit - gen7+
2175  * - Note this register returns an invalid value if using the default
2176  *   single instruction 8byte read, in order to workaround that pass
2177  *   flag I915_REG_READ_8B_WA in offset field.
2178  *
2179  */
2180
2181 struct drm_i915_reset_stats {
2182         __u32 ctx_id;
2183         __u32 flags;
2184
2185         /* All resets since boot/module reload, for all contexts */
2186         __u32 reset_count;
2187
2188         /* Number of batches lost when active in GPU, for this context */
2189         __u32 batch_active;
2190
2191         /* Number of batches lost pending for execution, for this context */
2192         __u32 batch_pending;
2193
2194         __u32 pad;
2195 };
2196
2197 /**
2198  * struct drm_i915_gem_userptr - Create GEM object from user allocated memory.
2199  *
2200  * Userptr objects have several restrictions on what ioctls can be used with the
2201  * object handle.
2202  */
2203 struct drm_i915_gem_userptr {
2204         /**
2205          * @user_ptr: The pointer to the allocated memory.
2206          *
2207          * Needs to be aligned to PAGE_SIZE.
2208          */
2209         __u64 user_ptr;
2210
2211         /**
2212          * @user_size:
2213          *
2214          * The size in bytes for the allocated memory. This will also become the
2215          * object size.
2216          *
2217          * Needs to be aligned to PAGE_SIZE, and should be at least PAGE_SIZE,
2218          * or larger.
2219          */
2220         __u64 user_size;
2221
2222         /**
2223          * @flags:
2224          *
2225          * Supported flags:
2226          *
2227          * I915_USERPTR_READ_ONLY:
2228          *
2229          * Mark the object as readonly, this also means GPU access can only be
2230          * readonly. This is only supported on HW which supports readonly access
2231          * through the GTT. If the HW can't support readonly access, an error is
2232          * returned.
2233          *
2234          * I915_USERPTR_UNSYNCHRONIZED:
2235          *
2236          * NOT USED. Setting this flag will result in an error.
2237          */
2238         __u32 flags;
2239 #define I915_USERPTR_READ_ONLY 0x1
2240 #define I915_USERPTR_UNSYNCHRONIZED 0x80000000
2241         /**
2242          * @handle: Returned handle for the object.
2243          *
2244          * Object handles are nonzero.
2245          */
2246         __u32 handle;
2247 };
2248
2249 enum drm_i915_oa_format {
2250         I915_OA_FORMAT_A13 = 1,     /* HSW only */
2251         I915_OA_FORMAT_A29,         /* HSW only */
2252         I915_OA_FORMAT_A13_B8_C8,   /* HSW only */
2253         I915_OA_FORMAT_B4_C8,       /* HSW only */
2254         I915_OA_FORMAT_A45_B8_C8,   /* HSW only */
2255         I915_OA_FORMAT_B4_C8_A16,   /* HSW only */
2256         I915_OA_FORMAT_C4_B8,       /* HSW+ */
2257
2258         /* Gen8+ */
2259         I915_OA_FORMAT_A12,
2260         I915_OA_FORMAT_A12_B8_C8,
2261         I915_OA_FORMAT_A32u40_A4u32_B8_C8,
2262
2263         I915_OA_FORMAT_MAX          /* non-ABI */
2264 };
2265
2266 enum drm_i915_perf_property_id {
2267         /**
2268          * Open the stream for a specific context handle (as used with
2269          * execbuffer2). A stream opened for a specific context this way
2270          * won't typically require root privileges.
2271          *
2272          * This property is available in perf revision 1.
2273          */
2274         DRM_I915_PERF_PROP_CTX_HANDLE = 1,
2275
2276         /**
2277          * A value of 1 requests the inclusion of raw OA unit reports as
2278          * part of stream samples.
2279          *
2280          * This property is available in perf revision 1.
2281          */
2282         DRM_I915_PERF_PROP_SAMPLE_OA,
2283
2284         /**
2285          * The value specifies which set of OA unit metrics should be
2286          * configured, defining the contents of any OA unit reports.
2287          *
2288          * This property is available in perf revision 1.
2289          */
2290         DRM_I915_PERF_PROP_OA_METRICS_SET,
2291
2292         /**
2293          * The value specifies the size and layout of OA unit reports.
2294          *
2295          * This property is available in perf revision 1.
2296          */
2297         DRM_I915_PERF_PROP_OA_FORMAT,
2298
2299         /**
2300          * Specifying this property implicitly requests periodic OA unit
2301          * sampling and (at least on Haswell) the sampling frequency is derived
2302          * from this exponent as follows:
2303          *
2304          *   80ns * 2^(period_exponent + 1)
2305          *
2306          * This property is available in perf revision 1.
2307          */
2308         DRM_I915_PERF_PROP_OA_EXPONENT,
2309
2310         /**
2311          * Specifying this property is only valid when specify a context to
2312          * filter with DRM_I915_PERF_PROP_CTX_HANDLE. Specifying this property
2313          * will hold preemption of the particular context we want to gather
2314          * performance data about. The execbuf2 submissions must include a
2315          * drm_i915_gem_execbuffer_ext_perf parameter for this to apply.
2316          *
2317          * This property is available in perf revision 3.
2318          */
2319         DRM_I915_PERF_PROP_HOLD_PREEMPTION,
2320
2321         /**
2322          * Specifying this pins all contexts to the specified SSEU power
2323          * configuration for the duration of the recording.
2324          *
2325          * This parameter's value is a pointer to a struct
2326          * drm_i915_gem_context_param_sseu.
2327          *
2328          * This property is available in perf revision 4.
2329          */
2330         DRM_I915_PERF_PROP_GLOBAL_SSEU,
2331
2332         /**
2333          * This optional parameter specifies the timer interval in nanoseconds
2334          * at which the i915 driver will check the OA buffer for available data.
2335          * Minimum allowed value is 100 microseconds. A default value is used by
2336          * the driver if this parameter is not specified. Note that larger timer
2337          * values will reduce cpu consumption during OA perf captures. However,
2338          * excessively large values would potentially result in OA buffer
2339          * overwrites as captures reach end of the OA buffer.
2340          *
2341          * This property is available in perf revision 5.
2342          */
2343         DRM_I915_PERF_PROP_POLL_OA_PERIOD,
2344
2345         DRM_I915_PERF_PROP_MAX /* non-ABI */
2346 };
2347
2348 struct drm_i915_perf_open_param {
2349         __u32 flags;
2350 #define I915_PERF_FLAG_FD_CLOEXEC       (1<<0)
2351 #define I915_PERF_FLAG_FD_NONBLOCK      (1<<1)
2352 #define I915_PERF_FLAG_DISABLED         (1<<2)
2353
2354         /** The number of u64 (id, value) pairs */
2355         __u32 num_properties;
2356
2357         /**
2358          * Pointer to array of u64 (id, value) pairs configuring the stream
2359          * to open.
2360          */
2361         __u64 properties_ptr;
2362 };
2363
2364 /*
2365  * Enable data capture for a stream that was either opened in a disabled state
2366  * via I915_PERF_FLAG_DISABLED or was later disabled via
2367  * I915_PERF_IOCTL_DISABLE.
2368  *
2369  * It is intended to be cheaper to disable and enable a stream than it may be
2370  * to close and re-open a stream with the same configuration.
2371  *
2372  * It's undefined whether any pending data for the stream will be lost.
2373  *
2374  * This ioctl is available in perf revision 1.
2375  */
2376 #define I915_PERF_IOCTL_ENABLE  _IO('i', 0x0)
2377
2378 /*
2379  * Disable data capture for a stream.
2380  *
2381  * It is an error to try and read a stream that is disabled.
2382  *
2383  * This ioctl is available in perf revision 1.
2384  */
2385 #define I915_PERF_IOCTL_DISABLE _IO('i', 0x1)
2386
2387 /*
2388  * Change metrics_set captured by a stream.
2389  *
2390  * If the stream is bound to a specific context, the configuration change
2391  * will performed inline with that context such that it takes effect before
2392  * the next execbuf submission.
2393  *
2394  * Returns the previously bound metrics set id, or a negative error code.
2395  *
2396  * This ioctl is available in perf revision 2.
2397  */
2398 #define I915_PERF_IOCTL_CONFIG  _IO('i', 0x2)
2399
2400 /*
2401  * Common to all i915 perf records
2402  */
2403 struct drm_i915_perf_record_header {
2404         __u32 type;
2405         __u16 pad;
2406         __u16 size;
2407 };
2408
2409 enum drm_i915_perf_record_type {
2410
2411         /**
2412          * Samples are the work horse record type whose contents are extensible
2413          * and defined when opening an i915 perf stream based on the given
2414          * properties.
2415          *
2416          * Boolean properties following the naming convention
2417          * DRM_I915_PERF_SAMPLE_xyz_PROP request the inclusion of 'xyz' data in
2418          * every sample.
2419          *
2420          * The order of these sample properties given by userspace has no
2421          * affect on the ordering of data within a sample. The order is
2422          * documented here.
2423          *
2424          * struct {
2425          *     struct drm_i915_perf_record_header header;
2426          *
2427          *     { u32 oa_report[]; } && DRM_I915_PERF_PROP_SAMPLE_OA
2428          * };
2429          */
2430         DRM_I915_PERF_RECORD_SAMPLE = 1,
2431
2432         /*
2433          * Indicates that one or more OA reports were not written by the
2434          * hardware. This can happen for example if an MI_REPORT_PERF_COUNT
2435          * command collides with periodic sampling - which would be more likely
2436          * at higher sampling frequencies.
2437          */
2438         DRM_I915_PERF_RECORD_OA_REPORT_LOST = 2,
2439
2440         /**
2441          * An error occurred that resulted in all pending OA reports being lost.
2442          */
2443         DRM_I915_PERF_RECORD_OA_BUFFER_LOST = 3,
2444
2445         DRM_I915_PERF_RECORD_MAX /* non-ABI */
2446 };
2447
2448 /*
2449  * Structure to upload perf dynamic configuration into the kernel.
2450  */
2451 struct drm_i915_perf_oa_config {
2452         /** String formatted like "%08x-%04x-%04x-%04x-%012x" */
2453         char uuid[36];
2454
2455         __u32 n_mux_regs;
2456         __u32 n_boolean_regs;
2457         __u32 n_flex_regs;
2458
2459         /*
2460          * These fields are pointers to tuples of u32 values (register address,
2461          * value). For example the expected length of the buffer pointed by
2462          * mux_regs_ptr is (2 * sizeof(u32) * n_mux_regs).
2463          */
2464         __u64 mux_regs_ptr;
2465         __u64 boolean_regs_ptr;
2466         __u64 flex_regs_ptr;
2467 };
2468
2469 /**
2470  * struct drm_i915_query_item - An individual query for the kernel to process.
2471  *
2472  * The behaviour is determined by the @query_id. Note that exactly what
2473  * @data_ptr is also depends on the specific @query_id.
2474  */
2475 struct drm_i915_query_item {
2476         /** @query_id: The id for this query */
2477         __u64 query_id;
2478 #define DRM_I915_QUERY_TOPOLOGY_INFO    1
2479 #define DRM_I915_QUERY_ENGINE_INFO      2
2480 #define DRM_I915_QUERY_PERF_CONFIG      3
2481 #define DRM_I915_QUERY_MEMORY_REGIONS   4
2482 /* Must be kept compact -- no holes and well documented */
2483
2484         /**
2485          * @length:
2486          *
2487          * When set to zero by userspace, this is filled with the size of the
2488          * data to be written at the @data_ptr pointer. The kernel sets this
2489          * value to a negative value to signal an error on a particular query
2490          * item.
2491          */
2492         __s32 length;
2493
2494         /**
2495          * @flags:
2496          *
2497          * When query_id == DRM_I915_QUERY_TOPOLOGY_INFO, must be 0.
2498          *
2499          * When query_id == DRM_I915_QUERY_PERF_CONFIG, must be one of the
2500          * following:
2501          *
2502          *      - DRM_I915_QUERY_PERF_CONFIG_LIST
2503          *      - DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID
2504          *      - DRM_I915_QUERY_PERF_CONFIG_FOR_UUID
2505          */
2506         __u32 flags;
2507 #define DRM_I915_QUERY_PERF_CONFIG_LIST          1
2508 #define DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID 2
2509 #define DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_ID   3
2510
2511         /**
2512          * @data_ptr:
2513          *
2514          * Data will be written at the location pointed by @data_ptr when the
2515          * value of @length matches the length of the data to be written by the
2516          * kernel.
2517          */
2518         __u64 data_ptr;
2519 };
2520
2521 /**
2522  * struct drm_i915_query - Supply an array of struct drm_i915_query_item for the
2523  * kernel to fill out.
2524  *
2525  * Note that this is generally a two step process for each struct
2526  * drm_i915_query_item in the array:
2527  *
2528  * 1. Call the DRM_IOCTL_I915_QUERY, giving it our array of struct
2529  *    drm_i915_query_item, with &drm_i915_query_item.length set to zero. The
2530  *    kernel will then fill in the size, in bytes, which tells userspace how
2531  *    memory it needs to allocate for the blob(say for an array of properties).
2532  *
2533  * 2. Next we call DRM_IOCTL_I915_QUERY again, this time with the
2534  *    &drm_i915_query_item.data_ptr equal to our newly allocated blob. Note that
2535  *    the &drm_i915_query_item.length should still be the same as what the
2536  *    kernel previously set. At this point the kernel can fill in the blob.
2537  *
2538  * Note that for some query items it can make sense for userspace to just pass
2539  * in a buffer/blob equal to or larger than the required size. In this case only
2540  * a single ioctl call is needed. For some smaller query items this can work
2541  * quite well.
2542  *
2543  */
2544 struct drm_i915_query {
2545         /** @num_items: The number of elements in the @items_ptr array */
2546         __u32 num_items;
2547
2548         /**
2549          * @flags: Unused for now. Must be cleared to zero.
2550          */
2551         __u32 flags;
2552
2553         /**
2554          * @items_ptr:
2555          *
2556          * Pointer to an array of struct drm_i915_query_item. The number of
2557          * array elements is @num_items.
2558          */
2559         __u64 items_ptr;
2560 };
2561
2562 /*
2563  * Data written by the kernel with query DRM_I915_QUERY_TOPOLOGY_INFO :
2564  *
2565  * data: contains the 3 pieces of information :
2566  *
2567  * - the slice mask with one bit per slice telling whether a slice is
2568  *   available. The availability of slice X can be queried with the following
2569  *   formula :
2570  *
2571  *           (data[X / 8] >> (X % 8)) & 1
2572  *
2573  * - the subslice mask for each slice with one bit per subslice telling
2574  *   whether a subslice is available. Gen12 has dual-subslices, which are
2575  *   similar to two gen11 subslices. For gen12, this array represents dual-
2576  *   subslices. The availability of subslice Y in slice X can be queried
2577  *   with the following formula :
2578  *
2579  *           (data[subslice_offset +
2580  *                 X * subslice_stride +
2581  *                 Y / 8] >> (Y % 8)) & 1
2582  *
2583  * - the EU mask for each subslice in each slice with one bit per EU telling
2584  *   whether an EU is available. The availability of EU Z in subslice Y in
2585  *   slice X can be queried with the following formula :
2586  *
2587  *           (data[eu_offset +
2588  *                 (X * max_subslices + Y) * eu_stride +
2589  *                 Z / 8] >> (Z % 8)) & 1
2590  */
2591 struct drm_i915_query_topology_info {
2592         /*
2593          * Unused for now. Must be cleared to zero.
2594          */
2595         __u16 flags;
2596
2597         __u16 max_slices;
2598         __u16 max_subslices;
2599         __u16 max_eus_per_subslice;
2600
2601         /*
2602          * Offset in data[] at which the subslice masks are stored.
2603          */
2604         __u16 subslice_offset;
2605
2606         /*
2607          * Stride at which each of the subslice masks for each slice are
2608          * stored.
2609          */
2610         __u16 subslice_stride;
2611
2612         /*
2613          * Offset in data[] at which the EU masks are stored.
2614          */
2615         __u16 eu_offset;
2616
2617         /*
2618          * Stride at which each of the EU masks for each subslice are stored.
2619          */
2620         __u16 eu_stride;
2621
2622         __u8 data[];
2623 };
2624
2625 /**
2626  * DOC: Engine Discovery uAPI
2627  *
2628  * Engine discovery uAPI is a way of enumerating physical engines present in a
2629  * GPU associated with an open i915 DRM file descriptor. This supersedes the old
2630  * way of using `DRM_IOCTL_I915_GETPARAM` and engine identifiers like
2631  * `I915_PARAM_HAS_BLT`.
2632  *
2633  * The need for this interface came starting with Icelake and newer GPUs, which
2634  * started to establish a pattern of having multiple engines of a same class,
2635  * where not all instances were always completely functionally equivalent.
2636  *
2637  * Entry point for this uapi is `DRM_IOCTL_I915_QUERY` with the
2638  * `DRM_I915_QUERY_ENGINE_INFO` as the queried item id.
2639  *
2640  * Example for getting the list of engines:
2641  *
2642  * .. code-block:: C
2643  *
2644  *      struct drm_i915_query_engine_info *info;
2645  *      struct drm_i915_query_item item = {
2646  *              .query_id = DRM_I915_QUERY_ENGINE_INFO;
2647  *      };
2648  *      struct drm_i915_query query = {
2649  *              .num_items = 1,
2650  *              .items_ptr = (uintptr_t)&item,
2651  *      };
2652  *      int err, i;
2653  *
2654  *      // First query the size of the blob we need, this needs to be large
2655  *      // enough to hold our array of engines. The kernel will fill out the
2656  *      // item.length for us, which is the number of bytes we need.
2657  *      //
2658  *      // Alternatively a large buffer can be allocated straight away enabling
2659  *      // querying in one pass, in which case item.length should contain the
2660  *      // length of the provided buffer.
2661  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2662  *      if (err) ...
2663  *
2664  *      info = calloc(1, item.length);
2665  *      // Now that we allocated the required number of bytes, we call the ioctl
2666  *      // again, this time with the data_ptr pointing to our newly allocated
2667  *      // blob, which the kernel can then populate with info on all engines.
2668  *      item.data_ptr = (uintptr_t)&info,
2669  *
2670  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2671  *      if (err) ...
2672  *
2673  *      // We can now access each engine in the array
2674  *      for (i = 0; i < info->num_engines; i++) {
2675  *              struct drm_i915_engine_info einfo = info->engines[i];
2676  *              u16 class = einfo.engine.class;
2677  *              u16 instance = einfo.engine.instance;
2678  *              ....
2679  *      }
2680  *
2681  *      free(info);
2682  *
2683  * Each of the enumerated engines, apart from being defined by its class and
2684  * instance (see `struct i915_engine_class_instance`), also can have flags and
2685  * capabilities defined as documented in i915_drm.h.
2686  *
2687  * For instance video engines which support HEVC encoding will have the
2688  * `I915_VIDEO_CLASS_CAPABILITY_HEVC` capability bit set.
2689  *
2690  * Engine discovery only fully comes to its own when combined with the new way
2691  * of addressing engines when submitting batch buffers using contexts with
2692  * engine maps configured.
2693  */
2694
2695 /**
2696  * struct drm_i915_engine_info
2697  *
2698  * Describes one engine and it's capabilities as known to the driver.
2699  */
2700 struct drm_i915_engine_info {
2701         /** @engine: Engine class and instance. */
2702         struct i915_engine_class_instance engine;
2703
2704         /** @rsvd0: Reserved field. */
2705         __u32 rsvd0;
2706
2707         /** @flags: Engine flags. */
2708         __u64 flags;
2709
2710         /** @capabilities: Capabilities of this engine. */
2711         __u64 capabilities;
2712 #define I915_VIDEO_CLASS_CAPABILITY_HEVC                (1 << 0)
2713 #define I915_VIDEO_AND_ENHANCE_CLASS_CAPABILITY_SFC     (1 << 1)
2714
2715         /** @rsvd1: Reserved fields. */
2716         __u64 rsvd1[4];
2717 };
2718
2719 /**
2720  * struct drm_i915_query_engine_info
2721  *
2722  * Engine info query enumerates all engines known to the driver by filling in
2723  * an array of struct drm_i915_engine_info structures.
2724  */
2725 struct drm_i915_query_engine_info {
2726         /** @num_engines: Number of struct drm_i915_engine_info structs following. */
2727         __u32 num_engines;
2728
2729         /** @rsvd: MBZ */
2730         __u32 rsvd[3];
2731
2732         /** @engines: Marker for drm_i915_engine_info structures. */
2733         struct drm_i915_engine_info engines[];
2734 };
2735
2736 /*
2737  * Data written by the kernel with query DRM_I915_QUERY_PERF_CONFIG.
2738  */
2739 struct drm_i915_query_perf_config {
2740         union {
2741                 /*
2742                  * When query_item.flags == DRM_I915_QUERY_PERF_CONFIG_LIST, i915 sets
2743                  * this fields to the number of configurations available.
2744                  */
2745                 __u64 n_configs;
2746
2747                 /*
2748                  * When query_id == DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_ID,
2749                  * i915 will use the value in this field as configuration
2750                  * identifier to decide what data to write into config_ptr.
2751                  */
2752                 __u64 config;
2753
2754                 /*
2755                  * When query_id == DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID,
2756                  * i915 will use the value in this field as configuration
2757                  * identifier to decide what data to write into config_ptr.
2758                  *
2759                  * String formatted like "%08x-%04x-%04x-%04x-%012x"
2760                  */
2761                 char uuid[36];
2762         };
2763
2764         /*
2765          * Unused for now. Must be cleared to zero.
2766          */
2767         __u32 flags;
2768
2769         /*
2770          * When query_item.flags == DRM_I915_QUERY_PERF_CONFIG_LIST, i915 will
2771          * write an array of __u64 of configuration identifiers.
2772          *
2773          * When query_item.flags == DRM_I915_QUERY_PERF_CONFIG_DATA, i915 will
2774          * write a struct drm_i915_perf_oa_config. If the following fields of
2775          * drm_i915_perf_oa_config are set not set to 0, i915 will write into
2776          * the associated pointers the values of submitted when the
2777          * configuration was created :
2778          *
2779          *         - n_mux_regs
2780          *         - n_boolean_regs
2781          *         - n_flex_regs
2782          */
2783         __u8 data[];
2784 };
2785
2786 /**
2787  * enum drm_i915_gem_memory_class - Supported memory classes
2788  */
2789 enum drm_i915_gem_memory_class {
2790         /** @I915_MEMORY_CLASS_SYSTEM: System memory */
2791         I915_MEMORY_CLASS_SYSTEM = 0,
2792         /** @I915_MEMORY_CLASS_DEVICE: Device local-memory */
2793         I915_MEMORY_CLASS_DEVICE,
2794 };
2795
2796 /**
2797  * struct drm_i915_gem_memory_class_instance - Identify particular memory region
2798  */
2799 struct drm_i915_gem_memory_class_instance {
2800         /** @memory_class: See enum drm_i915_gem_memory_class */
2801         __u16 memory_class;
2802
2803         /** @memory_instance: Which instance */
2804         __u16 memory_instance;
2805 };
2806
2807 /**
2808  * struct drm_i915_memory_region_info - Describes one region as known to the
2809  * driver.
2810  *
2811  * Note that we reserve some stuff here for potential future work. As an example
2812  * we might want expose the capabilities for a given region, which could include
2813  * things like if the region is CPU mappable/accessible, what are the supported
2814  * mapping types etc.
2815  *
2816  * Note that to extend struct drm_i915_memory_region_info and struct
2817  * drm_i915_query_memory_regions in the future the plan is to do the following:
2818  *
2819  * .. code-block:: C
2820  *
2821  *      struct drm_i915_memory_region_info {
2822  *              struct drm_i915_gem_memory_class_instance region;
2823  *              union {
2824  *                      __u32 rsvd0;
2825  *                      __u32 new_thing1;
2826  *              };
2827  *              ...
2828  *              union {
2829  *                      __u64 rsvd1[8];
2830  *                      struct {
2831  *                              __u64 new_thing2;
2832  *                              __u64 new_thing3;
2833  *                              ...
2834  *                      };
2835  *              };
2836  *      };
2837  *
2838  * With this things should remain source compatible between versions for
2839  * userspace, even as we add new fields.
2840  *
2841  * Note this is using both struct drm_i915_query_item and struct drm_i915_query.
2842  * For this new query we are adding the new query id DRM_I915_QUERY_MEMORY_REGIONS
2843  * at &drm_i915_query_item.query_id.
2844  */
2845 struct drm_i915_memory_region_info {
2846         /** @region: The class:instance pair encoding */
2847         struct drm_i915_gem_memory_class_instance region;
2848
2849         /** @rsvd0: MBZ */
2850         __u32 rsvd0;
2851
2852         /** @probed_size: Memory probed by the driver (-1 = unknown) */
2853         __u64 probed_size;
2854
2855         /** @unallocated_size: Estimate of memory remaining (-1 = unknown) */
2856         __u64 unallocated_size;
2857
2858         /** @rsvd1: MBZ */
2859         __u64 rsvd1[8];
2860 };
2861
2862 /**
2863  * struct drm_i915_query_memory_regions
2864  *
2865  * The region info query enumerates all regions known to the driver by filling
2866  * in an array of struct drm_i915_memory_region_info structures.
2867  *
2868  * Example for getting the list of supported regions:
2869  *
2870  * .. code-block:: C
2871  *
2872  *      struct drm_i915_query_memory_regions *info;
2873  *      struct drm_i915_query_item item = {
2874  *              .query_id = DRM_I915_QUERY_MEMORY_REGIONS;
2875  *      };
2876  *      struct drm_i915_query query = {
2877  *              .num_items = 1,
2878  *              .items_ptr = (uintptr_t)&item,
2879  *      };
2880  *      int err, i;
2881  *
2882  *      // First query the size of the blob we need, this needs to be large
2883  *      // enough to hold our array of regions. The kernel will fill out the
2884  *      // item.length for us, which is the number of bytes we need.
2885  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2886  *      if (err) ...
2887  *
2888  *      info = calloc(1, item.length);
2889  *      // Now that we allocated the required number of bytes, we call the ioctl
2890  *      // again, this time with the data_ptr pointing to our newly allocated
2891  *      // blob, which the kernel can then populate with the all the region info.
2892  *      item.data_ptr = (uintptr_t)&info,
2893  *
2894  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2895  *      if (err) ...
2896  *
2897  *      // We can now access each region in the array
2898  *      for (i = 0; i < info->num_regions; i++) {
2899  *              struct drm_i915_memory_region_info mr = info->regions[i];
2900  *              u16 class = mr.region.class;
2901  *              u16 instance = mr.region.instance;
2902  *
2903  *              ....
2904  *      }
2905  *
2906  *      free(info);
2907  */
2908 struct drm_i915_query_memory_regions {
2909         /** @num_regions: Number of supported regions */
2910         __u32 num_regions;
2911
2912         /** @rsvd: MBZ */
2913         __u32 rsvd[3];
2914
2915         /** @regions: Info about each supported region */
2916         struct drm_i915_memory_region_info regions[];
2917 };
2918
2919 /**
2920  * struct drm_i915_gem_create_ext - Existing gem_create behaviour, with added
2921  * extension support using struct i915_user_extension.
2922  *
2923  * Note that in the future we want to have our buffer flags here, at least for
2924  * the stuff that is immutable. Previously we would have two ioctls, one to
2925  * create the object with gem_create, and another to apply various parameters,
2926  * however this creates some ambiguity for the params which are considered
2927  * immutable. Also in general we're phasing out the various SET/GET ioctls.
2928  */
2929 struct drm_i915_gem_create_ext {
2930         /**
2931          * @size: Requested size for the object.
2932          *
2933          * The (page-aligned) allocated size for the object will be returned.
2934          *
2935          * Note that for some devices we have might have further minimum
2936          * page-size restrictions(larger than 4K), like for device local-memory.
2937          * However in general the final size here should always reflect any
2938          * rounding up, if for example using the I915_GEM_CREATE_EXT_MEMORY_REGIONS
2939          * extension to place the object in device local-memory.
2940          */
2941         __u64 size;
2942         /**
2943          * @handle: Returned handle for the object.
2944          *
2945          * Object handles are nonzero.
2946          */
2947         __u32 handle;
2948         /** @flags: MBZ */
2949         __u32 flags;
2950         /**
2951          * @extensions: The chain of extensions to apply to this object.
2952          *
2953          * This will be useful in the future when we need to support several
2954          * different extensions, and we need to apply more than one when
2955          * creating the object. See struct i915_user_extension.
2956          *
2957          * If we don't supply any extensions then we get the same old gem_create
2958          * behaviour.
2959          *
2960          * For I915_GEM_CREATE_EXT_MEMORY_REGIONS usage see
2961          * struct drm_i915_gem_create_ext_memory_regions.
2962          */
2963 #define I915_GEM_CREATE_EXT_MEMORY_REGIONS 0
2964         __u64 extensions;
2965 };
2966
2967 /**
2968  * struct drm_i915_gem_create_ext_memory_regions - The
2969  * I915_GEM_CREATE_EXT_MEMORY_REGIONS extension.
2970  *
2971  * Set the object with the desired set of placements/regions in priority
2972  * order. Each entry must be unique and supported by the device.
2973  *
2974  * This is provided as an array of struct drm_i915_gem_memory_class_instance, or
2975  * an equivalent layout of class:instance pair encodings. See struct
2976  * drm_i915_query_memory_regions and DRM_I915_QUERY_MEMORY_REGIONS for how to
2977  * query the supported regions for a device.
2978  *
2979  * As an example, on discrete devices, if we wish to set the placement as
2980  * device local-memory we can do something like:
2981  *
2982  * .. code-block:: C
2983  *
2984  *      struct drm_i915_gem_memory_class_instance region_lmem = {
2985  *              .memory_class = I915_MEMORY_CLASS_DEVICE,
2986  *              .memory_instance = 0,
2987  *      };
2988  *      struct drm_i915_gem_create_ext_memory_regions regions = {
2989  *              .base = { .name = I915_GEM_CREATE_EXT_MEMORY_REGIONS },
2990  *              .regions = (uintptr_t)&region_lmem,
2991  *              .num_regions = 1,
2992  *      };
2993  *      struct drm_i915_gem_create_ext create_ext = {
2994  *              .size = 16 * PAGE_SIZE,
2995  *              .extensions = (uintptr_t)&regions,
2996  *      };
2997  *
2998  *      int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext);
2999  *      if (err) ...
3000  *
3001  * At which point we get the object handle in &drm_i915_gem_create_ext.handle,
3002  * along with the final object size in &drm_i915_gem_create_ext.size, which
3003  * should account for any rounding up, if required.
3004  */
3005 struct drm_i915_gem_create_ext_memory_regions {
3006         /** @base: Extension link. See struct i915_user_extension. */
3007         struct i915_user_extension base;
3008
3009         /** @pad: MBZ */
3010         __u32 pad;
3011         /** @num_regions: Number of elements in the @regions array. */
3012         __u32 num_regions;
3013         /**
3014          * @regions: The regions/placements array.
3015          *
3016          * An array of struct drm_i915_gem_memory_class_instance.
3017          */
3018         __u64 regions;
3019 };
3020
3021 #if defined(__cplusplus)
3022 }
3023 #endif
3024
3025 #endif /* _UAPI_I915_DRM_H_ */