Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2013 Red Hat
4 * Author: Rob Clark <robdclark@gmail.com>
5 */
6
7#include "msm_gpu.h"
8#include "msm_gem.h"
9#include "msm_mmu.h"
10#include "msm_fence.h"
11#include "msm_gpu_trace.h"
12#include "adreno/adreno_gpu.h"
13
14#include <generated/utsrelease.h>
15#include <linux/string_helpers.h>
16#include <linux/pm_opp.h>
17#include <linux/devfreq.h>
18#include <linux/devcoredump.h>
19
20/*
21 * Power Management:
22 */
23
24static int msm_devfreq_target(struct device *dev, unsigned long *freq,
25 u32 flags)
26{
27 struct msm_gpu *gpu = platform_get_drvdata(to_platform_device(dev));
28 struct dev_pm_opp *opp;
29
30 opp = devfreq_recommended_opp(dev, freq, flags);
31
32 if (IS_ERR(opp))
33 return PTR_ERR(opp);
34
35 if (gpu->funcs->gpu_set_freq)
36 gpu->funcs->gpu_set_freq(gpu, (u64)*freq);
37 else
38 clk_set_rate(gpu->core_clk, *freq);
39
40 dev_pm_opp_put(opp);
41
42 return 0;
43}
44
45static int msm_devfreq_get_dev_status(struct device *dev,
46 struct devfreq_dev_status *status)
47{
48 struct msm_gpu *gpu = platform_get_drvdata(to_platform_device(dev));
49 ktime_t time;
50
51 if (gpu->funcs->gpu_get_freq)
52 status->current_frequency = gpu->funcs->gpu_get_freq(gpu);
53 else
54 status->current_frequency = clk_get_rate(gpu->core_clk);
55
56 status->busy_time = gpu->funcs->gpu_busy(gpu);
57
58 time = ktime_get();
59 status->total_time = ktime_us_delta(time, gpu->devfreq.time);
60 gpu->devfreq.time = time;
61
62 return 0;
63}
64
65static int msm_devfreq_get_cur_freq(struct device *dev, unsigned long *freq)
66{
67 struct msm_gpu *gpu = platform_get_drvdata(to_platform_device(dev));
68
69 if (gpu->funcs->gpu_get_freq)
70 *freq = gpu->funcs->gpu_get_freq(gpu);
71 else
72 *freq = clk_get_rate(gpu->core_clk);
73
74 return 0;
75}
76
77static struct devfreq_dev_profile msm_devfreq_profile = {
78 .polling_ms = 10,
79 .target = msm_devfreq_target,
80 .get_dev_status = msm_devfreq_get_dev_status,
81 .get_cur_freq = msm_devfreq_get_cur_freq,
82};
83
84static void msm_devfreq_init(struct msm_gpu *gpu)
85{
86 /* We need target support to do devfreq */
87 if (!gpu->funcs->gpu_busy)
88 return;
89
90 msm_devfreq_profile.initial_freq = gpu->fast_rate;
91
92 /*
93 * Don't set the freq_table or max_state and let devfreq build the table
94 * from OPP
95 */
96
97 gpu->devfreq.devfreq = devm_devfreq_add_device(&gpu->pdev->dev,
98 &msm_devfreq_profile, DEVFREQ_GOV_SIMPLE_ONDEMAND,
99 NULL);
100
101 if (IS_ERR(gpu->devfreq.devfreq)) {
102 DRM_DEV_ERROR(&gpu->pdev->dev, "Couldn't initialize GPU devfreq\n");
103 gpu->devfreq.devfreq = NULL;
104 }
105
106 devfreq_suspend_device(gpu->devfreq.devfreq);
107}
108
109static int enable_pwrrail(struct msm_gpu *gpu)
110{
111 struct drm_device *dev = gpu->dev;
112 int ret = 0;
113
114 if (gpu->gpu_reg) {
115 ret = regulator_enable(gpu->gpu_reg);
116 if (ret) {
117 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_reg': %d\n", ret);
118 return ret;
119 }
120 }
121
122 if (gpu->gpu_cx) {
123 ret = regulator_enable(gpu->gpu_cx);
124 if (ret) {
125 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_cx': %d\n", ret);
126 return ret;
127 }
128 }
129
130 return 0;
131}
132
133static int disable_pwrrail(struct msm_gpu *gpu)
134{
135 if (gpu->gpu_cx)
136 regulator_disable(gpu->gpu_cx);
137 if (gpu->gpu_reg)
138 regulator_disable(gpu->gpu_reg);
139 return 0;
140}
141
142static int enable_clk(struct msm_gpu *gpu)
143{
144 if (gpu->core_clk && gpu->fast_rate)
145 clk_set_rate(gpu->core_clk, gpu->fast_rate);
146
147 /* Set the RBBM timer rate to 19.2Mhz */
148 if (gpu->rbbmtimer_clk)
149 clk_set_rate(gpu->rbbmtimer_clk, 19200000);
150
151 return clk_bulk_prepare_enable(gpu->nr_clocks, gpu->grp_clks);
152}
153
154static int disable_clk(struct msm_gpu *gpu)
155{
156 clk_bulk_disable_unprepare(gpu->nr_clocks, gpu->grp_clks);
157
158 /*
159 * Set the clock to a deliberately low rate. On older targets the clock
160 * speed had to be non zero to avoid problems. On newer targets this
161 * will be rounded down to zero anyway so it all works out.
162 */
163 if (gpu->core_clk)
164 clk_set_rate(gpu->core_clk, 27000000);
165
166 if (gpu->rbbmtimer_clk)
167 clk_set_rate(gpu->rbbmtimer_clk, 0);
168
169 return 0;
170}
171
172static int enable_axi(struct msm_gpu *gpu)
173{
174 if (gpu->ebi1_clk)
175 clk_prepare_enable(gpu->ebi1_clk);
176 return 0;
177}
178
179static int disable_axi(struct msm_gpu *gpu)
180{
181 if (gpu->ebi1_clk)
182 clk_disable_unprepare(gpu->ebi1_clk);
183 return 0;
184}
185
186void msm_gpu_resume_devfreq(struct msm_gpu *gpu)
187{
188 gpu->devfreq.busy_cycles = 0;
189 gpu->devfreq.time = ktime_get();
190
191 devfreq_resume_device(gpu->devfreq.devfreq);
192}
193
194int msm_gpu_pm_resume(struct msm_gpu *gpu)
195{
196 int ret;
197
198 DBG("%s", gpu->name);
199
200 ret = enable_pwrrail(gpu);
201 if (ret)
202 return ret;
203
204 ret = enable_clk(gpu);
205 if (ret)
206 return ret;
207
208 ret = enable_axi(gpu);
209 if (ret)
210 return ret;
211
212 msm_gpu_resume_devfreq(gpu);
213
214 gpu->needs_hw_init = true;
215
216 return 0;
217}
218
219int msm_gpu_pm_suspend(struct msm_gpu *gpu)
220{
221 int ret;
222
223 DBG("%s", gpu->name);
224
225 devfreq_suspend_device(gpu->devfreq.devfreq);
226
227 ret = disable_axi(gpu);
228 if (ret)
229 return ret;
230
231 ret = disable_clk(gpu);
232 if (ret)
233 return ret;
234
235 ret = disable_pwrrail(gpu);
236 if (ret)
237 return ret;
238
239 return 0;
240}
241
242int msm_gpu_hw_init(struct msm_gpu *gpu)
243{
244 int ret;
245
246 WARN_ON(!mutex_is_locked(&gpu->dev->struct_mutex));
247
248 if (!gpu->needs_hw_init)
249 return 0;
250
251 disable_irq(gpu->irq);
252 ret = gpu->funcs->hw_init(gpu);
253 if (!ret)
254 gpu->needs_hw_init = false;
255 enable_irq(gpu->irq);
256
257 return ret;
258}
259
260#ifdef CONFIG_DEV_COREDUMP
261static ssize_t msm_gpu_devcoredump_read(char *buffer, loff_t offset,
262 size_t count, void *data, size_t datalen)
263{
264 struct msm_gpu *gpu = data;
265 struct drm_print_iterator iter;
266 struct drm_printer p;
267 struct msm_gpu_state *state;
268
269 state = msm_gpu_crashstate_get(gpu);
270 if (!state)
271 return 0;
272
273 iter.data = buffer;
274 iter.offset = 0;
275 iter.start = offset;
276 iter.remain = count;
277
278 p = drm_coredump_printer(&iter);
279
280 drm_printf(&p, "---\n");
281 drm_printf(&p, "kernel: " UTS_RELEASE "\n");
282 drm_printf(&p, "module: " KBUILD_MODNAME "\n");
283 drm_printf(&p, "time: %lld.%09ld\n",
284 state->time.tv_sec, state->time.tv_nsec);
285 if (state->comm)
286 drm_printf(&p, "comm: %s\n", state->comm);
287 if (state->cmd)
288 drm_printf(&p, "cmdline: %s\n", state->cmd);
289
290 gpu->funcs->show(gpu, state, &p);
291
292 msm_gpu_crashstate_put(gpu);
293
294 return count - iter.remain;
295}
296
297static void msm_gpu_devcoredump_free(void *data)
298{
299 struct msm_gpu *gpu = data;
300
301 msm_gpu_crashstate_put(gpu);
302}
303
304static void msm_gpu_crashstate_get_bo(struct msm_gpu_state *state,
305 struct msm_gem_object *obj, u64 iova, u32 flags)
306{
307 struct msm_gpu_state_bo *state_bo = &state->bos[state->nr_bos];
308
309 /* Don't record write only objects */
310 state_bo->size = obj->base.size;
311 state_bo->iova = iova;
312
313 /* Only store data for non imported buffer objects marked for read */
314 if ((flags & MSM_SUBMIT_BO_READ) && !obj->base.import_attach) {
315 void *ptr;
316
317 state_bo->data = kvmalloc(obj->base.size, GFP_KERNEL);
318 if (!state_bo->data)
319 goto out;
320
321 ptr = msm_gem_get_vaddr_active(&obj->base);
322 if (IS_ERR(ptr)) {
323 kvfree(state_bo->data);
324 state_bo->data = NULL;
325 goto out;
326 }
327
328 memcpy(state_bo->data, ptr, obj->base.size);
329 msm_gem_put_vaddr(&obj->base);
330 }
331out:
332 state->nr_bos++;
333}
334
335static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
336 struct msm_gem_submit *submit, char *comm, char *cmd)
337{
338 struct msm_gpu_state *state;
339
340 /* Check if the target supports capturing crash state */
341 if (!gpu->funcs->gpu_state_get)
342 return;
343
344 /* Only save one crash state at a time */
345 if (gpu->crashstate)
346 return;
347
348 state = gpu->funcs->gpu_state_get(gpu);
349 if (IS_ERR_OR_NULL(state))
350 return;
351
352 /* Fill in the additional crash state information */
353 state->comm = kstrdup(comm, GFP_KERNEL);
354 state->cmd = kstrdup(cmd, GFP_KERNEL);
355
356 if (submit) {
357 int i;
358
359 state->bos = kcalloc(submit->nr_cmds,
360 sizeof(struct msm_gpu_state_bo), GFP_KERNEL);
361
362 for (i = 0; state->bos && i < submit->nr_cmds; i++) {
363 int idx = submit->cmd[i].idx;
364
365 msm_gpu_crashstate_get_bo(state, submit->bos[idx].obj,
366 submit->bos[idx].iova, submit->bos[idx].flags);
367 }
368 }
369
370 /* Set the active crash state to be dumped on failure */
371 gpu->crashstate = state;
372
373 /* FIXME: Release the crashstate if this errors out? */
374 dev_coredumpm(gpu->dev->dev, THIS_MODULE, gpu, 0, GFP_KERNEL,
375 msm_gpu_devcoredump_read, msm_gpu_devcoredump_free);
376}
377#else
378static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
379 struct msm_gem_submit *submit, char *comm, char *cmd)
380{
381}
382#endif
383
384/*
385 * Hangcheck detection for locked gpu:
386 */
387
388static void update_fences(struct msm_gpu *gpu, struct msm_ringbuffer *ring,
389 uint32_t fence)
390{
391 struct msm_gem_submit *submit;
392
393 list_for_each_entry(submit, &ring->submits, node) {
394 if (submit->seqno > fence)
395 break;
396
397 msm_update_fence(submit->ring->fctx,
398 submit->fence->seqno);
399 }
400}
401
402static struct msm_gem_submit *
403find_submit(struct msm_ringbuffer *ring, uint32_t fence)
404{
405 struct msm_gem_submit *submit;
406
407 WARN_ON(!mutex_is_locked(&ring->gpu->dev->struct_mutex));
408
409 list_for_each_entry(submit, &ring->submits, node)
410 if (submit->seqno == fence)
411 return submit;
412
413 return NULL;
414}
415
416static void retire_submits(struct msm_gpu *gpu);
417
418static void recover_worker(struct work_struct *work)
419{
420 struct msm_gpu *gpu = container_of(work, struct msm_gpu, recover_work);
421 struct drm_device *dev = gpu->dev;
422 struct msm_drm_private *priv = dev->dev_private;
423 struct msm_gem_submit *submit;
424 struct msm_ringbuffer *cur_ring = gpu->funcs->active_ring(gpu);
425 char *comm = NULL, *cmd = NULL;
426 int i;
427
428 mutex_lock(&dev->struct_mutex);
429
430 DRM_DEV_ERROR(dev->dev, "%s: hangcheck recover!\n", gpu->name);
431
432 submit = find_submit(cur_ring, cur_ring->memptrs->fence + 1);
433 if (submit) {
434 struct task_struct *task;
435
436 /* Increment the fault counts */
437 gpu->global_faults++;
438 submit->queue->faults++;
439
440 task = get_pid_task(submit->pid, PIDTYPE_PID);
441 if (task) {
442 comm = kstrdup(task->comm, GFP_KERNEL);
443 cmd = kstrdup_quotable_cmdline(task, GFP_KERNEL);
444 put_task_struct(task);
445 }
446
447 if (comm && cmd) {
448 DRM_DEV_ERROR(dev->dev, "%s: offending task: %s (%s)\n",
449 gpu->name, comm, cmd);
450
451 msm_rd_dump_submit(priv->hangrd, submit,
452 "offending task: %s (%s)", comm, cmd);
453 } else
454 msm_rd_dump_submit(priv->hangrd, submit, NULL);
455 }
456
457 /* Record the crash state */
458 pm_runtime_get_sync(&gpu->pdev->dev);
459 msm_gpu_crashstate_capture(gpu, submit, comm, cmd);
460 pm_runtime_put_sync(&gpu->pdev->dev);
461
462 kfree(cmd);
463 kfree(comm);
464
465 /*
466 * Update all the rings with the latest and greatest fence.. this
467 * needs to happen after msm_rd_dump_submit() to ensure that the
468 * bo's referenced by the offending submit are still around.
469 */
470 for (i = 0; i < gpu->nr_rings; i++) {
471 struct msm_ringbuffer *ring = gpu->rb[i];
472
473 uint32_t fence = ring->memptrs->fence;
474
475 /*
476 * For the current (faulting?) ring/submit advance the fence by
477 * one more to clear the faulting submit
478 */
479 if (ring == cur_ring)
480 fence++;
481
482 update_fences(gpu, ring, fence);
483 }
484
485 if (msm_gpu_active(gpu)) {
486 /* retire completed submits, plus the one that hung: */
487 retire_submits(gpu);
488
489 pm_runtime_get_sync(&gpu->pdev->dev);
490 gpu->funcs->recover(gpu);
491 pm_runtime_put_sync(&gpu->pdev->dev);
492
493 /*
494 * Replay all remaining submits starting with highest priority
495 * ring
496 */
497 for (i = 0; i < gpu->nr_rings; i++) {
498 struct msm_ringbuffer *ring = gpu->rb[i];
499
500 list_for_each_entry(submit, &ring->submits, node)
501 gpu->funcs->submit(gpu, submit, NULL);
502 }
503 }
504
505 mutex_unlock(&dev->struct_mutex);
506
507 msm_gpu_retire(gpu);
508}
509
510static void hangcheck_timer_reset(struct msm_gpu *gpu)
511{
512 DBG("%s", gpu->name);
513 mod_timer(&gpu->hangcheck_timer,
514 round_jiffies_up(jiffies + DRM_MSM_HANGCHECK_JIFFIES));
515}
516
517static void hangcheck_handler(struct timer_list *t)
518{
519 struct msm_gpu *gpu = from_timer(gpu, t, hangcheck_timer);
520 struct drm_device *dev = gpu->dev;
521 struct msm_drm_private *priv = dev->dev_private;
522 struct msm_ringbuffer *ring = gpu->funcs->active_ring(gpu);
523 uint32_t fence = ring->memptrs->fence;
524
525 if (fence != ring->hangcheck_fence) {
526 /* some progress has been made.. ya! */
527 ring->hangcheck_fence = fence;
528 } else if (fence < ring->seqno) {
529 /* no progress and not done.. hung! */
530 ring->hangcheck_fence = fence;
531 DRM_DEV_ERROR(dev->dev, "%s: hangcheck detected gpu lockup rb %d!\n",
532 gpu->name, ring->id);
533 DRM_DEV_ERROR(dev->dev, "%s: completed fence: %u\n",
534 gpu->name, fence);
535 DRM_DEV_ERROR(dev->dev, "%s: submitted fence: %u\n",
536 gpu->name, ring->seqno);
537
538 queue_work(priv->wq, &gpu->recover_work);
539 }
540
541 /* if still more pending work, reset the hangcheck timer: */
542 if (ring->seqno > ring->hangcheck_fence)
543 hangcheck_timer_reset(gpu);
544
545 /* workaround for missing irq: */
546 queue_work(priv->wq, &gpu->retire_work);
547}
548
549/*
550 * Performance Counters:
551 */
552
553/* called under perf_lock */
554static int update_hw_cntrs(struct msm_gpu *gpu, uint32_t ncntrs, uint32_t *cntrs)
555{
556 uint32_t current_cntrs[ARRAY_SIZE(gpu->last_cntrs)];
557 int i, n = min(ncntrs, gpu->num_perfcntrs);
558
559 /* read current values: */
560 for (i = 0; i < gpu->num_perfcntrs; i++)
561 current_cntrs[i] = gpu_read(gpu, gpu->perfcntrs[i].sample_reg);
562
563 /* update cntrs: */
564 for (i = 0; i < n; i++)
565 cntrs[i] = current_cntrs[i] - gpu->last_cntrs[i];
566
567 /* save current values: */
568 for (i = 0; i < gpu->num_perfcntrs; i++)
569 gpu->last_cntrs[i] = current_cntrs[i];
570
571 return n;
572}
573
574static void update_sw_cntrs(struct msm_gpu *gpu)
575{
576 ktime_t time;
577 uint32_t elapsed;
578 unsigned long flags;
579
580 spin_lock_irqsave(&gpu->perf_lock, flags);
581 if (!gpu->perfcntr_active)
582 goto out;
583
584 time = ktime_get();
585 elapsed = ktime_to_us(ktime_sub(time, gpu->last_sample.time));
586
587 gpu->totaltime += elapsed;
588 if (gpu->last_sample.active)
589 gpu->activetime += elapsed;
590
591 gpu->last_sample.active = msm_gpu_active(gpu);
592 gpu->last_sample.time = time;
593
594out:
595 spin_unlock_irqrestore(&gpu->perf_lock, flags);
596}
597
598void msm_gpu_perfcntr_start(struct msm_gpu *gpu)
599{
600 unsigned long flags;
601
602 pm_runtime_get_sync(&gpu->pdev->dev);
603
604 spin_lock_irqsave(&gpu->perf_lock, flags);
605 /* we could dynamically enable/disable perfcntr registers too.. */
606 gpu->last_sample.active = msm_gpu_active(gpu);
607 gpu->last_sample.time = ktime_get();
608 gpu->activetime = gpu->totaltime = 0;
609 gpu->perfcntr_active = true;
610 update_hw_cntrs(gpu, 0, NULL);
611 spin_unlock_irqrestore(&gpu->perf_lock, flags);
612}
613
614void msm_gpu_perfcntr_stop(struct msm_gpu *gpu)
615{
616 gpu->perfcntr_active = false;
617 pm_runtime_put_sync(&gpu->pdev->dev);
618}
619
620/* returns -errno or # of cntrs sampled */
621int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
622 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs)
623{
624 unsigned long flags;
625 int ret;
626
627 spin_lock_irqsave(&gpu->perf_lock, flags);
628
629 if (!gpu->perfcntr_active) {
630 ret = -EINVAL;
631 goto out;
632 }
633
634 *activetime = gpu->activetime;
635 *totaltime = gpu->totaltime;
636
637 gpu->activetime = gpu->totaltime = 0;
638
639 ret = update_hw_cntrs(gpu, ncntrs, cntrs);
640
641out:
642 spin_unlock_irqrestore(&gpu->perf_lock, flags);
643
644 return ret;
645}
646
647/*
648 * Cmdstream submission/retirement:
649 */
650
651static void retire_submit(struct msm_gpu *gpu, struct msm_ringbuffer *ring,
652 struct msm_gem_submit *submit)
653{
654 int index = submit->seqno % MSM_GPU_SUBMIT_STATS_COUNT;
655 volatile struct msm_gpu_submit_stats *stats;
656 u64 elapsed, clock = 0;
657 int i;
658
659 stats = &ring->memptrs->stats[index];
660 /* Convert 19.2Mhz alwayson ticks to nanoseconds for elapsed time */
661 elapsed = (stats->alwayson_end - stats->alwayson_start) * 10000;
662 do_div(elapsed, 192);
663
664 /* Calculate the clock frequency from the number of CP cycles */
665 if (elapsed) {
666 clock = (stats->cpcycles_end - stats->cpcycles_start) * 1000;
667 do_div(clock, elapsed);
668 }
669
670 trace_msm_gpu_submit_retired(submit, elapsed, clock,
671 stats->alwayson_start, stats->alwayson_end);
672
673 for (i = 0; i < submit->nr_bos; i++) {
674 struct msm_gem_object *msm_obj = submit->bos[i].obj;
675 /* move to inactive: */
676 msm_gem_move_to_inactive(&msm_obj->base);
677 msm_gem_unpin_iova(&msm_obj->base, submit->aspace);
678 drm_gem_object_put(&msm_obj->base);
679 }
680
681 pm_runtime_mark_last_busy(&gpu->pdev->dev);
682 pm_runtime_put_autosuspend(&gpu->pdev->dev);
683 msm_gem_submit_free(submit);
684}
685
686static void retire_submits(struct msm_gpu *gpu)
687{
688 struct drm_device *dev = gpu->dev;
689 struct msm_gem_submit *submit, *tmp;
690 int i;
691
692 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
693
694 /* Retire the commits starting with highest priority */
695 for (i = 0; i < gpu->nr_rings; i++) {
696 struct msm_ringbuffer *ring = gpu->rb[i];
697
698 list_for_each_entry_safe(submit, tmp, &ring->submits, node) {
699 if (dma_fence_is_signaled(submit->fence))
700 retire_submit(gpu, ring, submit);
701 }
702 }
703}
704
705static void retire_worker(struct work_struct *work)
706{
707 struct msm_gpu *gpu = container_of(work, struct msm_gpu, retire_work);
708 struct drm_device *dev = gpu->dev;
709 int i;
710
711 for (i = 0; i < gpu->nr_rings; i++)
712 update_fences(gpu, gpu->rb[i], gpu->rb[i]->memptrs->fence);
713
714 mutex_lock(&dev->struct_mutex);
715 retire_submits(gpu);
716 mutex_unlock(&dev->struct_mutex);
717}
718
719/* call from irq handler to schedule work to retire bo's */
720void msm_gpu_retire(struct msm_gpu *gpu)
721{
722 struct msm_drm_private *priv = gpu->dev->dev_private;
723 queue_work(priv->wq, &gpu->retire_work);
724 update_sw_cntrs(gpu);
725}
726
727/* add bo's to gpu's ring, and kick gpu: */
728void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
729 struct msm_file_private *ctx)
730{
731 struct drm_device *dev = gpu->dev;
732 struct msm_drm_private *priv = dev->dev_private;
733 struct msm_ringbuffer *ring = submit->ring;
734 int i;
735
736 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
737
738 pm_runtime_get_sync(&gpu->pdev->dev);
739
740 msm_gpu_hw_init(gpu);
741
742 submit->seqno = ++ring->seqno;
743
744 list_add_tail(&submit->node, &ring->submits);
745
746 msm_rd_dump_submit(priv->rd, submit, NULL);
747
748 update_sw_cntrs(gpu);
749
750 for (i = 0; i < submit->nr_bos; i++) {
751 struct msm_gem_object *msm_obj = submit->bos[i].obj;
752 uint64_t iova;
753
754 /* can't happen yet.. but when we add 2d support we'll have
755 * to deal w/ cross-ring synchronization:
756 */
757 WARN_ON(is_active(msm_obj) && (msm_obj->gpu != gpu));
758
759 /* submit takes a reference to the bo and iova until retired: */
760 drm_gem_object_get(&msm_obj->base);
761 msm_gem_get_and_pin_iova(&msm_obj->base, submit->aspace, &iova);
762
763 if (submit->bos[i].flags & MSM_SUBMIT_BO_WRITE)
764 msm_gem_move_to_active(&msm_obj->base, gpu, true, submit->fence);
765 else if (submit->bos[i].flags & MSM_SUBMIT_BO_READ)
766 msm_gem_move_to_active(&msm_obj->base, gpu, false, submit->fence);
767 }
768
769 gpu->funcs->submit(gpu, submit, ctx);
770 priv->lastctx = ctx;
771
772 hangcheck_timer_reset(gpu);
773}
774
775/*
776 * Init/Cleanup:
777 */
778
779static irqreturn_t irq_handler(int irq, void *data)
780{
781 struct msm_gpu *gpu = data;
782 return gpu->funcs->irq(gpu);
783}
784
785static int get_clocks(struct platform_device *pdev, struct msm_gpu *gpu)
786{
787 int ret = devm_clk_bulk_get_all(&pdev->dev, &gpu->grp_clks);
788
789 if (ret < 1) {
790 gpu->nr_clocks = 0;
791 return ret;
792 }
793
794 gpu->nr_clocks = ret;
795
796 gpu->core_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
797 gpu->nr_clocks, "core");
798
799 gpu->rbbmtimer_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
800 gpu->nr_clocks, "rbbmtimer");
801
802 return 0;
803}
804
805static struct msm_gem_address_space *
806msm_gpu_create_address_space(struct msm_gpu *gpu, struct platform_device *pdev,
807 uint64_t va_start, uint64_t va_end)
808{
809 struct msm_gem_address_space *aspace;
810 int ret;
811
812 /*
813 * Setup IOMMU.. eventually we will (I think) do this once per context
814 * and have separate page tables per context. For now, to keep things
815 * simple and to get something working, just use a single address space:
816 */
817 if (!adreno_is_a2xx(to_adreno_gpu(gpu))) {
818 struct iommu_domain *iommu = iommu_domain_alloc(&platform_bus_type);
819 if (!iommu)
820 return NULL;
821
822 iommu->geometry.aperture_start = va_start;
823 iommu->geometry.aperture_end = va_end;
824
825 DRM_DEV_INFO(gpu->dev->dev, "%s: using IOMMU\n", gpu->name);
826
827 aspace = msm_gem_address_space_create(&pdev->dev, iommu, "gpu");
828 if (IS_ERR(aspace))
829 iommu_domain_free(iommu);
830 } else {
831 aspace = msm_gem_address_space_create_a2xx(&pdev->dev, gpu, "gpu",
832 va_start, va_end);
833 }
834
835 if (IS_ERR(aspace)) {
836 DRM_DEV_ERROR(gpu->dev->dev, "failed to init mmu: %ld\n",
837 PTR_ERR(aspace));
838 return ERR_CAST(aspace);
839 }
840
841 ret = aspace->mmu->funcs->attach(aspace->mmu, NULL, 0);
842 if (ret) {
843 msm_gem_address_space_put(aspace);
844 return ERR_PTR(ret);
845 }
846
847 return aspace;
848}
849
850int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
851 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
852 const char *name, struct msm_gpu_config *config)
853{
854 int i, ret, nr_rings = config->nr_rings;
855 void *memptrs;
856 uint64_t memptrs_iova;
857
858 if (WARN_ON(gpu->num_perfcntrs > ARRAY_SIZE(gpu->last_cntrs)))
859 gpu->num_perfcntrs = ARRAY_SIZE(gpu->last_cntrs);
860
861 gpu->dev = drm;
862 gpu->funcs = funcs;
863 gpu->name = name;
864
865 INIT_LIST_HEAD(&gpu->active_list);
866 INIT_WORK(&gpu->retire_work, retire_worker);
867 INIT_WORK(&gpu->recover_work, recover_worker);
868
869
870 timer_setup(&gpu->hangcheck_timer, hangcheck_handler, 0);
871
872 spin_lock_init(&gpu->perf_lock);
873
874
875 /* Map registers: */
876 gpu->mmio = msm_ioremap(pdev, config->ioname, name);
877 if (IS_ERR(gpu->mmio)) {
878 ret = PTR_ERR(gpu->mmio);
879 goto fail;
880 }
881
882 /* Get Interrupt: */
883 gpu->irq = platform_get_irq(pdev, 0);
884 if (gpu->irq < 0) {
885 ret = gpu->irq;
886 DRM_DEV_ERROR(drm->dev, "failed to get irq: %d\n", ret);
887 goto fail;
888 }
889
890 ret = devm_request_irq(&pdev->dev, gpu->irq, irq_handler,
891 IRQF_TRIGGER_HIGH, gpu->name, gpu);
892 if (ret) {
893 DRM_DEV_ERROR(drm->dev, "failed to request IRQ%u: %d\n", gpu->irq, ret);
894 goto fail;
895 }
896
897 ret = get_clocks(pdev, gpu);
898 if (ret)
899 goto fail;
900
901 gpu->ebi1_clk = msm_clk_get(pdev, "bus");
902 DBG("ebi1_clk: %p", gpu->ebi1_clk);
903 if (IS_ERR(gpu->ebi1_clk))
904 gpu->ebi1_clk = NULL;
905
906 /* Acquire regulators: */
907 gpu->gpu_reg = devm_regulator_get(&pdev->dev, "vdd");
908 DBG("gpu_reg: %p", gpu->gpu_reg);
909 if (IS_ERR(gpu->gpu_reg))
910 gpu->gpu_reg = NULL;
911
912 gpu->gpu_cx = devm_regulator_get(&pdev->dev, "vddcx");
913 DBG("gpu_cx: %p", gpu->gpu_cx);
914 if (IS_ERR(gpu->gpu_cx))
915 gpu->gpu_cx = NULL;
916
917 gpu->pdev = pdev;
918 platform_set_drvdata(pdev, gpu);
919
920 msm_devfreq_init(gpu);
921
922 gpu->aspace = msm_gpu_create_address_space(gpu, pdev,
923 config->va_start, config->va_end);
924
925 if (gpu->aspace == NULL)
926 DRM_DEV_INFO(drm->dev, "%s: no IOMMU, fallback to VRAM carveout!\n", name);
927 else if (IS_ERR(gpu->aspace)) {
928 ret = PTR_ERR(gpu->aspace);
929 goto fail;
930 }
931
932 memptrs = msm_gem_kernel_new(drm,
933 sizeof(struct msm_rbmemptrs) * nr_rings,
934 MSM_BO_UNCACHED, gpu->aspace, &gpu->memptrs_bo,
935 &memptrs_iova);
936
937 if (IS_ERR(memptrs)) {
938 ret = PTR_ERR(memptrs);
939 DRM_DEV_ERROR(drm->dev, "could not allocate memptrs: %d\n", ret);
940 goto fail;
941 }
942
943 msm_gem_object_set_name(gpu->memptrs_bo, "memptrs");
944
945 if (nr_rings > ARRAY_SIZE(gpu->rb)) {
946 DRM_DEV_INFO_ONCE(drm->dev, "Only creating %zu ringbuffers\n",
947 ARRAY_SIZE(gpu->rb));
948 nr_rings = ARRAY_SIZE(gpu->rb);
949 }
950
951 /* Create ringbuffer(s): */
952 for (i = 0; i < nr_rings; i++) {
953 gpu->rb[i] = msm_ringbuffer_new(gpu, i, memptrs, memptrs_iova);
954
955 if (IS_ERR(gpu->rb[i])) {
956 ret = PTR_ERR(gpu->rb[i]);
957 DRM_DEV_ERROR(drm->dev,
958 "could not create ringbuffer %d: %d\n", i, ret);
959 goto fail;
960 }
961
962 memptrs += sizeof(struct msm_rbmemptrs);
963 memptrs_iova += sizeof(struct msm_rbmemptrs);
964 }
965
966 gpu->nr_rings = nr_rings;
967
968 return 0;
969
970fail:
971 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
972 msm_ringbuffer_destroy(gpu->rb[i]);
973 gpu->rb[i] = NULL;
974 }
975
976 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace, false);
977
978 platform_set_drvdata(pdev, NULL);
979 return ret;
980}
981
982void msm_gpu_cleanup(struct msm_gpu *gpu)
983{
984 int i;
985
986 DBG("%s", gpu->name);
987
988 WARN_ON(!list_empty(&gpu->active_list));
989
990 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
991 msm_ringbuffer_destroy(gpu->rb[i]);
992 gpu->rb[i] = NULL;
993 }
994
995 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace, false);
996
997 if (!IS_ERR_OR_NULL(gpu->aspace)) {
998 gpu->aspace->mmu->funcs->detach(gpu->aspace->mmu,
999 NULL, 0);
1000 msm_gem_address_space_put(gpu->aspace);
1001 }
1002}
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2013 Red Hat
4 * Author: Rob Clark <robdclark@gmail.com>
5 */
6
7#include "msm_gpu.h"
8#include "msm_gem.h"
9#include "msm_mmu.h"
10#include "msm_fence.h"
11#include "msm_gpu_trace.h"
12#include "adreno/adreno_gpu.h"
13
14#include <generated/utsrelease.h>
15#include <linux/string_helpers.h>
16#include <linux/devfreq.h>
17#include <linux/devfreq_cooling.h>
18#include <linux/devcoredump.h>
19#include <linux/sched/task.h>
20
21/*
22 * Power Management:
23 */
24
25static int msm_devfreq_target(struct device *dev, unsigned long *freq,
26 u32 flags)
27{
28 struct msm_gpu *gpu = dev_to_gpu(dev);
29 struct dev_pm_opp *opp;
30
31 opp = devfreq_recommended_opp(dev, freq, flags);
32
33 if (IS_ERR(opp))
34 return PTR_ERR(opp);
35
36 trace_msm_gpu_freq_change(dev_pm_opp_get_freq(opp));
37
38 if (gpu->funcs->gpu_set_freq)
39 gpu->funcs->gpu_set_freq(gpu, opp);
40 else
41 clk_set_rate(gpu->core_clk, *freq);
42
43 dev_pm_opp_put(opp);
44
45 return 0;
46}
47
48static int msm_devfreq_get_dev_status(struct device *dev,
49 struct devfreq_dev_status *status)
50{
51 struct msm_gpu *gpu = dev_to_gpu(dev);
52 ktime_t time;
53
54 if (gpu->funcs->gpu_get_freq)
55 status->current_frequency = gpu->funcs->gpu_get_freq(gpu);
56 else
57 status->current_frequency = clk_get_rate(gpu->core_clk);
58
59 status->busy_time = gpu->funcs->gpu_busy(gpu);
60
61 time = ktime_get();
62 status->total_time = ktime_us_delta(time, gpu->devfreq.time);
63 gpu->devfreq.time = time;
64
65 return 0;
66}
67
68static int msm_devfreq_get_cur_freq(struct device *dev, unsigned long *freq)
69{
70 struct msm_gpu *gpu = dev_to_gpu(dev);
71
72 if (gpu->funcs->gpu_get_freq)
73 *freq = gpu->funcs->gpu_get_freq(gpu);
74 else
75 *freq = clk_get_rate(gpu->core_clk);
76
77 return 0;
78}
79
80static struct devfreq_dev_profile msm_devfreq_profile = {
81 .polling_ms = 10,
82 .target = msm_devfreq_target,
83 .get_dev_status = msm_devfreq_get_dev_status,
84 .get_cur_freq = msm_devfreq_get_cur_freq,
85};
86
87static void msm_devfreq_init(struct msm_gpu *gpu)
88{
89 /* We need target support to do devfreq */
90 if (!gpu->funcs->gpu_busy)
91 return;
92
93 msm_devfreq_profile.initial_freq = gpu->fast_rate;
94
95 /*
96 * Don't set the freq_table or max_state and let devfreq build the table
97 * from OPP
98 * After a deferred probe, these may have be left to non-zero values,
99 * so set them back to zero before creating the devfreq device
100 */
101 msm_devfreq_profile.freq_table = NULL;
102 msm_devfreq_profile.max_state = 0;
103
104 gpu->devfreq.devfreq = devm_devfreq_add_device(&gpu->pdev->dev,
105 &msm_devfreq_profile, DEVFREQ_GOV_SIMPLE_ONDEMAND,
106 NULL);
107
108 if (IS_ERR(gpu->devfreq.devfreq)) {
109 DRM_DEV_ERROR(&gpu->pdev->dev, "Couldn't initialize GPU devfreq\n");
110 gpu->devfreq.devfreq = NULL;
111 return;
112 }
113
114 devfreq_suspend_device(gpu->devfreq.devfreq);
115
116 gpu->cooling = of_devfreq_cooling_register(gpu->pdev->dev.of_node,
117 gpu->devfreq.devfreq);
118 if (IS_ERR(gpu->cooling)) {
119 DRM_DEV_ERROR(&gpu->pdev->dev,
120 "Couldn't register GPU cooling device\n");
121 gpu->cooling = NULL;
122 }
123}
124
125static int enable_pwrrail(struct msm_gpu *gpu)
126{
127 struct drm_device *dev = gpu->dev;
128 int ret = 0;
129
130 if (gpu->gpu_reg) {
131 ret = regulator_enable(gpu->gpu_reg);
132 if (ret) {
133 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_reg': %d\n", ret);
134 return ret;
135 }
136 }
137
138 if (gpu->gpu_cx) {
139 ret = regulator_enable(gpu->gpu_cx);
140 if (ret) {
141 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_cx': %d\n", ret);
142 return ret;
143 }
144 }
145
146 return 0;
147}
148
149static int disable_pwrrail(struct msm_gpu *gpu)
150{
151 if (gpu->gpu_cx)
152 regulator_disable(gpu->gpu_cx);
153 if (gpu->gpu_reg)
154 regulator_disable(gpu->gpu_reg);
155 return 0;
156}
157
158static int enable_clk(struct msm_gpu *gpu)
159{
160 if (gpu->core_clk && gpu->fast_rate)
161 clk_set_rate(gpu->core_clk, gpu->fast_rate);
162
163 /* Set the RBBM timer rate to 19.2Mhz */
164 if (gpu->rbbmtimer_clk)
165 clk_set_rate(gpu->rbbmtimer_clk, 19200000);
166
167 return clk_bulk_prepare_enable(gpu->nr_clocks, gpu->grp_clks);
168}
169
170static int disable_clk(struct msm_gpu *gpu)
171{
172 clk_bulk_disable_unprepare(gpu->nr_clocks, gpu->grp_clks);
173
174 /*
175 * Set the clock to a deliberately low rate. On older targets the clock
176 * speed had to be non zero to avoid problems. On newer targets this
177 * will be rounded down to zero anyway so it all works out.
178 */
179 if (gpu->core_clk)
180 clk_set_rate(gpu->core_clk, 27000000);
181
182 if (gpu->rbbmtimer_clk)
183 clk_set_rate(gpu->rbbmtimer_clk, 0);
184
185 return 0;
186}
187
188static int enable_axi(struct msm_gpu *gpu)
189{
190 return clk_prepare_enable(gpu->ebi1_clk);
191}
192
193static int disable_axi(struct msm_gpu *gpu)
194{
195 clk_disable_unprepare(gpu->ebi1_clk);
196 return 0;
197}
198
199void msm_gpu_resume_devfreq(struct msm_gpu *gpu)
200{
201 gpu->devfreq.busy_cycles = 0;
202 gpu->devfreq.time = ktime_get();
203
204 devfreq_resume_device(gpu->devfreq.devfreq);
205}
206
207int msm_gpu_pm_resume(struct msm_gpu *gpu)
208{
209 int ret;
210
211 DBG("%s", gpu->name);
212 trace_msm_gpu_resume(0);
213
214 ret = enable_pwrrail(gpu);
215 if (ret)
216 return ret;
217
218 ret = enable_clk(gpu);
219 if (ret)
220 return ret;
221
222 ret = enable_axi(gpu);
223 if (ret)
224 return ret;
225
226 msm_gpu_resume_devfreq(gpu);
227
228 gpu->needs_hw_init = true;
229
230 return 0;
231}
232
233int msm_gpu_pm_suspend(struct msm_gpu *gpu)
234{
235 int ret;
236
237 DBG("%s", gpu->name);
238 trace_msm_gpu_suspend(0);
239
240 devfreq_suspend_device(gpu->devfreq.devfreq);
241
242 ret = disable_axi(gpu);
243 if (ret)
244 return ret;
245
246 ret = disable_clk(gpu);
247 if (ret)
248 return ret;
249
250 ret = disable_pwrrail(gpu);
251 if (ret)
252 return ret;
253
254 gpu->suspend_count++;
255
256 return 0;
257}
258
259int msm_gpu_hw_init(struct msm_gpu *gpu)
260{
261 int ret;
262
263 WARN_ON(!mutex_is_locked(&gpu->dev->struct_mutex));
264
265 if (!gpu->needs_hw_init)
266 return 0;
267
268 disable_irq(gpu->irq);
269 ret = gpu->funcs->hw_init(gpu);
270 if (!ret)
271 gpu->needs_hw_init = false;
272 enable_irq(gpu->irq);
273
274 return ret;
275}
276
277static void update_fences(struct msm_gpu *gpu, struct msm_ringbuffer *ring,
278 uint32_t fence)
279{
280 struct msm_gem_submit *submit;
281
282 spin_lock(&ring->submit_lock);
283 list_for_each_entry(submit, &ring->submits, node) {
284 if (submit->seqno > fence)
285 break;
286
287 msm_update_fence(submit->ring->fctx,
288 submit->fence->seqno);
289 }
290 spin_unlock(&ring->submit_lock);
291}
292
293#ifdef CONFIG_DEV_COREDUMP
294static ssize_t msm_gpu_devcoredump_read(char *buffer, loff_t offset,
295 size_t count, void *data, size_t datalen)
296{
297 struct msm_gpu *gpu = data;
298 struct drm_print_iterator iter;
299 struct drm_printer p;
300 struct msm_gpu_state *state;
301
302 state = msm_gpu_crashstate_get(gpu);
303 if (!state)
304 return 0;
305
306 iter.data = buffer;
307 iter.offset = 0;
308 iter.start = offset;
309 iter.remain = count;
310
311 p = drm_coredump_printer(&iter);
312
313 drm_printf(&p, "---\n");
314 drm_printf(&p, "kernel: " UTS_RELEASE "\n");
315 drm_printf(&p, "module: " KBUILD_MODNAME "\n");
316 drm_printf(&p, "time: %lld.%09ld\n",
317 state->time.tv_sec, state->time.tv_nsec);
318 if (state->comm)
319 drm_printf(&p, "comm: %s\n", state->comm);
320 if (state->cmd)
321 drm_printf(&p, "cmdline: %s\n", state->cmd);
322
323 gpu->funcs->show(gpu, state, &p);
324
325 msm_gpu_crashstate_put(gpu);
326
327 return count - iter.remain;
328}
329
330static void msm_gpu_devcoredump_free(void *data)
331{
332 struct msm_gpu *gpu = data;
333
334 msm_gpu_crashstate_put(gpu);
335}
336
337static void msm_gpu_crashstate_get_bo(struct msm_gpu_state *state,
338 struct msm_gem_object *obj, u64 iova, u32 flags)
339{
340 struct msm_gpu_state_bo *state_bo = &state->bos[state->nr_bos];
341
342 /* Don't record write only objects */
343 state_bo->size = obj->base.size;
344 state_bo->iova = iova;
345
346 /* Only store data for non imported buffer objects marked for read */
347 if ((flags & MSM_SUBMIT_BO_READ) && !obj->base.import_attach) {
348 void *ptr;
349
350 state_bo->data = kvmalloc(obj->base.size, GFP_KERNEL);
351 if (!state_bo->data)
352 goto out;
353
354 msm_gem_lock(&obj->base);
355 ptr = msm_gem_get_vaddr_active(&obj->base);
356 msm_gem_unlock(&obj->base);
357 if (IS_ERR(ptr)) {
358 kvfree(state_bo->data);
359 state_bo->data = NULL;
360 goto out;
361 }
362
363 memcpy(state_bo->data, ptr, obj->base.size);
364 msm_gem_put_vaddr(&obj->base);
365 }
366out:
367 state->nr_bos++;
368}
369
370static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
371 struct msm_gem_submit *submit, char *comm, char *cmd)
372{
373 struct msm_gpu_state *state;
374
375 /* Check if the target supports capturing crash state */
376 if (!gpu->funcs->gpu_state_get)
377 return;
378
379 /* Only save one crash state at a time */
380 if (gpu->crashstate)
381 return;
382
383 state = gpu->funcs->gpu_state_get(gpu);
384 if (IS_ERR_OR_NULL(state))
385 return;
386
387 /* Fill in the additional crash state information */
388 state->comm = kstrdup(comm, GFP_KERNEL);
389 state->cmd = kstrdup(cmd, GFP_KERNEL);
390 state->fault_info = gpu->fault_info;
391
392 if (submit) {
393 int i, nr = 0;
394
395 /* count # of buffers to dump: */
396 for (i = 0; i < submit->nr_bos; i++)
397 if (should_dump(submit, i))
398 nr++;
399 /* always dump cmd bo's, but don't double count them: */
400 for (i = 0; i < submit->nr_cmds; i++)
401 if (!should_dump(submit, submit->cmd[i].idx))
402 nr++;
403
404 state->bos = kcalloc(nr,
405 sizeof(struct msm_gpu_state_bo), GFP_KERNEL);
406
407 for (i = 0; i < submit->nr_bos; i++) {
408 if (should_dump(submit, i)) {
409 msm_gpu_crashstate_get_bo(state, submit->bos[i].obj,
410 submit->bos[i].iova, submit->bos[i].flags);
411 }
412 }
413
414 for (i = 0; state->bos && i < submit->nr_cmds; i++) {
415 int idx = submit->cmd[i].idx;
416
417 if (!should_dump(submit, submit->cmd[i].idx)) {
418 msm_gpu_crashstate_get_bo(state, submit->bos[idx].obj,
419 submit->bos[idx].iova, submit->bos[idx].flags);
420 }
421 }
422 }
423
424 /* Set the active crash state to be dumped on failure */
425 gpu->crashstate = state;
426
427 /* FIXME: Release the crashstate if this errors out? */
428 dev_coredumpm(gpu->dev->dev, THIS_MODULE, gpu, 0, GFP_KERNEL,
429 msm_gpu_devcoredump_read, msm_gpu_devcoredump_free);
430}
431#else
432static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
433 struct msm_gem_submit *submit, char *comm, char *cmd)
434{
435}
436#endif
437
438/*
439 * Hangcheck detection for locked gpu:
440 */
441
442static struct msm_gem_submit *
443find_submit(struct msm_ringbuffer *ring, uint32_t fence)
444{
445 struct msm_gem_submit *submit;
446
447 spin_lock(&ring->submit_lock);
448 list_for_each_entry(submit, &ring->submits, node) {
449 if (submit->seqno == fence) {
450 spin_unlock(&ring->submit_lock);
451 return submit;
452 }
453 }
454 spin_unlock(&ring->submit_lock);
455
456 return NULL;
457}
458
459static void retire_submits(struct msm_gpu *gpu);
460
461static void recover_worker(struct kthread_work *work)
462{
463 struct msm_gpu *gpu = container_of(work, struct msm_gpu, recover_work);
464 struct drm_device *dev = gpu->dev;
465 struct msm_drm_private *priv = dev->dev_private;
466 struct msm_gem_submit *submit;
467 struct msm_ringbuffer *cur_ring = gpu->funcs->active_ring(gpu);
468 char *comm = NULL, *cmd = NULL;
469 int i;
470
471 mutex_lock(&dev->struct_mutex);
472
473 DRM_DEV_ERROR(dev->dev, "%s: hangcheck recover!\n", gpu->name);
474
475 submit = find_submit(cur_ring, cur_ring->memptrs->fence + 1);
476 if (submit) {
477 struct task_struct *task;
478
479 /* Increment the fault counts */
480 gpu->global_faults++;
481 submit->queue->faults++;
482
483 task = get_pid_task(submit->pid, PIDTYPE_PID);
484 if (task) {
485 comm = kstrdup(task->comm, GFP_KERNEL);
486 cmd = kstrdup_quotable_cmdline(task, GFP_KERNEL);
487 put_task_struct(task);
488 }
489
490 /* msm_rd_dump_submit() needs bo locked to dump: */
491 for (i = 0; i < submit->nr_bos; i++)
492 msm_gem_lock(&submit->bos[i].obj->base);
493
494 if (comm && cmd) {
495 DRM_DEV_ERROR(dev->dev, "%s: offending task: %s (%s)\n",
496 gpu->name, comm, cmd);
497
498 msm_rd_dump_submit(priv->hangrd, submit,
499 "offending task: %s (%s)", comm, cmd);
500 } else {
501 msm_rd_dump_submit(priv->hangrd, submit, NULL);
502 }
503
504 for (i = 0; i < submit->nr_bos; i++)
505 msm_gem_unlock(&submit->bos[i].obj->base);
506 }
507
508 /* Record the crash state */
509 pm_runtime_get_sync(&gpu->pdev->dev);
510 msm_gpu_crashstate_capture(gpu, submit, comm, cmd);
511 pm_runtime_put_sync(&gpu->pdev->dev);
512
513 kfree(cmd);
514 kfree(comm);
515
516 /*
517 * Update all the rings with the latest and greatest fence.. this
518 * needs to happen after msm_rd_dump_submit() to ensure that the
519 * bo's referenced by the offending submit are still around.
520 */
521 for (i = 0; i < gpu->nr_rings; i++) {
522 struct msm_ringbuffer *ring = gpu->rb[i];
523
524 uint32_t fence = ring->memptrs->fence;
525
526 /*
527 * For the current (faulting?) ring/submit advance the fence by
528 * one more to clear the faulting submit
529 */
530 if (ring == cur_ring)
531 fence++;
532
533 update_fences(gpu, ring, fence);
534 }
535
536 if (msm_gpu_active(gpu)) {
537 /* retire completed submits, plus the one that hung: */
538 retire_submits(gpu);
539
540 pm_runtime_get_sync(&gpu->pdev->dev);
541 gpu->funcs->recover(gpu);
542 pm_runtime_put_sync(&gpu->pdev->dev);
543
544 /*
545 * Replay all remaining submits starting with highest priority
546 * ring
547 */
548 for (i = 0; i < gpu->nr_rings; i++) {
549 struct msm_ringbuffer *ring = gpu->rb[i];
550
551 spin_lock(&ring->submit_lock);
552 list_for_each_entry(submit, &ring->submits, node)
553 gpu->funcs->submit(gpu, submit);
554 spin_unlock(&ring->submit_lock);
555 }
556 }
557
558 mutex_unlock(&dev->struct_mutex);
559
560 msm_gpu_retire(gpu);
561}
562
563static void fault_worker(struct kthread_work *work)
564{
565 struct msm_gpu *gpu = container_of(work, struct msm_gpu, fault_work);
566 struct drm_device *dev = gpu->dev;
567 struct msm_gem_submit *submit;
568 struct msm_ringbuffer *cur_ring = gpu->funcs->active_ring(gpu);
569 char *comm = NULL, *cmd = NULL;
570
571 mutex_lock(&dev->struct_mutex);
572
573 submit = find_submit(cur_ring, cur_ring->memptrs->fence + 1);
574 if (submit && submit->fault_dumped)
575 goto resume_smmu;
576
577 if (submit) {
578 struct task_struct *task;
579
580 task = get_pid_task(submit->pid, PIDTYPE_PID);
581 if (task) {
582 comm = kstrdup(task->comm, GFP_KERNEL);
583 cmd = kstrdup_quotable_cmdline(task, GFP_KERNEL);
584 put_task_struct(task);
585 }
586
587 /*
588 * When we get GPU iova faults, we can get 1000s of them,
589 * but we really only want to log the first one.
590 */
591 submit->fault_dumped = true;
592 }
593
594 /* Record the crash state */
595 pm_runtime_get_sync(&gpu->pdev->dev);
596 msm_gpu_crashstate_capture(gpu, submit, comm, cmd);
597 pm_runtime_put_sync(&gpu->pdev->dev);
598
599 kfree(cmd);
600 kfree(comm);
601
602resume_smmu:
603 memset(&gpu->fault_info, 0, sizeof(gpu->fault_info));
604 gpu->aspace->mmu->funcs->resume_translation(gpu->aspace->mmu);
605
606 mutex_unlock(&dev->struct_mutex);
607}
608
609static void hangcheck_timer_reset(struct msm_gpu *gpu)
610{
611 struct msm_drm_private *priv = gpu->dev->dev_private;
612 mod_timer(&gpu->hangcheck_timer,
613 round_jiffies_up(jiffies + msecs_to_jiffies(priv->hangcheck_period)));
614}
615
616static void hangcheck_handler(struct timer_list *t)
617{
618 struct msm_gpu *gpu = from_timer(gpu, t, hangcheck_timer);
619 struct drm_device *dev = gpu->dev;
620 struct msm_ringbuffer *ring = gpu->funcs->active_ring(gpu);
621 uint32_t fence = ring->memptrs->fence;
622
623 if (fence != ring->hangcheck_fence) {
624 /* some progress has been made.. ya! */
625 ring->hangcheck_fence = fence;
626 } else if (fence < ring->seqno) {
627 /* no progress and not done.. hung! */
628 ring->hangcheck_fence = fence;
629 DRM_DEV_ERROR(dev->dev, "%s: hangcheck detected gpu lockup rb %d!\n",
630 gpu->name, ring->id);
631 DRM_DEV_ERROR(dev->dev, "%s: completed fence: %u\n",
632 gpu->name, fence);
633 DRM_DEV_ERROR(dev->dev, "%s: submitted fence: %u\n",
634 gpu->name, ring->seqno);
635
636 kthread_queue_work(gpu->worker, &gpu->recover_work);
637 }
638
639 /* if still more pending work, reset the hangcheck timer: */
640 if (ring->seqno > ring->hangcheck_fence)
641 hangcheck_timer_reset(gpu);
642
643 /* workaround for missing irq: */
644 kthread_queue_work(gpu->worker, &gpu->retire_work);
645}
646
647/*
648 * Performance Counters:
649 */
650
651/* called under perf_lock */
652static int update_hw_cntrs(struct msm_gpu *gpu, uint32_t ncntrs, uint32_t *cntrs)
653{
654 uint32_t current_cntrs[ARRAY_SIZE(gpu->last_cntrs)];
655 int i, n = min(ncntrs, gpu->num_perfcntrs);
656
657 /* read current values: */
658 for (i = 0; i < gpu->num_perfcntrs; i++)
659 current_cntrs[i] = gpu_read(gpu, gpu->perfcntrs[i].sample_reg);
660
661 /* update cntrs: */
662 for (i = 0; i < n; i++)
663 cntrs[i] = current_cntrs[i] - gpu->last_cntrs[i];
664
665 /* save current values: */
666 for (i = 0; i < gpu->num_perfcntrs; i++)
667 gpu->last_cntrs[i] = current_cntrs[i];
668
669 return n;
670}
671
672static void update_sw_cntrs(struct msm_gpu *gpu)
673{
674 ktime_t time;
675 uint32_t elapsed;
676 unsigned long flags;
677
678 spin_lock_irqsave(&gpu->perf_lock, flags);
679 if (!gpu->perfcntr_active)
680 goto out;
681
682 time = ktime_get();
683 elapsed = ktime_to_us(ktime_sub(time, gpu->last_sample.time));
684
685 gpu->totaltime += elapsed;
686 if (gpu->last_sample.active)
687 gpu->activetime += elapsed;
688
689 gpu->last_sample.active = msm_gpu_active(gpu);
690 gpu->last_sample.time = time;
691
692out:
693 spin_unlock_irqrestore(&gpu->perf_lock, flags);
694}
695
696void msm_gpu_perfcntr_start(struct msm_gpu *gpu)
697{
698 unsigned long flags;
699
700 pm_runtime_get_sync(&gpu->pdev->dev);
701
702 spin_lock_irqsave(&gpu->perf_lock, flags);
703 /* we could dynamically enable/disable perfcntr registers too.. */
704 gpu->last_sample.active = msm_gpu_active(gpu);
705 gpu->last_sample.time = ktime_get();
706 gpu->activetime = gpu->totaltime = 0;
707 gpu->perfcntr_active = true;
708 update_hw_cntrs(gpu, 0, NULL);
709 spin_unlock_irqrestore(&gpu->perf_lock, flags);
710}
711
712void msm_gpu_perfcntr_stop(struct msm_gpu *gpu)
713{
714 gpu->perfcntr_active = false;
715 pm_runtime_put_sync(&gpu->pdev->dev);
716}
717
718/* returns -errno or # of cntrs sampled */
719int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
720 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs)
721{
722 unsigned long flags;
723 int ret;
724
725 spin_lock_irqsave(&gpu->perf_lock, flags);
726
727 if (!gpu->perfcntr_active) {
728 ret = -EINVAL;
729 goto out;
730 }
731
732 *activetime = gpu->activetime;
733 *totaltime = gpu->totaltime;
734
735 gpu->activetime = gpu->totaltime = 0;
736
737 ret = update_hw_cntrs(gpu, ncntrs, cntrs);
738
739out:
740 spin_unlock_irqrestore(&gpu->perf_lock, flags);
741
742 return ret;
743}
744
745/*
746 * Cmdstream submission/retirement:
747 */
748
749static void retire_submit(struct msm_gpu *gpu, struct msm_ringbuffer *ring,
750 struct msm_gem_submit *submit)
751{
752 int index = submit->seqno % MSM_GPU_SUBMIT_STATS_COUNT;
753 volatile struct msm_gpu_submit_stats *stats;
754 u64 elapsed, clock = 0;
755 int i;
756
757 stats = &ring->memptrs->stats[index];
758 /* Convert 19.2Mhz alwayson ticks to nanoseconds for elapsed time */
759 elapsed = (stats->alwayson_end - stats->alwayson_start) * 10000;
760 do_div(elapsed, 192);
761
762 /* Calculate the clock frequency from the number of CP cycles */
763 if (elapsed) {
764 clock = (stats->cpcycles_end - stats->cpcycles_start) * 1000;
765 do_div(clock, elapsed);
766 }
767
768 trace_msm_gpu_submit_retired(submit, elapsed, clock,
769 stats->alwayson_start, stats->alwayson_end);
770
771 for (i = 0; i < submit->nr_bos; i++) {
772 struct drm_gem_object *obj = &submit->bos[i].obj->base;
773
774 msm_gem_lock(obj);
775 msm_gem_active_put(obj);
776 msm_gem_unpin_iova_locked(obj, submit->aspace);
777 msm_gem_unlock(obj);
778 drm_gem_object_put(obj);
779 }
780
781 pm_runtime_mark_last_busy(&gpu->pdev->dev);
782 pm_runtime_put_autosuspend(&gpu->pdev->dev);
783
784 spin_lock(&ring->submit_lock);
785 list_del(&submit->node);
786 spin_unlock(&ring->submit_lock);
787
788 msm_gem_submit_put(submit);
789}
790
791static void retire_submits(struct msm_gpu *gpu)
792{
793 int i;
794
795 /* Retire the commits starting with highest priority */
796 for (i = 0; i < gpu->nr_rings; i++) {
797 struct msm_ringbuffer *ring = gpu->rb[i];
798
799 while (true) {
800 struct msm_gem_submit *submit = NULL;
801
802 spin_lock(&ring->submit_lock);
803 submit = list_first_entry_or_null(&ring->submits,
804 struct msm_gem_submit, node);
805 spin_unlock(&ring->submit_lock);
806
807 /*
808 * If no submit, we are done. If submit->fence hasn't
809 * been signalled, then later submits are not signalled
810 * either, so we are also done.
811 */
812 if (submit && dma_fence_is_signaled(submit->fence)) {
813 retire_submit(gpu, ring, submit);
814 } else {
815 break;
816 }
817 }
818 }
819}
820
821static void retire_worker(struct kthread_work *work)
822{
823 struct msm_gpu *gpu = container_of(work, struct msm_gpu, retire_work);
824 int i;
825
826 for (i = 0; i < gpu->nr_rings; i++)
827 update_fences(gpu, gpu->rb[i], gpu->rb[i]->memptrs->fence);
828
829 retire_submits(gpu);
830}
831
832/* call from irq handler to schedule work to retire bo's */
833void msm_gpu_retire(struct msm_gpu *gpu)
834{
835 kthread_queue_work(gpu->worker, &gpu->retire_work);
836 update_sw_cntrs(gpu);
837}
838
839/* add bo's to gpu's ring, and kick gpu: */
840void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit)
841{
842 struct drm_device *dev = gpu->dev;
843 struct msm_drm_private *priv = dev->dev_private;
844 struct msm_ringbuffer *ring = submit->ring;
845 int i;
846
847 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
848
849 pm_runtime_get_sync(&gpu->pdev->dev);
850
851 msm_gpu_hw_init(gpu);
852
853 submit->seqno = ++ring->seqno;
854
855 msm_rd_dump_submit(priv->rd, submit, NULL);
856
857 update_sw_cntrs(gpu);
858
859 for (i = 0; i < submit->nr_bos; i++) {
860 struct msm_gem_object *msm_obj = submit->bos[i].obj;
861 struct drm_gem_object *drm_obj = &msm_obj->base;
862 uint64_t iova;
863
864 /* submit takes a reference to the bo and iova until retired: */
865 drm_gem_object_get(&msm_obj->base);
866 msm_gem_get_and_pin_iova_locked(&msm_obj->base, submit->aspace, &iova);
867
868 if (submit->bos[i].flags & MSM_SUBMIT_BO_WRITE)
869 dma_resv_add_excl_fence(drm_obj->resv, submit->fence);
870 else if (submit->bos[i].flags & MSM_SUBMIT_BO_READ)
871 dma_resv_add_shared_fence(drm_obj->resv, submit->fence);
872
873 msm_gem_active_get(drm_obj, gpu);
874 }
875
876 /*
877 * ring->submits holds a ref to the submit, to deal with the case
878 * that a submit completes before msm_ioctl_gem_submit() returns.
879 */
880 msm_gem_submit_get(submit);
881
882 spin_lock(&ring->submit_lock);
883 list_add_tail(&submit->node, &ring->submits);
884 spin_unlock(&ring->submit_lock);
885
886 gpu->funcs->submit(gpu, submit);
887 priv->lastctx = submit->queue->ctx;
888
889 hangcheck_timer_reset(gpu);
890}
891
892/*
893 * Init/Cleanup:
894 */
895
896static irqreturn_t irq_handler(int irq, void *data)
897{
898 struct msm_gpu *gpu = data;
899 return gpu->funcs->irq(gpu);
900}
901
902static int get_clocks(struct platform_device *pdev, struct msm_gpu *gpu)
903{
904 int ret = devm_clk_bulk_get_all(&pdev->dev, &gpu->grp_clks);
905
906 if (ret < 1) {
907 gpu->nr_clocks = 0;
908 return ret;
909 }
910
911 gpu->nr_clocks = ret;
912
913 gpu->core_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
914 gpu->nr_clocks, "core");
915
916 gpu->rbbmtimer_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
917 gpu->nr_clocks, "rbbmtimer");
918
919 return 0;
920}
921
922/* Return a new address space for a msm_drm_private instance */
923struct msm_gem_address_space *
924msm_gpu_create_private_address_space(struct msm_gpu *gpu, struct task_struct *task)
925{
926 struct msm_gem_address_space *aspace = NULL;
927 if (!gpu)
928 return NULL;
929
930 /*
931 * If the target doesn't support private address spaces then return
932 * the global one
933 */
934 if (gpu->funcs->create_private_address_space) {
935 aspace = gpu->funcs->create_private_address_space(gpu);
936 if (!IS_ERR(aspace))
937 aspace->pid = get_pid(task_pid(task));
938 }
939
940 if (IS_ERR_OR_NULL(aspace))
941 aspace = msm_gem_address_space_get(gpu->aspace);
942
943 return aspace;
944}
945
946int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
947 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
948 const char *name, struct msm_gpu_config *config)
949{
950 int i, ret, nr_rings = config->nr_rings;
951 void *memptrs;
952 uint64_t memptrs_iova;
953
954 if (WARN_ON(gpu->num_perfcntrs > ARRAY_SIZE(gpu->last_cntrs)))
955 gpu->num_perfcntrs = ARRAY_SIZE(gpu->last_cntrs);
956
957 gpu->dev = drm;
958 gpu->funcs = funcs;
959 gpu->name = name;
960
961 gpu->worker = kthread_create_worker(0, "%s-worker", gpu->name);
962 if (IS_ERR(gpu->worker)) {
963 ret = PTR_ERR(gpu->worker);
964 gpu->worker = NULL;
965 goto fail;
966 }
967
968 sched_set_fifo_low(gpu->worker->task);
969
970 INIT_LIST_HEAD(&gpu->active_list);
971 kthread_init_work(&gpu->retire_work, retire_worker);
972 kthread_init_work(&gpu->recover_work, recover_worker);
973 kthread_init_work(&gpu->fault_work, fault_worker);
974
975 timer_setup(&gpu->hangcheck_timer, hangcheck_handler, 0);
976
977 spin_lock_init(&gpu->perf_lock);
978
979
980 /* Map registers: */
981 gpu->mmio = msm_ioremap(pdev, config->ioname, name);
982 if (IS_ERR(gpu->mmio)) {
983 ret = PTR_ERR(gpu->mmio);
984 goto fail;
985 }
986
987 /* Get Interrupt: */
988 gpu->irq = platform_get_irq(pdev, 0);
989 if (gpu->irq < 0) {
990 ret = gpu->irq;
991 DRM_DEV_ERROR(drm->dev, "failed to get irq: %d\n", ret);
992 goto fail;
993 }
994
995 ret = devm_request_irq(&pdev->dev, gpu->irq, irq_handler,
996 IRQF_TRIGGER_HIGH, gpu->name, gpu);
997 if (ret) {
998 DRM_DEV_ERROR(drm->dev, "failed to request IRQ%u: %d\n", gpu->irq, ret);
999 goto fail;
1000 }
1001
1002 ret = get_clocks(pdev, gpu);
1003 if (ret)
1004 goto fail;
1005
1006 gpu->ebi1_clk = msm_clk_get(pdev, "bus");
1007 DBG("ebi1_clk: %p", gpu->ebi1_clk);
1008 if (IS_ERR(gpu->ebi1_clk))
1009 gpu->ebi1_clk = NULL;
1010
1011 /* Acquire regulators: */
1012 gpu->gpu_reg = devm_regulator_get(&pdev->dev, "vdd");
1013 DBG("gpu_reg: %p", gpu->gpu_reg);
1014 if (IS_ERR(gpu->gpu_reg))
1015 gpu->gpu_reg = NULL;
1016
1017 gpu->gpu_cx = devm_regulator_get(&pdev->dev, "vddcx");
1018 DBG("gpu_cx: %p", gpu->gpu_cx);
1019 if (IS_ERR(gpu->gpu_cx))
1020 gpu->gpu_cx = NULL;
1021
1022 gpu->pdev = pdev;
1023 platform_set_drvdata(pdev, &gpu->adreno_smmu);
1024
1025 msm_devfreq_init(gpu);
1026
1027
1028 gpu->aspace = gpu->funcs->create_address_space(gpu, pdev);
1029
1030 if (gpu->aspace == NULL)
1031 DRM_DEV_INFO(drm->dev, "%s: no IOMMU, fallback to VRAM carveout!\n", name);
1032 else if (IS_ERR(gpu->aspace)) {
1033 ret = PTR_ERR(gpu->aspace);
1034 goto fail;
1035 }
1036
1037 memptrs = msm_gem_kernel_new(drm,
1038 sizeof(struct msm_rbmemptrs) * nr_rings,
1039 check_apriv(gpu, MSM_BO_UNCACHED), gpu->aspace, &gpu->memptrs_bo,
1040 &memptrs_iova);
1041
1042 if (IS_ERR(memptrs)) {
1043 ret = PTR_ERR(memptrs);
1044 DRM_DEV_ERROR(drm->dev, "could not allocate memptrs: %d\n", ret);
1045 goto fail;
1046 }
1047
1048 msm_gem_object_set_name(gpu->memptrs_bo, "memptrs");
1049
1050 if (nr_rings > ARRAY_SIZE(gpu->rb)) {
1051 DRM_DEV_INFO_ONCE(drm->dev, "Only creating %zu ringbuffers\n",
1052 ARRAY_SIZE(gpu->rb));
1053 nr_rings = ARRAY_SIZE(gpu->rb);
1054 }
1055
1056 /* Create ringbuffer(s): */
1057 for (i = 0; i < nr_rings; i++) {
1058 gpu->rb[i] = msm_ringbuffer_new(gpu, i, memptrs, memptrs_iova);
1059
1060 if (IS_ERR(gpu->rb[i])) {
1061 ret = PTR_ERR(gpu->rb[i]);
1062 DRM_DEV_ERROR(drm->dev,
1063 "could not create ringbuffer %d: %d\n", i, ret);
1064 goto fail;
1065 }
1066
1067 memptrs += sizeof(struct msm_rbmemptrs);
1068 memptrs_iova += sizeof(struct msm_rbmemptrs);
1069 }
1070
1071 gpu->nr_rings = nr_rings;
1072
1073 return 0;
1074
1075fail:
1076 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
1077 msm_ringbuffer_destroy(gpu->rb[i]);
1078 gpu->rb[i] = NULL;
1079 }
1080
1081 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace, false);
1082
1083 platform_set_drvdata(pdev, NULL);
1084 return ret;
1085}
1086
1087void msm_gpu_cleanup(struct msm_gpu *gpu)
1088{
1089 int i;
1090
1091 DBG("%s", gpu->name);
1092
1093 WARN_ON(!list_empty(&gpu->active_list));
1094
1095 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
1096 msm_ringbuffer_destroy(gpu->rb[i]);
1097 gpu->rb[i] = NULL;
1098 }
1099
1100 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace, false);
1101
1102 if (!IS_ERR_OR_NULL(gpu->aspace)) {
1103 gpu->aspace->mmu->funcs->detach(gpu->aspace->mmu);
1104 msm_gem_address_space_put(gpu->aspace);
1105 }
1106
1107 if (gpu->worker) {
1108 kthread_destroy_worker(gpu->worker);
1109 }
1110
1111 devfreq_cooling_unregister(gpu->cooling);
1112}