drm/i915/uapi: convert drm_i915_gem_set_domain to kernel doc
[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 #define I915_PARAM_HUC_STATUS            42
577
578 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to opt-out of
579  * synchronisation with implicit fencing on individual objects.
580  * See EXEC_OBJECT_ASYNC.
581  */
582 #define I915_PARAM_HAS_EXEC_ASYNC        43
583
584 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports explicit fence support -
585  * both being able to pass in a sync_file fd to wait upon before executing,
586  * and being able to return a new sync_file fd that is signaled when the
587  * current request is complete. See I915_EXEC_FENCE_IN and I915_EXEC_FENCE_OUT.
588  */
589 #define I915_PARAM_HAS_EXEC_FENCE        44
590
591 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to capture
592  * user specified bufffers for post-mortem debugging of GPU hangs. See
593  * EXEC_OBJECT_CAPTURE.
594  */
595 #define I915_PARAM_HAS_EXEC_CAPTURE      45
596
597 #define I915_PARAM_SLICE_MASK            46
598
599 /* Assuming it's uniform for each slice, this queries the mask of subslices
600  * per-slice for this system.
601  */
602 #define I915_PARAM_SUBSLICE_MASK         47
603
604 /*
605  * Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying the batch buffer
606  * as the first execobject as opposed to the last. See I915_EXEC_BATCH_FIRST.
607  */
608 #define I915_PARAM_HAS_EXEC_BATCH_FIRST  48
609
610 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying an array of
611  * drm_i915_gem_exec_fence structures.  See I915_EXEC_FENCE_ARRAY.
612  */
613 #define I915_PARAM_HAS_EXEC_FENCE_ARRAY  49
614
615 /*
616  * Query whether every context (both per-file default and user created) is
617  * isolated (insofar as HW supports). If this parameter is not true, then
618  * freshly created contexts may inherit values from an existing context,
619  * rather than default HW values. If true, it also ensures (insofar as HW
620  * supports) that all state set by this context will not leak to any other
621  * context.
622  *
623  * As not every engine across every gen support contexts, the returned
624  * value reports the support of context isolation for individual engines by
625  * returning a bitmask of each engine class set to true if that class supports
626  * isolation.
627  */
628 #define I915_PARAM_HAS_CONTEXT_ISOLATION 50
629
630 /* Frequency of the command streamer timestamps given by the *_TIMESTAMP
631  * registers. This used to be fixed per platform but from CNL onwards, this
632  * might vary depending on the parts.
633  */
634 #define I915_PARAM_CS_TIMESTAMP_FREQUENCY 51
635
636 /*
637  * Once upon a time we supposed that writes through the GGTT would be
638  * immediately in physical memory (once flushed out of the CPU path). However,
639  * on a few different processors and chipsets, this is not necessarily the case
640  * as the writes appear to be buffered internally. Thus a read of the backing
641  * storage (physical memory) via a different path (with different physical tags
642  * to the indirect write via the GGTT) will see stale values from before
643  * the GGTT write. Inside the kernel, we can for the most part keep track of
644  * the different read/write domains in use (e.g. set-domain), but the assumption
645  * of coherency is baked into the ABI, hence reporting its true state in this
646  * parameter.
647  *
648  * Reports true when writes via mmap_gtt are immediately visible following an
649  * lfence to flush the WCB.
650  *
651  * Reports false when writes via mmap_gtt are indeterminately delayed in an in
652  * internal buffer and are _not_ immediately visible to third parties accessing
653  * directly via mmap_cpu/mmap_wc. Use of mmap_gtt as part of an IPC
654  * communications channel when reporting false is strongly disadvised.
655  */
656 #define I915_PARAM_MMAP_GTT_COHERENT    52
657
658 /*
659  * Query whether DRM_I915_GEM_EXECBUFFER2 supports coordination of parallel
660  * execution through use of explicit fence support.
661  * See I915_EXEC_FENCE_OUT and I915_EXEC_FENCE_SUBMIT.
662  */
663 #define I915_PARAM_HAS_EXEC_SUBMIT_FENCE 53
664
665 /*
666  * Revision of the i915-perf uAPI. The value returned helps determine what
667  * i915-perf features are available. See drm_i915_perf_property_id.
668  */
669 #define I915_PARAM_PERF_REVISION        54
670
671 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying an array of
672  * timeline syncobj through drm_i915_gem_execbuffer_ext_timeline_fences. See
673  * I915_EXEC_USE_EXTENSIONS.
674  */
675 #define I915_PARAM_HAS_EXEC_TIMELINE_FENCES 55
676
677 /* Must be kept compact -- no holes and well documented */
678
679 typedef struct drm_i915_getparam {
680         __s32 param;
681         /*
682          * WARNING: Using pointers instead of fixed-size u64 means we need to write
683          * compat32 code. Don't repeat this mistake.
684          */
685         int __user *value;
686 } drm_i915_getparam_t;
687
688 /* Ioctl to set kernel params:
689  */
690 #define I915_SETPARAM_USE_MI_BATCHBUFFER_START            1
691 #define I915_SETPARAM_TEX_LRU_LOG_GRANULARITY             2
692 #define I915_SETPARAM_ALLOW_BATCHBUFFER                   3
693 #define I915_SETPARAM_NUM_USED_FENCES                     4
694 /* Must be kept compact -- no holes */
695
696 typedef struct drm_i915_setparam {
697         int param;
698         int value;
699 } drm_i915_setparam_t;
700
701 /* A memory manager for regions of shared memory:
702  */
703 #define I915_MEM_REGION_AGP 1
704
705 typedef struct drm_i915_mem_alloc {
706         int region;
707         int alignment;
708         int size;
709         int __user *region_offset;      /* offset from start of fb or agp */
710 } drm_i915_mem_alloc_t;
711
712 typedef struct drm_i915_mem_free {
713         int region;
714         int region_offset;
715 } drm_i915_mem_free_t;
716
717 typedef struct drm_i915_mem_init_heap {
718         int region;
719         int size;
720         int start;
721 } drm_i915_mem_init_heap_t;
722
723 /* Allow memory manager to be torn down and re-initialized (eg on
724  * rotate):
725  */
726 typedef struct drm_i915_mem_destroy_heap {
727         int region;
728 } drm_i915_mem_destroy_heap_t;
729
730 /* Allow X server to configure which pipes to monitor for vblank signals
731  */
732 #define DRM_I915_VBLANK_PIPE_A  1
733 #define DRM_I915_VBLANK_PIPE_B  2
734
735 typedef struct drm_i915_vblank_pipe {
736         int pipe;
737 } drm_i915_vblank_pipe_t;
738
739 /* Schedule buffer swap at given vertical blank:
740  */
741 typedef struct drm_i915_vblank_swap {
742         drm_drawable_t drawable;
743         enum drm_vblank_seq_type seqtype;
744         unsigned int sequence;
745 } drm_i915_vblank_swap_t;
746
747 typedef struct drm_i915_hws_addr {
748         __u64 addr;
749 } drm_i915_hws_addr_t;
750
751 struct drm_i915_gem_init {
752         /**
753          * Beginning offset in the GTT to be managed by the DRM memory
754          * manager.
755          */
756         __u64 gtt_start;
757         /**
758          * Ending offset in the GTT to be managed by the DRM memory
759          * manager.
760          */
761         __u64 gtt_end;
762 };
763
764 struct drm_i915_gem_create {
765         /**
766          * Requested size for the object.
767          *
768          * The (page-aligned) allocated size for the object will be returned.
769          */
770         __u64 size;
771         /**
772          * Returned handle for the object.
773          *
774          * Object handles are nonzero.
775          */
776         __u32 handle;
777         __u32 pad;
778 };
779
780 struct drm_i915_gem_pread {
781         /** Handle for the object being read. */
782         __u32 handle;
783         __u32 pad;
784         /** Offset into the object to read from */
785         __u64 offset;
786         /** Length of data to read */
787         __u64 size;
788         /**
789          * Pointer to write the data into.
790          *
791          * This is a fixed-size type for 32/64 compatibility.
792          */
793         __u64 data_ptr;
794 };
795
796 struct drm_i915_gem_pwrite {
797         /** Handle for the object being written to. */
798         __u32 handle;
799         __u32 pad;
800         /** Offset into the object to write to */
801         __u64 offset;
802         /** Length of data to write */
803         __u64 size;
804         /**
805          * Pointer to read the data from.
806          *
807          * This is a fixed-size type for 32/64 compatibility.
808          */
809         __u64 data_ptr;
810 };
811
812 struct drm_i915_gem_mmap {
813         /** Handle for the object being mapped. */
814         __u32 handle;
815         __u32 pad;
816         /** Offset in the object to map. */
817         __u64 offset;
818         /**
819          * Length of data to map.
820          *
821          * The value will be page-aligned.
822          */
823         __u64 size;
824         /**
825          * Returned pointer the data was mapped at.
826          *
827          * This is a fixed-size type for 32/64 compatibility.
828          */
829         __u64 addr_ptr;
830
831         /**
832          * Flags for extended behaviour.
833          *
834          * Added in version 2.
835          */
836         __u64 flags;
837 #define I915_MMAP_WC 0x1
838 };
839
840 struct drm_i915_gem_mmap_gtt {
841         /** Handle for the object being mapped. */
842         __u32 handle;
843         __u32 pad;
844         /**
845          * Fake offset to use for subsequent mmap call
846          *
847          * This is a fixed-size type for 32/64 compatibility.
848          */
849         __u64 offset;
850 };
851
852 struct drm_i915_gem_mmap_offset {
853         /** Handle for the object being mapped. */
854         __u32 handle;
855         __u32 pad;
856         /**
857          * Fake offset to use for subsequent mmap call
858          *
859          * This is a fixed-size type for 32/64 compatibility.
860          */
861         __u64 offset;
862
863         /**
864          * Flags for extended behaviour.
865          *
866          * It is mandatory that one of the MMAP_OFFSET types
867          * (GTT, WC, WB, UC, etc) should be included.
868          */
869         __u64 flags;
870 #define I915_MMAP_OFFSET_GTT 0
871 #define I915_MMAP_OFFSET_WC  1
872 #define I915_MMAP_OFFSET_WB  2
873 #define I915_MMAP_OFFSET_UC  3
874
875         /*
876          * Zero-terminated chain of extensions.
877          *
878          * No current extensions defined; mbz.
879          */
880         __u64 extensions;
881 };
882
883 /**
884  * struct drm_i915_gem_set_domain - Adjust the objects write or read domain, in
885  * preparation for accessing the pages via some CPU domain.
886  *
887  * Specifying a new write or read domain will flush the object out of the
888  * previous domain(if required), before then updating the objects domain
889  * tracking with the new domain.
890  *
891  * Note this might involve waiting for the object first if it is still active on
892  * the GPU.
893  *
894  * Supported values for @read_domains and @write_domain:
895  *
896  *      - I915_GEM_DOMAIN_WC: Uncached write-combined domain
897  *      - I915_GEM_DOMAIN_CPU: CPU cache domain
898  *      - I915_GEM_DOMAIN_GTT: Mappable aperture domain
899  *
900  * All other domains are rejected.
901  */
902 struct drm_i915_gem_set_domain {
903         /** @handle: Handle for the object. */
904         __u32 handle;
905
906         /** @read_domains: New read domains. */
907         __u32 read_domains;
908
909         /**
910          * @write_domain: New write domain.
911          *
912          * Note that having something in the write domain implies it's in the
913          * read domain, and only that read domain.
914          */
915         __u32 write_domain;
916 };
917
918 struct drm_i915_gem_sw_finish {
919         /** Handle for the object */
920         __u32 handle;
921 };
922
923 struct drm_i915_gem_relocation_entry {
924         /**
925          * Handle of the buffer being pointed to by this relocation entry.
926          *
927          * It's appealing to make this be an index into the mm_validate_entry
928          * list to refer to the buffer, but this allows the driver to create
929          * a relocation list for state buffers and not re-write it per
930          * exec using the buffer.
931          */
932         __u32 target_handle;
933
934         /**
935          * Value to be added to the offset of the target buffer to make up
936          * the relocation entry.
937          */
938         __u32 delta;
939
940         /** Offset in the buffer the relocation entry will be written into */
941         __u64 offset;
942
943         /**
944          * Offset value of the target buffer that the relocation entry was last
945          * written as.
946          *
947          * If the buffer has the same offset as last time, we can skip syncing
948          * and writing the relocation.  This value is written back out by
949          * the execbuffer ioctl when the relocation is written.
950          */
951         __u64 presumed_offset;
952
953         /**
954          * Target memory domains read by this operation.
955          */
956         __u32 read_domains;
957
958         /**
959          * Target memory domains written by this operation.
960          *
961          * Note that only one domain may be written by the whole
962          * execbuffer operation, so that where there are conflicts,
963          * the application will get -EINVAL back.
964          */
965         __u32 write_domain;
966 };
967
968 /** @{
969  * Intel memory domains
970  *
971  * Most of these just align with the various caches in
972  * the system and are used to flush and invalidate as
973  * objects end up cached in different domains.
974  */
975 /** CPU cache */
976 #define I915_GEM_DOMAIN_CPU             0x00000001
977 /** Render cache, used by 2D and 3D drawing */
978 #define I915_GEM_DOMAIN_RENDER          0x00000002
979 /** Sampler cache, used by texture engine */
980 #define I915_GEM_DOMAIN_SAMPLER         0x00000004
981 /** Command queue, used to load batch buffers */
982 #define I915_GEM_DOMAIN_COMMAND         0x00000008
983 /** Instruction cache, used by shader programs */
984 #define I915_GEM_DOMAIN_INSTRUCTION     0x00000010
985 /** Vertex address cache */
986 #define I915_GEM_DOMAIN_VERTEX          0x00000020
987 /** GTT domain - aperture and scanout */
988 #define I915_GEM_DOMAIN_GTT             0x00000040
989 /** WC domain - uncached access */
990 #define I915_GEM_DOMAIN_WC              0x00000080
991 /** @} */
992
993 struct drm_i915_gem_exec_object {
994         /**
995          * User's handle for a buffer to be bound into the GTT for this
996          * operation.
997          */
998         __u32 handle;
999
1000         /** Number of relocations to be performed on this buffer */
1001         __u32 relocation_count;
1002         /**
1003          * Pointer to array of struct drm_i915_gem_relocation_entry containing
1004          * the relocations to be performed in this buffer.
1005          */
1006         __u64 relocs_ptr;
1007
1008         /** Required alignment in graphics aperture */
1009         __u64 alignment;
1010
1011         /**
1012          * Returned value of the updated offset of the object, for future
1013          * presumed_offset writes.
1014          */
1015         __u64 offset;
1016 };
1017
1018 /* DRM_IOCTL_I915_GEM_EXECBUFFER was removed in Linux 5.13 */
1019 struct drm_i915_gem_execbuffer {
1020         /**
1021          * List of buffers to be validated with their relocations to be
1022          * performend on them.
1023          *
1024          * This is a pointer to an array of struct drm_i915_gem_validate_entry.
1025          *
1026          * These buffers must be listed in an order such that all relocations
1027          * a buffer is performing refer to buffers that have already appeared
1028          * in the validate list.
1029          */
1030         __u64 buffers_ptr;
1031         __u32 buffer_count;
1032
1033         /** Offset in the batchbuffer to start execution from. */
1034         __u32 batch_start_offset;
1035         /** Bytes used in batchbuffer from batch_start_offset */
1036         __u32 batch_len;
1037         __u32 DR1;
1038         __u32 DR4;
1039         __u32 num_cliprects;
1040         /** This is a struct drm_clip_rect *cliprects */
1041         __u64 cliprects_ptr;
1042 };
1043
1044 struct drm_i915_gem_exec_object2 {
1045         /**
1046          * User's handle for a buffer to be bound into the GTT for this
1047          * operation.
1048          */
1049         __u32 handle;
1050
1051         /** Number of relocations to be performed on this buffer */
1052         __u32 relocation_count;
1053         /**
1054          * Pointer to array of struct drm_i915_gem_relocation_entry containing
1055          * the relocations to be performed in this buffer.
1056          */
1057         __u64 relocs_ptr;
1058
1059         /** Required alignment in graphics aperture */
1060         __u64 alignment;
1061
1062         /**
1063          * When the EXEC_OBJECT_PINNED flag is specified this is populated by
1064          * the user with the GTT offset at which this object will be pinned.
1065          * When the I915_EXEC_NO_RELOC flag is specified this must contain the
1066          * presumed_offset of the object.
1067          * During execbuffer2 the kernel populates it with the value of the
1068          * current GTT offset of the object, for future presumed_offset writes.
1069          */
1070         __u64 offset;
1071
1072 #define EXEC_OBJECT_NEEDS_FENCE          (1<<0)
1073 #define EXEC_OBJECT_NEEDS_GTT            (1<<1)
1074 #define EXEC_OBJECT_WRITE                (1<<2)
1075 #define EXEC_OBJECT_SUPPORTS_48B_ADDRESS (1<<3)
1076 #define EXEC_OBJECT_PINNED               (1<<4)
1077 #define EXEC_OBJECT_PAD_TO_SIZE          (1<<5)
1078 /* The kernel implicitly tracks GPU activity on all GEM objects, and
1079  * synchronises operations with outstanding rendering. This includes
1080  * rendering on other devices if exported via dma-buf. However, sometimes
1081  * this tracking is too coarse and the user knows better. For example,
1082  * if the object is split into non-overlapping ranges shared between different
1083  * clients or engines (i.e. suballocating objects), the implicit tracking
1084  * by kernel assumes that each operation affects the whole object rather
1085  * than an individual range, causing needless synchronisation between clients.
1086  * The kernel will also forgo any CPU cache flushes prior to rendering from
1087  * the object as the client is expected to be also handling such domain
1088  * tracking.
1089  *
1090  * The kernel maintains the implicit tracking in order to manage resources
1091  * used by the GPU - this flag only disables the synchronisation prior to
1092  * rendering with this object in this execbuf.
1093  *
1094  * Opting out of implicit synhronisation requires the user to do its own
1095  * explicit tracking to avoid rendering corruption. See, for example,
1096  * I915_PARAM_HAS_EXEC_FENCE to order execbufs and execute them asynchronously.
1097  */
1098 #define EXEC_OBJECT_ASYNC               (1<<6)
1099 /* Request that the contents of this execobject be copied into the error
1100  * state upon a GPU hang involving this batch for post-mortem debugging.
1101  * These buffers are recorded in no particular order as "user" in
1102  * /sys/class/drm/cardN/error. Query I915_PARAM_HAS_EXEC_CAPTURE to see
1103  * if the kernel supports this flag.
1104  */
1105 #define EXEC_OBJECT_CAPTURE             (1<<7)
1106 /* All remaining bits are MBZ and RESERVED FOR FUTURE USE */
1107 #define __EXEC_OBJECT_UNKNOWN_FLAGS -(EXEC_OBJECT_CAPTURE<<1)
1108         __u64 flags;
1109
1110         union {
1111                 __u64 rsvd1;
1112                 __u64 pad_to_size;
1113         };
1114         __u64 rsvd2;
1115 };
1116
1117 struct drm_i915_gem_exec_fence {
1118         /**
1119          * User's handle for a drm_syncobj to wait on or signal.
1120          */
1121         __u32 handle;
1122
1123 #define I915_EXEC_FENCE_WAIT            (1<<0)
1124 #define I915_EXEC_FENCE_SIGNAL          (1<<1)
1125 #define __I915_EXEC_FENCE_UNKNOWN_FLAGS (-(I915_EXEC_FENCE_SIGNAL << 1))
1126         __u32 flags;
1127 };
1128
1129 /*
1130  * See drm_i915_gem_execbuffer_ext_timeline_fences.
1131  */
1132 #define DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES 0
1133
1134 /*
1135  * This structure describes an array of drm_syncobj and associated points for
1136  * timeline variants of drm_syncobj. It is invalid to append this structure to
1137  * the execbuf if I915_EXEC_FENCE_ARRAY is set.
1138  */
1139 struct drm_i915_gem_execbuffer_ext_timeline_fences {
1140         struct i915_user_extension base;
1141
1142         /**
1143          * Number of element in the handles_ptr & value_ptr arrays.
1144          */
1145         __u64 fence_count;
1146
1147         /**
1148          * Pointer to an array of struct drm_i915_gem_exec_fence of length
1149          * fence_count.
1150          */
1151         __u64 handles_ptr;
1152
1153         /**
1154          * Pointer to an array of u64 values of length fence_count. Values
1155          * must be 0 for a binary drm_syncobj. A Value of 0 for a timeline
1156          * drm_syncobj is invalid as it turns a drm_syncobj into a binary one.
1157          */
1158         __u64 values_ptr;
1159 };
1160
1161 struct drm_i915_gem_execbuffer2 {
1162         /**
1163          * List of gem_exec_object2 structs
1164          */
1165         __u64 buffers_ptr;
1166         __u32 buffer_count;
1167
1168         /** Offset in the batchbuffer to start execution from. */
1169         __u32 batch_start_offset;
1170         /** Bytes used in batchbuffer from batch_start_offset */
1171         __u32 batch_len;
1172         __u32 DR1;
1173         __u32 DR4;
1174         __u32 num_cliprects;
1175         /**
1176          * This is a struct drm_clip_rect *cliprects if I915_EXEC_FENCE_ARRAY
1177          * & I915_EXEC_USE_EXTENSIONS are not set.
1178          *
1179          * If I915_EXEC_FENCE_ARRAY is set, then this is a pointer to an array
1180          * of struct drm_i915_gem_exec_fence and num_cliprects is the length
1181          * of the array.
1182          *
1183          * If I915_EXEC_USE_EXTENSIONS is set, then this is a pointer to a
1184          * single struct i915_user_extension and num_cliprects is 0.
1185          */
1186         __u64 cliprects_ptr;
1187 #define I915_EXEC_RING_MASK              (0x3f)
1188 #define I915_EXEC_DEFAULT                (0<<0)
1189 #define I915_EXEC_RENDER                 (1<<0)
1190 #define I915_EXEC_BSD                    (2<<0)
1191 #define I915_EXEC_BLT                    (3<<0)
1192 #define I915_EXEC_VEBOX                  (4<<0)
1193
1194 /* Used for switching the constants addressing mode on gen4+ RENDER ring.
1195  * Gen6+ only supports relative addressing to dynamic state (default) and
1196  * absolute addressing.
1197  *
1198  * These flags are ignored for the BSD and BLT rings.
1199  */
1200 #define I915_EXEC_CONSTANTS_MASK        (3<<6)
1201 #define I915_EXEC_CONSTANTS_REL_GENERAL (0<<6) /* default */
1202 #define I915_EXEC_CONSTANTS_ABSOLUTE    (1<<6)
1203 #define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */
1204         __u64 flags;
1205         __u64 rsvd1; /* now used for context info */
1206         __u64 rsvd2;
1207 };
1208
1209 /** Resets the SO write offset registers for transform feedback on gen7. */
1210 #define I915_EXEC_GEN7_SOL_RESET        (1<<8)
1211
1212 /** Request a privileged ("secure") batch buffer. Note only available for
1213  * DRM_ROOT_ONLY | DRM_MASTER processes.
1214  */
1215 #define I915_EXEC_SECURE                (1<<9)
1216
1217 /** Inform the kernel that the batch is and will always be pinned. This
1218  * negates the requirement for a workaround to be performed to avoid
1219  * an incoherent CS (such as can be found on 830/845). If this flag is
1220  * not passed, the kernel will endeavour to make sure the batch is
1221  * coherent with the CS before execution. If this flag is passed,
1222  * userspace assumes the responsibility for ensuring the same.
1223  */
1224 #define I915_EXEC_IS_PINNED             (1<<10)
1225
1226 /** Provide a hint to the kernel that the command stream and auxiliary
1227  * state buffers already holds the correct presumed addresses and so the
1228  * relocation process may be skipped if no buffers need to be moved in
1229  * preparation for the execbuffer.
1230  */
1231 #define I915_EXEC_NO_RELOC              (1<<11)
1232
1233 /** Use the reloc.handle as an index into the exec object array rather
1234  * than as the per-file handle.
1235  */
1236 #define I915_EXEC_HANDLE_LUT            (1<<12)
1237
1238 /** Used for switching BSD rings on the platforms with two BSD rings */
1239 #define I915_EXEC_BSD_SHIFT      (13)
1240 #define I915_EXEC_BSD_MASK       (3 << I915_EXEC_BSD_SHIFT)
1241 /* default ping-pong mode */
1242 #define I915_EXEC_BSD_DEFAULT    (0 << I915_EXEC_BSD_SHIFT)
1243 #define I915_EXEC_BSD_RING1      (1 << I915_EXEC_BSD_SHIFT)
1244 #define I915_EXEC_BSD_RING2      (2 << I915_EXEC_BSD_SHIFT)
1245
1246 /** Tell the kernel that the batchbuffer is processed by
1247  *  the resource streamer.
1248  */
1249 #define I915_EXEC_RESOURCE_STREAMER     (1<<15)
1250
1251 /* Setting I915_EXEC_FENCE_IN implies that lower_32_bits(rsvd2) represent
1252  * a sync_file fd to wait upon (in a nonblocking manner) prior to executing
1253  * the batch.
1254  *
1255  * Returns -EINVAL if the sync_file fd cannot be found.
1256  */
1257 #define I915_EXEC_FENCE_IN              (1<<16)
1258
1259 /* Setting I915_EXEC_FENCE_OUT causes the ioctl to return a sync_file fd
1260  * in the upper_32_bits(rsvd2) upon success. Ownership of the fd is given
1261  * to the caller, and it should be close() after use. (The fd is a regular
1262  * file descriptor and will be cleaned up on process termination. It holds
1263  * a reference to the request, but nothing else.)
1264  *
1265  * The sync_file fd can be combined with other sync_file and passed either
1266  * to execbuf using I915_EXEC_FENCE_IN, to atomic KMS ioctls (so that a flip
1267  * will only occur after this request completes), or to other devices.
1268  *
1269  * Using I915_EXEC_FENCE_OUT requires use of
1270  * DRM_IOCTL_I915_GEM_EXECBUFFER2_WR ioctl so that the result is written
1271  * back to userspace. Failure to do so will cause the out-fence to always
1272  * be reported as zero, and the real fence fd to be leaked.
1273  */
1274 #define I915_EXEC_FENCE_OUT             (1<<17)
1275
1276 /*
1277  * Traditionally the execbuf ioctl has only considered the final element in
1278  * the execobject[] to be the executable batch. Often though, the client
1279  * will known the batch object prior to construction and being able to place
1280  * it into the execobject[] array first can simplify the relocation tracking.
1281  * Setting I915_EXEC_BATCH_FIRST tells execbuf to use element 0 of the
1282  * execobject[] as the * batch instead (the default is to use the last
1283  * element).
1284  */
1285 #define I915_EXEC_BATCH_FIRST           (1<<18)
1286
1287 /* Setting I915_FENCE_ARRAY implies that num_cliprects and cliprects_ptr
1288  * define an array of i915_gem_exec_fence structures which specify a set of
1289  * dma fences to wait upon or signal.
1290  */
1291 #define I915_EXEC_FENCE_ARRAY   (1<<19)
1292
1293 /*
1294  * Setting I915_EXEC_FENCE_SUBMIT implies that lower_32_bits(rsvd2) represent
1295  * a sync_file fd to wait upon (in a nonblocking manner) prior to executing
1296  * the batch.
1297  *
1298  * Returns -EINVAL if the sync_file fd cannot be found.
1299  */
1300 #define I915_EXEC_FENCE_SUBMIT          (1 << 20)
1301
1302 /*
1303  * Setting I915_EXEC_USE_EXTENSIONS implies that
1304  * drm_i915_gem_execbuffer2.cliprects_ptr is treated as a pointer to an linked
1305  * list of i915_user_extension. Each i915_user_extension node is the base of a
1306  * larger structure. The list of supported structures are listed in the
1307  * drm_i915_gem_execbuffer_ext enum.
1308  */
1309 #define I915_EXEC_USE_EXTENSIONS        (1 << 21)
1310
1311 #define __I915_EXEC_UNKNOWN_FLAGS (-(I915_EXEC_USE_EXTENSIONS << 1))
1312
1313 #define I915_EXEC_CONTEXT_ID_MASK       (0xffffffff)
1314 #define i915_execbuffer2_set_context_id(eb2, context) \
1315         (eb2).rsvd1 = context & I915_EXEC_CONTEXT_ID_MASK
1316 #define i915_execbuffer2_get_context_id(eb2) \
1317         ((eb2).rsvd1 & I915_EXEC_CONTEXT_ID_MASK)
1318
1319 struct drm_i915_gem_pin {
1320         /** Handle of the buffer to be pinned. */
1321         __u32 handle;
1322         __u32 pad;
1323
1324         /** alignment required within the aperture */
1325         __u64 alignment;
1326
1327         /** Returned GTT offset of the buffer. */
1328         __u64 offset;
1329 };
1330
1331 struct drm_i915_gem_unpin {
1332         /** Handle of the buffer to be unpinned. */
1333         __u32 handle;
1334         __u32 pad;
1335 };
1336
1337 struct drm_i915_gem_busy {
1338         /** Handle of the buffer to check for busy */
1339         __u32 handle;
1340
1341         /** Return busy status
1342          *
1343          * A return of 0 implies that the object is idle (after
1344          * having flushed any pending activity), and a non-zero return that
1345          * the object is still in-flight on the GPU. (The GPU has not yet
1346          * signaled completion for all pending requests that reference the
1347          * object.) An object is guaranteed to become idle eventually (so
1348          * long as no new GPU commands are executed upon it). Due to the
1349          * asynchronous nature of the hardware, an object reported
1350          * as busy may become idle before the ioctl is completed.
1351          *
1352          * Furthermore, if the object is busy, which engine is busy is only
1353          * provided as a guide and only indirectly by reporting its class
1354          * (there may be more than one engine in each class). There are race
1355          * conditions which prevent the report of which engines are busy from
1356          * being always accurate.  However, the converse is not true. If the
1357          * object is idle, the result of the ioctl, that all engines are idle,
1358          * is accurate.
1359          *
1360          * The returned dword is split into two fields to indicate both
1361          * the engine classess on which the object is being read, and the
1362          * engine class on which it is currently being written (if any).
1363          *
1364          * The low word (bits 0:15) indicate if the object is being written
1365          * to by any engine (there can only be one, as the GEM implicit
1366          * synchronisation rules force writes to be serialised). Only the
1367          * engine class (offset by 1, I915_ENGINE_CLASS_RENDER is reported as
1368          * 1 not 0 etc) for the last write is reported.
1369          *
1370          * The high word (bits 16:31) are a bitmask of which engines classes
1371          * are currently reading from the object. Multiple engines may be
1372          * reading from the object simultaneously.
1373          *
1374          * The value of each engine class is the same as specified in the
1375          * I915_CONTEXT_PARAM_ENGINES context parameter and via perf, i.e.
1376          * I915_ENGINE_CLASS_RENDER, I915_ENGINE_CLASS_COPY, etc.
1377          * Some hardware may have parallel execution engines, e.g. multiple
1378          * media engines, which are mapped to the same class identifier and so
1379          * are not separately reported for busyness.
1380          *
1381          * Caveat emptor:
1382          * Only the boolean result of this query is reliable; that is whether
1383          * the object is idle or busy. The report of which engines are busy
1384          * should be only used as a heuristic.
1385          */
1386         __u32 busy;
1387 };
1388
1389 /**
1390  * struct drm_i915_gem_caching - Set or get the caching for given object
1391  * handle.
1392  *
1393  * Allow userspace to control the GTT caching bits for a given object when the
1394  * object is later mapped through the ppGTT(or GGTT on older platforms lacking
1395  * ppGTT support, or if the object is used for scanout). Note that this might
1396  * require unbinding the object from the GTT first, if its current caching value
1397  * doesn't match.
1398  */
1399 struct drm_i915_gem_caching {
1400         /**
1401          * @handle: Handle of the buffer to set/get the caching level.
1402          */
1403         __u32 handle;
1404
1405         /**
1406          * @caching: The GTT caching level to apply or possible return value.
1407          *
1408          * The supported @caching values:
1409          *
1410          * I915_CACHING_NONE:
1411          *
1412          * GPU access is not coherent with CPU caches.  Default for machines
1413          * without an LLC. This means manual flushing might be needed, if we
1414          * want GPU access to be coherent.
1415          *
1416          * I915_CACHING_CACHED:
1417          *
1418          * GPU access is coherent with CPU caches and furthermore the data is
1419          * cached in last-level caches shared between CPU cores and the GPU GT.
1420          *
1421          * I915_CACHING_DISPLAY:
1422          *
1423          * Special GPU caching mode which is coherent with the scanout engines.
1424          * Transparently falls back to I915_CACHING_NONE on platforms where no
1425          * special cache mode (like write-through or gfdt flushing) is
1426          * available. The kernel automatically sets this mode when using a
1427          * buffer as a scanout target.  Userspace can manually set this mode to
1428          * avoid a costly stall and clflush in the hotpath of drawing the first
1429          * frame.
1430          */
1431 #define I915_CACHING_NONE               0
1432 #define I915_CACHING_CACHED             1
1433 #define I915_CACHING_DISPLAY            2
1434         __u32 caching;
1435 };
1436
1437 #define I915_TILING_NONE        0
1438 #define I915_TILING_X           1
1439 #define I915_TILING_Y           2
1440 #define I915_TILING_LAST        I915_TILING_Y
1441
1442 #define I915_BIT_6_SWIZZLE_NONE         0
1443 #define I915_BIT_6_SWIZZLE_9            1
1444 #define I915_BIT_6_SWIZZLE_9_10         2
1445 #define I915_BIT_6_SWIZZLE_9_11         3
1446 #define I915_BIT_6_SWIZZLE_9_10_11      4
1447 /* Not seen by userland */
1448 #define I915_BIT_6_SWIZZLE_UNKNOWN      5
1449 /* Seen by userland. */
1450 #define I915_BIT_6_SWIZZLE_9_17         6
1451 #define I915_BIT_6_SWIZZLE_9_10_17      7
1452
1453 struct drm_i915_gem_set_tiling {
1454         /** Handle of the buffer to have its tiling state updated */
1455         __u32 handle;
1456
1457         /**
1458          * Tiling mode for the object (I915_TILING_NONE, I915_TILING_X,
1459          * I915_TILING_Y).
1460          *
1461          * This value is to be set on request, and will be updated by the
1462          * kernel on successful return with the actual chosen tiling layout.
1463          *
1464          * The tiling mode may be demoted to I915_TILING_NONE when the system
1465          * has bit 6 swizzling that can't be managed correctly by GEM.
1466          *
1467          * Buffer contents become undefined when changing tiling_mode.
1468          */
1469         __u32 tiling_mode;
1470
1471         /**
1472          * Stride in bytes for the object when in I915_TILING_X or
1473          * I915_TILING_Y.
1474          */
1475         __u32 stride;
1476
1477         /**
1478          * Returned address bit 6 swizzling required for CPU access through
1479          * mmap mapping.
1480          */
1481         __u32 swizzle_mode;
1482 };
1483
1484 struct drm_i915_gem_get_tiling {
1485         /** Handle of the buffer to get tiling state for. */
1486         __u32 handle;
1487
1488         /**
1489          * Current tiling mode for the object (I915_TILING_NONE, I915_TILING_X,
1490          * I915_TILING_Y).
1491          */
1492         __u32 tiling_mode;
1493
1494         /**
1495          * Returned address bit 6 swizzling required for CPU access through
1496          * mmap mapping.
1497          */
1498         __u32 swizzle_mode;
1499
1500         /**
1501          * Returned address bit 6 swizzling required for CPU access through
1502          * mmap mapping whilst bound.
1503          */
1504         __u32 phys_swizzle_mode;
1505 };
1506
1507 struct drm_i915_gem_get_aperture {
1508         /** Total size of the aperture used by i915_gem_execbuffer, in bytes */
1509         __u64 aper_size;
1510
1511         /**
1512          * Available space in the aperture used by i915_gem_execbuffer, in
1513          * bytes
1514          */
1515         __u64 aper_available_size;
1516 };
1517
1518 struct drm_i915_get_pipe_from_crtc_id {
1519         /** ID of CRTC being requested **/
1520         __u32 crtc_id;
1521
1522         /** pipe of requested CRTC **/
1523         __u32 pipe;
1524 };
1525
1526 #define I915_MADV_WILLNEED 0
1527 #define I915_MADV_DONTNEED 1
1528 #define __I915_MADV_PURGED 2 /* internal state */
1529
1530 struct drm_i915_gem_madvise {
1531         /** Handle of the buffer to change the backing store advice */
1532         __u32 handle;
1533
1534         /* Advice: either the buffer will be needed again in the near future,
1535          *         or wont be and could be discarded under memory pressure.
1536          */
1537         __u32 madv;
1538
1539         /** Whether the backing store still exists. */
1540         __u32 retained;
1541 };
1542
1543 /* flags */
1544 #define I915_OVERLAY_TYPE_MASK          0xff
1545 #define I915_OVERLAY_YUV_PLANAR         0x01
1546 #define I915_OVERLAY_YUV_PACKED         0x02
1547 #define I915_OVERLAY_RGB                0x03
1548
1549 #define I915_OVERLAY_DEPTH_MASK         0xff00
1550 #define I915_OVERLAY_RGB24              0x1000
1551 #define I915_OVERLAY_RGB16              0x2000
1552 #define I915_OVERLAY_RGB15              0x3000
1553 #define I915_OVERLAY_YUV422             0x0100
1554 #define I915_OVERLAY_YUV411             0x0200
1555 #define I915_OVERLAY_YUV420             0x0300
1556 #define I915_OVERLAY_YUV410             0x0400
1557
1558 #define I915_OVERLAY_SWAP_MASK          0xff0000
1559 #define I915_OVERLAY_NO_SWAP            0x000000
1560 #define I915_OVERLAY_UV_SWAP            0x010000
1561 #define I915_OVERLAY_Y_SWAP             0x020000
1562 #define I915_OVERLAY_Y_AND_UV_SWAP      0x030000
1563
1564 #define I915_OVERLAY_FLAGS_MASK         0xff000000
1565 #define I915_OVERLAY_ENABLE             0x01000000
1566
1567 struct drm_intel_overlay_put_image {
1568         /* various flags and src format description */
1569         __u32 flags;
1570         /* source picture description */
1571         __u32 bo_handle;
1572         /* stride values and offsets are in bytes, buffer relative */
1573         __u16 stride_Y; /* stride for packed formats */
1574         __u16 stride_UV;
1575         __u32 offset_Y; /* offset for packet formats */
1576         __u32 offset_U;
1577         __u32 offset_V;
1578         /* in pixels */
1579         __u16 src_width;
1580         __u16 src_height;
1581         /* to compensate the scaling factors for partially covered surfaces */
1582         __u16 src_scan_width;
1583         __u16 src_scan_height;
1584         /* output crtc description */
1585         __u32 crtc_id;
1586         __u16 dst_x;
1587         __u16 dst_y;
1588         __u16 dst_width;
1589         __u16 dst_height;
1590 };
1591
1592 /* flags */
1593 #define I915_OVERLAY_UPDATE_ATTRS       (1<<0)
1594 #define I915_OVERLAY_UPDATE_GAMMA       (1<<1)
1595 #define I915_OVERLAY_DISABLE_DEST_COLORKEY      (1<<2)
1596 struct drm_intel_overlay_attrs {
1597         __u32 flags;
1598         __u32 color_key;
1599         __s32 brightness;
1600         __u32 contrast;
1601         __u32 saturation;
1602         __u32 gamma0;
1603         __u32 gamma1;
1604         __u32 gamma2;
1605         __u32 gamma3;
1606         __u32 gamma4;
1607         __u32 gamma5;
1608 };
1609
1610 /*
1611  * Intel sprite handling
1612  *
1613  * Color keying works with a min/mask/max tuple.  Both source and destination
1614  * color keying is allowed.
1615  *
1616  * Source keying:
1617  * Sprite pixels within the min & max values, masked against the color channels
1618  * specified in the mask field, will be transparent.  All other pixels will
1619  * be displayed on top of the primary plane.  For RGB surfaces, only the min
1620  * and mask fields will be used; ranged compares are not allowed.
1621  *
1622  * Destination keying:
1623  * Primary plane pixels that match the min value, masked against the color
1624  * channels specified in the mask field, will be replaced by corresponding
1625  * pixels from the sprite plane.
1626  *
1627  * Note that source & destination keying are exclusive; only one can be
1628  * active on a given plane.
1629  */
1630
1631 #define I915_SET_COLORKEY_NONE          (1<<0) /* Deprecated. Instead set
1632                                                 * flags==0 to disable colorkeying.
1633                                                 */
1634 #define I915_SET_COLORKEY_DESTINATION   (1<<1)
1635 #define I915_SET_COLORKEY_SOURCE        (1<<2)
1636 struct drm_intel_sprite_colorkey {
1637         __u32 plane_id;
1638         __u32 min_value;
1639         __u32 channel_mask;
1640         __u32 max_value;
1641         __u32 flags;
1642 };
1643
1644 struct drm_i915_gem_wait {
1645         /** Handle of BO we shall wait on */
1646         __u32 bo_handle;
1647         __u32 flags;
1648         /** Number of nanoseconds to wait, Returns time remaining. */
1649         __s64 timeout_ns;
1650 };
1651
1652 struct drm_i915_gem_context_create {
1653         __u32 ctx_id; /* output: id of new context*/
1654         __u32 pad;
1655 };
1656
1657 struct drm_i915_gem_context_create_ext {
1658         __u32 ctx_id; /* output: id of new context*/
1659         __u32 flags;
1660 #define I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS        (1u << 0)
1661 #define I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE       (1u << 1)
1662 #define I915_CONTEXT_CREATE_FLAGS_UNKNOWN \
1663         (-(I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE << 1))
1664         __u64 extensions;
1665 };
1666
1667 struct drm_i915_gem_context_param {
1668         __u32 ctx_id;
1669         __u32 size;
1670         __u64 param;
1671 #define I915_CONTEXT_PARAM_BAN_PERIOD   0x1
1672 /* I915_CONTEXT_PARAM_NO_ZEROMAP has been removed.  On the off chance
1673  * someone somewhere has attempted to use it, never re-use this context
1674  * param number.
1675  */
1676 #define I915_CONTEXT_PARAM_NO_ZEROMAP   0x2
1677 #define I915_CONTEXT_PARAM_GTT_SIZE     0x3
1678 #define I915_CONTEXT_PARAM_NO_ERROR_CAPTURE     0x4
1679 #define I915_CONTEXT_PARAM_BANNABLE     0x5
1680 #define I915_CONTEXT_PARAM_PRIORITY     0x6
1681 #define   I915_CONTEXT_MAX_USER_PRIORITY        1023 /* inclusive */
1682 #define   I915_CONTEXT_DEFAULT_PRIORITY         0
1683 #define   I915_CONTEXT_MIN_USER_PRIORITY        -1023 /* inclusive */
1684         /*
1685          * When using the following param, value should be a pointer to
1686          * drm_i915_gem_context_param_sseu.
1687          */
1688 #define I915_CONTEXT_PARAM_SSEU         0x7
1689
1690 /*
1691  * Not all clients may want to attempt automatic recover of a context after
1692  * a hang (for example, some clients may only submit very small incremental
1693  * batches relying on known logical state of previous batches which will never
1694  * recover correctly and each attempt will hang), and so would prefer that
1695  * the context is forever banned instead.
1696  *
1697  * If set to false (0), after a reset, subsequent (and in flight) rendering
1698  * from this context is discarded, and the client will need to create a new
1699  * context to use instead.
1700  *
1701  * If set to true (1), the kernel will automatically attempt to recover the
1702  * context by skipping the hanging batch and executing the next batch starting
1703  * from the default context state (discarding the incomplete logical context
1704  * state lost due to the reset).
1705  *
1706  * On creation, all new contexts are marked as recoverable.
1707  */
1708 #define I915_CONTEXT_PARAM_RECOVERABLE  0x8
1709
1710         /*
1711          * The id of the associated virtual memory address space (ppGTT) of
1712          * this context. Can be retrieved and passed to another context
1713          * (on the same fd) for both to use the same ppGTT and so share
1714          * address layouts, and avoid reloading the page tables on context
1715          * switches between themselves.
1716          *
1717          * See DRM_I915_GEM_VM_CREATE and DRM_I915_GEM_VM_DESTROY.
1718          */
1719 #define I915_CONTEXT_PARAM_VM           0x9
1720
1721 /*
1722  * I915_CONTEXT_PARAM_ENGINES:
1723  *
1724  * Bind this context to operate on this subset of available engines. Henceforth,
1725  * the I915_EXEC_RING selector for DRM_IOCTL_I915_GEM_EXECBUFFER2 operates as
1726  * an index into this array of engines; I915_EXEC_DEFAULT selecting engine[0]
1727  * and upwards. Slots 0...N are filled in using the specified (class, instance).
1728  * Use
1729  *      engine_class: I915_ENGINE_CLASS_INVALID,
1730  *      engine_instance: I915_ENGINE_CLASS_INVALID_NONE
1731  * to specify a gap in the array that can be filled in later, e.g. by a
1732  * virtual engine used for load balancing.
1733  *
1734  * Setting the number of engines bound to the context to 0, by passing a zero
1735  * sized argument, will revert back to default settings.
1736  *
1737  * See struct i915_context_param_engines.
1738  *
1739  * Extensions:
1740  *   i915_context_engines_load_balance (I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE)
1741  *   i915_context_engines_bond (I915_CONTEXT_ENGINES_EXT_BOND)
1742  */
1743 #define I915_CONTEXT_PARAM_ENGINES      0xa
1744
1745 /*
1746  * I915_CONTEXT_PARAM_PERSISTENCE:
1747  *
1748  * Allow the context and active rendering to survive the process until
1749  * completion. Persistence allows fire-and-forget clients to queue up a
1750  * bunch of work, hand the output over to a display server and then quit.
1751  * If the context is marked as not persistent, upon closing (either via
1752  * an explicit DRM_I915_GEM_CONTEXT_DESTROY or implicitly from file closure
1753  * or process termination), the context and any outstanding requests will be
1754  * cancelled (and exported fences for cancelled requests marked as -EIO).
1755  *
1756  * By default, new contexts allow persistence.
1757  */
1758 #define I915_CONTEXT_PARAM_PERSISTENCE  0xb
1759
1760 /* This API has been removed.  On the off chance someone somewhere has
1761  * attempted to use it, never re-use this context param number.
1762  */
1763 #define I915_CONTEXT_PARAM_RINGSIZE     0xc
1764 /* Must be kept compact -- no holes and well documented */
1765
1766         __u64 value;
1767 };
1768
1769 /*
1770  * Context SSEU programming
1771  *
1772  * It may be necessary for either functional or performance reason to configure
1773  * a context to run with a reduced number of SSEU (where SSEU stands for Slice/
1774  * Sub-slice/EU).
1775  *
1776  * This is done by configuring SSEU configuration using the below
1777  * @struct drm_i915_gem_context_param_sseu for every supported engine which
1778  * userspace intends to use.
1779  *
1780  * Not all GPUs or engines support this functionality in which case an error
1781  * code -ENODEV will be returned.
1782  *
1783  * Also, flexibility of possible SSEU configuration permutations varies between
1784  * GPU generations and software imposed limitations. Requesting such a
1785  * combination will return an error code of -EINVAL.
1786  *
1787  * NOTE: When perf/OA is active the context's SSEU configuration is ignored in
1788  * favour of a single global setting.
1789  */
1790 struct drm_i915_gem_context_param_sseu {
1791         /*
1792          * Engine class & instance to be configured or queried.
1793          */
1794         struct i915_engine_class_instance engine;
1795
1796         /*
1797          * Unknown flags must be cleared to zero.
1798          */
1799         __u32 flags;
1800 #define I915_CONTEXT_SSEU_FLAG_ENGINE_INDEX (1u << 0)
1801
1802         /*
1803          * Mask of slices to enable for the context. Valid values are a subset
1804          * of the bitmask value returned for I915_PARAM_SLICE_MASK.
1805          */
1806         __u64 slice_mask;
1807
1808         /*
1809          * Mask of subslices to enable for the context. Valid values are a
1810          * subset of the bitmask value return by I915_PARAM_SUBSLICE_MASK.
1811          */
1812         __u64 subslice_mask;
1813
1814         /*
1815          * Minimum/Maximum number of EUs to enable per subslice for the
1816          * context. min_eus_per_subslice must be inferior or equal to
1817          * max_eus_per_subslice.
1818          */
1819         __u16 min_eus_per_subslice;
1820         __u16 max_eus_per_subslice;
1821
1822         /*
1823          * Unused for now. Must be cleared to zero.
1824          */
1825         __u32 rsvd;
1826 };
1827
1828 /**
1829  * DOC: Virtual Engine uAPI
1830  *
1831  * Virtual engine is a concept where userspace is able to configure a set of
1832  * physical engines, submit a batch buffer, and let the driver execute it on any
1833  * engine from the set as it sees fit.
1834  *
1835  * This is primarily useful on parts which have multiple instances of a same
1836  * class engine, like for example GT3+ Skylake parts with their two VCS engines.
1837  *
1838  * For instance userspace can enumerate all engines of a certain class using the
1839  * previously described `Engine Discovery uAPI`_. After that userspace can
1840  * create a GEM context with a placeholder slot for the virtual engine (using
1841  * `I915_ENGINE_CLASS_INVALID` and `I915_ENGINE_CLASS_INVALID_NONE` for class
1842  * and instance respectively) and finally using the
1843  * `I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE` extension place a virtual engine in
1844  * the same reserved slot.
1845  *
1846  * Example of creating a virtual engine and submitting a batch buffer to it:
1847  *
1848  * .. code-block:: C
1849  *
1850  *      I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(virtual, 2) = {
1851  *              .base.name = I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE,
1852  *              .engine_index = 0, // Place this virtual engine into engine map slot 0
1853  *              .num_siblings = 2,
1854  *              .engines = { { I915_ENGINE_CLASS_VIDEO, 0 },
1855  *                           { I915_ENGINE_CLASS_VIDEO, 1 }, },
1856  *      };
1857  *      I915_DEFINE_CONTEXT_PARAM_ENGINES(engines, 1) = {
1858  *              .engines = { { I915_ENGINE_CLASS_INVALID,
1859  *                             I915_ENGINE_CLASS_INVALID_NONE } },
1860  *              .extensions = to_user_pointer(&virtual), // Chains after load_balance extension
1861  *      };
1862  *      struct drm_i915_gem_context_create_ext_setparam p_engines = {
1863  *              .base = {
1864  *                      .name = I915_CONTEXT_CREATE_EXT_SETPARAM,
1865  *              },
1866  *              .param = {
1867  *                      .param = I915_CONTEXT_PARAM_ENGINES,
1868  *                      .value = to_user_pointer(&engines),
1869  *                      .size = sizeof(engines),
1870  *              },
1871  *      };
1872  *      struct drm_i915_gem_context_create_ext create = {
1873  *              .flags = I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS,
1874  *              .extensions = to_user_pointer(&p_engines);
1875  *      };
1876  *
1877  *      ctx_id = gem_context_create_ext(drm_fd, &create);
1878  *
1879  *      // Now we have created a GEM context with its engine map containing a
1880  *      // single virtual engine. Submissions to this slot can go either to
1881  *      // vcs0 or vcs1, depending on the load balancing algorithm used inside
1882  *      // the driver. The load balancing is dynamic from one batch buffer to
1883  *      // another and transparent to userspace.
1884  *
1885  *      ...
1886  *      execbuf.rsvd1 = ctx_id;
1887  *      execbuf.flags = 0; // Submits to index 0 which is the virtual engine
1888  *      gem_execbuf(drm_fd, &execbuf);
1889  */
1890
1891 /*
1892  * i915_context_engines_load_balance:
1893  *
1894  * Enable load balancing across this set of engines.
1895  *
1896  * Into the I915_EXEC_DEFAULT slot [0], a virtual engine is created that when
1897  * used will proxy the execbuffer request onto one of the set of engines
1898  * in such a way as to distribute the load evenly across the set.
1899  *
1900  * The set of engines must be compatible (e.g. the same HW class) as they
1901  * will share the same logical GPU context and ring.
1902  *
1903  * To intermix rendering with the virtual engine and direct rendering onto
1904  * the backing engines (bypassing the load balancing proxy), the context must
1905  * be defined to use a single timeline for all engines.
1906  */
1907 struct i915_context_engines_load_balance {
1908         struct i915_user_extension base;
1909
1910         __u16 engine_index;
1911         __u16 num_siblings;
1912         __u32 flags; /* all undefined flags must be zero */
1913
1914         __u64 mbz64; /* reserved for future use; must be zero */
1915
1916         struct i915_engine_class_instance engines[0];
1917 } __attribute__((packed));
1918
1919 #define I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(name__, N__) struct { \
1920         struct i915_user_extension base; \
1921         __u16 engine_index; \
1922         __u16 num_siblings; \
1923         __u32 flags; \
1924         __u64 mbz64; \
1925         struct i915_engine_class_instance engines[N__]; \
1926 } __attribute__((packed)) name__
1927
1928 /*
1929  * i915_context_engines_bond:
1930  *
1931  * Constructed bonded pairs for execution within a virtual engine.
1932  *
1933  * All engines are equal, but some are more equal than others. Given
1934  * the distribution of resources in the HW, it may be preferable to run
1935  * a request on a given subset of engines in parallel to a request on a
1936  * specific engine. We enable this selection of engines within a virtual
1937  * engine by specifying bonding pairs, for any given master engine we will
1938  * only execute on one of the corresponding siblings within the virtual engine.
1939  *
1940  * To execute a request in parallel on the master engine and a sibling requires
1941  * coordination with a I915_EXEC_FENCE_SUBMIT.
1942  */
1943 struct i915_context_engines_bond {
1944         struct i915_user_extension base;
1945
1946         struct i915_engine_class_instance master;
1947
1948         __u16 virtual_index; /* index of virtual engine in ctx->engines[] */
1949         __u16 num_bonds;
1950
1951         __u64 flags; /* all undefined flags must be zero */
1952         __u64 mbz64[4]; /* reserved for future use; must be zero */
1953
1954         struct i915_engine_class_instance engines[0];
1955 } __attribute__((packed));
1956
1957 #define I915_DEFINE_CONTEXT_ENGINES_BOND(name__, N__) struct { \
1958         struct i915_user_extension base; \
1959         struct i915_engine_class_instance master; \
1960         __u16 virtual_index; \
1961         __u16 num_bonds; \
1962         __u64 flags; \
1963         __u64 mbz64[4]; \
1964         struct i915_engine_class_instance engines[N__]; \
1965 } __attribute__((packed)) name__
1966
1967 /**
1968  * DOC: Context Engine Map uAPI
1969  *
1970  * Context engine map is a new way of addressing engines when submitting batch-
1971  * buffers, replacing the existing way of using identifiers like `I915_EXEC_BLT`
1972  * inside the flags field of `struct drm_i915_gem_execbuffer2`.
1973  *
1974  * To use it created GEM contexts need to be configured with a list of engines
1975  * the user is intending to submit to. This is accomplished using the
1976  * `I915_CONTEXT_PARAM_ENGINES` parameter and `struct
1977  * i915_context_param_engines`.
1978  *
1979  * For such contexts the `I915_EXEC_RING_MASK` field becomes an index into the
1980  * configured map.
1981  *
1982  * Example of creating such context and submitting against it:
1983  *
1984  * .. code-block:: C
1985  *
1986  *      I915_DEFINE_CONTEXT_PARAM_ENGINES(engines, 2) = {
1987  *              .engines = { { I915_ENGINE_CLASS_RENDER, 0 },
1988  *                           { I915_ENGINE_CLASS_COPY, 0 } }
1989  *      };
1990  *      struct drm_i915_gem_context_create_ext_setparam p_engines = {
1991  *              .base = {
1992  *                      .name = I915_CONTEXT_CREATE_EXT_SETPARAM,
1993  *              },
1994  *              .param = {
1995  *                      .param = I915_CONTEXT_PARAM_ENGINES,
1996  *                      .value = to_user_pointer(&engines),
1997  *                      .size = sizeof(engines),
1998  *              },
1999  *      };
2000  *      struct drm_i915_gem_context_create_ext create = {
2001  *              .flags = I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS,
2002  *              .extensions = to_user_pointer(&p_engines);
2003  *      };
2004  *
2005  *      ctx_id = gem_context_create_ext(drm_fd, &create);
2006  *
2007  *      // We have now created a GEM context with two engines in the map:
2008  *      // Index 0 points to rcs0 while index 1 points to bcs0. Other engines
2009  *      // will not be accessible from this context.
2010  *
2011  *      ...
2012  *      execbuf.rsvd1 = ctx_id;
2013  *      execbuf.flags = 0; // Submits to index 0, which is rcs0 for this context
2014  *      gem_execbuf(drm_fd, &execbuf);
2015  *
2016  *      ...
2017  *      execbuf.rsvd1 = ctx_id;
2018  *      execbuf.flags = 1; // Submits to index 0, which is bcs0 for this context
2019  *      gem_execbuf(drm_fd, &execbuf);
2020  */
2021
2022 struct i915_context_param_engines {
2023         __u64 extensions; /* linked chain of extension blocks, 0 terminates */
2024 #define I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE 0 /* see i915_context_engines_load_balance */
2025 #define I915_CONTEXT_ENGINES_EXT_BOND 1 /* see i915_context_engines_bond */
2026         struct i915_engine_class_instance engines[0];
2027 } __attribute__((packed));
2028
2029 #define I915_DEFINE_CONTEXT_PARAM_ENGINES(name__, N__) struct { \
2030         __u64 extensions; \
2031         struct i915_engine_class_instance engines[N__]; \
2032 } __attribute__((packed)) name__
2033
2034 struct drm_i915_gem_context_create_ext_setparam {
2035 #define I915_CONTEXT_CREATE_EXT_SETPARAM 0
2036         struct i915_user_extension base;
2037         struct drm_i915_gem_context_param param;
2038 };
2039
2040 /* This API has been removed.  On the off chance someone somewhere has
2041  * attempted to use it, never re-use this extension number.
2042  */
2043 #define I915_CONTEXT_CREATE_EXT_CLONE 1
2044
2045 struct drm_i915_gem_context_destroy {
2046         __u32 ctx_id;
2047         __u32 pad;
2048 };
2049
2050 /*
2051  * DRM_I915_GEM_VM_CREATE -
2052  *
2053  * Create a new virtual memory address space (ppGTT) for use within a context
2054  * on the same file. Extensions can be provided to configure exactly how the
2055  * address space is setup upon creation.
2056  *
2057  * The id of new VM (bound to the fd) for use with I915_CONTEXT_PARAM_VM is
2058  * returned in the outparam @id.
2059  *
2060  * No flags are defined, with all bits reserved and must be zero.
2061  *
2062  * An extension chain maybe provided, starting with @extensions, and terminated
2063  * by the @next_extension being 0. Currently, no extensions are defined.
2064  *
2065  * DRM_I915_GEM_VM_DESTROY -
2066  *
2067  * Destroys a previously created VM id, specified in @id.
2068  *
2069  * No extensions or flags are allowed currently, and so must be zero.
2070  */
2071 struct drm_i915_gem_vm_control {
2072         __u64 extensions;
2073         __u32 flags;
2074         __u32 vm_id;
2075 };
2076
2077 struct drm_i915_reg_read {
2078         /*
2079          * Register offset.
2080          * For 64bit wide registers where the upper 32bits don't immediately
2081          * follow the lower 32bits, the offset of the lower 32bits must
2082          * be specified
2083          */
2084         __u64 offset;
2085 #define I915_REG_READ_8B_WA (1ul << 0)
2086
2087         __u64 val; /* Return value */
2088 };
2089
2090 /* Known registers:
2091  *
2092  * Render engine timestamp - 0x2358 + 64bit - gen7+
2093  * - Note this register returns an invalid value if using the default
2094  *   single instruction 8byte read, in order to workaround that pass
2095  *   flag I915_REG_READ_8B_WA in offset field.
2096  *
2097  */
2098
2099 struct drm_i915_reset_stats {
2100         __u32 ctx_id;
2101         __u32 flags;
2102
2103         /* All resets since boot/module reload, for all contexts */
2104         __u32 reset_count;
2105
2106         /* Number of batches lost when active in GPU, for this context */
2107         __u32 batch_active;
2108
2109         /* Number of batches lost pending for execution, for this context */
2110         __u32 batch_pending;
2111
2112         __u32 pad;
2113 };
2114
2115 struct drm_i915_gem_userptr {
2116         __u64 user_ptr;
2117         __u64 user_size;
2118         __u32 flags;
2119 #define I915_USERPTR_READ_ONLY 0x1
2120 #define I915_USERPTR_UNSYNCHRONIZED 0x80000000
2121         /**
2122          * Returned handle for the object.
2123          *
2124          * Object handles are nonzero.
2125          */
2126         __u32 handle;
2127 };
2128
2129 enum drm_i915_oa_format {
2130         I915_OA_FORMAT_A13 = 1,     /* HSW only */
2131         I915_OA_FORMAT_A29,         /* HSW only */
2132         I915_OA_FORMAT_A13_B8_C8,   /* HSW only */
2133         I915_OA_FORMAT_B4_C8,       /* HSW only */
2134         I915_OA_FORMAT_A45_B8_C8,   /* HSW only */
2135         I915_OA_FORMAT_B4_C8_A16,   /* HSW only */
2136         I915_OA_FORMAT_C4_B8,       /* HSW+ */
2137
2138         /* Gen8+ */
2139         I915_OA_FORMAT_A12,
2140         I915_OA_FORMAT_A12_B8_C8,
2141         I915_OA_FORMAT_A32u40_A4u32_B8_C8,
2142
2143         I915_OA_FORMAT_MAX          /* non-ABI */
2144 };
2145
2146 enum drm_i915_perf_property_id {
2147         /**
2148          * Open the stream for a specific context handle (as used with
2149          * execbuffer2). A stream opened for a specific context this way
2150          * won't typically require root privileges.
2151          *
2152          * This property is available in perf revision 1.
2153          */
2154         DRM_I915_PERF_PROP_CTX_HANDLE = 1,
2155
2156         /**
2157          * A value of 1 requests the inclusion of raw OA unit reports as
2158          * part of stream samples.
2159          *
2160          * This property is available in perf revision 1.
2161          */
2162         DRM_I915_PERF_PROP_SAMPLE_OA,
2163
2164         /**
2165          * The value specifies which set of OA unit metrics should be
2166          * configured, defining the contents of any OA unit reports.
2167          *
2168          * This property is available in perf revision 1.
2169          */
2170         DRM_I915_PERF_PROP_OA_METRICS_SET,
2171
2172         /**
2173          * The value specifies the size and layout of OA unit reports.
2174          *
2175          * This property is available in perf revision 1.
2176          */
2177         DRM_I915_PERF_PROP_OA_FORMAT,
2178
2179         /**
2180          * Specifying this property implicitly requests periodic OA unit
2181          * sampling and (at least on Haswell) the sampling frequency is derived
2182          * from this exponent as follows:
2183          *
2184          *   80ns * 2^(period_exponent + 1)
2185          *
2186          * This property is available in perf revision 1.
2187          */
2188         DRM_I915_PERF_PROP_OA_EXPONENT,
2189
2190         /**
2191          * Specifying this property is only valid when specify a context to
2192          * filter with DRM_I915_PERF_PROP_CTX_HANDLE. Specifying this property
2193          * will hold preemption of the particular context we want to gather
2194          * performance data about. The execbuf2 submissions must include a
2195          * drm_i915_gem_execbuffer_ext_perf parameter for this to apply.
2196          *
2197          * This property is available in perf revision 3.
2198          */
2199         DRM_I915_PERF_PROP_HOLD_PREEMPTION,
2200
2201         /**
2202          * Specifying this pins all contexts to the specified SSEU power
2203          * configuration for the duration of the recording.
2204          *
2205          * This parameter's value is a pointer to a struct
2206          * drm_i915_gem_context_param_sseu.
2207          *
2208          * This property is available in perf revision 4.
2209          */
2210         DRM_I915_PERF_PROP_GLOBAL_SSEU,
2211
2212         /**
2213          * This optional parameter specifies the timer interval in nanoseconds
2214          * at which the i915 driver will check the OA buffer for available data.
2215          * Minimum allowed value is 100 microseconds. A default value is used by
2216          * the driver if this parameter is not specified. Note that larger timer
2217          * values will reduce cpu consumption during OA perf captures. However,
2218          * excessively large values would potentially result in OA buffer
2219          * overwrites as captures reach end of the OA buffer.
2220          *
2221          * This property is available in perf revision 5.
2222          */
2223         DRM_I915_PERF_PROP_POLL_OA_PERIOD,
2224
2225         DRM_I915_PERF_PROP_MAX /* non-ABI */
2226 };
2227
2228 struct drm_i915_perf_open_param {
2229         __u32 flags;
2230 #define I915_PERF_FLAG_FD_CLOEXEC       (1<<0)
2231 #define I915_PERF_FLAG_FD_NONBLOCK      (1<<1)
2232 #define I915_PERF_FLAG_DISABLED         (1<<2)
2233
2234         /** The number of u64 (id, value) pairs */
2235         __u32 num_properties;
2236
2237         /**
2238          * Pointer to array of u64 (id, value) pairs configuring the stream
2239          * to open.
2240          */
2241         __u64 properties_ptr;
2242 };
2243
2244 /*
2245  * Enable data capture for a stream that was either opened in a disabled state
2246  * via I915_PERF_FLAG_DISABLED or was later disabled via
2247  * I915_PERF_IOCTL_DISABLE.
2248  *
2249  * It is intended to be cheaper to disable and enable a stream than it may be
2250  * to close and re-open a stream with the same configuration.
2251  *
2252  * It's undefined whether any pending data for the stream will be lost.
2253  *
2254  * This ioctl is available in perf revision 1.
2255  */
2256 #define I915_PERF_IOCTL_ENABLE  _IO('i', 0x0)
2257
2258 /*
2259  * Disable data capture for a stream.
2260  *
2261  * It is an error to try and read a stream that is disabled.
2262  *
2263  * This ioctl is available in perf revision 1.
2264  */
2265 #define I915_PERF_IOCTL_DISABLE _IO('i', 0x1)
2266
2267 /*
2268  * Change metrics_set captured by a stream.
2269  *
2270  * If the stream is bound to a specific context, the configuration change
2271  * will performed inline with that context such that it takes effect before
2272  * the next execbuf submission.
2273  *
2274  * Returns the previously bound metrics set id, or a negative error code.
2275  *
2276  * This ioctl is available in perf revision 2.
2277  */
2278 #define I915_PERF_IOCTL_CONFIG  _IO('i', 0x2)
2279
2280 /*
2281  * Common to all i915 perf records
2282  */
2283 struct drm_i915_perf_record_header {
2284         __u32 type;
2285         __u16 pad;
2286         __u16 size;
2287 };
2288
2289 enum drm_i915_perf_record_type {
2290
2291         /**
2292          * Samples are the work horse record type whose contents are extensible
2293          * and defined when opening an i915 perf stream based on the given
2294          * properties.
2295          *
2296          * Boolean properties following the naming convention
2297          * DRM_I915_PERF_SAMPLE_xyz_PROP request the inclusion of 'xyz' data in
2298          * every sample.
2299          *
2300          * The order of these sample properties given by userspace has no
2301          * affect on the ordering of data within a sample. The order is
2302          * documented here.
2303          *
2304          * struct {
2305          *     struct drm_i915_perf_record_header header;
2306          *
2307          *     { u32 oa_report[]; } && DRM_I915_PERF_PROP_SAMPLE_OA
2308          * };
2309          */
2310         DRM_I915_PERF_RECORD_SAMPLE = 1,
2311
2312         /*
2313          * Indicates that one or more OA reports were not written by the
2314          * hardware. This can happen for example if an MI_REPORT_PERF_COUNT
2315          * command collides with periodic sampling - which would be more likely
2316          * at higher sampling frequencies.
2317          */
2318         DRM_I915_PERF_RECORD_OA_REPORT_LOST = 2,
2319
2320         /**
2321          * An error occurred that resulted in all pending OA reports being lost.
2322          */
2323         DRM_I915_PERF_RECORD_OA_BUFFER_LOST = 3,
2324
2325         DRM_I915_PERF_RECORD_MAX /* non-ABI */
2326 };
2327
2328 /*
2329  * Structure to upload perf dynamic configuration into the kernel.
2330  */
2331 struct drm_i915_perf_oa_config {
2332         /** String formatted like "%08x-%04x-%04x-%04x-%012x" */
2333         char uuid[36];
2334
2335         __u32 n_mux_regs;
2336         __u32 n_boolean_regs;
2337         __u32 n_flex_regs;
2338
2339         /*
2340          * These fields are pointers to tuples of u32 values (register address,
2341          * value). For example the expected length of the buffer pointed by
2342          * mux_regs_ptr is (2 * sizeof(u32) * n_mux_regs).
2343          */
2344         __u64 mux_regs_ptr;
2345         __u64 boolean_regs_ptr;
2346         __u64 flex_regs_ptr;
2347 };
2348
2349 /**
2350  * struct drm_i915_query_item - An individual query for the kernel to process.
2351  *
2352  * The behaviour is determined by the @query_id. Note that exactly what
2353  * @data_ptr is also depends on the specific @query_id.
2354  */
2355 struct drm_i915_query_item {
2356         /** @query_id: The id for this query */
2357         __u64 query_id;
2358 #define DRM_I915_QUERY_TOPOLOGY_INFO    1
2359 #define DRM_I915_QUERY_ENGINE_INFO      2
2360 #define DRM_I915_QUERY_PERF_CONFIG      3
2361 #define DRM_I915_QUERY_MEMORY_REGIONS   4
2362 /* Must be kept compact -- no holes and well documented */
2363
2364         /**
2365          * @length:
2366          *
2367          * When set to zero by userspace, this is filled with the size of the
2368          * data to be written at the @data_ptr pointer. The kernel sets this
2369          * value to a negative value to signal an error on a particular query
2370          * item.
2371          */
2372         __s32 length;
2373
2374         /**
2375          * @flags:
2376          *
2377          * When query_id == DRM_I915_QUERY_TOPOLOGY_INFO, must be 0.
2378          *
2379          * When query_id == DRM_I915_QUERY_PERF_CONFIG, must be one of the
2380          * following:
2381          *
2382          *      - DRM_I915_QUERY_PERF_CONFIG_LIST
2383          *      - DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID
2384          *      - DRM_I915_QUERY_PERF_CONFIG_FOR_UUID
2385          */
2386         __u32 flags;
2387 #define DRM_I915_QUERY_PERF_CONFIG_LIST          1
2388 #define DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID 2
2389 #define DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_ID   3
2390
2391         /**
2392          * @data_ptr:
2393          *
2394          * Data will be written at the location pointed by @data_ptr when the
2395          * value of @length matches the length of the data to be written by the
2396          * kernel.
2397          */
2398         __u64 data_ptr;
2399 };
2400
2401 /**
2402  * struct drm_i915_query - Supply an array of struct drm_i915_query_item for the
2403  * kernel to fill out.
2404  *
2405  * Note that this is generally a two step process for each struct
2406  * drm_i915_query_item in the array:
2407  *
2408  * 1. Call the DRM_IOCTL_I915_QUERY, giving it our array of struct
2409  *    drm_i915_query_item, with &drm_i915_query_item.length set to zero. The
2410  *    kernel will then fill in the size, in bytes, which tells userspace how
2411  *    memory it needs to allocate for the blob(say for an array of properties).
2412  *
2413  * 2. Next we call DRM_IOCTL_I915_QUERY again, this time with the
2414  *    &drm_i915_query_item.data_ptr equal to our newly allocated blob. Note that
2415  *    the &drm_i915_query_item.length should still be the same as what the
2416  *    kernel previously set. At this point the kernel can fill in the blob.
2417  *
2418  * Note that for some query items it can make sense for userspace to just pass
2419  * in a buffer/blob equal to or larger than the required size. In this case only
2420  * a single ioctl call is needed. For some smaller query items this can work
2421  * quite well.
2422  *
2423  */
2424 struct drm_i915_query {
2425         /** @num_items: The number of elements in the @items_ptr array */
2426         __u32 num_items;
2427
2428         /**
2429          * @flags: Unused for now. Must be cleared to zero.
2430          */
2431         __u32 flags;
2432
2433         /**
2434          * @items_ptr:
2435          *
2436          * Pointer to an array of struct drm_i915_query_item. The number of
2437          * array elements is @num_items.
2438          */
2439         __u64 items_ptr;
2440 };
2441
2442 /*
2443  * Data written by the kernel with query DRM_I915_QUERY_TOPOLOGY_INFO :
2444  *
2445  * data: contains the 3 pieces of information :
2446  *
2447  * - the slice mask with one bit per slice telling whether a slice is
2448  *   available. The availability of slice X can be queried with the following
2449  *   formula :
2450  *
2451  *           (data[X / 8] >> (X % 8)) & 1
2452  *
2453  * - the subslice mask for each slice with one bit per subslice telling
2454  *   whether a subslice is available. Gen12 has dual-subslices, which are
2455  *   similar to two gen11 subslices. For gen12, this array represents dual-
2456  *   subslices. The availability of subslice Y in slice X can be queried
2457  *   with the following formula :
2458  *
2459  *           (data[subslice_offset +
2460  *                 X * subslice_stride +
2461  *                 Y / 8] >> (Y % 8)) & 1
2462  *
2463  * - the EU mask for each subslice in each slice with one bit per EU telling
2464  *   whether an EU is available. The availability of EU Z in subslice Y in
2465  *   slice X can be queried with the following formula :
2466  *
2467  *           (data[eu_offset +
2468  *                 (X * max_subslices + Y) * eu_stride +
2469  *                 Z / 8] >> (Z % 8)) & 1
2470  */
2471 struct drm_i915_query_topology_info {
2472         /*
2473          * Unused for now. Must be cleared to zero.
2474          */
2475         __u16 flags;
2476
2477         __u16 max_slices;
2478         __u16 max_subslices;
2479         __u16 max_eus_per_subslice;
2480
2481         /*
2482          * Offset in data[] at which the subslice masks are stored.
2483          */
2484         __u16 subslice_offset;
2485
2486         /*
2487          * Stride at which each of the subslice masks for each slice are
2488          * stored.
2489          */
2490         __u16 subslice_stride;
2491
2492         /*
2493          * Offset in data[] at which the EU masks are stored.
2494          */
2495         __u16 eu_offset;
2496
2497         /*
2498          * Stride at which each of the EU masks for each subslice are stored.
2499          */
2500         __u16 eu_stride;
2501
2502         __u8 data[];
2503 };
2504
2505 /**
2506  * DOC: Engine Discovery uAPI
2507  *
2508  * Engine discovery uAPI is a way of enumerating physical engines present in a
2509  * GPU associated with an open i915 DRM file descriptor. This supersedes the old
2510  * way of using `DRM_IOCTL_I915_GETPARAM` and engine identifiers like
2511  * `I915_PARAM_HAS_BLT`.
2512  *
2513  * The need for this interface came starting with Icelake and newer GPUs, which
2514  * started to establish a pattern of having multiple engines of a same class,
2515  * where not all instances were always completely functionally equivalent.
2516  *
2517  * Entry point for this uapi is `DRM_IOCTL_I915_QUERY` with the
2518  * `DRM_I915_QUERY_ENGINE_INFO` as the queried item id.
2519  *
2520  * Example for getting the list of engines:
2521  *
2522  * .. code-block:: C
2523  *
2524  *      struct drm_i915_query_engine_info *info;
2525  *      struct drm_i915_query_item item = {
2526  *              .query_id = DRM_I915_QUERY_ENGINE_INFO;
2527  *      };
2528  *      struct drm_i915_query query = {
2529  *              .num_items = 1,
2530  *              .items_ptr = (uintptr_t)&item,
2531  *      };
2532  *      int err, i;
2533  *
2534  *      // First query the size of the blob we need, this needs to be large
2535  *      // enough to hold our array of engines. The kernel will fill out the
2536  *      // item.length for us, which is the number of bytes we need.
2537  *      //
2538  *      // Alternatively a large buffer can be allocated straight away enabling
2539  *      // querying in one pass, in which case item.length should contain the
2540  *      // length of the provided buffer.
2541  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2542  *      if (err) ...
2543  *
2544  *      info = calloc(1, item.length);
2545  *      // Now that we allocated the required number of bytes, we call the ioctl
2546  *      // again, this time with the data_ptr pointing to our newly allocated
2547  *      // blob, which the kernel can then populate with info on all engines.
2548  *      item.data_ptr = (uintptr_t)&info,
2549  *
2550  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2551  *      if (err) ...
2552  *
2553  *      // We can now access each engine in the array
2554  *      for (i = 0; i < info->num_engines; i++) {
2555  *              struct drm_i915_engine_info einfo = info->engines[i];
2556  *              u16 class = einfo.engine.class;
2557  *              u16 instance = einfo.engine.instance;
2558  *              ....
2559  *      }
2560  *
2561  *      free(info);
2562  *
2563  * Each of the enumerated engines, apart from being defined by its class and
2564  * instance (see `struct i915_engine_class_instance`), also can have flags and
2565  * capabilities defined as documented in i915_drm.h.
2566  *
2567  * For instance video engines which support HEVC encoding will have the
2568  * `I915_VIDEO_CLASS_CAPABILITY_HEVC` capability bit set.
2569  *
2570  * Engine discovery only fully comes to its own when combined with the new way
2571  * of addressing engines when submitting batch buffers using contexts with
2572  * engine maps configured.
2573  */
2574
2575 /**
2576  * struct drm_i915_engine_info
2577  *
2578  * Describes one engine and it's capabilities as known to the driver.
2579  */
2580 struct drm_i915_engine_info {
2581         /** @engine: Engine class and instance. */
2582         struct i915_engine_class_instance engine;
2583
2584         /** @rsvd0: Reserved field. */
2585         __u32 rsvd0;
2586
2587         /** @flags: Engine flags. */
2588         __u64 flags;
2589
2590         /** @capabilities: Capabilities of this engine. */
2591         __u64 capabilities;
2592 #define I915_VIDEO_CLASS_CAPABILITY_HEVC                (1 << 0)
2593 #define I915_VIDEO_AND_ENHANCE_CLASS_CAPABILITY_SFC     (1 << 1)
2594
2595         /** @rsvd1: Reserved fields. */
2596         __u64 rsvd1[4];
2597 };
2598
2599 /**
2600  * struct drm_i915_query_engine_info
2601  *
2602  * Engine info query enumerates all engines known to the driver by filling in
2603  * an array of struct drm_i915_engine_info structures.
2604  */
2605 struct drm_i915_query_engine_info {
2606         /** @num_engines: Number of struct drm_i915_engine_info structs following. */
2607         __u32 num_engines;
2608
2609         /** @rsvd: MBZ */
2610         __u32 rsvd[3];
2611
2612         /** @engines: Marker for drm_i915_engine_info structures. */
2613         struct drm_i915_engine_info engines[];
2614 };
2615
2616 /*
2617  * Data written by the kernel with query DRM_I915_QUERY_PERF_CONFIG.
2618  */
2619 struct drm_i915_query_perf_config {
2620         union {
2621                 /*
2622                  * When query_item.flags == DRM_I915_QUERY_PERF_CONFIG_LIST, i915 sets
2623                  * this fields to the number of configurations available.
2624                  */
2625                 __u64 n_configs;
2626
2627                 /*
2628                  * When query_id == DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_ID,
2629                  * i915 will use the value in this field as configuration
2630                  * identifier to decide what data to write into config_ptr.
2631                  */
2632                 __u64 config;
2633
2634                 /*
2635                  * When query_id == DRM_I915_QUERY_PERF_CONFIG_DATA_FOR_UUID,
2636                  * i915 will use the value in this field as configuration
2637                  * identifier to decide what data to write into config_ptr.
2638                  *
2639                  * String formatted like "%08x-%04x-%04x-%04x-%012x"
2640                  */
2641                 char uuid[36];
2642         };
2643
2644         /*
2645          * Unused for now. Must be cleared to zero.
2646          */
2647         __u32 flags;
2648
2649         /*
2650          * When query_item.flags == DRM_I915_QUERY_PERF_CONFIG_LIST, i915 will
2651          * write an array of __u64 of configuration identifiers.
2652          *
2653          * When query_item.flags == DRM_I915_QUERY_PERF_CONFIG_DATA, i915 will
2654          * write a struct drm_i915_perf_oa_config. If the following fields of
2655          * drm_i915_perf_oa_config are set not set to 0, i915 will write into
2656          * the associated pointers the values of submitted when the
2657          * configuration was created :
2658          *
2659          *         - n_mux_regs
2660          *         - n_boolean_regs
2661          *         - n_flex_regs
2662          */
2663         __u8 data[];
2664 };
2665
2666 /**
2667  * enum drm_i915_gem_memory_class - Supported memory classes
2668  */
2669 enum drm_i915_gem_memory_class {
2670         /** @I915_MEMORY_CLASS_SYSTEM: System memory */
2671         I915_MEMORY_CLASS_SYSTEM = 0,
2672         /** @I915_MEMORY_CLASS_DEVICE: Device local-memory */
2673         I915_MEMORY_CLASS_DEVICE,
2674 };
2675
2676 /**
2677  * struct drm_i915_gem_memory_class_instance - Identify particular memory region
2678  */
2679 struct drm_i915_gem_memory_class_instance {
2680         /** @memory_class: See enum drm_i915_gem_memory_class */
2681         __u16 memory_class;
2682
2683         /** @memory_instance: Which instance */
2684         __u16 memory_instance;
2685 };
2686
2687 /**
2688  * struct drm_i915_memory_region_info - Describes one region as known to the
2689  * driver.
2690  *
2691  * Note that we reserve some stuff here for potential future work. As an example
2692  * we might want expose the capabilities for a given region, which could include
2693  * things like if the region is CPU mappable/accessible, what are the supported
2694  * mapping types etc.
2695  *
2696  * Note that to extend struct drm_i915_memory_region_info and struct
2697  * drm_i915_query_memory_regions in the future the plan is to do the following:
2698  *
2699  * .. code-block:: C
2700  *
2701  *      struct drm_i915_memory_region_info {
2702  *              struct drm_i915_gem_memory_class_instance region;
2703  *              union {
2704  *                      __u32 rsvd0;
2705  *                      __u32 new_thing1;
2706  *              };
2707  *              ...
2708  *              union {
2709  *                      __u64 rsvd1[8];
2710  *                      struct {
2711  *                              __u64 new_thing2;
2712  *                              __u64 new_thing3;
2713  *                              ...
2714  *                      };
2715  *              };
2716  *      };
2717  *
2718  * With this things should remain source compatible between versions for
2719  * userspace, even as we add new fields.
2720  *
2721  * Note this is using both struct drm_i915_query_item and struct drm_i915_query.
2722  * For this new query we are adding the new query id DRM_I915_QUERY_MEMORY_REGIONS
2723  * at &drm_i915_query_item.query_id.
2724  */
2725 struct drm_i915_memory_region_info {
2726         /** @region: The class:instance pair encoding */
2727         struct drm_i915_gem_memory_class_instance region;
2728
2729         /** @rsvd0: MBZ */
2730         __u32 rsvd0;
2731
2732         /** @probed_size: Memory probed by the driver (-1 = unknown) */
2733         __u64 probed_size;
2734
2735         /** @unallocated_size: Estimate of memory remaining (-1 = unknown) */
2736         __u64 unallocated_size;
2737
2738         /** @rsvd1: MBZ */
2739         __u64 rsvd1[8];
2740 };
2741
2742 /**
2743  * struct drm_i915_query_memory_regions
2744  *
2745  * The region info query enumerates all regions known to the driver by filling
2746  * in an array of struct drm_i915_memory_region_info structures.
2747  *
2748  * Example for getting the list of supported regions:
2749  *
2750  * .. code-block:: C
2751  *
2752  *      struct drm_i915_query_memory_regions *info;
2753  *      struct drm_i915_query_item item = {
2754  *              .query_id = DRM_I915_QUERY_MEMORY_REGIONS;
2755  *      };
2756  *      struct drm_i915_query query = {
2757  *              .num_items = 1,
2758  *              .items_ptr = (uintptr_t)&item,
2759  *      };
2760  *      int err, i;
2761  *
2762  *      // First query the size of the blob we need, this needs to be large
2763  *      // enough to hold our array of regions. The kernel will fill out the
2764  *      // item.length for us, which is the number of bytes we need.
2765  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2766  *      if (err) ...
2767  *
2768  *      info = calloc(1, item.length);
2769  *      // Now that we allocated the required number of bytes, we call the ioctl
2770  *      // again, this time with the data_ptr pointing to our newly allocated
2771  *      // blob, which the kernel can then populate with the all the region info.
2772  *      item.data_ptr = (uintptr_t)&info,
2773  *
2774  *      err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
2775  *      if (err) ...
2776  *
2777  *      // We can now access each region in the array
2778  *      for (i = 0; i < info->num_regions; i++) {
2779  *              struct drm_i915_memory_region_info mr = info->regions[i];
2780  *              u16 class = mr.region.class;
2781  *              u16 instance = mr.region.instance;
2782  *
2783  *              ....
2784  *      }
2785  *
2786  *      free(info);
2787  */
2788 struct drm_i915_query_memory_regions {
2789         /** @num_regions: Number of supported regions */
2790         __u32 num_regions;
2791
2792         /** @rsvd: MBZ */
2793         __u32 rsvd[3];
2794
2795         /** @regions: Info about each supported region */
2796         struct drm_i915_memory_region_info regions[];
2797 };
2798
2799 /**
2800  * struct drm_i915_gem_create_ext - Existing gem_create behaviour, with added
2801  * extension support using struct i915_user_extension.
2802  *
2803  * Note that in the future we want to have our buffer flags here, at least for
2804  * the stuff that is immutable. Previously we would have two ioctls, one to
2805  * create the object with gem_create, and another to apply various parameters,
2806  * however this creates some ambiguity for the params which are considered
2807  * immutable. Also in general we're phasing out the various SET/GET ioctls.
2808  */
2809 struct drm_i915_gem_create_ext {
2810         /**
2811          * @size: Requested size for the object.
2812          *
2813          * The (page-aligned) allocated size for the object will be returned.
2814          *
2815          * Note that for some devices we have might have further minimum
2816          * page-size restrictions(larger than 4K), like for device local-memory.
2817          * However in general the final size here should always reflect any
2818          * rounding up, if for example using the I915_GEM_CREATE_EXT_MEMORY_REGIONS
2819          * extension to place the object in device local-memory.
2820          */
2821         __u64 size;
2822         /**
2823          * @handle: Returned handle for the object.
2824          *
2825          * Object handles are nonzero.
2826          */
2827         __u32 handle;
2828         /** @flags: MBZ */
2829         __u32 flags;
2830         /**
2831          * @extensions: The chain of extensions to apply to this object.
2832          *
2833          * This will be useful in the future when we need to support several
2834          * different extensions, and we need to apply more than one when
2835          * creating the object. See struct i915_user_extension.
2836          *
2837          * If we don't supply any extensions then we get the same old gem_create
2838          * behaviour.
2839          *
2840          * For I915_GEM_CREATE_EXT_MEMORY_REGIONS usage see
2841          * struct drm_i915_gem_create_ext_memory_regions.
2842          */
2843 #define I915_GEM_CREATE_EXT_MEMORY_REGIONS 0
2844         __u64 extensions;
2845 };
2846
2847 /**
2848  * struct drm_i915_gem_create_ext_memory_regions - The
2849  * I915_GEM_CREATE_EXT_MEMORY_REGIONS extension.
2850  *
2851  * Set the object with the desired set of placements/regions in priority
2852  * order. Each entry must be unique and supported by the device.
2853  *
2854  * This is provided as an array of struct drm_i915_gem_memory_class_instance, or
2855  * an equivalent layout of class:instance pair encodings. See struct
2856  * drm_i915_query_memory_regions and DRM_I915_QUERY_MEMORY_REGIONS for how to
2857  * query the supported regions for a device.
2858  *
2859  * As an example, on discrete devices, if we wish to set the placement as
2860  * device local-memory we can do something like:
2861  *
2862  * .. code-block:: C
2863  *
2864  *      struct drm_i915_gem_memory_class_instance region_lmem = {
2865  *              .memory_class = I915_MEMORY_CLASS_DEVICE,
2866  *              .memory_instance = 0,
2867  *      };
2868  *      struct drm_i915_gem_create_ext_memory_regions regions = {
2869  *              .base = { .name = I915_GEM_CREATE_EXT_MEMORY_REGIONS },
2870  *              .regions = (uintptr_t)&region_lmem,
2871  *              .num_regions = 1,
2872  *      };
2873  *      struct drm_i915_gem_create_ext create_ext = {
2874  *              .size = 16 * PAGE_SIZE,
2875  *              .extensions = (uintptr_t)&regions,
2876  *      };
2877  *
2878  *      int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext);
2879  *      if (err) ...
2880  *
2881  * At which point we get the object handle in &drm_i915_gem_create_ext.handle,
2882  * along with the final object size in &drm_i915_gem_create_ext.size, which
2883  * should account for any rounding up, if required.
2884  */
2885 struct drm_i915_gem_create_ext_memory_regions {
2886         /** @base: Extension link. See struct i915_user_extension. */
2887         struct i915_user_extension base;
2888
2889         /** @pad: MBZ */
2890         __u32 pad;
2891         /** @num_regions: Number of elements in the @regions array. */
2892         __u32 num_regions;
2893         /**
2894          * @regions: The regions/placements array.
2895          *
2896          * An array of struct drm_i915_gem_memory_class_instance.
2897          */
2898         __u64 regions;
2899 };
2900
2901 #if defined(__cplusplus)
2902 }
2903 #endif
2904
2905 #endif /* _UAPI_I915_DRM_H_ */