blob: bf91a78a0b0e2ac06afd53cf17bfe92b3e914e2f [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
21#include <stddef.h>
22#include <drm/drm.h>
23
24/* Please note that modifications to all structs defined here are
25 * subject to backwards-compatibility constraints:
26 * 1) Do not use pointers, use uint64_t instead for 32 bit / 64 bit
27 * user/kernel compatibility
28 * 2) Keep fields aligned to their size
29 * 3) Because of how drm_ioctl() works, we can add new fields at
30 * the end of an ioctl if some care is taken: drm_ioctl() will
31 * zero out the new fields at the tail of the ioctl, so a zero
32 * value should have a backwards compatible meaning. And for
33 * output params, userspace won't see the newly added output
34 * fields.. so that has to be somehow ok.
35 */
36
37#define MSM_PIPE_NONE 0x00
38#define MSM_PIPE_2D0 0x01
39#define MSM_PIPE_2D1 0x02
40#define MSM_PIPE_3D0 0x10
41
42/* timeouts are specified in clock-monotonic absolute times (to simplify
43 * restarting interrupted ioctls). The following struct is logically the
44 * same as 'struct timespec' but 32/64b ABI safe.
45 */
46struct drm_msm_timespec {
47 int64_t tv_sec; /* seconds */
48 int64_t tv_nsec; /* nanoseconds */
49};
50
51#define MSM_PARAM_GPU_ID 0x01
52#define MSM_PARAM_GMEM_SIZE 0x02
Rob Clark4e1cbaa2014-02-04 14:16:04 -050053#define MSM_PARAM_CHIP_ID 0x03
Rob Clark7198e6b2013-07-19 12:59:32 -040054
55struct drm_msm_param {
56 uint32_t pipe; /* in, MSM_PIPE_x */
57 uint32_t param; /* in, MSM_PARAM_x */
58 uint64_t value; /* out (get_param) or in (set_param) */
59};
60
61/*
62 * GEM buffers:
63 */
64
65#define MSM_BO_SCANOUT 0x00000001 /* scanout capable */
66#define MSM_BO_GPU_READONLY 0x00000002
67#define MSM_BO_CACHE_MASK 0x000f0000
68/* cache modes */
69#define MSM_BO_CACHED 0x00010000
70#define MSM_BO_WC 0x00020000
71#define MSM_BO_UNCACHED 0x00040000
72
73struct drm_msm_gem_new {
74 uint64_t size; /* in */
75 uint32_t flags; /* in, mask of MSM_BO_x */
76 uint32_t handle; /* out */
77};
78
79struct drm_msm_gem_info {
80 uint32_t handle; /* in */
81 uint32_t pad;
82 uint64_t offset; /* out, offset to pass to mmap() */
83};
84
85#define MSM_PREP_READ 0x01
86#define MSM_PREP_WRITE 0x02
87#define MSM_PREP_NOSYNC 0x04
88
89struct drm_msm_gem_cpu_prep {
90 uint32_t handle; /* in */
91 uint32_t op; /* in, mask of MSM_PREP_x */
92 struct drm_msm_timespec timeout; /* in */
93};
94
95struct drm_msm_gem_cpu_fini {
96 uint32_t handle; /* in */
97};
98
99/*
100 * Cmdstream Submission:
101 */
102
103/* The value written into the cmdstream is logically:
104 *
105 * ((relocbuf->gpuaddr + reloc_offset) << shift) | or
106 *
107 * When we have GPU's w/ >32bit ptrs, it should be possible to deal
108 * with this by emit'ing two reloc entries with appropriate shift
109 * values. Or a new MSM_SUBMIT_CMD_x type would also be an option.
110 *
111 * NOTE that reloc's must be sorted by order of increasing submit_offset,
112 * otherwise EINVAL.
113 */
114struct drm_msm_gem_submit_reloc {
115 uint32_t submit_offset; /* in, offset from submit_bo */
116 uint32_t or; /* in, value OR'd with result */
117 int32_t shift; /* in, amount of left shift (can be negative) */
118 uint32_t reloc_idx; /* in, index of reloc_bo buffer */
119 uint64_t reloc_offset; /* in, offset from start of reloc_bo */
120};
121
122/* submit-types:
123 * BUF - this cmd buffer is executed normally.
124 * IB_TARGET_BUF - this cmd buffer is an IB target. Reloc's are
125 * processed normally, but the kernel does not setup an IB to
126 * this buffer in the first-level ringbuffer
127 * CTX_RESTORE_BUF - only executed if there has been a GPU context
128 * switch since the last SUBMIT ioctl
129 */
130#define MSM_SUBMIT_CMD_BUF 0x0001
131#define MSM_SUBMIT_CMD_IB_TARGET_BUF 0x0002
132#define MSM_SUBMIT_CMD_CTX_RESTORE_BUF 0x0003
133struct drm_msm_gem_submit_cmd {
134 uint32_t type; /* in, one of MSM_SUBMIT_CMD_x */
135 uint32_t submit_idx; /* in, index of submit_bo cmdstream buffer */
136 uint32_t submit_offset; /* in, offset into submit_bo */
137 uint32_t size; /* in, cmdstream size */
138 uint32_t pad;
139 uint32_t nr_relocs; /* in, number of submit_reloc's */
140 uint64_t __user relocs; /* in, ptr to array of submit_reloc's */
141};
142
143/* Each buffer referenced elsewhere in the cmdstream submit (ie. the
144 * cmdstream buffer(s) themselves or reloc entries) has one (and only
145 * one) entry in the submit->bos[] table.
146 *
147 * As a optimization, the current buffer (gpu virtual address) can be
148 * passed back through the 'presumed' field. If on a subsequent reloc,
149 * userspace passes back a 'presumed' address that is still valid,
150 * then patching the cmdstream for this entry is skipped. This can
151 * avoid kernel needing to map/access the cmdstream bo in the common
152 * case.
153 */
154#define MSM_SUBMIT_BO_READ 0x0001
155#define MSM_SUBMIT_BO_WRITE 0x0002
156struct drm_msm_gem_submit_bo {
157 uint32_t flags; /* in, mask of MSM_SUBMIT_BO_x */
158 uint32_t handle; /* in, GEM handle */
159 uint64_t presumed; /* in/out, presumed buffer address */
160};
161
162/* Each cmdstream submit consists of a table of buffers involved, and
163 * one or more cmdstream buffers. This allows for conditional execution
164 * (context-restore), and IB buffers needed for per tile/bin draw cmds.
165 */
166struct drm_msm_gem_submit {
167 uint32_t pipe; /* in, MSM_PIPE_x */
168 uint32_t fence; /* out */
169 uint32_t nr_bos; /* in, number of submit_bo's */
170 uint32_t nr_cmds; /* in, number of submit_cmd's */
171 uint64_t __user bos; /* in, ptr to array of submit_bo's */
172 uint64_t __user cmds; /* in, ptr to array of submit_cmd's */
173};
174
175/* The normal way to synchronize with the GPU is just to CPU_PREP on
176 * a buffer if you need to access it from the CPU (other cmdstream
177 * submission from same or other contexts, PAGE_FLIP ioctl, etc, all
178 * handle the required synchronization under the hood). This ioctl
179 * mainly just exists as a way to implement the gallium pipe_fence
180 * APIs without requiring a dummy bo to synchronize on.
181 */
182struct drm_msm_wait_fence {
183 uint32_t fence; /* in */
184 uint32_t pad;
185 struct drm_msm_timespec timeout; /* in */
186};
187
188#define DRM_MSM_GET_PARAM 0x00
189/* placeholder:
190#define DRM_MSM_SET_PARAM 0x01
191 */
192#define DRM_MSM_GEM_NEW 0x02
193#define DRM_MSM_GEM_INFO 0x03
194#define DRM_MSM_GEM_CPU_PREP 0x04
195#define DRM_MSM_GEM_CPU_FINI 0x05
196#define DRM_MSM_GEM_SUBMIT 0x06
197#define DRM_MSM_WAIT_FENCE 0x07
198#define DRM_MSM_NUM_IOCTLS 0x08
199
200#define DRM_IOCTL_MSM_GET_PARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GET_PARAM, struct drm_msm_param)
201#define DRM_IOCTL_MSM_GEM_NEW DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_NEW, struct drm_msm_gem_new)
202#define DRM_IOCTL_MSM_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_INFO, struct drm_msm_gem_info)
203#define DRM_IOCTL_MSM_GEM_CPU_PREP DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_GEM_CPU_PREP, struct drm_msm_gem_cpu_prep)
204#define DRM_IOCTL_MSM_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_GEM_CPU_FINI, struct drm_msm_gem_cpu_fini)
205#define DRM_IOCTL_MSM_GEM_SUBMIT DRM_IOWR(DRM_COMMAND_BASE + DRM_MSM_GEM_SUBMIT, struct drm_msm_gem_submit)
206#define DRM_IOCTL_MSM_WAIT_FENCE DRM_IOW (DRM_COMMAND_BASE + DRM_MSM_WAIT_FENCE, struct drm_msm_wait_fence)
207
208#endif /* __MSM_DRM_H__ */