blob: bbdda727f89a5aa81c7d07e51f0c1e094313a06e [file] [log] [blame]
Chunming Zhouc1b69ed2015-07-21 13:45:14 +08001/*
2 * Copyright 2015 Advanced Micro Devices, Inc.
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 shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 *
23 */
24#include <linux/kthread.h>
25#include <linux/wait.h>
26#include <linux/sched.h>
27#include <drm/drmP.h>
28#include "amdgpu.h"
Chunming Zhou7034dec2015-11-11 14:56:00 +080029#include "amdgpu_trace.h"
Chunming Zhouc1b69ed2015-07-21 13:45:14 +080030
Christian König50838c82016-02-03 13:44:52 +010031int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
32 struct amdgpu_job **job)
33{
34 size_t size = sizeof(struct amdgpu_job);
35
36 if (num_ibs == 0)
37 return -EINVAL;
38
39 size += sizeof(struct amdgpu_ib) * num_ibs;
40
41 *job = kzalloc(size, GFP_KERNEL);
42 if (!*job)
43 return -ENOMEM;
44
45 (*job)->adev = adev;
46 (*job)->ibs = (void *)&(*job)[1];
47 (*job)->num_ibs = num_ibs;
Christian König50838c82016-02-03 13:44:52 +010048
49 return 0;
50}
51
Christian Königd71518b2016-02-01 12:20:25 +010052int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
53 struct amdgpu_job **job)
54{
55 int r;
56
57 r = amdgpu_job_alloc(adev, 1, job);
58 if (r)
59 return r;
60
61 r = amdgpu_ib_get(adev, NULL, size, &(*job)->ibs[0]);
62 if (r)
63 kfree(*job);
64
65 return r;
66}
67
Christian König50838c82016-02-03 13:44:52 +010068void amdgpu_job_free(struct amdgpu_job *job)
69{
70 unsigned i;
71
72 for (i = 0; i < job->num_ibs; ++i)
73 amdgpu_ib_free(job->adev, &job->ibs[i]);
74
75 amdgpu_bo_unref(&job->uf.bo);
Christian Königd71518b2016-02-01 12:20:25 +010076 kfree(job);
77}
78
79int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
80 void *owner, struct fence **f)
81{
82 struct amdgpu_device *adev = job->adev;
83
84 job->ring = ring;
85 job->base.sched = &ring->sched;
86 job->base.s_entity = &adev->kernel_ctx.rings[ring->idx].entity;
87 job->base.s_fence = amd_sched_fence_create(job->base.s_entity, owner);
88 if (!job->base.s_fence)
89 return -ENOMEM;
90
91 *f = fence_get(&job->base.s_fence->base);
92
93 job->owner = owner;
94 amd_sched_entity_push_job(&job->base);
95
96 return 0;
Christian König50838c82016-02-03 13:44:52 +010097}
98
Junwei Zhang4c7eb912015-09-09 09:05:55 +080099static struct fence *amdgpu_sched_dependency(struct amd_sched_job *sched_job)
Christian Könige61235d2015-08-25 11:05:36 +0200100{
Junwei Zhanga6db8a32015-09-09 09:21:19 +0800101 struct amdgpu_job *job = to_amdgpu_job(sched_job);
Christian König8d0a7ce2015-11-03 20:58:50 +0100102 struct amdgpu_sync *sync = &job->ibs->sync;
103 struct amdgpu_vm *vm = job->ibs->vm;
104
105 struct fence *fence = amdgpu_sync_get_fence(sync);
106
107 if (fence == NULL && vm && !job->ibs->grabbed_vmid) {
Christian Königb07c60c2016-01-31 12:29:04 +0100108 struct amdgpu_ring *ring = job->ring;
Christian König8d0a7ce2015-11-03 20:58:50 +0100109 int r;
110
Christian König94dd0a42016-01-18 17:01:42 +0100111 r = amdgpu_vm_grab_id(vm, ring, sync,
112 &job->base.s_fence->base);
113 if (r)
Christian König8d0a7ce2015-11-03 20:58:50 +0100114 DRM_ERROR("Error getting VM ID (%d)\n", r);
Christian König94dd0a42016-01-18 17:01:42 +0100115 else
Christian König8d0a7ce2015-11-03 20:58:50 +0100116 job->ibs->grabbed_vmid = true;
Christian König8d0a7ce2015-11-03 20:58:50 +0100117
118 fence = amdgpu_sync_get_fence(sync);
119 }
120
121 return fence;
Christian Könige61235d2015-08-25 11:05:36 +0200122}
123
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800124static struct fence *amdgpu_sched_run_job(struct amd_sched_job *sched_job)
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800125{
Christian Königec72b802016-02-01 11:56:35 +0100126 struct fence *fence = NULL;
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800127 struct amdgpu_job *job;
Christian Königbd755d02015-08-24 14:57:26 +0200128 int r;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800129
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800130 if (!sched_job) {
Chunming Zhou4cef9262015-08-05 19:52:14 +0800131 DRM_ERROR("job is null\n");
Christian König6f0e54a2015-08-05 21:22:10 +0200132 return NULL;
Chunming Zhou4cef9262015-08-05 19:52:14 +0800133 }
Junwei Zhanga6db8a32015-09-09 09:21:19 +0800134 job = to_amdgpu_job(sched_job);
Chunming Zhou7034dec2015-11-11 14:56:00 +0800135 trace_amdgpu_sched_run_job(job);
Christian Königec72b802016-02-01 11:56:35 +0100136 r = amdgpu_ib_schedule(job->ring, job->num_ibs, job->ibs,
137 job->owner, &fence);
Christian König1886d1a2015-08-31 17:28:28 +0200138 if (r) {
139 DRM_ERROR("Error scheduling IBs (%d)\n", r);
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800140 goto err;
Christian König1886d1a2015-08-31 17:28:28 +0200141 }
142
Christian König1886d1a2015-08-31 17:28:28 +0200143err:
Christian Königd71518b2016-02-01 12:20:25 +0100144 amdgpu_job_free(job);
Christian Königec72b802016-02-01 11:56:35 +0100145 return fence;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800146}
147
148struct amd_sched_backend_ops amdgpu_sched_ops = {
Christian Könige61235d2015-08-25 11:05:36 +0200149 .dependency = amdgpu_sched_dependency,
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800150 .run_job = amdgpu_sched_run_job,
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800151};