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 | */ |
Marek Olšák | 4330441 | 2014-03-02 00:56:20 +0100 | [diff] [blame] | 27 | #include <linux/list_sort.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 28 | #include <drm/drmP.h> |
| 29 | #include <drm/radeon_drm.h> |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 30 | #include "radeon_reg.h" |
| 31 | #include "radeon.h" |
Christian König | 860024e | 2013-09-07 18:29:01 +0200 | [diff] [blame] | 32 | #include "radeon_trace.h" |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 33 | |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 34 | #define RADEON_CS_MAX_PRIORITY 32u |
| 35 | #define RADEON_CS_NUM_BUCKETS (RADEON_CS_MAX_PRIORITY + 1) |
| 36 | |
| 37 | /* This is based on the bucket sort with O(n) time complexity. |
| 38 | * An item with priority "i" is added to bucket[i]. The lists are then |
| 39 | * concatenated in descending order. |
| 40 | */ |
| 41 | struct radeon_cs_buckets { |
| 42 | struct list_head bucket[RADEON_CS_NUM_BUCKETS]; |
| 43 | }; |
| 44 | |
| 45 | static void radeon_cs_buckets_init(struct radeon_cs_buckets *b) |
| 46 | { |
| 47 | unsigned i; |
| 48 | |
| 49 | for (i = 0; i < RADEON_CS_NUM_BUCKETS; i++) |
| 50 | INIT_LIST_HEAD(&b->bucket[i]); |
| 51 | } |
| 52 | |
| 53 | static void radeon_cs_buckets_add(struct radeon_cs_buckets *b, |
| 54 | struct list_head *item, unsigned priority) |
| 55 | { |
| 56 | /* Since buffers which appear sooner in the relocation list are |
| 57 | * likely to be used more often than buffers which appear later |
| 58 | * in the list, the sort mustn't change the ordering of buffers |
| 59 | * with the same priority, i.e. it must be stable. |
| 60 | */ |
| 61 | list_add_tail(item, &b->bucket[min(priority, RADEON_CS_MAX_PRIORITY)]); |
| 62 | } |
| 63 | |
| 64 | static void radeon_cs_buckets_get_list(struct radeon_cs_buckets *b, |
| 65 | struct list_head *out_list) |
| 66 | { |
| 67 | unsigned i; |
| 68 | |
| 69 | /* Connect the sorted buckets in the output list. */ |
| 70 | for (i = 0; i < RADEON_CS_NUM_BUCKETS; i++) { |
| 71 | list_splice(&b->bucket[i], out_list); |
| 72 | } |
| 73 | } |
| 74 | |
Lauri Kasanen | 1109ca0 | 2012-08-31 13:43:50 -0400 | [diff] [blame] | 75 | static int radeon_cs_parser_relocs(struct radeon_cs_parser *p) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 76 | { |
| 77 | struct drm_device *ddev = p->rdev->ddev; |
| 78 | struct radeon_cs_chunk *chunk; |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 79 | struct radeon_cs_buckets buckets; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 80 | unsigned i, j; |
| 81 | bool duplicate; |
| 82 | |
| 83 | if (p->chunk_relocs_idx == -1) { |
| 84 | return 0; |
| 85 | } |
| 86 | chunk = &p->chunks[p->chunk_relocs_idx]; |
Alex Deucher | cf4ccd0 | 2011-11-18 10:19:47 -0500 | [diff] [blame] | 87 | p->dma_reloc_idx = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 88 | /* FIXME: we assume that each relocs use 4 dwords */ |
| 89 | p->nrelocs = chunk->length_dw / 4; |
| 90 | p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL); |
| 91 | if (p->relocs_ptr == NULL) { |
| 92 | return -ENOMEM; |
| 93 | } |
| 94 | p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL); |
| 95 | if (p->relocs == NULL) { |
| 96 | return -ENOMEM; |
| 97 | } |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 98 | |
| 99 | radeon_cs_buckets_init(&buckets); |
| 100 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 101 | for (i = 0; i < p->nrelocs; i++) { |
| 102 | struct drm_radeon_cs_reloc *r; |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 103 | unsigned priority; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 104 | |
| 105 | duplicate = false; |
| 106 | r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4]; |
Christian König | 16557f1 | 2011-10-24 14:59:17 +0200 | [diff] [blame] | 107 | for (j = 0; j < i; j++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 108 | if (r->handle == p->relocs[j].handle) { |
| 109 | p->relocs_ptr[i] = &p->relocs[j]; |
| 110 | duplicate = true; |
| 111 | break; |
| 112 | } |
| 113 | } |
Christian König | 4474f3a | 2013-04-08 12:41:28 +0200 | [diff] [blame] | 114 | if (duplicate) { |
Christian König | 16557f1 | 2011-10-24 14:59:17 +0200 | [diff] [blame] | 115 | p->relocs[i].handle = 0; |
Christian König | 4474f3a | 2013-04-08 12:41:28 +0200 | [diff] [blame] | 116 | continue; |
| 117 | } |
| 118 | |
| 119 | p->relocs[i].gobj = drm_gem_object_lookup(ddev, p->filp, |
| 120 | r->handle); |
| 121 | if (p->relocs[i].gobj == NULL) { |
| 122 | DRM_ERROR("gem object lookup failed 0x%x\n", |
| 123 | r->handle); |
| 124 | return -ENOENT; |
| 125 | } |
| 126 | p->relocs_ptr[i] = &p->relocs[i]; |
| 127 | p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj); |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 128 | |
| 129 | /* The userspace buffer priorities are from 0 to 15. A higher |
| 130 | * number means the buffer is more important. |
| 131 | * Also, the buffers used for write have a higher priority than |
| 132 | * the buffers used for read only, which doubles the range |
| 133 | * to 0 to 31. 32 is reserved for the kernel driver. |
| 134 | */ |
| 135 | priority = (r->flags & 0xf) * 2 + !!r->write_domain; |
Christian König | 4474f3a | 2013-04-08 12:41:28 +0200 | [diff] [blame] | 136 | |
Christian König | 4f66c59 | 2013-09-15 13:31:28 +0200 | [diff] [blame] | 137 | /* the first reloc of an UVD job is the msg and that must be in |
| 138 | VRAM, also but everything into VRAM on AGP cards to avoid |
| 139 | image corruptions */ |
| 140 | if (p->ring == R600_RING_TYPE_UVD_INDEX && |
Alex Deucher | 4ca5a6c | 2013-09-15 23:23:07 -0400 | [diff] [blame] | 141 | (i == 0 || drm_pci_device_is_agp(p->rdev->ddev))) { |
Christian König | bcf6f1e | 2013-10-15 20:12:03 +0200 | [diff] [blame] | 142 | /* TODO: is this still needed for NI+ ? */ |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 143 | p->relocs[i].domain = |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 144 | RADEON_GEM_DOMAIN_VRAM; |
| 145 | |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 146 | p->relocs[i].alt_domain = |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 147 | RADEON_GEM_DOMAIN_VRAM; |
| 148 | |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 149 | /* prioritize this over any other relocation */ |
| 150 | priority = RADEON_CS_MAX_PRIORITY; |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 151 | } else { |
| 152 | uint32_t domain = r->write_domain ? |
| 153 | r->write_domain : r->read_domains; |
| 154 | |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 155 | p->relocs[i].domain = domain; |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 156 | if (domain == RADEON_GEM_DOMAIN_VRAM) |
| 157 | domain |= RADEON_GEM_DOMAIN_GTT; |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 158 | p->relocs[i].alt_domain = domain; |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 159 | } |
Christian König | 4474f3a | 2013-04-08 12:41:28 +0200 | [diff] [blame] | 160 | |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 161 | p->relocs[i].tv.bo = &p->relocs[i].robj->tbo; |
Christian König | 4474f3a | 2013-04-08 12:41:28 +0200 | [diff] [blame] | 162 | p->relocs[i].handle = r->handle; |
| 163 | |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 164 | radeon_cs_buckets_add(&buckets, &p->relocs[i].tv.head, |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 165 | priority); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 166 | } |
Marek Olšák | c9b7654 | 2014-03-02 00:56:21 +0100 | [diff] [blame] | 167 | |
| 168 | radeon_cs_buckets_get_list(&buckets, &p->validated); |
| 169 | |
Christian König | 6d2f294 | 2014-02-20 13:42:17 +0100 | [diff] [blame] | 170 | if (p->cs_flags & RADEON_CS_USE_VM) |
| 171 | p->vm_bos = radeon_vm_get_bos(p->rdev, p->ib.vm, |
| 172 | &p->validated); |
| 173 | |
Marek Olšák | 19dff56 | 2014-03-02 00:56:22 +0100 | [diff] [blame] | 174 | return radeon_bo_list_validate(p->rdev, &p->ticket, &p->validated, p->ring); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 175 | } |
| 176 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 177 | static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority) |
| 178 | { |
| 179 | p->priority = priority; |
| 180 | |
| 181 | switch (ring) { |
| 182 | default: |
| 183 | DRM_ERROR("unknown ring id: %d\n", ring); |
| 184 | return -EINVAL; |
| 185 | case RADEON_CS_RING_GFX: |
| 186 | p->ring = RADEON_RING_TYPE_GFX_INDEX; |
| 187 | break; |
| 188 | case RADEON_CS_RING_COMPUTE: |
Alex Deucher | 963e81f | 2013-06-26 17:37:11 -0400 | [diff] [blame] | 189 | if (p->rdev->family >= CHIP_TAHITI) { |
Alex Deucher | 8d5ef7b | 2012-03-20 17:18:24 -0400 | [diff] [blame] | 190 | if (p->priority > 0) |
| 191 | p->ring = CAYMAN_RING_TYPE_CP1_INDEX; |
| 192 | else |
| 193 | p->ring = CAYMAN_RING_TYPE_CP2_INDEX; |
| 194 | } else |
| 195 | p->ring = RADEON_RING_TYPE_GFX_INDEX; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 196 | break; |
Alex Deucher | 278a334 | 2012-12-13 12:27:28 -0500 | [diff] [blame] | 197 | case RADEON_CS_RING_DMA: |
| 198 | if (p->rdev->family >= CHIP_CAYMAN) { |
| 199 | if (p->priority > 0) |
| 200 | p->ring = R600_RING_TYPE_DMA_INDEX; |
| 201 | else |
| 202 | p->ring = CAYMAN_RING_TYPE_DMA1_INDEX; |
Alex Deucher | b9ace36 | 2014-01-27 10:59:51 -0500 | [diff] [blame] | 203 | } else if (p->rdev->family >= CHIP_RV770) { |
Alex Deucher | 278a334 | 2012-12-13 12:27:28 -0500 | [diff] [blame] | 204 | p->ring = R600_RING_TYPE_DMA_INDEX; |
| 205 | } else { |
| 206 | return -EINVAL; |
| 207 | } |
| 208 | break; |
Christian König | f2ba57b | 2013-04-08 12:41:29 +0200 | [diff] [blame] | 209 | case RADEON_CS_RING_UVD: |
| 210 | p->ring = R600_RING_TYPE_UVD_INDEX; |
| 211 | break; |
Christian König | d93f793 | 2013-05-23 12:10:04 +0200 | [diff] [blame] | 212 | case RADEON_CS_RING_VCE: |
| 213 | /* TODO: only use the low priority ring for now */ |
| 214 | p->ring = TN_RING_TYPE_VCE1_INDEX; |
| 215 | break; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 216 | } |
| 217 | return 0; |
| 218 | } |
| 219 | |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 220 | static void radeon_cs_sync_rings(struct radeon_cs_parser *p) |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 221 | { |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 222 | int i; |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 223 | |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 224 | for (i = 0; i < p->nrelocs; i++) { |
Christian König | f82cbdd | 2012-08-09 16:35:36 +0200 | [diff] [blame] | 225 | if (!p->relocs[i].robj) |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 226 | continue; |
| 227 | |
Christian König | 1654b81 | 2013-11-12 12:58:05 +0100 | [diff] [blame] | 228 | radeon_semaphore_sync_to(p->ib.semaphore, |
| 229 | p->relocs[i].robj->tbo.sync_obj); |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 230 | } |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 231 | } |
| 232 | |
Alex Deucher | 9b00147 | 2012-05-30 10:09:30 -0400 | [diff] [blame] | 233 | /* XXX: note that this is called from the legacy UMS CS ioctl as well */ |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 234 | int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data) |
| 235 | { |
| 236 | struct drm_radeon_cs *cs = data; |
| 237 | uint64_t *chunk_array_ptr; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 238 | unsigned size, i; |
| 239 | u32 ring = RADEON_CS_RING_GFX; |
| 240 | s32 priority = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 241 | |
| 242 | if (!cs->num_chunks) { |
| 243 | return 0; |
| 244 | } |
| 245 | /* get chunks */ |
| 246 | INIT_LIST_HEAD(&p->validated); |
| 247 | p->idx = 0; |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 248 | p->ib.sa_bo = NULL; |
| 249 | p->ib.semaphore = NULL; |
| 250 | p->const_ib.sa_bo = NULL; |
| 251 | p->const_ib.semaphore = NULL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 252 | p->chunk_ib_idx = -1; |
| 253 | p->chunk_relocs_idx = -1; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 254 | p->chunk_flags_idx = -1; |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 255 | p->chunk_const_ib_idx = -1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 256 | p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL); |
| 257 | if (p->chunks_array == NULL) { |
| 258 | return -ENOMEM; |
| 259 | } |
| 260 | chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks); |
Daniel Vetter | 1d6ac18 | 2013-12-11 11:34:44 +0100 | [diff] [blame] | 261 | if (copy_from_user(p->chunks_array, chunk_array_ptr, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 262 | sizeof(uint64_t)*cs->num_chunks)) { |
| 263 | return -EFAULT; |
| 264 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 265 | p->cs_flags = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 266 | p->nchunks = cs->num_chunks; |
| 267 | p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL); |
| 268 | if (p->chunks == NULL) { |
| 269 | return -ENOMEM; |
| 270 | } |
| 271 | for (i = 0; i < p->nchunks; i++) { |
| 272 | struct drm_radeon_cs_chunk __user **chunk_ptr = NULL; |
| 273 | struct drm_radeon_cs_chunk user_chunk; |
| 274 | uint32_t __user *cdata; |
| 275 | |
| 276 | chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i]; |
Daniel Vetter | 1d6ac18 | 2013-12-11 11:34:44 +0100 | [diff] [blame] | 277 | if (copy_from_user(&user_chunk, chunk_ptr, |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 278 | sizeof(struct drm_radeon_cs_chunk))) { |
| 279 | return -EFAULT; |
| 280 | } |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 281 | p->chunks[i].length_dw = user_chunk.length_dw; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 282 | p->chunks[i].chunk_id = user_chunk.chunk_id; |
| 283 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) { |
| 284 | p->chunk_relocs_idx = i; |
| 285 | } |
| 286 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) { |
| 287 | p->chunk_ib_idx = i; |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 288 | /* zero length IB isn't useful */ |
| 289 | if (p->chunks[i].length_dw == 0) |
| 290 | return -EINVAL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 291 | } |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 292 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) { |
| 293 | p->chunk_const_ib_idx = i; |
| 294 | /* zero length CONST IB isn't useful */ |
| 295 | if (p->chunks[i].length_dw == 0) |
| 296 | return -EINVAL; |
| 297 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 298 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) { |
| 299 | p->chunk_flags_idx = i; |
| 300 | /* zero length flags aren't useful */ |
| 301 | if (p->chunks[i].length_dw == 0) |
| 302 | return -EINVAL; |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 303 | } |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 304 | |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 305 | size = p->chunks[i].length_dw; |
| 306 | cdata = (void __user *)(unsigned long)user_chunk.chunk_data; |
| 307 | p->chunks[i].user_ptr = cdata; |
| 308 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) |
| 309 | continue; |
| 310 | |
| 311 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) { |
| 312 | if (!p->rdev || !(p->rdev->flags & RADEON_IS_AGP)) |
| 313 | continue; |
| 314 | } |
| 315 | |
| 316 | p->chunks[i].kdata = drm_malloc_ab(size, sizeof(uint32_t)); |
| 317 | size *= sizeof(uint32_t); |
| 318 | if (p->chunks[i].kdata == NULL) { |
| 319 | return -ENOMEM; |
| 320 | } |
Daniel Vetter | 1d6ac18 | 2013-12-11 11:34:44 +0100 | [diff] [blame] | 321 | if (copy_from_user(p->chunks[i].kdata, cdata, size)) { |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 322 | return -EFAULT; |
| 323 | } |
| 324 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) { |
| 325 | p->cs_flags = p->chunks[i].kdata[0]; |
| 326 | if (p->chunks[i].length_dw > 1) |
| 327 | ring = p->chunks[i].kdata[1]; |
| 328 | if (p->chunks[i].length_dw > 2) |
| 329 | priority = (s32)p->chunks[i].kdata[2]; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 330 | } |
| 331 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 332 | |
Alex Deucher | 9b00147 | 2012-05-30 10:09:30 -0400 | [diff] [blame] | 333 | /* these are KMS only */ |
| 334 | if (p->rdev) { |
| 335 | if ((p->cs_flags & RADEON_CS_USE_VM) && |
| 336 | !p->rdev->vm_manager.enabled) { |
| 337 | DRM_ERROR("VM not active on asic!\n"); |
| 338 | return -EINVAL; |
| 339 | } |
| 340 | |
Alex Deucher | 9b00147 | 2012-05-30 10:09:30 -0400 | [diff] [blame] | 341 | if (radeon_cs_get_ring(p, ring, priority)) |
| 342 | return -EINVAL; |
Christian König | 5744904 | 2013-04-08 12:41:27 +0200 | [diff] [blame] | 343 | |
| 344 | /* we only support VM on some SI+ rings */ |
Christian König | 60a4454 | 2014-05-21 17:43:59 +0200 | [diff] [blame^] | 345 | if ((p->cs_flags & RADEON_CS_USE_VM) == 0) { |
| 346 | if (p->rdev->asic->ring[p->ring]->cs_parse == NULL) { |
| 347 | DRM_ERROR("Ring %d requires VM!\n", p->ring); |
| 348 | return -EINVAL; |
| 349 | } |
| 350 | } else { |
| 351 | if (p->rdev->asic->ring[p->ring]->ib_parse == NULL) { |
| 352 | DRM_ERROR("VM not supported on ring %d!\n", |
| 353 | p->ring); |
| 354 | return -EINVAL; |
| 355 | } |
Christian König | 5744904 | 2013-04-08 12:41:27 +0200 | [diff] [blame] | 356 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 357 | } |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 358 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 359 | return 0; |
| 360 | } |
| 361 | |
Marek Olšák | 4330441 | 2014-03-02 00:56:20 +0100 | [diff] [blame] | 362 | static int cmp_size_smaller_first(void *priv, struct list_head *a, |
| 363 | struct list_head *b) |
| 364 | { |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 365 | struct radeon_cs_reloc *la = list_entry(a, struct radeon_cs_reloc, tv.head); |
| 366 | struct radeon_cs_reloc *lb = list_entry(b, struct radeon_cs_reloc, tv.head); |
Marek Olšák | 4330441 | 2014-03-02 00:56:20 +0100 | [diff] [blame] | 367 | |
| 368 | /* Sort A before B if A is smaller. */ |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 369 | return (int)la->robj->tbo.num_pages - (int)lb->robj->tbo.num_pages; |
Marek Olšák | 4330441 | 2014-03-02 00:56:20 +0100 | [diff] [blame] | 370 | } |
| 371 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 372 | /** |
| 373 | * cs_parser_fini() - clean parser states |
| 374 | * @parser: parser structure holding parsing context. |
| 375 | * @error: error number |
| 376 | * |
| 377 | * If error is set than unvalidate buffer, otherwise just free memory |
| 378 | * used by parsing context. |
| 379 | **/ |
Maarten Lankhorst | ecff665 | 2013-06-27 13:48:17 +0200 | [diff] [blame] | 380 | static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error, bool backoff) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 381 | { |
| 382 | unsigned i; |
| 383 | |
Jerome Glisse | e43b5ec | 2012-08-06 12:32:21 -0400 | [diff] [blame] | 384 | if (!error) { |
Marek Olšák | 4330441 | 2014-03-02 00:56:20 +0100 | [diff] [blame] | 385 | /* Sort the buffer list from the smallest to largest buffer, |
| 386 | * which affects the order of buffers in the LRU list. |
| 387 | * This assures that the smallest buffers are added first |
| 388 | * to the LRU list, so they are likely to be later evicted |
| 389 | * first, instead of large buffers whose eviction is more |
| 390 | * expensive. |
| 391 | * |
| 392 | * This slightly lowers the number of bytes moved by TTM |
| 393 | * per frame under memory pressure. |
| 394 | */ |
| 395 | list_sort(NULL, &parser->validated, cmp_size_smaller_first); |
| 396 | |
Maarten Lankhorst | ecff665 | 2013-06-27 13:48:17 +0200 | [diff] [blame] | 397 | ttm_eu_fence_buffer_objects(&parser->ticket, |
| 398 | &parser->validated, |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 399 | parser->ib.fence); |
Maarten Lankhorst | ecff665 | 2013-06-27 13:48:17 +0200 | [diff] [blame] | 400 | } else if (backoff) { |
| 401 | ttm_eu_backoff_reservation(&parser->ticket, |
| 402 | &parser->validated); |
Jerome Glisse | e43b5ec | 2012-08-06 12:32:21 -0400 | [diff] [blame] | 403 | } |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 404 | |
Pauli Nieminen | fcbc451 | 2010-03-19 07:44:33 +0000 | [diff] [blame] | 405 | if (parser->relocs != NULL) { |
| 406 | for (i = 0; i < parser->nrelocs; i++) { |
| 407 | if (parser->relocs[i].gobj) |
| 408 | drm_gem_object_unreference_unlocked(parser->relocs[i].gobj); |
| 409 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 410 | } |
Michel Dänzer | 48e113e | 2009-09-15 17:09:32 +0200 | [diff] [blame] | 411 | kfree(parser->track); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 412 | kfree(parser->relocs); |
| 413 | kfree(parser->relocs_ptr); |
Christian König | 6d2f294 | 2014-02-20 13:42:17 +0100 | [diff] [blame] | 414 | kfree(parser->vm_bos); |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 415 | for (i = 0; i < parser->nchunks; i++) |
| 416 | drm_free_large(parser->chunks[i].kdata); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 417 | kfree(parser->chunks); |
| 418 | kfree(parser->chunks_array); |
| 419 | radeon_ib_free(parser->rdev, &parser->ib); |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 420 | radeon_ib_free(parser->rdev, &parser->const_ib); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 421 | } |
| 422 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 423 | static int radeon_cs_ib_chunk(struct radeon_device *rdev, |
| 424 | struct radeon_cs_parser *parser) |
| 425 | { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 426 | int r; |
| 427 | |
| 428 | if (parser->chunk_ib_idx == -1) |
| 429 | return 0; |
| 430 | |
| 431 | if (parser->cs_flags & RADEON_CS_USE_VM) |
| 432 | return 0; |
| 433 | |
Christian König | eb0c19c | 2012-02-23 15:18:44 +0100 | [diff] [blame] | 434 | r = radeon_cs_parse(rdev, parser->ring, parser); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 435 | if (r || parser->parser_error) { |
| 436 | DRM_ERROR("Invalid command stream !\n"); |
| 437 | return r; |
| 438 | } |
Alex Deucher | ce3537d | 2013-07-24 12:12:49 -0400 | [diff] [blame] | 439 | |
| 440 | if (parser->ring == R600_RING_TYPE_UVD_INDEX) |
| 441 | radeon_uvd_note_usage(rdev); |
Alex Deucher | 03afe6f | 2013-08-23 11:56:26 -0400 | [diff] [blame] | 442 | else if ((parser->ring == TN_RING_TYPE_VCE1_INDEX) || |
| 443 | (parser->ring == TN_RING_TYPE_VCE2_INDEX)) |
| 444 | radeon_vce_note_usage(rdev); |
Alex Deucher | ce3537d | 2013-07-24 12:12:49 -0400 | [diff] [blame] | 445 | |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 446 | radeon_cs_sync_rings(parser); |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 447 | r = radeon_ib_schedule(rdev, &parser->ib, NULL); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 448 | if (r) { |
| 449 | DRM_ERROR("Failed to schedule IB !\n"); |
| 450 | } |
Christian König | 93bf888 | 2012-07-03 14:05:41 +0200 | [diff] [blame] | 451 | return r; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 452 | } |
| 453 | |
Christian König | 6d2f294 | 2014-02-20 13:42:17 +0100 | [diff] [blame] | 454 | static int radeon_bo_vm_update_pte(struct radeon_cs_parser *p, |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 455 | struct radeon_vm *vm) |
| 456 | { |
Christian König | 6d2f294 | 2014-02-20 13:42:17 +0100 | [diff] [blame] | 457 | struct radeon_device *rdev = p->rdev; |
| 458 | int i, r; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 459 | |
Christian König | 6d2f294 | 2014-02-20 13:42:17 +0100 | [diff] [blame] | 460 | r = radeon_vm_update_page_directory(rdev, vm); |
| 461 | if (r) |
Jerome Glisse | 3e8970f | 2012-08-13 12:07:33 -0400 | [diff] [blame] | 462 | return r; |
Christian König | 6d2f294 | 2014-02-20 13:42:17 +0100 | [diff] [blame] | 463 | |
| 464 | r = radeon_vm_bo_update(rdev, vm, rdev->ring_tmp_bo.bo, |
| 465 | &rdev->ring_tmp_bo.bo->tbo.mem); |
| 466 | if (r) |
| 467 | return r; |
| 468 | |
| 469 | for (i = 0; i < p->nrelocs; i++) { |
| 470 | struct radeon_bo *bo; |
| 471 | |
| 472 | /* ignore duplicates */ |
| 473 | if (p->relocs_ptr[i] != &p->relocs[i]) |
| 474 | continue; |
| 475 | |
| 476 | bo = p->relocs[i].robj; |
| 477 | r = radeon_vm_bo_update(rdev, vm, bo, &bo->tbo.mem); |
| 478 | if (r) |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 479 | return r; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 480 | } |
| 481 | return 0; |
| 482 | } |
| 483 | |
| 484 | static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev, |
| 485 | struct radeon_cs_parser *parser) |
| 486 | { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 487 | struct radeon_fpriv *fpriv = parser->filp->driver_priv; |
| 488 | struct radeon_vm *vm = &fpriv->vm; |
| 489 | int r; |
| 490 | |
| 491 | if (parser->chunk_ib_idx == -1) |
| 492 | return 0; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 493 | if ((parser->cs_flags & RADEON_CS_USE_VM) == 0) |
| 494 | return 0; |
| 495 | |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 496 | if (parser->const_ib.length_dw) { |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 497 | r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib); |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 498 | if (r) { |
| 499 | return r; |
| 500 | } |
| 501 | } |
| 502 | |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 503 | r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 504 | if (r) { |
| 505 | return r; |
| 506 | } |
| 507 | |
Alex Deucher | ce3537d | 2013-07-24 12:12:49 -0400 | [diff] [blame] | 508 | if (parser->ring == R600_RING_TYPE_UVD_INDEX) |
| 509 | radeon_uvd_note_usage(rdev); |
| 510 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 511 | mutex_lock(&vm->mutex); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 512 | r = radeon_bo_vm_update_pte(parser, vm); |
| 513 | if (r) { |
| 514 | goto out; |
| 515 | } |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 516 | radeon_cs_sync_rings(parser); |
Christian König | 1654b81 | 2013-11-12 12:58:05 +0100 | [diff] [blame] | 517 | radeon_semaphore_sync_to(parser->ib.semaphore, vm->fence); |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 518 | |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 519 | if ((rdev->family >= CHIP_TAHITI) && |
| 520 | (parser->chunk_const_ib_idx != -1)) { |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 521 | r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib); |
| 522 | } else { |
| 523 | r = radeon_ib_schedule(rdev, &parser->ib, NULL); |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 524 | } |
| 525 | |
Christian König | ee60e29 | 2012-08-09 16:21:08 +0200 | [diff] [blame] | 526 | out: |
Christian König | 36ff39c | 2012-05-09 10:07:08 +0200 | [diff] [blame] | 527 | mutex_unlock(&vm->mutex); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 528 | return r; |
| 529 | } |
| 530 | |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 531 | static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r) |
| 532 | { |
| 533 | if (r == -EDEADLK) { |
| 534 | r = radeon_gpu_reset(rdev); |
| 535 | if (!r) |
| 536 | r = -EAGAIN; |
| 537 | } |
| 538 | return r; |
| 539 | } |
| 540 | |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 541 | static int radeon_cs_ib_fill(struct radeon_device *rdev, struct radeon_cs_parser *parser) |
| 542 | { |
| 543 | struct radeon_cs_chunk *ib_chunk; |
| 544 | struct radeon_vm *vm = NULL; |
| 545 | int r; |
| 546 | |
| 547 | if (parser->chunk_ib_idx == -1) |
| 548 | return 0; |
| 549 | |
| 550 | if (parser->cs_flags & RADEON_CS_USE_VM) { |
| 551 | struct radeon_fpriv *fpriv = parser->filp->driver_priv; |
| 552 | vm = &fpriv->vm; |
| 553 | |
| 554 | if ((rdev->family >= CHIP_TAHITI) && |
| 555 | (parser->chunk_const_ib_idx != -1)) { |
| 556 | ib_chunk = &parser->chunks[parser->chunk_const_ib_idx]; |
| 557 | if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) { |
| 558 | DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw); |
| 559 | return -EINVAL; |
| 560 | } |
| 561 | r = radeon_ib_get(rdev, parser->ring, &parser->const_ib, |
| 562 | vm, ib_chunk->length_dw * 4); |
| 563 | if (r) { |
| 564 | DRM_ERROR("Failed to get const ib !\n"); |
| 565 | return r; |
| 566 | } |
| 567 | parser->const_ib.is_const_ib = true; |
| 568 | parser->const_ib.length_dw = ib_chunk->length_dw; |
Daniel Vetter | 1d6ac18 | 2013-12-11 11:34:44 +0100 | [diff] [blame] | 569 | if (copy_from_user(parser->const_ib.ptr, |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 570 | ib_chunk->user_ptr, |
| 571 | ib_chunk->length_dw * 4)) |
| 572 | return -EFAULT; |
| 573 | } |
| 574 | |
| 575 | ib_chunk = &parser->chunks[parser->chunk_ib_idx]; |
| 576 | if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) { |
| 577 | DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw); |
| 578 | return -EINVAL; |
| 579 | } |
| 580 | } |
| 581 | ib_chunk = &parser->chunks[parser->chunk_ib_idx]; |
| 582 | |
| 583 | r = radeon_ib_get(rdev, parser->ring, &parser->ib, |
| 584 | vm, ib_chunk->length_dw * 4); |
| 585 | if (r) { |
| 586 | DRM_ERROR("Failed to get ib !\n"); |
| 587 | return r; |
| 588 | } |
| 589 | parser->ib.length_dw = ib_chunk->length_dw; |
| 590 | if (ib_chunk->kdata) |
| 591 | memcpy(parser->ib.ptr, ib_chunk->kdata, ib_chunk->length_dw * 4); |
Daniel Vetter | 1d6ac18 | 2013-12-11 11:34:44 +0100 | [diff] [blame] | 592 | else if (copy_from_user(parser->ib.ptr, ib_chunk->user_ptr, ib_chunk->length_dw * 4)) |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 593 | return -EFAULT; |
| 594 | return 0; |
| 595 | } |
| 596 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 597 | int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) |
| 598 | { |
| 599 | struct radeon_device *rdev = dev->dev_private; |
| 600 | struct radeon_cs_parser parser; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 601 | int r; |
| 602 | |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 603 | down_read(&rdev->exclusive_lock); |
Jerome Glisse | 6b7746e | 2012-02-20 17:57:20 -0500 | [diff] [blame] | 604 | if (!rdev->accel_working) { |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 605 | up_read(&rdev->exclusive_lock); |
Jerome Glisse | 6b7746e | 2012-02-20 17:57:20 -0500 | [diff] [blame] | 606 | return -EBUSY; |
| 607 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 608 | /* initialize parser */ |
| 609 | memset(&parser, 0, sizeof(struct radeon_cs_parser)); |
| 610 | parser.filp = filp; |
| 611 | parser.rdev = rdev; |
Jerome Glisse | c8c15ff | 2010-01-18 13:01:36 +0100 | [diff] [blame] | 612 | parser.dev = rdev->dev; |
Dave Airlie | 428c6e3 | 2011-06-08 19:58:29 +1000 | [diff] [blame] | 613 | parser.family = rdev->family; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 614 | r = radeon_cs_parser_init(&parser, data); |
| 615 | if (r) { |
| 616 | DRM_ERROR("Failed to initialize parser !\n"); |
Maarten Lankhorst | ecff665 | 2013-06-27 13:48:17 +0200 | [diff] [blame] | 617 | radeon_cs_parser_fini(&parser, r, false); |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 618 | up_read(&rdev->exclusive_lock); |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 619 | r = radeon_cs_handle_lockup(rdev, r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 620 | return r; |
| 621 | } |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 622 | |
| 623 | r = radeon_cs_ib_fill(rdev, &parser); |
| 624 | if (!r) { |
| 625 | r = radeon_cs_parser_relocs(&parser); |
| 626 | if (r && r != -ERESTARTSYS) |
Dave Airlie | 97f23b3 | 2010-03-19 10:33:44 +1000 | [diff] [blame] | 627 | DRM_ERROR("Failed to parse relocation %d!\n", r); |
Maarten Lankhorst | 28a326c | 2013-10-09 14:36:57 +0200 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | if (r) { |
Maarten Lankhorst | ecff665 | 2013-06-27 13:48:17 +0200 | [diff] [blame] | 631 | radeon_cs_parser_fini(&parser, r, false); |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 632 | up_read(&rdev->exclusive_lock); |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 633 | r = radeon_cs_handle_lockup(rdev, r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 634 | return r; |
| 635 | } |
Christian König | 55b51c8 | 2013-04-18 15:25:59 +0200 | [diff] [blame] | 636 | |
Christian König | 860024e | 2013-09-07 18:29:01 +0200 | [diff] [blame] | 637 | trace_radeon_cs(&parser); |
| 638 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 639 | r = radeon_cs_ib_chunk(rdev, &parser); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 640 | if (r) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 641 | goto out; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 642 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 643 | r = radeon_cs_ib_vm_chunk(rdev, &parser); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 644 | if (r) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 645 | goto out; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 646 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 647 | out: |
Maarten Lankhorst | ecff665 | 2013-06-27 13:48:17 +0200 | [diff] [blame] | 648 | radeon_cs_parser_fini(&parser, r, true); |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 649 | up_read(&rdev->exclusive_lock); |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 650 | r = radeon_cs_handle_lockup(rdev, r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 651 | return r; |
| 652 | } |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 653 | |
Ilija Hadzic | 4db0131 | 2013-01-02 18:27:40 -0500 | [diff] [blame] | 654 | /** |
| 655 | * radeon_cs_packet_parse() - parse cp packet and point ib index to next packet |
| 656 | * @parser: parser structure holding parsing context. |
| 657 | * @pkt: where to store packet information |
| 658 | * |
| 659 | * Assume that chunk_ib_index is properly set. Will return -EINVAL |
| 660 | * if packet is bigger than remaining ib size. or if packets is unknown. |
| 661 | **/ |
| 662 | int radeon_cs_packet_parse(struct radeon_cs_parser *p, |
| 663 | struct radeon_cs_packet *pkt, |
| 664 | unsigned idx) |
| 665 | { |
| 666 | struct radeon_cs_chunk *ib_chunk = &p->chunks[p->chunk_ib_idx]; |
| 667 | struct radeon_device *rdev = p->rdev; |
| 668 | uint32_t header; |
| 669 | |
| 670 | if (idx >= ib_chunk->length_dw) { |
| 671 | DRM_ERROR("Can not parse packet at %d after CS end %d !\n", |
| 672 | idx, ib_chunk->length_dw); |
| 673 | return -EINVAL; |
| 674 | } |
| 675 | header = radeon_get_ib_value(p, idx); |
| 676 | pkt->idx = idx; |
| 677 | pkt->type = RADEON_CP_PACKET_GET_TYPE(header); |
| 678 | pkt->count = RADEON_CP_PACKET_GET_COUNT(header); |
| 679 | pkt->one_reg_wr = 0; |
| 680 | switch (pkt->type) { |
| 681 | case RADEON_PACKET_TYPE0: |
| 682 | if (rdev->family < CHIP_R600) { |
| 683 | pkt->reg = R100_CP_PACKET0_GET_REG(header); |
| 684 | pkt->one_reg_wr = |
| 685 | RADEON_CP_PACKET0_GET_ONE_REG_WR(header); |
| 686 | } else |
| 687 | pkt->reg = R600_CP_PACKET0_GET_REG(header); |
| 688 | break; |
| 689 | case RADEON_PACKET_TYPE3: |
| 690 | pkt->opcode = RADEON_CP_PACKET3_GET_OPCODE(header); |
| 691 | break; |
| 692 | case RADEON_PACKET_TYPE2: |
| 693 | pkt->count = -1; |
| 694 | break; |
| 695 | default: |
| 696 | DRM_ERROR("Unknown packet type %d at %d !\n", pkt->type, idx); |
| 697 | return -EINVAL; |
| 698 | } |
| 699 | if ((pkt->count + 1 + pkt->idx) >= ib_chunk->length_dw) { |
| 700 | DRM_ERROR("Packet (%d:%d:%d) end after CS buffer (%d) !\n", |
| 701 | pkt->idx, pkt->type, pkt->count, ib_chunk->length_dw); |
| 702 | return -EINVAL; |
| 703 | } |
| 704 | return 0; |
| 705 | } |
Ilija Hadzic | 9ffb7a6 | 2013-01-02 18:27:42 -0500 | [diff] [blame] | 706 | |
| 707 | /** |
| 708 | * radeon_cs_packet_next_is_pkt3_nop() - test if the next packet is P3 NOP |
| 709 | * @p: structure holding the parser context. |
| 710 | * |
| 711 | * Check if the next packet is NOP relocation packet3. |
| 712 | **/ |
| 713 | bool radeon_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p) |
| 714 | { |
| 715 | struct radeon_cs_packet p3reloc; |
| 716 | int r; |
| 717 | |
| 718 | r = radeon_cs_packet_parse(p, &p3reloc, p->idx); |
| 719 | if (r) |
| 720 | return false; |
| 721 | if (p3reloc.type != RADEON_PACKET_TYPE3) |
| 722 | return false; |
| 723 | if (p3reloc.opcode != RADEON_PACKET3_NOP) |
| 724 | return false; |
| 725 | return true; |
| 726 | } |
Ilija Hadzic | c3ad63a | 2013-01-02 18:27:45 -0500 | [diff] [blame] | 727 | |
| 728 | /** |
| 729 | * radeon_cs_dump_packet() - dump raw packet context |
| 730 | * @p: structure holding the parser context. |
| 731 | * @pkt: structure holding the packet. |
| 732 | * |
| 733 | * Used mostly for debugging and error reporting. |
| 734 | **/ |
| 735 | void radeon_cs_dump_packet(struct radeon_cs_parser *p, |
| 736 | struct radeon_cs_packet *pkt) |
| 737 | { |
| 738 | volatile uint32_t *ib; |
| 739 | unsigned i; |
| 740 | unsigned idx; |
| 741 | |
| 742 | ib = p->ib.ptr; |
| 743 | idx = pkt->idx; |
| 744 | for (i = 0; i <= (pkt->count + 1); i++, idx++) |
| 745 | DRM_INFO("ib[%d]=0x%08X\n", idx, ib[idx]); |
| 746 | } |
| 747 | |
Ilija Hadzic | e971699 | 2013-01-02 18:27:46 -0500 | [diff] [blame] | 748 | /** |
| 749 | * radeon_cs_packet_next_reloc() - parse next (should be reloc) packet |
| 750 | * @parser: parser structure holding parsing context. |
| 751 | * @data: pointer to relocation data |
| 752 | * @offset_start: starting offset |
| 753 | * @offset_mask: offset mask (to align start offset on) |
| 754 | * @reloc: reloc informations |
| 755 | * |
| 756 | * Check if next packet is relocation packet3, do bo validation and compute |
| 757 | * GPU offset using the provided start. |
| 758 | **/ |
| 759 | int radeon_cs_packet_next_reloc(struct radeon_cs_parser *p, |
| 760 | struct radeon_cs_reloc **cs_reloc, |
| 761 | int nomm) |
| 762 | { |
| 763 | struct radeon_cs_chunk *relocs_chunk; |
| 764 | struct radeon_cs_packet p3reloc; |
| 765 | unsigned idx; |
| 766 | int r; |
| 767 | |
| 768 | if (p->chunk_relocs_idx == -1) { |
| 769 | DRM_ERROR("No relocation chunk !\n"); |
| 770 | return -EINVAL; |
| 771 | } |
| 772 | *cs_reloc = NULL; |
| 773 | relocs_chunk = &p->chunks[p->chunk_relocs_idx]; |
| 774 | r = radeon_cs_packet_parse(p, &p3reloc, p->idx); |
| 775 | if (r) |
| 776 | return r; |
| 777 | p->idx += p3reloc.count + 2; |
| 778 | if (p3reloc.type != RADEON_PACKET_TYPE3 || |
| 779 | p3reloc.opcode != RADEON_PACKET3_NOP) { |
| 780 | DRM_ERROR("No packet3 for relocation for packet at %d.\n", |
| 781 | p3reloc.idx); |
| 782 | radeon_cs_dump_packet(p, &p3reloc); |
| 783 | return -EINVAL; |
| 784 | } |
| 785 | idx = radeon_get_ib_value(p, p3reloc.idx + 1); |
| 786 | if (idx >= relocs_chunk->length_dw) { |
| 787 | DRM_ERROR("Relocs at %d after relocations chunk end %d !\n", |
| 788 | idx, relocs_chunk->length_dw); |
| 789 | radeon_cs_dump_packet(p, &p3reloc); |
| 790 | return -EINVAL; |
| 791 | } |
| 792 | /* FIXME: we assume reloc size is 4 dwords */ |
| 793 | if (nomm) { |
| 794 | *cs_reloc = p->relocs; |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 795 | (*cs_reloc)->gpu_offset = |
Ilija Hadzic | e971699 | 2013-01-02 18:27:46 -0500 | [diff] [blame] | 796 | (u64)relocs_chunk->kdata[idx + 3] << 32; |
Christian König | df0af44 | 2014-03-03 12:38:08 +0100 | [diff] [blame] | 797 | (*cs_reloc)->gpu_offset |= relocs_chunk->kdata[idx + 0]; |
Ilija Hadzic | e971699 | 2013-01-02 18:27:46 -0500 | [diff] [blame] | 798 | } else |
| 799 | *cs_reloc = p->relocs_ptr[(idx / 4)]; |
| 800 | return 0; |
| 801 | } |