blob: b8621c6e055460caaf1bc2779945702670af9da1 [file] [log] [blame]
Thomas Gleixner97fb5e82019-05-29 07:17:58 -07001// SPDX-License-Identifier: GPL-2.0-only
Jordan Crousef7de1542017-10-20 11:06:55 -06002/* Copyright (c) 2017 The Linux Foundation. All rights reserved.
Jordan Crousef7de1542017-10-20 11:06:55 -06003 */
4
5#include <linux/kref.h>
Sam Ravnborgfeea39a2019-08-04 08:55:51 +02006#include <linux/uaccess.h>
7
Jordan Crousef7de1542017-10-20 11:06:55 -06008#include "msm_gpu.h"
9
Rob Clark68002462021-10-01 09:42:05 -070010void __msm_file_private_destroy(struct kref *kref)
11{
12 struct msm_file_private *ctx = container_of(kref,
13 struct msm_file_private, ref);
14 int i;
15
16 for (i = 0; i < ARRAY_SIZE(ctx->entities); i++) {
17 if (!ctx->entities[i])
18 continue;
19
20 drm_sched_entity_destroy(ctx->entities[i]);
21 kfree(ctx->entities[i]);
22 }
23
24 msm_gem_address_space_put(ctx->aspace);
25 kfree(ctx);
26}
27
Jordan Crousef7de1542017-10-20 11:06:55 -060028void msm_submitqueue_destroy(struct kref *kref)
29{
30 struct msm_gpu_submitqueue *queue = container_of(kref,
31 struct msm_gpu_submitqueue, ref);
32
Rob Clarka61acbb2021-07-27 18:06:12 -070033 idr_destroy(&queue->fence_idr);
34
Jordan Crousecf655d62020-08-17 15:01:36 -070035 msm_file_private_put(queue->ctx);
36
Jordan Crousef7de1542017-10-20 11:06:55 -060037 kfree(queue);
38}
39
40struct msm_gpu_submitqueue *msm_submitqueue_get(struct msm_file_private *ctx,
41 u32 id)
42{
43 struct msm_gpu_submitqueue *entry;
44
45 if (!ctx)
46 return NULL;
47
48 read_lock(&ctx->queuelock);
49
50 list_for_each_entry(entry, &ctx->submitqueues, node) {
51 if (entry->id == id) {
52 kref_get(&entry->ref);
53 read_unlock(&ctx->queuelock);
54
55 return entry;
56 }
57 }
58
59 read_unlock(&ctx->queuelock);
60 return NULL;
61}
62
63void msm_submitqueue_close(struct msm_file_private *ctx)
64{
65 struct msm_gpu_submitqueue *entry, *tmp;
66
67 if (!ctx)
68 return;
69
70 /*
71 * No lock needed in close and there won't
72 * be any more user ioctls coming our way
73 */
Rob Clarka3367f52020-08-17 15:01:26 -070074 list_for_each_entry_safe(entry, tmp, &ctx->submitqueues, node) {
75 list_del(&entry->node);
Jordan Crousef7de1542017-10-20 11:06:55 -060076 msm_submitqueue_put(entry);
Rob Clarka3367f52020-08-17 15:01:26 -070077 }
Jordan Crousef7de1542017-10-20 11:06:55 -060078}
79
Rob Clark68002462021-10-01 09:42:05 -070080static struct drm_sched_entity *
81get_sched_entity(struct msm_file_private *ctx, struct msm_ringbuffer *ring,
82 unsigned ring_nr, enum drm_sched_priority sched_prio)
83{
84 static DEFINE_MUTEX(entity_lock);
85 unsigned idx = (ring_nr * NR_SCHED_PRIORITIES) + sched_prio;
86
87 /* We should have already validated that the requested priority is
88 * valid by the time we get here.
89 */
90 if (WARN_ON(idx >= ARRAY_SIZE(ctx->entities)))
91 return ERR_PTR(-EINVAL);
92
93 mutex_lock(&entity_lock);
94
95 if (!ctx->entities[idx]) {
96 struct drm_sched_entity *entity;
97 struct drm_gpu_scheduler *sched = &ring->sched;
98 int ret;
99
100 entity = kzalloc(sizeof(*ctx->entities[idx]), GFP_KERNEL);
101
102 ret = drm_sched_entity_init(entity, sched_prio, &sched, 1, NULL);
103 if (ret) {
104 kfree(entity);
105 return ERR_PTR(ret);
106 }
107
108 ctx->entities[idx] = entity;
109 }
110
111 mutex_unlock(&entity_lock);
112
113 return ctx->entities[idx];
114}
115
Jordan Crousef97deca2017-10-20 11:06:57 -0600116int msm_submitqueue_create(struct drm_device *drm, struct msm_file_private *ctx,
117 u32 prio, u32 flags, u32 *id)
Jordan Crousef7de1542017-10-20 11:06:55 -0600118{
Jordan Crousef97deca2017-10-20 11:06:57 -0600119 struct msm_drm_private *priv = drm->dev_private;
Jordan Crousef7de1542017-10-20 11:06:55 -0600120 struct msm_gpu_submitqueue *queue;
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700121 enum drm_sched_priority sched_prio;
122 unsigned ring_nr;
Rob Clark1d8a5ca2021-07-27 18:06:14 -0700123 int ret;
Jordan Crousef7de1542017-10-20 11:06:55 -0600124
125 if (!ctx)
126 return -ENODEV;
127
Rob Clark86c2a0f2021-07-27 18:06:07 -0700128 if (!priv->gpu)
129 return -ENODEV;
130
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700131 ret = msm_gpu_convert_priority(priv->gpu, prio, &ring_nr, &sched_prio);
132 if (ret)
133 return ret;
Rob Clark86c2a0f2021-07-27 18:06:07 -0700134
Jordan Crousef7de1542017-10-20 11:06:55 -0600135 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
136
137 if (!queue)
138 return -ENOMEM;
139
140 kref_init(&queue->ref);
141 queue->flags = flags;
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700142 queue->ring_nr = ring_nr;
Jordan Crousef7de1542017-10-20 11:06:55 -0600143
Rob Clark68002462021-10-01 09:42:05 -0700144 queue->entity = get_sched_entity(ctx, priv->gpu->rb[ring_nr],
145 ring_nr, sched_prio);
146 if (IS_ERR(queue->entity)) {
147 ret = PTR_ERR(queue->entity);
Rob Clark1d8a5ca2021-07-27 18:06:14 -0700148 kfree(queue);
149 return ret;
150 }
151
Jordan Crousef7de1542017-10-20 11:06:55 -0600152 write_lock(&ctx->queuelock);
153
Jordan Crousecf655d62020-08-17 15:01:36 -0700154 queue->ctx = msm_file_private_get(ctx);
Jordan Crousef7de1542017-10-20 11:06:55 -0600155 queue->id = ctx->queueid++;
156
157 if (id)
158 *id = queue->id;
159
Rob Clarka61acbb2021-07-27 18:06:12 -0700160 idr_init(&queue->fence_idr);
161 mutex_init(&queue->lock);
162
Jordan Crousef7de1542017-10-20 11:06:55 -0600163 list_add_tail(&queue->node, &ctx->submitqueues);
164
165 write_unlock(&ctx->queuelock);
166
167 return 0;
168}
169
Rob Clark375f9a62021-07-27 18:06:06 -0700170/*
171 * Create the default submit-queue (id==0), used for backwards compatibility
172 * for userspace that pre-dates the introduction of submitqueues.
173 */
Jordan Crousef97deca2017-10-20 11:06:57 -0600174int msm_submitqueue_init(struct drm_device *drm, struct msm_file_private *ctx)
Jordan Crousef7de1542017-10-20 11:06:55 -0600175{
Jordan Crousef97deca2017-10-20 11:06:57 -0600176 struct msm_drm_private *priv = drm->dev_private;
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700177 int default_prio, max_priority;
Jordan Crousef97deca2017-10-20 11:06:57 -0600178
Rob Clark86c2a0f2021-07-27 18:06:07 -0700179 if (!priv->gpu)
180 return -ENODEV;
181
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700182 max_priority = (priv->gpu->nr_rings * NR_SCHED_PRIORITIES) - 1;
183
Jordan Crousef97deca2017-10-20 11:06:57 -0600184 /*
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700185 * Pick a medium priority level as default. Lower numeric value is
186 * higher priority, so round-up to pick a priority that is not higher
187 * than the middle priority level.
Jordan Crousef97deca2017-10-20 11:06:57 -0600188 */
Rob Clarkfc40e5e2021-07-27 18:06:17 -0700189 default_prio = DIV_ROUND_UP(max_priority, 2);
Jordan Crousef97deca2017-10-20 11:06:57 -0600190
Jordan Crousef97deca2017-10-20 11:06:57 -0600191 return msm_submitqueue_create(drm, ctx, default_prio, 0, NULL);
Jordan Crousef7de1542017-10-20 11:06:55 -0600192}
193
Jordan Crouseb0fb6602019-03-22 14:21:22 -0600194static int msm_submitqueue_query_faults(struct msm_gpu_submitqueue *queue,
195 struct drm_msm_submitqueue_query *args)
196{
197 size_t size = min_t(size_t, args->len, sizeof(queue->faults));
198 int ret;
199
200 /* If a zero length was passed in, return the data size we expect */
201 if (!args->len) {
202 args->len = sizeof(queue->faults);
203 return 0;
204 }
205
206 /* Set the length to the actual size of the data */
207 args->len = size;
208
209 ret = copy_to_user(u64_to_user_ptr(args->data), &queue->faults, size);
210
211 return ret ? -EFAULT : 0;
212}
213
214int msm_submitqueue_query(struct drm_device *drm, struct msm_file_private *ctx,
215 struct drm_msm_submitqueue_query *args)
216{
217 struct msm_gpu_submitqueue *queue;
218 int ret = -EINVAL;
219
220 if (args->pad)
221 return -EINVAL;
222
223 queue = msm_submitqueue_get(ctx, args->id);
224 if (!queue)
225 return -ENOENT;
226
227 if (args->param == MSM_SUBMITQUEUE_PARAM_FAULTS)
228 ret = msm_submitqueue_query_faults(queue, args);
229
230 msm_submitqueue_put(queue);
231
232 return ret;
233}
234
Jordan Crousef7de1542017-10-20 11:06:55 -0600235int msm_submitqueue_remove(struct msm_file_private *ctx, u32 id)
236{
237 struct msm_gpu_submitqueue *entry;
238
239 if (!ctx)
240 return 0;
241
242 /*
243 * id 0 is the "default" queue and can't be destroyed
244 * by the user
245 */
246 if (!id)
247 return -ENOENT;
248
249 write_lock(&ctx->queuelock);
250
251 list_for_each_entry(entry, &ctx->submitqueues, node) {
252 if (entry->id == id) {
253 list_del(&entry->node);
254 write_unlock(&ctx->queuelock);
255
256 msm_submitqueue_put(entry);
257 return 0;
258 }
259 }
260
261 write_unlock(&ctx->queuelock);
262 return -ENOENT;
263}
264