blob: 7823f6f3048bc963324dd8ab700f2a903b867e03 [file] [log] [blame]
Rob Clark7198e6b2013-07-19 12:59:32 -04001/*
2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __MSM_DRM_H__
19#define __MSM_DRM_H__
20
Gabriel Laskar06577d02015-11-30 15:10:49 +010021#include "drm.h"
Alan Kwongbb27c092016-07-20 16:41:25 -040022#include <stddef.h>
23#include "sde_drm.h"
Rob Clark7198e6b2013-07-19 12:59:32 -040024
Emil Velikova62424e2016-04-07 19:03:46 +010025#if defined(__cplusplus)
26extern "C" {
27#endif
28
Rob Clark7198e6b2013-07-19 12:59:32 -040029/* Please note that modifications to all structs defined here are
30 * subject to backwards-compatibility constraints:
Mikko Rapeli7f8fc882015-05-30 17:38:08 +020031 * 1) Do not use pointers, use __u64 instead for 32 bit / 64 bit
Rob Clark7198e6b2013-07-19 12:59:32 -040032 * user/kernel compatibility
33 * 2) Keep fields aligned to their size
34 * 3) Because of how drm_ioctl() works, we can add new fields at
35 * the end of an ioctl if some care is taken: drm_ioctl() will
36 * zero out the new fields at the tail of the ioctl, so a zero
37 * value should have a backwards compatible meaning. And for
38 * output params, userspace won't see the newly added output
39 * fields.. so that has to be somehow ok.
40 */
41
42#define MSM_PIPE_NONE 0x00
43#define MSM_PIPE_2D0 0x01
44#define MSM_PIPE_2D1 0x02
45#define MSM_PIPE_3D0 0x10
46
Rob Clarkd9c181e2016-04-23 10:08:59 -040047/* The pipe-id just uses the lower bits, so can be OR'd with flags in
48 * the upper 16 bits (which could be extended further, if needed, maybe
49 * we extend/overload the pipe-id some day to deal with multiple rings,
50 * but even then I don't think we need the full lower 16 bits).
51 */
52#define MSM_PIPE_ID_MASK 0xffff
53#define MSM_PIPE_ID(x) ((x) & MSM_PIPE_ID_MASK)
54#define MSM_PIPE_FLAGS(x) ((x) & ~MSM_PIPE_ID_MASK)
55
Rob Clark7198e6b2013-07-19 12:59:32 -040056/* timeouts are specified in clock-monotonic absolute times (to simplify
57 * restarting interrupted ioctls). The following struct is logically the
58 * same as 'struct timespec' but 32/64b ABI safe.
59 */
60struct drm_msm_timespec {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +020061 __s64 tv_sec; /* seconds */
62 __s64 tv_nsec; /* nanoseconds */
Rob Clark7198e6b2013-07-19 12:59:32 -040063};
64
65#define MSM_PARAM_GPU_ID 0x01
66#define MSM_PARAM_GMEM_SIZE 0x02
Rob Clark4e1cbaa2014-02-04 14:16:04 -050067#define MSM_PARAM_CHIP_ID 0x03
Rob Clark4102a9e2016-02-09 12:05:30 -050068#define MSM_PARAM_MAX_FREQ 0x04
Rob Clark6c77d1a2016-02-22 06:26:21 -050069#define MSM_PARAM_TIMESTAMP 0x05
Rob Clark7198e6b2013-07-19 12:59:32 -040070
71struct drm_msm_param {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +020072 __u32 pipe; /* in, MSM_PIPE_x */
73 __u32 param; /* in, MSM_PARAM_x */
74 __u64 value; /* out (get_param) or in (set_param) */
Rob Clark7198e6b2013-07-19 12:59:32 -040075};
76
77/*
78 * GEM buffers:
79 */
80
81#define MSM_BO_SCANOUT 0x00000001 /* scanout capable */
82#define MSM_BO_GPU_READONLY 0x00000002
83#define MSM_BO_CACHE_MASK 0x000f0000
84/* cache modes */
85#define MSM_BO_CACHED 0x00010000
86#define MSM_BO_WC 0x00020000
87#define MSM_BO_UNCACHED 0x00040000
88
Rob Clark93ddb0d2014-03-03 09:42:33 -050089#define MSM_BO_FLAGS (MSM_BO_SCANOUT | \
90 MSM_BO_GPU_READONLY | \
91 MSM_BO_CACHED | \
92 MSM_BO_WC | \
93 MSM_BO_UNCACHED)
94
Rob Clark7198e6b2013-07-19 12:59:32 -040095struct drm_msm_gem_new {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +020096 __u64 size; /* in */
97 __u32 flags; /* in, mask of MSM_BO_x */
98 __u32 handle; /* out */
Rob Clark7198e6b2013-07-19 12:59:32 -040099};
100
101struct drm_msm_gem_info {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200102 __u32 handle; /* in */
103 __u32 pad;
104 __u64 offset; /* out, offset to pass to mmap() */
Rob Clark7198e6b2013-07-19 12:59:32 -0400105};
106
107#define MSM_PREP_READ 0x01
108#define MSM_PREP_WRITE 0x02
109#define MSM_PREP_NOSYNC 0x04
110
Rob Clark93ddb0d2014-03-03 09:42:33 -0500111#define MSM_PREP_FLAGS (MSM_PREP_READ | MSM_PREP_WRITE | MSM_PREP_NOSYNC)
112
Rob Clark7198e6b2013-07-19 12:59:32 -0400113struct drm_msm_gem_cpu_prep {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200114 __u32 handle; /* in */
115 __u32 op; /* in, mask of MSM_PREP_x */
Rob Clark7198e6b2013-07-19 12:59:32 -0400116 struct drm_msm_timespec timeout; /* in */
117};
118
119struct drm_msm_gem_cpu_fini {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200120 __u32 handle; /* in */
Rob Clark7198e6b2013-07-19 12:59:32 -0400121};
122
123/*
124 * Cmdstream Submission:
125 */
126
127/* The value written into the cmdstream is logically:
128 *
129 * ((relocbuf->gpuaddr + reloc_offset) << shift) | or
130 *
131 * When we have GPU's w/ >32bit ptrs, it should be possible to deal
132 * with this by emit'ing two reloc entries with appropriate shift
133 * values. Or a new MSM_SUBMIT_CMD_x type would also be an option.
134 *
135 * NOTE that reloc's must be sorted by order of increasing submit_offset,
136 * otherwise EINVAL.
137 */
138struct drm_msm_gem_submit_reloc {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200139 __u32 submit_offset; /* in, offset from submit_bo */
140 __u32 or; /* in, value OR'd with result */
Rob Clark8979a052015-12-14 09:59:56 -0500141 __s32 shift; /* in, amount of left shift (can be negative) */
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200142 __u32 reloc_idx; /* in, index of reloc_bo buffer */
143 __u64 reloc_offset; /* in, offset from start of reloc_bo */
Rob Clark7198e6b2013-07-19 12:59:32 -0400144};
145
146/* submit-types:
147 * BUF - this cmd buffer is executed normally.
148 * IB_TARGET_BUF - this cmd buffer is an IB target. Reloc's are
149 * processed normally, but the kernel does not setup an IB to
150 * this buffer in the first-level ringbuffer
151 * CTX_RESTORE_BUF - only executed if there has been a GPU context
152 * switch since the last SUBMIT ioctl
153 */
154#define MSM_SUBMIT_CMD_BUF 0x0001
155#define MSM_SUBMIT_CMD_IB_TARGET_BUF 0x0002
156#define MSM_SUBMIT_CMD_CTX_RESTORE_BUF 0x0003
157struct drm_msm_gem_submit_cmd {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200158 __u32 type; /* in, one of MSM_SUBMIT_CMD_x */
159 __u32 submit_idx; /* in, index of submit_bo cmdstream buffer */
160 __u32 submit_offset; /* in, offset into submit_bo */
161 __u32 size; /* in, cmdstream size */
162 __u32 pad;
163 __u32 nr_relocs; /* in, number of submit_reloc's */
164 __u64 __user relocs; /* in, ptr to array of submit_reloc's */
Rob Clark7198e6b2013-07-19 12:59:32 -0400165};
166
167/* Each buffer referenced elsewhere in the cmdstream submit (ie. the
168 * cmdstream buffer(s) themselves or reloc entries) has one (and only
169 * one) entry in the submit->bos[] table.
170 *
171 * As a optimization, the current buffer (gpu virtual address) can be
172 * passed back through the 'presumed' field. If on a subsequent reloc,
173 * userspace passes back a 'presumed' address that is still valid,
174 * then patching the cmdstream for this entry is skipped. This can
175 * avoid kernel needing to map/access the cmdstream bo in the common
176 * case.
177 */
178#define MSM_SUBMIT_BO_READ 0x0001
179#define MSM_SUBMIT_BO_WRITE 0x0002
Rob Clark93ddb0d2014-03-03 09:42:33 -0500180
181#define MSM_SUBMIT_BO_FLAGS (MSM_SUBMIT_BO_READ | MSM_SUBMIT_BO_WRITE)
182
Rob Clark7198e6b2013-07-19 12:59:32 -0400183struct drm_msm_gem_submit_bo {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200184 __u32 flags; /* in, mask of MSM_SUBMIT_BO_x */
185 __u32 handle; /* in, GEM handle */
186 __u64 presumed; /* in/out, presumed buffer address */
Rob Clark7198e6b2013-07-19 12:59:32 -0400187};
188
Rob Clarkd9c181e2016-04-23 10:08:59 -0400189/* Valid submit ioctl flags: */
Rob Clarkf0a42bb2016-06-16 16:08:19 -0400190#define MSM_SUBMIT_NO_IMPLICIT 0x80000000 /* disable implicit sync */
191#define MSM_SUBMIT_FENCE_FD_IN 0x40000000 /* enable input fence_fd */
Rob Clark4cd09452016-06-16 16:43:49 -0400192#define MSM_SUBMIT_FENCE_FD_OUT 0x20000000 /* enable output fence_fd */
Rob Clarkf0a42bb2016-06-16 16:08:19 -0400193#define MSM_SUBMIT_FLAGS ( \
194 MSM_SUBMIT_NO_IMPLICIT | \
195 MSM_SUBMIT_FENCE_FD_IN | \
Rob Clark4cd09452016-06-16 16:43:49 -0400196 MSM_SUBMIT_FENCE_FD_OUT | \
Rob Clarkf0a42bb2016-06-16 16:08:19 -0400197 0)
Rob Clarkd9c181e2016-04-23 10:08:59 -0400198
Rob Clark7198e6b2013-07-19 12:59:32 -0400199/* Each cmdstream submit consists of a table of buffers involved, and
200 * one or more cmdstream buffers. This allows for conditional execution
201 * (context-restore), and IB buffers needed for per tile/bin draw cmds.
202 */
203struct drm_msm_gem_submit {
Rob Clarkd9c181e2016-04-23 10:08:59 -0400204 __u32 flags; /* MSM_PIPE_x | MSM_SUBMIT_x */
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200205 __u32 fence; /* out */
206 __u32 nr_bos; /* in, number of submit_bo's */
207 __u32 nr_cmds; /* in, number of submit_cmd's */
208 __u64 __user bos; /* in, ptr to array of submit_bo's */
209 __u64 __user cmds; /* in, ptr to array of submit_cmd's */
Rob Clark4cd09452016-06-16 16:43:49 -0400210 __s32 fence_fd; /* in/out fence fd (see MSM_SUBMIT_FENCE_FD_IN/OUT) */
Rob Clark7198e6b2013-07-19 12:59:32 -0400211};
212
213/* The normal way to synchronize with the GPU is just to CPU_PREP on
214 * a buffer if you need to access it from the CPU (other cmdstream
215 * submission from same or other contexts, PAGE_FLIP ioctl, etc, all
216 * handle the required synchronization under the hood). This ioctl
217 * mainly just exists as a way to implement the gallium pipe_fence
218 * APIs without requiring a dummy bo to synchronize on.
219 */
220struct drm_msm_wait_fence {
Mikko Rapeli7f8fc882015-05-30 17:38:08 +0200221 __u32 fence; /* in */
222 __u32 pad;
Rob Clark7198e6b2013-07-19 12:59:32 -0400223 struct drm_msm_timespec timeout; /* in */
224};
225
Rob Clark4cd33c42016-05-17 15:44:49 -0400226/* madvise provides a way to tell the kernel in case a buffers contents
227 * can be discarded under memory pressure, which is useful for userspace
228 * bo cache where we want to optimistically hold on to buffer allocate
229 * and potential mmap, but allow the pages to be discarded under memory
230 * pressure.
231 *
232 * Typical usage would involve madvise(DONTNEED) when buffer enters BO
233 * cache, and madvise(WILLNEED) if trying to recycle buffer from BO cache.
234 * In the WILLNEED case, 'retained' indicates to userspace whether the
235 * backing pages still exist.
236 */
237#define MSM_MADV_WILLNEED 0 /* backing pages are needed, status returned in 'retained' */
238#define MSM_MADV_DONTNEED 1 /* backing pages not needed */
239#define __MSM_MADV_PURGED 2 /* internal state */
240
241struct drm_msm_gem_madvise {
242 __u32 handle; /* in, GEM handle */
243 __u32 madv; /* in, MSM_MADV_x */
244 __u32 retained; /* out, whether backing store still exists */
245};
246
Ping Li898b1bf2017-02-09 18:03:28 -0800247/* HDR WRGB x and y index */
248#define DISPLAY_PRIMARIES_WX 0
249#define DISPLAY_PRIMARIES_WY 1
250#define DISPLAY_PRIMARIES_RX 2
251#define DISPLAY_PRIMARIES_RY 3
252#define DISPLAY_PRIMARIES_GX 4
253#define DISPLAY_PRIMARIES_GY 5
254#define DISPLAY_PRIMARIES_BX 6
255#define DISPLAY_PRIMARIES_BY 7
256#define DISPLAY_PRIMARIES_MAX 8
257
258struct drm_panel_hdr_properties {
259 __u32 hdr_enabled;
260
261 /* WRGB X and y values arrayed in format */
262 /* [WX, WY, RX, RY, GX, GY, BX, BY] */
263 __u32 display_primaries[DISPLAY_PRIMARIES_MAX];
264
265 /* peak brightness supported by panel */
266 __u32 peak_brightness;
267 /* Blackness level supported by panel */
268 __u32 blackness_level;
269};
270
Rob Clark7198e6b2013-07-19 12:59:32 -0400271#define DRM_MSM_GET_PARAM 0x00
272/* placeholder:
273#define DRM_MSM_SET_PARAM 0x01
274 */
275#define DRM_MSM_GEM_NEW 0x02
276#define DRM_MSM_GEM_INFO 0x03
277#define DRM_MSM_GEM_CPU_PREP 0x04
278#define DRM_MSM_GEM_CPU_FINI 0x05
279#define DRM_MSM_GEM_SUBMIT 0x06
280#define DRM_MSM_WAIT_FENCE 0x07
Rob Clark4cd33c42016-05-17 15:44:49 -0400281#define DRM_MSM_GEM_MADVISE 0x08
Jordan Crouse119a1ce2017-03-07 11:14:03 -0700282
283#define DRM_SDE_WB_CONFIG 0x40
284#define DRM_MSM_REGISTER_EVENT 0x41
285#define DRM_MSM_DEREGISTER_EVENT 0x42
286#define DRM_MSM_NUM_IOCTLS 0x43
Rob Clark7198e6b2013-07-19 12:59:32 -0400287
288#define DRM_IOCTL_MSM_GET_PARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GET_PARAM, struct drm_msm_param)
289#define DRM_IOCTL_MSM_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_NEW, struct drm_msm_gem_new)
290#define DRM_IOCTL_MSM_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_INFO, struct drm_msm_gem_info)
291#define DRM_IOCTL_MSM_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_GEM_CPU_PREP, struct drm_msm_gem_cpu_prep)
292#define DRM_IOCTL_MSM_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_GEM_CPU_FINI, struct drm_msm_gem_cpu_fini)
293#define DRM_IOCTL_MSM_GEM_SUBMIT DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_SUBMIT, struct drm_msm_gem_submit)
294#define DRM_IOCTL_MSM_WAIT_FENCE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_WAIT_FENCE, struct drm_msm_wait_fence)
Rob Clark4cd33c42016-05-17 15:44:49 -0400295#define DRM_IOCTL_MSM_GEM_MADVISE DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_MADVISE, struct drm_msm_gem_madvise)
Alan Kwongbb27c092016-07-20 16:41:25 -0400296#define DRM_IOCTL_SDE_WB_CONFIG \
297 DRM_IOW((DRM_COMMAND_BASE + DRM_SDE_WB_CONFIG), struct sde_drm_wb_cfg)
Rob Clark7198e6b2013-07-19 12:59:32 -0400298
Emil Velikova62424e2016-04-07 19:03:46 +0100299#if defined(__cplusplus)
300}
301#endif
302
Rob Clark7198e6b2013-07-19 12:59:32 -0400303#endif /* __MSM_DRM_H__ */