1/* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */ 2 3/* 4 * Copyright (C) 2013 Rob Clark <robclark@freedesktop.org> 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice (including the next 14 * paragraph) shall be included in all copies or substantial portions of the 15 * Software. 16 * 17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 * SOFTWARE. 24 * 25 * Authors: 26 * Rob Clark <robclark@freedesktop.org> 27 */ 28 29#include "msm_priv.h" 30 31static int query_param(struct fd_pipe *pipe, uint32_t param, 32 uint64_t *value) 33{ 34 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); 35 struct drm_msm_param req = { 36 .pipe = msm_pipe->pipe, 37 .param = param, 38 }; 39 int ret; 40 41 ret = drmCommandWriteRead(pipe->dev->fd, DRM_MSM_GET_PARAM, 42 &req, sizeof(req)); 43 if (ret) 44 return ret; 45 46 *value = req.value; 47 48 return 0; 49} 50 51static int msm_pipe_get_param(struct fd_pipe *pipe, 52 enum fd_param_id param, uint64_t *value) 53{ 54 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); 55 switch(param) { 56 case FD_DEVICE_ID: // XXX probably get rid of this.. 57 case FD_GPU_ID: 58 *value = msm_pipe->gpu_id; 59 return 0; 60 case FD_GMEM_SIZE: 61 *value = msm_pipe->gmem; 62 return 0; 63 case FD_CHIP_ID: 64 *value = msm_pipe->chip_id; 65 return 0; 66 case FD_MAX_FREQ: 67 return query_param(pipe, MSM_PARAM_MAX_FREQ, value); 68 case FD_TIMESTAMP: 69 return query_param(pipe, MSM_PARAM_TIMESTAMP, value); 70 case FD_NR_RINGS: 71 return query_param(pipe, MSM_PARAM_NR_RINGS, value); 72 default: 73 ERROR_MSG("invalid param id: %d", param); 74 return -1; 75 } 76} 77 78static int msm_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp, 79 uint64_t timeout) 80{ 81 struct fd_device *dev = pipe->dev; 82 struct drm_msm_wait_fence req = { 83 .fence = timestamp, 84 .queueid = to_msm_pipe(pipe)->queue_id, 85 }; 86 int ret; 87 88 get_abs_timeout(&req.timeout, timeout); 89 90 ret = drmCommandWrite(dev->fd, DRM_MSM_WAIT_FENCE, &req, sizeof(req)); 91 if (ret) { 92 ERROR_MSG("wait-fence failed! %d (%s)", ret, strerror(errno)); 93 return ret; 94 } 95 96 return 0; 97} 98 99static int open_submitqueue(struct fd_pipe *pipe, uint32_t prio) 100{ 101 struct drm_msm_submitqueue req = { 102 .flags = 0, 103 .prio = prio, 104 }; 105 uint64_t nr_rings = 1; 106 int ret; 107 108 if (fd_device_version(pipe->dev) < FD_VERSION_SUBMIT_QUEUES) { 109 to_msm_pipe(pipe)->queue_id = 0; 110 return 0; 111 } 112 113 msm_pipe_get_param(pipe, FD_NR_RINGS, &nr_rings); 114 115 req.prio = MIN2(req.prio, MAX2(nr_rings, 1) - 1); 116 117 ret = drmCommandWriteRead(pipe->dev->fd, DRM_MSM_SUBMITQUEUE_NEW, 118 &req, sizeof(req)); 119 if (ret) { 120 ERROR_MSG("could not create submitqueue! %d (%s)", ret, strerror(errno)); 121 return ret; 122 } 123 124 to_msm_pipe(pipe)->queue_id = req.id; 125 return 0; 126} 127 128static void close_submitqueue(struct fd_pipe *pipe, uint32_t queue_id) 129{ 130 if (fd_device_version(pipe->dev) < FD_VERSION_SUBMIT_QUEUES) 131 return; 132 133 drmCommandWrite(pipe->dev->fd, DRM_MSM_SUBMITQUEUE_CLOSE, 134 &queue_id, sizeof(queue_id)); 135} 136 137static void msm_pipe_destroy(struct fd_pipe *pipe) 138{ 139 struct msm_pipe *msm_pipe = to_msm_pipe(pipe); 140 close_submitqueue(pipe, msm_pipe->queue_id); 141 142 if (msm_pipe->suballoc_ring) { 143 fd_ringbuffer_del(msm_pipe->suballoc_ring); 144 msm_pipe->suballoc_ring = NULL; 145 } 146 147 free(msm_pipe); 148} 149 150static const struct fd_pipe_funcs funcs = { 151 .ringbuffer_new = msm_ringbuffer_new, 152 .get_param = msm_pipe_get_param, 153 .wait = msm_pipe_wait, 154 .destroy = msm_pipe_destroy, 155}; 156 157static uint64_t get_param(struct fd_pipe *pipe, uint32_t param) 158{ 159 uint64_t value; 160 int ret = query_param(pipe, param, &value); 161 if (ret) { 162 ERROR_MSG("get-param failed! %d (%s)", ret, strerror(errno)); 163 return 0; 164 } 165 return value; 166} 167 168drm_private struct fd_pipe * msm_pipe_new(struct fd_device *dev, 169 enum fd_pipe_id id, uint32_t prio) 170{ 171 static const uint32_t pipe_id[] = { 172 [FD_PIPE_3D] = MSM_PIPE_3D0, 173 [FD_PIPE_2D] = MSM_PIPE_2D0, 174 }; 175 struct msm_pipe *msm_pipe = NULL; 176 struct fd_pipe *pipe = NULL; 177 178 msm_pipe = calloc(1, sizeof(*msm_pipe)); 179 if (!msm_pipe) { 180 ERROR_MSG("allocation failed"); 181 goto fail; 182 } 183 184 pipe = &msm_pipe->base; 185 pipe->funcs = &funcs; 186 187 /* initialize before get_param(): */ 188 pipe->dev = dev; 189 msm_pipe->pipe = pipe_id[id]; 190 191 /* these params should be supported since the first version of drm/msm: */ 192 msm_pipe->gpu_id = get_param(pipe, MSM_PARAM_GPU_ID); 193 msm_pipe->gmem = get_param(pipe, MSM_PARAM_GMEM_SIZE); 194 msm_pipe->chip_id = get_param(pipe, MSM_PARAM_CHIP_ID); 195 196 if (! msm_pipe->gpu_id) 197 goto fail; 198 199 INFO_MSG("Pipe Info:"); 200 INFO_MSG(" GPU-id: %d", msm_pipe->gpu_id); 201 INFO_MSG(" Chip-id: 0x%08x", msm_pipe->chip_id); 202 INFO_MSG(" GMEM size: 0x%08x", msm_pipe->gmem); 203 204 if (open_submitqueue(pipe, prio)) 205 goto fail; 206 207 return pipe; 208fail: 209 if (pipe) 210 fd_pipe_del(pipe); 211 return NULL; 212} 213