]> asedeno.scripts.mit.edu Git - linux.git/blob - include/uapi/drm/i915_drm.h
drm/i915: Extend I915_CONTEXT_PARAM_SSEU to support local ctx->engine[]
[linux.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  *      the 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  * 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 struct i915_user_extension {
81         __u64 next_extension;
82         __u32 name;
83         __u32 flags; /* All undefined bits must be zero. */
84         __u32 rsvd[4]; /* Reserved for future use; must be zero. */
85 };
86
87 /*
88  * MOCS indexes used for GPU surfaces, defining the cacheability of the
89  * surface data and the coherency for this data wrt. CPU vs. GPU accesses.
90  */
91 enum i915_mocs_table_index {
92         /*
93          * Not cached anywhere, coherency between CPU and GPU accesses is
94          * guaranteed.
95          */
96         I915_MOCS_UNCACHED,
97         /*
98          * Cacheability and coherency controlled by the kernel automatically
99          * based on the DRM_I915_GEM_SET_CACHING IOCTL setting and the current
100          * usage of the surface (used for display scanout or not).
101          */
102         I915_MOCS_PTE,
103         /*
104          * Cached in all GPU caches available on the platform.
105          * Coherency between CPU and GPU accesses to the surface is not
106          * guaranteed without extra synchronization.
107          */
108         I915_MOCS_CACHED,
109 };
110
111 /*
112  * Different engines serve different roles, and there may be more than one
113  * engine serving each role. enum drm_i915_gem_engine_class provides a
114  * classification of the role of the engine, which may be used when requesting
115  * operations to be performed on a certain subset of engines, or for providing
116  * information about that group.
117  */
118 enum drm_i915_gem_engine_class {
119         I915_ENGINE_CLASS_RENDER        = 0,
120         I915_ENGINE_CLASS_COPY          = 1,
121         I915_ENGINE_CLASS_VIDEO         = 2,
122         I915_ENGINE_CLASS_VIDEO_ENHANCE = 3,
123
124         /* should be kept compact */
125
126         I915_ENGINE_CLASS_INVALID       = -1
127 };
128
129 /*
130  * There may be more than one engine fulfilling any role within the system.
131  * Each engine of a class is given a unique instance number and therefore
132  * any engine can be specified by its class:instance tuplet. APIs that allow
133  * access to any engine in the system will use struct i915_engine_class_instance
134  * for this identification.
135  */
136 struct i915_engine_class_instance {
137         __u16 engine_class; /* see enum drm_i915_gem_engine_class */
138         __u16 engine_instance;
139 #define I915_ENGINE_CLASS_INVALID_NONE -1
140 };
141
142 /**
143  * DOC: perf_events exposed by i915 through /sys/bus/event_sources/drivers/i915
144  *
145  */
146
147 enum drm_i915_pmu_engine_sample {
148         I915_SAMPLE_BUSY = 0,
149         I915_SAMPLE_WAIT = 1,
150         I915_SAMPLE_SEMA = 2
151 };
152
153 #define I915_PMU_SAMPLE_BITS (4)
154 #define I915_PMU_SAMPLE_MASK (0xf)
155 #define I915_PMU_SAMPLE_INSTANCE_BITS (8)
156 #define I915_PMU_CLASS_SHIFT \
157         (I915_PMU_SAMPLE_BITS + I915_PMU_SAMPLE_INSTANCE_BITS)
158
159 #define __I915_PMU_ENGINE(class, instance, sample) \
160         ((class) << I915_PMU_CLASS_SHIFT | \
161         (instance) << I915_PMU_SAMPLE_BITS | \
162         (sample))
163
164 #define I915_PMU_ENGINE_BUSY(class, instance) \
165         __I915_PMU_ENGINE(class, instance, I915_SAMPLE_BUSY)
166
167 #define I915_PMU_ENGINE_WAIT(class, instance) \
168         __I915_PMU_ENGINE(class, instance, I915_SAMPLE_WAIT)
169
170 #define I915_PMU_ENGINE_SEMA(class, instance) \
171         __I915_PMU_ENGINE(class, instance, I915_SAMPLE_SEMA)
172
173 #define __I915_PMU_OTHER(x) (__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x))
174
175 #define I915_PMU_ACTUAL_FREQUENCY       __I915_PMU_OTHER(0)
176 #define I915_PMU_REQUESTED_FREQUENCY    __I915_PMU_OTHER(1)
177 #define I915_PMU_INTERRUPTS             __I915_PMU_OTHER(2)
178 #define I915_PMU_RC6_RESIDENCY          __I915_PMU_OTHER(3)
179
180 #define I915_PMU_LAST I915_PMU_RC6_RESIDENCY
181
182 /* Each region is a minimum of 16k, and there are at most 255 of them.
183  */
184 #define I915_NR_TEX_REGIONS 255 /* table size 2k - maximum due to use
185                                  * of chars for next/prev indices */
186 #define I915_LOG_MIN_TEX_REGION_SIZE 14
187
188 typedef struct _drm_i915_init {
189         enum {
190                 I915_INIT_DMA = 0x01,
191                 I915_CLEANUP_DMA = 0x02,
192                 I915_RESUME_DMA = 0x03
193         } func;
194         unsigned int mmio_offset;
195         int sarea_priv_offset;
196         unsigned int ring_start;
197         unsigned int ring_end;
198         unsigned int ring_size;
199         unsigned int front_offset;
200         unsigned int back_offset;
201         unsigned int depth_offset;
202         unsigned int w;
203         unsigned int h;
204         unsigned int pitch;
205         unsigned int pitch_bits;
206         unsigned int back_pitch;
207         unsigned int depth_pitch;
208         unsigned int cpp;
209         unsigned int chipset;
210 } drm_i915_init_t;
211
212 typedef struct _drm_i915_sarea {
213         struct drm_tex_region texList[I915_NR_TEX_REGIONS + 1];
214         int last_upload;        /* last time texture was uploaded */
215         int last_enqueue;       /* last time a buffer was enqueued */
216         int last_dispatch;      /* age of the most recently dispatched buffer */
217         int ctxOwner;           /* last context to upload state */
218         int texAge;
219         int pf_enabled;         /* is pageflipping allowed? */
220         int pf_active;
221         int pf_current_page;    /* which buffer is being displayed? */
222         int perf_boxes;         /* performance boxes to be displayed */
223         int width, height;      /* screen size in pixels */
224
225         drm_handle_t front_handle;
226         int front_offset;
227         int front_size;
228
229         drm_handle_t back_handle;
230         int back_offset;
231         int back_size;
232
233         drm_handle_t depth_handle;
234         int depth_offset;
235         int depth_size;
236
237         drm_handle_t tex_handle;
238         int tex_offset;
239         int tex_size;
240         int log_tex_granularity;
241         int pitch;
242         int rotation;           /* 0, 90, 180 or 270 */
243         int rotated_offset;
244         int rotated_size;
245         int rotated_pitch;
246         int virtualX, virtualY;
247
248         unsigned int front_tiled;
249         unsigned int back_tiled;
250         unsigned int depth_tiled;
251         unsigned int rotated_tiled;
252         unsigned int rotated2_tiled;
253
254         int pipeA_x;
255         int pipeA_y;
256         int pipeA_w;
257         int pipeA_h;
258         int pipeB_x;
259         int pipeB_y;
260         int pipeB_w;
261         int pipeB_h;
262
263         /* fill out some space for old userspace triple buffer */
264         drm_handle_t unused_handle;
265         __u32 unused1, unused2, unused3;
266
267         /* buffer object handles for static buffers. May change
268          * over the lifetime of the client.
269          */
270         __u32 front_bo_handle;
271         __u32 back_bo_handle;
272         __u32 unused_bo_handle;
273         __u32 depth_bo_handle;
274
275 } drm_i915_sarea_t;
276
277 /* due to userspace building against these headers we need some compat here */
278 #define planeA_x pipeA_x
279 #define planeA_y pipeA_y
280 #define planeA_w pipeA_w
281 #define planeA_h pipeA_h
282 #define planeB_x pipeB_x
283 #define planeB_y pipeB_y
284 #define planeB_w pipeB_w
285 #define planeB_h pipeB_h
286
287 /* Flags for perf_boxes
288  */
289 #define I915_BOX_RING_EMPTY    0x1
290 #define I915_BOX_FLIP          0x2
291 #define I915_BOX_WAIT          0x4
292 #define I915_BOX_TEXTURE_LOAD  0x8
293 #define I915_BOX_LOST_CONTEXT  0x10
294
295 /*
296  * i915 specific ioctls.
297  *
298  * The device specific ioctl range is [DRM_COMMAND_BASE, DRM_COMMAND_END) ie
299  * [0x40, 0xa0) (a0 is excluded). The numbers below are defined as offset
300  * against DRM_COMMAND_BASE and should be between [0x0, 0x60).
301  */
302 #define DRM_I915_INIT           0x00
303 #define DRM_I915_FLUSH          0x01
304 #define DRM_I915_FLIP           0x02
305 #define DRM_I915_BATCHBUFFER    0x03
306 #define DRM_I915_IRQ_EMIT       0x04
307 #define DRM_I915_IRQ_WAIT       0x05
308 #define DRM_I915_GETPARAM       0x06
309 #define DRM_I915_SETPARAM       0x07
310 #define DRM_I915_ALLOC          0x08
311 #define DRM_I915_FREE           0x09
312 #define DRM_I915_INIT_HEAP      0x0a
313 #define DRM_I915_CMDBUFFER      0x0b
314 #define DRM_I915_DESTROY_HEAP   0x0c
315 #define DRM_I915_SET_VBLANK_PIPE        0x0d
316 #define DRM_I915_GET_VBLANK_PIPE        0x0e
317 #define DRM_I915_VBLANK_SWAP    0x0f
318 #define DRM_I915_HWS_ADDR       0x11
319 #define DRM_I915_GEM_INIT       0x13
320 #define DRM_I915_GEM_EXECBUFFER 0x14
321 #define DRM_I915_GEM_PIN        0x15
322 #define DRM_I915_GEM_UNPIN      0x16
323 #define DRM_I915_GEM_BUSY       0x17
324 #define DRM_I915_GEM_THROTTLE   0x18
325 #define DRM_I915_GEM_ENTERVT    0x19
326 #define DRM_I915_GEM_LEAVEVT    0x1a
327 #define DRM_I915_GEM_CREATE     0x1b
328 #define DRM_I915_GEM_PREAD      0x1c
329 #define DRM_I915_GEM_PWRITE     0x1d
330 #define DRM_I915_GEM_MMAP       0x1e
331 #define DRM_I915_GEM_SET_DOMAIN 0x1f
332 #define DRM_I915_GEM_SW_FINISH  0x20
333 #define DRM_I915_GEM_SET_TILING 0x21
334 #define DRM_I915_GEM_GET_TILING 0x22
335 #define DRM_I915_GEM_GET_APERTURE 0x23
336 #define DRM_I915_GEM_MMAP_GTT   0x24
337 #define DRM_I915_GET_PIPE_FROM_CRTC_ID  0x25
338 #define DRM_I915_GEM_MADVISE    0x26
339 #define DRM_I915_OVERLAY_PUT_IMAGE      0x27
340 #define DRM_I915_OVERLAY_ATTRS  0x28
341 #define DRM_I915_GEM_EXECBUFFER2        0x29
342 #define DRM_I915_GEM_EXECBUFFER2_WR     DRM_I915_GEM_EXECBUFFER2
343 #define DRM_I915_GET_SPRITE_COLORKEY    0x2a
344 #define DRM_I915_SET_SPRITE_COLORKEY    0x2b
345 #define DRM_I915_GEM_WAIT       0x2c
346 #define DRM_I915_GEM_CONTEXT_CREATE     0x2d
347 #define DRM_I915_GEM_CONTEXT_DESTROY    0x2e
348 #define DRM_I915_GEM_SET_CACHING        0x2f
349 #define DRM_I915_GEM_GET_CACHING        0x30
350 #define DRM_I915_REG_READ               0x31
351 #define DRM_I915_GET_RESET_STATS        0x32
352 #define DRM_I915_GEM_USERPTR            0x33
353 #define DRM_I915_GEM_CONTEXT_GETPARAM   0x34
354 #define DRM_I915_GEM_CONTEXT_SETPARAM   0x35
355 #define DRM_I915_PERF_OPEN              0x36
356 #define DRM_I915_PERF_ADD_CONFIG        0x37
357 #define DRM_I915_PERF_REMOVE_CONFIG     0x38
358 #define DRM_I915_QUERY                  0x39
359 #define DRM_I915_GEM_VM_CREATE          0x3a
360 #define DRM_I915_GEM_VM_DESTROY         0x3b
361 /* Must be kept compact -- no holes */
362
363 #define DRM_IOCTL_I915_INIT             DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT, drm_i915_init_t)
364 #define DRM_IOCTL_I915_FLUSH            DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLUSH)
365 #define DRM_IOCTL_I915_FLIP             DRM_IO ( DRM_COMMAND_BASE + DRM_I915_FLIP)
366 #define DRM_IOCTL_I915_BATCHBUFFER      DRM_IOW( DRM_COMMAND_BASE + DRM_I915_BATCHBUFFER, drm_i915_batchbuffer_t)
367 #define DRM_IOCTL_I915_IRQ_EMIT         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_IRQ_EMIT, drm_i915_irq_emit_t)
368 #define DRM_IOCTL_I915_IRQ_WAIT         DRM_IOW( DRM_COMMAND_BASE + DRM_I915_IRQ_WAIT, drm_i915_irq_wait_t)
369 #define DRM_IOCTL_I915_GETPARAM         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GETPARAM, drm_i915_getparam_t)
370 #define DRM_IOCTL_I915_SETPARAM         DRM_IOW( DRM_COMMAND_BASE + DRM_I915_SETPARAM, drm_i915_setparam_t)
371 #define DRM_IOCTL_I915_ALLOC            DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_ALLOC, drm_i915_mem_alloc_t)
372 #define DRM_IOCTL_I915_FREE             DRM_IOW( DRM_COMMAND_BASE + DRM_I915_FREE, drm_i915_mem_free_t)
373 #define DRM_IOCTL_I915_INIT_HEAP        DRM_IOW( DRM_COMMAND_BASE + DRM_I915_INIT_HEAP, drm_i915_mem_init_heap_t)
374 #define DRM_IOCTL_I915_CMDBUFFER        DRM_IOW( DRM_COMMAND_BASE + DRM_I915_CMDBUFFER, drm_i915_cmdbuffer_t)
375 #define DRM_IOCTL_I915_DESTROY_HEAP     DRM_IOW( DRM_COMMAND_BASE + DRM_I915_DESTROY_HEAP, drm_i915_mem_destroy_heap_t)
376 #define DRM_IOCTL_I915_SET_VBLANK_PIPE  DRM_IOW( DRM_COMMAND_BASE + DRM_I915_SET_VBLANK_PIPE, drm_i915_vblank_pipe_t)
377 #define DRM_IOCTL_I915_GET_VBLANK_PIPE  DRM_IOR( DRM_COMMAND_BASE + DRM_I915_GET_VBLANK_PIPE, drm_i915_vblank_pipe_t)
378 #define DRM_IOCTL_I915_VBLANK_SWAP      DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_VBLANK_SWAP, drm_i915_vblank_swap_t)
379 #define DRM_IOCTL_I915_HWS_ADDR         DRM_IOW(DRM_COMMAND_BASE + DRM_I915_HWS_ADDR, struct drm_i915_gem_init)
380 #define DRM_IOCTL_I915_GEM_INIT         DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_INIT, struct drm_i915_gem_init)
381 #define DRM_IOCTL_I915_GEM_EXECBUFFER   DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER, struct drm_i915_gem_execbuffer)
382 #define DRM_IOCTL_I915_GEM_EXECBUFFER2  DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER2, struct drm_i915_gem_execbuffer2)
383 #define DRM_IOCTL_I915_GEM_EXECBUFFER2_WR       DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_EXECBUFFER2_WR, struct drm_i915_gem_execbuffer2)
384 #define DRM_IOCTL_I915_GEM_PIN          DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_PIN, struct drm_i915_gem_pin)
385 #define DRM_IOCTL_I915_GEM_UNPIN        DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_UNPIN, struct drm_i915_gem_unpin)
386 #define DRM_IOCTL_I915_GEM_BUSY         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_BUSY, struct drm_i915_gem_busy)
387 #define DRM_IOCTL_I915_GEM_SET_CACHING          DRM_IOW(DRM_COMMAND_BASE + DRM_I915_GEM_SET_CACHING, struct drm_i915_gem_caching)
388 #define DRM_IOCTL_I915_GEM_GET_CACHING          DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_GET_CACHING, struct drm_i915_gem_caching)
389 #define DRM_IOCTL_I915_GEM_THROTTLE     DRM_IO ( DRM_COMMAND_BASE + DRM_I915_GEM_THROTTLE)
390 #define DRM_IOCTL_I915_GEM_ENTERVT      DRM_IO(DRM_COMMAND_BASE + DRM_I915_GEM_ENTERVT)
391 #define DRM_IOCTL_I915_GEM_LEAVEVT      DRM_IO(DRM_COMMAND_BASE + DRM_I915_GEM_LEAVEVT)
392 #define DRM_IOCTL_I915_GEM_CREATE       DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_CREATE, struct drm_i915_gem_create)
393 #define DRM_IOCTL_I915_GEM_PREAD        DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_PREAD, struct drm_i915_gem_pread)
394 #define DRM_IOCTL_I915_GEM_PWRITE       DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_PWRITE, struct drm_i915_gem_pwrite)
395 #define DRM_IOCTL_I915_GEM_MMAP         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP, struct drm_i915_gem_mmap)
396 #define DRM_IOCTL_I915_GEM_MMAP_GTT     DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MMAP_GTT, struct drm_i915_gem_mmap_gtt)
397 #define DRM_IOCTL_I915_GEM_SET_DOMAIN   DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_SET_DOMAIN, struct drm_i915_gem_set_domain)
398 #define DRM_IOCTL_I915_GEM_SW_FINISH    DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_SW_FINISH, struct drm_i915_gem_sw_finish)
399 #define DRM_IOCTL_I915_GEM_SET_TILING   DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_SET_TILING, struct drm_i915_gem_set_tiling)
400 #define DRM_IOCTL_I915_GEM_GET_TILING   DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_GET_TILING, struct drm_i915_gem_get_tiling)
401 #define DRM_IOCTL_I915_GEM_GET_APERTURE DRM_IOR  (DRM_COMMAND_BASE + DRM_I915_GEM_GET_APERTURE, struct drm_i915_gem_get_aperture)
402 #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)
403 #define DRM_IOCTL_I915_GEM_MADVISE      DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_MADVISE, struct drm_i915_gem_madvise)
404 #define DRM_IOCTL_I915_OVERLAY_PUT_IMAGE        DRM_IOW(DRM_COMMAND_BASE + DRM_I915_OVERLAY_PUT_IMAGE, struct drm_intel_overlay_put_image)
405 #define DRM_IOCTL_I915_OVERLAY_ATTRS    DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_OVERLAY_ATTRS, struct drm_intel_overlay_attrs)
406 #define DRM_IOCTL_I915_SET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_SET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey)
407 #define DRM_IOCTL_I915_GET_SPRITE_COLORKEY DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GET_SPRITE_COLORKEY, struct drm_intel_sprite_colorkey)
408 #define DRM_IOCTL_I915_GEM_WAIT         DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_WAIT, struct drm_i915_gem_wait)
409 #define DRM_IOCTL_I915_GEM_CONTEXT_CREATE       DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_CREATE, struct drm_i915_gem_context_create)
410 #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)
411 #define DRM_IOCTL_I915_GEM_CONTEXT_DESTROY      DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_DESTROY, struct drm_i915_gem_context_destroy)
412 #define DRM_IOCTL_I915_REG_READ                 DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_REG_READ, struct drm_i915_reg_read)
413 #define DRM_IOCTL_I915_GET_RESET_STATS          DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GET_RESET_STATS, struct drm_i915_reset_stats)
414 #define DRM_IOCTL_I915_GEM_USERPTR                      DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_USERPTR, struct drm_i915_gem_userptr)
415 #define DRM_IOCTL_I915_GEM_CONTEXT_GETPARAM     DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_GETPARAM, struct drm_i915_gem_context_param)
416 #define DRM_IOCTL_I915_GEM_CONTEXT_SETPARAM     DRM_IOWR (DRM_COMMAND_BASE + DRM_I915_GEM_CONTEXT_SETPARAM, struct drm_i915_gem_context_param)
417 #define DRM_IOCTL_I915_PERF_OPEN        DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_OPEN, struct drm_i915_perf_open_param)
418 #define DRM_IOCTL_I915_PERF_ADD_CONFIG  DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_ADD_CONFIG, struct drm_i915_perf_oa_config)
419 #define DRM_IOCTL_I915_PERF_REMOVE_CONFIG       DRM_IOW(DRM_COMMAND_BASE + DRM_I915_PERF_REMOVE_CONFIG, __u64)
420 #define DRM_IOCTL_I915_QUERY                    DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_QUERY, struct drm_i915_query)
421 #define DRM_IOCTL_I915_GEM_VM_CREATE    DRM_IOWR(DRM_COMMAND_BASE + DRM_I915_GEM_VM_CREATE, struct drm_i915_gem_vm_control)
422 #define DRM_IOCTL_I915_GEM_VM_DESTROY   DRM_IOW (DRM_COMMAND_BASE + DRM_I915_GEM_VM_DESTROY, struct drm_i915_gem_vm_control)
423
424 /* Allow drivers to submit batchbuffers directly to hardware, relying
425  * on the security mechanisms provided by hardware.
426  */
427 typedef struct drm_i915_batchbuffer {
428         int start;              /* agp offset */
429         int used;               /* nr bytes in use */
430         int DR1;                /* hw flags for GFX_OP_DRAWRECT_INFO */
431         int DR4;                /* window origin for GFX_OP_DRAWRECT_INFO */
432         int num_cliprects;      /* mulitpass with multiple cliprects? */
433         struct drm_clip_rect __user *cliprects; /* pointer to userspace cliprects */
434 } drm_i915_batchbuffer_t;
435
436 /* As above, but pass a pointer to userspace buffer which can be
437  * validated by the kernel prior to sending to hardware.
438  */
439 typedef struct _drm_i915_cmdbuffer {
440         char __user *buf;       /* pointer to userspace command buffer */
441         int sz;                 /* nr bytes in buf */
442         int DR1;                /* hw flags for GFX_OP_DRAWRECT_INFO */
443         int DR4;                /* window origin for GFX_OP_DRAWRECT_INFO */
444         int num_cliprects;      /* mulitpass with multiple cliprects? */
445         struct drm_clip_rect __user *cliprects; /* pointer to userspace cliprects */
446 } drm_i915_cmdbuffer_t;
447
448 /* Userspace can request & wait on irq's:
449  */
450 typedef struct drm_i915_irq_emit {
451         int __user *irq_seq;
452 } drm_i915_irq_emit_t;
453
454 typedef struct drm_i915_irq_wait {
455         int irq_seq;
456 } drm_i915_irq_wait_t;
457
458 /*
459  * Different modes of per-process Graphics Translation Table,
460  * see I915_PARAM_HAS_ALIASING_PPGTT
461  */
462 #define I915_GEM_PPGTT_NONE     0
463 #define I915_GEM_PPGTT_ALIASING 1
464 #define I915_GEM_PPGTT_FULL     2
465
466 /* Ioctl to query kernel params:
467  */
468 #define I915_PARAM_IRQ_ACTIVE            1
469 #define I915_PARAM_ALLOW_BATCHBUFFER     2
470 #define I915_PARAM_LAST_DISPATCH         3
471 #define I915_PARAM_CHIPSET_ID            4
472 #define I915_PARAM_HAS_GEM               5
473 #define I915_PARAM_NUM_FENCES_AVAIL      6
474 #define I915_PARAM_HAS_OVERLAY           7
475 #define I915_PARAM_HAS_PAGEFLIPPING      8
476 #define I915_PARAM_HAS_EXECBUF2          9
477 #define I915_PARAM_HAS_BSD               10
478 #define I915_PARAM_HAS_BLT               11
479 #define I915_PARAM_HAS_RELAXED_FENCING   12
480 #define I915_PARAM_HAS_COHERENT_RINGS    13
481 #define I915_PARAM_HAS_EXEC_CONSTANTS    14
482 #define I915_PARAM_HAS_RELAXED_DELTA     15
483 #define I915_PARAM_HAS_GEN7_SOL_RESET    16
484 #define I915_PARAM_HAS_LLC               17
485 #define I915_PARAM_HAS_ALIASING_PPGTT    18
486 #define I915_PARAM_HAS_WAIT_TIMEOUT      19
487 #define I915_PARAM_HAS_SEMAPHORES        20
488 #define I915_PARAM_HAS_PRIME_VMAP_FLUSH  21
489 #define I915_PARAM_HAS_VEBOX             22
490 #define I915_PARAM_HAS_SECURE_BATCHES    23
491 #define I915_PARAM_HAS_PINNED_BATCHES    24
492 #define I915_PARAM_HAS_EXEC_NO_RELOC     25
493 #define I915_PARAM_HAS_EXEC_HANDLE_LUT   26
494 #define I915_PARAM_HAS_WT                27
495 #define I915_PARAM_CMD_PARSER_VERSION    28
496 #define I915_PARAM_HAS_COHERENT_PHYS_GTT 29
497 #define I915_PARAM_MMAP_VERSION          30
498 #define I915_PARAM_HAS_BSD2              31
499 #define I915_PARAM_REVISION              32
500 #define I915_PARAM_SUBSLICE_TOTAL        33
501 #define I915_PARAM_EU_TOTAL              34
502 #define I915_PARAM_HAS_GPU_RESET         35
503 #define I915_PARAM_HAS_RESOURCE_STREAMER 36
504 #define I915_PARAM_HAS_EXEC_SOFTPIN      37
505 #define I915_PARAM_HAS_POOLED_EU         38
506 #define I915_PARAM_MIN_EU_IN_POOL        39
507 #define I915_PARAM_MMAP_GTT_VERSION      40
508
509 /*
510  * Query whether DRM_I915_GEM_EXECBUFFER2 supports user defined execution
511  * priorities and the driver will attempt to execute batches in priority order.
512  * The param returns a capability bitmask, nonzero implies that the scheduler
513  * is enabled, with different features present according to the mask.
514  *
515  * The initial priority for each batch is supplied by the context and is
516  * controlled via I915_CONTEXT_PARAM_PRIORITY.
517  */
518 #define I915_PARAM_HAS_SCHEDULER         41
519 #define   I915_SCHEDULER_CAP_ENABLED    (1ul << 0)
520 #define   I915_SCHEDULER_CAP_PRIORITY   (1ul << 1)
521 #define   I915_SCHEDULER_CAP_PREEMPTION (1ul << 2)
522 #define   I915_SCHEDULER_CAP_SEMAPHORES (1ul << 3)
523
524 #define I915_PARAM_HUC_STATUS            42
525
526 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to opt-out of
527  * synchronisation with implicit fencing on individual objects.
528  * See EXEC_OBJECT_ASYNC.
529  */
530 #define I915_PARAM_HAS_EXEC_ASYNC        43
531
532 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports explicit fence support -
533  * both being able to pass in a sync_file fd to wait upon before executing,
534  * and being able to return a new sync_file fd that is signaled when the
535  * current request is complete. See I915_EXEC_FENCE_IN and I915_EXEC_FENCE_OUT.
536  */
537 #define I915_PARAM_HAS_EXEC_FENCE        44
538
539 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to capture
540  * user specified bufffers for post-mortem debugging of GPU hangs. See
541  * EXEC_OBJECT_CAPTURE.
542  */
543 #define I915_PARAM_HAS_EXEC_CAPTURE      45
544
545 #define I915_PARAM_SLICE_MASK            46
546
547 /* Assuming it's uniform for each slice, this queries the mask of subslices
548  * per-slice for this system.
549  */
550 #define I915_PARAM_SUBSLICE_MASK         47
551
552 /*
553  * Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying the batch buffer
554  * as the first execobject as opposed to the last. See I915_EXEC_BATCH_FIRST.
555  */
556 #define I915_PARAM_HAS_EXEC_BATCH_FIRST  48
557
558 /* Query whether DRM_I915_GEM_EXECBUFFER2 supports supplying an array of
559  * drm_i915_gem_exec_fence structures.  See I915_EXEC_FENCE_ARRAY.
560  */
561 #define I915_PARAM_HAS_EXEC_FENCE_ARRAY  49
562
563 /*
564  * Query whether every context (both per-file default and user created) is
565  * isolated (insofar as HW supports). If this parameter is not true, then
566  * freshly created contexts may inherit values from an existing context,
567  * rather than default HW values. If true, it also ensures (insofar as HW
568  * supports) that all state set by this context will not leak to any other
569  * context.
570  *
571  * As not every engine across every gen support contexts, the returned
572  * value reports the support of context isolation for individual engines by
573  * returning a bitmask of each engine class set to true if that class supports
574  * isolation.
575  */
576 #define I915_PARAM_HAS_CONTEXT_ISOLATION 50
577
578 /* Frequency of the command streamer timestamps given by the *_TIMESTAMP
579  * registers. This used to be fixed per platform but from CNL onwards, this
580  * might vary depending on the parts.
581  */
582 #define I915_PARAM_CS_TIMESTAMP_FREQUENCY 51
583
584 /*
585  * Once upon a time we supposed that writes through the GGTT would be
586  * immediately in physical memory (once flushed out of the CPU path). However,
587  * on a few different processors and chipsets, this is not necessarily the case
588  * as the writes appear to be buffered internally. Thus a read of the backing
589  * storage (physical memory) via a different path (with different physical tags
590  * to the indirect write via the GGTT) will see stale values from before
591  * the GGTT write. Inside the kernel, we can for the most part keep track of
592  * the different read/write domains in use (e.g. set-domain), but the assumption
593  * of coherency is baked into the ABI, hence reporting its true state in this
594  * parameter.
595  *
596  * Reports true when writes via mmap_gtt are immediately visible following an
597  * lfence to flush the WCB.
598  *
599  * Reports false when writes via mmap_gtt are indeterminately delayed in an in
600  * internal buffer and are _not_ immediately visible to third parties accessing
601  * directly via mmap_cpu/mmap_wc. Use of mmap_gtt as part of an IPC
602  * communications channel when reporting false is strongly disadvised.
603  */
604 #define I915_PARAM_MMAP_GTT_COHERENT    52
605
606 /* Must be kept compact -- no holes and well documented */
607
608 typedef struct drm_i915_getparam {
609         __s32 param;
610         /*
611          * WARNING: Using pointers instead of fixed-size u64 means we need to write
612          * compat32 code. Don't repeat this mistake.
613          */
614         int __user *value;
615 } drm_i915_getparam_t;
616
617 /* Ioctl to set kernel params:
618  */
619 #define I915_SETPARAM_USE_MI_BATCHBUFFER_START            1
620 #define I915_SETPARAM_TEX_LRU_LOG_GRANULARITY             2
621 #define I915_SETPARAM_ALLOW_BATCHBUFFER                   3
622 #define I915_SETPARAM_NUM_USED_FENCES                     4
623 /* Must be kept compact -- no holes */
624
625 typedef struct drm_i915_setparam {
626         int param;
627         int value;
628 } drm_i915_setparam_t;
629
630 /* A memory manager for regions of shared memory:
631  */
632 #define I915_MEM_REGION_AGP 1
633
634 typedef struct drm_i915_mem_alloc {
635         int region;
636         int alignment;
637         int size;
638         int __user *region_offset;      /* offset from start of fb or agp */
639 } drm_i915_mem_alloc_t;
640
641 typedef struct drm_i915_mem_free {
642         int region;
643         int region_offset;
644 } drm_i915_mem_free_t;
645
646 typedef struct drm_i915_mem_init_heap {
647         int region;
648         int size;
649         int start;
650 } drm_i915_mem_init_heap_t;
651
652 /* Allow memory manager to be torn down and re-initialized (eg on
653  * rotate):
654  */
655 typedef struct drm_i915_mem_destroy_heap {
656         int region;
657 } drm_i915_mem_destroy_heap_t;
658
659 /* Allow X server to configure which pipes to monitor for vblank signals
660  */
661 #define DRM_I915_VBLANK_PIPE_A  1
662 #define DRM_I915_VBLANK_PIPE_B  2
663
664 typedef struct drm_i915_vblank_pipe {
665         int pipe;
666 } drm_i915_vblank_pipe_t;
667
668 /* Schedule buffer swap at given vertical blank:
669  */
670 typedef struct drm_i915_vblank_swap {
671         drm_drawable_t drawable;
672         enum drm_vblank_seq_type seqtype;
673         unsigned int sequence;
674 } drm_i915_vblank_swap_t;
675
676 typedef struct drm_i915_hws_addr {
677         __u64 addr;
678 } drm_i915_hws_addr_t;
679
680 struct drm_i915_gem_init {
681         /**
682          * Beginning offset in the GTT to be managed by the DRM memory
683          * manager.
684          */
685         __u64 gtt_start;
686         /**
687          * Ending offset in the GTT to be managed by the DRM memory
688          * manager.
689          */
690         __u64 gtt_end;
691 };
692
693 struct drm_i915_gem_create {
694         /**
695          * Requested size for the object.
696          *
697          * The (page-aligned) allocated size for the object will be returned.
698          */
699         __u64 size;
700         /**
701          * Returned handle for the object.
702          *
703          * Object handles are nonzero.
704          */
705         __u32 handle;
706         __u32 pad;
707 };
708
709 struct drm_i915_gem_pread {
710         /** Handle for the object being read. */
711         __u32 handle;
712         __u32 pad;
713         /** Offset into the object to read from */
714         __u64 offset;
715         /** Length of data to read */
716         __u64 size;
717         /**
718          * Pointer to write the data into.
719          *
720          * This is a fixed-size type for 32/64 compatibility.
721          */
722         __u64 data_ptr;
723 };
724
725 struct drm_i915_gem_pwrite {
726         /** Handle for the object being written to. */
727         __u32 handle;
728         __u32 pad;
729         /** Offset into the object to write to */
730         __u64 offset;
731         /** Length of data to write */
732         __u64 size;
733         /**
734          * Pointer to read the data from.
735          *
736          * This is a fixed-size type for 32/64 compatibility.
737          */
738         __u64 data_ptr;
739 };
740
741 struct drm_i915_gem_mmap {
742         /** Handle for the object being mapped. */
743         __u32 handle;
744         __u32 pad;
745         /** Offset in the object to map. */
746         __u64 offset;
747         /**
748          * Length of data to map.
749          *
750          * The value will be page-aligned.
751          */
752         __u64 size;
753         /**
754          * Returned pointer the data was mapped at.
755          *
756          * This is a fixed-size type for 32/64 compatibility.
757          */
758         __u64 addr_ptr;
759
760         /**
761          * Flags for extended behaviour.
762          *
763          * Added in version 2.
764          */
765         __u64 flags;
766 #define I915_MMAP_WC 0x1
767 };
768
769 struct drm_i915_gem_mmap_gtt {
770         /** Handle for the object being mapped. */
771         __u32 handle;
772         __u32 pad;
773         /**
774          * Fake offset to use for subsequent mmap call
775          *
776          * This is a fixed-size type for 32/64 compatibility.
777          */
778         __u64 offset;
779 };
780
781 struct drm_i915_gem_set_domain {
782         /** Handle for the object */
783         __u32 handle;
784
785         /** New read domains */
786         __u32 read_domains;
787
788         /** New write domain */
789         __u32 write_domain;
790 };
791
792 struct drm_i915_gem_sw_finish {
793         /** Handle for the object */
794         __u32 handle;
795 };
796
797 struct drm_i915_gem_relocation_entry {
798         /**
799          * Handle of the buffer being pointed to by this relocation entry.
800          *
801          * It's appealing to make this be an index into the mm_validate_entry
802          * list to refer to the buffer, but this allows the driver to create
803          * a relocation list for state buffers and not re-write it per
804          * exec using the buffer.
805          */
806         __u32 target_handle;
807
808         /**
809          * Value to be added to the offset of the target buffer to make up
810          * the relocation entry.
811          */
812         __u32 delta;
813
814         /** Offset in the buffer the relocation entry will be written into */
815         __u64 offset;
816
817         /**
818          * Offset value of the target buffer that the relocation entry was last
819          * written as.
820          *
821          * If the buffer has the same offset as last time, we can skip syncing
822          * and writing the relocation.  This value is written back out by
823          * the execbuffer ioctl when the relocation is written.
824          */
825         __u64 presumed_offset;
826
827         /**
828          * Target memory domains read by this operation.
829          */
830         __u32 read_domains;
831
832         /**
833          * Target memory domains written by this operation.
834          *
835          * Note that only one domain may be written by the whole
836          * execbuffer operation, so that where there are conflicts,
837          * the application will get -EINVAL back.
838          */
839         __u32 write_domain;
840 };
841
842 /** @{
843  * Intel memory domains
844  *
845  * Most of these just align with the various caches in
846  * the system and are used to flush and invalidate as
847  * objects end up cached in different domains.
848  */
849 /** CPU cache */
850 #define I915_GEM_DOMAIN_CPU             0x00000001
851 /** Render cache, used by 2D and 3D drawing */
852 #define I915_GEM_DOMAIN_RENDER          0x00000002
853 /** Sampler cache, used by texture engine */
854 #define I915_GEM_DOMAIN_SAMPLER         0x00000004
855 /** Command queue, used to load batch buffers */
856 #define I915_GEM_DOMAIN_COMMAND         0x00000008
857 /** Instruction cache, used by shader programs */
858 #define I915_GEM_DOMAIN_INSTRUCTION     0x00000010
859 /** Vertex address cache */
860 #define I915_GEM_DOMAIN_VERTEX          0x00000020
861 /** GTT domain - aperture and scanout */
862 #define I915_GEM_DOMAIN_GTT             0x00000040
863 /** WC domain - uncached access */
864 #define I915_GEM_DOMAIN_WC              0x00000080
865 /** @} */
866
867 struct drm_i915_gem_exec_object {
868         /**
869          * User's handle for a buffer to be bound into the GTT for this
870          * operation.
871          */
872         __u32 handle;
873
874         /** Number of relocations to be performed on this buffer */
875         __u32 relocation_count;
876         /**
877          * Pointer to array of struct drm_i915_gem_relocation_entry containing
878          * the relocations to be performed in this buffer.
879          */
880         __u64 relocs_ptr;
881
882         /** Required alignment in graphics aperture */
883         __u64 alignment;
884
885         /**
886          * Returned value of the updated offset of the object, for future
887          * presumed_offset writes.
888          */
889         __u64 offset;
890 };
891
892 struct drm_i915_gem_execbuffer {
893         /**
894          * List of buffers to be validated with their relocations to be
895          * performend on them.
896          *
897          * This is a pointer to an array of struct drm_i915_gem_validate_entry.
898          *
899          * These buffers must be listed in an order such that all relocations
900          * a buffer is performing refer to buffers that have already appeared
901          * in the validate list.
902          */
903         __u64 buffers_ptr;
904         __u32 buffer_count;
905
906         /** Offset in the batchbuffer to start execution from. */
907         __u32 batch_start_offset;
908         /** Bytes used in batchbuffer from batch_start_offset */
909         __u32 batch_len;
910         __u32 DR1;
911         __u32 DR4;
912         __u32 num_cliprects;
913         /** This is a struct drm_clip_rect *cliprects */
914         __u64 cliprects_ptr;
915 };
916
917 struct drm_i915_gem_exec_object2 {
918         /**
919          * User's handle for a buffer to be bound into the GTT for this
920          * operation.
921          */
922         __u32 handle;
923
924         /** Number of relocations to be performed on this buffer */
925         __u32 relocation_count;
926         /**
927          * Pointer to array of struct drm_i915_gem_relocation_entry containing
928          * the relocations to be performed in this buffer.
929          */
930         __u64 relocs_ptr;
931
932         /** Required alignment in graphics aperture */
933         __u64 alignment;
934
935         /**
936          * When the EXEC_OBJECT_PINNED flag is specified this is populated by
937          * the user with the GTT offset at which this object will be pinned.
938          * When the I915_EXEC_NO_RELOC flag is specified this must contain the
939          * presumed_offset of the object.
940          * During execbuffer2 the kernel populates it with the value of the
941          * current GTT offset of the object, for future presumed_offset writes.
942          */
943         __u64 offset;
944
945 #define EXEC_OBJECT_NEEDS_FENCE          (1<<0)
946 #define EXEC_OBJECT_NEEDS_GTT            (1<<1)
947 #define EXEC_OBJECT_WRITE                (1<<2)
948 #define EXEC_OBJECT_SUPPORTS_48B_ADDRESS (1<<3)
949 #define EXEC_OBJECT_PINNED               (1<<4)
950 #define EXEC_OBJECT_PAD_TO_SIZE          (1<<5)
951 /* The kernel implicitly tracks GPU activity on all GEM objects, and
952  * synchronises operations with outstanding rendering. This includes
953  * rendering on other devices if exported via dma-buf. However, sometimes
954  * this tracking is too coarse and the user knows better. For example,
955  * if the object is split into non-overlapping ranges shared between different
956  * clients or engines (i.e. suballocating objects), the implicit tracking
957  * by kernel assumes that each operation affects the whole object rather
958  * than an individual range, causing needless synchronisation between clients.
959  * The kernel will also forgo any CPU cache flushes prior to rendering from
960  * the object as the client is expected to be also handling such domain
961  * tracking.
962  *
963  * The kernel maintains the implicit tracking in order to manage resources
964  * used by the GPU - this flag only disables the synchronisation prior to
965  * rendering with this object in this execbuf.
966  *
967  * Opting out of implicit synhronisation requires the user to do its own
968  * explicit tracking to avoid rendering corruption. See, for example,
969  * I915_PARAM_HAS_EXEC_FENCE to order execbufs and execute them asynchronously.
970  */
971 #define EXEC_OBJECT_ASYNC               (1<<6)
972 /* Request that the contents of this execobject be copied into the error
973  * state upon a GPU hang involving this batch for post-mortem debugging.
974  * These buffers are recorded in no particular order as "user" in
975  * /sys/class/drm/cardN/error. Query I915_PARAM_HAS_EXEC_CAPTURE to see
976  * if the kernel supports this flag.
977  */
978 #define EXEC_OBJECT_CAPTURE             (1<<7)
979 /* All remaining bits are MBZ and RESERVED FOR FUTURE USE */
980 #define __EXEC_OBJECT_UNKNOWN_FLAGS -(EXEC_OBJECT_CAPTURE<<1)
981         __u64 flags;
982
983         union {
984                 __u64 rsvd1;
985                 __u64 pad_to_size;
986         };
987         __u64 rsvd2;
988 };
989
990 struct drm_i915_gem_exec_fence {
991         /**
992          * User's handle for a drm_syncobj to wait on or signal.
993          */
994         __u32 handle;
995
996 #define I915_EXEC_FENCE_WAIT            (1<<0)
997 #define I915_EXEC_FENCE_SIGNAL          (1<<1)
998 #define __I915_EXEC_FENCE_UNKNOWN_FLAGS (-(I915_EXEC_FENCE_SIGNAL << 1))
999         __u32 flags;
1000 };
1001
1002 struct drm_i915_gem_execbuffer2 {
1003         /**
1004          * List of gem_exec_object2 structs
1005          */
1006         __u64 buffers_ptr;
1007         __u32 buffer_count;
1008
1009         /** Offset in the batchbuffer to start execution from. */
1010         __u32 batch_start_offset;
1011         /** Bytes used in batchbuffer from batch_start_offset */
1012         __u32 batch_len;
1013         __u32 DR1;
1014         __u32 DR4;
1015         __u32 num_cliprects;
1016         /**
1017          * This is a struct drm_clip_rect *cliprects if I915_EXEC_FENCE_ARRAY
1018          * is not set.  If I915_EXEC_FENCE_ARRAY is set, then this is a
1019          * struct drm_i915_gem_exec_fence *fences.
1020          */
1021         __u64 cliprects_ptr;
1022 #define I915_EXEC_RING_MASK              (0x3f)
1023 #define I915_EXEC_DEFAULT                (0<<0)
1024 #define I915_EXEC_RENDER                 (1<<0)
1025 #define I915_EXEC_BSD                    (2<<0)
1026 #define I915_EXEC_BLT                    (3<<0)
1027 #define I915_EXEC_VEBOX                  (4<<0)
1028
1029 /* Used for switching the constants addressing mode on gen4+ RENDER ring.
1030  * Gen6+ only supports relative addressing to dynamic state (default) and
1031  * absolute addressing.
1032  *
1033  * These flags are ignored for the BSD and BLT rings.
1034  */
1035 #define I915_EXEC_CONSTANTS_MASK        (3<<6)
1036 #define I915_EXEC_CONSTANTS_REL_GENERAL (0<<6) /* default */
1037 #define I915_EXEC_CONSTANTS_ABSOLUTE    (1<<6)
1038 #define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */
1039         __u64 flags;
1040         __u64 rsvd1; /* now used for context info */
1041         __u64 rsvd2;
1042 };
1043
1044 /** Resets the SO write offset registers for transform feedback on gen7. */
1045 #define I915_EXEC_GEN7_SOL_RESET        (1<<8)
1046
1047 /** Request a privileged ("secure") batch buffer. Note only available for
1048  * DRM_ROOT_ONLY | DRM_MASTER processes.
1049  */
1050 #define I915_EXEC_SECURE                (1<<9)
1051
1052 /** Inform the kernel that the batch is and will always be pinned. This
1053  * negates the requirement for a workaround to be performed to avoid
1054  * an incoherent CS (such as can be found on 830/845). If this flag is
1055  * not passed, the kernel will endeavour to make sure the batch is
1056  * coherent with the CS before execution. If this flag is passed,
1057  * userspace assumes the responsibility for ensuring the same.
1058  */
1059 #define I915_EXEC_IS_PINNED             (1<<10)
1060
1061 /** Provide a hint to the kernel that the command stream and auxiliary
1062  * state buffers already holds the correct presumed addresses and so the
1063  * relocation process may be skipped if no buffers need to be moved in
1064  * preparation for the execbuffer.
1065  */
1066 #define I915_EXEC_NO_RELOC              (1<<11)
1067
1068 /** Use the reloc.handle as an index into the exec object array rather
1069  * than as the per-file handle.
1070  */
1071 #define I915_EXEC_HANDLE_LUT            (1<<12)
1072
1073 /** Used for switching BSD rings on the platforms with two BSD rings */
1074 #define I915_EXEC_BSD_SHIFT      (13)
1075 #define I915_EXEC_BSD_MASK       (3 << I915_EXEC_BSD_SHIFT)
1076 /* default ping-pong mode */
1077 #define I915_EXEC_BSD_DEFAULT    (0 << I915_EXEC_BSD_SHIFT)
1078 #define I915_EXEC_BSD_RING1      (1 << I915_EXEC_BSD_SHIFT)
1079 #define I915_EXEC_BSD_RING2      (2 << I915_EXEC_BSD_SHIFT)
1080
1081 /** Tell the kernel that the batchbuffer is processed by
1082  *  the resource streamer.
1083  */
1084 #define I915_EXEC_RESOURCE_STREAMER     (1<<15)
1085
1086 /* Setting I915_EXEC_FENCE_IN implies that lower_32_bits(rsvd2) represent
1087  * a sync_file fd to wait upon (in a nonblocking manner) prior to executing
1088  * the batch.
1089  *
1090  * Returns -EINVAL if the sync_file fd cannot be found.
1091  */
1092 #define I915_EXEC_FENCE_IN              (1<<16)
1093
1094 /* Setting I915_EXEC_FENCE_OUT causes the ioctl to return a sync_file fd
1095  * in the upper_32_bits(rsvd2) upon success. Ownership of the fd is given
1096  * to the caller, and it should be close() after use. (The fd is a regular
1097  * file descriptor and will be cleaned up on process termination. It holds
1098  * a reference to the request, but nothing else.)
1099  *
1100  * The sync_file fd can be combined with other sync_file and passed either
1101  * to execbuf using I915_EXEC_FENCE_IN, to atomic KMS ioctls (so that a flip
1102  * will only occur after this request completes), or to other devices.
1103  *
1104  * Using I915_EXEC_FENCE_OUT requires use of
1105  * DRM_IOCTL_I915_GEM_EXECBUFFER2_WR ioctl so that the result is written
1106  * back to userspace. Failure to do so will cause the out-fence to always
1107  * be reported as zero, and the real fence fd to be leaked.
1108  */
1109 #define I915_EXEC_FENCE_OUT             (1<<17)
1110
1111 /*
1112  * Traditionally the execbuf ioctl has only considered the final element in
1113  * the execobject[] to be the executable batch. Often though, the client
1114  * will known the batch object prior to construction and being able to place
1115  * it into the execobject[] array first can simplify the relocation tracking.
1116  * Setting I915_EXEC_BATCH_FIRST tells execbuf to use element 0 of the
1117  * execobject[] as the * batch instead (the default is to use the last
1118  * element).
1119  */
1120 #define I915_EXEC_BATCH_FIRST           (1<<18)
1121
1122 /* Setting I915_FENCE_ARRAY implies that num_cliprects and cliprects_ptr
1123  * define an array of i915_gem_exec_fence structures which specify a set of
1124  * dma fences to wait upon or signal.
1125  */
1126 #define I915_EXEC_FENCE_ARRAY   (1<<19)
1127
1128 #define __I915_EXEC_UNKNOWN_FLAGS (-(I915_EXEC_FENCE_ARRAY<<1))
1129
1130 #define I915_EXEC_CONTEXT_ID_MASK       (0xffffffff)
1131 #define i915_execbuffer2_set_context_id(eb2, context) \
1132         (eb2).rsvd1 = context & I915_EXEC_CONTEXT_ID_MASK
1133 #define i915_execbuffer2_get_context_id(eb2) \
1134         ((eb2).rsvd1 & I915_EXEC_CONTEXT_ID_MASK)
1135
1136 struct drm_i915_gem_pin {
1137         /** Handle of the buffer to be pinned. */
1138         __u32 handle;
1139         __u32 pad;
1140
1141         /** alignment required within the aperture */
1142         __u64 alignment;
1143
1144         /** Returned GTT offset of the buffer. */
1145         __u64 offset;
1146 };
1147
1148 struct drm_i915_gem_unpin {
1149         /** Handle of the buffer to be unpinned. */
1150         __u32 handle;
1151         __u32 pad;
1152 };
1153
1154 struct drm_i915_gem_busy {
1155         /** Handle of the buffer to check for busy */
1156         __u32 handle;
1157
1158         /** Return busy status
1159          *
1160          * A return of 0 implies that the object is idle (after
1161          * having flushed any pending activity), and a non-zero return that
1162          * the object is still in-flight on the GPU. (The GPU has not yet
1163          * signaled completion for all pending requests that reference the
1164          * object.) An object is guaranteed to become idle eventually (so
1165          * long as no new GPU commands are executed upon it). Due to the
1166          * asynchronous nature of the hardware, an object reported
1167          * as busy may become idle before the ioctl is completed.
1168          *
1169          * Furthermore, if the object is busy, which engine is busy is only
1170          * provided as a guide and only indirectly by reporting its class
1171          * (there may be more than one engine in each class). There are race
1172          * conditions which prevent the report of which engines are busy from
1173          * being always accurate.  However, the converse is not true. If the
1174          * object is idle, the result of the ioctl, that all engines are idle,
1175          * is accurate.
1176          *
1177          * The returned dword is split into two fields to indicate both
1178          * the engine classess on which the object is being read, and the
1179          * engine class on which it is currently being written (if any).
1180          *
1181          * The low word (bits 0:15) indicate if the object is being written
1182          * to by any engine (there can only be one, as the GEM implicit
1183          * synchronisation rules force writes to be serialised). Only the
1184          * engine class (offset by 1, I915_ENGINE_CLASS_RENDER is reported as
1185          * 1 not 0 etc) for the last write is reported.
1186          *
1187          * The high word (bits 16:31) are a bitmask of which engines classes
1188          * are currently reading from the object. Multiple engines may be
1189          * reading from the object simultaneously.
1190          *
1191          * The value of each engine class is the same as specified in the
1192          * I915_CONTEXT_SET_ENGINES parameter and via perf, i.e.
1193          * I915_ENGINE_CLASS_RENDER, I915_ENGINE_CLASS_COPY, etc.
1194          * reported as active itself. Some hardware may have parallel
1195          * execution engines, e.g. multiple media engines, which are
1196          * mapped to the same class identifier and so are not separately
1197          * reported for busyness.
1198          *
1199          * Caveat emptor:
1200          * Only the boolean result of this query is reliable; that is whether
1201          * the object is idle or busy. The report of which engines are busy
1202          * should be only used as a heuristic.
1203          */
1204         __u32 busy;
1205 };
1206
1207 /**
1208  * I915_CACHING_NONE
1209  *
1210  * GPU access is not coherent with cpu caches. Default for machines without an
1211  * LLC.
1212  */
1213 #define I915_CACHING_NONE               0
1214 /**
1215  * I915_CACHING_CACHED
1216  *
1217  * GPU access is coherent with cpu caches and furthermore the data is cached in
1218  * last-level caches shared between cpu cores and the gpu GT. Default on
1219  * machines with HAS_LLC.
1220  */
1221 #define I915_CACHING_CACHED             1
1222 /**
1223  * I915_CACHING_DISPLAY
1224  *
1225  * Special GPU caching mode which is coherent with the scanout engines.
1226  * Transparently falls back to I915_CACHING_NONE on platforms where no special
1227  * cache mode (like write-through or gfdt flushing) is available. The kernel
1228  * automatically sets this mode when using a buffer as a scanout target.
1229  * Userspace can manually set this mode to avoid a costly stall and clflush in
1230  * the hotpath of drawing the first frame.
1231  */
1232 #define I915_CACHING_DISPLAY            2
1233
1234 struct drm_i915_gem_caching {
1235         /**
1236          * Handle of the buffer to set/get the caching level of. */
1237         __u32 handle;
1238
1239         /**
1240          * Cacheing level to apply or return value
1241          *
1242          * bits0-15 are for generic caching control (i.e. the above defined
1243          * values). bits16-31 are reserved for platform-specific variations
1244          * (e.g. l3$ caching on gen7). */
1245         __u32 caching;
1246 };
1247
1248 #define I915_TILING_NONE        0
1249 #define I915_TILING_X           1
1250 #define I915_TILING_Y           2
1251 #define I915_TILING_LAST        I915_TILING_Y
1252
1253 #define I915_BIT_6_SWIZZLE_NONE         0
1254 #define I915_BIT_6_SWIZZLE_9            1
1255 #define I915_BIT_6_SWIZZLE_9_10         2
1256 #define I915_BIT_6_SWIZZLE_9_11         3
1257 #define I915_BIT_6_SWIZZLE_9_10_11      4
1258 /* Not seen by userland */
1259 #define I915_BIT_6_SWIZZLE_UNKNOWN      5
1260 /* Seen by userland. */
1261 #define I915_BIT_6_SWIZZLE_9_17         6
1262 #define I915_BIT_6_SWIZZLE_9_10_17      7
1263
1264 struct drm_i915_gem_set_tiling {
1265         /** Handle of the buffer to have its tiling state updated */
1266         __u32 handle;
1267
1268         /**
1269          * Tiling mode for the object (I915_TILING_NONE, I915_TILING_X,
1270          * I915_TILING_Y).
1271          *
1272          * This value is to be set on request, and will be updated by the
1273          * kernel on successful return with the actual chosen tiling layout.
1274          *
1275          * The tiling mode may be demoted to I915_TILING_NONE when the system
1276          * has bit 6 swizzling that can't be managed correctly by GEM.
1277          *
1278          * Buffer contents become undefined when changing tiling_mode.
1279          */
1280         __u32 tiling_mode;
1281
1282         /**
1283          * Stride in bytes for the object when in I915_TILING_X or
1284          * I915_TILING_Y.
1285          */
1286         __u32 stride;
1287
1288         /**
1289          * Returned address bit 6 swizzling required for CPU access through
1290          * mmap mapping.
1291          */
1292         __u32 swizzle_mode;
1293 };
1294
1295 struct drm_i915_gem_get_tiling {
1296         /** Handle of the buffer to get tiling state for. */
1297         __u32 handle;
1298
1299         /**
1300          * Current tiling mode for the object (I915_TILING_NONE, I915_TILING_X,
1301          * I915_TILING_Y).
1302          */
1303         __u32 tiling_mode;
1304
1305         /**
1306          * Returned address bit 6 swizzling required for CPU access through
1307          * mmap mapping.
1308          */
1309         __u32 swizzle_mode;
1310
1311         /**
1312          * Returned address bit 6 swizzling required for CPU access through
1313          * mmap mapping whilst bound.
1314          */
1315         __u32 phys_swizzle_mode;
1316 };
1317
1318 struct drm_i915_gem_get_aperture {
1319         /** Total size of the aperture used by i915_gem_execbuffer, in bytes */
1320         __u64 aper_size;
1321
1322         /**
1323          * Available space in the aperture used by i915_gem_execbuffer, in
1324          * bytes
1325          */
1326         __u64 aper_available_size;
1327 };
1328
1329 struct drm_i915_get_pipe_from_crtc_id {
1330         /** ID of CRTC being requested **/
1331         __u32 crtc_id;
1332
1333         /** pipe of requested CRTC **/
1334         __u32 pipe;
1335 };
1336
1337 #define I915_MADV_WILLNEED 0
1338 #define I915_MADV_DONTNEED 1
1339 #define __I915_MADV_PURGED 2 /* internal state */
1340
1341 struct drm_i915_gem_madvise {
1342         /** Handle of the buffer to change the backing store advice */
1343         __u32 handle;
1344
1345         /* Advice: either the buffer will be needed again in the near future,
1346          *         or wont be and could be discarded under memory pressure.
1347          */
1348         __u32 madv;
1349
1350         /** Whether the backing store still exists. */
1351         __u32 retained;
1352 };
1353
1354 /* flags */
1355 #define I915_OVERLAY_TYPE_MASK          0xff
1356 #define I915_OVERLAY_YUV_PLANAR         0x01
1357 #define I915_OVERLAY_YUV_PACKED         0x02
1358 #define I915_OVERLAY_RGB                0x03
1359
1360 #define I915_OVERLAY_DEPTH_MASK         0xff00
1361 #define I915_OVERLAY_RGB24              0x1000
1362 #define I915_OVERLAY_RGB16              0x2000
1363 #define I915_OVERLAY_RGB15              0x3000
1364 #define I915_OVERLAY_YUV422             0x0100
1365 #define I915_OVERLAY_YUV411             0x0200
1366 #define I915_OVERLAY_YUV420             0x0300
1367 #define I915_OVERLAY_YUV410             0x0400
1368
1369 #define I915_OVERLAY_SWAP_MASK          0xff0000
1370 #define I915_OVERLAY_NO_SWAP            0x000000
1371 #define I915_OVERLAY_UV_SWAP            0x010000
1372 #define I915_OVERLAY_Y_SWAP             0x020000
1373 #define I915_OVERLAY_Y_AND_UV_SWAP      0x030000
1374
1375 #define I915_OVERLAY_FLAGS_MASK         0xff000000
1376 #define I915_OVERLAY_ENABLE             0x01000000
1377
1378 struct drm_intel_overlay_put_image {
1379         /* various flags and src format description */
1380         __u32 flags;
1381         /* source picture description */
1382         __u32 bo_handle;
1383         /* stride values and offsets are in bytes, buffer relative */
1384         __u16 stride_Y; /* stride for packed formats */
1385         __u16 stride_UV;
1386         __u32 offset_Y; /* offset for packet formats */
1387         __u32 offset_U;
1388         __u32 offset_V;
1389         /* in pixels */
1390         __u16 src_width;
1391         __u16 src_height;
1392         /* to compensate the scaling factors for partially covered surfaces */
1393         __u16 src_scan_width;
1394         __u16 src_scan_height;
1395         /* output crtc description */
1396         __u32 crtc_id;
1397         __u16 dst_x;
1398         __u16 dst_y;
1399         __u16 dst_width;
1400         __u16 dst_height;
1401 };
1402
1403 /* flags */
1404 #define I915_OVERLAY_UPDATE_ATTRS       (1<<0)
1405 #define I915_OVERLAY_UPDATE_GAMMA       (1<<1)
1406 #define I915_OVERLAY_DISABLE_DEST_COLORKEY      (1<<2)
1407 struct drm_intel_overlay_attrs {
1408         __u32 flags;
1409         __u32 color_key;
1410         __s32 brightness;
1411         __u32 contrast;
1412         __u32 saturation;
1413         __u32 gamma0;
1414         __u32 gamma1;
1415         __u32 gamma2;
1416         __u32 gamma3;
1417         __u32 gamma4;
1418         __u32 gamma5;
1419 };
1420
1421 /*
1422  * Intel sprite handling
1423  *
1424  * Color keying works with a min/mask/max tuple.  Both source and destination
1425  * color keying is allowed.
1426  *
1427  * Source keying:
1428  * Sprite pixels within the min & max values, masked against the color channels
1429  * specified in the mask field, will be transparent.  All other pixels will
1430  * be displayed on top of the primary plane.  For RGB surfaces, only the min
1431  * and mask fields will be used; ranged compares are not allowed.
1432  *
1433  * Destination keying:
1434  * Primary plane pixels that match the min value, masked against the color
1435  * channels specified in the mask field, will be replaced by corresponding
1436  * pixels from the sprite plane.
1437  *
1438  * Note that source & destination keying are exclusive; only one can be
1439  * active on a given plane.
1440  */
1441
1442 #define I915_SET_COLORKEY_NONE          (1<<0) /* Deprecated. Instead set
1443                                                 * flags==0 to disable colorkeying.
1444                                                 */
1445 #define I915_SET_COLORKEY_DESTINATION   (1<<1)
1446 #define I915_SET_COLORKEY_SOURCE        (1<<2)
1447 struct drm_intel_sprite_colorkey {
1448         __u32 plane_id;
1449         __u32 min_value;
1450         __u32 channel_mask;
1451         __u32 max_value;
1452         __u32 flags;
1453 };
1454
1455 struct drm_i915_gem_wait {
1456         /** Handle of BO we shall wait on */
1457         __u32 bo_handle;
1458         __u32 flags;
1459         /** Number of nanoseconds to wait, Returns time remaining. */
1460         __s64 timeout_ns;
1461 };
1462
1463 struct drm_i915_gem_context_create {
1464         __u32 ctx_id; /* output: id of new context*/
1465         __u32 pad;
1466 };
1467
1468 struct drm_i915_gem_context_create_ext {
1469         __u32 ctx_id; /* output: id of new context*/
1470         __u32 flags;
1471 #define I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS        (1u << 0)
1472 #define I915_CONTEXT_CREATE_FLAGS_UNKNOWN \
1473         (-(I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS << 1))
1474         __u64 extensions;
1475 };
1476
1477 struct drm_i915_gem_context_param {
1478         __u32 ctx_id;
1479         __u32 size;
1480         __u64 param;
1481 #define I915_CONTEXT_PARAM_BAN_PERIOD   0x1
1482 #define I915_CONTEXT_PARAM_NO_ZEROMAP   0x2
1483 #define I915_CONTEXT_PARAM_GTT_SIZE     0x3
1484 #define I915_CONTEXT_PARAM_NO_ERROR_CAPTURE     0x4
1485 #define I915_CONTEXT_PARAM_BANNABLE     0x5
1486 #define I915_CONTEXT_PARAM_PRIORITY     0x6
1487 #define   I915_CONTEXT_MAX_USER_PRIORITY        1023 /* inclusive */
1488 #define   I915_CONTEXT_DEFAULT_PRIORITY         0
1489 #define   I915_CONTEXT_MIN_USER_PRIORITY        -1023 /* inclusive */
1490         /*
1491          * When using the following param, value should be a pointer to
1492          * drm_i915_gem_context_param_sseu.
1493          */
1494 #define I915_CONTEXT_PARAM_SSEU         0x7
1495
1496 /*
1497  * Not all clients may want to attempt automatic recover of a context after
1498  * a hang (for example, some clients may only submit very small incremental
1499  * batches relying on known logical state of previous batches which will never
1500  * recover correctly and each attempt will hang), and so would prefer that
1501  * the context is forever banned instead.
1502  *
1503  * If set to false (0), after a reset, subsequent (and in flight) rendering
1504  * from this context is discarded, and the client will need to create a new
1505  * context to use instead.
1506  *
1507  * If set to true (1), the kernel will automatically attempt to recover the
1508  * context by skipping the hanging batch and executing the next batch starting
1509  * from the default context state (discarding the incomplete logical context
1510  * state lost due to the reset).
1511  *
1512  * On creation, all new contexts are marked as recoverable.
1513  */
1514 #define I915_CONTEXT_PARAM_RECOVERABLE  0x8
1515
1516         /*
1517          * The id of the associated virtual memory address space (ppGTT) of
1518          * this context. Can be retrieved and passed to another context
1519          * (on the same fd) for both to use the same ppGTT and so share
1520          * address layouts, and avoid reloading the page tables on context
1521          * switches between themselves.
1522          *
1523          * See DRM_I915_GEM_VM_CREATE and DRM_I915_GEM_VM_DESTROY.
1524          */
1525 #define I915_CONTEXT_PARAM_VM           0x9
1526
1527 /*
1528  * I915_CONTEXT_PARAM_ENGINES:
1529  *
1530  * Bind this context to operate on this subset of available engines. Henceforth,
1531  * the I915_EXEC_RING selector for DRM_IOCTL_I915_GEM_EXECBUFFER2 operates as
1532  * an index into this array of engines; I915_EXEC_DEFAULT selecting engine[0]
1533  * and upwards. Slots 0...N are filled in using the specified (class, instance).
1534  * Use
1535  *      engine_class: I915_ENGINE_CLASS_INVALID,
1536  *      engine_instance: I915_ENGINE_CLASS_INVALID_NONE
1537  * to specify a gap in the array that can be filled in later, e.g. by a
1538  * virtual engine used for load balancing.
1539  *
1540  * Setting the number of engines bound to the context to 0, by passing a zero
1541  * sized argument, will revert back to default settings.
1542  *
1543  * See struct i915_context_param_engines.
1544  */
1545 #define I915_CONTEXT_PARAM_ENGINES      0xa
1546 /* Must be kept compact -- no holes and well documented */
1547
1548         __u64 value;
1549 };
1550
1551 /**
1552  * Context SSEU programming
1553  *
1554  * It may be necessary for either functional or performance reason to configure
1555  * a context to run with a reduced number of SSEU (where SSEU stands for Slice/
1556  * Sub-slice/EU).
1557  *
1558  * This is done by configuring SSEU configuration using the below
1559  * @struct drm_i915_gem_context_param_sseu for every supported engine which
1560  * userspace intends to use.
1561  *
1562  * Not all GPUs or engines support this functionality in which case an error
1563  * code -ENODEV will be returned.
1564  *
1565  * Also, flexibility of possible SSEU configuration permutations varies between
1566  * GPU generations and software imposed limitations. Requesting such a
1567  * combination will return an error code of -EINVAL.
1568  *
1569  * NOTE: When perf/OA is active the context's SSEU configuration is ignored in
1570  * favour of a single global setting.
1571  */
1572 struct drm_i915_gem_context_param_sseu {
1573         /*
1574          * Engine class & instance to be configured or queried.
1575          */
1576         struct i915_engine_class_instance engine;
1577
1578         /*
1579          * Unknown flags must be cleared to zero.
1580          */
1581         __u32 flags;
1582 #define I915_CONTEXT_SSEU_FLAG_ENGINE_INDEX (1u << 0)
1583
1584         /*
1585          * Mask of slices to enable for the context. Valid values are a subset
1586          * of the bitmask value returned for I915_PARAM_SLICE_MASK.
1587          */
1588         __u64 slice_mask;
1589
1590         /*
1591          * Mask of subslices to enable for the context. Valid values are a
1592          * subset of the bitmask value return by I915_PARAM_SUBSLICE_MASK.
1593          */
1594         __u64 subslice_mask;
1595
1596         /*
1597          * Minimum/Maximum number of EUs to enable per subslice for the
1598          * context. min_eus_per_subslice must be inferior or equal to
1599          * max_eus_per_subslice.
1600          */
1601         __u16 min_eus_per_subslice;
1602         __u16 max_eus_per_subslice;
1603
1604         /*
1605          * Unused for now. Must be cleared to zero.
1606          */
1607         __u32 rsvd;
1608 };
1609
1610 struct i915_context_param_engines {
1611         __u64 extensions; /* linked chain of extension blocks, 0 terminates */
1612         struct i915_engine_class_instance engines[0];
1613 } __attribute__((packed));
1614
1615 #define I915_DEFINE_CONTEXT_PARAM_ENGINES(name__, N__) struct { \
1616         __u64 extensions; \
1617         struct i915_engine_class_instance engines[N__]; \
1618 } __attribute__((packed)) name__
1619
1620 struct drm_i915_gem_context_create_ext_setparam {
1621 #define I915_CONTEXT_CREATE_EXT_SETPARAM 0
1622         struct i915_user_extension base;
1623         struct drm_i915_gem_context_param param;
1624 };
1625
1626 struct drm_i915_gem_context_destroy {
1627         __u32 ctx_id;
1628         __u32 pad;
1629 };
1630
1631 /*
1632  * DRM_I915_GEM_VM_CREATE -
1633  *
1634  * Create a new virtual memory address space (ppGTT) for use within a context
1635  * on the same file. Extensions can be provided to configure exactly how the
1636  * address space is setup upon creation.
1637  *
1638  * The id of new VM (bound to the fd) for use with I915_CONTEXT_PARAM_VM is
1639  * returned in the outparam @id.
1640  *
1641  * No flags are defined, with all bits reserved and must be zero.
1642  *
1643  * An extension chain maybe provided, starting with @extensions, and terminated
1644  * by the @next_extension being 0. Currently, no extensions are defined.
1645  *
1646  * DRM_I915_GEM_VM_DESTROY -
1647  *
1648  * Destroys a previously created VM id, specified in @id.
1649  *
1650  * No extensions or flags are allowed currently, and so must be zero.
1651  */
1652 struct drm_i915_gem_vm_control {
1653         __u64 extensions;
1654         __u32 flags;
1655         __u32 vm_id;
1656 };
1657
1658 struct drm_i915_reg_read {
1659         /*
1660          * Register offset.
1661          * For 64bit wide registers where the upper 32bits don't immediately
1662          * follow the lower 32bits, the offset of the lower 32bits must
1663          * be specified
1664          */
1665         __u64 offset;
1666 #define I915_REG_READ_8B_WA (1ul << 0)
1667
1668         __u64 val; /* Return value */
1669 };
1670
1671 /* Known registers:
1672  *
1673  * Render engine timestamp - 0x2358 + 64bit - gen7+
1674  * - Note this register returns an invalid value if using the default
1675  *   single instruction 8byte read, in order to workaround that pass
1676  *   flag I915_REG_READ_8B_WA in offset field.
1677  *
1678  */
1679
1680 struct drm_i915_reset_stats {
1681         __u32 ctx_id;
1682         __u32 flags;
1683
1684         /* All resets since boot/module reload, for all contexts */
1685         __u32 reset_count;
1686
1687         /* Number of batches lost when active in GPU, for this context */
1688         __u32 batch_active;
1689
1690         /* Number of batches lost pending for execution, for this context */
1691         __u32 batch_pending;
1692
1693         __u32 pad;
1694 };
1695
1696 struct drm_i915_gem_userptr {
1697         __u64 user_ptr;
1698         __u64 user_size;
1699         __u32 flags;
1700 #define I915_USERPTR_READ_ONLY 0x1
1701 #define I915_USERPTR_UNSYNCHRONIZED 0x80000000
1702         /**
1703          * Returned handle for the object.
1704          *
1705          * Object handles are nonzero.
1706          */
1707         __u32 handle;
1708 };
1709
1710 enum drm_i915_oa_format {
1711         I915_OA_FORMAT_A13 = 1,     /* HSW only */
1712         I915_OA_FORMAT_A29,         /* HSW only */
1713         I915_OA_FORMAT_A13_B8_C8,   /* HSW only */
1714         I915_OA_FORMAT_B4_C8,       /* HSW only */
1715         I915_OA_FORMAT_A45_B8_C8,   /* HSW only */
1716         I915_OA_FORMAT_B4_C8_A16,   /* HSW only */
1717         I915_OA_FORMAT_C4_B8,       /* HSW+ */
1718
1719         /* Gen8+ */
1720         I915_OA_FORMAT_A12,
1721         I915_OA_FORMAT_A12_B8_C8,
1722         I915_OA_FORMAT_A32u40_A4u32_B8_C8,
1723
1724         I915_OA_FORMAT_MAX          /* non-ABI */
1725 };
1726
1727 enum drm_i915_perf_property_id {
1728         /**
1729          * Open the stream for a specific context handle (as used with
1730          * execbuffer2). A stream opened for a specific context this way
1731          * won't typically require root privileges.
1732          */
1733         DRM_I915_PERF_PROP_CTX_HANDLE = 1,
1734
1735         /**
1736          * A value of 1 requests the inclusion of raw OA unit reports as
1737          * part of stream samples.
1738          */
1739         DRM_I915_PERF_PROP_SAMPLE_OA,
1740
1741         /**
1742          * The value specifies which set of OA unit metrics should be
1743          * be configured, defining the contents of any OA unit reports.
1744          */
1745         DRM_I915_PERF_PROP_OA_METRICS_SET,
1746
1747         /**
1748          * The value specifies the size and layout of OA unit reports.
1749          */
1750         DRM_I915_PERF_PROP_OA_FORMAT,
1751
1752         /**
1753          * Specifying this property implicitly requests periodic OA unit
1754          * sampling and (at least on Haswell) the sampling frequency is derived
1755          * from this exponent as follows:
1756          *
1757          *   80ns * 2^(period_exponent + 1)
1758          */
1759         DRM_I915_PERF_PROP_OA_EXPONENT,
1760
1761         DRM_I915_PERF_PROP_MAX /* non-ABI */
1762 };
1763
1764 struct drm_i915_perf_open_param {
1765         __u32 flags;
1766 #define I915_PERF_FLAG_FD_CLOEXEC       (1<<0)
1767 #define I915_PERF_FLAG_FD_NONBLOCK      (1<<1)
1768 #define I915_PERF_FLAG_DISABLED         (1<<2)
1769
1770         /** The number of u64 (id, value) pairs */
1771         __u32 num_properties;
1772
1773         /**
1774          * Pointer to array of u64 (id, value) pairs configuring the stream
1775          * to open.
1776          */
1777         __u64 properties_ptr;
1778 };
1779
1780 /**
1781  * Enable data capture for a stream that was either opened in a disabled state
1782  * via I915_PERF_FLAG_DISABLED or was later disabled via
1783  * I915_PERF_IOCTL_DISABLE.
1784  *
1785  * It is intended to be cheaper to disable and enable a stream than it may be
1786  * to close and re-open a stream with the same configuration.
1787  *
1788  * It's undefined whether any pending data for the stream will be lost.
1789  */
1790 #define I915_PERF_IOCTL_ENABLE  _IO('i', 0x0)
1791
1792 /**
1793  * Disable data capture for a stream.
1794  *
1795  * It is an error to try and read a stream that is disabled.
1796  */
1797 #define I915_PERF_IOCTL_DISABLE _IO('i', 0x1)
1798
1799 /**
1800  * Common to all i915 perf records
1801  */
1802 struct drm_i915_perf_record_header {
1803         __u32 type;
1804         __u16 pad;
1805         __u16 size;
1806 };
1807
1808 enum drm_i915_perf_record_type {
1809
1810         /**
1811          * Samples are the work horse record type whose contents are extensible
1812          * and defined when opening an i915 perf stream based on the given
1813          * properties.
1814          *
1815          * Boolean properties following the naming convention
1816          * DRM_I915_PERF_SAMPLE_xyz_PROP request the inclusion of 'xyz' data in
1817          * every sample.
1818          *
1819          * The order of these sample properties given by userspace has no
1820          * affect on the ordering of data within a sample. The order is
1821          * documented here.
1822          *
1823          * struct {
1824          *     struct drm_i915_perf_record_header header;
1825          *
1826          *     { u32 oa_report[]; } && DRM_I915_PERF_PROP_SAMPLE_OA
1827          * };
1828          */
1829         DRM_I915_PERF_RECORD_SAMPLE = 1,
1830
1831         /*
1832          * Indicates that one or more OA reports were not written by the
1833          * hardware. This can happen for example if an MI_REPORT_PERF_COUNT
1834          * command collides with periodic sampling - which would be more likely
1835          * at higher sampling frequencies.
1836          */
1837         DRM_I915_PERF_RECORD_OA_REPORT_LOST = 2,
1838
1839         /**
1840          * An error occurred that resulted in all pending OA reports being lost.
1841          */
1842         DRM_I915_PERF_RECORD_OA_BUFFER_LOST = 3,
1843
1844         DRM_I915_PERF_RECORD_MAX /* non-ABI */
1845 };
1846
1847 /**
1848  * Structure to upload perf dynamic configuration into the kernel.
1849  */
1850 struct drm_i915_perf_oa_config {
1851         /** String formatted like "%08x-%04x-%04x-%04x-%012x" */
1852         char uuid[36];
1853
1854         __u32 n_mux_regs;
1855         __u32 n_boolean_regs;
1856         __u32 n_flex_regs;
1857
1858         /*
1859          * These fields are pointers to tuples of u32 values (register address,
1860          * value). For example the expected length of the buffer pointed by
1861          * mux_regs_ptr is (2 * sizeof(u32) * n_mux_regs).
1862          */
1863         __u64 mux_regs_ptr;
1864         __u64 boolean_regs_ptr;
1865         __u64 flex_regs_ptr;
1866 };
1867
1868 struct drm_i915_query_item {
1869         __u64 query_id;
1870 #define DRM_I915_QUERY_TOPOLOGY_INFO    1
1871 /* Must be kept compact -- no holes and well documented */
1872
1873         /*
1874          * When set to zero by userspace, this is filled with the size of the
1875          * data to be written at the data_ptr pointer. The kernel sets this
1876          * value to a negative value to signal an error on a particular query
1877          * item.
1878          */
1879         __s32 length;
1880
1881         /*
1882          * Unused for now. Must be cleared to zero.
1883          */
1884         __u32 flags;
1885
1886         /*
1887          * Data will be written at the location pointed by data_ptr when the
1888          * value of length matches the length of the data to be written by the
1889          * kernel.
1890          */
1891         __u64 data_ptr;
1892 };
1893
1894 struct drm_i915_query {
1895         __u32 num_items;
1896
1897         /*
1898          * Unused for now. Must be cleared to zero.
1899          */
1900         __u32 flags;
1901
1902         /*
1903          * This points to an array of num_items drm_i915_query_item structures.
1904          */
1905         __u64 items_ptr;
1906 };
1907
1908 /*
1909  * Data written by the kernel with query DRM_I915_QUERY_TOPOLOGY_INFO :
1910  *
1911  * data: contains the 3 pieces of information :
1912  *
1913  * - the slice mask with one bit per slice telling whether a slice is
1914  *   available. The availability of slice X can be queried with the following
1915  *   formula :
1916  *
1917  *           (data[X / 8] >> (X % 8)) & 1
1918  *
1919  * - the subslice mask for each slice with one bit per subslice telling
1920  *   whether a subslice is available. The availability of subslice Y in slice
1921  *   X can be queried with the following formula :
1922  *
1923  *           (data[subslice_offset +
1924  *                 X * subslice_stride +
1925  *                 Y / 8] >> (Y % 8)) & 1
1926  *
1927  * - the EU mask for each subslice in each slice with one bit per EU telling
1928  *   whether an EU is available. The availability of EU Z in subslice Y in
1929  *   slice X can be queried with the following formula :
1930  *
1931  *           (data[eu_offset +
1932  *                 (X * max_subslices + Y) * eu_stride +
1933  *                 Z / 8] >> (Z % 8)) & 1
1934  */
1935 struct drm_i915_query_topology_info {
1936         /*
1937          * Unused for now. Must be cleared to zero.
1938          */
1939         __u16 flags;
1940
1941         __u16 max_slices;
1942         __u16 max_subslices;
1943         __u16 max_eus_per_subslice;
1944
1945         /*
1946          * Offset in data[] at which the subslice masks are stored.
1947          */
1948         __u16 subslice_offset;
1949
1950         /*
1951          * Stride at which each of the subslice masks for each slice are
1952          * stored.
1953          */
1954         __u16 subslice_stride;
1955
1956         /*
1957          * Offset in data[] at which the EU masks are stored.
1958          */
1959         __u16 eu_offset;
1960
1961         /*
1962          * Stride at which each of the EU masks for each subslice are stored.
1963          */
1964         __u16 eu_stride;
1965
1966         __u8 data[];
1967 };
1968
1969 #if defined(__cplusplus)
1970 }
1971 #endif
1972
1973 #endif /* _UAPI_I915_DRM_H_ */