1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016-2018, 2020-2021 The Linux Foundation. All rights reserved.
4 * Copyright (C) 2013 Red Hat
8 #include <linux/dma-mapping.h>
9 #include <linux/fault-inject.h>
10 #include <linux/kthread.h>
11 #include <linux/sched/mm.h>
12 #include <linux/uaccess.h>
13 #include <uapi/linux/sched/types.h>
15 #include <drm/drm_bridge.h>
16 #include <drm/drm_drv.h>
17 #include <drm/drm_file.h>
18 #include <drm/drm_ioctl.h>
19 #include <drm/drm_prime.h>
20 #include <drm/drm_of.h>
21 #include <drm/drm_vblank.h>
23 #include "disp/msm_disp_snapshot.h"
25 #include "msm_debugfs.h"
26 #include "msm_fence.h"
31 #include "adreno/adreno_gpu.h"
35 * - 1.0.0 - initial interface
36 * - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers
37 * - 1.2.0 - adds explicit fence support for submit ioctl
38 * - 1.3.0 - adds GMEM_BASE + NR_RINGS params, SUBMITQUEUE_NEW +
39 * SUBMITQUEUE_CLOSE ioctls, and MSM_INFO_IOVA flag for
41 * - 1.4.0 - softpin, MSM_RELOC_BO_DUMP, and GEM_INFO support to set/get
42 * GEM object's debug name
43 * - 1.5.0 - Add SUBMITQUERY_QUERY ioctl
44 * - 1.6.0 - Syncobj support
45 * - 1.7.0 - Add MSM_PARAM_SUSPENDS to access suspend count
46 * - 1.8.0 - Add MSM_BO_CACHED_COHERENT for supported GPUs (a6xx)
47 * - 1.9.0 - Add MSM_SUBMIT_FENCE_SN_IN
49 #define MSM_VERSION_MAJOR 1
50 #define MSM_VERSION_MINOR 9
51 #define MSM_VERSION_PATCHLEVEL 0
53 static const struct drm_mode_config_funcs mode_config_funcs = {
54 .fb_create = msm_framebuffer_create,
55 .output_poll_changed = drm_fb_helper_output_poll_changed,
56 .atomic_check = drm_atomic_helper_check,
57 .atomic_commit = drm_atomic_helper_commit,
60 static const struct drm_mode_config_helper_funcs mode_config_helper_funcs = {
61 .atomic_commit_tail = msm_atomic_commit_tail,
64 #ifdef CONFIG_DRM_FBDEV_EMULATION
65 static bool fbdev = true;
66 MODULE_PARM_DESC(fbdev, "Enable fbdev compat layer");
67 module_param(fbdev, bool, 0600);
70 static char *vram = "16m";
71 MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)");
72 module_param(vram, charp, 0);
75 MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors");
76 module_param(dumpstate, bool, 0600);
78 static bool modeset = true;
79 MODULE_PARM_DESC(modeset, "Use kernel modesetting [KMS] (1=on (default), 0=disable)");
80 module_param(modeset, bool, 0600);
82 #ifdef CONFIG_FAULT_INJECTION
83 DECLARE_FAULT_ATTR(fail_gem_alloc);
84 DECLARE_FAULT_ATTR(fail_gem_iova);
87 static irqreturn_t msm_irq(int irq, void *arg)
89 struct drm_device *dev = arg;
90 struct msm_drm_private *priv = dev->dev_private;
91 struct msm_kms *kms = priv->kms;
95 return kms->funcs->irq(kms);
98 static void msm_irq_preinstall(struct drm_device *dev)
100 struct msm_drm_private *priv = dev->dev_private;
101 struct msm_kms *kms = priv->kms;
105 kms->funcs->irq_preinstall(kms);
108 static int msm_irq_postinstall(struct drm_device *dev)
110 struct msm_drm_private *priv = dev->dev_private;
111 struct msm_kms *kms = priv->kms;
115 if (kms->funcs->irq_postinstall)
116 return kms->funcs->irq_postinstall(kms);
121 static int msm_irq_install(struct drm_device *dev, unsigned int irq)
123 struct msm_drm_private *priv = dev->dev_private;
124 struct msm_kms *kms = priv->kms;
127 if (irq == IRQ_NOTCONNECTED)
130 msm_irq_preinstall(dev);
132 ret = request_irq(irq, msm_irq, 0, dev->driver->name, dev);
136 kms->irq_requested = true;
138 ret = msm_irq_postinstall(dev);
147 static void msm_irq_uninstall(struct drm_device *dev)
149 struct msm_drm_private *priv = dev->dev_private;
150 struct msm_kms *kms = priv->kms;
152 kms->funcs->irq_uninstall(kms);
153 if (kms->irq_requested)
154 free_irq(kms->irq, dev);
157 struct msm_vblank_work {
158 struct work_struct work;
161 struct msm_drm_private *priv;
164 static void vblank_ctrl_worker(struct work_struct *work)
166 struct msm_vblank_work *vbl_work = container_of(work,
167 struct msm_vblank_work, work);
168 struct msm_drm_private *priv = vbl_work->priv;
169 struct msm_kms *kms = priv->kms;
171 if (vbl_work->enable)
172 kms->funcs->enable_vblank(kms, priv->crtcs[vbl_work->crtc_id]);
174 kms->funcs->disable_vblank(kms, priv->crtcs[vbl_work->crtc_id]);
179 static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
180 int crtc_id, bool enable)
182 struct msm_vblank_work *vbl_work;
184 vbl_work = kzalloc(sizeof(*vbl_work), GFP_ATOMIC);
188 INIT_WORK(&vbl_work->work, vblank_ctrl_worker);
190 vbl_work->crtc_id = crtc_id;
191 vbl_work->enable = enable;
192 vbl_work->priv = priv;
194 queue_work(priv->wq, &vbl_work->work);
199 static int msm_drm_uninit(struct device *dev)
201 struct platform_device *pdev = to_platform_device(dev);
202 struct msm_drm_private *priv = platform_get_drvdata(pdev);
203 struct drm_device *ddev = priv->dev;
204 struct msm_kms *kms = priv->kms;
208 * Shutdown the hw if we're far enough along where things might be on.
209 * If we run this too early, we'll end up panicking in any variety of
210 * places. Since we don't register the drm device until late in
211 * msm_drm_init, drm_dev->registered is used as an indicator that the
212 * shutdown will be successful.
214 if (ddev->registered) {
215 drm_dev_unregister(ddev);
216 drm_atomic_helper_shutdown(ddev);
219 /* We must cancel and cleanup any pending vblank enable/disable
220 * work before msm_irq_uninstall() to avoid work re-enabling an
221 * irq after uninstall has disabled it.
224 flush_workqueue(priv->wq);
226 /* clean up event worker threads */
227 for (i = 0; i < priv->num_crtcs; i++) {
228 if (priv->event_thread[i].worker)
229 kthread_destroy_worker(priv->event_thread[i].worker);
232 msm_gem_shrinker_cleanup(ddev);
234 drm_kms_helper_poll_fini(ddev);
236 msm_perf_debugfs_cleanup(priv);
237 msm_rd_debugfs_cleanup(priv);
239 #ifdef CONFIG_DRM_FBDEV_EMULATION
240 if (fbdev && priv->fbdev)
241 msm_fbdev_free(ddev);
244 msm_disp_snapshot_destroy(ddev);
246 drm_mode_config_cleanup(ddev);
248 for (i = 0; i < priv->num_bridges; i++)
249 drm_bridge_remove(priv->bridges[i]);
250 priv->num_bridges = 0;
252 pm_runtime_get_sync(dev);
253 msm_irq_uninstall(ddev);
254 pm_runtime_put_sync(dev);
256 if (kms && kms->funcs)
257 kms->funcs->destroy(kms);
259 if (priv->vram.paddr) {
260 unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING;
261 drm_mm_takedown(&priv->vram.mm);
262 dma_free_attrs(dev, priv->vram.size, NULL,
263 priv->vram.paddr, attrs);
266 component_unbind_all(dev, ddev);
268 ddev->dev_private = NULL;
271 destroy_workqueue(priv->wq);
276 #include <linux/of_address.h>
278 struct msm_gem_address_space *msm_kms_init_aspace(struct drm_device *dev)
280 struct msm_gem_address_space *aspace;
282 struct device *mdp_dev = dev->dev;
283 struct device *mdss_dev = mdp_dev->parent;
284 struct device *iommu_dev;
287 * IOMMUs can be a part of MDSS device tree binding, or the
290 if (device_iommu_mapped(mdp_dev))
293 iommu_dev = mdss_dev;
295 mmu = msm_iommu_new(iommu_dev, 0);
297 return ERR_CAST(mmu);
300 drm_info(dev, "no IOMMU, fallback to phys contig buffers for scanout\n");
304 aspace = msm_gem_address_space_create(mmu, "mdp_kms",
305 0x1000, 0x100000000 - 0x1000);
306 if (IS_ERR(aspace)) {
307 dev_err(mdp_dev, "aspace create, error %pe\n", aspace);
308 mmu->funcs->destroy(mmu);
314 bool msm_use_mmu(struct drm_device *dev)
316 struct msm_drm_private *priv = dev->dev_private;
319 * a2xx comes with its own MMU
320 * On other platforms IOMMU can be declared specified either for the
321 * MDP/DPU device or for its parent, MDSS device.
323 return priv->is_a2xx ||
324 device_iommu_mapped(dev->dev) ||
325 device_iommu_mapped(dev->dev->parent);
328 static int msm_init_vram(struct drm_device *dev)
330 struct msm_drm_private *priv = dev->dev_private;
331 struct device_node *node;
332 unsigned long size = 0;
335 /* In the device-tree world, we could have a 'memory-region'
336 * phandle, which gives us a link to our "vram". Allocating
337 * is all nicely abstracted behind the dma api, but we need
338 * to know the entire size to allocate it all in one go. There
340 * 1) device with no IOMMU, in which case we need exclusive
341 * access to a VRAM carveout big enough for all gpu
343 * 2) device with IOMMU, but where the bootloader puts up
344 * a splash screen. In this case, the VRAM carveout
345 * need only be large enough for fbdev fb. But we need
346 * exclusive access to the buffer to avoid the kernel
347 * using those pages for other purposes (which appears
348 * as corruption on screen before we have a chance to
349 * load and do initial modeset)
352 node = of_parse_phandle(dev->dev->of_node, "memory-region", 0);
355 ret = of_address_to_resource(node, 0, &r);
359 size = r.end - r.start + 1;
360 DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
362 /* if we have no IOMMU, then we need to use carveout allocator.
363 * Grab the entire DMA chunk carved out in early startup in
366 } else if (!msm_use_mmu(dev)) {
367 DRM_INFO("using %s VRAM carveout\n", vram);
368 size = memparse(vram, NULL);
372 unsigned long attrs = 0;
375 priv->vram.size = size;
377 drm_mm_init(&priv->vram.mm, 0, (size >> PAGE_SHIFT) - 1);
378 spin_lock_init(&priv->vram.lock);
380 attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
381 attrs |= DMA_ATTR_WRITE_COMBINE;
383 /* note that for no-kernel-mapping, the vaddr returned
384 * is bogus, but non-null if allocation succeeded:
386 p = dma_alloc_attrs(dev->dev, size,
387 &priv->vram.paddr, GFP_KERNEL, attrs);
389 DRM_DEV_ERROR(dev->dev, "failed to allocate VRAM\n");
390 priv->vram.paddr = 0;
394 DRM_DEV_INFO(dev->dev, "VRAM: %08x->%08x\n",
395 (uint32_t)priv->vram.paddr,
396 (uint32_t)(priv->vram.paddr + size));
402 static int msm_drm_init(struct device *dev, const struct drm_driver *drv)
404 struct msm_drm_private *priv = dev_get_drvdata(dev);
405 struct drm_device *ddev;
409 if (drm_firmware_drivers_only())
412 ddev = drm_dev_alloc(drv, dev);
414 DRM_DEV_ERROR(dev, "failed to allocate drm_device\n");
415 return PTR_ERR(ddev);
417 ddev->dev_private = priv;
420 priv->wq = alloc_ordered_workqueue("msm", 0);
422 INIT_LIST_HEAD(&priv->objects);
423 mutex_init(&priv->obj_lock);
426 * Initialize the LRUs:
428 mutex_init(&priv->lru.lock);
429 drm_gem_lru_init(&priv->lru.unbacked, &priv->lru.lock);
430 drm_gem_lru_init(&priv->lru.pinned, &priv->lru.lock);
431 drm_gem_lru_init(&priv->lru.willneed, &priv->lru.lock);
432 drm_gem_lru_init(&priv->lru.dontneed, &priv->lru.lock);
434 /* Teach lockdep about lock ordering wrt. shrinker: */
435 fs_reclaim_acquire(GFP_KERNEL);
436 might_lock(&priv->lru.lock);
437 fs_reclaim_release(GFP_KERNEL);
439 drm_mode_config_init(ddev);
441 ret = msm_init_vram(ddev);
445 /* Bind all our sub-components: */
446 ret = component_bind_all(dev, ddev);
450 dma_set_max_seg_size(dev, UINT_MAX);
452 msm_gem_shrinker_init(ddev);
454 if (priv->kms_init) {
455 ret = priv->kms_init(ddev);
457 DRM_DEV_ERROR(dev, "failed to load kms\n");
463 /* valid only for the dummy headless case, where of_node=NULL */
464 WARN_ON(dev->of_node);
468 /* Enable normalization of plane zpos */
469 ddev->mode_config.normalize_zpos = true;
473 ret = kms->funcs->hw_init(kms);
475 DRM_DEV_ERROR(dev, "kms hw init failed: %d\n", ret);
480 drm_helper_move_panel_connectors_to_head(ddev);
482 ddev->mode_config.funcs = &mode_config_funcs;
483 ddev->mode_config.helper_private = &mode_config_helper_funcs;
485 for (i = 0; i < priv->num_crtcs; i++) {
486 /* initialize event thread */
487 priv->event_thread[i].crtc_id = priv->crtcs[i]->base.id;
488 priv->event_thread[i].dev = ddev;
489 priv->event_thread[i].worker = kthread_create_worker(0,
490 "crtc_event:%d", priv->event_thread[i].crtc_id);
491 if (IS_ERR(priv->event_thread[i].worker)) {
492 ret = PTR_ERR(priv->event_thread[i].worker);
493 DRM_DEV_ERROR(dev, "failed to create crtc_event kthread\n");
494 ret = PTR_ERR(priv->event_thread[i].worker);
498 sched_set_fifo(priv->event_thread[i].worker->task);
501 ret = drm_vblank_init(ddev, priv->num_crtcs);
503 DRM_DEV_ERROR(dev, "failed to initialize vblank\n");
508 pm_runtime_get_sync(dev);
509 ret = msm_irq_install(ddev, kms->irq);
510 pm_runtime_put_sync(dev);
512 DRM_DEV_ERROR(dev, "failed to install IRQ handler\n");
517 ret = drm_dev_register(ddev, 0);
522 ret = msm_disp_snapshot_init(ddev);
524 DRM_DEV_ERROR(dev, "msm_disp_snapshot_init failed ret = %d\n", ret);
526 drm_mode_config_reset(ddev);
528 #ifdef CONFIG_DRM_FBDEV_EMULATION
530 priv->fbdev = msm_fbdev_init(ddev);
533 ret = msm_debugfs_late_init(ddev);
537 drm_kms_helper_poll_init(ddev);
550 static void load_gpu(struct drm_device *dev)
552 static DEFINE_MUTEX(init_lock);
553 struct msm_drm_private *priv = dev->dev_private;
555 mutex_lock(&init_lock);
558 priv->gpu = adreno_load_gpu(dev);
560 mutex_unlock(&init_lock);
563 static int context_init(struct drm_device *dev, struct drm_file *file)
565 static atomic_t ident = ATOMIC_INIT(0);
566 struct msm_drm_private *priv = dev->dev_private;
567 struct msm_file_private *ctx;
569 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
573 INIT_LIST_HEAD(&ctx->submitqueues);
574 rwlock_init(&ctx->queuelock);
576 kref_init(&ctx->ref);
577 msm_submitqueue_init(dev, ctx);
579 ctx->aspace = msm_gpu_create_private_address_space(priv->gpu, current);
580 file->driver_priv = ctx;
582 ctx->seqno = atomic_inc_return(&ident);
587 static int msm_open(struct drm_device *dev, struct drm_file *file)
589 /* For now, load gpu on open.. to avoid the requirement of having
590 * firmware in the initrd.
594 return context_init(dev, file);
597 static void context_close(struct msm_file_private *ctx)
599 msm_submitqueue_close(ctx);
600 msm_file_private_put(ctx);
603 static void msm_postclose(struct drm_device *dev, struct drm_file *file)
605 struct msm_drm_private *priv = dev->dev_private;
606 struct msm_file_private *ctx = file->driver_priv;
609 * It is not possible to set sysprof param to non-zero if gpu
610 * is not initialized:
613 msm_file_private_set_sysprof(ctx, priv->gpu, 0);
618 int msm_crtc_enable_vblank(struct drm_crtc *crtc)
620 struct drm_device *dev = crtc->dev;
621 unsigned int pipe = crtc->index;
622 struct msm_drm_private *priv = dev->dev_private;
623 struct msm_kms *kms = priv->kms;
626 drm_dbg_vbl(dev, "crtc=%u", pipe);
627 return vblank_ctrl_queue_work(priv, pipe, true);
630 void msm_crtc_disable_vblank(struct drm_crtc *crtc)
632 struct drm_device *dev = crtc->dev;
633 unsigned int pipe = crtc->index;
634 struct msm_drm_private *priv = dev->dev_private;
635 struct msm_kms *kms = priv->kms;
638 drm_dbg_vbl(dev, "crtc=%u", pipe);
639 vblank_ctrl_queue_work(priv, pipe, false);
646 static int msm_ioctl_get_param(struct drm_device *dev, void *data,
647 struct drm_file *file)
649 struct msm_drm_private *priv = dev->dev_private;
650 struct drm_msm_param *args = data;
653 /* for now, we just have 3d pipe.. eventually this would need to
654 * be more clever to dispatch to appropriate gpu module:
656 if ((args->pipe != MSM_PIPE_3D0) || (args->pad != 0))
664 return gpu->funcs->get_param(gpu, file->driver_priv,
665 args->param, &args->value, &args->len);
668 static int msm_ioctl_set_param(struct drm_device *dev, void *data,
669 struct drm_file *file)
671 struct msm_drm_private *priv = dev->dev_private;
672 struct drm_msm_param *args = data;
675 if ((args->pipe != MSM_PIPE_3D0) || (args->pad != 0))
683 return gpu->funcs->set_param(gpu, file->driver_priv,
684 args->param, args->value, args->len);
687 static int msm_ioctl_gem_new(struct drm_device *dev, void *data,
688 struct drm_file *file)
690 struct drm_msm_gem_new *args = data;
691 uint32_t flags = args->flags;
693 if (args->flags & ~MSM_BO_FLAGS) {
694 DRM_ERROR("invalid flags: %08x\n", args->flags);
699 * Uncached CPU mappings are deprecated, as of:
701 * 9ef364432db4 ("drm/msm: deprecate MSM_BO_UNCACHED (map as writecombine instead)")
703 * So promote them to WC.
705 if (flags & MSM_BO_UNCACHED) {
706 flags &= ~MSM_BO_CACHED;
710 if (should_fail(&fail_gem_alloc, args->size))
713 return msm_gem_new_handle(dev, file, args->size,
714 args->flags, &args->handle, NULL);
717 static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
719 return ktime_set(timeout.tv_sec, timeout.tv_nsec);
722 static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
723 struct drm_file *file)
725 struct drm_msm_gem_cpu_prep *args = data;
726 struct drm_gem_object *obj;
727 ktime_t timeout = to_ktime(args->timeout);
730 if (args->op & ~MSM_PREP_FLAGS) {
731 DRM_ERROR("invalid op: %08x\n", args->op);
735 obj = drm_gem_object_lookup(file, args->handle);
739 ret = msm_gem_cpu_prep(obj, args->op, &timeout);
741 drm_gem_object_put(obj);
746 static int msm_ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
747 struct drm_file *file)
749 struct drm_msm_gem_cpu_fini *args = data;
750 struct drm_gem_object *obj;
753 obj = drm_gem_object_lookup(file, args->handle);
757 ret = msm_gem_cpu_fini(obj);
759 drm_gem_object_put(obj);
764 static int msm_ioctl_gem_info_iova(struct drm_device *dev,
765 struct drm_file *file, struct drm_gem_object *obj,
768 struct msm_drm_private *priv = dev->dev_private;
769 struct msm_file_private *ctx = file->driver_priv;
774 if (should_fail(&fail_gem_iova, obj->size))
778 * Don't pin the memory here - just get an address so that userspace can
781 return msm_gem_get_iova(obj, ctx->aspace, iova);
784 static int msm_ioctl_gem_info_set_iova(struct drm_device *dev,
785 struct drm_file *file, struct drm_gem_object *obj,
788 struct msm_drm_private *priv = dev->dev_private;
789 struct msm_file_private *ctx = file->driver_priv;
794 /* Only supported if per-process address space is supported: */
795 if (priv->gpu->aspace == ctx->aspace)
798 if (should_fail(&fail_gem_iova, obj->size))
801 return msm_gem_set_iova(obj, ctx->aspace, iova);
804 static int msm_ioctl_gem_info(struct drm_device *dev, void *data,
805 struct drm_file *file)
807 struct drm_msm_gem_info *args = data;
808 struct drm_gem_object *obj;
809 struct msm_gem_object *msm_obj;
815 switch (args->info) {
816 case MSM_INFO_GET_OFFSET:
817 case MSM_INFO_GET_IOVA:
818 case MSM_INFO_SET_IOVA:
819 case MSM_INFO_GET_FLAGS:
820 /* value returned as immediate, not pointer, so len==0: */
824 case MSM_INFO_SET_NAME:
825 case MSM_INFO_GET_NAME:
831 obj = drm_gem_object_lookup(file, args->handle);
835 msm_obj = to_msm_bo(obj);
837 switch (args->info) {
838 case MSM_INFO_GET_OFFSET:
839 args->value = msm_gem_mmap_offset(obj);
841 case MSM_INFO_GET_IOVA:
842 ret = msm_ioctl_gem_info_iova(dev, file, obj, &args->value);
844 case MSM_INFO_SET_IOVA:
845 ret = msm_ioctl_gem_info_set_iova(dev, file, obj, args->value);
847 case MSM_INFO_GET_FLAGS:
848 if (obj->import_attach) {
852 /* Hide internal kernel-only flags: */
853 args->value = to_msm_bo(obj)->flags & MSM_BO_FLAGS;
856 case MSM_INFO_SET_NAME:
857 /* length check should leave room for terminating null: */
858 if (args->len >= sizeof(msm_obj->name)) {
862 if (copy_from_user(msm_obj->name, u64_to_user_ptr(args->value),
864 msm_obj->name[0] = '\0';
868 msm_obj->name[args->len] = '\0';
869 for (i = 0; i < args->len; i++) {
870 if (!isprint(msm_obj->name[i])) {
871 msm_obj->name[i] = '\0';
876 case MSM_INFO_GET_NAME:
877 if (args->value && (args->len < strlen(msm_obj->name))) {
881 args->len = strlen(msm_obj->name);
883 if (copy_to_user(u64_to_user_ptr(args->value),
884 msm_obj->name, args->len))
890 drm_gem_object_put(obj);
895 static int wait_fence(struct msm_gpu_submitqueue *queue, uint32_t fence_id,
898 struct dma_fence *fence;
901 if (fence_after(fence_id, queue->last_fence)) {
902 DRM_ERROR_RATELIMITED("waiting on invalid fence: %u (of %u)\n",
903 fence_id, queue->last_fence);
908 * Map submitqueue scoped "seqno" (which is actually an idr key)
909 * back to underlying dma-fence
911 * The fence is removed from the fence_idr when the submit is
912 * retired, so if the fence is not found it means there is nothing
915 ret = mutex_lock_interruptible(&queue->idr_lock);
918 fence = idr_find(&queue->fence_idr, fence_id);
920 fence = dma_fence_get_rcu(fence);
921 mutex_unlock(&queue->idr_lock);
926 ret = dma_fence_wait_timeout(fence, true, timeout_to_jiffies(&timeout));
929 } else if (ret != -ERESTARTSYS) {
933 dma_fence_put(fence);
938 static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
939 struct drm_file *file)
941 struct msm_drm_private *priv = dev->dev_private;
942 struct drm_msm_wait_fence *args = data;
943 struct msm_gpu_submitqueue *queue;
947 DRM_ERROR("invalid pad: %08x\n", args->pad);
954 queue = msm_submitqueue_get(file->driver_priv, args->queueid);
958 ret = wait_fence(queue, args->fence, to_ktime(args->timeout));
960 msm_submitqueue_put(queue);
965 static int msm_ioctl_gem_madvise(struct drm_device *dev, void *data,
966 struct drm_file *file)
968 struct drm_msm_gem_madvise *args = data;
969 struct drm_gem_object *obj;
972 switch (args->madv) {
973 case MSM_MADV_DONTNEED:
974 case MSM_MADV_WILLNEED:
980 obj = drm_gem_object_lookup(file, args->handle);
985 ret = msm_gem_madvise(obj, args->madv);
987 args->retained = ret;
991 drm_gem_object_put(obj);
997 static int msm_ioctl_submitqueue_new(struct drm_device *dev, void *data,
998 struct drm_file *file)
1000 struct drm_msm_submitqueue *args = data;
1002 if (args->flags & ~MSM_SUBMITQUEUE_FLAGS)
1005 return msm_submitqueue_create(dev, file->driver_priv, args->prio,
1006 args->flags, &args->id);
1009 static int msm_ioctl_submitqueue_query(struct drm_device *dev, void *data,
1010 struct drm_file *file)
1012 return msm_submitqueue_query(dev, file->driver_priv, data);
1015 static int msm_ioctl_submitqueue_close(struct drm_device *dev, void *data,
1016 struct drm_file *file)
1018 u32 id = *(u32 *) data;
1020 return msm_submitqueue_remove(file->driver_priv, id);
1023 static const struct drm_ioctl_desc msm_ioctls[] = {
1024 DRM_IOCTL_DEF_DRV(MSM_GET_PARAM, msm_ioctl_get_param, DRM_RENDER_ALLOW),
1025 DRM_IOCTL_DEF_DRV(MSM_SET_PARAM, msm_ioctl_set_param, DRM_RENDER_ALLOW),
1026 DRM_IOCTL_DEF_DRV(MSM_GEM_NEW, msm_ioctl_gem_new, DRM_RENDER_ALLOW),
1027 DRM_IOCTL_DEF_DRV(MSM_GEM_INFO, msm_ioctl_gem_info, DRM_RENDER_ALLOW),
1028 DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_RENDER_ALLOW),
1029 DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_RENDER_ALLOW),
1030 DRM_IOCTL_DEF_DRV(MSM_GEM_SUBMIT, msm_ioctl_gem_submit, DRM_RENDER_ALLOW),
1031 DRM_IOCTL_DEF_DRV(MSM_WAIT_FENCE, msm_ioctl_wait_fence, DRM_RENDER_ALLOW),
1032 DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE, msm_ioctl_gem_madvise, DRM_RENDER_ALLOW),
1033 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_NEW, msm_ioctl_submitqueue_new, DRM_RENDER_ALLOW),
1034 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_CLOSE, msm_ioctl_submitqueue_close, DRM_RENDER_ALLOW),
1035 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_QUERY, msm_ioctl_submitqueue_query, DRM_RENDER_ALLOW),
1038 static void msm_fop_show_fdinfo(struct seq_file *m, struct file *f)
1040 struct drm_file *file = f->private_data;
1041 struct drm_device *dev = file->minor->dev;
1042 struct msm_drm_private *priv = dev->dev_private;
1043 struct drm_printer p = drm_seq_file_printer(m);
1048 msm_gpu_show_fdinfo(priv->gpu, file->driver_priv, &p);
1051 static const struct file_operations fops = {
1052 .owner = THIS_MODULE,
1054 .show_fdinfo = msm_fop_show_fdinfo,
1057 static const struct drm_driver msm_driver = {
1058 .driver_features = DRIVER_GEM |
1064 .postclose = msm_postclose,
1065 .lastclose = drm_fb_helper_lastclose,
1066 .dumb_create = msm_gem_dumb_create,
1067 .dumb_map_offset = msm_gem_dumb_map_offset,
1068 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
1069 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
1070 .gem_prime_import_sg_table = msm_gem_prime_import_sg_table,
1071 .gem_prime_mmap = msm_gem_prime_mmap,
1072 #ifdef CONFIG_DEBUG_FS
1073 .debugfs_init = msm_debugfs_init,
1075 .ioctls = msm_ioctls,
1076 .num_ioctls = ARRAY_SIZE(msm_ioctls),
1079 .desc = "MSM Snapdragon DRM",
1081 .major = MSM_VERSION_MAJOR,
1082 .minor = MSM_VERSION_MINOR,
1083 .patchlevel = MSM_VERSION_PATCHLEVEL,
1086 int msm_pm_prepare(struct device *dev)
1088 struct msm_drm_private *priv = dev_get_drvdata(dev);
1089 struct drm_device *ddev = priv ? priv->dev : NULL;
1091 if (!priv || !priv->kms)
1094 return drm_mode_config_helper_suspend(ddev);
1097 void msm_pm_complete(struct device *dev)
1099 struct msm_drm_private *priv = dev_get_drvdata(dev);
1100 struct drm_device *ddev = priv ? priv->dev : NULL;
1102 if (!priv || !priv->kms)
1105 drm_mode_config_helper_resume(ddev);
1108 static const struct dev_pm_ops msm_pm_ops = {
1109 .prepare = msm_pm_prepare,
1110 .complete = msm_pm_complete,
1114 * Componentized driver support:
1118 * Identify what components need to be added by parsing what remote-endpoints
1119 * our MDP output ports are connected to. In the case of LVDS on MDP4, there
1120 * is no external component that we need to add since LVDS is within MDP4
1123 static int add_components_mdp(struct device *master_dev,
1124 struct component_match **matchptr)
1126 struct device_node *np = master_dev->of_node;
1127 struct device_node *ep_node;
1129 for_each_endpoint_of_node(np, ep_node) {
1130 struct device_node *intf;
1131 struct of_endpoint ep;
1134 ret = of_graph_parse_endpoint(ep_node, &ep);
1136 DRM_DEV_ERROR(master_dev, "unable to parse port endpoint\n");
1137 of_node_put(ep_node);
1142 * The LCDC/LVDS port on MDP4 is a speacial case where the
1143 * remote-endpoint isn't a component that we need to add
1145 if (of_device_is_compatible(np, "qcom,mdp4") &&
1150 * It's okay if some of the ports don't have a remote endpoint
1151 * specified. It just means that the port isn't connected to
1152 * any external interface.
1154 intf = of_graph_get_remote_port_parent(ep_node);
1158 if (of_device_is_available(intf))
1159 drm_of_component_match_add(master_dev, matchptr,
1160 component_compare_of, intf);
1169 * We don't know what's the best binding to link the gpu with the drm device.
1170 * Fow now, we just hunt for all the possible gpus that we support, and add them
1173 static const struct of_device_id msm_gpu_match[] = {
1174 { .compatible = "qcom,adreno" },
1175 { .compatible = "qcom,adreno-3xx" },
1176 { .compatible = "amd,imageon" },
1177 { .compatible = "qcom,kgsl-3d0" },
1181 static int add_gpu_components(struct device *dev,
1182 struct component_match **matchptr)
1184 struct device_node *np;
1186 np = of_find_matching_node(NULL, msm_gpu_match);
1190 if (of_device_is_available(np))
1191 drm_of_component_match_add(dev, matchptr, component_compare_of, np);
1198 static int msm_drm_bind(struct device *dev)
1200 return msm_drm_init(dev, &msm_driver);
1203 static void msm_drm_unbind(struct device *dev)
1205 msm_drm_uninit(dev);
1208 const struct component_master_ops msm_drm_ops = {
1209 .bind = msm_drm_bind,
1210 .unbind = msm_drm_unbind,
1213 int msm_drv_probe(struct device *master_dev,
1214 int (*kms_init)(struct drm_device *dev))
1216 struct msm_drm_private *priv;
1217 struct component_match *match = NULL;
1220 priv = devm_kzalloc(master_dev, sizeof(*priv), GFP_KERNEL);
1224 priv->kms_init = kms_init;
1225 dev_set_drvdata(master_dev, priv);
1227 /* Add mdp components if we have KMS. */
1229 ret = add_components_mdp(master_dev, &match);
1234 ret = add_gpu_components(master_dev, &match);
1238 /* on all devices that I am aware of, iommu's which can map
1239 * any address the cpu can see are used:
1241 ret = dma_set_mask_and_coherent(master_dev, ~0);
1245 ret = component_master_add_with_match(master_dev, &msm_drm_ops, match);
1254 * Used only for headlesss GPU instances
1257 static int msm_pdev_probe(struct platform_device *pdev)
1259 return msm_drv_probe(&pdev->dev, NULL);
1262 static int msm_pdev_remove(struct platform_device *pdev)
1264 component_master_del(&pdev->dev, &msm_drm_ops);
1269 void msm_drv_shutdown(struct platform_device *pdev)
1271 struct msm_drm_private *priv = platform_get_drvdata(pdev);
1272 struct drm_device *drm = priv ? priv->dev : NULL;
1275 * Shutdown the hw if we're far enough along where things might be on.
1276 * If we run this too early, we'll end up panicking in any variety of
1277 * places. Since we don't register the drm device until late in
1278 * msm_drm_init, drm_dev->registered is used as an indicator that the
1279 * shutdown will be successful.
1281 if (drm && drm->registered)
1282 drm_atomic_helper_shutdown(drm);
1285 static struct platform_driver msm_platform_driver = {
1286 .probe = msm_pdev_probe,
1287 .remove = msm_pdev_remove,
1288 .shutdown = msm_drv_shutdown,
1295 static int __init msm_drm_register(void)
1304 msm_hdmi_register();
1307 msm_mdp4_register();
1308 msm_mdss_register();
1309 return platform_driver_register(&msm_platform_driver);
1312 static void __exit msm_drm_unregister(void)
1315 platform_driver_unregister(&msm_platform_driver);
1316 msm_mdss_unregister();
1317 msm_mdp4_unregister();
1318 msm_dp_unregister();
1319 msm_hdmi_unregister();
1320 adreno_unregister();
1321 msm_dsi_unregister();
1322 msm_mdp_unregister();
1323 msm_dpu_unregister();
1326 module_init(msm_drm_register);
1327 module_exit(msm_drm_unregister);
1330 MODULE_DESCRIPTION("MSM DRM Driver");
1331 MODULE_LICENSE("GPL");