]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/gpu/drm/i915/intel_uc.h
drm/i915/guc: Make scratch register base and count flexible
[mirror_ubuntu-artful-kernel.git] / drivers / gpu / drm / i915 / intel_uc.h
CommitLineData
33a732f4
AD
1/*
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 */
8c4f24f9
AH
24#ifndef _INTEL_UC_H_
25#define _INTEL_UC_H_
33a732f4
AD
26
27#include "intel_guc_fwif.h"
28#include "i915_guc_reg.h"
0b63bb14 29#include "intel_ringbuffer.h"
33a732f4 30
4741da92
CW
31#include "i915_vma.h"
32
e73bdd20
CW
33struct drm_i915_gem_request;
34
86e06cc0
DG
35/*
36 * This structure primarily describes the GEM object shared with the GuC.
0d768126
OM
37 * The specs sometimes refer to this object as a "GuC context", but we use
38 * the term "client" to avoid confusion with hardware contexts. This
39 * GEM object is held for the entire lifetime of our interaction with
86e06cc0
DG
40 * the GuC, being allocated before the GuC is loaded with its firmware.
41 * Because there's no way to update the address used by the GuC after
42 * initialisation, the shared object must stay pinned into the GGTT as
43 * long as the GuC is in use. We also keep the first page (only) mapped
44 * into kernel address space, as it includes shared data that must be
45 * updated on every request submission.
46 *
47 * The single GEM object described here is actually made up of several
48 * separate areas, as far as the GuC is concerned. The first page (kept
0d768126 49 * kmap'd) includes the "process descriptor" which holds sequence data for
86e06cc0
DG
50 * the doorbell, and one cacheline which actually *is* the doorbell; a
51 * write to this will "ring the doorbell" (i.e. send an interrupt to the
52 * GuC). The subsequent pages of the client object constitute the work
53 * queue (a circular array of work items), again described in the process
54 * descriptor. Work queue pages are mapped momentarily as required.
55 *
551aaecd
DG
56 * We also keep a few statistics on failures. Ideally, these should all
57 * be zero!
58 * no_wq_space: times that the submission pre-check found no space was
59 * available in the work queue (note, the queue is shared,
60 * not per-engine). It is OK for this to be nonzero, but
61 * it should not be huge!
62 * q_fail: failed to enqueue a work item. This should never happen,
63 * because we check for space beforehand.
64 * b_fail: failed to ring the doorbell. This should never happen, unless
65 * somehow the hardware misbehaves, or maybe if the GuC firmware
66 * crashes? We probably need to reset the GPU to recover.
67 * retcode: errno from last guc_submit()
86e06cc0 68 */
44a28b1d 69struct i915_guc_client {
8b797af1 70 struct i915_vma *vma;
72aa0d89 71 void *vaddr;
e2efd130 72 struct i915_gem_context *owner;
44a28b1d 73 struct intel_guc *guc;
e02757d9
DG
74
75 uint32_t engines; /* bitmap of (host) engine ids */
44a28b1d 76 uint32_t priority;
b09935a6 77 u32 stage_id;
44a28b1d 78 uint32_t proc_desc_offset;
774439e1 79
abddffdf
JL
80 u16 doorbell_id;
81 unsigned long doorbell_offset;
82 u32 doorbell_cookie;
44a28b1d 83
dadd481b 84 spinlock_t wq_lock;
44a28b1d
DG
85 uint32_t wq_offset;
86 uint32_t wq_size;
44a28b1d 87 uint32_t wq_tail;
dadd481b 88 uint32_t wq_rsvd;
551aaecd 89 uint32_t no_wq_space;
44a28b1d
DG
90 uint32_t b_fail;
91 int retcode;
551aaecd
DG
92
93 /* Per-engine counts of GuC submissions */
0b63bb14 94 uint64_t submissions[I915_NUM_ENGINES];
44a28b1d
DG
95};
96
db0a091b
AS
97enum intel_uc_fw_status {
98 INTEL_UC_FIRMWARE_FAIL = -1,
99 INTEL_UC_FIRMWARE_NONE = 0,
100 INTEL_UC_FIRMWARE_PENDING,
101 INTEL_UC_FIRMWARE_SUCCESS
33a732f4
AD
102};
103
4f1cd3eb
MW
104/* User-friendly representation of an enum */
105static inline
106const char *intel_uc_fw_status_repr(enum intel_uc_fw_status status)
107{
108 switch (status) {
109 case INTEL_UC_FIRMWARE_FAIL:
110 return "FAIL";
111 case INTEL_UC_FIRMWARE_NONE:
112 return "NONE";
113 case INTEL_UC_FIRMWARE_PENDING:
114 return "PENDING";
115 case INTEL_UC_FIRMWARE_SUCCESS:
116 return "SUCCESS";
4f1cd3eb 117 }
b9ab1f3f 118 return "<invalid>";
4f1cd3eb
MW
119}
120
fbbad73e
AS
121enum intel_uc_fw_type {
122 INTEL_UC_FW_TYPE_GUC,
123 INTEL_UC_FW_TYPE_HUC
124};
125
5e065f1f
MW
126/* User-friendly representation of an enum */
127static inline const char *intel_uc_fw_type_repr(enum intel_uc_fw_type type)
128{
129 switch (type) {
130 case INTEL_UC_FW_TYPE_GUC:
131 return "GuC";
132 case INTEL_UC_FW_TYPE_HUC:
133 return "HuC";
5e065f1f 134 }
b9ab1f3f 135 return "uC";
5e065f1f
MW
136}
137
33a732f4
AD
138/*
139 * This structure encapsulates all the data needed during the process
140 * of fetching, caching, and loading the firmware image into the GuC.
141 */
db0a091b
AS
142struct intel_uc_fw {
143 const char *path;
144 size_t size;
145 struct drm_i915_gem_object *obj;
146 enum intel_uc_fw_status fetch_status;
147 enum intel_uc_fw_status load_status;
148
149 uint16_t major_ver_wanted;
150 uint16_t minor_ver_wanted;
151 uint16_t major_ver_found;
152 uint16_t minor_ver_found;
feda33ef 153
6833b82e 154 enum intel_uc_fw_type type;
feda33ef
AD
155 uint32_t header_size;
156 uint32_t header_offset;
157 uint32_t rsa_size;
158 uint32_t rsa_offset;
159 uint32_t ucode_size;
160 uint32_t ucode_offset;
33a732f4
AD
161};
162
d6b40b4b
AG
163struct intel_guc_log {
164 uint32_t flags;
165 struct i915_vma *vma;
e7465473
OM
166 /* The runtime stuff gets created only when GuC logging gets enabled */
167 struct {
168 void *buf_addr;
169 struct workqueue_struct *flush_wq;
170 struct work_struct flush_work;
171 struct rchan *relay_chan;
172 } runtime;
5aa1ee4b
AG
173 /* logging related stats */
174 u32 capture_miss_count;
175 u32 flush_interrupt_count;
176 u32 prev_overflow_count[GUC_MAX_LOG_BUFFER];
177 u32 total_overflow_count[GUC_MAX_LOG_BUFFER];
178 u32 flush_count[GUC_MAX_LOG_BUFFER];
d6b40b4b
AG
179};
180
33a732f4 181struct intel_guc {
db0a091b 182 struct intel_uc_fw fw;
d6b40b4b 183 struct intel_guc_log log;
bac427f8 184
a80bc45f 185 /* intel_guc_recv interrupt related state */
26705e20
SAK
186 bool interrupts_enabled;
187
8b797af1 188 struct i915_vma *ads_vma;
b09935a6
OM
189 struct i915_vma *stage_desc_pool;
190 void *stage_desc_pool_vaddr;
191 struct ida stage_ids;
44a28b1d
DG
192
193 struct i915_guc_client *execbuf_client;
194
abddffdf 195 DECLARE_BITMAP(doorbell_bitmap, GUC_NUM_DOORBELLS);
44a28b1d
DG
196 uint32_t db_cacheline; /* Cyclic counter mod pagesize */
197
198 /* Action status & statistics */
199 uint64_t action_count; /* Total commands issued */
200 uint32_t action_cmd; /* Last command word */
201 uint32_t action_status; /* Last return status */
202 uint32_t action_fail; /* Total number of failures */
203 int32_t action_err; /* Last error code */
204
0b63bb14
DG
205 uint64_t submissions[I915_NUM_ENGINES];
206 uint32_t last_seqno[I915_NUM_ENGINES];
5dd7989b 207
a0c1fe21
MW
208 /* GuC's FW specific registers used in MMIO send */
209 struct {
210 u32 base;
211 unsigned int count;
212 enum forcewake_domains fw_domains;
213 } send_regs;
214
a80bc45f
AH
215 /* To serialize the intel_guc_send actions */
216 struct mutex send_mutex;
5e7cd37d
OM
217
218 /* GuC's FW specific send function */
219 int (*send)(struct intel_guc *guc, const u32 *data, u32 len);
a03aac44
MW
220
221 /* GuC's FW specific notify function */
222 void (*notify)(struct intel_guc *guc);
33a732f4
AD
223};
224
bd132858
AS
225struct intel_huc {
226 /* Generic uC firmware management */
227 struct intel_uc_fw fw;
228
229 /* HuC-specific additions */
230};
231
2d803c2d 232/* intel_uc.c */
d2be9f2f 233void intel_uc_sanitize_options(struct drm_i915_private *dev_priv);
413e8fdb 234void intel_uc_init_early(struct drm_i915_private *dev_priv);
29ad6a30 235void intel_uc_init_fw(struct drm_i915_private *dev_priv);
3950bf3d 236void intel_uc_fini_fw(struct drm_i915_private *dev_priv);
6cd5a72c 237int intel_uc_init_hw(struct drm_i915_private *dev_priv);
3950bf3d 238void intel_uc_fini_hw(struct drm_i915_private *dev_priv);
2d803c2d 239int intel_guc_sample_forcewake(struct intel_guc *guc);
789a6251 240int intel_guc_send_nop(struct intel_guc *guc, const u32 *action, u32 len);
5e7cd37d 241int intel_guc_send_mmio(struct intel_guc *guc, const u32 *action, u32 len);
a03aac44 242
5e7cd37d
OM
243static inline int intel_guc_send(struct intel_guc *guc, const u32 *action, u32 len)
244{
245 return guc->send(guc, action, len);
246}
2d803c2d 247
a03aac44
MW
248static inline void intel_guc_notify(struct intel_guc *guc)
249{
250 guc->notify(guc);
251}
252
33a732f4 253/* intel_guc_loader.c */
b551f610 254int intel_guc_select_fw(struct intel_guc *guc);
882d1db0 255int intel_guc_init_hw(struct intel_guc *guc);
0417a2b3
AH
256int intel_guc_suspend(struct drm_i915_private *dev_priv);
257int intel_guc_resume(struct drm_i915_private *dev_priv);
db0a091b 258u32 intel_guc_wopcm_size(struct drm_i915_private *dev_priv);
33a732f4 259
bac427f8 260/* i915_guc_submission.c */
beffa517
DG
261int i915_guc_submission_init(struct drm_i915_private *dev_priv);
262int i915_guc_submission_enable(struct drm_i915_private *dev_priv);
7a9347f9 263int i915_guc_wq_reserve(struct drm_i915_gem_request *rq);
5ba89908 264void i915_guc_wq_unreserve(struct drm_i915_gem_request *request);
beffa517
DG
265void i915_guc_submission_disable(struct drm_i915_private *dev_priv);
266void i915_guc_submission_fini(struct drm_i915_private *dev_priv);
f9cda048
MW
267struct i915_vma *intel_guc_allocate_vma(struct intel_guc *guc, u32 size);
268
269/* intel_guc_log.c */
3950bf3d
OM
270int intel_guc_log_create(struct intel_guc *guc);
271void intel_guc_log_destroy(struct intel_guc *guc);
272int i915_guc_log_control(struct drm_i915_private *dev_priv, u64 control_val);
f9cda048
MW
273void i915_guc_log_register(struct drm_i915_private *dev_priv);
274void i915_guc_log_unregister(struct drm_i915_private *dev_priv);
bac427f8 275
4741da92
CW
276static inline u32 guc_ggtt_offset(struct i915_vma *vma)
277{
278 u32 offset = i915_ggtt_offset(vma);
279 GEM_BUG_ON(offset < GUC_WOPCM_TOP);
db9309a5 280 GEM_BUG_ON(range_overflows_t(u64, offset, vma->size, GUC_GGTT_TOP));
4741da92
CW
281 return offset;
282}
283
bd132858 284/* intel_huc.c */
b551f610 285void intel_huc_select_fw(struct intel_huc *huc);
01a9ca0b 286void intel_huc_init_hw(struct intel_huc *huc);
dac84a38 287void intel_guc_auth_huc(struct drm_i915_private *dev_priv);
bd132858 288
33a732f4 289#endif