blob: bbbaffad772d3330907425879d2d03ba2a392fdc [file] [log] [blame]
Christopher Ferrise0845012014-07-09 14:58:51 -07001/*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -08005 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
Christopher Ferrise0845012014-07-09 14:58:51 -070011 *
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -080012 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
Christopher Ferrise0845012014-07-09 14:58:51 -070015 *
Christopher Ferris2fd4b3c2017-02-21 12:32:08 -080016 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
Christopher Ferrise0845012014-07-09 14:58:51 -070023 */
24
25#ifndef __MSM_DRM_H__
26#define __MSM_DRM_H__
27
Christopher Ferrisccfaccd2016-08-24 12:11:31 -070028#include "drm.h"
29
30#if defined(__cplusplus)
31extern "C" {
32#endif
Christopher Ferrise0845012014-07-09 14:58:51 -070033
34/* Please note that modifications to all structs defined here are
35 * subject to backwards-compatibility constraints:
Christopher Ferris12e1f282016-02-04 12:35:07 -080036 * 1) Do not use pointers, use __u64 instead for 32 bit / 64 bit
Christopher Ferrise0845012014-07-09 14:58:51 -070037 * user/kernel compatibility
38 * 2) Keep fields aligned to their size
39 * 3) Because of how drm_ioctl() works, we can add new fields at
40 * the end of an ioctl if some care is taken: drm_ioctl() will
41 * zero out the new fields at the tail of the ioctl, so a zero
42 * value should have a backwards compatible meaning. And for
43 * output params, userspace won't see the newly added output
44 * fields.. so that has to be somehow ok.
45 */
46
47#define MSM_PIPE_NONE 0x00
48#define MSM_PIPE_2D0 0x01
49#define MSM_PIPE_2D1 0x02
50#define MSM_PIPE_3D0 0x10
51
Christopher Ferris33185402017-01-13 13:28:52 -080052/* The pipe-id just uses the lower bits, so can be OR'd with flags in
53 * the upper 16 bits (which could be extended further, if needed, maybe
54 * we extend/overload the pipe-id some day to deal with multiple rings,
55 * but even then I don't think we need the full lower 16 bits).
56 */
57#define MSM_PIPE_ID_MASK 0xffff
58#define MSM_PIPE_ID(x) ((x) & MSM_PIPE_ID_MASK)
59#define MSM_PIPE_FLAGS(x) ((x) & ~MSM_PIPE_ID_MASK)
60
Christopher Ferrise0845012014-07-09 14:58:51 -070061/* timeouts are specified in clock-monotonic absolute times (to simplify
62 * restarting interrupted ioctls). The following struct is logically the
63 * same as 'struct timespec' but 32/64b ABI safe.
64 */
65struct drm_msm_timespec {
Christopher Ferris12e1f282016-02-04 12:35:07 -080066 __s64 tv_sec; /* seconds */
67 __s64 tv_nsec; /* nanoseconds */
Christopher Ferrise0845012014-07-09 14:58:51 -070068};
69
70#define MSM_PARAM_GPU_ID 0x01
71#define MSM_PARAM_GMEM_SIZE 0x02
Christopher Ferris31475242014-09-02 17:43:51 -070072#define MSM_PARAM_CHIP_ID 0x03
Christopher Ferrisccfaccd2016-08-24 12:11:31 -070073#define MSM_PARAM_MAX_FREQ 0x04
74#define MSM_PARAM_TIMESTAMP 0x05
Christopher Ferris0543f742017-07-26 13:09:46 -070075#define MSM_PARAM_GMEM_BASE 0x06
Christopher Ferrisa1a109e2018-01-31 15:03:12 -080076#define MSM_PARAM_NR_RINGS 0x07
Christopher Ferrise0845012014-07-09 14:58:51 -070077
78struct drm_msm_param {
Christopher Ferris12e1f282016-02-04 12:35:07 -080079 __u32 pipe; /* in, MSM_PIPE_x */
80 __u32 param; /* in, MSM_PARAM_x */
81 __u64 value; /* out (get_param) or in (set_param) */
Christopher Ferrise0845012014-07-09 14:58:51 -070082};
83
84/*
85 * GEM buffers:
86 */
87
88#define MSM_BO_SCANOUT 0x00000001 /* scanout capable */
89#define MSM_BO_GPU_READONLY 0x00000002
90#define MSM_BO_CACHE_MASK 0x000f0000
91/* cache modes */
92#define MSM_BO_CACHED 0x00010000
93#define MSM_BO_WC 0x00020000
94#define MSM_BO_UNCACHED 0x00040000
95
Christopher Ferris31475242014-09-02 17:43:51 -070096#define MSM_BO_FLAGS (MSM_BO_SCANOUT | \
97 MSM_BO_GPU_READONLY | \
98 MSM_BO_CACHED | \
99 MSM_BO_WC | \
100 MSM_BO_UNCACHED)
101
Christopher Ferrise0845012014-07-09 14:58:51 -0700102struct drm_msm_gem_new {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800103 __u64 size; /* in */
104 __u32 flags; /* in, mask of MSM_BO_x */
105 __u32 handle; /* out */
Christopher Ferrise0845012014-07-09 14:58:51 -0700106};
107
Christopher Ferris25981132017-11-14 16:53:49 -0800108#define MSM_INFO_IOVA 0x01
109
110#define MSM_INFO_FLAGS (MSM_INFO_IOVA)
111
Christopher Ferrise0845012014-07-09 14:58:51 -0700112struct drm_msm_gem_info {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800113 __u32 handle; /* in */
Christopher Ferris25981132017-11-14 16:53:49 -0800114 __u32 flags; /* in - combination of MSM_INFO_* flags */
115 __u64 offset; /* out, mmap() offset or iova */
Christopher Ferrise0845012014-07-09 14:58:51 -0700116};
117
118#define MSM_PREP_READ 0x01
119#define MSM_PREP_WRITE 0x02
120#define MSM_PREP_NOSYNC 0x04
121
Christopher Ferris31475242014-09-02 17:43:51 -0700122#define MSM_PREP_FLAGS (MSM_PREP_READ | MSM_PREP_WRITE | MSM_PREP_NOSYNC)
123
Christopher Ferrise0845012014-07-09 14:58:51 -0700124struct drm_msm_gem_cpu_prep {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800125 __u32 handle; /* in */
126 __u32 op; /* in, mask of MSM_PREP_x */
Christopher Ferrise0845012014-07-09 14:58:51 -0700127 struct drm_msm_timespec timeout; /* in */
128};
129
130struct drm_msm_gem_cpu_fini {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800131 __u32 handle; /* in */
Christopher Ferrise0845012014-07-09 14:58:51 -0700132};
133
134/*
135 * Cmdstream Submission:
136 */
137
138/* The value written into the cmdstream is logically:
139 *
140 * ((relocbuf->gpuaddr + reloc_offset) << shift) | or
141 *
142 * When we have GPU's w/ >32bit ptrs, it should be possible to deal
143 * with this by emit'ing two reloc entries with appropriate shift
144 * values. Or a new MSM_SUBMIT_CMD_x type would also be an option.
145 *
146 * NOTE that reloc's must be sorted by order of increasing submit_offset,
147 * otherwise EINVAL.
148 */
149struct drm_msm_gem_submit_reloc {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800150 __u32 submit_offset; /* in, offset from submit_bo */
151 __u32 or; /* in, value OR'd with result */
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700152 __s32 shift; /* in, amount of left shift (can be negative) */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800153 __u32 reloc_idx; /* in, index of reloc_bo buffer */
154 __u64 reloc_offset; /* in, offset from start of reloc_bo */
Christopher Ferrise0845012014-07-09 14:58:51 -0700155};
156
157/* submit-types:
158 * BUF - this cmd buffer is executed normally.
159 * IB_TARGET_BUF - this cmd buffer is an IB target. Reloc's are
160 * processed normally, but the kernel does not setup an IB to
161 * this buffer in the first-level ringbuffer
162 * CTX_RESTORE_BUF - only executed if there has been a GPU context
163 * switch since the last SUBMIT ioctl
164 */
165#define MSM_SUBMIT_CMD_BUF 0x0001
166#define MSM_SUBMIT_CMD_IB_TARGET_BUF 0x0002
167#define MSM_SUBMIT_CMD_CTX_RESTORE_BUF 0x0003
168struct drm_msm_gem_submit_cmd {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800169 __u32 type; /* in, one of MSM_SUBMIT_CMD_x */
170 __u32 submit_idx; /* in, index of submit_bo cmdstream buffer */
171 __u32 submit_offset; /* in, offset into submit_bo */
172 __u32 size; /* in, cmdstream size */
173 __u32 pad;
174 __u32 nr_relocs; /* in, number of submit_reloc's */
Christopher Ferris25981132017-11-14 16:53:49 -0800175 __u64 relocs; /* in, ptr to array of submit_reloc's */
Christopher Ferrise0845012014-07-09 14:58:51 -0700176};
177
178/* Each buffer referenced elsewhere in the cmdstream submit (ie. the
179 * cmdstream buffer(s) themselves or reloc entries) has one (and only
180 * one) entry in the submit->bos[] table.
181 *
182 * As a optimization, the current buffer (gpu virtual address) can be
183 * passed back through the 'presumed' field. If on a subsequent reloc,
184 * userspace passes back a 'presumed' address that is still valid,
185 * then patching the cmdstream for this entry is skipped. This can
186 * avoid kernel needing to map/access the cmdstream bo in the common
187 * case.
188 */
189#define MSM_SUBMIT_BO_READ 0x0001
190#define MSM_SUBMIT_BO_WRITE 0x0002
Christopher Ferris31475242014-09-02 17:43:51 -0700191
192#define MSM_SUBMIT_BO_FLAGS (MSM_SUBMIT_BO_READ | MSM_SUBMIT_BO_WRITE)
193
Christopher Ferrise0845012014-07-09 14:58:51 -0700194struct drm_msm_gem_submit_bo {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800195 __u32 flags; /* in, mask of MSM_SUBMIT_BO_x */
196 __u32 handle; /* in, GEM handle */
197 __u64 presumed; /* in/out, presumed buffer address */
Christopher Ferrise0845012014-07-09 14:58:51 -0700198};
199
Christopher Ferris33185402017-01-13 13:28:52 -0800200/* Valid submit ioctl flags: */
201#define MSM_SUBMIT_NO_IMPLICIT 0x80000000 /* disable implicit sync */
202#define MSM_SUBMIT_FENCE_FD_IN 0x40000000 /* enable input fence_fd */
203#define MSM_SUBMIT_FENCE_FD_OUT 0x20000000 /* enable output fence_fd */
204#define MSM_SUBMIT_FLAGS ( \
205 MSM_SUBMIT_NO_IMPLICIT | \
206 MSM_SUBMIT_FENCE_FD_IN | \
207 MSM_SUBMIT_FENCE_FD_OUT | \
208 0)
209
Christopher Ferrise0845012014-07-09 14:58:51 -0700210/* Each cmdstream submit consists of a table of buffers involved, and
211 * one or more cmdstream buffers. This allows for conditional execution
212 * (context-restore), and IB buffers needed for per tile/bin draw cmds.
213 */
214struct drm_msm_gem_submit {
Christopher Ferris33185402017-01-13 13:28:52 -0800215 __u32 flags; /* MSM_PIPE_x | MSM_SUBMIT_x */
Christopher Ferris12e1f282016-02-04 12:35:07 -0800216 __u32 fence; /* out */
217 __u32 nr_bos; /* in, number of submit_bo's */
218 __u32 nr_cmds; /* in, number of submit_cmd's */
Christopher Ferris25981132017-11-14 16:53:49 -0800219 __u64 bos; /* in, ptr to array of submit_bo's */
220 __u64 cmds; /* in, ptr to array of submit_cmd's */
Christopher Ferris33185402017-01-13 13:28:52 -0800221 __s32 fence_fd; /* in/out fence fd (see MSM_SUBMIT_FENCE_FD_IN/OUT) */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800222 __u32 queueid; /* in, submitqueue id */
Christopher Ferrise0845012014-07-09 14:58:51 -0700223};
224
225/* The normal way to synchronize with the GPU is just to CPU_PREP on
226 * a buffer if you need to access it from the CPU (other cmdstream
227 * submission from same or other contexts, PAGE_FLIP ioctl, etc, all
228 * handle the required synchronization under the hood). This ioctl
229 * mainly just exists as a way to implement the gallium pipe_fence
230 * APIs without requiring a dummy bo to synchronize on.
231 */
232struct drm_msm_wait_fence {
Christopher Ferris12e1f282016-02-04 12:35:07 -0800233 __u32 fence; /* in */
234 __u32 pad;
Christopher Ferrise0845012014-07-09 14:58:51 -0700235 struct drm_msm_timespec timeout; /* in */
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800236 __u32 queueid; /* in, submitqueue id */
Christopher Ferrise0845012014-07-09 14:58:51 -0700237};
238
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800239/* madvise provides a way to tell the kernel in case a buffers contents
240 * can be discarded under memory pressure, which is useful for userspace
241 * bo cache where we want to optimistically hold on to buffer allocate
242 * and potential mmap, but allow the pages to be discarded under memory
243 * pressure.
244 *
245 * Typical usage would involve madvise(DONTNEED) when buffer enters BO
246 * cache, and madvise(WILLNEED) if trying to recycle buffer from BO cache.
247 * In the WILLNEED case, 'retained' indicates to userspace whether the
248 * backing pages still exist.
249 */
250#define MSM_MADV_WILLNEED 0 /* backing pages are needed, status returned in 'retained' */
251#define MSM_MADV_DONTNEED 1 /* backing pages not needed */
252#define __MSM_MADV_PURGED 2 /* internal state */
253
254struct drm_msm_gem_madvise {
255 __u32 handle; /* in, GEM handle */
256 __u32 madv; /* in, MSM_MADV_x */
257 __u32 retained; /* out, whether backing store still exists */
258};
259
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800260/*
261 * Draw queues allow the user to set specific submission parameter. Command
262 * submissions specify a specific submitqueue to use. ID 0 is reserved for
263 * backwards compatibility as a "default" submitqueue
264 */
265
266#define MSM_SUBMITQUEUE_FLAGS (0)
267
268struct drm_msm_submitqueue {
269 __u32 flags; /* in, MSM_SUBMITQUEUE_x */
270 __u32 prio; /* in, Priority level */
271 __u32 id; /* out, identifier */
272};
273
Christopher Ferrise0845012014-07-09 14:58:51 -0700274#define DRM_MSM_GET_PARAM 0x00
275/* placeholder:
276#define DRM_MSM_SET_PARAM 0x01
277 */
278#define DRM_MSM_GEM_NEW 0x02
279#define DRM_MSM_GEM_INFO 0x03
280#define DRM_MSM_GEM_CPU_PREP 0x04
281#define DRM_MSM_GEM_CPU_FINI 0x05
282#define DRM_MSM_GEM_SUBMIT 0x06
283#define DRM_MSM_WAIT_FENCE 0x07
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800284#define DRM_MSM_GEM_MADVISE 0x08
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800285/* placeholder:
286#define DRM_MSM_GEM_SVM_NEW 0x09
287 */
288#define DRM_MSM_SUBMITQUEUE_NEW 0x0A
289#define DRM_MSM_SUBMITQUEUE_CLOSE 0x0B
Christopher Ferrise0845012014-07-09 14:58:51 -0700290
291#define DRM_IOCTL_MSM_GET_PARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GET_PARAM, struct drm_msm_param)
292#define DRM_IOCTL_MSM_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_NEW, struct drm_msm_gem_new)
293#define DRM_IOCTL_MSM_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_INFO, struct drm_msm_gem_info)
294#define DRM_IOCTL_MSM_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_GEM_CPU_PREP, struct drm_msm_gem_cpu_prep)
295#define DRM_IOCTL_MSM_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_GEM_CPU_FINI, struct drm_msm_gem_cpu_fini)
296#define DRM_IOCTL_MSM_GEM_SUBMIT DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_SUBMIT, struct drm_msm_gem_submit)
297#define DRM_IOCTL_MSM_WAIT_FENCE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_WAIT_FENCE, struct drm_msm_wait_fence)
Christopher Ferris6e3550f2016-12-12 14:51:18 -0800298#define DRM_IOCTL_MSM_GEM_MADVISE DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_MADVISE, struct drm_msm_gem_madvise)
Christopher Ferrisa1a109e2018-01-31 15:03:12 -0800299#define DRM_IOCTL_MSM_SUBMITQUEUE_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_NEW, struct drm_msm_submitqueue)
300#define DRM_IOCTL_MSM_SUBMITQUEUE_CLOSE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_SUBMITQUEUE_CLOSE, __u32)
Christopher Ferrise0845012014-07-09 14:58:51 -0700301
Christopher Ferrisccfaccd2016-08-24 12:11:31 -0700302#if defined(__cplusplus)
303}
304#endif
305
Christopher Ferrise0845012014-07-09 14:58:51 -0700306#endif /* __MSM_DRM_H__ */