1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
|
/*
* Copyright © 2021 Google, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#include <assert.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include "drmtest.h"
#include "igt_aux.h"
#include "igt_core.h"
#include "igt_msm.h"
#include "ioctl_wrappers.h"
/**
* SECTION:igt_msm
* @short_description: msm support library
* @title: msm
* @include: igt_msm.h
*
* This library provides various auxiliary helper functions for writing msm
* tests.
*/
static uint64_t
get_param(struct msm_device *dev, uint32_t pipe, uint32_t param)
{
struct drm_msm_param req = {
.pipe = pipe,
.param = param,
};
do_ioctl(dev->fd, DRM_IOCTL_MSM_GET_PARAM, &req);
return req.value;
}
/**
* igt_msm_dev_open:
*
* Open the msm drm device.
*/
struct msm_device *
igt_msm_dev_open(void)
{
struct msm_device *dev = calloc(1, sizeof(*dev));
dev->fd = drm_open_driver_render(DRIVER_MSM);
dev->gen = (get_param(dev, MSM_PIPE_3D0, MSM_PARAM_CHIP_ID) >> 24) & 0xff;
return dev;
}
/**
* igt_msm_dev_close:
* @dev: the device to close
*
* Close the msm drm device.
*/
void
igt_msm_dev_close(struct msm_device *dev)
{
if (!dev)
return;
drm_close_driver(dev->fd);
free(dev);
}
static uint64_t
get_iova(struct msm_bo *bo)
{
struct drm_msm_gem_info req = {
.handle = bo->handle,
.info = MSM_INFO_GET_IOVA,
};
do_ioctl(bo->dev->fd, DRM_IOCTL_MSM_GEM_INFO, &req);
return req.value;
}
/**
* igt_msm_bo_new:
* @dev: the device to allocate the BO from
* @size: the requested BO size in bytes
* @flags: bitmask of MSM_BO_x
*
* Allocate a buffer object of the requested size.
*/
struct msm_bo *
igt_msm_bo_new(struct msm_device *dev, size_t size, uint32_t flags)
{
struct msm_bo *bo = calloc(1, sizeof(*bo));
struct drm_msm_gem_new req = {
.size = size,
.flags = flags,
};
bo->dev = dev;
bo->size = size;
do_ioctl(dev->fd, DRM_IOCTL_MSM_GEM_NEW, &req);
bo->handle = req.handle;
bo->iova = get_iova(bo);
return bo;
}
/**
* igt_msm_bo_free:
* @bo: the BO to free
*
* Free a buffer object
*/
void
igt_msm_bo_free(struct msm_bo *bo)
{
if (!bo)
return;
if (bo->map)
munmap(bo->map, bo->size);
gem_close(bo->dev->fd, bo->handle);
free(bo);
}
/**
* igt_msm_bo_map:
* @bo: the BO to map
*
* Returns a pointer to mmap'd buffer.
*/
void *
igt_msm_bo_map(struct msm_bo *bo)
{
if (!bo->map) {
struct drm_msm_gem_info req = {
.handle = bo->handle,
.info = MSM_INFO_GET_OFFSET,
};
void *ptr;
do_ioctl(bo->dev->fd, DRM_IOCTL_MSM_GEM_INFO, &req);
ptr = mmap(0, bo->size, PROT_READ | PROT_WRITE, MAP_SHARED,
bo->dev->fd, req.value);
if (ptr == MAP_FAILED)
return NULL;
bo->map = ptr;
}
return bo->map;
}
/**
* igt_msm_pipe_open:
* @dev: the device to create a submitqueue/pipe against
* @prio: the requested priority, from 0 (highest) to MSM_PARAM_PRIORITIES-1
* (lowest)
*
* Allocate a pipe/submitqueue against which cmdstream may be submitted.
*/
struct msm_pipe *
igt_msm_pipe_open(struct msm_device *dev, uint32_t prio)
{
struct msm_pipe *pipe = calloc(1, sizeof(*pipe));
struct drm_msm_submitqueue req = {
.flags = 0,
.prio = prio,
};
pipe->dev = dev;
pipe->pipe = MSM_PIPE_3D0;
/* Note that kernels prior to v4.15 did not support submitqueues.
* Mesa maintains support for older kernels, but IGT does not need
* to.
*/
do_ioctl(dev->fd, DRM_IOCTL_MSM_SUBMITQUEUE_NEW, &req);
pipe->submitqueue_id = req.id;
return pipe;
}
/**
* igt_msm_pipe_close:
* @pipe: the pipe to close
*
* Close a pipe
*/
void
igt_msm_pipe_close(struct msm_pipe *pipe)
{
if (!pipe)
return;
do_ioctl(pipe->dev->fd, DRM_IOCTL_MSM_SUBMITQUEUE_CLOSE, &pipe->submitqueue_id);
free(pipe);
}
/**
* igt_msm_cmd_new:
* @pipe: the submitqueue to submit cmdstream against
* @size: the size of requested cmdstream buffer
*/
struct msm_cmd *
igt_msm_cmd_new(struct msm_pipe *pipe, size_t size)
{
struct msm_cmd *cmd = calloc(1, sizeof(*cmd));
cmd->pipe = pipe;
cmd->cmdstream_bo = igt_msm_bo_new(pipe->dev, size, MSM_BO_WC);
cmd->cur = igt_msm_bo_map(cmd->cmdstream_bo);
__igt_msm_append_bo(cmd, cmd->cmdstream_bo);
return cmd;
}
static uint32_t
cmdstream_size(struct msm_cmd *cmd)
{
uint8_t *start = igt_msm_bo_map(cmd->cmdstream_bo);
return (uint8_t *)cmd->cur - start;
}
/**
* igt_msm_cmd_submit:
* @cmd: the command stream object to submit
*
* Returns dma-fence fd
*/
int
igt_msm_cmd_submit(struct msm_cmd *cmd)
{
struct drm_msm_gem_submit_bo bos[cmd->nr_bos];
struct drm_msm_gem_submit_cmd cmds[] = {
[0] = {
.type = MSM_SUBMIT_CMD_BUF,
.submit_idx = 0,
.size = cmdstream_size(cmd),
},
};
struct drm_msm_gem_submit req = {
.flags = cmd->pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT | MSM_SUBMIT_NO_IMPLICIT,
.queueid = cmd->pipe->submitqueue_id,
.nr_cmds = ARRAY_SIZE(cmds),
.cmds = VOID2U64(cmds),
.nr_bos = ARRAY_SIZE(bos),
.bos = VOID2U64(bos),
};
for (unsigned i = 0; i < cmd->nr_bos; i++) {
bos[i] = (struct drm_msm_gem_submit_bo) {
.handle = cmd->bos[i]->handle,
.flags = MSM_SUBMIT_BO_READ | MSM_SUBMIT_BO_WRITE,
};
}
do_ioctl(cmd->pipe->dev->fd, DRM_IOCTL_MSM_GEM_SUBMIT, &req);
return req.fence_fd;
}
void
__igt_msm_append_bo(struct msm_cmd *cmd, struct msm_bo *bo)
{
for (unsigned i = 0; i < cmd->nr_bos; i++)
if (cmd->bos[i] == bo)
return;
assert((cmd->nr_bos + 1) < ARRAY_SIZE(cmd->bos));
cmd->bos[cmd->nr_bos++] = bo;
}
/**
* igt_msm_cmd_free:
* @cmd: the command stream object to free
*
* Free a command stream object
*/
void
igt_msm_cmd_free(struct msm_cmd *cmd)
{
igt_msm_bo_free(cmd->cmdstream_bo);
free(cmd);
}
|