Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | /* * Copyright 2011 Christian König. * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sub license, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE * USE OR OTHER DEALINGS IN THE SOFTWARE. * * The above copyright notice and this permission notice (including the * next paragraph) shall be included in all copies or substantial portions * of the Software. * */ /* * Authors: * Christian König <deathsimple@vodafone.de> */ #include "drmP.h" #include "drm.h" #include "radeon.h" static int radeon_semaphore_add_bo(struct radeon_device *rdev) { struct radeon_semaphore_bo *bo; unsigned long irq_flags; uint64_t gpu_addr; uint32_t *cpu_ptr; int r, i; bo = kmalloc(sizeof(struct radeon_semaphore_bo), GFP_KERNEL); if (bo == NULL) { return -ENOMEM; } INIT_LIST_HEAD(&bo->free); INIT_LIST_HEAD(&bo->list); bo->nused = 0; r = radeon_ib_get(rdev, 0, &bo->ib, RADEON_SEMAPHORE_BO_SIZE); if (r) { dev_err(rdev->dev, "failed to get a bo after 5 retry\n"); kfree(bo); return r; } gpu_addr = rdev->ib_pool.sa_manager.gpu_addr; gpu_addr += bo->ib->sa_bo.offset; cpu_ptr = rdev->ib_pool.sa_manager.cpu_ptr; cpu_ptr += (bo->ib->sa_bo.offset >> 2); for (i = 0; i < (RADEON_SEMAPHORE_BO_SIZE/8); i++) { bo->semaphores[i].gpu_addr = gpu_addr; bo->semaphores[i].cpu_ptr = cpu_ptr; bo->semaphores[i].bo = bo; list_add_tail(&bo->semaphores[i].list, &bo->free); gpu_addr += 8; cpu_ptr += 2; } write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags); list_add_tail(&bo->list, &rdev->semaphore_drv.bo); write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags); return 0; } static void radeon_semaphore_del_bo_locked(struct radeon_device *rdev, struct radeon_semaphore_bo *bo) { radeon_sa_bo_free(rdev, &bo->ib->sa_bo); radeon_fence_unref(&bo->ib->fence); list_del(&bo->list); kfree(bo); } void radeon_semaphore_shrink_locked(struct radeon_device *rdev) { struct radeon_semaphore_bo *bo, *n; if (list_empty(&rdev->semaphore_drv.bo)) { return; } /* only shrink if first bo has free semaphore */ bo = list_first_entry(&rdev->semaphore_drv.bo, struct radeon_semaphore_bo, list); if (list_empty(&bo->free)) { return; } list_for_each_entry_safe_continue(bo, n, &rdev->semaphore_drv.bo, list) { if (bo->nused) continue; radeon_semaphore_del_bo_locked(rdev, bo); } } int radeon_semaphore_create(struct radeon_device *rdev, struct radeon_semaphore **semaphore) { struct radeon_semaphore_bo *bo; unsigned long irq_flags; bool do_retry = true; int r; retry: *semaphore = NULL; write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags); list_for_each_entry(bo, &rdev->semaphore_drv.bo, list) { if (list_empty(&bo->free)) continue; *semaphore = list_first_entry(&bo->free, struct radeon_semaphore, list); (*semaphore)->cpu_ptr[0] = 0; (*semaphore)->cpu_ptr[1] = 0; list_del(&(*semaphore)->list); bo->nused++; break; } write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags); if (*semaphore == NULL) { if (do_retry) { do_retry = false; r = radeon_semaphore_add_bo(rdev); if (r) return r; goto retry; } return -ENOMEM; } return 0; } void radeon_semaphore_emit_signal(struct radeon_device *rdev, int ring, struct radeon_semaphore *semaphore) { radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, false); } void radeon_semaphore_emit_wait(struct radeon_device *rdev, int ring, struct radeon_semaphore *semaphore) { radeon_semaphore_ring_emit(rdev, ring, &rdev->ring[ring], semaphore, true); } void radeon_semaphore_free(struct radeon_device *rdev, struct radeon_semaphore *semaphore) { unsigned long irq_flags; write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags); semaphore->bo->nused--; list_add_tail(&semaphore->list, &semaphore->bo->free); radeon_semaphore_shrink_locked(rdev); write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags); } void radeon_semaphore_driver_fini(struct radeon_device *rdev) { struct radeon_semaphore_bo *bo, *n; unsigned long irq_flags; write_lock_irqsave(&rdev->semaphore_drv.lock, irq_flags); /* we force to free everything */ list_for_each_entry_safe(bo, n, &rdev->semaphore_drv.bo, list) { if (!list_empty(&bo->free)) { dev_err(rdev->dev, "still in use semaphore\n"); } radeon_semaphore_del_bo_locked(rdev, bo); } write_unlock_irqrestore(&rdev->semaphore_drv.lock, irq_flags); } |