Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Jerome Glisse. |
| 3 | * All Rights Reserved. |
| 4 | * |
| 5 | * 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: |
| 11 | * |
| 12 | * 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. |
| 15 | * |
| 16 | * 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 | * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR |
| 20 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
| 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
| 23 | * |
| 24 | * Authors: |
| 25 | * Jerome Glisse <glisse@freedesktop.org> |
| 26 | */ |
| 27 | #include "drmP.h" |
| 28 | #include "radeon_drm.h" |
| 29 | #include "radeon_reg.h" |
| 30 | #include "radeon.h" |
| 31 | |
| 32 | void r100_cs_dump_packet(struct radeon_cs_parser *p, |
| 33 | struct radeon_cs_packet *pkt); |
| 34 | |
| 35 | int radeon_cs_parser_relocs(struct radeon_cs_parser *p) |
| 36 | { |
| 37 | struct drm_device *ddev = p->rdev->ddev; |
| 38 | struct radeon_cs_chunk *chunk; |
| 39 | unsigned i, j; |
| 40 | bool duplicate; |
| 41 | |
| 42 | if (p->chunk_relocs_idx == -1) { |
| 43 | return 0; |
| 44 | } |
| 45 | chunk = &p->chunks[p->chunk_relocs_idx]; |
| 46 | /* FIXME: we assume that each relocs use 4 dwords */ |
| 47 | p->nrelocs = chunk->length_dw / 4; |
| 48 | p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL); |
| 49 | if (p->relocs_ptr == NULL) { |
| 50 | return -ENOMEM; |
| 51 | } |
| 52 | p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL); |
| 53 | if (p->relocs == NULL) { |
| 54 | return -ENOMEM; |
| 55 | } |
| 56 | for (i = 0; i < p->nrelocs; i++) { |
| 57 | struct drm_radeon_cs_reloc *r; |
| 58 | |
| 59 | duplicate = false; |
| 60 | r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4]; |
Christian König | 16557f1 | 2011-10-24 14:59:17 +0200 | [diff] [blame] | 61 | for (j = 0; j < i; j++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 62 | if (r->handle == p->relocs[j].handle) { |
| 63 | p->relocs_ptr[i] = &p->relocs[j]; |
| 64 | duplicate = true; |
| 65 | break; |
| 66 | } |
| 67 | } |
| 68 | if (!duplicate) { |
| 69 | p->relocs[i].gobj = drm_gem_object_lookup(ddev, |
| 70 | p->filp, |
| 71 | r->handle); |
| 72 | if (p->relocs[i].gobj == NULL) { |
| 73 | DRM_ERROR("gem object lookup failed 0x%x\n", |
| 74 | r->handle); |
Chris Wilson | bf79cb9 | 2010-08-04 14:19:46 +0100 | [diff] [blame] | 75 | return -ENOENT; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 76 | } |
| 77 | p->relocs_ptr[i] = &p->relocs[i]; |
Daniel Vetter | 7e4d15d | 2011-02-18 17:59:17 +0100 | [diff] [blame] | 78 | p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 79 | p->relocs[i].lobj.bo = p->relocs[i].robj; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 80 | p->relocs[i].lobj.wdomain = r->write_domain; |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 81 | p->relocs[i].lobj.rdomain = r->read_domains; |
| 82 | p->relocs[i].lobj.tv.bo = &p->relocs[i].robj->tbo; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 83 | p->relocs[i].handle = r->handle; |
| 84 | p->relocs[i].flags = r->flags; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 85 | radeon_bo_list_add_object(&p->relocs[i].lobj, |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 86 | &p->validated); |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 87 | |
Christian König | 16557f1 | 2011-10-24 14:59:17 +0200 | [diff] [blame] | 88 | } else |
| 89 | p->relocs[i].handle = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 90 | } |
Jerome Glisse | 94429bb | 2010-02-15 21:36:33 +0100 | [diff] [blame] | 91 | return radeon_bo_list_validate(&p->validated); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 92 | } |
| 93 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 94 | static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority) |
| 95 | { |
| 96 | p->priority = priority; |
| 97 | |
| 98 | switch (ring) { |
| 99 | default: |
| 100 | DRM_ERROR("unknown ring id: %d\n", ring); |
| 101 | return -EINVAL; |
| 102 | case RADEON_CS_RING_GFX: |
| 103 | p->ring = RADEON_RING_TYPE_GFX_INDEX; |
| 104 | break; |
| 105 | case RADEON_CS_RING_COMPUTE: |
| 106 | /* for now */ |
| 107 | p->ring = RADEON_RING_TYPE_GFX_INDEX; |
| 108 | break; |
| 109 | } |
| 110 | return 0; |
| 111 | } |
| 112 | |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 113 | static int radeon_cs_sync_rings(struct radeon_cs_parser *p) |
| 114 | { |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 115 | bool sync_to_ring[RADEON_NUM_RINGS] = { }; |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 116 | int i, r; |
| 117 | |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 118 | for (i = 0; i < p->nrelocs; i++) { |
| 119 | if (!p->relocs[i].robj || !p->relocs[i].robj->tbo.sync_obj) |
| 120 | continue; |
| 121 | |
| 122 | if (!(p->relocs[i].flags & RADEON_RELOC_DONT_SYNC)) { |
| 123 | struct radeon_fence *fence = p->relocs[i].robj->tbo.sync_obj; |
| 124 | if (!radeon_fence_signaled(fence)) { |
| 125 | sync_to_ring[fence->ring] = true; |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 130 | for (i = 0; i < RADEON_NUM_RINGS; ++i) { |
| 131 | /* no need to sync to our own or unused rings */ |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 132 | if (i == p->ring || !sync_to_ring[i] || !p->rdev->ring[i].ready) |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 133 | continue; |
| 134 | |
| 135 | if (!p->ib->fence->semaphore) { |
| 136 | r = radeon_semaphore_create(p->rdev, &p->ib->fence->semaphore); |
| 137 | if (r) |
| 138 | return r; |
| 139 | } |
| 140 | |
| 141 | r = radeon_ring_lock(p->rdev, &p->rdev->ring[i], 3); |
| 142 | if (r) |
| 143 | return r; |
| 144 | radeon_semaphore_emit_signal(p->rdev, i, p->ib->fence->semaphore); |
| 145 | radeon_ring_unlock_commit(p->rdev, &p->rdev->ring[i]); |
| 146 | |
| 147 | r = radeon_ring_lock(p->rdev, &p->rdev->ring[p->ring], 3); |
| 148 | if (r) |
| 149 | return r; |
| 150 | radeon_semaphore_emit_wait(p->rdev, p->ring, p->ib->fence->semaphore); |
| 151 | radeon_ring_unlock_commit(p->rdev, &p->rdev->ring[p->ring]); |
| 152 | } |
| 153 | return 0; |
| 154 | } |
| 155 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 156 | int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data) |
| 157 | { |
| 158 | struct drm_radeon_cs *cs = data; |
| 159 | uint64_t *chunk_array_ptr; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 160 | unsigned size, i; |
| 161 | u32 ring = RADEON_CS_RING_GFX; |
| 162 | s32 priority = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 163 | |
| 164 | if (!cs->num_chunks) { |
| 165 | return 0; |
| 166 | } |
| 167 | /* get chunks */ |
| 168 | INIT_LIST_HEAD(&p->validated); |
| 169 | p->idx = 0; |
| 170 | p->chunk_ib_idx = -1; |
| 171 | p->chunk_relocs_idx = -1; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 172 | p->chunk_flags_idx = -1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 173 | p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL); |
| 174 | if (p->chunks_array == NULL) { |
| 175 | return -ENOMEM; |
| 176 | } |
| 177 | chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks); |
| 178 | if (DRM_COPY_FROM_USER(p->chunks_array, chunk_array_ptr, |
| 179 | sizeof(uint64_t)*cs->num_chunks)) { |
| 180 | return -EFAULT; |
| 181 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 182 | p->cs_flags = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 183 | p->nchunks = cs->num_chunks; |
| 184 | p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL); |
| 185 | if (p->chunks == NULL) { |
| 186 | return -ENOMEM; |
| 187 | } |
| 188 | for (i = 0; i < p->nchunks; i++) { |
| 189 | struct drm_radeon_cs_chunk __user **chunk_ptr = NULL; |
| 190 | struct drm_radeon_cs_chunk user_chunk; |
| 191 | uint32_t __user *cdata; |
| 192 | |
| 193 | chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i]; |
| 194 | if (DRM_COPY_FROM_USER(&user_chunk, chunk_ptr, |
| 195 | sizeof(struct drm_radeon_cs_chunk))) { |
| 196 | return -EFAULT; |
| 197 | } |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 198 | p->chunks[i].length_dw = user_chunk.length_dw; |
| 199 | p->chunks[i].kdata = NULL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 200 | p->chunks[i].chunk_id = user_chunk.chunk_id; |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 201 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 202 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) { |
| 203 | p->chunk_relocs_idx = i; |
| 204 | } |
| 205 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) { |
| 206 | p->chunk_ib_idx = i; |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 207 | /* zero length IB isn't useful */ |
| 208 | if (p->chunks[i].length_dw == 0) |
| 209 | return -EINVAL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 210 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 211 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) { |
| 212 | p->chunk_flags_idx = i; |
| 213 | /* zero length flags aren't useful */ |
| 214 | if (p->chunks[i].length_dw == 0) |
| 215 | return -EINVAL; |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 216 | } |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 217 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 218 | p->chunks[i].length_dw = user_chunk.length_dw; |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 219 | p->chunks[i].user_ptr = (void __user *)(unsigned long)user_chunk.chunk_data; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 220 | |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 221 | cdata = (uint32_t *)(unsigned long)user_chunk.chunk_data; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 222 | if ((p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) || |
| 223 | (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS)) { |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 224 | size = p->chunks[i].length_dw * sizeof(uint32_t); |
| 225 | p->chunks[i].kdata = kmalloc(size, GFP_KERNEL); |
| 226 | if (p->chunks[i].kdata == NULL) { |
| 227 | return -ENOMEM; |
| 228 | } |
| 229 | if (DRM_COPY_FROM_USER(p->chunks[i].kdata, |
| 230 | p->chunks[i].user_ptr, size)) { |
| 231 | return -EFAULT; |
| 232 | } |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 233 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 234 | p->cs_flags = p->chunks[i].kdata[0]; |
| 235 | if (p->chunks[i].length_dw > 1) |
| 236 | ring = p->chunks[i].kdata[1]; |
| 237 | if (p->chunks[i].length_dw > 2) |
| 238 | priority = (s32)p->chunks[i].kdata[2]; |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 239 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 240 | } |
| 241 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 242 | |
| 243 | if ((p->cs_flags & RADEON_CS_USE_VM) && |
Alex Deucher | 67e915e | 2012-01-06 09:38:15 -0500 | [diff] [blame] | 244 | !p->rdev->vm_manager.enabled) { |
| 245 | DRM_ERROR("VM not active on asic!\n"); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 246 | return -EINVAL; |
| 247 | } |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 248 | |
Julia Lawall | f48bb04 | 2012-03-17 18:03:29 +0100 | [diff] [blame^] | 249 | if (radeon_cs_get_ring(p, ring, priority)) |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 250 | return -EINVAL; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 251 | |
| 252 | |
| 253 | /* deal with non-vm */ |
| 254 | if ((p->chunk_ib_idx != -1) && |
| 255 | ((p->cs_flags & RADEON_CS_USE_VM) == 0) && |
| 256 | (p->chunks[p->chunk_ib_idx].chunk_id == RADEON_CHUNK_ID_IB)) { |
| 257 | if (p->chunks[p->chunk_ib_idx].length_dw > (16 * 1024)) { |
| 258 | DRM_ERROR("cs IB too big: %d\n", |
| 259 | p->chunks[p->chunk_ib_idx].length_dw); |
| 260 | return -EINVAL; |
| 261 | } |
| 262 | p->chunks[p->chunk_ib_idx].kpage[0] = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 263 | p->chunks[p->chunk_ib_idx].kpage[1] = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 264 | if (p->chunks[p->chunk_ib_idx].kpage[0] == NULL || |
Julia Lawall | f48bb04 | 2012-03-17 18:03:29 +0100 | [diff] [blame^] | 265 | p->chunks[p->chunk_ib_idx].kpage[1] == NULL) |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 266 | return -ENOMEM; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 267 | p->chunks[p->chunk_ib_idx].kpage_idx[0] = -1; |
| 268 | p->chunks[p->chunk_ib_idx].kpage_idx[1] = -1; |
| 269 | p->chunks[p->chunk_ib_idx].last_copied_page = -1; |
| 270 | p->chunks[p->chunk_ib_idx].last_page_index = |
| 271 | ((p->chunks[p->chunk_ib_idx].length_dw * 4) - 1) / PAGE_SIZE; |
| 272 | } |
| 273 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | /** |
| 278 | * cs_parser_fini() - clean parser states |
| 279 | * @parser: parser structure holding parsing context. |
| 280 | * @error: error number |
| 281 | * |
| 282 | * If error is set than unvalidate buffer, otherwise just free memory |
| 283 | * used by parsing context. |
| 284 | **/ |
| 285 | static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error) |
| 286 | { |
| 287 | unsigned i; |
| 288 | |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 289 | |
| 290 | if (!error && parser->ib) |
| 291 | ttm_eu_fence_buffer_objects(&parser->validated, |
| 292 | parser->ib->fence); |
| 293 | else |
| 294 | ttm_eu_backoff_reservation(&parser->validated); |
| 295 | |
Pauli Nieminen | fcbc451 | 2010-03-19 07:44:33 +0000 | [diff] [blame] | 296 | if (parser->relocs != NULL) { |
| 297 | for (i = 0; i < parser->nrelocs; i++) { |
| 298 | if (parser->relocs[i].gobj) |
| 299 | drm_gem_object_unreference_unlocked(parser->relocs[i].gobj); |
| 300 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 301 | } |
Michel Dänzer | 48e113e | 2009-09-15 17:09:32 +0200 | [diff] [blame] | 302 | kfree(parser->track); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 303 | kfree(parser->relocs); |
| 304 | kfree(parser->relocs_ptr); |
| 305 | for (i = 0; i < parser->nchunks; i++) { |
| 306 | kfree(parser->chunks[i].kdata); |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 307 | kfree(parser->chunks[i].kpage[0]); |
| 308 | kfree(parser->chunks[i].kpage[1]); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 309 | } |
| 310 | kfree(parser->chunks); |
| 311 | kfree(parser->chunks_array); |
| 312 | radeon_ib_free(parser->rdev, &parser->ib); |
| 313 | } |
| 314 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 315 | static int radeon_cs_ib_chunk(struct radeon_device *rdev, |
| 316 | struct radeon_cs_parser *parser) |
| 317 | { |
| 318 | struct radeon_cs_chunk *ib_chunk; |
| 319 | int r; |
| 320 | |
| 321 | if (parser->chunk_ib_idx == -1) |
| 322 | return 0; |
| 323 | |
| 324 | if (parser->cs_flags & RADEON_CS_USE_VM) |
| 325 | return 0; |
| 326 | |
| 327 | ib_chunk = &parser->chunks[parser->chunk_ib_idx]; |
| 328 | /* Copy the packet into the IB, the parser will read from the |
| 329 | * input memory (cached) and write to the IB (which can be |
| 330 | * uncached). |
| 331 | */ |
| 332 | r = radeon_ib_get(rdev, parser->ring, &parser->ib, |
| 333 | ib_chunk->length_dw * 4); |
| 334 | if (r) { |
| 335 | DRM_ERROR("Failed to get ib !\n"); |
| 336 | return r; |
| 337 | } |
| 338 | parser->ib->length_dw = ib_chunk->length_dw; |
Christian König | eb0c19c | 2012-02-23 15:18:44 +0100 | [diff] [blame] | 339 | r = radeon_cs_parse(rdev, parser->ring, parser); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 340 | if (r || parser->parser_error) { |
| 341 | DRM_ERROR("Invalid command stream !\n"); |
| 342 | return r; |
| 343 | } |
| 344 | r = radeon_cs_finish_pages(parser); |
| 345 | if (r) { |
| 346 | DRM_ERROR("Invalid command stream !\n"); |
| 347 | return r; |
| 348 | } |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 349 | r = radeon_cs_sync_rings(parser); |
| 350 | if (r) { |
| 351 | DRM_ERROR("Failed to synchronize rings !\n"); |
| 352 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 353 | parser->ib->vm_id = 0; |
| 354 | r = radeon_ib_schedule(rdev, parser->ib); |
| 355 | if (r) { |
| 356 | DRM_ERROR("Failed to schedule IB !\n"); |
| 357 | } |
| 358 | return 0; |
| 359 | } |
| 360 | |
| 361 | static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser, |
| 362 | struct radeon_vm *vm) |
| 363 | { |
| 364 | struct radeon_bo_list *lobj; |
| 365 | struct radeon_bo *bo; |
| 366 | int r; |
| 367 | |
| 368 | list_for_each_entry(lobj, &parser->validated, tv.head) { |
| 369 | bo = lobj->bo; |
| 370 | r = radeon_vm_bo_update_pte(parser->rdev, vm, bo, &bo->tbo.mem); |
| 371 | if (r) { |
| 372 | return r; |
| 373 | } |
| 374 | } |
| 375 | return 0; |
| 376 | } |
| 377 | |
| 378 | static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev, |
| 379 | struct radeon_cs_parser *parser) |
| 380 | { |
| 381 | struct radeon_cs_chunk *ib_chunk; |
| 382 | struct radeon_fpriv *fpriv = parser->filp->driver_priv; |
| 383 | struct radeon_vm *vm = &fpriv->vm; |
| 384 | int r; |
| 385 | |
| 386 | if (parser->chunk_ib_idx == -1) |
| 387 | return 0; |
| 388 | |
| 389 | if ((parser->cs_flags & RADEON_CS_USE_VM) == 0) |
| 390 | return 0; |
| 391 | |
| 392 | ib_chunk = &parser->chunks[parser->chunk_ib_idx]; |
| 393 | if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) { |
| 394 | DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw); |
| 395 | return -EINVAL; |
| 396 | } |
| 397 | r = radeon_ib_get(rdev, parser->ring, &parser->ib, |
| 398 | ib_chunk->length_dw * 4); |
| 399 | if (r) { |
| 400 | DRM_ERROR("Failed to get ib !\n"); |
| 401 | return r; |
| 402 | } |
| 403 | parser->ib->length_dw = ib_chunk->length_dw; |
| 404 | /* Copy the packet into the IB */ |
| 405 | if (DRM_COPY_FROM_USER(parser->ib->ptr, ib_chunk->user_ptr, |
| 406 | ib_chunk->length_dw * 4)) { |
| 407 | return -EFAULT; |
| 408 | } |
| 409 | r = radeon_ring_ib_parse(rdev, parser->ring, parser->ib); |
| 410 | if (r) { |
| 411 | return r; |
| 412 | } |
| 413 | |
| 414 | mutex_lock(&vm->mutex); |
| 415 | r = radeon_vm_bind(rdev, vm); |
| 416 | if (r) { |
| 417 | goto out; |
| 418 | } |
| 419 | r = radeon_bo_vm_update_pte(parser, vm); |
| 420 | if (r) { |
| 421 | goto out; |
| 422 | } |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 423 | r = radeon_cs_sync_rings(parser); |
| 424 | if (r) { |
| 425 | DRM_ERROR("Failed to synchronize rings !\n"); |
| 426 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 427 | parser->ib->vm_id = vm->id; |
| 428 | /* ib pool is bind at 0 in virtual address space to gpu_addr is the |
| 429 | * offset inside the pool bo |
| 430 | */ |
| 431 | parser->ib->gpu_addr = parser->ib->sa_bo.offset; |
| 432 | r = radeon_ib_schedule(rdev, parser->ib); |
| 433 | out: |
| 434 | if (!r) { |
| 435 | if (vm->fence) { |
| 436 | radeon_fence_unref(&vm->fence); |
| 437 | } |
| 438 | vm->fence = radeon_fence_ref(parser->ib->fence); |
| 439 | } |
| 440 | mutex_unlock(&fpriv->vm.mutex); |
| 441 | return r; |
| 442 | } |
| 443 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 444 | int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) |
| 445 | { |
| 446 | struct radeon_device *rdev = dev->dev_private; |
| 447 | struct radeon_cs_parser parser; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 448 | int r; |
| 449 | |
Michel Dänzer | 7a1619b | 2011-11-10 18:57:26 +0100 | [diff] [blame] | 450 | radeon_mutex_lock(&rdev->cs_mutex); |
Jerome Glisse | 6b7746e | 2012-02-20 17:57:20 -0500 | [diff] [blame] | 451 | if (!rdev->accel_working) { |
| 452 | radeon_mutex_unlock(&rdev->cs_mutex); |
| 453 | return -EBUSY; |
| 454 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 455 | /* initialize parser */ |
| 456 | memset(&parser, 0, sizeof(struct radeon_cs_parser)); |
| 457 | parser.filp = filp; |
| 458 | parser.rdev = rdev; |
Jerome Glisse | c8c15ff | 2010-01-18 13:01:36 +0100 | [diff] [blame] | 459 | parser.dev = rdev->dev; |
Dave Airlie | 428c6e3 | 2011-06-08 19:58:29 +1000 | [diff] [blame] | 460 | parser.family = rdev->family; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 461 | r = radeon_cs_parser_init(&parser, data); |
| 462 | if (r) { |
| 463 | DRM_ERROR("Failed to initialize parser !\n"); |
| 464 | radeon_cs_parser_fini(&parser, r); |
Michel Dänzer | 7a1619b | 2011-11-10 18:57:26 +0100 | [diff] [blame] | 465 | radeon_mutex_unlock(&rdev->cs_mutex); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 466 | return r; |
| 467 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 468 | r = radeon_cs_parser_relocs(&parser); |
| 469 | if (r) { |
Dave Airlie | 97f23b3 | 2010-03-19 10:33:44 +1000 | [diff] [blame] | 470 | if (r != -ERESTARTSYS) |
| 471 | DRM_ERROR("Failed to parse relocation %d!\n", r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 472 | radeon_cs_parser_fini(&parser, r); |
Michel Dänzer | 7a1619b | 2011-11-10 18:57:26 +0100 | [diff] [blame] | 473 | radeon_mutex_unlock(&rdev->cs_mutex); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 474 | return r; |
| 475 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 476 | r = radeon_cs_ib_chunk(rdev, &parser); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 477 | if (r) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 478 | goto out; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 479 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 480 | r = radeon_cs_ib_vm_chunk(rdev, &parser); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 481 | if (r) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 482 | goto out; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 483 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 484 | out: |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 485 | radeon_cs_parser_fini(&parser, r); |
Michel Dänzer | 7a1619b | 2011-11-10 18:57:26 +0100 | [diff] [blame] | 486 | radeon_mutex_unlock(&rdev->cs_mutex); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 487 | return r; |
| 488 | } |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 489 | |
| 490 | int radeon_cs_finish_pages(struct radeon_cs_parser *p) |
| 491 | { |
| 492 | struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx]; |
| 493 | int i; |
| 494 | int size = PAGE_SIZE; |
| 495 | |
| 496 | for (i = ibc->last_copied_page + 1; i <= ibc->last_page_index; i++) { |
| 497 | if (i == ibc->last_page_index) { |
| 498 | size = (ibc->length_dw * 4) % PAGE_SIZE; |
| 499 | if (size == 0) |
| 500 | size = PAGE_SIZE; |
| 501 | } |
| 502 | |
| 503 | if (DRM_COPY_FROM_USER(p->ib->ptr + (i * (PAGE_SIZE/4)), |
| 504 | ibc->user_ptr + (i * PAGE_SIZE), |
| 505 | size)) |
| 506 | return -EFAULT; |
| 507 | } |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx) |
| 512 | { |
| 513 | int new_page; |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 514 | struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx]; |
| 515 | int i; |
| 516 | int size = PAGE_SIZE; |
| 517 | |
Dave Airlie | c5e617e | 2009-09-26 09:03:39 +1000 | [diff] [blame] | 518 | for (i = ibc->last_copied_page + 1; i < pg_idx; i++) { |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 519 | if (DRM_COPY_FROM_USER(p->ib->ptr + (i * (PAGE_SIZE/4)), |
| 520 | ibc->user_ptr + (i * PAGE_SIZE), |
| 521 | PAGE_SIZE)) { |
| 522 | p->parser_error = -EFAULT; |
| 523 | return 0; |
| 524 | } |
| 525 | } |
| 526 | |
| 527 | new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1; |
| 528 | |
| 529 | if (pg_idx == ibc->last_page_index) { |
| 530 | size = (ibc->length_dw * 4) % PAGE_SIZE; |
| 531 | if (size == 0) |
| 532 | size = PAGE_SIZE; |
| 533 | } |
| 534 | |
| 535 | if (DRM_COPY_FROM_USER(ibc->kpage[new_page], |
| 536 | ibc->user_ptr + (pg_idx * PAGE_SIZE), |
| 537 | size)) { |
| 538 | p->parser_error = -EFAULT; |
| 539 | return 0; |
| 540 | } |
| 541 | |
| 542 | /* copy to IB here */ |
| 543 | memcpy((void *)(p->ib->ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size); |
| 544 | |
| 545 | ibc->last_copied_page = pg_idx; |
| 546 | ibc->kpage_idx[new_page] = pg_idx; |
| 547 | |
| 548 | return new_page; |
| 549 | } |