context.c 5.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-License-Identifier: GPL-2.0

/*
 * Copyright 2016-2019 HabanaLabs, Ltd.
 * All Rights Reserved.
 */

#include "habanalabs.h"

#include <linux/slab.h>

static void hl_ctx_fini(struct hl_ctx *ctx)
{
	struct hl_device *hdev = ctx->hdev;
15 16 17 18 19 20 21 22 23 24
	int i;

	/*
	 * If we arrived here, there are no jobs waiting for this context
	 * on its queues so we can safely remove it.
	 * This is because for each CS, we increment the ref count and for
	 * every CS that was finished we decrement it and we won't arrive
	 * to this function unless the ref count is 0
	 */

25
	for (i = 0 ; i < hdev->asic_prop.max_pending_cs ; i++)
26
		hl_fence_put(ctx->cs_pending[i]);
27

28 29
	kfree(ctx->cs_pending);

30
	if (ctx->asid != HL_KERNEL_ASID_ID) {
31
		/* The engines are stopped as there is no executing CS, but the
32 33
		 * Coresight might be still working by accessing addresses
		 * related to the stopped engines. Hence stop it explicitly.
34 35
		 * Stop only if this is the compute context, as there can be
		 * only one compute context
36
		 */
37
		if ((hdev->in_debug) && (hdev->compute_ctx == ctx))
38 39
			hl_device_set_debug_mode(hdev, false);

40
		hl_vm_ctx_fini(ctx);
41
		hl_asid_free(hdev, ctx->asid);
42 43
	} else {
		hl_mmu_ctx_fini(ctx);
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
}

void hl_ctx_do_release(struct kref *ref)
{
	struct hl_ctx *ctx;

	ctx = container_of(ref, struct hl_ctx, refcount);

	hl_ctx_fini(ctx);

	if (ctx->hpriv)
		hl_hpriv_put(ctx->hpriv);

	kfree(ctx);
}

int hl_ctx_create(struct hl_device *hdev, struct hl_fpriv *hpriv)
{
	struct hl_ctx_mgr *mgr = &hpriv->ctx_mgr;
	struct hl_ctx *ctx;
	int rc;

	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
	if (!ctx) {
		rc = -ENOMEM;
		goto out_err;
	}

73 74 75 76 77 78 79 80 81 82 83
	mutex_lock(&mgr->ctx_lock);
	rc = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
	mutex_unlock(&mgr->ctx_lock);

	if (rc < 0) {
		dev_err(hdev->dev, "Failed to allocate IDR for a new CTX\n");
		goto free_ctx;
	}

	ctx->handle = rc;

84 85
	rc = hl_ctx_init(hdev, ctx, false);
	if (rc)
86
		goto remove_from_idr;
87 88 89 90

	hl_hpriv_get(hpriv);
	ctx->hpriv = hpriv;

91
	/* TODO: remove for multiple contexts per process */
92
	hpriv->ctx = ctx;
93 94 95

	/* TODO: remove the following line for multiple process support */
	hdev->compute_ctx = ctx;
96 97 98

	return 0;

99 100 101 102
remove_from_idr:
	mutex_lock(&mgr->ctx_lock);
	idr_remove(&mgr->ctx_handles, ctx->handle);
	mutex_unlock(&mgr->ctx_lock);
103 104 105 106 107 108 109 110 111 112 113 114
free_ctx:
	kfree(ctx);
out_err:
	return rc;
}

void hl_ctx_free(struct hl_device *hdev, struct hl_ctx *ctx)
{
	if (kref_put(&ctx->refcount, hl_ctx_do_release) == 1)
		return;

	dev_warn(hdev->dev,
115
		"user process released device but its command submissions are still executing\n");
116 117 118 119
}

int hl_ctx_init(struct hl_device *hdev, struct hl_ctx *ctx, bool is_kernel_ctx)
{
120 121
	int rc = 0;

122 123 124 125
	ctx->hdev = hdev;

	kref_init(&ctx->refcount);

126 127
	ctx->cs_sequence = 1;
	spin_lock_init(&ctx->cs_lock);
128 129
	atomic_set(&ctx->thread_ctx_switch_token, 1);
	ctx->thread_ctx_switch_wait_token = 0;
130
	ctx->cs_pending = kcalloc(hdev->asic_prop.max_pending_cs,
131
				sizeof(struct hl_fence *),
132 133 134
				GFP_KERNEL);
	if (!ctx->cs_pending)
		return -ENOMEM;
135

136
	if (is_kernel_ctx) {
137
		ctx->asid = HL_KERNEL_ASID_ID; /* Kernel driver gets ASID 0 */
138 139 140
		rc = hl_mmu_ctx_init(ctx);
		if (rc) {
			dev_err(hdev->dev, "Failed to init mmu ctx module\n");
141
			goto err_free_cs_pending;
142
		}
143 144 145 146
	} else {
		ctx->asid = hl_asid_alloc(hdev);
		if (!ctx->asid) {
			dev_err(hdev->dev, "No free ASID, failed to create context\n");
147 148
			rc = -ENOMEM;
			goto err_free_cs_pending;
149
		}
150 151 152 153 154

		rc = hl_vm_ctx_init(ctx);
		if (rc) {
			dev_err(hdev->dev, "Failed to init mem ctx module\n");
			rc = -ENOMEM;
155
			goto err_asid_free;
156
		}
157 158 159 160

		rc = hdev->asic_funcs->ctx_init(ctx);
		if (rc) {
			dev_err(hdev->dev, "ctx_init failed\n");
161
			goto err_vm_ctx_fini;
162
		}
163 164 165
	}

	return 0;
166

167
err_vm_ctx_fini:
168
	hl_vm_ctx_fini(ctx);
169 170 171 172
err_asid_free:
	hl_asid_free(hdev, ctx->asid);
err_free_cs_pending:
	kfree(ctx->cs_pending);
173 174

	return rc;
175 176 177 178 179 180 181 182 183 184 185 186
}

void hl_ctx_get(struct hl_device *hdev, struct hl_ctx *ctx)
{
	kref_get(&ctx->refcount);
}

int hl_ctx_put(struct hl_ctx *ctx)
{
	return kref_put(&ctx->refcount, hl_ctx_do_release);
}

187
struct hl_fence *hl_ctx_get_fence(struct hl_ctx *ctx, u64 seq)
188
{
189
	struct asic_fixed_properties *asic_prop = &ctx->hdev->asic_prop;
190
	struct hl_fence *fence;
191 192 193 194 195 196 197 198

	spin_lock(&ctx->cs_lock);

	if (seq >= ctx->cs_sequence) {
		spin_unlock(&ctx->cs_lock);
		return ERR_PTR(-EINVAL);
	}

199
	if (seq + asic_prop->max_pending_cs < ctx->cs_sequence) {
200 201 202 203
		spin_unlock(&ctx->cs_lock);
		return NULL;
	}

204 205 206
	fence = ctx->cs_pending[seq & (asic_prop->max_pending_cs - 1)];
	hl_fence_get(fence);

207 208 209 210 211
	spin_unlock(&ctx->cs_lock);

	return fence;
}

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
/*
 * hl_ctx_mgr_init - initialize the context manager
 *
 * @mgr: pointer to context manager structure
 *
 * This manager is an object inside the hpriv object of the user process.
 * The function is called when a user process opens the FD.
 */
void hl_ctx_mgr_init(struct hl_ctx_mgr *mgr)
{
	mutex_init(&mgr->ctx_lock);
	idr_init(&mgr->ctx_handles);
}

/*
 * hl_ctx_mgr_fini - finalize the context manager
 *
 * @hdev: pointer to device structure
 * @mgr: pointer to context manager structure
 *
 * This function goes over all the contexts in the manager and frees them.
 * It is called when a process closes the FD.
 */
void hl_ctx_mgr_fini(struct hl_device *hdev, struct hl_ctx_mgr *mgr)
{
	struct hl_ctx *ctx;
	struct idr *idp;
	u32 id;

	idp = &mgr->ctx_handles;

	idr_for_each_entry(idp, ctx, id)
		hl_ctx_free(hdev, ctx);

	idr_destroy(&mgr->ctx_handles);
	mutex_destroy(&mgr->ctx_lock);
}