blob: 41601c71f5294c18fbcaa651416d24b19c65d4b0 [file] [log] [blame]
Alex Dai33a732f2015-08-12 15:43:36 +01001/*
2 * Copyright © 2014 Intel Corporation
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 (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24#ifndef _INTEL_GUC_H_
25#define _INTEL_GUC_H_
26
27#include "intel_guc_fwif.h"
28#include "i915_guc_reg.h"
29
Chris Wilsone73bdd22016-04-13 17:35:01 +010030struct drm_i915_gem_request;
31
Dave Gordon86e06cc2016-04-19 16:08:36 +010032/*
33 * This structure primarily describes the GEM object shared with the GuC.
34 * The GEM object is held for the entire lifetime of our interaction with
35 * the GuC, being allocated before the GuC is loaded with its firmware.
36 * Because there's no way to update the address used by the GuC after
37 * initialisation, the shared object must stay pinned into the GGTT as
38 * long as the GuC is in use. We also keep the first page (only) mapped
39 * into kernel address space, as it includes shared data that must be
40 * updated on every request submission.
41 *
42 * The single GEM object described here is actually made up of several
43 * separate areas, as far as the GuC is concerned. The first page (kept
44 * kmap'd) includes the "process decriptor" which holds sequence data for
45 * the doorbell, and one cacheline which actually *is* the doorbell; a
46 * write to this will "ring the doorbell" (i.e. send an interrupt to the
47 * GuC). The subsequent pages of the client object constitute the work
48 * queue (a circular array of work items), again described in the process
49 * descriptor. Work queue pages are mapped momentarily as required.
50 *
Dave Gordon551aaec2016-05-13 15:36:33 +010051 * We also keep a few statistics on failures. Ideally, these should all
52 * be zero!
53 * no_wq_space: times that the submission pre-check found no space was
54 * available in the work queue (note, the queue is shared,
55 * not per-engine). It is OK for this to be nonzero, but
56 * it should not be huge!
57 * q_fail: failed to enqueue a work item. This should never happen,
58 * because we check for space beforehand.
59 * b_fail: failed to ring the doorbell. This should never happen, unless
60 * somehow the hardware misbehaves, or maybe if the GuC firmware
61 * crashes? We probably need to reset the GPU to recover.
62 * retcode: errno from last guc_submit()
Dave Gordon86e06cc2016-04-19 16:08:36 +010063 */
Dave Gordon44a28b12015-08-12 15:43:41 +010064struct i915_guc_client {
65 struct drm_i915_gem_object *client_obj;
Dave Gordon0d92a6a2016-04-19 16:08:34 +010066 void *client_base; /* first page (only) of above */
Chris Wilsone2efd132016-05-24 14:53:34 +010067 struct i915_gem_context *owner;
Dave Gordon44a28b12015-08-12 15:43:41 +010068 struct intel_guc *guc;
69 uint32_t priority;
70 uint32_t ctx_index;
71
72 uint32_t proc_desc_offset;
73 uint32_t doorbell_offset;
74 uint32_t cookie;
75 uint16_t doorbell_id;
76 uint16_t padding; /* Maintain alignment */
77
78 uint32_t wq_offset;
79 uint32_t wq_size;
Dave Gordon44a28b12015-08-12 15:43:41 +010080 uint32_t wq_tail;
Alex Daia5916e82016-04-19 16:08:35 +010081 uint32_t unused; /* Was 'wq_head' */
Dave Gordon44a28b12015-08-12 15:43:41 +010082
Dave Gordon551aaec2016-05-13 15:36:33 +010083 uint32_t no_wq_space;
Dave Gordon0a31afb2016-05-13 15:36:34 +010084 uint32_t q_fail; /* No longer used */
Dave Gordon44a28b12015-08-12 15:43:41 +010085 uint32_t b_fail;
86 int retcode;
Dave Gordon551aaec2016-05-13 15:36:33 +010087
88 /* Per-engine counts of GuC submissions */
89 uint64_t submissions[GUC_MAX_ENGINES_NUM];
Dave Gordon44a28b12015-08-12 15:43:41 +010090};
91
Alex Dai33a732f2015-08-12 15:43:36 +010092enum intel_guc_fw_status {
93 GUC_FIRMWARE_FAIL = -1,
94 GUC_FIRMWARE_NONE = 0,
95 GUC_FIRMWARE_PENDING,
96 GUC_FIRMWARE_SUCCESS
97};
98
99/*
100 * This structure encapsulates all the data needed during the process
101 * of fetching, caching, and loading the firmware image into the GuC.
102 */
103struct intel_guc_fw {
104 struct drm_device * guc_dev;
105 const char * guc_fw_path;
106 size_t guc_fw_size;
107 struct drm_i915_gem_object * guc_fw_obj;
108 enum intel_guc_fw_status guc_fw_fetch_status;
109 enum intel_guc_fw_status guc_fw_load_status;
110
111 uint16_t guc_fw_major_wanted;
112 uint16_t guc_fw_minor_wanted;
113 uint16_t guc_fw_major_found;
114 uint16_t guc_fw_minor_found;
Alex Daifeda33e2015-10-19 16:10:54 -0700115
116 uint32_t header_size;
117 uint32_t header_offset;
118 uint32_t rsa_size;
119 uint32_t rsa_offset;
120 uint32_t ucode_size;
121 uint32_t ucode_offset;
Alex Dai33a732f2015-08-12 15:43:36 +0100122};
123
124struct intel_guc {
125 struct intel_guc_fw guc_fw;
Alex Dai33a732f2015-08-12 15:43:36 +0100126 uint32_t log_flags;
Alex Dai4c7e77f2015-08-12 15:43:40 +0100127 struct drm_i915_gem_object *log_obj;
Alex Daibac427f2015-08-12 15:43:39 +0100128
Alex Dai68371a92015-12-18 12:00:09 -0800129 struct drm_i915_gem_object *ads_obj;
130
Alex Daibac427f2015-08-12 15:43:39 +0100131 struct drm_i915_gem_object *ctx_pool_obj;
132 struct ida ctx_ids;
Dave Gordon44a28b12015-08-12 15:43:41 +0100133
134 struct i915_guc_client *execbuf_client;
135
Dave Gordon44a28b12015-08-12 15:43:41 +0100136 DECLARE_BITMAP(doorbell_bitmap, GUC_MAX_DOORBELLS);
137 uint32_t db_cacheline; /* Cyclic counter mod pagesize */
138
139 /* Action status & statistics */
140 uint64_t action_count; /* Total commands issued */
141 uint32_t action_cmd; /* Last command word */
142 uint32_t action_status; /* Last return status */
143 uint32_t action_fail; /* Total number of failures */
144 int32_t action_err; /* Last error code */
145
Alex Dai397097b2016-01-23 11:58:14 -0800146 uint64_t submissions[GUC_MAX_ENGINES_NUM];
147 uint32_t last_seqno[GUC_MAX_ENGINES_NUM];
Alex Dai33a732f2015-08-12 15:43:36 +0100148};
149
150/* intel_guc_loader.c */
Dave Gordonf09d6752016-05-13 15:36:29 +0100151extern void intel_guc_init(struct drm_device *dev);
152extern int intel_guc_setup(struct drm_device *dev);
153extern void intel_guc_fini(struct drm_device *dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100154extern const char *intel_guc_fw_status_repr(enum intel_guc_fw_status status);
Alex Daia1c41992015-09-30 09:46:37 -0700155extern int intel_guc_suspend(struct drm_device *dev);
156extern int intel_guc_resume(struct drm_device *dev);
Alex Dai33a732f2015-08-12 15:43:36 +0100157
Alex Daibac427f2015-08-12 15:43:39 +0100158/* i915_guc_submission.c */
159int i915_guc_submission_init(struct drm_device *dev);
Dave Gordon44a28b12015-08-12 15:43:41 +0100160int i915_guc_submission_enable(struct drm_device *dev);
Dave Gordon7c2c2702016-05-13 15:36:32 +0100161int i915_guc_wq_check_space(struct drm_i915_gem_request *rq);
162int i915_guc_submit(struct drm_i915_gem_request *rq);
Dave Gordon44a28b12015-08-12 15:43:41 +0100163void i915_guc_submission_disable(struct drm_device *dev);
Alex Daibac427f2015-08-12 15:43:39 +0100164void i915_guc_submission_fini(struct drm_device *dev);
165
Alex Dai33a732f2015-08-12 15:43:36 +0100166#endif