xref: /openbmc/linux/drivers/gpu/drm/i915/gt/uc/intel_guc.h (revision bfad37c5)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2014-2019 Intel Corporation
4  */
5 
6 #ifndef _INTEL_GUC_H_
7 #define _INTEL_GUC_H_
8 
9 #include <linux/xarray.h>
10 #include <linux/delay.h>
11 
12 #include "intel_uncore.h"
13 #include "intel_guc_fw.h"
14 #include "intel_guc_fwif.h"
15 #include "intel_guc_ct.h"
16 #include "intel_guc_log.h"
17 #include "intel_guc_reg.h"
18 #include "intel_guc_slpc_types.h"
19 #include "intel_uc_fw.h"
20 #include "i915_utils.h"
21 #include "i915_vma.h"
22 
23 struct __guc_ads_blob;
24 
25 /*
26  * Top level structure of GuC. It handles firmware loading and manages client
27  * pool. intel_guc owns a intel_guc_client to replace the legacy ExecList
28  * submission.
29  */
30 struct intel_guc {
31 	struct intel_uc_fw fw;
32 	struct intel_guc_log log;
33 	struct intel_guc_ct ct;
34 	struct intel_guc_slpc slpc;
35 
36 	/* Global engine used to submit requests to GuC */
37 	struct i915_sched_engine *sched_engine;
38 	struct i915_request *stalled_request;
39 
40 	/* intel_guc_recv interrupt related state */
41 	spinlock_t irq_lock;
42 	unsigned int msg_enabled_mask;
43 
44 	atomic_t outstanding_submission_g2h;
45 
46 	struct {
47 		void (*reset)(struct intel_guc *guc);
48 		void (*enable)(struct intel_guc *guc);
49 		void (*disable)(struct intel_guc *guc);
50 	} interrupts;
51 
52 	/*
53 	 * contexts_lock protects the pool of free guc ids and a linked list of
54 	 * guc ids available to be stolen
55 	 */
56 	spinlock_t contexts_lock;
57 	struct ida guc_ids;
58 	struct list_head guc_id_list;
59 
60 	bool submission_supported;
61 	bool submission_selected;
62 	bool rc_supported;
63 	bool rc_selected;
64 
65 	struct i915_vma *ads_vma;
66 	struct __guc_ads_blob *ads_blob;
67 	u32 ads_regset_size;
68 	u32 ads_golden_ctxt_size;
69 
70 	struct i915_vma *lrc_desc_pool;
71 	void *lrc_desc_pool_vaddr;
72 
73 	/* guc_id to intel_context lookup */
74 	struct xarray context_lookup;
75 
76 	/* Control params for fw initialization */
77 	u32 params[GUC_CTL_MAX_DWORDS];
78 
79 	/* GuC's FW specific registers used in MMIO send */
80 	struct {
81 		u32 base;
82 		unsigned int count;
83 		enum forcewake_domains fw_domains;
84 	} send_regs;
85 
86 	/* register used to send interrupts to the GuC FW */
87 	i915_reg_t notify_reg;
88 
89 	/* Store msg (e.g. log flush) that we see while CTBs are disabled */
90 	u32 mmio_msg;
91 
92 	/* To serialize the intel_guc_send actions */
93 	struct mutex send_mutex;
94 };
95 
96 static inline struct intel_guc *log_to_guc(struct intel_guc_log *log)
97 {
98 	return container_of(log, struct intel_guc, log);
99 }
100 
101 static
102 inline int intel_guc_send(struct intel_guc *guc, const u32 *action, u32 len)
103 {
104 	return intel_guc_ct_send(&guc->ct, action, len, NULL, 0, 0);
105 }
106 
107 static
108 inline int intel_guc_send_nb(struct intel_guc *guc, const u32 *action, u32 len,
109 			     u32 g2h_len_dw)
110 {
111 	return intel_guc_ct_send(&guc->ct, action, len, NULL, 0,
112 				 MAKE_SEND_FLAGS(g2h_len_dw));
113 }
114 
115 static inline int
116 intel_guc_send_and_receive(struct intel_guc *guc, const u32 *action, u32 len,
117 			   u32 *response_buf, u32 response_buf_size)
118 {
119 	return intel_guc_ct_send(&guc->ct, action, len,
120 				 response_buf, response_buf_size, 0);
121 }
122 
123 static inline int intel_guc_send_busy_loop(struct intel_guc *guc,
124 					   const u32 *action,
125 					   u32 len,
126 					   u32 g2h_len_dw,
127 					   bool loop)
128 {
129 	int err;
130 	unsigned int sleep_period_ms = 1;
131 	bool not_atomic = !in_atomic() && !irqs_disabled();
132 
133 	/*
134 	 * FIXME: Have caller pass in if we are in an atomic context to avoid
135 	 * using in_atomic(). It is likely safe here as we check for irqs
136 	 * disabled which basically all the spin locks in the i915 do but
137 	 * regardless this should be cleaned up.
138 	 */
139 
140 	/* No sleeping with spin locks, just busy loop */
141 	might_sleep_if(loop && not_atomic);
142 
143 retry:
144 	err = intel_guc_send_nb(guc, action, len, g2h_len_dw);
145 	if (unlikely(err == -EBUSY && loop)) {
146 		if (likely(not_atomic)) {
147 			if (msleep_interruptible(sleep_period_ms))
148 				return -EINTR;
149 			sleep_period_ms = sleep_period_ms << 1;
150 		} else {
151 			cpu_relax();
152 		}
153 		goto retry;
154 	}
155 
156 	return err;
157 }
158 
159 static inline void intel_guc_to_host_event_handler(struct intel_guc *guc)
160 {
161 	intel_guc_ct_event_handler(&guc->ct);
162 }
163 
164 /* GuC addresses above GUC_GGTT_TOP also don't map through the GTT */
165 #define GUC_GGTT_TOP	0xFEE00000
166 
167 /**
168  * intel_guc_ggtt_offset() - Get and validate the GGTT offset of @vma
169  * @guc: intel_guc structure.
170  * @vma: i915 graphics virtual memory area.
171  *
172  * GuC does not allow any gfx GGTT address that falls into range
173  * [0, ggtt.pin_bias), which is reserved for Boot ROM, SRAM and WOPCM.
174  * Currently, in order to exclude [0, ggtt.pin_bias) address space from
175  * GGTT, all gfx objects used by GuC are allocated with intel_guc_allocate_vma()
176  * and pinned with PIN_OFFSET_BIAS along with the value of ggtt.pin_bias.
177  *
178  * Return: GGTT offset of the @vma.
179  */
180 static inline u32 intel_guc_ggtt_offset(struct intel_guc *guc,
181 					struct i915_vma *vma)
182 {
183 	u32 offset = i915_ggtt_offset(vma);
184 
185 	GEM_BUG_ON(offset < i915_ggtt_pin_bias(vma));
186 	GEM_BUG_ON(range_overflows_t(u64, offset, vma->size, GUC_GGTT_TOP));
187 
188 	return offset;
189 }
190 
191 void intel_guc_init_early(struct intel_guc *guc);
192 void intel_guc_init_late(struct intel_guc *guc);
193 void intel_guc_init_send_regs(struct intel_guc *guc);
194 void intel_guc_write_params(struct intel_guc *guc);
195 int intel_guc_init(struct intel_guc *guc);
196 void intel_guc_fini(struct intel_guc *guc);
197 void intel_guc_notify(struct intel_guc *guc);
198 int intel_guc_send_mmio(struct intel_guc *guc, const u32 *action, u32 len,
199 			u32 *response_buf, u32 response_buf_size);
200 int intel_guc_to_host_process_recv_msg(struct intel_guc *guc,
201 				       const u32 *payload, u32 len);
202 int intel_guc_auth_huc(struct intel_guc *guc, u32 rsa_offset);
203 int intel_guc_suspend(struct intel_guc *guc);
204 int intel_guc_resume(struct intel_guc *guc);
205 struct i915_vma *intel_guc_allocate_vma(struct intel_guc *guc, u32 size);
206 int intel_guc_allocate_and_map_vma(struct intel_guc *guc, u32 size,
207 				   struct i915_vma **out_vma, void **out_vaddr);
208 
209 static inline bool intel_guc_is_supported(struct intel_guc *guc)
210 {
211 	return intel_uc_fw_is_supported(&guc->fw);
212 }
213 
214 static inline bool intel_guc_is_wanted(struct intel_guc *guc)
215 {
216 	return intel_uc_fw_is_enabled(&guc->fw);
217 }
218 
219 static inline bool intel_guc_is_used(struct intel_guc *guc)
220 {
221 	GEM_BUG_ON(__intel_uc_fw_status(&guc->fw) == INTEL_UC_FIRMWARE_SELECTED);
222 	return intel_uc_fw_is_available(&guc->fw);
223 }
224 
225 static inline bool intel_guc_is_fw_running(struct intel_guc *guc)
226 {
227 	return intel_uc_fw_is_running(&guc->fw);
228 }
229 
230 static inline bool intel_guc_is_ready(struct intel_guc *guc)
231 {
232 	return intel_guc_is_fw_running(guc) && intel_guc_ct_enabled(&guc->ct);
233 }
234 
235 static inline void intel_guc_reset_interrupts(struct intel_guc *guc)
236 {
237 	guc->interrupts.reset(guc);
238 }
239 
240 static inline void intel_guc_enable_interrupts(struct intel_guc *guc)
241 {
242 	guc->interrupts.enable(guc);
243 }
244 
245 static inline void intel_guc_disable_interrupts(struct intel_guc *guc)
246 {
247 	guc->interrupts.disable(guc);
248 }
249 
250 static inline int intel_guc_sanitize(struct intel_guc *guc)
251 {
252 	intel_uc_fw_sanitize(&guc->fw);
253 	intel_guc_disable_interrupts(guc);
254 	intel_guc_ct_sanitize(&guc->ct);
255 	guc->mmio_msg = 0;
256 
257 	return 0;
258 }
259 
260 static inline void intel_guc_enable_msg(struct intel_guc *guc, u32 mask)
261 {
262 	spin_lock_irq(&guc->irq_lock);
263 	guc->msg_enabled_mask |= mask;
264 	spin_unlock_irq(&guc->irq_lock);
265 }
266 
267 static inline void intel_guc_disable_msg(struct intel_guc *guc, u32 mask)
268 {
269 	spin_lock_irq(&guc->irq_lock);
270 	guc->msg_enabled_mask &= ~mask;
271 	spin_unlock_irq(&guc->irq_lock);
272 }
273 
274 int intel_guc_wait_for_idle(struct intel_guc *guc, long timeout);
275 
276 int intel_guc_deregister_done_process_msg(struct intel_guc *guc,
277 					  const u32 *msg, u32 len);
278 int intel_guc_sched_done_process_msg(struct intel_guc *guc,
279 				     const u32 *msg, u32 len);
280 int intel_guc_context_reset_process_msg(struct intel_guc *guc,
281 					const u32 *msg, u32 len);
282 int intel_guc_engine_failure_process_msg(struct intel_guc *guc,
283 					 const u32 *msg, u32 len);
284 
285 void intel_guc_find_hung_context(struct intel_engine_cs *engine);
286 
287 int intel_guc_global_policies_update(struct intel_guc *guc);
288 
289 void intel_guc_context_ban(struct intel_context *ce, struct i915_request *rq);
290 
291 void intel_guc_submission_reset_prepare(struct intel_guc *guc);
292 void intel_guc_submission_reset(struct intel_guc *guc, bool stalled);
293 void intel_guc_submission_reset_finish(struct intel_guc *guc);
294 void intel_guc_submission_cancel_requests(struct intel_guc *guc);
295 
296 void intel_guc_load_status(struct intel_guc *guc, struct drm_printer *p);
297 
298 #endif
299