Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2014 Broadcom |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 21 | * IN THE SOFTWARE. |
| 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/platform_device.h> |
Eric Anholt | 001bdb5 | 2016-02-05 17:41:49 -0800 | [diff] [blame] | 26 | #include <linux/pm_runtime.h> |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 27 | #include <linux/device.h> |
| 28 | #include <linux/io.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 29 | #include <linux/sched/signal.h> |
Stefan Schake | 818f5c8 | 2018-04-25 00:03:45 +0200 | [diff] [blame^] | 30 | #include <linux/dma-fence-array.h> |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 31 | |
| 32 | #include "uapi/drm/vc4_drm.h" |
| 33 | #include "vc4_drv.h" |
| 34 | #include "vc4_regs.h" |
| 35 | #include "vc4_trace.h" |
| 36 | |
| 37 | static void |
| 38 | vc4_queue_hangcheck(struct drm_device *dev) |
| 39 | { |
| 40 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 41 | |
| 42 | mod_timer(&vc4->hangcheck.timer, |
| 43 | round_jiffies_up(jiffies + msecs_to_jiffies(100))); |
| 44 | } |
| 45 | |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 46 | struct vc4_hang_state { |
| 47 | struct drm_vc4_get_hang_state user_state; |
| 48 | |
| 49 | u32 bo_count; |
| 50 | struct drm_gem_object **bo; |
| 51 | }; |
| 52 | |
| 53 | static void |
| 54 | vc4_free_hang_state(struct drm_device *dev, struct vc4_hang_state *state) |
| 55 | { |
| 56 | unsigned int i; |
| 57 | |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 58 | for (i = 0; i < state->user_state.bo_count; i++) |
Cihangir Akturk | 1d5494e | 2017-08-03 14:58:40 +0300 | [diff] [blame] | 59 | drm_gem_object_put_unlocked(state->bo[i]); |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 60 | |
| 61 | kfree(state); |
| 62 | } |
| 63 | |
| 64 | int |
| 65 | vc4_get_hang_state_ioctl(struct drm_device *dev, void *data, |
| 66 | struct drm_file *file_priv) |
| 67 | { |
| 68 | struct drm_vc4_get_hang_state *get_state = data; |
| 69 | struct drm_vc4_get_hang_state_bo *bo_state; |
| 70 | struct vc4_hang_state *kernel_state; |
| 71 | struct drm_vc4_get_hang_state *state; |
| 72 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 73 | unsigned long irqflags; |
| 74 | u32 i; |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 75 | int ret = 0; |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 76 | |
| 77 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
| 78 | kernel_state = vc4->hang_state; |
| 79 | if (!kernel_state) { |
| 80 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 81 | return -ENOENT; |
| 82 | } |
| 83 | state = &kernel_state->user_state; |
| 84 | |
| 85 | /* If the user's array isn't big enough, just return the |
| 86 | * required array size. |
| 87 | */ |
| 88 | if (get_state->bo_count < state->bo_count) { |
| 89 | get_state->bo_count = state->bo_count; |
| 90 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 91 | return 0; |
| 92 | } |
| 93 | |
| 94 | vc4->hang_state = NULL; |
| 95 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 96 | |
| 97 | /* Save the user's BO pointer, so we don't stomp it with the memcpy. */ |
| 98 | state->bo = get_state->bo; |
| 99 | memcpy(get_state, state, sizeof(*state)); |
| 100 | |
| 101 | bo_state = kcalloc(state->bo_count, sizeof(*bo_state), GFP_KERNEL); |
| 102 | if (!bo_state) { |
| 103 | ret = -ENOMEM; |
| 104 | goto err_free; |
| 105 | } |
| 106 | |
| 107 | for (i = 0; i < state->bo_count; i++) { |
| 108 | struct vc4_bo *vc4_bo = to_vc4_bo(kernel_state->bo[i]); |
| 109 | u32 handle; |
| 110 | |
| 111 | ret = drm_gem_handle_create(file_priv, kernel_state->bo[i], |
| 112 | &handle); |
| 113 | |
| 114 | if (ret) { |
Christophe JAILLET | d0b1d25 | 2017-05-12 14:38:03 +0200 | [diff] [blame] | 115 | state->bo_count = i; |
| 116 | goto err_delete_handle; |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 117 | } |
| 118 | bo_state[i].handle = handle; |
| 119 | bo_state[i].paddr = vc4_bo->base.paddr; |
| 120 | bo_state[i].size = vc4_bo->base.base.size; |
| 121 | } |
| 122 | |
Eric Anholt | 95d7cbc | 2017-07-25 11:27:16 -0700 | [diff] [blame] | 123 | if (copy_to_user(u64_to_user_ptr(get_state->bo), |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 124 | bo_state, |
| 125 | state->bo_count * sizeof(*bo_state))) |
| 126 | ret = -EFAULT; |
| 127 | |
Christophe JAILLET | d0b1d25 | 2017-05-12 14:38:03 +0200 | [diff] [blame] | 128 | err_delete_handle: |
| 129 | if (ret) { |
| 130 | for (i = 0; i < state->bo_count; i++) |
| 131 | drm_gem_handle_delete(file_priv, bo_state[i].handle); |
| 132 | } |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 133 | |
| 134 | err_free: |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 135 | vc4_free_hang_state(dev, kernel_state); |
Christophe JAILLET | d0b1d25 | 2017-05-12 14:38:03 +0200 | [diff] [blame] | 136 | kfree(bo_state); |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 137 | |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 138 | return ret; |
| 139 | } |
| 140 | |
| 141 | static void |
| 142 | vc4_save_hang_state(struct drm_device *dev) |
| 143 | { |
| 144 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 145 | struct drm_vc4_get_hang_state *state; |
| 146 | struct vc4_hang_state *kernel_state; |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 147 | struct vc4_exec_info *exec[2]; |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 148 | struct vc4_bo *bo; |
| 149 | unsigned long irqflags; |
Boris Brezillon | 17b11b7 | 2018-01-18 15:58:21 +0100 | [diff] [blame] | 150 | unsigned int i, j, k, unref_list_count; |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 151 | |
Dan Carpenter | 7e5082f | 2015-12-17 15:39:08 +0300 | [diff] [blame] | 152 | kernel_state = kcalloc(1, sizeof(*kernel_state), GFP_KERNEL); |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 153 | if (!kernel_state) |
| 154 | return; |
| 155 | |
| 156 | state = &kernel_state->user_state; |
| 157 | |
| 158 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 159 | exec[0] = vc4_first_bin_job(vc4); |
| 160 | exec[1] = vc4_first_render_job(vc4); |
| 161 | if (!exec[0] && !exec[1]) { |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 162 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 163 | return; |
| 164 | } |
| 165 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 166 | /* Get the bos from both binner and renderer into hang state. */ |
| 167 | state->bo_count = 0; |
| 168 | for (i = 0; i < 2; i++) { |
| 169 | if (!exec[i]) |
| 170 | continue; |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 171 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 172 | unref_list_count = 0; |
| 173 | list_for_each_entry(bo, &exec[i]->unref_list, unref_head) |
| 174 | unref_list_count++; |
| 175 | state->bo_count += exec[i]->bo_count + unref_list_count; |
| 176 | } |
| 177 | |
| 178 | kernel_state->bo = kcalloc(state->bo_count, |
| 179 | sizeof(*kernel_state->bo), GFP_ATOMIC); |
| 180 | |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 181 | if (!kernel_state->bo) { |
| 182 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 183 | return; |
| 184 | } |
| 185 | |
Boris Brezillon | 17b11b7 | 2018-01-18 15:58:21 +0100 | [diff] [blame] | 186 | k = 0; |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 187 | for (i = 0; i < 2; i++) { |
| 188 | if (!exec[i]) |
| 189 | continue; |
| 190 | |
| 191 | for (j = 0; j < exec[i]->bo_count; j++) { |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 192 | bo = to_vc4_bo(&exec[i]->bo[j]->base); |
| 193 | |
| 194 | /* Retain BOs just in case they were marked purgeable. |
| 195 | * This prevents the BO from being purged before |
| 196 | * someone had a chance to dump the hang state. |
| 197 | */ |
| 198 | WARN_ON(!refcount_read(&bo->usecnt)); |
| 199 | refcount_inc(&bo->usecnt); |
Cihangir Akturk | 1d5494e | 2017-08-03 14:58:40 +0300 | [diff] [blame] | 200 | drm_gem_object_get(&exec[i]->bo[j]->base); |
Boris Brezillon | 17b11b7 | 2018-01-18 15:58:21 +0100 | [diff] [blame] | 201 | kernel_state->bo[k++] = &exec[i]->bo[j]->base; |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | list_for_each_entry(bo, &exec[i]->unref_list, unref_head) { |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 205 | /* No need to retain BOs coming from the ->unref_list |
| 206 | * because they are naturally unpurgeable. |
| 207 | */ |
Cihangir Akturk | 1d5494e | 2017-08-03 14:58:40 +0300 | [diff] [blame] | 208 | drm_gem_object_get(&bo->base.base); |
Boris Brezillon | 17b11b7 | 2018-01-18 15:58:21 +0100 | [diff] [blame] | 209 | kernel_state->bo[k++] = &bo->base.base; |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 210 | } |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 211 | } |
| 212 | |
Boris Brezillon | 17b11b7 | 2018-01-18 15:58:21 +0100 | [diff] [blame] | 213 | WARN_ON_ONCE(k != state->bo_count); |
| 214 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 215 | if (exec[0]) |
| 216 | state->start_bin = exec[0]->ct0ca; |
| 217 | if (exec[1]) |
| 218 | state->start_render = exec[1]->ct1ca; |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 219 | |
| 220 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 221 | |
| 222 | state->ct0ca = V3D_READ(V3D_CTNCA(0)); |
| 223 | state->ct0ea = V3D_READ(V3D_CTNEA(0)); |
| 224 | |
| 225 | state->ct1ca = V3D_READ(V3D_CTNCA(1)); |
| 226 | state->ct1ea = V3D_READ(V3D_CTNEA(1)); |
| 227 | |
| 228 | state->ct0cs = V3D_READ(V3D_CTNCS(0)); |
| 229 | state->ct1cs = V3D_READ(V3D_CTNCS(1)); |
| 230 | |
| 231 | state->ct0ra0 = V3D_READ(V3D_CT00RA0); |
| 232 | state->ct1ra0 = V3D_READ(V3D_CT01RA0); |
| 233 | |
| 234 | state->bpca = V3D_READ(V3D_BPCA); |
| 235 | state->bpcs = V3D_READ(V3D_BPCS); |
| 236 | state->bpoa = V3D_READ(V3D_BPOA); |
| 237 | state->bpos = V3D_READ(V3D_BPOS); |
| 238 | |
| 239 | state->vpmbase = V3D_READ(V3D_VPMBASE); |
| 240 | |
| 241 | state->dbge = V3D_READ(V3D_DBGE); |
| 242 | state->fdbgo = V3D_READ(V3D_FDBGO); |
| 243 | state->fdbgb = V3D_READ(V3D_FDBGB); |
| 244 | state->fdbgr = V3D_READ(V3D_FDBGR); |
| 245 | state->fdbgs = V3D_READ(V3D_FDBGS); |
| 246 | state->errstat = V3D_READ(V3D_ERRSTAT); |
| 247 | |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 248 | /* We need to turn purgeable BOs into unpurgeable ones so that |
| 249 | * userspace has a chance to dump the hang state before the kernel |
| 250 | * decides to purge those BOs. |
| 251 | * Note that BO consistency at dump time cannot be guaranteed. For |
| 252 | * example, if the owner of these BOs decides to re-use them or mark |
| 253 | * them purgeable again there's nothing we can do to prevent it. |
| 254 | */ |
| 255 | for (i = 0; i < kernel_state->user_state.bo_count; i++) { |
| 256 | struct vc4_bo *bo = to_vc4_bo(kernel_state->bo[i]); |
| 257 | |
| 258 | if (bo->madv == __VC4_MADV_NOTSUPP) |
| 259 | continue; |
| 260 | |
| 261 | mutex_lock(&bo->madv_lock); |
| 262 | if (!WARN_ON(bo->madv == __VC4_MADV_PURGED)) |
| 263 | bo->madv = VC4_MADV_WILLNEED; |
| 264 | refcount_dec(&bo->usecnt); |
| 265 | mutex_unlock(&bo->madv_lock); |
| 266 | } |
| 267 | |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 268 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
| 269 | if (vc4->hang_state) { |
| 270 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 271 | vc4_free_hang_state(dev, kernel_state); |
| 272 | } else { |
| 273 | vc4->hang_state = kernel_state; |
| 274 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 275 | } |
| 276 | } |
| 277 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 278 | static void |
| 279 | vc4_reset(struct drm_device *dev) |
| 280 | { |
| 281 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 282 | |
| 283 | DRM_INFO("Resetting GPU.\n"); |
Eric Anholt | 36cb625 | 2016-02-08 12:59:02 -0800 | [diff] [blame] | 284 | |
| 285 | mutex_lock(&vc4->power_lock); |
| 286 | if (vc4->power_refcount) { |
| 287 | /* Power the device off and back on the by dropping the |
| 288 | * reference on runtime PM. |
| 289 | */ |
| 290 | pm_runtime_put_sync_suspend(&vc4->v3d->pdev->dev); |
| 291 | pm_runtime_get_sync(&vc4->v3d->pdev->dev); |
| 292 | } |
| 293 | mutex_unlock(&vc4->power_lock); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 294 | |
| 295 | vc4_irq_reset(dev); |
| 296 | |
| 297 | /* Rearm the hangcheck -- another job might have been waiting |
| 298 | * for our hung one to get kicked off, and vc4_irq_reset() |
| 299 | * would have started it. |
| 300 | */ |
| 301 | vc4_queue_hangcheck(dev); |
| 302 | } |
| 303 | |
| 304 | static void |
| 305 | vc4_reset_work(struct work_struct *work) |
| 306 | { |
| 307 | struct vc4_dev *vc4 = |
| 308 | container_of(work, struct vc4_dev, hangcheck.reset_work); |
| 309 | |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 310 | vc4_save_hang_state(vc4->dev); |
| 311 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 312 | vc4_reset(vc4->dev); |
| 313 | } |
| 314 | |
| 315 | static void |
Kees Cook | 0078730 | 2017-10-24 08:16:48 -0700 | [diff] [blame] | 316 | vc4_hangcheck_elapsed(struct timer_list *t) |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 317 | { |
Kees Cook | 0078730 | 2017-10-24 08:16:48 -0700 | [diff] [blame] | 318 | struct vc4_dev *vc4 = from_timer(vc4, t, hangcheck.timer); |
| 319 | struct drm_device *dev = vc4->dev; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 320 | uint32_t ct0ca, ct1ca; |
Eric Anholt | c4ce60d | 2016-02-08 11:19:14 -0800 | [diff] [blame] | 321 | unsigned long irqflags; |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 322 | struct vc4_exec_info *bin_exec, *render_exec; |
Eric Anholt | c4ce60d | 2016-02-08 11:19:14 -0800 | [diff] [blame] | 323 | |
| 324 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 325 | |
| 326 | bin_exec = vc4_first_bin_job(vc4); |
| 327 | render_exec = vc4_first_render_job(vc4); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 328 | |
| 329 | /* If idle, we can stop watching for hangs. */ |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 330 | if (!bin_exec && !render_exec) { |
Eric Anholt | c4ce60d | 2016-02-08 11:19:14 -0800 | [diff] [blame] | 331 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 332 | return; |
Eric Anholt | c4ce60d | 2016-02-08 11:19:14 -0800 | [diff] [blame] | 333 | } |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 334 | |
| 335 | ct0ca = V3D_READ(V3D_CTNCA(0)); |
| 336 | ct1ca = V3D_READ(V3D_CTNCA(1)); |
| 337 | |
| 338 | /* If we've made any progress in execution, rearm the timer |
| 339 | * and wait. |
| 340 | */ |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 341 | if ((bin_exec && ct0ca != bin_exec->last_ct0ca) || |
| 342 | (render_exec && ct1ca != render_exec->last_ct1ca)) { |
| 343 | if (bin_exec) |
| 344 | bin_exec->last_ct0ca = ct0ca; |
| 345 | if (render_exec) |
| 346 | render_exec->last_ct1ca = ct1ca; |
Eric Anholt | c4ce60d | 2016-02-08 11:19:14 -0800 | [diff] [blame] | 347 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 348 | vc4_queue_hangcheck(dev); |
| 349 | return; |
| 350 | } |
| 351 | |
Eric Anholt | c4ce60d | 2016-02-08 11:19:14 -0800 | [diff] [blame] | 352 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 353 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 354 | /* We've gone too long with no progress, reset. This has to |
| 355 | * be done from a work struct, since resetting can sleep and |
| 356 | * this timer hook isn't allowed to. |
| 357 | */ |
| 358 | schedule_work(&vc4->hangcheck.reset_work); |
| 359 | } |
| 360 | |
| 361 | static void |
| 362 | submit_cl(struct drm_device *dev, uint32_t thread, uint32_t start, uint32_t end) |
| 363 | { |
| 364 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 365 | |
| 366 | /* Set the current and end address of the control list. |
| 367 | * Writing the end register is what starts the job. |
| 368 | */ |
| 369 | V3D_WRITE(V3D_CTNCA(thread), start); |
| 370 | V3D_WRITE(V3D_CTNEA(thread), end); |
| 371 | } |
| 372 | |
| 373 | int |
| 374 | vc4_wait_for_seqno(struct drm_device *dev, uint64_t seqno, uint64_t timeout_ns, |
| 375 | bool interruptible) |
| 376 | { |
| 377 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 378 | int ret = 0; |
| 379 | unsigned long timeout_expire; |
| 380 | DEFINE_WAIT(wait); |
| 381 | |
| 382 | if (vc4->finished_seqno >= seqno) |
| 383 | return 0; |
| 384 | |
| 385 | if (timeout_ns == 0) |
| 386 | return -ETIME; |
| 387 | |
| 388 | timeout_expire = jiffies + nsecs_to_jiffies(timeout_ns); |
| 389 | |
| 390 | trace_vc4_wait_for_seqno_begin(dev, seqno, timeout_ns); |
| 391 | for (;;) { |
| 392 | prepare_to_wait(&vc4->job_wait_queue, &wait, |
| 393 | interruptible ? TASK_INTERRUPTIBLE : |
| 394 | TASK_UNINTERRUPTIBLE); |
| 395 | |
| 396 | if (interruptible && signal_pending(current)) { |
| 397 | ret = -ERESTARTSYS; |
| 398 | break; |
| 399 | } |
| 400 | |
| 401 | if (vc4->finished_seqno >= seqno) |
| 402 | break; |
| 403 | |
| 404 | if (timeout_ns != ~0ull) { |
| 405 | if (time_after_eq(jiffies, timeout_expire)) { |
| 406 | ret = -ETIME; |
| 407 | break; |
| 408 | } |
| 409 | schedule_timeout(timeout_expire - jiffies); |
| 410 | } else { |
| 411 | schedule(); |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | finish_wait(&vc4->job_wait_queue, &wait); |
| 416 | trace_vc4_wait_for_seqno_end(dev, seqno); |
| 417 | |
Eric Anholt | 13cf890 | 2016-01-25 14:32:41 -0800 | [diff] [blame] | 418 | return ret; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 419 | } |
| 420 | |
| 421 | static void |
| 422 | vc4_flush_caches(struct drm_device *dev) |
| 423 | { |
| 424 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 425 | |
| 426 | /* Flush the GPU L2 caches. These caches sit on top of system |
| 427 | * L3 (the 128kb or so shared with the CPU), and are |
| 428 | * non-allocating in the L3. |
| 429 | */ |
| 430 | V3D_WRITE(V3D_L2CACTL, |
| 431 | V3D_L2CACTL_L2CCLR); |
| 432 | |
| 433 | V3D_WRITE(V3D_SLCACTL, |
| 434 | VC4_SET_FIELD(0xf, V3D_SLCACTL_T1CC) | |
| 435 | VC4_SET_FIELD(0xf, V3D_SLCACTL_T0CC) | |
| 436 | VC4_SET_FIELD(0xf, V3D_SLCACTL_UCC) | |
| 437 | VC4_SET_FIELD(0xf, V3D_SLCACTL_ICC)); |
| 438 | } |
| 439 | |
Eric Anholt | f61145f | 2017-12-21 14:17:22 -0800 | [diff] [blame] | 440 | static void |
| 441 | vc4_flush_texture_caches(struct drm_device *dev) |
| 442 | { |
| 443 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 444 | |
| 445 | V3D_WRITE(V3D_L2CACTL, |
| 446 | V3D_L2CACTL_L2CCLR); |
| 447 | |
| 448 | V3D_WRITE(V3D_SLCACTL, |
| 449 | VC4_SET_FIELD(0xf, V3D_SLCACTL_T1CC) | |
| 450 | VC4_SET_FIELD(0xf, V3D_SLCACTL_T0CC)); |
| 451 | } |
| 452 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 453 | /* Sets the registers for the next job to be actually be executed in |
| 454 | * the hardware. |
| 455 | * |
| 456 | * The job_lock should be held during this. |
| 457 | */ |
| 458 | void |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 459 | vc4_submit_next_bin_job(struct drm_device *dev) |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 460 | { |
| 461 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 462 | struct vc4_exec_info *exec; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 463 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 464 | again: |
| 465 | exec = vc4_first_bin_job(vc4); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 466 | if (!exec) |
| 467 | return; |
| 468 | |
| 469 | vc4_flush_caches(dev); |
| 470 | |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 471 | /* Only start the perfmon if it was not already started by a previous |
| 472 | * job. |
| 473 | */ |
| 474 | if (exec->perfmon && vc4->active_perfmon != exec->perfmon) |
| 475 | vc4_perfmon_start(vc4, exec->perfmon); |
| 476 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 477 | /* Either put the job in the binner if it uses the binner, or |
| 478 | * immediately move it to the to-be-rendered queue. |
| 479 | */ |
| 480 | if (exec->ct0ca != exec->ct0ea) { |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 481 | submit_cl(dev, 0, exec->ct0ca, exec->ct0ea); |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 482 | } else { |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 483 | struct vc4_exec_info *next; |
| 484 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 485 | vc4_move_job_to_render(dev, exec); |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 486 | next = vc4_first_bin_job(vc4); |
| 487 | |
| 488 | /* We can't start the next bin job if the previous job had a |
| 489 | * different perfmon instance attached to it. The same goes |
| 490 | * if one of them had a perfmon attached to it and the other |
| 491 | * one doesn't. |
| 492 | */ |
| 493 | if (next && next->perfmon == exec->perfmon) |
| 494 | goto again; |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 495 | } |
| 496 | } |
| 497 | |
| 498 | void |
| 499 | vc4_submit_next_render_job(struct drm_device *dev) |
| 500 | { |
| 501 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 502 | struct vc4_exec_info *exec = vc4_first_render_job(vc4); |
| 503 | |
| 504 | if (!exec) |
| 505 | return; |
| 506 | |
Eric Anholt | f61145f | 2017-12-21 14:17:22 -0800 | [diff] [blame] | 507 | /* A previous RCL may have written to one of our textures, and |
| 508 | * our full cache flush at bin time may have occurred before |
| 509 | * that RCL completed. Flush the texture cache now, but not |
| 510 | * the instructions or uniforms (since we don't write those |
| 511 | * from an RCL). |
| 512 | */ |
| 513 | vc4_flush_texture_caches(dev); |
| 514 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 515 | submit_cl(dev, 1, exec->ct1ca, exec->ct1ea); |
| 516 | } |
| 517 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 518 | void |
| 519 | vc4_move_job_to_render(struct drm_device *dev, struct vc4_exec_info *exec) |
| 520 | { |
| 521 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 522 | bool was_empty = list_empty(&vc4->render_job_list); |
| 523 | |
| 524 | list_move_tail(&exec->head, &vc4->render_job_list); |
| 525 | if (was_empty) |
| 526 | vc4_submit_next_render_job(dev); |
| 527 | } |
| 528 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 529 | static void |
| 530 | vc4_update_bo_seqnos(struct vc4_exec_info *exec, uint64_t seqno) |
| 531 | { |
| 532 | struct vc4_bo *bo; |
| 533 | unsigned i; |
| 534 | |
| 535 | for (i = 0; i < exec->bo_count; i++) { |
| 536 | bo = to_vc4_bo(&exec->bo[i]->base); |
| 537 | bo->seqno = seqno; |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 538 | |
| 539 | reservation_object_add_shared_fence(bo->resv, exec->fence); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 540 | } |
| 541 | |
| 542 | list_for_each_entry(bo, &exec->unref_list, unref_head) { |
| 543 | bo->seqno = seqno; |
| 544 | } |
Eric Anholt | 7edabee | 2016-09-27 09:03:13 -0700 | [diff] [blame] | 545 | |
| 546 | for (i = 0; i < exec->rcl_write_bo_count; i++) { |
| 547 | bo = to_vc4_bo(&exec->rcl_write_bo[i]->base); |
| 548 | bo->write_seqno = seqno; |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 549 | |
| 550 | reservation_object_add_excl_fence(bo->resv, exec->fence); |
Eric Anholt | 7edabee | 2016-09-27 09:03:13 -0700 | [diff] [blame] | 551 | } |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 552 | } |
| 553 | |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 554 | static void |
| 555 | vc4_unlock_bo_reservations(struct drm_device *dev, |
| 556 | struct vc4_exec_info *exec, |
| 557 | struct ww_acquire_ctx *acquire_ctx) |
| 558 | { |
| 559 | int i; |
| 560 | |
| 561 | for (i = 0; i < exec->bo_count; i++) { |
| 562 | struct vc4_bo *bo = to_vc4_bo(&exec->bo[i]->base); |
| 563 | |
| 564 | ww_mutex_unlock(&bo->resv->lock); |
| 565 | } |
| 566 | |
| 567 | ww_acquire_fini(acquire_ctx); |
| 568 | } |
| 569 | |
| 570 | /* Takes the reservation lock on all the BOs being referenced, so that |
| 571 | * at queue submit time we can update the reservations. |
| 572 | * |
| 573 | * We don't lock the RCL the tile alloc/state BOs, or overflow memory |
| 574 | * (all of which are on exec->unref_list). They're entirely private |
| 575 | * to vc4, so we don't attach dma-buf fences to them. |
| 576 | */ |
| 577 | static int |
| 578 | vc4_lock_bo_reservations(struct drm_device *dev, |
| 579 | struct vc4_exec_info *exec, |
| 580 | struct ww_acquire_ctx *acquire_ctx) |
| 581 | { |
| 582 | int contended_lock = -1; |
| 583 | int i, ret; |
| 584 | struct vc4_bo *bo; |
| 585 | |
| 586 | ww_acquire_init(acquire_ctx, &reservation_ww_class); |
| 587 | |
| 588 | retry: |
| 589 | if (contended_lock != -1) { |
| 590 | bo = to_vc4_bo(&exec->bo[contended_lock]->base); |
| 591 | ret = ww_mutex_lock_slow_interruptible(&bo->resv->lock, |
| 592 | acquire_ctx); |
| 593 | if (ret) { |
| 594 | ww_acquire_done(acquire_ctx); |
| 595 | return ret; |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | for (i = 0; i < exec->bo_count; i++) { |
| 600 | if (i == contended_lock) |
| 601 | continue; |
| 602 | |
| 603 | bo = to_vc4_bo(&exec->bo[i]->base); |
| 604 | |
| 605 | ret = ww_mutex_lock_interruptible(&bo->resv->lock, acquire_ctx); |
| 606 | if (ret) { |
| 607 | int j; |
| 608 | |
| 609 | for (j = 0; j < i; j++) { |
| 610 | bo = to_vc4_bo(&exec->bo[j]->base); |
| 611 | ww_mutex_unlock(&bo->resv->lock); |
| 612 | } |
| 613 | |
| 614 | if (contended_lock != -1 && contended_lock >= i) { |
| 615 | bo = to_vc4_bo(&exec->bo[contended_lock]->base); |
| 616 | |
| 617 | ww_mutex_unlock(&bo->resv->lock); |
| 618 | } |
| 619 | |
| 620 | if (ret == -EDEADLK) { |
| 621 | contended_lock = i; |
| 622 | goto retry; |
| 623 | } |
| 624 | |
| 625 | ww_acquire_done(acquire_ctx); |
| 626 | return ret; |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | ww_acquire_done(acquire_ctx); |
| 631 | |
| 632 | /* Reserve space for our shared (read-only) fence references, |
| 633 | * before we commit the CL to the hardware. |
| 634 | */ |
| 635 | for (i = 0; i < exec->bo_count; i++) { |
| 636 | bo = to_vc4_bo(&exec->bo[i]->base); |
| 637 | |
| 638 | ret = reservation_object_reserve_shared(bo->resv); |
| 639 | if (ret) { |
| 640 | vc4_unlock_bo_reservations(dev, exec, acquire_ctx); |
| 641 | return ret; |
| 642 | } |
| 643 | } |
| 644 | |
| 645 | return 0; |
| 646 | } |
| 647 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 648 | /* Queues a struct vc4_exec_info for execution. If no job is |
| 649 | * currently executing, then submits it. |
| 650 | * |
| 651 | * Unlike most GPUs, our hardware only handles one command list at a |
| 652 | * time. To queue multiple jobs at once, we'd need to edit the |
| 653 | * previous command list to have a jump to the new one at the end, and |
| 654 | * then bump the end address. That's a change for a later date, |
| 655 | * though. |
| 656 | */ |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 657 | static int |
| 658 | vc4_queue_submit(struct drm_device *dev, struct vc4_exec_info *exec, |
| 659 | struct ww_acquire_ctx *acquire_ctx) |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 660 | { |
| 661 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 662 | struct vc4_exec_info *renderjob; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 663 | uint64_t seqno; |
| 664 | unsigned long irqflags; |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 665 | struct vc4_fence *fence; |
| 666 | |
| 667 | fence = kzalloc(sizeof(*fence), GFP_KERNEL); |
| 668 | if (!fence) |
| 669 | return -ENOMEM; |
| 670 | fence->dev = dev; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 671 | |
| 672 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
| 673 | |
| 674 | seqno = ++vc4->emit_seqno; |
| 675 | exec->seqno = seqno; |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 676 | |
| 677 | dma_fence_init(&fence->base, &vc4_fence_ops, &vc4->job_lock, |
| 678 | vc4->dma_fence_context, exec->seqno); |
| 679 | fence->seqno = exec->seqno; |
| 680 | exec->fence = &fence->base; |
| 681 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 682 | vc4_update_bo_seqnos(exec, seqno); |
| 683 | |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 684 | vc4_unlock_bo_reservations(dev, exec, acquire_ctx); |
| 685 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 686 | list_add_tail(&exec->head, &vc4->bin_job_list); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 687 | |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 688 | /* If no bin job was executing and if the render job (if any) has the |
| 689 | * same perfmon as our job attached to it (or if both jobs don't have |
| 690 | * perfmon activated), then kick ours off. Otherwise, it'll get |
| 691 | * started when the previous job's flush/render done interrupt occurs. |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 692 | */ |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 693 | renderjob = vc4_first_render_job(vc4); |
| 694 | if (vc4_first_bin_job(vc4) == exec && |
| 695 | (!renderjob || renderjob->perfmon == exec->perfmon)) { |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 696 | vc4_submit_next_bin_job(dev); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 697 | vc4_queue_hangcheck(dev); |
| 698 | } |
| 699 | |
| 700 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 701 | |
| 702 | return 0; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 703 | } |
| 704 | |
| 705 | /** |
Eric Anholt | 72f793f | 2017-02-27 12:11:41 -0800 | [diff] [blame] | 706 | * vc4_cl_lookup_bos() - Sets up exec->bo[] with the GEM objects |
| 707 | * referenced by the job. |
| 708 | * @dev: DRM device |
| 709 | * @file_priv: DRM file for this fd |
| 710 | * @exec: V3D job being set up |
| 711 | * |
| 712 | * The command validator needs to reference BOs by their index within |
| 713 | * the submitted job's BO list. This does the validation of the job's |
| 714 | * BO list and reference counting for the lifetime of the job. |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 715 | */ |
| 716 | static int |
| 717 | vc4_cl_lookup_bos(struct drm_device *dev, |
| 718 | struct drm_file *file_priv, |
| 719 | struct vc4_exec_info *exec) |
| 720 | { |
| 721 | struct drm_vc4_submit_cl *args = exec->args; |
| 722 | uint32_t *handles; |
| 723 | int ret = 0; |
| 724 | int i; |
| 725 | |
| 726 | exec->bo_count = args->bo_handle_count; |
| 727 | |
| 728 | if (!exec->bo_count) { |
| 729 | /* See comment on bo_index for why we have to check |
| 730 | * this. |
| 731 | */ |
Eric Anholt | fb95992 | 2017-07-25 09:27:32 -0700 | [diff] [blame] | 732 | DRM_DEBUG("Rendering requires BOs to validate\n"); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 733 | return -EINVAL; |
| 734 | } |
| 735 | |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 736 | exec->bo = kvmalloc_array(exec->bo_count, |
| 737 | sizeof(struct drm_gem_cma_object *), |
| 738 | GFP_KERNEL | __GFP_ZERO); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 739 | if (!exec->bo) { |
| 740 | DRM_ERROR("Failed to allocate validated BO pointers\n"); |
| 741 | return -ENOMEM; |
| 742 | } |
| 743 | |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 744 | handles = kvmalloc_array(exec->bo_count, sizeof(uint32_t), GFP_KERNEL); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 745 | if (!handles) { |
Dan Carpenter | b2cdeb1 | 2016-10-13 11:54:31 +0300 | [diff] [blame] | 746 | ret = -ENOMEM; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 747 | DRM_ERROR("Failed to allocate incoming GEM handles\n"); |
| 748 | goto fail; |
| 749 | } |
| 750 | |
Eric Anholt | 95d7cbc | 2017-07-25 11:27:16 -0700 | [diff] [blame] | 751 | if (copy_from_user(handles, u64_to_user_ptr(args->bo_handles), |
Dan Carpenter | b2cdeb1 | 2016-10-13 11:54:31 +0300 | [diff] [blame] | 752 | exec->bo_count * sizeof(uint32_t))) { |
| 753 | ret = -EFAULT; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 754 | DRM_ERROR("Failed to copy in GEM handles\n"); |
| 755 | goto fail; |
| 756 | } |
| 757 | |
| 758 | spin_lock(&file_priv->table_lock); |
| 759 | for (i = 0; i < exec->bo_count; i++) { |
| 760 | struct drm_gem_object *bo = idr_find(&file_priv->object_idr, |
| 761 | handles[i]); |
| 762 | if (!bo) { |
Eric Anholt | fb95992 | 2017-07-25 09:27:32 -0700 | [diff] [blame] | 763 | DRM_DEBUG("Failed to look up GEM BO %d: %d\n", |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 764 | i, handles[i]); |
| 765 | ret = -EINVAL; |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 766 | break; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 767 | } |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 768 | |
Cihangir Akturk | 1d5494e | 2017-08-03 14:58:40 +0300 | [diff] [blame] | 769 | drm_gem_object_get(bo); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 770 | exec->bo[i] = (struct drm_gem_cma_object *)bo; |
| 771 | } |
| 772 | spin_unlock(&file_priv->table_lock); |
| 773 | |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 774 | if (ret) |
| 775 | goto fail_put_bo; |
| 776 | |
| 777 | for (i = 0; i < exec->bo_count; i++) { |
| 778 | ret = vc4_bo_inc_usecnt(to_vc4_bo(&exec->bo[i]->base)); |
| 779 | if (ret) |
| 780 | goto fail_dec_usecnt; |
| 781 | } |
| 782 | |
| 783 | kvfree(handles); |
| 784 | return 0; |
| 785 | |
| 786 | fail_dec_usecnt: |
| 787 | /* Decrease usecnt on acquired objects. |
| 788 | * We cannot rely on vc4_complete_exec() to release resources here, |
| 789 | * because vc4_complete_exec() has no information about which BO has |
| 790 | * had its ->usecnt incremented. |
| 791 | * To make things easier we just free everything explicitly and set |
| 792 | * exec->bo to NULL so that vc4_complete_exec() skips the 'BO release' |
| 793 | * step. |
| 794 | */ |
| 795 | for (i-- ; i >= 0; i--) |
| 796 | vc4_bo_dec_usecnt(to_vc4_bo(&exec->bo[i]->base)); |
| 797 | |
| 798 | fail_put_bo: |
| 799 | /* Release any reference to acquired objects. */ |
| 800 | for (i = 0; i < exec->bo_count && exec->bo[i]; i++) |
| 801 | drm_gem_object_put_unlocked(&exec->bo[i]->base); |
| 802 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 803 | fail: |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 804 | kvfree(handles); |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 805 | kvfree(exec->bo); |
| 806 | exec->bo = NULL; |
Eric Anholt | 552416c | 2016-07-26 13:47:15 -0700 | [diff] [blame] | 807 | return ret; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | static int |
| 811 | vc4_get_bcl(struct drm_device *dev, struct vc4_exec_info *exec) |
| 812 | { |
| 813 | struct drm_vc4_submit_cl *args = exec->args; |
| 814 | void *temp = NULL; |
| 815 | void *bin; |
| 816 | int ret = 0; |
| 817 | uint32_t bin_offset = 0; |
| 818 | uint32_t shader_rec_offset = roundup(bin_offset + args->bin_cl_size, |
| 819 | 16); |
| 820 | uint32_t uniforms_offset = shader_rec_offset + args->shader_rec_size; |
| 821 | uint32_t exec_size = uniforms_offset + args->uniforms_size; |
| 822 | uint32_t temp_size = exec_size + (sizeof(struct vc4_shader_state) * |
| 823 | args->shader_rec_count); |
| 824 | struct vc4_bo *bo; |
| 825 | |
Eric Anholt | 0f2ff82 | 2017-01-17 21:42:53 +1100 | [diff] [blame] | 826 | if (shader_rec_offset < args->bin_cl_size || |
| 827 | uniforms_offset < shader_rec_offset || |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 828 | exec_size < uniforms_offset || |
| 829 | args->shader_rec_count >= (UINT_MAX / |
| 830 | sizeof(struct vc4_shader_state)) || |
| 831 | temp_size < exec_size) { |
Eric Anholt | fb95992 | 2017-07-25 09:27:32 -0700 | [diff] [blame] | 832 | DRM_DEBUG("overflow in exec arguments\n"); |
Eric Anholt | 6b8ac63 | 2017-01-17 21:58:06 +1100 | [diff] [blame] | 833 | ret = -EINVAL; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 834 | goto fail; |
| 835 | } |
| 836 | |
| 837 | /* Allocate space where we'll store the copied in user command lists |
| 838 | * and shader records. |
| 839 | * |
| 840 | * We don't just copy directly into the BOs because we need to |
| 841 | * read the contents back for validation, and I think the |
| 842 | * bo->vaddr is uncached access. |
| 843 | */ |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 844 | temp = kvmalloc_array(temp_size, 1, GFP_KERNEL); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 845 | if (!temp) { |
| 846 | DRM_ERROR("Failed to allocate storage for copying " |
| 847 | "in bin/render CLs.\n"); |
| 848 | ret = -ENOMEM; |
| 849 | goto fail; |
| 850 | } |
| 851 | bin = temp + bin_offset; |
| 852 | exec->shader_rec_u = temp + shader_rec_offset; |
| 853 | exec->uniforms_u = temp + uniforms_offset; |
| 854 | exec->shader_state = temp + exec_size; |
| 855 | exec->shader_state_size = args->shader_rec_count; |
| 856 | |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 857 | if (copy_from_user(bin, |
Eric Anholt | 95d7cbc | 2017-07-25 11:27:16 -0700 | [diff] [blame] | 858 | u64_to_user_ptr(args->bin_cl), |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 859 | args->bin_cl_size)) { |
| 860 | ret = -EFAULT; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 861 | goto fail; |
| 862 | } |
| 863 | |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 864 | if (copy_from_user(exec->shader_rec_u, |
Eric Anholt | 95d7cbc | 2017-07-25 11:27:16 -0700 | [diff] [blame] | 865 | u64_to_user_ptr(args->shader_rec), |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 866 | args->shader_rec_size)) { |
| 867 | ret = -EFAULT; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 868 | goto fail; |
| 869 | } |
| 870 | |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 871 | if (copy_from_user(exec->uniforms_u, |
Eric Anholt | 95d7cbc | 2017-07-25 11:27:16 -0700 | [diff] [blame] | 872 | u64_to_user_ptr(args->uniforms), |
Dan Carpenter | 65c4777 | 2015-12-17 15:36:28 +0300 | [diff] [blame] | 873 | args->uniforms_size)) { |
| 874 | ret = -EFAULT; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 875 | goto fail; |
| 876 | } |
| 877 | |
Eric Anholt | f309946 | 2017-07-25 11:27:17 -0700 | [diff] [blame] | 878 | bo = vc4_bo_create(dev, exec_size, true, VC4_BO_TYPE_BCL); |
Eric Anholt | 2c68f1f | 2016-01-25 14:13:12 -0800 | [diff] [blame] | 879 | if (IS_ERR(bo)) { |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 880 | DRM_ERROR("Couldn't allocate BO for binning\n"); |
Eric Anholt | 2c68f1f | 2016-01-25 14:13:12 -0800 | [diff] [blame] | 881 | ret = PTR_ERR(bo); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 882 | goto fail; |
| 883 | } |
| 884 | exec->exec_bo = &bo->base; |
| 885 | |
| 886 | list_add_tail(&to_vc4_bo(&exec->exec_bo->base)->unref_head, |
| 887 | &exec->unref_list); |
| 888 | |
| 889 | exec->ct0ca = exec->exec_bo->paddr + bin_offset; |
| 890 | |
| 891 | exec->bin_u = bin; |
| 892 | |
| 893 | exec->shader_rec_v = exec->exec_bo->vaddr + shader_rec_offset; |
| 894 | exec->shader_rec_p = exec->exec_bo->paddr + shader_rec_offset; |
| 895 | exec->shader_rec_size = args->shader_rec_size; |
| 896 | |
| 897 | exec->uniforms_v = exec->exec_bo->vaddr + uniforms_offset; |
| 898 | exec->uniforms_p = exec->exec_bo->paddr + uniforms_offset; |
| 899 | exec->uniforms_size = args->uniforms_size; |
| 900 | |
| 901 | ret = vc4_validate_bin_cl(dev, |
| 902 | exec->exec_bo->vaddr + bin_offset, |
| 903 | bin, |
| 904 | exec); |
| 905 | if (ret) |
| 906 | goto fail; |
| 907 | |
| 908 | ret = vc4_validate_shader_recs(dev, exec); |
Eric Anholt | 7edabee | 2016-09-27 09:03:13 -0700 | [diff] [blame] | 909 | if (ret) |
| 910 | goto fail; |
| 911 | |
| 912 | /* Block waiting on any previous rendering into the CS's VBO, |
| 913 | * IB, or textures, so that pixels are actually written by the |
| 914 | * time we try to read them. |
| 915 | */ |
| 916 | ret = vc4_wait_for_seqno(dev, exec->bin_dep_seqno, ~0ull, true); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 917 | |
| 918 | fail: |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 919 | kvfree(temp); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 920 | return ret; |
| 921 | } |
| 922 | |
| 923 | static void |
| 924 | vc4_complete_exec(struct drm_device *dev, struct vc4_exec_info *exec) |
| 925 | { |
Eric Anholt | 001bdb5 | 2016-02-05 17:41:49 -0800 | [diff] [blame] | 926 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
Eric Anholt | 553c942 | 2017-03-27 16:10:25 -0700 | [diff] [blame] | 927 | unsigned long irqflags; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 928 | unsigned i; |
| 929 | |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 930 | /* If we got force-completed because of GPU reset rather than |
| 931 | * through our IRQ handler, signal the fence now. |
| 932 | */ |
Stefan Schake | babc811 | 2017-12-02 18:40:39 +0100 | [diff] [blame] | 933 | if (exec->fence) { |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 934 | dma_fence_signal(exec->fence); |
Stefan Schake | babc811 | 2017-12-02 18:40:39 +0100 | [diff] [blame] | 935 | dma_fence_put(exec->fence); |
| 936 | } |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 937 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 938 | if (exec->bo) { |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 939 | for (i = 0; i < exec->bo_count; i++) { |
| 940 | struct vc4_bo *bo = to_vc4_bo(&exec->bo[i]->base); |
| 941 | |
| 942 | vc4_bo_dec_usecnt(bo); |
Cihangir Akturk | 1d5494e | 2017-08-03 14:58:40 +0300 | [diff] [blame] | 943 | drm_gem_object_put_unlocked(&exec->bo[i]->base); |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 944 | } |
Michal Hocko | 2098105 | 2017-05-17 14:23:12 +0200 | [diff] [blame] | 945 | kvfree(exec->bo); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | while (!list_empty(&exec->unref_list)) { |
| 949 | struct vc4_bo *bo = list_first_entry(&exec->unref_list, |
| 950 | struct vc4_bo, unref_head); |
| 951 | list_del(&bo->unref_head); |
Cihangir Akturk | 1d5494e | 2017-08-03 14:58:40 +0300 | [diff] [blame] | 952 | drm_gem_object_put_unlocked(&bo->base.base); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 953 | } |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 954 | |
Eric Anholt | 553c942 | 2017-03-27 16:10:25 -0700 | [diff] [blame] | 955 | /* Free up the allocation of any bin slots we used. */ |
| 956 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
| 957 | vc4->bin_alloc_used &= ~exec->bin_slots; |
| 958 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 959 | |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 960 | /* Release the reference we had on the perf monitor. */ |
| 961 | vc4_perfmon_put(exec->perfmon); |
| 962 | |
Eric Anholt | 36cb625 | 2016-02-08 12:59:02 -0800 | [diff] [blame] | 963 | mutex_lock(&vc4->power_lock); |
Eric Anholt | 3a62234 | 2016-11-04 15:58:38 -0700 | [diff] [blame] | 964 | if (--vc4->power_refcount == 0) { |
| 965 | pm_runtime_mark_last_busy(&vc4->v3d->pdev->dev); |
| 966 | pm_runtime_put_autosuspend(&vc4->v3d->pdev->dev); |
| 967 | } |
Eric Anholt | 36cb625 | 2016-02-08 12:59:02 -0800 | [diff] [blame] | 968 | mutex_unlock(&vc4->power_lock); |
Eric Anholt | 001bdb5 | 2016-02-05 17:41:49 -0800 | [diff] [blame] | 969 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 970 | kfree(exec); |
| 971 | } |
| 972 | |
| 973 | void |
| 974 | vc4_job_handle_completed(struct vc4_dev *vc4) |
| 975 | { |
| 976 | unsigned long irqflags; |
Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 977 | struct vc4_seqno_cb *cb, *cb_temp; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 978 | |
| 979 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
| 980 | while (!list_empty(&vc4->job_done_list)) { |
| 981 | struct vc4_exec_info *exec = |
| 982 | list_first_entry(&vc4->job_done_list, |
| 983 | struct vc4_exec_info, head); |
| 984 | list_del(&exec->head); |
| 985 | |
| 986 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 987 | vc4_complete_exec(vc4->dev, exec); |
| 988 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
| 989 | } |
Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 990 | |
| 991 | list_for_each_entry_safe(cb, cb_temp, &vc4->seqno_cb_list, work.entry) { |
| 992 | if (cb->seqno <= vc4->finished_seqno) { |
| 993 | list_del_init(&cb->work.entry); |
| 994 | schedule_work(&cb->work); |
| 995 | } |
| 996 | } |
| 997 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 998 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 999 | } |
| 1000 | |
Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 1001 | static void vc4_seqno_cb_work(struct work_struct *work) |
| 1002 | { |
| 1003 | struct vc4_seqno_cb *cb = container_of(work, struct vc4_seqno_cb, work); |
| 1004 | |
| 1005 | cb->func(cb); |
| 1006 | } |
| 1007 | |
| 1008 | int vc4_queue_seqno_cb(struct drm_device *dev, |
| 1009 | struct vc4_seqno_cb *cb, uint64_t seqno, |
| 1010 | void (*func)(struct vc4_seqno_cb *cb)) |
| 1011 | { |
| 1012 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 1013 | int ret = 0; |
| 1014 | unsigned long irqflags; |
| 1015 | |
| 1016 | cb->func = func; |
| 1017 | INIT_WORK(&cb->work, vc4_seqno_cb_work); |
| 1018 | |
| 1019 | spin_lock_irqsave(&vc4->job_lock, irqflags); |
| 1020 | if (seqno > vc4->finished_seqno) { |
| 1021 | cb->seqno = seqno; |
| 1022 | list_add_tail(&cb->work.entry, &vc4->seqno_cb_list); |
| 1023 | } else { |
| 1024 | schedule_work(&cb->work); |
| 1025 | } |
| 1026 | spin_unlock_irqrestore(&vc4->job_lock, irqflags); |
| 1027 | |
| 1028 | return ret; |
| 1029 | } |
| 1030 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1031 | /* Scheduled when any job has been completed, this walks the list of |
| 1032 | * jobs that had completed and unrefs their BOs and frees their exec |
| 1033 | * structs. |
| 1034 | */ |
| 1035 | static void |
| 1036 | vc4_job_done_work(struct work_struct *work) |
| 1037 | { |
| 1038 | struct vc4_dev *vc4 = |
| 1039 | container_of(work, struct vc4_dev, job_done_work); |
| 1040 | |
| 1041 | vc4_job_handle_completed(vc4); |
| 1042 | } |
| 1043 | |
| 1044 | static int |
| 1045 | vc4_wait_for_seqno_ioctl_helper(struct drm_device *dev, |
| 1046 | uint64_t seqno, |
| 1047 | uint64_t *timeout_ns) |
| 1048 | { |
| 1049 | unsigned long start = jiffies; |
| 1050 | int ret = vc4_wait_for_seqno(dev, seqno, *timeout_ns, true); |
| 1051 | |
| 1052 | if ((ret == -EINTR || ret == -ERESTARTSYS) && *timeout_ns != ~0ull) { |
| 1053 | uint64_t delta = jiffies_to_nsecs(jiffies - start); |
| 1054 | |
| 1055 | if (*timeout_ns >= delta) |
| 1056 | *timeout_ns -= delta; |
| 1057 | } |
| 1058 | |
| 1059 | return ret; |
| 1060 | } |
| 1061 | |
| 1062 | int |
| 1063 | vc4_wait_seqno_ioctl(struct drm_device *dev, void *data, |
| 1064 | struct drm_file *file_priv) |
| 1065 | { |
| 1066 | struct drm_vc4_wait_seqno *args = data; |
| 1067 | |
| 1068 | return vc4_wait_for_seqno_ioctl_helper(dev, args->seqno, |
| 1069 | &args->timeout_ns); |
| 1070 | } |
| 1071 | |
| 1072 | int |
| 1073 | vc4_wait_bo_ioctl(struct drm_device *dev, void *data, |
| 1074 | struct drm_file *file_priv) |
| 1075 | { |
| 1076 | int ret; |
| 1077 | struct drm_vc4_wait_bo *args = data; |
| 1078 | struct drm_gem_object *gem_obj; |
| 1079 | struct vc4_bo *bo; |
| 1080 | |
Eric Anholt | e001523 | 2016-01-25 13:05:00 -0800 | [diff] [blame] | 1081 | if (args->pad != 0) |
| 1082 | return -EINVAL; |
| 1083 | |
Chris Wilson | a8ad0bd | 2016-05-09 11:04:54 +0100 | [diff] [blame] | 1084 | gem_obj = drm_gem_object_lookup(file_priv, args->handle); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1085 | if (!gem_obj) { |
Eric Anholt | fb95992 | 2017-07-25 09:27:32 -0700 | [diff] [blame] | 1086 | DRM_DEBUG("Failed to look up GEM BO %d\n", args->handle); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1087 | return -EINVAL; |
| 1088 | } |
| 1089 | bo = to_vc4_bo(gem_obj); |
| 1090 | |
| 1091 | ret = vc4_wait_for_seqno_ioctl_helper(dev, bo->seqno, |
| 1092 | &args->timeout_ns); |
| 1093 | |
Cihangir Akturk | 1d5494e | 2017-08-03 14:58:40 +0300 | [diff] [blame] | 1094 | drm_gem_object_put_unlocked(gem_obj); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1095 | return ret; |
| 1096 | } |
| 1097 | |
| 1098 | /** |
Eric Anholt | 72f793f | 2017-02-27 12:11:41 -0800 | [diff] [blame] | 1099 | * vc4_submit_cl_ioctl() - Submits a job (frame) to the VC4. |
| 1100 | * @dev: DRM device |
| 1101 | * @data: ioctl argument |
| 1102 | * @file_priv: DRM file for this fd |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1103 | * |
Eric Anholt | 72f793f | 2017-02-27 12:11:41 -0800 | [diff] [blame] | 1104 | * This is the main entrypoint for userspace to submit a 3D frame to |
| 1105 | * the GPU. Userspace provides the binner command list (if |
| 1106 | * applicable), and the kernel sets up the render command list to draw |
| 1107 | * to the framebuffer described in the ioctl, using the command lists |
| 1108 | * that the 3D engine's binner will produce. |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1109 | */ |
| 1110 | int |
| 1111 | vc4_submit_cl_ioctl(struct drm_device *dev, void *data, |
| 1112 | struct drm_file *file_priv) |
| 1113 | { |
| 1114 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 1115 | struct vc4_file *vc4file = file_priv->driver_priv; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1116 | struct drm_vc4_submit_cl *args = data; |
| 1117 | struct vc4_exec_info *exec; |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 1118 | struct ww_acquire_ctx acquire_ctx; |
Stefan Schake | 818f5c8 | 2018-04-25 00:03:45 +0200 | [diff] [blame^] | 1119 | struct dma_fence *in_fence; |
Eric Anholt | 36cb625 | 2016-02-08 12:59:02 -0800 | [diff] [blame] | 1120 | int ret = 0; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1121 | |
Eric Anholt | 3be8edd | 2017-07-25 09:27:33 -0700 | [diff] [blame] | 1122 | if ((args->flags & ~(VC4_SUBMIT_CL_USE_CLEAR_COLOR | |
| 1123 | VC4_SUBMIT_CL_FIXED_RCL_ORDER | |
| 1124 | VC4_SUBMIT_CL_RCL_ORDER_INCREASING_X | |
| 1125 | VC4_SUBMIT_CL_RCL_ORDER_INCREASING_Y)) != 0) { |
Eric Anholt | fb95992 | 2017-07-25 09:27:32 -0700 | [diff] [blame] | 1126 | DRM_DEBUG("Unknown flags: 0x%02x\n", args->flags); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1127 | return -EINVAL; |
| 1128 | } |
| 1129 | |
| 1130 | exec = kcalloc(1, sizeof(*exec), GFP_KERNEL); |
| 1131 | if (!exec) { |
| 1132 | DRM_ERROR("malloc failure on exec struct\n"); |
| 1133 | return -ENOMEM; |
| 1134 | } |
| 1135 | |
Eric Anholt | 36cb625 | 2016-02-08 12:59:02 -0800 | [diff] [blame] | 1136 | mutex_lock(&vc4->power_lock); |
Eric Anholt | 925d05e | 2017-04-17 09:26:03 -0700 | [diff] [blame] | 1137 | if (vc4->power_refcount++ == 0) { |
Eric Anholt | 36cb625 | 2016-02-08 12:59:02 -0800 | [diff] [blame] | 1138 | ret = pm_runtime_get_sync(&vc4->v3d->pdev->dev); |
Eric Anholt | 925d05e | 2017-04-17 09:26:03 -0700 | [diff] [blame] | 1139 | if (ret < 0) { |
| 1140 | mutex_unlock(&vc4->power_lock); |
| 1141 | vc4->power_refcount--; |
| 1142 | kfree(exec); |
| 1143 | return ret; |
| 1144 | } |
Eric Anholt | 001bdb5 | 2016-02-05 17:41:49 -0800 | [diff] [blame] | 1145 | } |
Eric Anholt | 925d05e | 2017-04-17 09:26:03 -0700 | [diff] [blame] | 1146 | mutex_unlock(&vc4->power_lock); |
Eric Anholt | 001bdb5 | 2016-02-05 17:41:49 -0800 | [diff] [blame] | 1147 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1148 | exec->args = args; |
| 1149 | INIT_LIST_HEAD(&exec->unref_list); |
| 1150 | |
| 1151 | ret = vc4_cl_lookup_bos(dev, file_priv, exec); |
| 1152 | if (ret) |
| 1153 | goto fail; |
| 1154 | |
Boris Brezillon | 65101d8 | 2018-01-12 10:09:26 +0100 | [diff] [blame] | 1155 | if (args->perfmonid) { |
| 1156 | exec->perfmon = vc4_perfmon_find(vc4file, |
| 1157 | args->perfmonid); |
| 1158 | if (!exec->perfmon) { |
| 1159 | ret = -ENOENT; |
| 1160 | goto fail; |
| 1161 | } |
| 1162 | } |
| 1163 | |
Stefan Schake | 818f5c8 | 2018-04-25 00:03:45 +0200 | [diff] [blame^] | 1164 | if (args->in_sync) { |
| 1165 | ret = drm_syncobj_find_fence(file_priv, args->in_sync, |
| 1166 | &in_fence); |
| 1167 | if (ret) |
| 1168 | goto fail; |
| 1169 | |
| 1170 | /* When the fence (or fence array) is exclusively from our |
| 1171 | * context we can skip the wait since jobs are executed in |
| 1172 | * order of their submission through this ioctl and this can |
| 1173 | * only have fences from a prior job. |
| 1174 | */ |
| 1175 | if (!dma_fence_match_context(in_fence, |
| 1176 | vc4->dma_fence_context)) { |
| 1177 | ret = dma_fence_wait(in_fence, true); |
| 1178 | if (ret) { |
| 1179 | dma_fence_put(in_fence); |
| 1180 | goto fail; |
| 1181 | } |
| 1182 | } |
| 1183 | |
| 1184 | dma_fence_put(in_fence); |
| 1185 | } |
| 1186 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1187 | if (exec->args->bin_cl_size != 0) { |
| 1188 | ret = vc4_get_bcl(dev, exec); |
| 1189 | if (ret) |
| 1190 | goto fail; |
| 1191 | } else { |
| 1192 | exec->ct0ca = 0; |
| 1193 | exec->ct0ea = 0; |
| 1194 | } |
| 1195 | |
| 1196 | ret = vc4_get_rcl(dev, exec); |
| 1197 | if (ret) |
| 1198 | goto fail; |
| 1199 | |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 1200 | ret = vc4_lock_bo_reservations(dev, exec, &acquire_ctx); |
| 1201 | if (ret) |
| 1202 | goto fail; |
| 1203 | |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1204 | /* Clear this out of the struct we'll be putting in the queue, |
| 1205 | * since it's part of our stack. |
| 1206 | */ |
| 1207 | exec->args = NULL; |
| 1208 | |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 1209 | ret = vc4_queue_submit(dev, exec, &acquire_ctx); |
| 1210 | if (ret) |
| 1211 | goto fail; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1212 | |
| 1213 | /* Return the seqno for our job. */ |
| 1214 | args->seqno = vc4->emit_seqno; |
| 1215 | |
| 1216 | return 0; |
| 1217 | |
| 1218 | fail: |
| 1219 | vc4_complete_exec(vc4->dev, exec); |
| 1220 | |
| 1221 | return ret; |
| 1222 | } |
| 1223 | |
| 1224 | void |
| 1225 | vc4_gem_init(struct drm_device *dev) |
| 1226 | { |
| 1227 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 1228 | |
Eric Anholt | cdec4d3 | 2017-04-12 12:12:02 -0700 | [diff] [blame] | 1229 | vc4->dma_fence_context = dma_fence_context_alloc(1); |
| 1230 | |
Varad Gautam | ca26d28 | 2016-02-17 19:08:21 +0530 | [diff] [blame] | 1231 | INIT_LIST_HEAD(&vc4->bin_job_list); |
| 1232 | INIT_LIST_HEAD(&vc4->render_job_list); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1233 | INIT_LIST_HEAD(&vc4->job_done_list); |
Eric Anholt | b501bac | 2015-11-30 12:34:01 -0800 | [diff] [blame] | 1234 | INIT_LIST_HEAD(&vc4->seqno_cb_list); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1235 | spin_lock_init(&vc4->job_lock); |
| 1236 | |
| 1237 | INIT_WORK(&vc4->hangcheck.reset_work, vc4_reset_work); |
Kees Cook | 0078730 | 2017-10-24 08:16:48 -0700 | [diff] [blame] | 1238 | timer_setup(&vc4->hangcheck.timer, vc4_hangcheck_elapsed, 0); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1239 | |
| 1240 | INIT_WORK(&vc4->job_done_work, vc4_job_done_work); |
Eric Anholt | 36cb625 | 2016-02-08 12:59:02 -0800 | [diff] [blame] | 1241 | |
| 1242 | mutex_init(&vc4->power_lock); |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 1243 | |
| 1244 | INIT_LIST_HEAD(&vc4->purgeable.list); |
| 1245 | mutex_init(&vc4->purgeable.lock); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1246 | } |
| 1247 | |
| 1248 | void |
| 1249 | vc4_gem_destroy(struct drm_device *dev) |
| 1250 | { |
| 1251 | struct vc4_dev *vc4 = to_vc4_dev(dev); |
| 1252 | |
| 1253 | /* Waiting for exec to finish would need to be done before |
| 1254 | * unregistering V3D. |
| 1255 | */ |
| 1256 | WARN_ON(vc4->emit_seqno != vc4->finished_seqno); |
| 1257 | |
| 1258 | /* V3D should already have disabled its interrupt and cleared |
| 1259 | * the overflow allocation registers. Now free the object. |
| 1260 | */ |
Eric Anholt | 553c942 | 2017-03-27 16:10:25 -0700 | [diff] [blame] | 1261 | if (vc4->bin_bo) { |
| 1262 | drm_gem_object_put_unlocked(&vc4->bin_bo->base.base); |
| 1263 | vc4->bin_bo = NULL; |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1264 | } |
| 1265 | |
Eric Anholt | 2146136 | 2015-10-30 10:09:02 -0700 | [diff] [blame] | 1266 | if (vc4->hang_state) |
| 1267 | vc4_free_hang_state(dev, vc4->hang_state); |
Eric Anholt | d5b1a78 | 2015-11-30 12:13:37 -0800 | [diff] [blame] | 1268 | } |
Boris Brezillon | b9f1925 | 2017-10-19 14:57:48 +0200 | [diff] [blame] | 1269 | |
| 1270 | int vc4_gem_madvise_ioctl(struct drm_device *dev, void *data, |
| 1271 | struct drm_file *file_priv) |
| 1272 | { |
| 1273 | struct drm_vc4_gem_madvise *args = data; |
| 1274 | struct drm_gem_object *gem_obj; |
| 1275 | struct vc4_bo *bo; |
| 1276 | int ret; |
| 1277 | |
| 1278 | switch (args->madv) { |
| 1279 | case VC4_MADV_DONTNEED: |
| 1280 | case VC4_MADV_WILLNEED: |
| 1281 | break; |
| 1282 | default: |
| 1283 | return -EINVAL; |
| 1284 | } |
| 1285 | |
| 1286 | if (args->pad != 0) |
| 1287 | return -EINVAL; |
| 1288 | |
| 1289 | gem_obj = drm_gem_object_lookup(file_priv, args->handle); |
| 1290 | if (!gem_obj) { |
| 1291 | DRM_DEBUG("Failed to look up GEM BO %d\n", args->handle); |
| 1292 | return -ENOENT; |
| 1293 | } |
| 1294 | |
| 1295 | bo = to_vc4_bo(gem_obj); |
| 1296 | |
| 1297 | /* Only BOs exposed to userspace can be purged. */ |
| 1298 | if (bo->madv == __VC4_MADV_NOTSUPP) { |
| 1299 | DRM_DEBUG("madvise not supported on this BO\n"); |
| 1300 | ret = -EINVAL; |
| 1301 | goto out_put_gem; |
| 1302 | } |
| 1303 | |
| 1304 | /* Not sure it's safe to purge imported BOs. Let's just assume it's |
| 1305 | * not until proven otherwise. |
| 1306 | */ |
| 1307 | if (gem_obj->import_attach) { |
| 1308 | DRM_DEBUG("madvise not supported on imported BOs\n"); |
| 1309 | ret = -EINVAL; |
| 1310 | goto out_put_gem; |
| 1311 | } |
| 1312 | |
| 1313 | mutex_lock(&bo->madv_lock); |
| 1314 | |
| 1315 | if (args->madv == VC4_MADV_DONTNEED && bo->madv == VC4_MADV_WILLNEED && |
| 1316 | !refcount_read(&bo->usecnt)) { |
| 1317 | /* If the BO is about to be marked as purgeable, is not used |
| 1318 | * and is not already purgeable or purged, add it to the |
| 1319 | * purgeable list. |
| 1320 | */ |
| 1321 | vc4_bo_add_to_purgeable_pool(bo); |
| 1322 | } else if (args->madv == VC4_MADV_WILLNEED && |
| 1323 | bo->madv == VC4_MADV_DONTNEED && |
| 1324 | !refcount_read(&bo->usecnt)) { |
| 1325 | /* The BO has not been purged yet, just remove it from |
| 1326 | * the purgeable list. |
| 1327 | */ |
| 1328 | vc4_bo_remove_from_purgeable_pool(bo); |
| 1329 | } |
| 1330 | |
| 1331 | /* Save the purged state. */ |
| 1332 | args->retained = bo->madv != __VC4_MADV_PURGED; |
| 1333 | |
| 1334 | /* Update internal madv state only if the bo was not purged. */ |
| 1335 | if (bo->madv != __VC4_MADV_PURGED) |
| 1336 | bo->madv = args->madv; |
| 1337 | |
| 1338 | mutex_unlock(&bo->madv_lock); |
| 1339 | |
| 1340 | ret = 0; |
| 1341 | |
| 1342 | out_put_gem: |
| 1343 | drm_gem_object_put_unlocked(gem_obj); |
| 1344 | |
| 1345 | return ret; |
| 1346 | } |