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 | */ |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 27 | #include <drm/drmP.h> |
| 28 | #include <drm/radeon_drm.h> |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 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 | |
Lauri Kasanen | 1109ca0 | 2012-08-31 13:43:50 -0400 | [diff] [blame] | 35 | static int radeon_cs_parser_relocs(struct radeon_cs_parser *p) |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 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]; |
Alex Deucher | cf4ccd0 | 2011-11-18 10:19:47 -0500 | [diff] [blame] | 46 | p->dma_reloc_idx = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 47 | /* FIXME: we assume that each relocs use 4 dwords */ |
| 48 | p->nrelocs = chunk->length_dw / 4; |
| 49 | p->relocs_ptr = kcalloc(p->nrelocs, sizeof(void *), GFP_KERNEL); |
| 50 | if (p->relocs_ptr == NULL) { |
| 51 | return -ENOMEM; |
| 52 | } |
| 53 | p->relocs = kcalloc(p->nrelocs, sizeof(struct radeon_cs_reloc), GFP_KERNEL); |
| 54 | if (p->relocs == NULL) { |
| 55 | return -ENOMEM; |
| 56 | } |
| 57 | for (i = 0; i < p->nrelocs; i++) { |
| 58 | struct drm_radeon_cs_reloc *r; |
| 59 | |
| 60 | duplicate = false; |
| 61 | r = (struct drm_radeon_cs_reloc *)&chunk->kdata[i*4]; |
Christian König | 16557f1 | 2011-10-24 14:59:17 +0200 | [diff] [blame] | 62 | for (j = 0; j < i; j++) { |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 63 | if (r->handle == p->relocs[j].handle) { |
| 64 | p->relocs_ptr[i] = &p->relocs[j]; |
| 65 | duplicate = true; |
| 66 | break; |
| 67 | } |
| 68 | } |
| 69 | if (!duplicate) { |
| 70 | p->relocs[i].gobj = drm_gem_object_lookup(ddev, |
| 71 | p->filp, |
| 72 | r->handle); |
| 73 | if (p->relocs[i].gobj == NULL) { |
| 74 | DRM_ERROR("gem object lookup failed 0x%x\n", |
| 75 | r->handle); |
Chris Wilson | bf79cb9 | 2010-08-04 14:19:46 +0100 | [diff] [blame] | 76 | return -ENOENT; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 77 | } |
| 78 | p->relocs_ptr[i] = &p->relocs[i]; |
Daniel Vetter | 7e4d15d | 2011-02-18 17:59:17 +0100 | [diff] [blame] | 79 | p->relocs[i].robj = gem_to_radeon_bo(p->relocs[i].gobj); |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 80 | p->relocs[i].lobj.bo = p->relocs[i].robj; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 81 | p->relocs[i].lobj.wdomain = r->write_domain; |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 82 | p->relocs[i].lobj.rdomain = r->read_domains; |
| 83 | p->relocs[i].lobj.tv.bo = &p->relocs[i].robj->tbo; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 84 | p->relocs[i].handle = r->handle; |
| 85 | p->relocs[i].flags = r->flags; |
Jerome Glisse | 4c78867 | 2009-11-20 14:29:23 +0100 | [diff] [blame] | 86 | radeon_bo_list_add_object(&p->relocs[i].lobj, |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 87 | &p->validated); |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 88 | |
Christian König | 16557f1 | 2011-10-24 14:59:17 +0200 | [diff] [blame] | 89 | } else |
| 90 | p->relocs[i].handle = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 91 | } |
Jerome Glisse | 94429bb | 2010-02-15 21:36:33 +0100 | [diff] [blame] | 92 | return radeon_bo_list_validate(&p->validated); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 93 | } |
| 94 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 95 | static int radeon_cs_get_ring(struct radeon_cs_parser *p, u32 ring, s32 priority) |
| 96 | { |
| 97 | p->priority = priority; |
| 98 | |
| 99 | switch (ring) { |
| 100 | default: |
| 101 | DRM_ERROR("unknown ring id: %d\n", ring); |
| 102 | return -EINVAL; |
| 103 | case RADEON_CS_RING_GFX: |
| 104 | p->ring = RADEON_RING_TYPE_GFX_INDEX; |
| 105 | break; |
| 106 | case RADEON_CS_RING_COMPUTE: |
Alex Deucher | 8d5ef7b | 2012-03-20 17:18:24 -0400 | [diff] [blame] | 107 | if (p->rdev->family >= CHIP_TAHITI) { |
| 108 | if (p->priority > 0) |
| 109 | p->ring = CAYMAN_RING_TYPE_CP1_INDEX; |
| 110 | else |
| 111 | p->ring = CAYMAN_RING_TYPE_CP2_INDEX; |
| 112 | } else |
| 113 | p->ring = RADEON_RING_TYPE_GFX_INDEX; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 114 | break; |
Alex Deucher | 278a334 | 2012-12-13 12:27:28 -0500 | [diff] [blame] | 115 | case RADEON_CS_RING_DMA: |
| 116 | if (p->rdev->family >= CHIP_CAYMAN) { |
| 117 | if (p->priority > 0) |
| 118 | p->ring = R600_RING_TYPE_DMA_INDEX; |
| 119 | else |
| 120 | p->ring = CAYMAN_RING_TYPE_DMA1_INDEX; |
| 121 | } else if (p->rdev->family >= CHIP_R600) { |
| 122 | p->ring = R600_RING_TYPE_DMA_INDEX; |
| 123 | } else { |
| 124 | return -EINVAL; |
| 125 | } |
| 126 | break; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 127 | } |
| 128 | return 0; |
| 129 | } |
| 130 | |
Christian König | f82cbdd | 2012-08-09 16:35:36 +0200 | [diff] [blame] | 131 | static void radeon_cs_sync_to(struct radeon_cs_parser *p, |
| 132 | struct radeon_fence *fence) |
| 133 | { |
| 134 | struct radeon_fence *other; |
| 135 | |
| 136 | if (!fence) |
| 137 | return; |
| 138 | |
| 139 | other = p->ib.sync_to[fence->ring]; |
| 140 | p->ib.sync_to[fence->ring] = radeon_fence_later(fence, other); |
| 141 | } |
| 142 | |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 143 | static void radeon_cs_sync_rings(struct radeon_cs_parser *p) |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 144 | { |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 145 | int i; |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 146 | |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 147 | for (i = 0; i < p->nrelocs; i++) { |
Christian König | f82cbdd | 2012-08-09 16:35:36 +0200 | [diff] [blame] | 148 | if (!p->relocs[i].robj) |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 149 | continue; |
| 150 | |
Christian König | f82cbdd | 2012-08-09 16:35:36 +0200 | [diff] [blame] | 151 | radeon_cs_sync_to(p, p->relocs[i].robj->tbo.sync_obj); |
Christian König | cdac550 | 2012-02-23 15:18:42 +0100 | [diff] [blame] | 152 | } |
Christian König | 93504fc | 2012-01-05 22:11:06 -0500 | [diff] [blame] | 153 | } |
| 154 | |
Alex Deucher | 9b00147 | 2012-05-30 10:09:30 -0400 | [diff] [blame] | 155 | /* 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] | 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; |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 170 | p->ib.sa_bo = NULL; |
| 171 | p->ib.semaphore = NULL; |
| 172 | p->const_ib.sa_bo = NULL; |
| 173 | p->const_ib.semaphore = NULL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 174 | p->chunk_ib_idx = -1; |
| 175 | p->chunk_relocs_idx = -1; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 176 | p->chunk_flags_idx = -1; |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 177 | p->chunk_const_ib_idx = -1; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 178 | p->chunks_array = kcalloc(cs->num_chunks, sizeof(uint64_t), GFP_KERNEL); |
| 179 | if (p->chunks_array == NULL) { |
| 180 | return -ENOMEM; |
| 181 | } |
| 182 | chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks); |
| 183 | if (DRM_COPY_FROM_USER(p->chunks_array, chunk_array_ptr, |
| 184 | sizeof(uint64_t)*cs->num_chunks)) { |
| 185 | return -EFAULT; |
| 186 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 187 | p->cs_flags = 0; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 188 | p->nchunks = cs->num_chunks; |
| 189 | p->chunks = kcalloc(p->nchunks, sizeof(struct radeon_cs_chunk), GFP_KERNEL); |
| 190 | if (p->chunks == NULL) { |
| 191 | return -ENOMEM; |
| 192 | } |
| 193 | for (i = 0; i < p->nchunks; i++) { |
| 194 | struct drm_radeon_cs_chunk __user **chunk_ptr = NULL; |
| 195 | struct drm_radeon_cs_chunk user_chunk; |
| 196 | uint32_t __user *cdata; |
| 197 | |
| 198 | chunk_ptr = (void __user*)(unsigned long)p->chunks_array[i]; |
| 199 | if (DRM_COPY_FROM_USER(&user_chunk, chunk_ptr, |
| 200 | sizeof(struct drm_radeon_cs_chunk))) { |
| 201 | return -EFAULT; |
| 202 | } |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 203 | p->chunks[i].length_dw = user_chunk.length_dw; |
| 204 | p->chunks[i].kdata = NULL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 205 | p->chunks[i].chunk_id = user_chunk.chunk_id; |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 206 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 207 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) { |
| 208 | p->chunk_relocs_idx = i; |
| 209 | } |
| 210 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_IB) { |
| 211 | p->chunk_ib_idx = i; |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 212 | /* zero length IB isn't useful */ |
| 213 | if (p->chunks[i].length_dw == 0) |
| 214 | return -EINVAL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 215 | } |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 216 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_CONST_IB) { |
| 217 | p->chunk_const_ib_idx = i; |
| 218 | /* zero length CONST IB isn't useful */ |
| 219 | if (p->chunks[i].length_dw == 0) |
| 220 | return -EINVAL; |
| 221 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 222 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) { |
| 223 | p->chunk_flags_idx = i; |
| 224 | /* zero length flags aren't useful */ |
| 225 | if (p->chunks[i].length_dw == 0) |
| 226 | return -EINVAL; |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 227 | } |
Dave Airlie | 5176fdc | 2009-06-30 11:47:14 +1000 | [diff] [blame] | 228 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 229 | p->chunks[i].length_dw = user_chunk.length_dw; |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 230 | 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] | 231 | |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 232 | cdata = (uint32_t *)(unsigned long)user_chunk.chunk_data; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 233 | if ((p->chunks[i].chunk_id == RADEON_CHUNK_ID_RELOCS) || |
| 234 | (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS)) { |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 235 | size = p->chunks[i].length_dw * sizeof(uint32_t); |
| 236 | p->chunks[i].kdata = kmalloc(size, GFP_KERNEL); |
| 237 | if (p->chunks[i].kdata == NULL) { |
| 238 | return -ENOMEM; |
| 239 | } |
| 240 | if (DRM_COPY_FROM_USER(p->chunks[i].kdata, |
| 241 | p->chunks[i].user_ptr, size)) { |
| 242 | return -EFAULT; |
| 243 | } |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 244 | if (p->chunks[i].chunk_id == RADEON_CHUNK_ID_FLAGS) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 245 | p->cs_flags = p->chunks[i].kdata[0]; |
| 246 | if (p->chunks[i].length_dw > 1) |
| 247 | ring = p->chunks[i].kdata[1]; |
| 248 | if (p->chunks[i].length_dw > 2) |
| 249 | priority = (s32)p->chunks[i].kdata[2]; |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 250 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 251 | } |
| 252 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 253 | |
Alex Deucher | 9b00147 | 2012-05-30 10:09:30 -0400 | [diff] [blame] | 254 | /* these are KMS only */ |
| 255 | if (p->rdev) { |
| 256 | if ((p->cs_flags & RADEON_CS_USE_VM) && |
| 257 | !p->rdev->vm_manager.enabled) { |
| 258 | DRM_ERROR("VM not active on asic!\n"); |
| 259 | return -EINVAL; |
| 260 | } |
| 261 | |
| 262 | /* we only support VM on SI+ */ |
| 263 | if ((p->rdev->family >= CHIP_TAHITI) && |
| 264 | ((p->cs_flags & RADEON_CS_USE_VM) == 0)) { |
| 265 | DRM_ERROR("VM required on SI+!\n"); |
| 266 | return -EINVAL; |
| 267 | } |
| 268 | |
| 269 | if (radeon_cs_get_ring(p, ring, priority)) |
| 270 | return -EINVAL; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 271 | } |
Marek Olšák | e70f224 | 2011-10-25 01:38:45 +0200 | [diff] [blame] | 272 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 273 | /* deal with non-vm */ |
| 274 | if ((p->chunk_ib_idx != -1) && |
| 275 | ((p->cs_flags & RADEON_CS_USE_VM) == 0) && |
| 276 | (p->chunks[p->chunk_ib_idx].chunk_id == RADEON_CHUNK_ID_IB)) { |
| 277 | if (p->chunks[p->chunk_ib_idx].length_dw > (16 * 1024)) { |
| 278 | DRM_ERROR("cs IB too big: %d\n", |
| 279 | p->chunks[p->chunk_ib_idx].length_dw); |
| 280 | return -EINVAL; |
| 281 | } |
Dave Airlie | 6a7068b | 2012-04-03 16:23:41 +0100 | [diff] [blame] | 282 | if ((p->rdev->flags & RADEON_IS_AGP)) { |
| 283 | p->chunks[p->chunk_ib_idx].kpage[0] = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 284 | p->chunks[p->chunk_ib_idx].kpage[1] = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 285 | if (p->chunks[p->chunk_ib_idx].kpage[0] == NULL || |
| 286 | p->chunks[p->chunk_ib_idx].kpage[1] == NULL) { |
| 287 | kfree(p->chunks[i].kpage[0]); |
| 288 | kfree(p->chunks[i].kpage[1]); |
| 289 | return -ENOMEM; |
| 290 | } |
| 291 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 292 | p->chunks[p->chunk_ib_idx].kpage_idx[0] = -1; |
| 293 | p->chunks[p->chunk_ib_idx].kpage_idx[1] = -1; |
| 294 | p->chunks[p->chunk_ib_idx].last_copied_page = -1; |
| 295 | p->chunks[p->chunk_ib_idx].last_page_index = |
| 296 | ((p->chunks[p->chunk_ib_idx].length_dw * 4) - 1) / PAGE_SIZE; |
| 297 | } |
| 298 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 299 | return 0; |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * cs_parser_fini() - clean parser states |
| 304 | * @parser: parser structure holding parsing context. |
| 305 | * @error: error number |
| 306 | * |
| 307 | * If error is set than unvalidate buffer, otherwise just free memory |
| 308 | * used by parsing context. |
| 309 | **/ |
| 310 | static void radeon_cs_parser_fini(struct radeon_cs_parser *parser, int error) |
| 311 | { |
| 312 | unsigned i; |
| 313 | |
Jerome Glisse | e43b5ec | 2012-08-06 12:32:21 -0400 | [diff] [blame] | 314 | if (!error) { |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 315 | ttm_eu_fence_buffer_objects(&parser->validated, |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 316 | parser->ib.fence); |
Jerome Glisse | e43b5ec | 2012-08-06 12:32:21 -0400 | [diff] [blame] | 317 | } else { |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 318 | ttm_eu_backoff_reservation(&parser->validated); |
Jerome Glisse | e43b5ec | 2012-08-06 12:32:21 -0400 | [diff] [blame] | 319 | } |
Thomas Hellstrom | 147666f | 2010-11-17 12:38:32 +0000 | [diff] [blame] | 320 | |
Pauli Nieminen | fcbc451 | 2010-03-19 07:44:33 +0000 | [diff] [blame] | 321 | if (parser->relocs != NULL) { |
| 322 | for (i = 0; i < parser->nrelocs; i++) { |
| 323 | if (parser->relocs[i].gobj) |
| 324 | drm_gem_object_unreference_unlocked(parser->relocs[i].gobj); |
| 325 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 326 | } |
Michel Dänzer | 48e113e | 2009-09-15 17:09:32 +0200 | [diff] [blame] | 327 | kfree(parser->track); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 328 | kfree(parser->relocs); |
| 329 | kfree(parser->relocs_ptr); |
| 330 | for (i = 0; i < parser->nchunks; i++) { |
| 331 | kfree(parser->chunks[i].kdata); |
Dave Airlie | 6a7068b | 2012-04-03 16:23:41 +0100 | [diff] [blame] | 332 | if ((parser->rdev->flags & RADEON_IS_AGP)) { |
| 333 | kfree(parser->chunks[i].kpage[0]); |
| 334 | kfree(parser->chunks[i].kpage[1]); |
| 335 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 336 | } |
| 337 | kfree(parser->chunks); |
| 338 | kfree(parser->chunks_array); |
| 339 | radeon_ib_free(parser->rdev, &parser->ib); |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 340 | radeon_ib_free(parser->rdev, &parser->const_ib); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 341 | } |
| 342 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 343 | static int radeon_cs_ib_chunk(struct radeon_device *rdev, |
| 344 | struct radeon_cs_parser *parser) |
| 345 | { |
| 346 | struct radeon_cs_chunk *ib_chunk; |
| 347 | int r; |
| 348 | |
| 349 | if (parser->chunk_ib_idx == -1) |
| 350 | return 0; |
| 351 | |
| 352 | if (parser->cs_flags & RADEON_CS_USE_VM) |
| 353 | return 0; |
| 354 | |
| 355 | ib_chunk = &parser->chunks[parser->chunk_ib_idx]; |
| 356 | /* Copy the packet into the IB, the parser will read from the |
| 357 | * input memory (cached) and write to the IB (which can be |
| 358 | * uncached). |
| 359 | */ |
| 360 | r = radeon_ib_get(rdev, parser->ring, &parser->ib, |
Christian König | 4bf3dd9 | 2012-08-06 18:57:44 +0200 | [diff] [blame] | 361 | NULL, ib_chunk->length_dw * 4); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 362 | if (r) { |
| 363 | DRM_ERROR("Failed to get ib !\n"); |
| 364 | return r; |
| 365 | } |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 366 | parser->ib.length_dw = ib_chunk->length_dw; |
Christian König | eb0c19c | 2012-02-23 15:18:44 +0100 | [diff] [blame] | 367 | r = radeon_cs_parse(rdev, parser->ring, parser); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 368 | if (r || parser->parser_error) { |
| 369 | DRM_ERROR("Invalid command stream !\n"); |
| 370 | return r; |
| 371 | } |
| 372 | r = radeon_cs_finish_pages(parser); |
| 373 | if (r) { |
| 374 | DRM_ERROR("Invalid command stream !\n"); |
| 375 | return r; |
| 376 | } |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 377 | radeon_cs_sync_rings(parser); |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 378 | r = radeon_ib_schedule(rdev, &parser->ib, NULL); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 379 | if (r) { |
| 380 | DRM_ERROR("Failed to schedule IB !\n"); |
| 381 | } |
Christian König | 93bf888 | 2012-07-03 14:05:41 +0200 | [diff] [blame] | 382 | return r; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser, |
| 386 | struct radeon_vm *vm) |
| 387 | { |
Jerome Glisse | 3e8970f | 2012-08-13 12:07:33 -0400 | [diff] [blame] | 388 | struct radeon_device *rdev = parser->rdev; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 389 | struct radeon_bo_list *lobj; |
| 390 | struct radeon_bo *bo; |
| 391 | int r; |
| 392 | |
Jerome Glisse | 3e8970f | 2012-08-13 12:07:33 -0400 | [diff] [blame] | 393 | r = radeon_vm_bo_update_pte(rdev, vm, rdev->ring_tmp_bo.bo, &rdev->ring_tmp_bo.bo->tbo.mem); |
| 394 | if (r) { |
| 395 | return r; |
| 396 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 397 | list_for_each_entry(lobj, &parser->validated, tv.head) { |
| 398 | bo = lobj->bo; |
| 399 | r = radeon_vm_bo_update_pte(parser->rdev, vm, bo, &bo->tbo.mem); |
| 400 | if (r) { |
| 401 | return r; |
| 402 | } |
| 403 | } |
| 404 | return 0; |
| 405 | } |
| 406 | |
| 407 | static int radeon_cs_ib_vm_chunk(struct radeon_device *rdev, |
| 408 | struct radeon_cs_parser *parser) |
| 409 | { |
| 410 | struct radeon_cs_chunk *ib_chunk; |
| 411 | struct radeon_fpriv *fpriv = parser->filp->driver_priv; |
| 412 | struct radeon_vm *vm = &fpriv->vm; |
| 413 | int r; |
| 414 | |
| 415 | if (parser->chunk_ib_idx == -1) |
| 416 | return 0; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 417 | if ((parser->cs_flags & RADEON_CS_USE_VM) == 0) |
| 418 | return 0; |
| 419 | |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 420 | if ((rdev->family >= CHIP_TAHITI) && |
| 421 | (parser->chunk_const_ib_idx != -1)) { |
| 422 | ib_chunk = &parser->chunks[parser->chunk_const_ib_idx]; |
| 423 | if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) { |
| 424 | DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw); |
| 425 | return -EINVAL; |
| 426 | } |
| 427 | r = radeon_ib_get(rdev, parser->ring, &parser->const_ib, |
Christian König | 4bf3dd9 | 2012-08-06 18:57:44 +0200 | [diff] [blame] | 428 | vm, ib_chunk->length_dw * 4); |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 429 | if (r) { |
| 430 | DRM_ERROR("Failed to get const ib !\n"); |
| 431 | return r; |
| 432 | } |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 433 | parser->const_ib.is_const_ib = true; |
| 434 | parser->const_ib.length_dw = ib_chunk->length_dw; |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 435 | /* Copy the packet into the IB */ |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 436 | if (DRM_COPY_FROM_USER(parser->const_ib.ptr, ib_chunk->user_ptr, |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 437 | ib_chunk->length_dw * 4)) { |
| 438 | return -EFAULT; |
| 439 | } |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 440 | r = radeon_ring_ib_parse(rdev, parser->ring, &parser->const_ib); |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 441 | if (r) { |
| 442 | return r; |
| 443 | } |
| 444 | } |
| 445 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 446 | ib_chunk = &parser->chunks[parser->chunk_ib_idx]; |
| 447 | if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) { |
| 448 | DRM_ERROR("cs IB too big: %d\n", ib_chunk->length_dw); |
| 449 | return -EINVAL; |
| 450 | } |
| 451 | r = radeon_ib_get(rdev, parser->ring, &parser->ib, |
Christian König | 4bf3dd9 | 2012-08-06 18:57:44 +0200 | [diff] [blame] | 452 | vm, ib_chunk->length_dw * 4); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 453 | if (r) { |
| 454 | DRM_ERROR("Failed to get ib !\n"); |
| 455 | return r; |
| 456 | } |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 457 | parser->ib.length_dw = ib_chunk->length_dw; |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 458 | /* Copy the packet into the IB */ |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 459 | if (DRM_COPY_FROM_USER(parser->ib.ptr, ib_chunk->user_ptr, |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 460 | ib_chunk->length_dw * 4)) { |
| 461 | return -EFAULT; |
| 462 | } |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 463 | r = radeon_ring_ib_parse(rdev, parser->ring, &parser->ib); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 464 | if (r) { |
| 465 | return r; |
| 466 | } |
| 467 | |
Christian König | 36ff39c | 2012-05-09 10:07:08 +0200 | [diff] [blame] | 468 | mutex_lock(&rdev->vm_manager.lock); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 469 | mutex_lock(&vm->mutex); |
Christian König | ddf03f5 | 2012-08-09 20:02:28 +0200 | [diff] [blame] | 470 | r = radeon_vm_alloc_pt(rdev, vm); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 471 | if (r) { |
| 472 | goto out; |
| 473 | } |
| 474 | r = radeon_bo_vm_update_pte(parser, vm); |
| 475 | if (r) { |
| 476 | goto out; |
| 477 | } |
Christian König | 220907d | 2012-05-10 16:46:43 +0200 | [diff] [blame] | 478 | radeon_cs_sync_rings(parser); |
Christian König | 1678dbc2 | 2012-09-06 13:48:07 +0200 | [diff] [blame] | 479 | radeon_cs_sync_to(parser, vm->fence); |
Christian König | ee60e29 | 2012-08-09 16:21:08 +0200 | [diff] [blame] | 480 | radeon_cs_sync_to(parser, radeon_vm_grab_id(rdev, vm, parser->ring)); |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 481 | |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 482 | if ((rdev->family >= CHIP_TAHITI) && |
| 483 | (parser->chunk_const_ib_idx != -1)) { |
Christian König | 4ef7256 | 2012-07-13 13:06:00 +0200 | [diff] [blame] | 484 | r = radeon_ib_schedule(rdev, &parser->ib, &parser->const_ib); |
| 485 | } else { |
| 486 | r = radeon_ib_schedule(rdev, &parser->ib, NULL); |
Alex Deucher | dfcf5f3 | 2012-03-20 17:18:14 -0400 | [diff] [blame] | 487 | } |
| 488 | |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 489 | if (!r) { |
Christian König | ee60e29 | 2012-08-09 16:21:08 +0200 | [diff] [blame] | 490 | radeon_vm_fence(rdev, vm, parser->ib.fence); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 491 | } |
Christian König | ee60e29 | 2012-08-09 16:21:08 +0200 | [diff] [blame] | 492 | |
| 493 | out: |
Christian König | 13e55c3 | 2012-10-09 13:31:19 +0200 | [diff] [blame] | 494 | radeon_vm_add_to_lru(rdev, vm); |
Christian König | 36ff39c | 2012-05-09 10:07:08 +0200 | [diff] [blame] | 495 | mutex_unlock(&vm->mutex); |
| 496 | mutex_unlock(&rdev->vm_manager.lock); |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 497 | return r; |
| 498 | } |
| 499 | |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 500 | static int radeon_cs_handle_lockup(struct radeon_device *rdev, int r) |
| 501 | { |
| 502 | if (r == -EDEADLK) { |
| 503 | r = radeon_gpu_reset(rdev); |
| 504 | if (!r) |
| 505 | r = -EAGAIN; |
| 506 | } |
| 507 | return r; |
| 508 | } |
| 509 | |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 510 | int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp) |
| 511 | { |
| 512 | struct radeon_device *rdev = dev->dev_private; |
| 513 | struct radeon_cs_parser parser; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 514 | int r; |
| 515 | |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 516 | down_read(&rdev->exclusive_lock); |
Jerome Glisse | 6b7746e | 2012-02-20 17:57:20 -0500 | [diff] [blame] | 517 | if (!rdev->accel_working) { |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 518 | up_read(&rdev->exclusive_lock); |
Jerome Glisse | 6b7746e | 2012-02-20 17:57:20 -0500 | [diff] [blame] | 519 | return -EBUSY; |
| 520 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 521 | /* initialize parser */ |
| 522 | memset(&parser, 0, sizeof(struct radeon_cs_parser)); |
| 523 | parser.filp = filp; |
| 524 | parser.rdev = rdev; |
Jerome Glisse | c8c15ff | 2010-01-18 13:01:36 +0100 | [diff] [blame] | 525 | parser.dev = rdev->dev; |
Dave Airlie | 428c6e3 | 2011-06-08 19:58:29 +1000 | [diff] [blame] | 526 | parser.family = rdev->family; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 527 | r = radeon_cs_parser_init(&parser, data); |
| 528 | if (r) { |
| 529 | DRM_ERROR("Failed to initialize parser !\n"); |
| 530 | radeon_cs_parser_fini(&parser, r); |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 531 | up_read(&rdev->exclusive_lock); |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 532 | r = radeon_cs_handle_lockup(rdev, r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 533 | return r; |
| 534 | } |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 535 | r = radeon_cs_parser_relocs(&parser); |
| 536 | if (r) { |
Dave Airlie | 97f23b3 | 2010-03-19 10:33:44 +1000 | [diff] [blame] | 537 | if (r != -ERESTARTSYS) |
| 538 | DRM_ERROR("Failed to parse relocation %d!\n", r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 539 | radeon_cs_parser_fini(&parser, r); |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 540 | up_read(&rdev->exclusive_lock); |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 541 | r = radeon_cs_handle_lockup(rdev, r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 542 | return r; |
| 543 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 544 | r = radeon_cs_ib_chunk(rdev, &parser); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 545 | if (r) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 546 | goto out; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 547 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 548 | r = radeon_cs_ib_vm_chunk(rdev, &parser); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 549 | if (r) { |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 550 | goto out; |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 551 | } |
Jerome Glisse | 721604a | 2012-01-05 22:11:05 -0500 | [diff] [blame] | 552 | out: |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 553 | radeon_cs_parser_fini(&parser, r); |
Jerome Glisse | dee53e7 | 2012-07-02 12:45:19 -0400 | [diff] [blame] | 554 | up_read(&rdev->exclusive_lock); |
Christian König | 6c6f478 | 2012-05-02 15:11:19 +0200 | [diff] [blame] | 555 | r = radeon_cs_handle_lockup(rdev, r); |
Jerome Glisse | 771fe6b | 2009-06-05 14:42:42 +0200 | [diff] [blame] | 556 | return r; |
| 557 | } |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 558 | |
| 559 | int radeon_cs_finish_pages(struct radeon_cs_parser *p) |
| 560 | { |
| 561 | struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx]; |
| 562 | int i; |
| 563 | int size = PAGE_SIZE; |
| 564 | |
| 565 | for (i = ibc->last_copied_page + 1; i <= ibc->last_page_index; i++) { |
| 566 | if (i == ibc->last_page_index) { |
| 567 | size = (ibc->length_dw * 4) % PAGE_SIZE; |
| 568 | if (size == 0) |
| 569 | size = PAGE_SIZE; |
| 570 | } |
| 571 | |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 572 | if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)), |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 573 | ibc->user_ptr + (i * PAGE_SIZE), |
| 574 | size)) |
| 575 | return -EFAULT; |
| 576 | } |
| 577 | return 0; |
| 578 | } |
| 579 | |
Dave Airlie | c4c7f31 | 2012-05-26 17:34:24 +0100 | [diff] [blame] | 580 | static int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx) |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 581 | { |
| 582 | int new_page; |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 583 | struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx]; |
| 584 | int i; |
| 585 | int size = PAGE_SIZE; |
Dave Airlie | 6a7068b | 2012-04-03 16:23:41 +0100 | [diff] [blame] | 586 | bool copy1 = (p->rdev->flags & RADEON_IS_AGP) ? false : true; |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 587 | |
Dave Airlie | c5e617e | 2009-09-26 09:03:39 +1000 | [diff] [blame] | 588 | for (i = ibc->last_copied_page + 1; i < pg_idx; i++) { |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 589 | if (DRM_COPY_FROM_USER(p->ib.ptr + (i * (PAGE_SIZE/4)), |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 590 | ibc->user_ptr + (i * PAGE_SIZE), |
| 591 | PAGE_SIZE)) { |
| 592 | p->parser_error = -EFAULT; |
| 593 | return 0; |
| 594 | } |
| 595 | } |
| 596 | |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 597 | if (pg_idx == ibc->last_page_index) { |
| 598 | size = (ibc->length_dw * 4) % PAGE_SIZE; |
Dave Airlie | 6a7068b | 2012-04-03 16:23:41 +0100 | [diff] [blame] | 599 | if (size == 0) |
| 600 | size = PAGE_SIZE; |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 601 | } |
| 602 | |
Dave Airlie | 6a7068b | 2012-04-03 16:23:41 +0100 | [diff] [blame] | 603 | new_page = ibc->kpage_idx[0] < ibc->kpage_idx[1] ? 0 : 1; |
| 604 | if (copy1) |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 605 | ibc->kpage[new_page] = p->ib.ptr + (pg_idx * (PAGE_SIZE / 4)); |
Dave Airlie | 6a7068b | 2012-04-03 16:23:41 +0100 | [diff] [blame] | 606 | |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 607 | if (DRM_COPY_FROM_USER(ibc->kpage[new_page], |
| 608 | ibc->user_ptr + (pg_idx * PAGE_SIZE), |
| 609 | size)) { |
| 610 | p->parser_error = -EFAULT; |
| 611 | return 0; |
| 612 | } |
| 613 | |
Dave Airlie | 6a7068b | 2012-04-03 16:23:41 +0100 | [diff] [blame] | 614 | /* copy to IB for non single case */ |
| 615 | if (!copy1) |
Jerome Glisse | f2e3922 | 2012-05-09 15:35:02 +0200 | [diff] [blame] | 616 | memcpy((void *)(p->ib.ptr+(pg_idx*(PAGE_SIZE/4))), ibc->kpage[new_page], size); |
Dave Airlie | 513bcb4 | 2009-09-23 16:56:27 +1000 | [diff] [blame] | 617 | |
| 618 | ibc->last_copied_page = pg_idx; |
| 619 | ibc->kpage_idx[new_page] = pg_idx; |
| 620 | |
| 621 | return new_page; |
| 622 | } |
Dave Airlie | c4c7f31 | 2012-05-26 17:34:24 +0100 | [diff] [blame] | 623 | |
| 624 | u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx) |
| 625 | { |
| 626 | struct radeon_cs_chunk *ibc = &p->chunks[p->chunk_ib_idx]; |
| 627 | u32 pg_idx, pg_offset; |
| 628 | u32 idx_value = 0; |
| 629 | int new_page; |
| 630 | |
| 631 | pg_idx = (idx * 4) / PAGE_SIZE; |
| 632 | pg_offset = (idx * 4) % PAGE_SIZE; |
| 633 | |
| 634 | if (ibc->kpage_idx[0] == pg_idx) |
| 635 | return ibc->kpage[0][pg_offset/4]; |
| 636 | if (ibc->kpage_idx[1] == pg_idx) |
| 637 | return ibc->kpage[1][pg_offset/4]; |
| 638 | |
| 639 | new_page = radeon_cs_update_pages(p, pg_idx); |
| 640 | if (new_page < 0) { |
| 641 | p->parser_error = new_page; |
| 642 | return 0; |
| 643 | } |
| 644 | |
| 645 | idx_value = ibc->kpage[new_page][pg_offset/4]; |
| 646 | return idx_value; |
| 647 | } |