1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2013 Red Hat
10 #include "msm_fence.h"
11 #include "msm_gpu_trace.h"
12 #include "adreno/adreno_gpu.h"
14 #include <generated/utsrelease.h>
15 #include <linux/string_helpers.h>
16 #include <linux/devfreq.h>
17 #include <linux/devcoredump.h>
18 #include <linux/sched/task.h>
24 static int msm_devfreq_target(struct device *dev, unsigned long *freq,
27 struct msm_gpu *gpu = platform_get_drvdata(to_platform_device(dev));
28 struct dev_pm_opp *opp;
30 opp = devfreq_recommended_opp(dev, freq, flags);
35 if (gpu->funcs->gpu_set_freq)
36 gpu->funcs->gpu_set_freq(gpu, opp);
38 clk_set_rate(gpu->core_clk, *freq);
45 static int msm_devfreq_get_dev_status(struct device *dev,
46 struct devfreq_dev_status *status)
48 struct msm_gpu *gpu = platform_get_drvdata(to_platform_device(dev));
51 if (gpu->funcs->gpu_get_freq)
52 status->current_frequency = gpu->funcs->gpu_get_freq(gpu);
54 status->current_frequency = clk_get_rate(gpu->core_clk);
56 status->busy_time = gpu->funcs->gpu_busy(gpu);
59 status->total_time = ktime_us_delta(time, gpu->devfreq.time);
60 gpu->devfreq.time = time;
65 static int msm_devfreq_get_cur_freq(struct device *dev, unsigned long *freq)
67 struct msm_gpu *gpu = platform_get_drvdata(to_platform_device(dev));
69 if (gpu->funcs->gpu_get_freq)
70 *freq = gpu->funcs->gpu_get_freq(gpu);
72 *freq = clk_get_rate(gpu->core_clk);
77 static struct devfreq_dev_profile msm_devfreq_profile = {
79 .target = msm_devfreq_target,
80 .get_dev_status = msm_devfreq_get_dev_status,
81 .get_cur_freq = msm_devfreq_get_cur_freq,
84 static void msm_devfreq_init(struct msm_gpu *gpu)
86 /* We need target support to do devfreq */
87 if (!gpu->funcs->gpu_busy)
90 msm_devfreq_profile.initial_freq = gpu->fast_rate;
93 * Don't set the freq_table or max_state and let devfreq build the table
95 * After a deferred probe, these may have be left to non-zero values,
96 * so set them back to zero before creating the devfreq device
98 msm_devfreq_profile.freq_table = NULL;
99 msm_devfreq_profile.max_state = 0;
101 gpu->devfreq.devfreq = devm_devfreq_add_device(&gpu->pdev->dev,
102 &msm_devfreq_profile, DEVFREQ_GOV_SIMPLE_ONDEMAND,
105 if (IS_ERR(gpu->devfreq.devfreq)) {
106 DRM_DEV_ERROR(&gpu->pdev->dev, "Couldn't initialize GPU devfreq\n");
107 gpu->devfreq.devfreq = NULL;
110 devfreq_suspend_device(gpu->devfreq.devfreq);
113 static int enable_pwrrail(struct msm_gpu *gpu)
115 struct drm_device *dev = gpu->dev;
119 ret = regulator_enable(gpu->gpu_reg);
121 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_reg': %d\n", ret);
127 ret = regulator_enable(gpu->gpu_cx);
129 DRM_DEV_ERROR(dev->dev, "failed to enable 'gpu_cx': %d\n", ret);
137 static int disable_pwrrail(struct msm_gpu *gpu)
140 regulator_disable(gpu->gpu_cx);
142 regulator_disable(gpu->gpu_reg);
146 static int enable_clk(struct msm_gpu *gpu)
148 if (gpu->core_clk && gpu->fast_rate)
149 clk_set_rate(gpu->core_clk, gpu->fast_rate);
151 /* Set the RBBM timer rate to 19.2Mhz */
152 if (gpu->rbbmtimer_clk)
153 clk_set_rate(gpu->rbbmtimer_clk, 19200000);
155 return clk_bulk_prepare_enable(gpu->nr_clocks, gpu->grp_clks);
158 static int disable_clk(struct msm_gpu *gpu)
160 clk_bulk_disable_unprepare(gpu->nr_clocks, gpu->grp_clks);
163 * Set the clock to a deliberately low rate. On older targets the clock
164 * speed had to be non zero to avoid problems. On newer targets this
165 * will be rounded down to zero anyway so it all works out.
168 clk_set_rate(gpu->core_clk, 27000000);
170 if (gpu->rbbmtimer_clk)
171 clk_set_rate(gpu->rbbmtimer_clk, 0);
176 static int enable_axi(struct msm_gpu *gpu)
179 clk_prepare_enable(gpu->ebi1_clk);
183 static int disable_axi(struct msm_gpu *gpu)
186 clk_disable_unprepare(gpu->ebi1_clk);
190 void msm_gpu_resume_devfreq(struct msm_gpu *gpu)
192 gpu->devfreq.busy_cycles = 0;
193 gpu->devfreq.time = ktime_get();
195 devfreq_resume_device(gpu->devfreq.devfreq);
198 int msm_gpu_pm_resume(struct msm_gpu *gpu)
202 DBG("%s", gpu->name);
204 ret = enable_pwrrail(gpu);
208 ret = enable_clk(gpu);
212 ret = enable_axi(gpu);
216 msm_gpu_resume_devfreq(gpu);
218 gpu->needs_hw_init = true;
223 int msm_gpu_pm_suspend(struct msm_gpu *gpu)
227 DBG("%s", gpu->name);
229 devfreq_suspend_device(gpu->devfreq.devfreq);
231 ret = disable_axi(gpu);
235 ret = disable_clk(gpu);
239 ret = disable_pwrrail(gpu);
246 int msm_gpu_hw_init(struct msm_gpu *gpu)
250 WARN_ON(!mutex_is_locked(&gpu->dev->struct_mutex));
252 if (!gpu->needs_hw_init)
255 disable_irq(gpu->irq);
256 ret = gpu->funcs->hw_init(gpu);
258 gpu->needs_hw_init = false;
259 enable_irq(gpu->irq);
264 #ifdef CONFIG_DEV_COREDUMP
265 static ssize_t msm_gpu_devcoredump_read(char *buffer, loff_t offset,
266 size_t count, void *data, size_t datalen)
268 struct msm_gpu *gpu = data;
269 struct drm_print_iterator iter;
270 struct drm_printer p;
271 struct msm_gpu_state *state;
273 state = msm_gpu_crashstate_get(gpu);
282 p = drm_coredump_printer(&iter);
284 drm_printf(&p, "---\n");
285 drm_printf(&p, "kernel: " UTS_RELEASE "\n");
286 drm_printf(&p, "module: " KBUILD_MODNAME "\n");
287 drm_printf(&p, "time: %lld.%09ld\n",
288 state->time.tv_sec, state->time.tv_nsec);
290 drm_printf(&p, "comm: %s\n", state->comm);
292 drm_printf(&p, "cmdline: %s\n", state->cmd);
294 gpu->funcs->show(gpu, state, &p);
296 msm_gpu_crashstate_put(gpu);
298 return count - iter.remain;
301 static void msm_gpu_devcoredump_free(void *data)
303 struct msm_gpu *gpu = data;
305 msm_gpu_crashstate_put(gpu);
308 static void msm_gpu_crashstate_get_bo(struct msm_gpu_state *state,
309 struct msm_gem_object *obj, u64 iova, u32 flags)
311 struct msm_gpu_state_bo *state_bo = &state->bos[state->nr_bos];
313 /* Don't record write only objects */
314 state_bo->size = obj->base.size;
315 state_bo->iova = iova;
317 /* Only store data for non imported buffer objects marked for read */
318 if ((flags & MSM_SUBMIT_BO_READ) && !obj->base.import_attach) {
321 state_bo->data = kvmalloc(obj->base.size, GFP_KERNEL);
325 ptr = msm_gem_get_vaddr_active(&obj->base);
327 kvfree(state_bo->data);
328 state_bo->data = NULL;
332 memcpy(state_bo->data, ptr, obj->base.size);
333 msm_gem_put_vaddr(&obj->base);
339 static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
340 struct msm_gem_submit *submit, char *comm, char *cmd)
342 struct msm_gpu_state *state;
344 /* Check if the target supports capturing crash state */
345 if (!gpu->funcs->gpu_state_get)
348 /* Only save one crash state at a time */
352 state = gpu->funcs->gpu_state_get(gpu);
353 if (IS_ERR_OR_NULL(state))
356 /* Fill in the additional crash state information */
357 state->comm = kstrdup(comm, GFP_KERNEL);
358 state->cmd = kstrdup(cmd, GFP_KERNEL);
363 /* count # of buffers to dump: */
364 for (i = 0; i < submit->nr_bos; i++)
365 if (should_dump(submit, i))
367 /* always dump cmd bo's, but don't double count them: */
368 for (i = 0; i < submit->nr_cmds; i++)
369 if (!should_dump(submit, submit->cmd[i].idx))
372 state->bos = kcalloc(nr,
373 sizeof(struct msm_gpu_state_bo), GFP_KERNEL);
375 for (i = 0; i < submit->nr_bos; i++) {
376 if (should_dump(submit, i)) {
377 msm_gpu_crashstate_get_bo(state, submit->bos[i].obj,
378 submit->bos[i].iova, submit->bos[i].flags);
382 for (i = 0; state->bos && i < submit->nr_cmds; i++) {
383 int idx = submit->cmd[i].idx;
385 if (!should_dump(submit, submit->cmd[i].idx)) {
386 msm_gpu_crashstate_get_bo(state, submit->bos[idx].obj,
387 submit->bos[idx].iova, submit->bos[idx].flags);
392 /* Set the active crash state to be dumped on failure */
393 gpu->crashstate = state;
395 /* FIXME: Release the crashstate if this errors out? */
396 dev_coredumpm(gpu->dev->dev, THIS_MODULE, gpu, 0, GFP_KERNEL,
397 msm_gpu_devcoredump_read, msm_gpu_devcoredump_free);
400 static void msm_gpu_crashstate_capture(struct msm_gpu *gpu,
401 struct msm_gem_submit *submit, char *comm, char *cmd)
407 * Hangcheck detection for locked gpu:
410 static void update_fences(struct msm_gpu *gpu, struct msm_ringbuffer *ring,
413 struct msm_gem_submit *submit;
415 list_for_each_entry(submit, &ring->submits, node) {
416 if (submit->seqno > fence)
419 msm_update_fence(submit->ring->fctx,
420 submit->fence->seqno);
424 static struct msm_gem_submit *
425 find_submit(struct msm_ringbuffer *ring, uint32_t fence)
427 struct msm_gem_submit *submit;
429 WARN_ON(!mutex_is_locked(&ring->gpu->dev->struct_mutex));
431 list_for_each_entry(submit, &ring->submits, node)
432 if (submit->seqno == fence)
438 static void retire_submits(struct msm_gpu *gpu);
440 static void recover_worker(struct work_struct *work)
442 struct msm_gpu *gpu = container_of(work, struct msm_gpu, recover_work);
443 struct drm_device *dev = gpu->dev;
444 struct msm_drm_private *priv = dev->dev_private;
445 struct msm_gem_submit *submit;
446 struct msm_ringbuffer *cur_ring = gpu->funcs->active_ring(gpu);
447 char *comm = NULL, *cmd = NULL;
450 mutex_lock(&dev->struct_mutex);
452 DRM_DEV_ERROR(dev->dev, "%s: hangcheck recover!\n", gpu->name);
454 submit = find_submit(cur_ring, cur_ring->memptrs->fence + 1);
456 struct task_struct *task;
458 /* Increment the fault counts */
459 gpu->global_faults++;
460 submit->queue->faults++;
462 task = get_pid_task(submit->pid, PIDTYPE_PID);
464 comm = kstrdup(task->comm, GFP_KERNEL);
465 cmd = kstrdup_quotable_cmdline(task, GFP_KERNEL);
466 put_task_struct(task);
470 DRM_DEV_ERROR(dev->dev, "%s: offending task: %s (%s)\n",
471 gpu->name, comm, cmd);
473 msm_rd_dump_submit(priv->hangrd, submit,
474 "offending task: %s (%s)", comm, cmd);
476 msm_rd_dump_submit(priv->hangrd, submit, NULL);
479 /* Record the crash state */
480 pm_runtime_get_sync(&gpu->pdev->dev);
481 msm_gpu_crashstate_capture(gpu, submit, comm, cmd);
482 pm_runtime_put_sync(&gpu->pdev->dev);
488 * Update all the rings with the latest and greatest fence.. this
489 * needs to happen after msm_rd_dump_submit() to ensure that the
490 * bo's referenced by the offending submit are still around.
492 for (i = 0; i < gpu->nr_rings; i++) {
493 struct msm_ringbuffer *ring = gpu->rb[i];
495 uint32_t fence = ring->memptrs->fence;
498 * For the current (faulting?) ring/submit advance the fence by
499 * one more to clear the faulting submit
501 if (ring == cur_ring)
504 update_fences(gpu, ring, fence);
507 if (msm_gpu_active(gpu)) {
508 /* retire completed submits, plus the one that hung: */
511 pm_runtime_get_sync(&gpu->pdev->dev);
512 gpu->funcs->recover(gpu);
513 pm_runtime_put_sync(&gpu->pdev->dev);
516 * Replay all remaining submits starting with highest priority
519 for (i = 0; i < gpu->nr_rings; i++) {
520 struct msm_ringbuffer *ring = gpu->rb[i];
522 list_for_each_entry(submit, &ring->submits, node)
523 gpu->funcs->submit(gpu, submit, NULL);
527 mutex_unlock(&dev->struct_mutex);
532 static void hangcheck_timer_reset(struct msm_gpu *gpu)
534 DBG("%s", gpu->name);
535 mod_timer(&gpu->hangcheck_timer,
536 round_jiffies_up(jiffies + DRM_MSM_HANGCHECK_JIFFIES));
539 static void hangcheck_handler(struct timer_list *t)
541 struct msm_gpu *gpu = from_timer(gpu, t, hangcheck_timer);
542 struct drm_device *dev = gpu->dev;
543 struct msm_drm_private *priv = dev->dev_private;
544 struct msm_ringbuffer *ring = gpu->funcs->active_ring(gpu);
545 uint32_t fence = ring->memptrs->fence;
547 if (fence != ring->hangcheck_fence) {
548 /* some progress has been made.. ya! */
549 ring->hangcheck_fence = fence;
550 } else if (fence < ring->seqno) {
551 /* no progress and not done.. hung! */
552 ring->hangcheck_fence = fence;
553 DRM_DEV_ERROR(dev->dev, "%s: hangcheck detected gpu lockup rb %d!\n",
554 gpu->name, ring->id);
555 DRM_DEV_ERROR(dev->dev, "%s: completed fence: %u\n",
557 DRM_DEV_ERROR(dev->dev, "%s: submitted fence: %u\n",
558 gpu->name, ring->seqno);
560 queue_work(priv->wq, &gpu->recover_work);
563 /* if still more pending work, reset the hangcheck timer: */
564 if (ring->seqno > ring->hangcheck_fence)
565 hangcheck_timer_reset(gpu);
567 /* workaround for missing irq: */
568 queue_work(priv->wq, &gpu->retire_work);
572 * Performance Counters:
575 /* called under perf_lock */
576 static int update_hw_cntrs(struct msm_gpu *gpu, uint32_t ncntrs, uint32_t *cntrs)
578 uint32_t current_cntrs[ARRAY_SIZE(gpu->last_cntrs)];
579 int i, n = min(ncntrs, gpu->num_perfcntrs);
581 /* read current values: */
582 for (i = 0; i < gpu->num_perfcntrs; i++)
583 current_cntrs[i] = gpu_read(gpu, gpu->perfcntrs[i].sample_reg);
586 for (i = 0; i < n; i++)
587 cntrs[i] = current_cntrs[i] - gpu->last_cntrs[i];
589 /* save current values: */
590 for (i = 0; i < gpu->num_perfcntrs; i++)
591 gpu->last_cntrs[i] = current_cntrs[i];
596 static void update_sw_cntrs(struct msm_gpu *gpu)
602 spin_lock_irqsave(&gpu->perf_lock, flags);
603 if (!gpu->perfcntr_active)
607 elapsed = ktime_to_us(ktime_sub(time, gpu->last_sample.time));
609 gpu->totaltime += elapsed;
610 if (gpu->last_sample.active)
611 gpu->activetime += elapsed;
613 gpu->last_sample.active = msm_gpu_active(gpu);
614 gpu->last_sample.time = time;
617 spin_unlock_irqrestore(&gpu->perf_lock, flags);
620 void msm_gpu_perfcntr_start(struct msm_gpu *gpu)
624 pm_runtime_get_sync(&gpu->pdev->dev);
626 spin_lock_irqsave(&gpu->perf_lock, flags);
627 /* we could dynamically enable/disable perfcntr registers too.. */
628 gpu->last_sample.active = msm_gpu_active(gpu);
629 gpu->last_sample.time = ktime_get();
630 gpu->activetime = gpu->totaltime = 0;
631 gpu->perfcntr_active = true;
632 update_hw_cntrs(gpu, 0, NULL);
633 spin_unlock_irqrestore(&gpu->perf_lock, flags);
636 void msm_gpu_perfcntr_stop(struct msm_gpu *gpu)
638 gpu->perfcntr_active = false;
639 pm_runtime_put_sync(&gpu->pdev->dev);
642 /* returns -errno or # of cntrs sampled */
643 int msm_gpu_perfcntr_sample(struct msm_gpu *gpu, uint32_t *activetime,
644 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs)
649 spin_lock_irqsave(&gpu->perf_lock, flags);
651 if (!gpu->perfcntr_active) {
656 *activetime = gpu->activetime;
657 *totaltime = gpu->totaltime;
659 gpu->activetime = gpu->totaltime = 0;
661 ret = update_hw_cntrs(gpu, ncntrs, cntrs);
664 spin_unlock_irqrestore(&gpu->perf_lock, flags);
670 * Cmdstream submission/retirement:
673 static void retire_submit(struct msm_gpu *gpu, struct msm_ringbuffer *ring,
674 struct msm_gem_submit *submit)
676 int index = submit->seqno % MSM_GPU_SUBMIT_STATS_COUNT;
677 volatile struct msm_gpu_submit_stats *stats;
678 u64 elapsed, clock = 0;
681 stats = &ring->memptrs->stats[index];
682 /* Convert 19.2Mhz alwayson ticks to nanoseconds for elapsed time */
683 elapsed = (stats->alwayson_end - stats->alwayson_start) * 10000;
684 do_div(elapsed, 192);
686 /* Calculate the clock frequency from the number of CP cycles */
688 clock = (stats->cpcycles_end - stats->cpcycles_start) * 1000;
689 do_div(clock, elapsed);
692 trace_msm_gpu_submit_retired(submit, elapsed, clock,
693 stats->alwayson_start, stats->alwayson_end);
695 for (i = 0; i < submit->nr_bos; i++) {
696 struct msm_gem_object *msm_obj = submit->bos[i].obj;
697 /* move to inactive: */
698 msm_gem_move_to_inactive(&msm_obj->base);
699 msm_gem_unpin_iova(&msm_obj->base, submit->aspace);
700 drm_gem_object_put_locked(&msm_obj->base);
703 pm_runtime_mark_last_busy(&gpu->pdev->dev);
704 pm_runtime_put_autosuspend(&gpu->pdev->dev);
705 msm_gem_submit_free(submit);
708 static void retire_submits(struct msm_gpu *gpu)
710 struct drm_device *dev = gpu->dev;
711 struct msm_gem_submit *submit, *tmp;
714 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
716 /* Retire the commits starting with highest priority */
717 for (i = 0; i < gpu->nr_rings; i++) {
718 struct msm_ringbuffer *ring = gpu->rb[i];
720 list_for_each_entry_safe(submit, tmp, &ring->submits, node) {
721 if (dma_fence_is_signaled(submit->fence))
722 retire_submit(gpu, ring, submit);
727 static void retire_worker(struct work_struct *work)
729 struct msm_gpu *gpu = container_of(work, struct msm_gpu, retire_work);
730 struct drm_device *dev = gpu->dev;
733 for (i = 0; i < gpu->nr_rings; i++)
734 update_fences(gpu, gpu->rb[i], gpu->rb[i]->memptrs->fence);
736 mutex_lock(&dev->struct_mutex);
738 mutex_unlock(&dev->struct_mutex);
741 /* call from irq handler to schedule work to retire bo's */
742 void msm_gpu_retire(struct msm_gpu *gpu)
744 struct msm_drm_private *priv = gpu->dev->dev_private;
745 queue_work(priv->wq, &gpu->retire_work);
746 update_sw_cntrs(gpu);
749 /* add bo's to gpu's ring, and kick gpu: */
750 void msm_gpu_submit(struct msm_gpu *gpu, struct msm_gem_submit *submit,
751 struct msm_file_private *ctx)
753 struct drm_device *dev = gpu->dev;
754 struct msm_drm_private *priv = dev->dev_private;
755 struct msm_ringbuffer *ring = submit->ring;
758 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
760 pm_runtime_get_sync(&gpu->pdev->dev);
762 msm_gpu_hw_init(gpu);
764 submit->seqno = ++ring->seqno;
766 list_add_tail(&submit->node, &ring->submits);
768 msm_rd_dump_submit(priv->rd, submit, NULL);
770 update_sw_cntrs(gpu);
772 for (i = 0; i < submit->nr_bos; i++) {
773 struct msm_gem_object *msm_obj = submit->bos[i].obj;
776 /* can't happen yet.. but when we add 2d support we'll have
777 * to deal w/ cross-ring synchronization:
779 WARN_ON(is_active(msm_obj) && (msm_obj->gpu != gpu));
781 /* submit takes a reference to the bo and iova until retired: */
782 drm_gem_object_get(&msm_obj->base);
783 msm_gem_get_and_pin_iova(&msm_obj->base, submit->aspace, &iova);
785 if (submit->bos[i].flags & MSM_SUBMIT_BO_WRITE)
786 msm_gem_move_to_active(&msm_obj->base, gpu, true, submit->fence);
787 else if (submit->bos[i].flags & MSM_SUBMIT_BO_READ)
788 msm_gem_move_to_active(&msm_obj->base, gpu, false, submit->fence);
791 gpu->funcs->submit(gpu, submit, ctx);
794 hangcheck_timer_reset(gpu);
801 static irqreturn_t irq_handler(int irq, void *data)
803 struct msm_gpu *gpu = data;
804 return gpu->funcs->irq(gpu);
807 static int get_clocks(struct platform_device *pdev, struct msm_gpu *gpu)
809 int ret = devm_clk_bulk_get_all(&pdev->dev, &gpu->grp_clks);
816 gpu->nr_clocks = ret;
818 gpu->core_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
819 gpu->nr_clocks, "core");
821 gpu->rbbmtimer_clk = msm_clk_bulk_get_clock(gpu->grp_clks,
822 gpu->nr_clocks, "rbbmtimer");
827 int msm_gpu_init(struct drm_device *drm, struct platform_device *pdev,
828 struct msm_gpu *gpu, const struct msm_gpu_funcs *funcs,
829 const char *name, struct msm_gpu_config *config)
831 int i, ret, nr_rings = config->nr_rings;
833 uint64_t memptrs_iova;
835 if (WARN_ON(gpu->num_perfcntrs > ARRAY_SIZE(gpu->last_cntrs)))
836 gpu->num_perfcntrs = ARRAY_SIZE(gpu->last_cntrs);
842 INIT_LIST_HEAD(&gpu->active_list);
843 INIT_WORK(&gpu->retire_work, retire_worker);
844 INIT_WORK(&gpu->recover_work, recover_worker);
847 timer_setup(&gpu->hangcheck_timer, hangcheck_handler, 0);
849 spin_lock_init(&gpu->perf_lock);
853 gpu->mmio = msm_ioremap(pdev, config->ioname, name);
854 if (IS_ERR(gpu->mmio)) {
855 ret = PTR_ERR(gpu->mmio);
860 gpu->irq = platform_get_irq(pdev, 0);
863 DRM_DEV_ERROR(drm->dev, "failed to get irq: %d\n", ret);
867 ret = devm_request_irq(&pdev->dev, gpu->irq, irq_handler,
868 IRQF_TRIGGER_HIGH, gpu->name, gpu);
870 DRM_DEV_ERROR(drm->dev, "failed to request IRQ%u: %d\n", gpu->irq, ret);
874 ret = get_clocks(pdev, gpu);
878 gpu->ebi1_clk = msm_clk_get(pdev, "bus");
879 DBG("ebi1_clk: %p", gpu->ebi1_clk);
880 if (IS_ERR(gpu->ebi1_clk))
881 gpu->ebi1_clk = NULL;
883 /* Acquire regulators: */
884 gpu->gpu_reg = devm_regulator_get(&pdev->dev, "vdd");
885 DBG("gpu_reg: %p", gpu->gpu_reg);
886 if (IS_ERR(gpu->gpu_reg))
889 gpu->gpu_cx = devm_regulator_get(&pdev->dev, "vddcx");
890 DBG("gpu_cx: %p", gpu->gpu_cx);
891 if (IS_ERR(gpu->gpu_cx))
895 platform_set_drvdata(pdev, gpu);
897 msm_devfreq_init(gpu);
900 gpu->aspace = gpu->funcs->create_address_space(gpu, pdev);
902 if (gpu->aspace == NULL)
903 DRM_DEV_INFO(drm->dev, "%s: no IOMMU, fallback to VRAM carveout!\n", name);
904 else if (IS_ERR(gpu->aspace)) {
905 ret = PTR_ERR(gpu->aspace);
909 memptrs = msm_gem_kernel_new(drm,
910 sizeof(struct msm_rbmemptrs) * nr_rings,
911 MSM_BO_UNCACHED, gpu->aspace, &gpu->memptrs_bo,
914 if (IS_ERR(memptrs)) {
915 ret = PTR_ERR(memptrs);
916 DRM_DEV_ERROR(drm->dev, "could not allocate memptrs: %d\n", ret);
920 msm_gem_object_set_name(gpu->memptrs_bo, "memptrs");
922 if (nr_rings > ARRAY_SIZE(gpu->rb)) {
923 DRM_DEV_INFO_ONCE(drm->dev, "Only creating %zu ringbuffers\n",
924 ARRAY_SIZE(gpu->rb));
925 nr_rings = ARRAY_SIZE(gpu->rb);
928 /* Create ringbuffer(s): */
929 for (i = 0; i < nr_rings; i++) {
930 gpu->rb[i] = msm_ringbuffer_new(gpu, i, memptrs, memptrs_iova);
932 if (IS_ERR(gpu->rb[i])) {
933 ret = PTR_ERR(gpu->rb[i]);
934 DRM_DEV_ERROR(drm->dev,
935 "could not create ringbuffer %d: %d\n", i, ret);
939 memptrs += sizeof(struct msm_rbmemptrs);
940 memptrs_iova += sizeof(struct msm_rbmemptrs);
943 gpu->nr_rings = nr_rings;
948 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
949 msm_ringbuffer_destroy(gpu->rb[i]);
953 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace, false);
955 platform_set_drvdata(pdev, NULL);
959 void msm_gpu_cleanup(struct msm_gpu *gpu)
963 DBG("%s", gpu->name);
965 WARN_ON(!list_empty(&gpu->active_list));
967 for (i = 0; i < ARRAY_SIZE(gpu->rb); i++) {
968 msm_ringbuffer_destroy(gpu->rb[i]);
972 msm_gem_kernel_put(gpu->memptrs_bo, gpu->aspace, false);
974 if (!IS_ERR_OR_NULL(gpu->aspace)) {
975 gpu->aspace->mmu->funcs->detach(gpu->aspace->mmu);
976 msm_gem_address_space_put(gpu->aspace);