Home | History | Annotate | Line # | Download | only in amdgpu
amdgpu_ctx.c revision 1.1
      1 /*	$NetBSD: amdgpu_ctx.c,v 1.1 2018/08/27 01:34:43 riastradh Exp $	*/
      2 
      3 /*
      4  * Copyright 2015 Advanced Micro Devices, Inc.
      5  *
      6  * Permission is hereby granted, free of charge, to any person obtaining a
      7  * copy of this software and associated documentation files (the "Software"),
      8  * to deal in the Software without restriction, including without limitation
      9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
     10  * and/or sell copies of the Software, and to permit persons to whom the
     11  * Software is furnished to do so, subject to the following conditions:
     12  *
     13  * The above copyright notice and this permission notice shall be included in
     14  * all copies or substantial portions of the 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  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) 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
     22  * OTHER DEALINGS IN THE SOFTWARE.
     23  *
     24  * Authors: monk liu <monk.liu (at) amd.com>
     25  */
     26 
     27 #include <sys/cdefs.h>
     28 __KERNEL_RCSID(0, "$NetBSD: amdgpu_ctx.c,v 1.1 2018/08/27 01:34:43 riastradh Exp $");
     29 
     30 #include <drm/drmP.h>
     31 #include "amdgpu.h"
     32 
     33 int amdgpu_ctx_init(struct amdgpu_device *adev, bool kernel,
     34 		    struct amdgpu_ctx *ctx)
     35 {
     36 	unsigned i, j;
     37 	int r;
     38 
     39 	memset(ctx, 0, sizeof(*ctx));
     40 	ctx->adev = adev;
     41 	kref_init(&ctx->refcount);
     42 	spin_lock_init(&ctx->ring_lock);
     43 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
     44 		ctx->rings[i].sequence = 1;
     45 
     46 	if (amdgpu_enable_scheduler) {
     47 		/* create context entity for each ring */
     48 		for (i = 0; i < adev->num_rings; i++) {
     49 			struct amd_sched_rq *rq;
     50 			if (kernel)
     51 				rq = &adev->rings[i]->sched.kernel_rq;
     52 			else
     53 				rq = &adev->rings[i]->sched.sched_rq;
     54 			r = amd_sched_entity_init(&adev->rings[i]->sched,
     55 						  &ctx->rings[i].entity,
     56 						  rq, amdgpu_sched_jobs);
     57 			if (r)
     58 				break;
     59 		}
     60 
     61 		if (i < adev->num_rings) {
     62 			for (j = 0; j < i; j++)
     63 				amd_sched_entity_fini(&adev->rings[j]->sched,
     64 						      &ctx->rings[j].entity);
     65 			kfree(ctx);
     66 			return r;
     67 		}
     68 	}
     69 	return 0;
     70 }
     71 
     72 void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
     73 {
     74 	struct amdgpu_device *adev = ctx->adev;
     75 	unsigned i, j;
     76 
     77 	if (!adev)
     78 		return;
     79 
     80 	for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
     81 		for (j = 0; j < AMDGPU_CTX_MAX_CS_PENDING; ++j)
     82 			fence_put(ctx->rings[i].fences[j]);
     83 
     84 	if (amdgpu_enable_scheduler) {
     85 		for (i = 0; i < adev->num_rings; i++)
     86 			amd_sched_entity_fini(&adev->rings[i]->sched,
     87 					      &ctx->rings[i].entity);
     88 	}
     89 }
     90 
     91 static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
     92 			    struct amdgpu_fpriv *fpriv,
     93 			    uint32_t *id)
     94 {
     95 	struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
     96 	struct amdgpu_ctx *ctx;
     97 	int r;
     98 
     99 	ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
    100 	if (!ctx)
    101 		return -ENOMEM;
    102 
    103 	mutex_lock(&mgr->lock);
    104 	r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
    105 	if (r < 0) {
    106 		mutex_unlock(&mgr->lock);
    107 		kfree(ctx);
    108 		return r;
    109 	}
    110 	*id = (uint32_t)r;
    111 	r = amdgpu_ctx_init(adev, false, ctx);
    112 	mutex_unlock(&mgr->lock);
    113 
    114 	return r;
    115 }
    116 
    117 static void amdgpu_ctx_do_release(struct kref *ref)
    118 {
    119 	struct amdgpu_ctx *ctx;
    120 
    121 	ctx = container_of(ref, struct amdgpu_ctx, refcount);
    122 
    123 	amdgpu_ctx_fini(ctx);
    124 
    125 	kfree(ctx);
    126 }
    127 
    128 static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
    129 {
    130 	struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
    131 	struct amdgpu_ctx *ctx;
    132 
    133 	mutex_lock(&mgr->lock);
    134 	ctx = idr_find(&mgr->ctx_handles, id);
    135 	if (ctx) {
    136 		idr_remove(&mgr->ctx_handles, id);
    137 		kref_put(&ctx->refcount, amdgpu_ctx_do_release);
    138 		mutex_unlock(&mgr->lock);
    139 		return 0;
    140 	}
    141 	mutex_unlock(&mgr->lock);
    142 	return -EINVAL;
    143 }
    144 
    145 static int amdgpu_ctx_query(struct amdgpu_device *adev,
    146 			    struct amdgpu_fpriv *fpriv, uint32_t id,
    147 			    union drm_amdgpu_ctx_out *out)
    148 {
    149 	struct amdgpu_ctx *ctx;
    150 	struct amdgpu_ctx_mgr *mgr;
    151 	unsigned reset_counter;
    152 
    153 	if (!fpriv)
    154 		return -EINVAL;
    155 
    156 	mgr = &fpriv->ctx_mgr;
    157 	mutex_lock(&mgr->lock);
    158 	ctx = idr_find(&mgr->ctx_handles, id);
    159 	if (!ctx) {
    160 		mutex_unlock(&mgr->lock);
    161 		return -EINVAL;
    162 	}
    163 
    164 	/* TODO: these two are always zero */
    165 	out->state.flags = 0x0;
    166 	out->state.hangs = 0x0;
    167 
    168 	/* determine if a GPU reset has occured since the last call */
    169 	reset_counter = atomic_read(&adev->gpu_reset_counter);
    170 	/* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
    171 	if (ctx->reset_counter == reset_counter)
    172 		out->state.reset_status = AMDGPU_CTX_NO_RESET;
    173 	else
    174 		out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
    175 	ctx->reset_counter = reset_counter;
    176 
    177 	mutex_unlock(&mgr->lock);
    178 	return 0;
    179 }
    180 
    181 int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
    182 		     struct drm_file *filp)
    183 {
    184 	int r;
    185 	uint32_t id;
    186 
    187 	union drm_amdgpu_ctx *args = data;
    188 	struct amdgpu_device *adev = dev->dev_private;
    189 	struct amdgpu_fpriv *fpriv = filp->driver_priv;
    190 
    191 	r = 0;
    192 	id = args->in.ctx_id;
    193 
    194 	switch (args->in.op) {
    195 		case AMDGPU_CTX_OP_ALLOC_CTX:
    196 			r = amdgpu_ctx_alloc(adev, fpriv, &id);
    197 			args->out.alloc.ctx_id = id;
    198 			break;
    199 		case AMDGPU_CTX_OP_FREE_CTX:
    200 			r = amdgpu_ctx_free(fpriv, id);
    201 			break;
    202 		case AMDGPU_CTX_OP_QUERY_STATE:
    203 			r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
    204 			break;
    205 		default:
    206 			return -EINVAL;
    207 	}
    208 
    209 	return r;
    210 }
    211 
    212 struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
    213 {
    214 	struct amdgpu_ctx *ctx;
    215 	struct amdgpu_ctx_mgr *mgr;
    216 
    217 	if (!fpriv)
    218 		return NULL;
    219 
    220 	mgr = &fpriv->ctx_mgr;
    221 
    222 	mutex_lock(&mgr->lock);
    223 	ctx = idr_find(&mgr->ctx_handles, id);
    224 	if (ctx)
    225 		kref_get(&ctx->refcount);
    226 	mutex_unlock(&mgr->lock);
    227 	return ctx;
    228 }
    229 
    230 int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
    231 {
    232 	if (ctx == NULL)
    233 		return -EINVAL;
    234 
    235 	kref_put(&ctx->refcount, amdgpu_ctx_do_release);
    236 	return 0;
    237 }
    238 
    239 uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
    240 			      struct fence *fence)
    241 {
    242 	struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
    243 	uint64_t seq = cring->sequence;
    244 	unsigned idx = 0;
    245 	struct fence *other = NULL;
    246 
    247 	idx = seq % AMDGPU_CTX_MAX_CS_PENDING;
    248 	other = cring->fences[idx];
    249 	if (other) {
    250 		signed long r;
    251 		r = fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT);
    252 		if (r < 0)
    253 			DRM_ERROR("Error (%ld) waiting for fence!\n", r);
    254 	}
    255 
    256 	fence_get(fence);
    257 
    258 	spin_lock(&ctx->ring_lock);
    259 	cring->fences[idx] = fence;
    260 	cring->sequence++;
    261 	spin_unlock(&ctx->ring_lock);
    262 
    263 	fence_put(other);
    264 
    265 	return seq;
    266 }
    267 
    268 struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
    269 				   struct amdgpu_ring *ring, uint64_t seq)
    270 {
    271 	struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
    272 	struct fence *fence;
    273 
    274 	spin_lock(&ctx->ring_lock);
    275 
    276 	if (seq >= cring->sequence) {
    277 		spin_unlock(&ctx->ring_lock);
    278 		return ERR_PTR(-EINVAL);
    279 	}
    280 
    281 
    282 	if (seq + AMDGPU_CTX_MAX_CS_PENDING < cring->sequence) {
    283 		spin_unlock(&ctx->ring_lock);
    284 		return NULL;
    285 	}
    286 
    287 	fence = fence_get(cring->fences[seq % AMDGPU_CTX_MAX_CS_PENDING]);
    288 	spin_unlock(&ctx->ring_lock);
    289 
    290 	return fence;
    291 }
    292 
    293 void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
    294 {
    295 	mutex_init(&mgr->lock);
    296 	idr_init(&mgr->ctx_handles);
    297 }
    298 
    299 void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
    300 {
    301 	struct amdgpu_ctx *ctx;
    302 	struct idr *idp;
    303 	uint32_t id;
    304 
    305 	idp = &mgr->ctx_handles;
    306 
    307 	idr_for_each_entry(idp, ctx, id) {
    308 		if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
    309 			DRM_ERROR("ctx %p is still alive\n", ctx);
    310 	}
    311 
    312 	idr_destroy(&mgr->ctx_handles);
    313 	mutex_destroy(&mgr->lock);
    314 }
    315