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