blob: 7b904145049059a66ecfc87a29a78129e0ba75e1 [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 */
Arkadiusz Hiler8c4f24f2016-11-25 18:59:33 +010024#ifndef _INTEL_UC_H_
25#define _INTEL_UC_H_
Alex Dai33a732f2015-08-12 15:43:36 +010026
27#include "intel_guc_fwif.h"
28#include "i915_guc_reg.h"
Dave Gordon0b63bb12016-06-20 15:18:07 +010029#include "intel_ringbuffer.h"
Alex Dai33a732f2015-08-12 15:43:36 +010030
Chris Wilson4741da92016-12-24 19:31:46 +000031#include "i915_vma.h"
32
Chris Wilsone73bdd22016-04-13 17:35:01 +010033struct drm_i915_gem_request;
34
Dave Gordon86e06cc2016-04-19 16:08:36 +010035/*
36 * This structure primarily describes the GEM object shared with the GuC.
37 * The GEM object is held for the entire lifetime of our interaction with
38 * the GuC, being allocated before the GuC is loaded with its firmware.
39 * Because there's no way to update the address used by the GuC after
40 * initialisation, the shared object must stay pinned into the GGTT as
41 * long as the GuC is in use. We also keep the first page (only) mapped
42 * into kernel address space, as it includes shared data that must be
43 * updated on every request submission.
44 *
45 * The single GEM object described here is actually made up of several
46 * separate areas, as far as the GuC is concerned. The first page (kept
47 * kmap'd) includes the "process decriptor" which holds sequence data for
48 * the doorbell, and one cacheline which actually *is* the doorbell; a
49 * write to this will "ring the doorbell" (i.e. send an interrupt to the
50 * GuC). The subsequent pages of the client object constitute the work
51 * queue (a circular array of work items), again described in the process
52 * descriptor. Work queue pages are mapped momentarily as required.
53 *
Dave Gordon551aaec2016-05-13 15:36:33 +010054 * We also keep a few statistics on failures. Ideally, these should all
55 * be zero!
56 * no_wq_space: times that the submission pre-check found no space was
57 * available in the work queue (note, the queue is shared,
58 * not per-engine). It is OK for this to be nonzero, but
59 * it should not be huge!
60 * q_fail: failed to enqueue a work item. This should never happen,
61 * because we check for space beforehand.
62 * b_fail: failed to ring the doorbell. This should never happen, unless
63 * somehow the hardware misbehaves, or maybe if the GuC firmware
64 * crashes? We probably need to reset the GPU to recover.
65 * retcode: errno from last guc_submit()
Dave Gordon86e06cc2016-04-19 16:08:36 +010066 */
Dave Gordon44a28b12015-08-12 15:43:41 +010067struct i915_guc_client {
Chris Wilson8b797af2016-08-15 10:48:51 +010068 struct i915_vma *vma;
Chris Wilson72aa0d82016-11-02 17:50:47 +000069 void *vaddr;
Chris Wilsone2efd132016-05-24 14:53:34 +010070 struct i915_gem_context *owner;
Dave Gordon44a28b12015-08-12 15:43:41 +010071 struct intel_guc *guc;
Dave Gordone02757d2016-08-09 15:19:21 +010072
73 uint32_t engines; /* bitmap of (host) engine ids */
Dave Gordon44a28b12015-08-12 15:43:41 +010074 uint32_t priority;
75 uint32_t ctx_index;
Dave Gordon44a28b12015-08-12 15:43:41 +010076 uint32_t proc_desc_offset;
Dave Gordon774439e12016-08-09 15:19:23 +010077
Dave Gordon44a28b12015-08-12 15:43:41 +010078 uint32_t doorbell_offset;
Chris Wilson357248b2016-11-29 12:10:21 +000079 uint32_t doorbell_cookie;
Dave Gordon44a28b12015-08-12 15:43:41 +010080 uint16_t doorbell_id;
Dave Gordon774439e12016-08-09 15:19:23 +010081 uint16_t padding[3]; /* Maintain alignment */
Dave Gordon44a28b12015-08-12 15:43:41 +010082
Chris Wilsondadd4812016-09-09 14:11:57 +010083 spinlock_t wq_lock;
Dave Gordon44a28b12015-08-12 15:43:41 +010084 uint32_t wq_offset;
85 uint32_t wq_size;
Dave Gordon44a28b12015-08-12 15:43:41 +010086 uint32_t wq_tail;
Chris Wilsondadd4812016-09-09 14:11:57 +010087 uint32_t wq_rsvd;
Dave Gordon551aaec2016-05-13 15:36:33 +010088 uint32_t no_wq_space;
Dave Gordon44a28b12015-08-12 15:43:41 +010089 uint32_t b_fail;
90 int retcode;
Dave Gordon551aaec2016-05-13 15:36:33 +010091
92 /* Per-engine counts of GuC submissions */
Dave Gordon0b63bb12016-06-20 15:18:07 +010093 uint64_t submissions[I915_NUM_ENGINES];
Dave Gordon44a28b12015-08-12 15:43:41 +010094};
95
Anusha Srivatsadb0a0912017-01-13 17:17:04 -080096enum intel_uc_fw_status {
97 INTEL_UC_FIRMWARE_FAIL = -1,
98 INTEL_UC_FIRMWARE_NONE = 0,
99 INTEL_UC_FIRMWARE_PENDING,
100 INTEL_UC_FIRMWARE_SUCCESS
Alex Dai33a732f2015-08-12 15:43:36 +0100101};
102
Anusha Srivatsafbbad732017-01-13 17:17:05 -0800103enum intel_uc_fw_type {
104 INTEL_UC_FW_TYPE_GUC,
105 INTEL_UC_FW_TYPE_HUC
106};
107
Alex Dai33a732f2015-08-12 15:43:36 +0100108/*
109 * This structure encapsulates all the data needed during the process
110 * of fetching, caching, and loading the firmware image into the GuC.
111 */
Anusha Srivatsadb0a0912017-01-13 17:17:04 -0800112struct intel_uc_fw {
113 const char *path;
114 size_t size;
115 struct drm_i915_gem_object *obj;
116 enum intel_uc_fw_status fetch_status;
117 enum intel_uc_fw_status load_status;
Alex Dai33a732f2015-08-12 15:43:36 +0100118
Anusha Srivatsadb0a0912017-01-13 17:17:04 -0800119 uint16_t major_ver_wanted;
120 uint16_t minor_ver_wanted;
121 uint16_t major_ver_found;
122 uint16_t minor_ver_found;
Alex Daifeda33e2015-10-19 16:10:54 -0700123
Anusha Srivatsafbbad732017-01-13 17:17:05 -0800124 enum intel_uc_fw_type fw;
Alex Daifeda33e2015-10-19 16:10:54 -0700125 uint32_t header_size;
126 uint32_t header_offset;
127 uint32_t rsa_size;
128 uint32_t rsa_offset;
129 uint32_t ucode_size;
130 uint32_t ucode_offset;
Alex Dai33a732f2015-08-12 15:43:36 +0100131};
132
Akash Goeld6b40b42016-10-12 21:54:29 +0530133struct intel_guc_log {
134 uint32_t flags;
135 struct i915_vma *vma;
Sagar Arun Kamble4100b2a2016-10-12 21:54:32 +0530136 void *buf_addr;
137 struct workqueue_struct *flush_wq;
138 struct work_struct flush_work;
Akash Goelf8240832016-10-12 21:54:34 +0530139 struct rchan *relay_chan;
Akash Goel5aa1ee42016-10-12 21:54:36 +0530140
141 /* logging related stats */
142 u32 capture_miss_count;
143 u32 flush_interrupt_count;
144 u32 prev_overflow_count[GUC_MAX_LOG_BUFFER];
145 u32 total_overflow_count[GUC_MAX_LOG_BUFFER];
146 u32 flush_count[GUC_MAX_LOG_BUFFER];
Akash Goeld6b40b42016-10-12 21:54:29 +0530147};
148
Alex Dai33a732f2015-08-12 15:43:36 +0100149struct intel_guc {
Anusha Srivatsadb0a0912017-01-13 17:17:04 -0800150 struct intel_uc_fw fw;
Akash Goeld6b40b42016-10-12 21:54:29 +0530151 struct intel_guc_log log;
Alex Daibac427f2015-08-12 15:43:39 +0100152
Arkadiusz Hilera80bc452016-11-25 18:59:34 +0100153 /* intel_guc_recv interrupt related state */
Sagar Arun Kamble26705e22016-10-12 21:54:31 +0530154 bool interrupts_enabled;
155
Chris Wilson8b797af2016-08-15 10:48:51 +0100156 struct i915_vma *ads_vma;
157 struct i915_vma *ctx_pool_vma;
Alex Daibac427f2015-08-12 15:43:39 +0100158 struct ida ctx_ids;
Dave Gordon44a28b12015-08-12 15:43:41 +0100159
160 struct i915_guc_client *execbuf_client;
161
Dave Gordon44a28b12015-08-12 15:43:41 +0100162 DECLARE_BITMAP(doorbell_bitmap, GUC_MAX_DOORBELLS);
163 uint32_t db_cacheline; /* Cyclic counter mod pagesize */
164
165 /* Action status & statistics */
166 uint64_t action_count; /* Total commands issued */
167 uint32_t action_cmd; /* Last command word */
168 uint32_t action_status; /* Last return status */
169 uint32_t action_fail; /* Total number of failures */
170 int32_t action_err; /* Last error code */
171
Dave Gordon0b63bb12016-06-20 15:18:07 +0100172 uint64_t submissions[I915_NUM_ENGINES];
173 uint32_t last_seqno[I915_NUM_ENGINES];
Akash Goel5dd79892016-10-12 21:54:35 +0530174
Arkadiusz Hilera80bc452016-11-25 18:59:34 +0100175 /* To serialize the intel_guc_send actions */
176 struct mutex send_mutex;
Alex Dai33a732f2015-08-12 15:43:36 +0100177};
178
Anusha Srivatsabd1328582017-01-18 08:05:53 -0800179struct intel_huc {
180 /* Generic uC firmware management */
181 struct intel_uc_fw fw;
182
183 /* HuC-specific additions */
184};
185
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100186/* intel_uc.c */
Arkadiusz Hiler413e8fd2016-11-25 18:59:36 +0100187void intel_uc_init_early(struct drm_i915_private *dev_priv);
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100188int intel_guc_send(struct intel_guc *guc, const u32 *action, u32 len);
189int intel_guc_sample_forcewake(struct intel_guc *guc);
Arkadiusz Hiler2d803c22016-11-25 18:59:35 +0100190
Alex Dai33a732f2015-08-12 15:43:36 +0100191/* intel_guc_loader.c */
Arkadiusz Hiler0417a2b2017-03-14 15:28:05 +0100192void intel_guc_init(struct drm_i915_private *dev_priv);
Arkadiusz Hiler882d1db2017-03-14 15:28:07 +0100193int intel_guc_init_hw(struct intel_guc *guc);
Arkadiusz Hiler0417a2b2017-03-14 15:28:05 +0100194void intel_guc_fini(struct drm_i915_private *dev_priv);
195const char *intel_uc_fw_status_repr(enum intel_uc_fw_status status);
196int intel_guc_suspend(struct drm_i915_private *dev_priv);
197int intel_guc_resume(struct drm_i915_private *dev_priv);
Anusha Srivatsabd1328582017-01-18 08:05:53 -0800198void intel_uc_fw_fetch(struct drm_i915_private *dev_priv,
199 struct intel_uc_fw *uc_fw);
Anusha Srivatsadb0a0912017-01-13 17:17:04 -0800200u32 intel_guc_wopcm_size(struct drm_i915_private *dev_priv);
Alex Dai33a732f2015-08-12 15:43:36 +0100201
Alex Daibac427f2015-08-12 15:43:39 +0100202/* i915_guc_submission.c */
Dave Gordonbeffa512016-06-10 18:29:26 +0100203int i915_guc_submission_init(struct drm_i915_private *dev_priv);
204int i915_guc_submission_enable(struct drm_i915_private *dev_priv);
Dave Gordon7a9347f2016-09-12 21:19:37 +0100205int i915_guc_wq_reserve(struct drm_i915_gem_request *rq);
Chris Wilson5ba89902016-10-07 07:53:27 +0100206void i915_guc_wq_unreserve(struct drm_i915_gem_request *request);
Dave Gordonbeffa512016-06-10 18:29:26 +0100207void i915_guc_submission_disable(struct drm_i915_private *dev_priv);
208void i915_guc_submission_fini(struct drm_i915_private *dev_priv);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000209struct i915_vma *intel_guc_allocate_vma(struct intel_guc *guc, u32 size);
210
211/* intel_guc_log.c */
212void intel_guc_log_create(struct intel_guc *guc);
213void i915_guc_log_register(struct drm_i915_private *dev_priv);
214void i915_guc_log_unregister(struct drm_i915_private *dev_priv);
Sagar Arun Kamble685534e2016-10-12 21:54:41 +0530215int i915_guc_log_control(struct drm_i915_private *dev_priv, u64 control_val);
Alex Daibac427f2015-08-12 15:43:39 +0100216
Chris Wilson4741da92016-12-24 19:31:46 +0000217static inline u32 guc_ggtt_offset(struct i915_vma *vma)
218{
219 u32 offset = i915_ggtt_offset(vma);
220 GEM_BUG_ON(offset < GUC_WOPCM_TOP);
Chris Wilsondb9309a2017-01-05 15:30:23 +0000221 GEM_BUG_ON(range_overflows_t(u64, offset, vma->size, GUC_GGTT_TOP));
Chris Wilson4741da92016-12-24 19:31:46 +0000222 return offset;
223}
224
Anusha Srivatsabd1328582017-01-18 08:05:53 -0800225/* intel_huc.c */
226void intel_huc_init(struct drm_i915_private *dev_priv);
227void intel_huc_fini(struct drm_i915_private *dev_priv);
Arkadiusz Hiler882d1db2017-03-14 15:28:07 +0100228int intel_huc_init_hw(struct intel_huc *huc);
Anusha Srivatsadac84a32017-01-18 08:05:57 -0800229void intel_guc_auth_huc(struct drm_i915_private *dev_priv);
Anusha Srivatsabd1328582017-01-18 08:05:53 -0800230
Alex Dai33a732f2015-08-12 15:43:36 +0100231#endif