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