1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2013 Red Hat
6 * Copyright (c) 2014 The Linux Foundation. All rights reserved.
9 #include <linux/ascii85.h>
10 #include <linux/interconnect.h>
11 #include <linux/firmware/qcom/qcom_scm.h>
12 #include <linux/kernel.h>
13 #include <linux/of_address.h>
14 #include <linux/pm_opp.h>
15 #include <linux/slab.h>
16 #include <linux/soc/qcom/mdt_loader.h>
17 #include <linux/nvmem-consumer.h>
18 #include <soc/qcom/ocmem.h>
19 #include "adreno_gpu.h"
24 static u64 address_space_size = 0;
25 MODULE_PARM_DESC(address_space_size, "Override for size of processes private GPU address space");
26 module_param(address_space_size, ullong, 0600);
28 static bool zap_available = true;
30 static int zap_shader_load_mdt(struct msm_gpu *gpu, const char *fwname,
33 struct device *dev = &gpu->pdev->dev;
34 const struct firmware *fw;
35 const char *signed_fwname = NULL;
36 struct device_node *np, *mem_np;
40 void *mem_region = NULL;
43 if (!IS_ENABLED(CONFIG_ARCH_QCOM)) {
44 zap_available = false;
48 np = of_get_child_by_name(dev->of_node, "zap-shader");
50 zap_available = false;
54 mem_np = of_parse_phandle(np, "memory-region", 0);
57 zap_available = false;
61 ret = of_address_to_resource(mem_np, 0, &r);
69 * Check for a firmware-name property. This is the new scheme
70 * to handle firmware that may be signed with device specific
71 * keys, allowing us to have a different zap fw path for different
74 * If the firmware-name property is found, we bypass the
75 * adreno_request_fw() mechanism, because we don't need to handle
76 * the /lib/firmware/qcom/... vs /lib/firmware/... case.
78 * If the firmware-name property is not found, for backwards
79 * compatibility we fall back to the fwname from the gpulist
82 of_property_read_string_index(np, "firmware-name", 0, &signed_fwname);
84 fwname = signed_fwname;
85 ret = request_firmware_direct(&fw, fwname, gpu->dev->dev);
89 /* Request the MDT file from the default location: */
90 fw = adreno_request_fw(to_adreno_gpu(gpu), fwname);
93 * For new targets, we require the firmware-name property,
94 * if a zap-shader is required, rather than falling back
95 * to a firmware name specified in gpulist.
97 * Because the firmware is signed with a (potentially)
98 * device specific key, having the name come from gpulist
99 * was a bad idea, and is only provided for backwards
100 * compatibility for older targets.
106 DRM_DEV_ERROR(dev, "Unable to load %s\n", fwname);
110 /* Figure out how much memory we need */
111 mem_size = qcom_mdt_get_size(fw);
117 if (mem_size > resource_size(&r)) {
119 "memory region is too small to load the MDT\n");
124 /* Allocate memory for the firmware image */
125 mem_region = memremap(mem_phys, mem_size, MEMREMAP_WC);
132 * Load the rest of the MDT
134 * Note that we could be dealing with two different paths, since
135 * with upstream linux-firmware it would be in a qcom/ subdir..
136 * adreno_request_fw() handles this, but qcom_mdt_load() does
137 * not. But since we've already gotten through adreno_request_fw()
138 * we know which of the two cases it is:
140 if (signed_fwname || (to_adreno_gpu(gpu)->fwloc == FW_LOCATION_LEGACY)) {
141 ret = qcom_mdt_load(dev, fw, fwname, pasid,
142 mem_region, mem_phys, mem_size, NULL);
146 newname = kasprintf(GFP_KERNEL, "qcom/%s", fwname);
148 ret = qcom_mdt_load(dev, fw, newname, pasid,
149 mem_region, mem_phys, mem_size, NULL);
155 /* Send the image to the secure world */
156 ret = qcom_scm_pas_auth_and_reset(pasid);
159 * If the scm call returns -EOPNOTSUPP we assume that this target
160 * doesn't need/support the zap shader so quietly fail
162 if (ret == -EOPNOTSUPP)
163 zap_available = false;
165 DRM_DEV_ERROR(dev, "Unable to authorize the image\n");
169 memunmap(mem_region);
171 release_firmware(fw);
176 int adreno_zap_shader_load(struct msm_gpu *gpu, u32 pasid)
178 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
179 struct platform_device *pdev = gpu->pdev;
181 /* Short cut if we determine the zap shader isn't available/needed */
185 /* We need SCM to be able to load the firmware */
186 if (!qcom_scm_is_available()) {
187 DRM_DEV_ERROR(&pdev->dev, "SCM is not available\n");
188 return -EPROBE_DEFER;
191 return zap_shader_load_mdt(gpu, adreno_gpu->info->zapfw, pasid);
194 struct msm_gem_address_space *
195 adreno_create_address_space(struct msm_gpu *gpu,
196 struct platform_device *pdev)
198 return adreno_iommu_create_address_space(gpu, pdev, 0);
201 struct msm_gem_address_space *
202 adreno_iommu_create_address_space(struct msm_gpu *gpu,
203 struct platform_device *pdev,
204 unsigned long quirks)
206 struct iommu_domain_geometry *geometry;
208 struct msm_gem_address_space *aspace;
211 mmu = msm_iommu_gpu_new(&pdev->dev, gpu, quirks);
212 if (IS_ERR_OR_NULL(mmu))
213 return ERR_CAST(mmu);
215 geometry = msm_iommu_get_geometry(mmu);
216 if (IS_ERR(geometry))
217 return ERR_CAST(geometry);
220 * Use the aperture start or SZ_16M, whichever is greater. This will
221 * ensure that we align with the allocated pagetable range while still
222 * allowing room in the lower 32 bits for GMEM and whatnot
224 start = max_t(u64, SZ_16M, geometry->aperture_start);
225 size = geometry->aperture_end - start + 1;
227 aspace = msm_gem_address_space_create(mmu, "gpu",
228 start & GENMASK_ULL(48, 0), size);
230 if (IS_ERR(aspace) && !IS_ERR(mmu))
231 mmu->funcs->destroy(mmu);
236 u64 adreno_private_address_space_size(struct msm_gpu *gpu)
238 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
240 if (address_space_size)
241 return address_space_size;
243 if (adreno_gpu->info->address_space_size)
244 return adreno_gpu->info->address_space_size;
249 #define ARM_SMMU_FSR_TF BIT(1)
250 #define ARM_SMMU_FSR_PF BIT(3)
251 #define ARM_SMMU_FSR_EF BIT(4)
253 int adreno_fault_handler(struct msm_gpu *gpu, unsigned long iova, int flags,
254 struct adreno_smmu_fault_info *info, const char *block,
257 const char *type = "UNKNOWN";
258 bool do_devcoredump = info && !READ_ONCE(gpu->crashstate);
261 * If we aren't going to be resuming later from fault_worker, then do
264 if (!do_devcoredump) {
265 gpu->aspace->mmu->funcs->resume_translation(gpu->aspace->mmu);
269 * Print a default message if we couldn't get the data from the
273 pr_warn_ratelimited("*** gpu fault: iova=%.16lx flags=%d (%u,%u,%u,%u)\n",
275 scratch[0], scratch[1], scratch[2], scratch[3]);
280 if (info->fsr & ARM_SMMU_FSR_TF)
281 type = "TRANSLATION";
282 else if (info->fsr & ARM_SMMU_FSR_PF)
284 else if (info->fsr & ARM_SMMU_FSR_EF)
287 pr_warn_ratelimited("*** gpu fault: ttbr0=%.16llx iova=%.16lx dir=%s type=%s source=%s (%u,%u,%u,%u)\n",
289 flags & IOMMU_FAULT_WRITE ? "WRITE" : "READ",
291 scratch[0], scratch[1], scratch[2], scratch[3]);
293 if (do_devcoredump) {
294 /* Turn off the hangcheck timer to keep it from bothering us */
295 del_timer(&gpu->hangcheck_timer);
297 gpu->fault_info.ttbr0 = info->ttbr0;
298 gpu->fault_info.iova = iova;
299 gpu->fault_info.flags = flags;
300 gpu->fault_info.type = type;
301 gpu->fault_info.block = block;
303 kthread_queue_work(gpu->worker, &gpu->fault_work);
309 int adreno_get_param(struct msm_gpu *gpu, struct msm_file_private *ctx,
310 uint32_t param, uint64_t *value, uint32_t *len)
312 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
314 /* No pointer params yet */
319 case MSM_PARAM_GPU_ID:
320 *value = adreno_gpu->info->revn;
322 case MSM_PARAM_GMEM_SIZE:
323 *value = adreno_gpu->gmem;
325 case MSM_PARAM_GMEM_BASE:
326 *value = !adreno_is_a650_family(adreno_gpu) ? 0x100000 : 0;
328 case MSM_PARAM_CHIP_ID:
329 *value = (uint64_t)adreno_gpu->rev.patchid |
330 ((uint64_t)adreno_gpu->rev.minor << 8) |
331 ((uint64_t)adreno_gpu->rev.major << 16) |
332 ((uint64_t)adreno_gpu->rev.core << 24);
333 if (!adreno_gpu->info->revn)
334 *value |= ((uint64_t) adreno_gpu->speedbin) << 32;
336 case MSM_PARAM_MAX_FREQ:
337 *value = adreno_gpu->base.fast_rate;
339 case MSM_PARAM_TIMESTAMP:
340 if (adreno_gpu->funcs->get_timestamp) {
343 pm_runtime_get_sync(&gpu->pdev->dev);
344 ret = adreno_gpu->funcs->get_timestamp(gpu, value);
345 pm_runtime_put_autosuspend(&gpu->pdev->dev);
350 case MSM_PARAM_PRIORITIES:
351 *value = gpu->nr_rings * NR_SCHED_PRIORITIES;
353 case MSM_PARAM_PP_PGTABLE:
356 case MSM_PARAM_FAULTS:
358 *value = gpu->global_faults + ctx->aspace->faults;
360 *value = gpu->global_faults;
362 case MSM_PARAM_SUSPENDS:
363 *value = gpu->suspend_count;
365 case MSM_PARAM_VA_START:
366 if (ctx->aspace == gpu->aspace)
368 *value = ctx->aspace->va_start;
370 case MSM_PARAM_VA_SIZE:
371 if (ctx->aspace == gpu->aspace)
373 *value = ctx->aspace->va_size;
376 DBG("%s: invalid param: %u", gpu->name, param);
381 int adreno_set_param(struct msm_gpu *gpu, struct msm_file_private *ctx,
382 uint32_t param, uint64_t value, uint32_t len)
386 case MSM_PARAM_CMDLINE:
387 /* kstrdup_quotable_cmdline() limits to PAGE_SIZE, so
388 * that should be a reasonable upper bound
400 case MSM_PARAM_CMDLINE: {
403 str = kmalloc(len + 1, GFP_KERNEL);
407 if (copy_from_user(str, u64_to_user_ptr(value), len)) {
412 /* Ensure string is null terminated: */
415 mutex_lock(&gpu->lock);
417 if (param == MSM_PARAM_COMM) {
420 paramp = &ctx->cmdline;
426 mutex_unlock(&gpu->lock);
430 case MSM_PARAM_SYSPROF:
431 if (!capable(CAP_SYS_ADMIN))
433 return msm_file_private_set_sysprof(ctx, gpu, value);
435 DBG("%s: invalid param: %u", gpu->name, param);
440 const struct firmware *
441 adreno_request_fw(struct adreno_gpu *adreno_gpu, const char *fwname)
443 struct drm_device *drm = adreno_gpu->base.dev;
444 const struct firmware *fw = NULL;
448 newname = kasprintf(GFP_KERNEL, "qcom/%s", fwname);
450 return ERR_PTR(-ENOMEM);
453 * Try first to load from qcom/$fwfile using a direct load (to avoid
454 * a potential timeout waiting for usermode helper)
456 if ((adreno_gpu->fwloc == FW_LOCATION_UNKNOWN) ||
457 (adreno_gpu->fwloc == FW_LOCATION_NEW)) {
459 ret = request_firmware_direct(&fw, newname, drm->dev);
461 DRM_DEV_INFO(drm->dev, "loaded %s from new location\n",
463 adreno_gpu->fwloc = FW_LOCATION_NEW;
465 } else if (adreno_gpu->fwloc != FW_LOCATION_UNKNOWN) {
466 DRM_DEV_ERROR(drm->dev, "failed to load %s: %d\n",
474 * Then try the legacy location without qcom/ prefix
476 if ((adreno_gpu->fwloc == FW_LOCATION_UNKNOWN) ||
477 (adreno_gpu->fwloc == FW_LOCATION_LEGACY)) {
479 ret = request_firmware_direct(&fw, fwname, drm->dev);
481 DRM_DEV_INFO(drm->dev, "loaded %s from legacy location\n",
483 adreno_gpu->fwloc = FW_LOCATION_LEGACY;
485 } else if (adreno_gpu->fwloc != FW_LOCATION_UNKNOWN) {
486 DRM_DEV_ERROR(drm->dev, "failed to load %s: %d\n",
494 * Finally fall back to request_firmware() for cases where the
495 * usermode helper is needed (I think mainly android)
497 if ((adreno_gpu->fwloc == FW_LOCATION_UNKNOWN) ||
498 (adreno_gpu->fwloc == FW_LOCATION_HELPER)) {
500 ret = request_firmware(&fw, newname, drm->dev);
502 DRM_DEV_INFO(drm->dev, "loaded %s with helper\n",
504 adreno_gpu->fwloc = FW_LOCATION_HELPER;
506 } else if (adreno_gpu->fwloc != FW_LOCATION_UNKNOWN) {
507 DRM_DEV_ERROR(drm->dev, "failed to load %s: %d\n",
514 DRM_DEV_ERROR(drm->dev, "failed to load %s\n", fwname);
515 fw = ERR_PTR(-ENOENT);
521 int adreno_load_fw(struct adreno_gpu *adreno_gpu)
525 for (i = 0; i < ARRAY_SIZE(adreno_gpu->info->fw); i++) {
526 const struct firmware *fw;
528 if (!adreno_gpu->info->fw[i])
531 /* Skip if the firmware has already been loaded */
532 if (adreno_gpu->fw[i])
535 fw = adreno_request_fw(adreno_gpu, adreno_gpu->info->fw[i]);
539 adreno_gpu->fw[i] = fw;
545 struct drm_gem_object *adreno_fw_create_bo(struct msm_gpu *gpu,
546 const struct firmware *fw, u64 *iova)
548 struct drm_gem_object *bo;
551 ptr = msm_gem_kernel_new(gpu->dev, fw->size - 4,
552 MSM_BO_WC | MSM_BO_GPU_READONLY, gpu->aspace, &bo, iova);
555 return ERR_CAST(ptr);
557 memcpy(ptr, &fw->data[4], fw->size - 4);
559 msm_gem_put_vaddr(bo);
564 int adreno_hw_init(struct msm_gpu *gpu)
566 VERB("%s", gpu->name);
568 for (int i = 0; i < gpu->nr_rings; i++) {
569 struct msm_ringbuffer *ring = gpu->rb[i];
574 ring->cur = ring->start;
575 ring->next = ring->start;
576 ring->memptrs->rptr = 0;
578 /* Detect and clean up an impossible fence, ie. if GPU managed
579 * to scribble something invalid, we don't want that to confuse
580 * us into mistakingly believing that submits have completed.
582 if (fence_before(ring->fctx->last_fence, ring->memptrs->fence)) {
583 ring->memptrs->fence = ring->fctx->last_fence;
590 /* Use this helper to read rptr, since a430 doesn't update rptr in memory */
591 static uint32_t get_rptr(struct adreno_gpu *adreno_gpu,
592 struct msm_ringbuffer *ring)
594 struct msm_gpu *gpu = &adreno_gpu->base;
596 return gpu->funcs->get_rptr(gpu, ring);
599 struct msm_ringbuffer *adreno_active_ring(struct msm_gpu *gpu)
604 void adreno_recover(struct msm_gpu *gpu)
606 struct drm_device *dev = gpu->dev;
609 // XXX pm-runtime?? we *need* the device to be off after this
610 // so maybe continuing to call ->pm_suspend/resume() is better?
612 gpu->funcs->pm_suspend(gpu);
613 gpu->funcs->pm_resume(gpu);
615 ret = msm_gpu_hw_init(gpu);
617 DRM_DEV_ERROR(dev->dev, "gpu hw init failed: %d\n", ret);
622 void adreno_flush(struct msm_gpu *gpu, struct msm_ringbuffer *ring, u32 reg)
626 /* Copy the shadow to the actual register */
627 ring->cur = ring->next;
630 * Mask wptr value that we calculate to fit in the HW range. This is
631 * to account for the possibility that the last command fit exactly into
632 * the ringbuffer and rb->next hasn't wrapped to zero yet
634 wptr = get_wptr(ring);
636 /* ensure writes to ringbuffer have hit system memory: */
639 gpu_write(gpu, reg, wptr);
642 bool adreno_idle(struct msm_gpu *gpu, struct msm_ringbuffer *ring)
644 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
645 uint32_t wptr = get_wptr(ring);
647 /* wait for CP to drain ringbuffer: */
648 if (!spin_until(get_rptr(adreno_gpu, ring) == wptr))
651 /* TODO maybe we need to reset GPU here to recover from hang? */
652 DRM_ERROR("%s: timeout waiting to drain ringbuffer %d rptr/wptr = %X/%X\n",
653 gpu->name, ring->id, get_rptr(adreno_gpu, ring), wptr);
658 int adreno_gpu_state_get(struct msm_gpu *gpu, struct msm_gpu_state *state)
660 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
663 WARN_ON(!mutex_is_locked(&gpu->lock));
665 kref_init(&state->ref);
667 ktime_get_real_ts64(&state->time);
669 for (i = 0; i < gpu->nr_rings; i++) {
672 state->ring[i].fence = gpu->rb[i]->memptrs->fence;
673 state->ring[i].iova = gpu->rb[i]->iova;
674 state->ring[i].seqno = gpu->rb[i]->fctx->last_fence;
675 state->ring[i].rptr = get_rptr(adreno_gpu, gpu->rb[i]);
676 state->ring[i].wptr = get_wptr(gpu->rb[i]);
678 /* Copy at least 'wptr' dwords of the data */
679 size = state->ring[i].wptr;
681 /* After wptr find the last non zero dword to save space */
682 for (j = state->ring[i].wptr; j < MSM_GPU_RINGBUFFER_SZ >> 2; j++)
683 if (gpu->rb[i]->start[j])
687 state->ring[i].data = kvmalloc(size << 2, GFP_KERNEL);
688 if (state->ring[i].data) {
689 memcpy(state->ring[i].data, gpu->rb[i]->start, size << 2);
690 state->ring[i].data_size = size << 2;
695 /* Some targets prefer to collect their own registers */
696 if (!adreno_gpu->registers)
699 /* Count the number of registers */
700 for (i = 0; adreno_gpu->registers[i] != ~0; i += 2)
701 count += adreno_gpu->registers[i + 1] -
702 adreno_gpu->registers[i] + 1;
704 state->registers = kcalloc(count * 2, sizeof(u32), GFP_KERNEL);
705 if (state->registers) {
708 for (i = 0; adreno_gpu->registers[i] != ~0; i += 2) {
709 u32 start = adreno_gpu->registers[i];
710 u32 end = adreno_gpu->registers[i + 1];
713 for (addr = start; addr <= end; addr++) {
714 state->registers[pos++] = addr;
715 state->registers[pos++] = gpu_read(gpu, addr);
719 state->nr_registers = count;
725 void adreno_gpu_state_destroy(struct msm_gpu_state *state)
729 for (i = 0; i < ARRAY_SIZE(state->ring); i++)
730 kvfree(state->ring[i].data);
732 for (i = 0; state->bos && i < state->nr_bos; i++)
733 kvfree(state->bos[i].data);
738 kfree(state->registers);
741 static void adreno_gpu_state_kref_destroy(struct kref *kref)
743 struct msm_gpu_state *state = container_of(kref,
744 struct msm_gpu_state, ref);
746 adreno_gpu_state_destroy(state);
750 int adreno_gpu_state_put(struct msm_gpu_state *state)
752 if (IS_ERR_OR_NULL(state))
755 return kref_put(&state->ref, adreno_gpu_state_kref_destroy);
758 #if defined(CONFIG_DEBUG_FS) || defined(CONFIG_DEV_COREDUMP)
760 static char *adreno_gpu_ascii85_encode(u32 *src, size_t len)
763 size_t buf_itr = 0, buffer_size;
764 char out[ASCII85_BUFSZ];
771 l = ascii85_encode_len(len);
774 * Ascii85 outputs either a 5 byte string or a 1 byte string. So we
775 * account for the worst case of 5 bytes per dword plus the 1 for '\0'
777 buffer_size = (l * 5) + 1;
779 buf = kvmalloc(buffer_size, GFP_KERNEL);
783 for (i = 0; i < l; i++)
784 buf_itr += scnprintf(buf + buf_itr, buffer_size - buf_itr, "%s",
785 ascii85_encode(src[i], out));
790 /* len is expected to be in bytes
792 * WARNING: *ptr should be allocated with kvmalloc or friends. It can be free'd
793 * with kvfree() and replaced with a newly kvmalloc'd buffer on the first call
794 * when the unencoded raw data is encoded
796 void adreno_show_object(struct drm_printer *p, void **ptr, int len,
807 * Only dump the non-zero part of the buffer - rarely will
808 * any data completely fill the entire allocated size of
811 for (datalen = 0, i = 0; i < len >> 2; i++)
813 datalen = ((i + 1) << 2);
816 * If we reach here, then the originally captured binary buffer
817 * will be replaced with the ascii85 encoded string
819 *ptr = adreno_gpu_ascii85_encode(buf, datalen);
829 drm_puts(p, " data: !!ascii85 |\n");
837 void adreno_show(struct msm_gpu *gpu, struct msm_gpu_state *state,
838 struct drm_printer *p)
840 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
843 if (IS_ERR_OR_NULL(state))
846 drm_printf(p, "revision: %d (%d.%d.%d.%d)\n",
847 adreno_gpu->info->revn, adreno_gpu->rev.core,
848 adreno_gpu->rev.major, adreno_gpu->rev.minor,
849 adreno_gpu->rev.patchid);
851 * If this is state collected due to iova fault, so fault related info
853 * TTBR0 would not be zero, so this is a good way to distinguish
855 if (state->fault_info.ttbr0) {
856 const struct msm_gpu_fault_info *info = &state->fault_info;
858 drm_puts(p, "fault-info:\n");
859 drm_printf(p, " - ttbr0=%.16llx\n", info->ttbr0);
860 drm_printf(p, " - iova=%.16lx\n", info->iova);
861 drm_printf(p, " - dir=%s\n", info->flags & IOMMU_FAULT_WRITE ? "WRITE" : "READ");
862 drm_printf(p, " - type=%s\n", info->type);
863 drm_printf(p, " - source=%s\n", info->block);
866 drm_printf(p, "rbbm-status: 0x%08x\n", state->rbbm_status);
868 drm_puts(p, "ringbuffer:\n");
870 for (i = 0; i < gpu->nr_rings; i++) {
871 drm_printf(p, " - id: %d\n", i);
872 drm_printf(p, " iova: 0x%016llx\n", state->ring[i].iova);
873 drm_printf(p, " last-fence: %u\n", state->ring[i].seqno);
874 drm_printf(p, " retired-fence: %u\n", state->ring[i].fence);
875 drm_printf(p, " rptr: %u\n", state->ring[i].rptr);
876 drm_printf(p, " wptr: %u\n", state->ring[i].wptr);
877 drm_printf(p, " size: %u\n", MSM_GPU_RINGBUFFER_SZ);
879 adreno_show_object(p, &state->ring[i].data,
880 state->ring[i].data_size, &state->ring[i].encoded);
884 drm_puts(p, "bos:\n");
886 for (i = 0; i < state->nr_bos; i++) {
887 drm_printf(p, " - iova: 0x%016llx\n",
889 drm_printf(p, " size: %zd\n", state->bos[i].size);
890 drm_printf(p, " name: %-32s\n", state->bos[i].name);
892 adreno_show_object(p, &state->bos[i].data,
893 state->bos[i].size, &state->bos[i].encoded);
897 if (state->nr_registers) {
898 drm_puts(p, "registers:\n");
900 for (i = 0; i < state->nr_registers; i++) {
901 drm_printf(p, " - { offset: 0x%04x, value: 0x%08x }\n",
902 state->registers[i * 2] << 2,
903 state->registers[(i * 2) + 1]);
909 /* Dump common gpu status and scratch registers on any hang, to make
910 * the hangcheck logs more useful. The scratch registers seem always
911 * safe to read when GPU has hung (unlike some other regs, depending
912 * on how the GPU hung), and they are useful to match up to cmdstream
913 * dumps when debugging hangs:
915 void adreno_dump_info(struct msm_gpu *gpu)
917 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
920 printk("revision: %d (%d.%d.%d.%d)\n",
921 adreno_gpu->info->revn, adreno_gpu->rev.core,
922 adreno_gpu->rev.major, adreno_gpu->rev.minor,
923 adreno_gpu->rev.patchid);
925 for (i = 0; i < gpu->nr_rings; i++) {
926 struct msm_ringbuffer *ring = gpu->rb[i];
928 printk("rb %d: fence: %d/%d\n", i,
929 ring->memptrs->fence,
930 ring->fctx->last_fence);
932 printk("rptr: %d\n", get_rptr(adreno_gpu, ring));
933 printk("rb wptr: %d\n", get_wptr(ring));
937 /* would be nice to not have to duplicate the _show() stuff with printk(): */
938 void adreno_dump(struct msm_gpu *gpu)
940 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
943 if (!adreno_gpu->registers)
946 /* dump these out in a form that can be parsed by demsm: */
947 printk("IO:region %s 00000000 00020000\n", gpu->name);
948 for (i = 0; adreno_gpu->registers[i] != ~0; i += 2) {
949 uint32_t start = adreno_gpu->registers[i];
950 uint32_t end = adreno_gpu->registers[i+1];
953 for (addr = start; addr <= end; addr++) {
954 uint32_t val = gpu_read(gpu, addr);
955 printk("IO:R %08x %08x\n", addr<<2, val);
960 static uint32_t ring_freewords(struct msm_ringbuffer *ring)
962 struct adreno_gpu *adreno_gpu = to_adreno_gpu(ring->gpu);
963 uint32_t size = MSM_GPU_RINGBUFFER_SZ >> 2;
964 /* Use ring->next to calculate free size */
965 uint32_t wptr = ring->next - ring->start;
966 uint32_t rptr = get_rptr(adreno_gpu, ring);
967 return (rptr + (size - 1) - wptr) % size;
970 void adreno_wait_ring(struct msm_ringbuffer *ring, uint32_t ndwords)
972 if (spin_until(ring_freewords(ring) >= ndwords))
973 DRM_DEV_ERROR(ring->gpu->dev->dev,
974 "timeout waiting for space in ringbuffer %d\n",
978 static int adreno_get_pwrlevels(struct device *dev,
981 struct adreno_gpu *adreno_gpu = to_adreno_gpu(gpu);
982 unsigned long freq = ULONG_MAX;
983 struct dev_pm_opp *opp;
988 /* devm_pm_opp_of_add_table may error out but will still create an OPP table */
989 ret = devm_pm_opp_of_add_table(dev);
990 if (ret == -ENODEV) {
991 /* Special cases for ancient hw with ancient DT bindings */
992 if (adreno_is_a2xx(adreno_gpu)) {
993 dev_warn(dev, "Unable to find the OPP table. Falling back to 200 MHz.\n");
994 dev_pm_opp_add(dev, 200000000, 0);
995 } else if (adreno_is_a320(adreno_gpu)) {
996 dev_warn(dev, "Unable to find the OPP table. Falling back to 450 MHz.\n");
997 dev_pm_opp_add(dev, 450000000, 0);
999 DRM_DEV_ERROR(dev, "Unable to find the OPP table\n");
1003 DRM_DEV_ERROR(dev, "Unable to set the OPP table\n");
1007 /* Find the fastest defined rate */
1008 opp = dev_pm_opp_find_freq_floor(dev, &freq);
1010 return PTR_ERR(opp);
1012 gpu->fast_rate = freq;
1013 dev_pm_opp_put(opp);
1015 DBG("fast_rate=%u, slow_rate=27000000", gpu->fast_rate);
1020 int adreno_gpu_ocmem_init(struct device *dev, struct adreno_gpu *adreno_gpu,
1021 struct adreno_ocmem *adreno_ocmem)
1023 struct ocmem_buf *ocmem_hdl;
1024 struct ocmem *ocmem;
1026 ocmem = of_get_ocmem(dev);
1027 if (IS_ERR(ocmem)) {
1028 if (PTR_ERR(ocmem) == -ENODEV) {
1030 * Return success since either the ocmem property was
1031 * not specified in device tree, or ocmem support is
1032 * not compiled into the kernel.
1037 return PTR_ERR(ocmem);
1040 ocmem_hdl = ocmem_allocate(ocmem, OCMEM_GRAPHICS, adreno_gpu->gmem);
1041 if (IS_ERR(ocmem_hdl))
1042 return PTR_ERR(ocmem_hdl);
1044 adreno_ocmem->ocmem = ocmem;
1045 adreno_ocmem->base = ocmem_hdl->addr;
1046 adreno_ocmem->hdl = ocmem_hdl;
1047 adreno_gpu->gmem = ocmem_hdl->len;
1052 void adreno_gpu_ocmem_cleanup(struct adreno_ocmem *adreno_ocmem)
1054 if (adreno_ocmem && adreno_ocmem->base)
1055 ocmem_free(adreno_ocmem->ocmem, OCMEM_GRAPHICS,
1059 int adreno_read_speedbin(struct device *dev, u32 *speedbin)
1061 return nvmem_cell_read_variable_le_u32(dev, "speed_bin", speedbin);
1064 int adreno_gpu_init(struct drm_device *drm, struct platform_device *pdev,
1065 struct adreno_gpu *adreno_gpu,
1066 const struct adreno_gpu_funcs *funcs, int nr_rings)
1068 struct device *dev = &pdev->dev;
1069 struct adreno_platform_config *config = dev->platform_data;
1070 struct msm_gpu_config adreno_gpu_config = { 0 };
1071 struct msm_gpu *gpu = &adreno_gpu->base;
1072 struct adreno_rev *rev = &config->rev;
1073 const char *gpu_name;
1077 /* Only handle the core clock when GMU is not in use */
1078 if (config->rev.core < 6) {
1080 * This can only be done before devm_pm_opp_of_add_table(), or
1081 * dev_pm_opp_set_config() will WARN_ON()
1083 if (IS_ERR(devm_clk_get(dev, "core"))) {
1085 * If "core" is absent, go for the legacy clock name.
1086 * If we got this far in probing, it's a given one of
1089 devm_pm_opp_set_clkname(dev, "core_clk");
1091 devm_pm_opp_set_clkname(dev, "core");
1094 adreno_gpu->funcs = funcs;
1095 adreno_gpu->info = adreno_info(config->rev);
1096 adreno_gpu->gmem = adreno_gpu->info->gmem;
1097 adreno_gpu->revn = adreno_gpu->info->revn;
1098 adreno_gpu->rev = *rev;
1100 if (adreno_read_speedbin(dev, &speedbin) || !speedbin)
1102 adreno_gpu->speedbin = (uint16_t) (0xffff & speedbin);
1104 gpu_name = adreno_gpu->info->name;
1106 gpu_name = devm_kasprintf(dev, GFP_KERNEL, "%d.%d.%d.%d",
1107 rev->core, rev->major, rev->minor,
1113 adreno_gpu_config.ioname = "kgsl_3d0_reg_memory";
1115 adreno_gpu_config.nr_rings = nr_rings;
1117 ret = adreno_get_pwrlevels(dev, gpu);
1121 pm_runtime_set_autosuspend_delay(dev,
1122 adreno_gpu->info->inactive_period);
1123 pm_runtime_use_autosuspend(dev);
1125 return msm_gpu_init(drm, pdev, &adreno_gpu->base, &funcs->base,
1126 gpu_name, &adreno_gpu_config);
1129 void adreno_gpu_cleanup(struct adreno_gpu *adreno_gpu)
1131 struct msm_gpu *gpu = &adreno_gpu->base;
1132 struct msm_drm_private *priv = gpu->dev ? gpu->dev->dev_private : NULL;
1135 for (i = 0; i < ARRAY_SIZE(adreno_gpu->info->fw); i++)
1136 release_firmware(adreno_gpu->fw[i]);
1138 if (priv && pm_runtime_enabled(&priv->gpu_pdev->dev))
1139 pm_runtime_disable(&priv->gpu_pdev->dev);
1141 msm_gpu_cleanup(&adreno_gpu->base);