blob: eaedd63e3819da61bace6c84c7c798db08e7ae08 [file] [log] [blame]
Michal Wajdeczkof9cda042017-01-13 17:41:57 +00001/*
2 * Copyright © 2014-2017 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 */
Michal Wajdeczkod62e2bf2017-10-04 18:13:39 +000024
Michal Wajdeczkof9cda042017-01-13 17:41:57 +000025#include <linux/debugfs.h>
26#include <linux/relay.h>
Michal Wajdeczkod62e2bf2017-10-04 18:13:39 +000027
28#include "intel_guc_log.h"
Michal Wajdeczkof9cda042017-01-13 17:41:57 +000029#include "i915_drv.h"
30
31static void guc_log_capture_logs(struct intel_guc *guc);
32
33/**
34 * DOC: GuC firmware log
35 *
36 * Firmware log is enabled by setting i915.guc_log_level to non-negative level.
37 * Log data is printed out via reading debugfs i915_guc_log_dump. Reading from
38 * i915_guc_load_status will print out firmware loading status and scratch
39 * registers value.
40 *
41 */
42
43static int guc_log_flush_complete(struct intel_guc *guc)
44{
45 u32 action[] = {
46 INTEL_GUC_ACTION_LOG_BUFFER_FILE_FLUSH_COMPLETE
47 };
48
49 return intel_guc_send(guc, action, ARRAY_SIZE(action));
50}
51
52static int guc_log_flush(struct intel_guc *guc)
53{
54 u32 action[] = {
55 INTEL_GUC_ACTION_FORCE_LOG_BUFFER_FLUSH,
56 0
57 };
58
59 return intel_guc_send(guc, action, ARRAY_SIZE(action));
60}
61
62static int guc_log_control(struct intel_guc *guc, u32 control_val)
63{
64 u32 action[] = {
65 INTEL_GUC_ACTION_UK_LOG_ENABLE_LOGGING,
66 control_val
67 };
68
69 return intel_guc_send(guc, action, ARRAY_SIZE(action));
70}
71
Michal Wajdeczkof9cda042017-01-13 17:41:57 +000072/*
73 * Sub buffer switch callback. Called whenever relay has to switch to a new
74 * sub buffer, relay stays on the same sub buffer if 0 is returned.
75 */
76static int subbuf_start_callback(struct rchan_buf *buf,
77 void *subbuf,
78 void *prev_subbuf,
79 size_t prev_padding)
80{
81 /* Use no-overwrite mode by default, where relay will stop accepting
82 * new data if there are no empty sub buffers left.
83 * There is no strict synchronization enforced by relay between Consumer
84 * and Producer. In overwrite mode, there is a possibility of getting
85 * inconsistent/garbled data, the producer could be writing on to the
86 * same sub buffer from which Consumer is reading. This can't be avoided
87 * unless Consumer is fast enough and can always run in tandem with
88 * Producer.
89 */
90 if (relay_buf_full(buf))
91 return 0;
92
93 return 1;
94}
95
96/*
97 * file_create() callback. Creates relay file in debugfs.
98 */
99static struct dentry *create_buf_file_callback(const char *filename,
100 struct dentry *parent,
101 umode_t mode,
102 struct rchan_buf *buf,
103 int *is_global)
104{
105 struct dentry *buf_file;
106
107 /* This to enable the use of a single buffer for the relay channel and
108 * correspondingly have a single file exposed to User, through which
109 * it can collect the logs in order without any post-processing.
110 * Need to set 'is_global' even if parent is NULL for early logging.
111 */
112 *is_global = 1;
113
114 if (!parent)
115 return NULL;
116
117 /* Not using the channel filename passed as an argument, since for each
118 * channel relay appends the corresponding CPU number to the filename
119 * passed in relay_open(). This should be fine as relay just needs a
120 * dentry of the file associated with the channel buffer and that file's
121 * name need not be same as the filename passed as an argument.
122 */
123 buf_file = debugfs_create_file("guc_log", mode,
124 parent, buf, &relay_file_operations);
125 return buf_file;
126}
127
128/*
129 * file_remove() default callback. Removes relay file in debugfs.
130 */
131static int remove_buf_file_callback(struct dentry *dentry)
132{
133 debugfs_remove(dentry);
134 return 0;
135}
136
137/* relay channel callbacks */
138static struct rchan_callbacks relay_callbacks = {
139 .subbuf_start = subbuf_start_callback,
140 .create_buf_file = create_buf_file_callback,
141 .remove_buf_file = remove_buf_file_callback,
142};
143
Oscar Mateo3950bf32017-03-22 10:39:46 -0700144static int guc_log_relay_file_create(struct intel_guc *guc)
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000145{
146 struct drm_i915_private *dev_priv = guc_to_i915(guc);
147 struct dentry *log_dir;
148 int ret;
149
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000150 if (i915_modparams.guc_log_level < 0)
Oscar Mateo3950bf32017-03-22 10:39:46 -0700151 return 0;
152
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000153 /* For now create the log file in /sys/kernel/debug/dri/0 dir */
154 log_dir = dev_priv->drm.primary->debugfs_root;
155
156 /* If /sys/kernel/debug/dri/0 location do not exist, then debugfs is
157 * not mounted and so can't create the relay file.
158 * The relay API seems to fit well with debugfs only, for availing relay
159 * there are 3 requirements which can be met for debugfs file only in a
160 * straightforward/clean manner :-
161 * i) Need the associated dentry pointer of the file, while opening the
162 * relay channel.
163 * ii) Should be able to use 'relay_file_operations' fops for the file.
164 * iii) Set the 'i_private' field of file's inode to the pointer of
165 * relay channel buffer.
166 */
167 if (!log_dir) {
168 DRM_ERROR("Debugfs dir not available yet for GuC log file\n");
169 return -ENODEV;
170 }
171
Oscar Mateoe7465472017-03-22 10:39:48 -0700172 ret = relay_late_setup_files(guc->log.runtime.relay_chan, "guc_log", log_dir);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700173 if (ret < 0 && ret != -EEXIST) {
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000174 DRM_ERROR("Couldn't associate relay chan with file %d\n", ret);
175 return ret;
176 }
177
178 return 0;
179}
180
181static void guc_move_to_next_buf(struct intel_guc *guc)
182{
183 /* Make sure the updates made in the sub buffer are visible when
184 * Consumer sees the following update to offset inside the sub buffer.
185 */
186 smp_wmb();
187
188 /* All data has been written, so now move the offset of sub buffer. */
Oscar Mateoe7465472017-03-22 10:39:48 -0700189 relay_reserve(guc->log.runtime.relay_chan, guc->log.vma->obj->base.size);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000190
191 /* Switch to the next sub buffer */
Oscar Mateoe7465472017-03-22 10:39:48 -0700192 relay_flush(guc->log.runtime.relay_chan);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000193}
194
195static void *guc_get_write_buffer(struct intel_guc *guc)
196{
Oscar Mateoe7465472017-03-22 10:39:48 -0700197 if (!guc->log.runtime.relay_chan)
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000198 return NULL;
199
200 /* Just get the base address of a new sub buffer and copy data into it
201 * ourselves. NULL will be returned in no-overwrite mode, if all sub
202 * buffers are full. Could have used the relay_write() to indirectly
203 * copy the data, but that would have been bit convoluted, as we need to
204 * write to only certain locations inside a sub buffer which cannot be
205 * done without using relay_reserve() along with relay_write(). So its
206 * better to use relay_reserve() alone.
207 */
Oscar Mateoe7465472017-03-22 10:39:48 -0700208 return relay_reserve(guc->log.runtime.relay_chan, 0);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000209}
210
211static bool guc_check_log_buf_overflow(struct intel_guc *guc,
212 enum guc_log_buffer_type type,
213 unsigned int full_cnt)
214{
215 unsigned int prev_full_cnt = guc->log.prev_overflow_count[type];
216 bool overflow = false;
217
218 if (full_cnt != prev_full_cnt) {
219 overflow = true;
220
221 guc->log.prev_overflow_count[type] = full_cnt;
222 guc->log.total_overflow_count[type] += full_cnt - prev_full_cnt;
223
224 if (full_cnt < prev_full_cnt) {
225 /* buffer_full_cnt is a 4 bit counter */
226 guc->log.total_overflow_count[type] += 16;
227 }
228 DRM_ERROR_RATELIMITED("GuC log buffer overflow\n");
229 }
230
231 return overflow;
232}
233
234static unsigned int guc_get_log_buffer_size(enum guc_log_buffer_type type)
235{
236 switch (type) {
237 case GUC_ISR_LOG_BUFFER:
238 return (GUC_LOG_ISR_PAGES + 1) * PAGE_SIZE;
239 case GUC_DPC_LOG_BUFFER:
240 return (GUC_LOG_DPC_PAGES + 1) * PAGE_SIZE;
241 case GUC_CRASH_DUMP_LOG_BUFFER:
242 return (GUC_LOG_CRASH_PAGES + 1) * PAGE_SIZE;
243 default:
244 MISSING_CASE(type);
245 }
246
247 return 0;
248}
249
250static void guc_read_update_log_buffer(struct intel_guc *guc)
251{
252 unsigned int buffer_size, read_offset, write_offset, bytes_to_copy, full_cnt;
253 struct guc_log_buffer_state *log_buf_state, *log_buf_snapshot_state;
254 struct guc_log_buffer_state log_buf_state_local;
255 enum guc_log_buffer_type type;
256 void *src_data, *dst_data;
257 bool new_overflow;
258
Oscar Mateoe7465472017-03-22 10:39:48 -0700259 if (WARN_ON(!guc->log.runtime.buf_addr))
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000260 return;
261
262 /* Get the pointer to shared GuC log buffer */
Oscar Mateoe7465472017-03-22 10:39:48 -0700263 log_buf_state = src_data = guc->log.runtime.buf_addr;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000264
265 /* Get the pointer to local buffer to store the logs */
266 log_buf_snapshot_state = dst_data = guc_get_write_buffer(guc);
267
268 /* Actual logs are present from the 2nd page */
269 src_data += PAGE_SIZE;
270 dst_data += PAGE_SIZE;
271
272 for (type = GUC_ISR_LOG_BUFFER; type < GUC_MAX_LOG_BUFFER; type++) {
273 /* Make a copy of the state structure, inside GuC log buffer
274 * (which is uncached mapped), on the stack to avoid reading
275 * from it multiple times.
276 */
277 memcpy(&log_buf_state_local, log_buf_state,
278 sizeof(struct guc_log_buffer_state));
279 buffer_size = guc_get_log_buffer_size(type);
280 read_offset = log_buf_state_local.read_ptr;
281 write_offset = log_buf_state_local.sampled_write_ptr;
282 full_cnt = log_buf_state_local.buffer_full_cnt;
283
284 /* Bookkeeping stuff */
285 guc->log.flush_count[type] += log_buf_state_local.flush_to_file;
286 new_overflow = guc_check_log_buf_overflow(guc, type, full_cnt);
287
288 /* Update the state of shared log buffer */
289 log_buf_state->read_ptr = write_offset;
290 log_buf_state->flush_to_file = 0;
291 log_buf_state++;
292
293 if (unlikely(!log_buf_snapshot_state))
294 continue;
295
296 /* First copy the state structure in snapshot buffer */
297 memcpy(log_buf_snapshot_state, &log_buf_state_local,
298 sizeof(struct guc_log_buffer_state));
299
300 /* The write pointer could have been updated by GuC firmware,
301 * after sending the flush interrupt to Host, for consistency
302 * set write pointer value to same value of sampled_write_ptr
303 * in the snapshot buffer.
304 */
305 log_buf_snapshot_state->write_ptr = write_offset;
306 log_buf_snapshot_state++;
307
308 /* Now copy the actual logs. */
309 if (unlikely(new_overflow)) {
310 /* copy the whole buffer in case of overflow */
311 read_offset = 0;
312 write_offset = buffer_size;
313 } else if (unlikely((read_offset > buffer_size) ||
314 (write_offset > buffer_size))) {
315 DRM_ERROR("invalid log buffer state\n");
316 /* copy whole buffer as offsets are unreliable */
317 read_offset = 0;
318 write_offset = buffer_size;
319 }
320
321 /* Just copy the newly written data */
322 if (read_offset > write_offset) {
323 i915_memcpy_from_wc(dst_data, src_data, write_offset);
324 bytes_to_copy = buffer_size - read_offset;
325 } else {
326 bytes_to_copy = write_offset - read_offset;
327 }
328 i915_memcpy_from_wc(dst_data + read_offset,
329 src_data + read_offset, bytes_to_copy);
330
331 src_data += buffer_size;
332 dst_data += buffer_size;
333 }
334
335 if (log_buf_snapshot_state)
336 guc_move_to_next_buf(guc);
337 else {
338 /* Used rate limited to avoid deluge of messages, logs might be
339 * getting consumed by User at a slow rate.
340 */
341 DRM_ERROR_RATELIMITED("no sub-buffer to capture logs\n");
342 guc->log.capture_miss_count++;
343 }
344}
345
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000346static void capture_logs_work(struct work_struct *work)
347{
348 struct intel_guc *guc =
Oscar Mateoe7465472017-03-22 10:39:48 -0700349 container_of(work, struct intel_guc, log.runtime.flush_work);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000350
351 guc_log_capture_logs(guc);
352}
353
Oscar Mateoe7465472017-03-22 10:39:48 -0700354static bool guc_log_has_runtime(struct intel_guc *guc)
Oscar Mateo3950bf32017-03-22 10:39:46 -0700355{
Oscar Mateoe7465472017-03-22 10:39:48 -0700356 return guc->log.runtime.buf_addr != NULL;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700357}
358
Oscar Mateoe7465472017-03-22 10:39:48 -0700359static int guc_log_runtime_create(struct intel_guc *guc)
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000360{
361 struct drm_i915_private *dev_priv = guc_to_i915(guc);
362 void *vaddr;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700363 struct rchan *guc_log_relay_chan;
364 size_t n_subbufs, subbuf_size;
Chris Wilsone22d8e32017-04-12 12:01:11 +0100365 int ret;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000366
367 lockdep_assert_held(&dev_priv->drm.struct_mutex);
368
Oscar Mateoe7465472017-03-22 10:39:48 -0700369 GEM_BUG_ON(guc_log_has_runtime(guc));
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000370
Chris Wilsone22d8e32017-04-12 12:01:11 +0100371 ret = i915_gem_object_set_to_wc_domain(guc->log.vma->obj, true);
372 if (ret)
373 return ret;
374
Oscar Mateo3950bf32017-03-22 10:39:46 -0700375 /* Create a WC (Uncached for read) vmalloc mapping of log
376 * buffer pages, so that we can directly get the data
377 * (up-to-date) from memory.
378 */
379 vaddr = i915_gem_object_pin_map(guc->log.vma->obj, I915_MAP_WC);
380 if (IS_ERR(vaddr)) {
381 DRM_ERROR("Couldn't map log buffer pages %d\n", ret);
382 return PTR_ERR(vaddr);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000383 }
384
Oscar Mateoe7465472017-03-22 10:39:48 -0700385 guc->log.runtime.buf_addr = vaddr;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700386
387 /* Keep the size of sub buffers same as shared log buffer */
388 subbuf_size = guc->log.vma->obj->base.size;
389
390 /* Store up to 8 snapshots, which is large enough to buffer sufficient
391 * boot time logs and provides enough leeway to User, in terms of
392 * latency, for consuming the logs from relay. Also doesn't take
393 * up too much memory.
394 */
395 n_subbufs = 8;
396
397 /* Create a relay channel, so that we have buffers for storing
398 * the GuC firmware logs, the channel will be linked with a file
399 * later on when debugfs is registered.
400 */
401 guc_log_relay_chan = relay_open(NULL, NULL, subbuf_size,
402 n_subbufs, &relay_callbacks, dev_priv);
403 if (!guc_log_relay_chan) {
404 DRM_ERROR("Couldn't create relay chan for GuC logging\n");
405
406 ret = -ENOMEM;
407 goto err_vaddr;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000408 }
409
Oscar Mateo3950bf32017-03-22 10:39:46 -0700410 GEM_BUG_ON(guc_log_relay_chan->subbuf_size < subbuf_size);
Oscar Mateoe7465472017-03-22 10:39:48 -0700411 guc->log.runtime.relay_chan = guc_log_relay_chan;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700412
Oscar Mateoe7465472017-03-22 10:39:48 -0700413 INIT_WORK(&guc->log.runtime.flush_work, capture_logs_work);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000414 return 0;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700415
Oscar Mateo3950bf32017-03-22 10:39:46 -0700416err_vaddr:
417 i915_gem_object_unpin_map(guc->log.vma->obj);
Oscar Mateoe7465472017-03-22 10:39:48 -0700418 guc->log.runtime.buf_addr = NULL;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700419 return ret;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000420}
421
Oscar Mateoe7465472017-03-22 10:39:48 -0700422static void guc_log_runtime_destroy(struct intel_guc *guc)
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000423{
Oscar Mateo3950bf32017-03-22 10:39:46 -0700424 /*
Oscar Mateoe7465472017-03-22 10:39:48 -0700425 * It's possible that the runtime stuff was never allocated because
426 * guc_log_level was < 0 at the time
Oscar Mateo3950bf32017-03-22 10:39:46 -0700427 **/
Oscar Mateoe7465472017-03-22 10:39:48 -0700428 if (!guc_log_has_runtime(guc))
Oscar Mateo3950bf32017-03-22 10:39:46 -0700429 return;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000430
Oscar Mateoe7465472017-03-22 10:39:48 -0700431 relay_close(guc->log.runtime.relay_chan);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700432 i915_gem_object_unpin_map(guc->log.vma->obj);
Oscar Mateoe7465472017-03-22 10:39:48 -0700433 guc->log.runtime.buf_addr = NULL;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000434}
435
436static int guc_log_late_setup(struct intel_guc *guc)
437{
438 struct drm_i915_private *dev_priv = guc_to_i915(guc);
439 int ret;
440
441 lockdep_assert_held(&dev_priv->drm.struct_mutex);
442
Oscar Mateoe7465472017-03-22 10:39:48 -0700443 if (!guc_log_has_runtime(guc)) {
Oscar Mateo3950bf32017-03-22 10:39:46 -0700444 /* If log_level was set as -1 at boot time, then setup needed to
445 * handle log buffer flush interrupts would not have been done yet,
446 * so do that now.
447 */
Oscar Mateoe7465472017-03-22 10:39:48 -0700448 ret = guc_log_runtime_create(guc);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700449 if (ret)
450 goto err;
451 }
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000452
Oscar Mateo3950bf32017-03-22 10:39:46 -0700453 ret = guc_log_relay_file_create(guc);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000454 if (ret)
Oscar Mateoe7465472017-03-22 10:39:48 -0700455 goto err_runtime;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000456
457 return 0;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700458
Oscar Mateoe7465472017-03-22 10:39:48 -0700459err_runtime:
460 guc_log_runtime_destroy(guc);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000461err:
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000462 /* logging will remain off */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000463 i915_modparams.guc_log_level = -1;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000464 return ret;
465}
466
467static void guc_log_capture_logs(struct intel_guc *guc)
468{
469 struct drm_i915_private *dev_priv = guc_to_i915(guc);
470
471 guc_read_update_log_buffer(guc);
472
473 /* Generally device is expected to be active only at this
474 * time, so get/put should be really quick.
475 */
476 intel_runtime_pm_get(dev_priv);
477 guc_log_flush_complete(guc);
478 intel_runtime_pm_put(dev_priv);
479}
480
481static void guc_flush_logs(struct intel_guc *guc)
482{
483 struct drm_i915_private *dev_priv = guc_to_i915(guc);
484
Michal Wajdeczko93ffbe82017-12-06 13:53:12 +0000485 if (!USES_GUC_SUBMISSION(dev_priv) ||
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000486 (i915_modparams.guc_log_level < 0))
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000487 return;
488
489 /* First disable the interrupts, will be renabled afterwards */
490 gen9_disable_guc_interrupts(dev_priv);
491
492 /* Before initiating the forceful flush, wait for any pending/ongoing
493 * flush to complete otherwise forceful flush may not actually happen.
494 */
Oscar Mateoe7465472017-03-22 10:39:48 -0700495 flush_work(&guc->log.runtime.flush_work);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000496
497 /* Ask GuC to update the log buffer state */
498 guc_log_flush(guc);
499
500 /* GuC would have updated log buffer by now, so capture it */
501 guc_log_capture_logs(guc);
502}
503
Oscar Mateo3950bf32017-03-22 10:39:46 -0700504int intel_guc_log_create(struct intel_guc *guc)
505{
506 struct i915_vma *vma;
507 unsigned long offset;
Joonas Lahtinenfaf65482017-10-06 11:49:40 +0300508 u32 flags;
509 u32 size;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700510 int ret;
511
512 GEM_BUG_ON(guc->log.vma);
513
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000514 if (i915_modparams.guc_log_level > GUC_LOG_VERBOSITY_MAX)
515 i915_modparams.guc_log_level = GUC_LOG_VERBOSITY_MAX;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700516
517 /* The first page is to save log buffer state. Allocate one
518 * extra page for others in case for overlap */
519 size = (1 + GUC_LOG_DPC_PAGES + 1 +
520 GUC_LOG_ISR_PAGES + 1 +
521 GUC_LOG_CRASH_PAGES + 1) << PAGE_SHIFT;
522
523 /* We require SSE 4.1 for fast reads from the GuC log buffer and
524 * it should be present on the chipsets supporting GuC based
525 * submisssions.
526 */
527 if (WARN_ON(!i915_has_memcpy_from_wc())) {
528 ret = -EINVAL;
529 goto err;
530 }
531
532 vma = intel_guc_allocate_vma(guc, size);
533 if (IS_ERR(vma)) {
534 ret = PTR_ERR(vma);
535 goto err;
536 }
537
538 guc->log.vma = vma;
539
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000540 if (i915_modparams.guc_log_level >= 0) {
Oscar Mateoe7465472017-03-22 10:39:48 -0700541 ret = guc_log_runtime_create(guc);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700542 if (ret < 0)
543 goto err_vma;
544 }
545
546 /* each allocated unit is a page */
547 flags = GUC_LOG_VALID | GUC_LOG_NOTIFY_ON_HALF_FULL |
548 (GUC_LOG_DPC_PAGES << GUC_LOG_DPC_SHIFT) |
549 (GUC_LOG_ISR_PAGES << GUC_LOG_ISR_SHIFT) |
550 (GUC_LOG_CRASH_PAGES << GUC_LOG_CRASH_SHIFT);
551
552 offset = guc_ggtt_offset(vma) >> PAGE_SHIFT; /* in pages */
553 guc->log.flags = (offset << GUC_LOG_BUF_ADDR_SHIFT) | flags;
554
555 return 0;
556
557err_vma:
558 i915_vma_unpin_and_release(&guc->log.vma);
559err:
560 /* logging will be off */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000561 i915_modparams.guc_log_level = -1;
Oscar Mateo3950bf32017-03-22 10:39:46 -0700562 return ret;
563}
564
565void intel_guc_log_destroy(struct intel_guc *guc)
566{
Oscar Mateoe7465472017-03-22 10:39:48 -0700567 guc_log_runtime_destroy(guc);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700568 i915_vma_unpin_and_release(&guc->log.vma);
569}
570
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000571int i915_guc_log_control(struct drm_i915_private *dev_priv, u64 control_val)
572{
573 struct intel_guc *guc = &dev_priv->guc;
574
575 union guc_log_control log_param;
576 int ret;
577
578 log_param.value = control_val;
579
580 if (log_param.verbosity < GUC_LOG_VERBOSITY_MIN ||
581 log_param.verbosity > GUC_LOG_VERBOSITY_MAX)
582 return -EINVAL;
583
584 /* This combination doesn't make sense & won't have any effect */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000585 if (!log_param.logging_enabled && (i915_modparams.guc_log_level < 0))
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000586 return 0;
587
588 ret = guc_log_control(guc, log_param.value);
589 if (ret < 0) {
590 DRM_DEBUG_DRIVER("guc_logging_control action failed %d\n", ret);
591 return ret;
592 }
593
Oscar Mateo3950bf32017-03-22 10:39:46 -0700594 if (log_param.logging_enabled) {
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000595 i915_modparams.guc_log_level = log_param.verbosity;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000596
Oscar Mateo3950bf32017-03-22 10:39:46 -0700597 /* If log_level was set as -1 at boot time, then the relay channel file
598 * wouldn't have been created by now and interrupts also would not have
599 * been enabled. Try again now, just in case.
600 */
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000601 ret = guc_log_late_setup(guc);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700602 if (ret < 0) {
603 DRM_DEBUG_DRIVER("GuC log late setup failed %d\n", ret);
604 return ret;
605 }
606
607 /* GuC logging is currently the only user of Guc2Host interrupts */
608 gen9_enable_guc_interrupts(dev_priv);
609 } else {
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000610 /* Once logging is disabled, GuC won't generate logs & send an
611 * interrupt. But there could be some data in the log buffer
612 * which is yet to be captured. So request GuC to update the log
613 * buffer state and then collect the left over logs.
614 */
615 guc_flush_logs(guc);
616
617 /* As logging is disabled, update log level to reflect that */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000618 i915_modparams.guc_log_level = -1;
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000619 }
620
621 return ret;
622}
623
624void i915_guc_log_register(struct drm_i915_private *dev_priv)
625{
Michal Wajdeczko93ffbe82017-12-06 13:53:12 +0000626 if (!USES_GUC_SUBMISSION(dev_priv) ||
Michal Wajdeczko4f044a82017-09-19 19:38:44 +0000627 (i915_modparams.guc_log_level < 0))
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000628 return;
629
630 mutex_lock(&dev_priv->drm.struct_mutex);
631 guc_log_late_setup(&dev_priv->guc);
632 mutex_unlock(&dev_priv->drm.struct_mutex);
633}
634
635void i915_guc_log_unregister(struct drm_i915_private *dev_priv)
636{
Michal Wajdeczko93ffbe82017-12-06 13:53:12 +0000637 if (!USES_GUC_SUBMISSION(dev_priv))
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000638 return;
639
640 mutex_lock(&dev_priv->drm.struct_mutex);
Oscar Mateo3950bf32017-03-22 10:39:46 -0700641 /* GuC logging is currently the only user of Guc2Host interrupts */
642 gen9_disable_guc_interrupts(dev_priv);
Oscar Mateoe7465472017-03-22 10:39:48 -0700643 guc_log_runtime_destroy(&dev_priv->guc);
Michal Wajdeczkof9cda042017-01-13 17:41:57 +0000644 mutex_unlock(&dev_priv->drm.struct_mutex);
645}