1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2013 Red Hat
7 #include "drm/drm_drv.h"
12 #include "msm_fence.h"
13 #include "msm_gpu_trace.h"
14 #include "adreno/adreno_gpu.h"
16 #include <generated/utsrelease.h>
17 #include <linux/string_helpers.h>
18 #include <linux/devcoredump.h>
19 #include <linux/sched/task.h>
25 static int enable_pwrrail(struct msm_gpu *gpu)
27 struct drm_device *dev = gpu->dev;
31 ret = regulator_enable(gpu->gpu_reg);
33 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_reg': %d\n", ret);
39 ret = regulator_enable(gpu->gpu_cx);
41 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_cx': %d\n", ret);
49 static int disable_pwrrail(struct msm_gpu *gpu)
52 regulator_disable(gpu->gpu_cx);
54 regulator_disable(gpu->gpu_reg);
58 static int enable_clk(struct msm_gpu *gpu)
60 if (gpu->core_clk && gpu->fast_rate)
61 dev_pm_opp_set_rate(&gpu->pdev->dev, gpu->fast_rate);
63 /* Set the RBBM timer rate to 19.2Mhz */
64 if (gpu->rbbmtimer_clk)
65 clk_set_rate(gpu->rbbmtimer_clk, 19200000);
67 return clk_bulk_prepare_enable(gpu->nr_clocks, gpu->grp_clks);
70 static int disable_clk(struct msm_gpu *gpu)
72 clk_bulk_disable_unprepare(gpu->nr_clocks, gpu->grp_clks);
75 * Set the clock to a deliberately low rate. On older targets the clock
76 * speed had to be non zero to avoid problems. On newer targets this
77 * will be rounded down to zero anyway so it all works out.
80 dev_pm_opp_set_rate(&gpu->pdev->dev, 27000000);
82 if (gpu->rbbmtimer_clk)
83 clk_set_rate(gpu->rbbmtimer_clk, 0);
88 static int enable_axi(struct msm_gpu *gpu)
90 return clk_prepare_enable(gpu->ebi1_clk);
93 static int disable_axi(struct msm_gpu *gpu)
95 clk_disable_unprepare(gpu->ebi1_clk);
99 int msm_gpu_pm_resume(struct msm_gpu *gpu)
103 DBG("%s", gpu->name);
104 trace_msm_gpu_resume(0);
106 ret = enable_pwrrail(gpu);
110 ret = enable_clk(gpu);
114 ret = enable_axi(gpu);
118 msm_devfreq_resume(gpu);
120 gpu->needs_hw_init = true;
125 int msm_gpu_pm_suspend(struct msm_gpu *gpu)
129 DBG("%s", gpu->name);
130 trace_msm_gpu_suspend(0);
132 msm_devfreq_suspend(gpu);
134 ret = disable_axi(gpu);
138 ret = disable_clk(gpu);
142 ret = disable_pwrrail(gpu);
146 gpu->suspend_count++;
151 void msm_gpu_show_fdinfo(struct msm_gpu *gpu, struct msm_file_private *ctx,
152 struct drm_printer *p)
154 drm_printf(p, "drm-engine-gpu:\t%llu ns\n", ctx->elapsed_ns);
155 drm_printf(p, "drm-cycles-gpu:\t%llu\n", ctx->cycles);
156 drm_printf(p, "drm-maxfreq-gpu:\t%u Hz\n", gpu->fast_rate);
159 int msm_gpu_hw_init(struct msm_gpu *gpu)
163 WARN_ON(!mutex_is_locked(&gpu->lock));
165 if (!gpu->needs_hw_init)
168 disable_irq(gpu->irq);
169 ret = gpu->funcs->hw_init(gpu);
171 gpu->needs_hw_init = false;
172 enable_irq(gpu->irq);
177 #ifdef CONFIG_DEV_COREDUMP
178 static ssize_t msm_gpu_devcoredump_read(char *buffer, loff_t offset,
179 size_t count, void *data, size_t datalen)
181 struct msm_gpu *gpu = data;
182 struct drm_print_iterator iter;
183 struct drm_printer p;
184 struct msm_gpu_state *state;
186 state = msm_gpu_crashstate_get(gpu);
195 p = drm_coredump_printer(&iter);
197 drm_printf(&p, "---\n");
198 drm_printf(&p, "kernel: " UTS_RELEASE "\n");
199 drm_printf(&p, "module: " KBUILD_MODNAME "\n");
200 drm_printf(&p, "time: %lld.%09ld\n",
201 state->time.tv_sec, state->time.tv_nsec);
203 drm_printf(&p, "comm: %s\n", state->comm);
205 drm_printf(&p, "cmdline: %s\n", state->cmd);
207 gpu->funcs->show(gpu, state, &p);
209 msm_gpu_crashstate_put(gpu);
211 return count - iter.remain;
214 static void msm_gpu_devcoredump_free(void *data)
216 struct msm_gpu *gpu = data;
218 msm_gpu_crashstate_put(gpu);
221 static void msm_gpu_crashstate_get_bo(struct msm_gpu_state *state,
222 struct drm_gem_object *obj, u64 iova, bool full)
224 struct msm_gpu_state_bo *state_bo = &state->bos[state->nr_bos];
226 /* Don't record write only objects */
227 state_bo->size = obj->size;
228 state_bo->iova = iova;
230 BUILD_BUG_ON(sizeof(state_bo->name) != sizeof(to_msm_bo(obj)->name));
232 memcpy(state_bo->name, to_msm_bo(obj)->name, sizeof(state_bo->name));
237 state_bo->data = kvmalloc(obj->size, GFP_KERNEL);
242 ptr = msm_gem_get_vaddr_active(obj);
245 kvfree(state_bo->data);
246 state_bo->data = NULL;
250 memcpy(state_bo->data, ptr, obj->size);
251 msm_gem_put_vaddr(obj);
257 static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
258 struct msm_gem_submit *submit, char *comm, char *cmd)
260 struct msm_gpu_state *state;
262 /* Check if the target supports capturing crash state */
263 if (!gpu->funcs->gpu_state_get)
266 /* Only save one crash state at a time */
270 state = gpu->funcs->gpu_state_get(gpu);
271 if (IS_ERR_OR_NULL(state))
274 /* Fill in the additional crash state information */
275 state->comm = kstrdup(comm, GFP_KERNEL);
276 state->cmd = kstrdup(cmd, GFP_KERNEL);
277 state->fault_info = gpu->fault_info;
282 state->bos = kcalloc(submit->nr_bos,
283 sizeof(struct msm_gpu_state_bo), GFP_KERNEL);
285 for (i = 0; state->bos && i < submit->nr_bos; i++) {
286 msm_gpu_crashstate_get_bo(state, submit->bos[i].obj,
288 should_dump(submit, i));
292 /* Set the active crash state to be dumped on failure */
293 gpu->crashstate = state;
295 dev_coredumpm(&gpu->pdev->dev, THIS_MODULE, gpu, 0, GFP_KERNEL,
296 msm_gpu_devcoredump_read, msm_gpu_devcoredump_free);
299 static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
300 struct msm_gem_submit *submit, char *comm, char *cmd)
306 * Hangcheck detection for locked gpu:
309 static struct msm_gem_submit *
310 find_submit(struct msm_ringbuffer *ring, uint32_t fence)
312 struct msm_gem_submit *submit;
315 spin_lock_irqsave(&ring->submit_lock, flags);
316 list_for_each_entry(submit, &ring->submits, node) {
317 if (submit->seqno == fence) {
318 spin_unlock_irqrestore(&ring->submit_lock, flags);
322 spin_unlock_irqrestore(&ring->submit_lock, flags);
327 static void retire_submits(struct msm_gpu *gpu);
329 static void get_comm_cmdline(struct msm_gem_submit *submit, char **comm, char **cmd)
331 struct msm_file_private *ctx = submit->queue->ctx;
332 struct task_struct *task;
334 WARN_ON(!mutex_is_locked(&submit->gpu->lock));
336 /* Note that kstrdup will return NULL if argument is NULL: */
337 *comm = kstrdup(ctx->comm, GFP_KERNEL);
338 *cmd = kstrdup(ctx->cmdline, GFP_KERNEL);
340 task = get_pid_task(submit->pid, PIDTYPE_PID);
345 *comm = kstrdup(task->comm, GFP_KERNEL);
348 *cmd = kstrdup_quotable_cmdline(task, GFP_KERNEL);
350 put_task_struct(task);
353 static void recover_worker(struct kthread_work *work)
355 struct msm_gpu *gpu = container_of(work, struct msm_gpu, recover_work);
356 struct drm_device *dev = gpu->dev;
357 struct msm_drm_private *priv = dev->dev_private;
358 struct msm_gem_submit *submit;
359 struct msm_ringbuffer *cur_ring = gpu->funcs->active_ring(gpu);
360 char *comm = NULL, *cmd = NULL;
363 mutex_lock(&gpu->lock);
365 DRM_DEV_ERROR(dev->dev, "%s: hangcheck recover!\n", gpu->name);
367 submit = find_submit(cur_ring, cur_ring->memptrs->fence + 1);
370 * If the submit retired while we were waiting for the worker to run,
371 * or waiting to acquire the gpu lock, then nothing more to do.
376 /* Increment the fault counts */
377 submit->queue->faults++;
379 submit->aspace->faults++;
381 get_comm_cmdline(submit, &comm, &cmd);
384 DRM_DEV_ERROR(dev->dev, "%s: offending task: %s (%s)\n",
385 gpu->name, comm, cmd);
387 msm_rd_dump_submit(priv->hangrd, submit,
388 "offending task: %s (%s)", comm, cmd);
390 DRM_DEV_ERROR(dev->dev, "%s: offending task: unknown\n", gpu->name);
392 msm_rd_dump_submit(priv->hangrd, submit, NULL);
395 /* Record the crash state */
396 pm_runtime_get_sync(&gpu->pdev->dev);
397 msm_gpu_crashstate_capture(gpu, submit, comm, cmd);
403 * Update all the rings with the latest and greatest fence.. this
404 * needs to happen after msm_rd_dump_submit() to ensure that the
405 * bo's referenced by the offending submit are still around.
407 for (i = 0; i < gpu->nr_rings; i++) {
408 struct msm_ringbuffer *ring = gpu->rb[i];
410 uint32_t fence = ring->memptrs->fence;
413 * For the current (faulting?) ring/submit advance the fence by
414 * one more to clear the faulting submit
416 if (ring == cur_ring)
417 ring->memptrs->fence = ++fence;
419 msm_update_fence(ring->fctx, fence);
422 if (msm_gpu_active(gpu)) {
423 /* retire completed submits, plus the one that hung: */
426 gpu->funcs->recover(gpu);
429 * Replay all remaining submits starting with highest priority
432 for (i = 0; i < gpu->nr_rings; i++) {
433 struct msm_ringbuffer *ring = gpu->rb[i];
436 spin_lock_irqsave(&ring->submit_lock, flags);
437 list_for_each_entry(submit, &ring->submits, node)
438 gpu->funcs->submit(gpu, submit);
439 spin_unlock_irqrestore(&ring->submit_lock, flags);
443 pm_runtime_put(&gpu->pdev->dev);
446 mutex_unlock(&gpu->lock);
451 static void fault_worker(struct kthread_work *work)
453 struct msm_gpu *gpu = container_of(work, struct msm_gpu, fault_work);
454 struct msm_gem_submit *submit;
455 struct msm_ringbuffer *cur_ring = gpu->funcs->active_ring(gpu);
456 char *comm = NULL, *cmd = NULL;
458 mutex_lock(&gpu->lock);
460 submit = find_submit(cur_ring, cur_ring->memptrs->fence + 1);
461 if (submit && submit->fault_dumped)
465 get_comm_cmdline(submit, &comm, &cmd);
468 * When we get GPU iova faults, we can get 1000s of them,
469 * but we really only want to log the first one.
471 submit->fault_dumped = true;
474 /* Record the crash state */
475 pm_runtime_get_sync(&gpu->pdev->dev);
476 msm_gpu_crashstate_capture(gpu, submit, comm, cmd);
477 pm_runtime_put_sync(&gpu->pdev->dev);
483 memset(&gpu->fault_info, 0, sizeof(gpu->fault_info));
484 gpu->aspace->mmu->funcs->resume_translation(gpu->aspace->mmu);
486 mutex_unlock(&gpu->lock);
489 static void hangcheck_timer_reset(struct msm_gpu *gpu)
491 struct msm_drm_private *priv = gpu->dev->dev_private;
492 mod_timer(&gpu->hangcheck_timer,
493 round_jiffies_up(jiffies + msecs_to_jiffies(priv->hangcheck_period)));
496 static bool made_progress(struct msm_gpu *gpu, struct msm_ringbuffer *ring)
498 if (ring->hangcheck_progress_retries >= DRM_MSM_HANGCHECK_PROGRESS_RETRIES)
501 if (!gpu->funcs->progress)
504 if (!gpu->funcs->progress(gpu, ring))
507 ring->hangcheck_progress_retries++;
511 static void hangcheck_handler(struct timer_list *t)
513 struct msm_gpu *gpu = from_timer(gpu, t, hangcheck_timer);
514 struct drm_device *dev = gpu->dev;
515 struct msm_ringbuffer *ring = gpu->funcs->active_ring(gpu);
516 uint32_t fence = ring->memptrs->fence;
518 if (fence != ring->hangcheck_fence) {
519 /* some progress has been made.. ya! */
520 ring->hangcheck_fence = fence;
521 ring->hangcheck_progress_retries = 0;
522 } else if (fence_before(fence, ring->fctx->last_fence) &&
523 !made_progress(gpu, ring)) {
524 /* no progress and not done.. hung! */
525 ring->hangcheck_fence = fence;
526 ring->hangcheck_progress_retries = 0;
527 DRM_DEV_ERROR(dev->dev, "%s: hangcheck detected gpu lockup rb %d!\n",
528 gpu->name, ring->id);
529 DRM_DEV_ERROR(dev->dev, "%s: completed fence: %u\n",
531 DRM_DEV_ERROR(dev->dev, "%s: submitted fence: %u\n",
532 gpu->name, ring->fctx->last_fence);
534 kthread_queue_work(gpu->worker, &gpu->recover_work);
537 /* if still more pending work, reset the hangcheck timer: */
538 if (fence_after(ring->fctx->last_fence, ring->hangcheck_fence))
539 hangcheck_timer_reset(gpu);
541 /* workaround for missing irq: */
546 * Performance Counters:
549 /* called under perf_lock */
550 static int update_hw_cntrs(struct msm_gpu *gpu, uint32_t ncntrs, uint32_t *cntrs)
552 uint32_t current_cntrs[ARRAY_SIZE(gpu->last_cntrs)];
553 int i, n = min(ncntrs, gpu->num_perfcntrs);
555 /* read current values: */
556 for (i = 0; i < gpu->num_perfcntrs; i++)
557 current_cntrs[i] = gpu_read(gpu, gpu->perfcntrs[i].sample_reg);
560 for (i = 0; i < n; i++)
561 cntrs[i] = current_cntrs[i] - gpu->last_cntrs[i];
563 /* save current values: */
564 for (i = 0; i < gpu->num_perfcntrs; i++)
565 gpu->last_cntrs[i] = current_cntrs[i];
570 static void update_sw_cntrs(struct msm_gpu *gpu)
576 spin_lock_irqsave(&gpu->perf_lock, flags);
577 if (!gpu->perfcntr_active)
581 elapsed = ktime_to_us(ktime_sub(time, gpu->last_sample.time));
583 gpu->totaltime += elapsed;
584 if (gpu->last_sample.active)
585 gpu->activetime += elapsed;
587 gpu->last_sample.active = msm_gpu_active(gpu);
588 gpu->last_sample.time = time;
591 spin_unlock_irqrestore(&gpu->perf_lock, flags);
594 void msm_gpu_perfcntr_start(struct msm_gpu *gpu)
598 pm_runtime_get_sync(&gpu->pdev->dev);
600 spin_lock_irqsave(&gpu->perf_lock, flags);
601 /* we could dynamically enable/disable perfcntr registers too.. */
602 gpu->last_sample.active = msm_gpu_active(gpu);
603 gpu->last_sample.time = ktime_get();
604 gpu->activetime = gpu->totaltime = 0;
605 gpu->perfcntr_active = true;
606 update_hw_cntrs(gpu, 0, NULL);
607 spin_unlock_irqrestore(&gpu->perf_lock, flags);
610 void msm_gpu_perfcntr_stop(struct msm_gpu *gpu)
612 gpu->perfcntr_active = false;
613 pm_runtime_put_sync(&gpu->pdev->dev);
616 /* returns -errno or # of cntrs sampled */
617 int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
618 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs)
623 spin_lock_irqsave(&gpu->perf_lock, flags);
625 if (!gpu->perfcntr_active) {
630 *activetime = gpu->activetime;
631 *totaltime = gpu->totaltime;
633 gpu->activetime = gpu->totaltime = 0;
635 ret = update_hw_cntrs(gpu, ncntrs, cntrs);
638 spin_unlock_irqrestore(&gpu->perf_lock, flags);
644 * Cmdstream submission/retirement:
647 static void retire_submit(struct msm_gpu *gpu, struct msm_ringbuffer *ring,
648 struct msm_gem_submit *submit)
650 int index = submit->seqno % MSM_GPU_SUBMIT_STATS_COUNT;
651 volatile struct msm_gpu_submit_stats *stats;
652 u64 elapsed, clock = 0, cycles;
655 stats = &ring->memptrs->stats[index];
656 /* Convert 19.2Mhz alwayson ticks to nanoseconds for elapsed time */
657 elapsed = (stats->alwayson_end - stats->alwayson_start) * 10000;
658 do_div(elapsed, 192);
660 cycles = stats->cpcycles_end - stats->cpcycles_start;
662 /* Calculate the clock frequency from the number of CP cycles */
664 clock = cycles * 1000;
665 do_div(clock, elapsed);
668 submit->queue->ctx->elapsed_ns += elapsed;
669 submit->queue->ctx->cycles += cycles;
671 trace_msm_gpu_submit_retired(submit, elapsed, clock,
672 stats->alwayson_start, stats->alwayson_end);
674 msm_submit_retire(submit);
676 pm_runtime_mark_last_busy(&gpu->pdev->dev);
678 spin_lock_irqsave(&ring->submit_lock, flags);
679 list_del(&submit->node);
680 spin_unlock_irqrestore(&ring->submit_lock, flags);
682 /* Update devfreq on transition from active->idle: */
683 mutex_lock(&gpu->active_lock);
684 gpu->active_submits--;
685 WARN_ON(gpu->active_submits < 0);
686 if (!gpu->active_submits) {
687 msm_devfreq_idle(gpu);
688 pm_runtime_put_autosuspend(&gpu->pdev->dev);
691 mutex_unlock(&gpu->active_lock);
693 msm_gem_submit_put(submit);
696 static void retire_submits(struct msm_gpu *gpu)
700 /* Retire the commits starting with highest priority */
701 for (i = 0; i < gpu->nr_rings; i++) {
702 struct msm_ringbuffer *ring = gpu->rb[i];
705 struct msm_gem_submit *submit = NULL;
708 spin_lock_irqsave(&ring->submit_lock, flags);
709 submit = list_first_entry_or_null(&ring->submits,
710 struct msm_gem_submit, node);
711 spin_unlock_irqrestore(&ring->submit_lock, flags);
714 * If no submit, we are done. If submit->fence hasn't
715 * been signalled, then later submits are not signalled
716 * either, so we are also done.
718 if (submit && dma_fence_is_signaled(submit->hw_fence)) {
719 retire_submit(gpu, ring, submit);
726 wake_up_all(&gpu->retire_event);
729 static void retire_worker(struct kthread_work *work)
731 struct msm_gpu *gpu = container_of(work, struct msm_gpu, retire_work);
736 /* call from irq handler to schedule work to retire bo's */
737 void msm_gpu_retire(struct msm_gpu *gpu)
741 for (i = 0; i < gpu->nr_rings; i++)
742 msm_update_fence(gpu->rb[i]->fctx, gpu->rb[i]->memptrs->fence);
744 kthread_queue_work(gpu->worker, &gpu->retire_work);
745 update_sw_cntrs(gpu);
748 /* add bo's to gpu's ring, and kick gpu: */
749 void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit)
751 struct msm_ringbuffer *ring = submit->ring;
754 pm_runtime_get_sync(&gpu->pdev->dev);
756 mutex_lock(&gpu->lock);
758 msm_gpu_hw_init(gpu);
760 update_sw_cntrs(gpu);
763 * ring->submits holds a ref to the submit, to deal with the case
764 * that a submit completes before msm_ioctl_gem_submit() returns.
766 msm_gem_submit_get(submit);
768 spin_lock_irqsave(&ring->submit_lock, flags);
769 list_add_tail(&submit->node, &ring->submits);
770 spin_unlock_irqrestore(&ring->submit_lock, flags);
772 /* Update devfreq on transition from idle->active: */
773 mutex_lock(&gpu->active_lock);
774 if (!gpu->active_submits) {
775 pm_runtime_get(&gpu->pdev->dev);
776 msm_devfreq_active(gpu);
778 gpu->active_submits++;
779 mutex_unlock(&gpu->active_lock);
781 gpu->funcs->submit(gpu, submit);
782 gpu->cur_ctx_seqno = submit->queue->ctx->seqno;
784 hangcheck_timer_reset(gpu);
786 mutex_unlock(&gpu->lock);
788 pm_runtime_put(&gpu->pdev->dev);
795 static irqreturn_t irq_handler(int irq, void *data)
797 struct msm_gpu *gpu = data;
798 return gpu->funcs->irq(gpu);
801 static int get_clocks(struct platform_device *pdev, struct msm_gpu *gpu)
803 int ret = devm_clk_bulk_get_all(&pdev->dev, &gpu->grp_clks);
810 gpu->nr_clocks = ret;
812 gpu->core_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
813 gpu->nr_clocks, "core");
815 gpu->rbbmtimer_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
816 gpu->nr_clocks, "rbbmtimer");
821 /* Return a new address space for a msm_drm_private instance */
822 struct msm_gem_address_space *
823 msm_gpu_create_private_address_space(struct msm_gpu *gpu, struct task_struct *task)
825 struct msm_gem_address_space *aspace = NULL;
830 * If the target doesn't support private address spaces then return
833 if (gpu->funcs->create_private_address_space) {
834 aspace = gpu->funcs->create_private_address_space(gpu);
836 aspace->pid = get_pid(task_pid(task));
839 if (IS_ERR_OR_NULL(aspace))
840 aspace = msm_gem_address_space_get(gpu->aspace);
845 int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
846 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
847 const char *name, struct msm_gpu_config *config)
849 struct msm_drm_private *priv = drm->dev_private;
850 int i, ret, nr_rings = config->nr_rings;
852 uint64_t memptrs_iova;
854 if (WARN_ON(gpu->num_perfcntrs > ARRAY_SIZE(gpu->last_cntrs)))
855 gpu->num_perfcntrs = ARRAY_SIZE(gpu->last_cntrs);
861 gpu->worker = kthread_create_worker(0, "gpu-worker");
862 if (IS_ERR(gpu->worker)) {
863 ret = PTR_ERR(gpu->worker);
868 sched_set_fifo_low(gpu->worker->task);
870 mutex_init(&gpu->active_lock);
871 mutex_init(&gpu->lock);
872 init_waitqueue_head(&gpu->retire_event);
873 kthread_init_work(&gpu->retire_work, retire_worker);
874 kthread_init_work(&gpu->recover_work, recover_worker);
875 kthread_init_work(&gpu->fault_work, fault_worker);
877 priv->hangcheck_period = DRM_MSM_HANGCHECK_DEFAULT_PERIOD;
880 * If progress detection is supported, halve the hangcheck timer
881 * duration, as it takes two iterations of the hangcheck handler
885 priv->hangcheck_period /= 2;
887 timer_setup(&gpu->hangcheck_timer, hangcheck_handler, 0);
889 spin_lock_init(&gpu->perf_lock);
893 gpu->mmio = msm_ioremap(pdev, config->ioname);
894 if (IS_ERR(gpu->mmio)) {
895 ret = PTR_ERR(gpu->mmio);
900 gpu->irq = platform_get_irq(pdev, 0);
906 ret = devm_request_irq(&pdev->dev, gpu->irq, irq_handler,
907 IRQF_TRIGGER_HIGH, "gpu-irq", gpu);
909 DRM_DEV_ERROR(drm->dev, "failed to request IRQ%u: %d\n", gpu->irq, ret);
913 ret = get_clocks(pdev, gpu);
917 gpu->ebi1_clk = msm_clk_get(pdev, "bus");
918 DBG("ebi1_clk: %p", gpu->ebi1_clk);
919 if (IS_ERR(gpu->ebi1_clk))
920 gpu->ebi1_clk = NULL;
922 /* Acquire regulators: */
923 gpu->gpu_reg = devm_regulator_get(&pdev->dev, "vdd");
924 DBG("gpu_reg: %p", gpu->gpu_reg);
925 if (IS_ERR(gpu->gpu_reg))
928 gpu->gpu_cx = devm_regulator_get(&pdev->dev, "vddcx");
929 DBG("gpu_cx: %p", gpu->gpu_cx);
930 if (IS_ERR(gpu->gpu_cx))
934 platform_set_drvdata(pdev, &gpu->adreno_smmu);
936 msm_devfreq_init(gpu);
939 gpu->aspace = gpu->funcs->create_address_space(gpu, pdev);
941 if (gpu->aspace == NULL)
942 DRM_DEV_INFO(drm->dev, "%s: no IOMMU, fallback to VRAM carveout!\n", name);
943 else if (IS_ERR(gpu->aspace)) {
944 ret = PTR_ERR(gpu->aspace);
948 memptrs = msm_gem_kernel_new(drm,
949 sizeof(struct msm_rbmemptrs) * nr_rings,
950 check_apriv(gpu, MSM_BO_WC), gpu->aspace, &gpu->memptrs_bo,
953 if (IS_ERR(memptrs)) {
954 ret = PTR_ERR(memptrs);
955 DRM_DEV_ERROR(drm->dev, "could not allocate memptrs: %d\n", ret);
959 msm_gem_object_set_name(gpu->memptrs_bo, "memptrs");
961 if (nr_rings > ARRAY_SIZE(gpu->rb)) {
962 DRM_DEV_INFO_ONCE(drm->dev, "Only creating %zu ringbuffers\n",
963 ARRAY_SIZE(gpu->rb));
964 nr_rings = ARRAY_SIZE(gpu->rb);
967 /* Create ringbuffer(s): */
968 for (i = 0; i < nr_rings; i++) {
969 gpu->rb[i] = msm_ringbuffer_new(gpu, i, memptrs, memptrs_iova);
971 if (IS_ERR(gpu->rb[i])) {
972 ret = PTR_ERR(gpu->rb[i]);
973 DRM_DEV_ERROR(drm->dev,
974 "could not create ringbuffer %d: %d\n", i, ret);
978 memptrs += sizeof(struct msm_rbmemptrs);
979 memptrs_iova += sizeof(struct msm_rbmemptrs);
982 gpu->nr_rings = nr_rings;
984 refcount_set(&gpu->sysprof_active, 1);
989 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
990 msm_ringbuffer_destroy(gpu->rb[i]);
994 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace);
996 platform_set_drvdata(pdev, NULL);
1000 void msm_gpu_cleanup(struct msm_gpu *gpu)
1004 DBG("%s", gpu->name);
1006 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
1007 msm_ringbuffer_destroy(gpu->rb[i]);
1011 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace);
1013 if (!IS_ERR_OR_NULL(gpu->aspace)) {
1014 gpu->aspace->mmu->funcs->detach(gpu->aspace->mmu);
1015 msm_gem_address_space_put(gpu->aspace);
1019 kthread_destroy_worker(gpu->worker);
1022 msm_devfreq_cleanup(gpu);
1024 platform_set_drvdata(gpu->pdev, NULL);