intel_guc_submission.h 2.1 KB
Newer Older
1
/* SPDX-License-Identifier: MIT */
2
/*
3
 * Copyright © 2014-2019 Intel Corporation
4 5
 */

6 7
#ifndef _INTEL_GUC_SUBMISSION_H_
#define _INTEL_GUC_SUBMISSION_H_
8 9 10

#include <linux/spinlock.h>

11 12
#include "gt/intel_engine_types.h"

13
#include "i915_gem.h"
14
#include "i915_selftest.h"
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

struct drm_i915_private;

/*
 * This structure primarily describes the GEM object shared with the GuC.
 * The specs sometimes refer to this object as a "GuC context", but we use
 * the term "client" to avoid confusion with hardware contexts. This
 * GEM object is held for the entire lifetime of our interaction with
 * the GuC, being allocated before the GuC is loaded with its firmware.
 * Because there's no way to update the address used by the GuC after
 * initialisation, the shared object must stay pinned into the GGTT as
 * long as the GuC is in use. We also keep the first page (only) mapped
 * into kernel address space, as it includes shared data that must be
 * updated on every request submission.
 *
 * The single GEM object described here is actually made up of several
 * separate areas, as far as the GuC is concerned. The first page (kept
 * kmap'd) includes the "process descriptor" which holds sequence data for
 * the doorbell, and one cacheline which actually *is* the doorbell; a
 * write to this will "ring the doorbell" (i.e. send an interrupt to the
 * GuC). The subsequent  pages of the client object constitute the work
 * queue (a circular array of work items), again described in the process
 * descriptor. Work queue pages are mapped momentarily as required.
 */
39
struct intel_guc_client {
40 41 42 43 44
	struct i915_vma *vma;
	void *vaddr;
	struct intel_guc *guc;

	/* bitmap of (host) engine ids */
45
	u32 priority;
46 47
	u32 stage_id;

48
	/* Protects GuC client's WQ access */
49 50 51
	spinlock_t wq_lock;
};

52
void intel_guc_submission_init_early(struct intel_guc *guc);
53
int intel_guc_submission_init(struct intel_guc *guc);
54
void intel_guc_submission_enable(struct intel_guc *guc);
55 56
void intel_guc_submission_disable(struct intel_guc *guc);
void intel_guc_submission_fini(struct intel_guc *guc);
57 58
int intel_guc_preempt_work_create(struct intel_guc *guc);
void intel_guc_preempt_work_destroy(struct intel_guc *guc);
59 60

#endif