1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
4 * Copyright (C) 2013 Red Hat
8 #include <linux/dma-mapping.h>
9 #include <linux/kthread.h>
10 #include <linux/uaccess.h>
11 #include <uapi/linux/sched/types.h>
13 #include <drm/drm_drv.h>
14 #include <drm/drm_file.h>
15 #include <drm/drm_ioctl.h>
16 #include <drm/drm_irq.h>
17 #include <drm/drm_prime.h>
18 #include <drm/drm_of.h>
19 #include <drm/drm_vblank.h>
22 #include "msm_debugfs.h"
23 #include "msm_fence.h"
27 #include "adreno/adreno_gpu.h"
31 * - 1.0.0 - initial interface
32 * - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers
33 * - 1.2.0 - adds explicit fence support for submit ioctl
34 * - 1.3.0 - adds GMEM_BASE + NR_RINGS params, SUBMITQUEUE_NEW +
35 * SUBMITQUEUE_CLOSE ioctls, and MSM_INFO_IOVA flag for
37 * - 1.4.0 - softpin, MSM_RELOC_BO_DUMP, and GEM_INFO support to set/get
38 * GEM object's debug name
39 * - 1.5.0 - Add SUBMITQUERY_QUERY ioctl
40 * - 1.6.0 - Syncobj support
42 #define MSM_VERSION_MAJOR 1
43 #define MSM_VERSION_MINOR 6
44 #define MSM_VERSION_PATCHLEVEL 0
46 static const struct drm_mode_config_funcs mode_config_funcs = {
47 .fb_create = msm_framebuffer_create,
48 .output_poll_changed = drm_fb_helper_output_poll_changed,
49 .atomic_check = drm_atomic_helper_check,
50 .atomic_commit = drm_atomic_helper_commit,
53 static const struct drm_mode_config_helper_funcs mode_config_helper_funcs = {
54 .atomic_commit_tail = msm_atomic_commit_tail,
57 #ifdef CONFIG_DRM_MSM_REGISTER_LOGGING
58 static bool reglog = false;
59 MODULE_PARM_DESC(reglog, "Enable register read/write logging");
60 module_param(reglog, bool, 0600);
65 #ifdef CONFIG_DRM_FBDEV_EMULATION
66 static bool fbdev = true;
67 MODULE_PARM_DESC(fbdev, "Enable fbdev compat layer");
68 module_param(fbdev, bool, 0600);
71 static char *vram = "16m";
72 MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)");
73 module_param(vram, charp, 0);
75 bool dumpstate = false;
76 MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors");
77 module_param(dumpstate, bool, 0600);
79 static bool modeset = true;
80 MODULE_PARM_DESC(modeset, "Use kernel modesetting [KMS] (1=on (default), 0=disable)");
81 module_param(modeset, bool, 0600);
87 struct clk *msm_clk_bulk_get_clock(struct clk_bulk_data *bulk, int count,
93 snprintf(n, sizeof(n), "%s_clk", name);
95 for (i = 0; bulk && i < count; i++) {
96 if (!strcmp(bulk[i].id, name) || !strcmp(bulk[i].id, n))
104 struct clk *msm_clk_get(struct platform_device *pdev, const char *name)
109 clk = devm_clk_get(&pdev->dev, name);
110 if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
113 snprintf(name2, sizeof(name2), "%s_clk", name);
115 clk = devm_clk_get(&pdev->dev, name2);
117 dev_warn(&pdev->dev, "Using legacy clk name binding. Use "
118 "\"%s\" instead of \"%s\"\n", name, name2);
123 void __iomem *_msm_ioremap(struct platform_device *pdev, const char *name,
124 const char *dbgname, bool quiet)
126 struct resource *res;
131 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
133 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
137 DRM_DEV_ERROR(&pdev->dev, "failed to get memory resource: %s\n", name);
138 return ERR_PTR(-EINVAL);
141 size = resource_size(res);
143 ptr = devm_ioremap(&pdev->dev, res->start, size);
146 DRM_DEV_ERROR(&pdev->dev, "failed to ioremap: %s\n", name);
147 return ERR_PTR(-ENOMEM);
151 printk(KERN_DEBUG "IO:region %s %p %08lx\n", dbgname, ptr, size);
156 void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
159 return _msm_ioremap(pdev, name, dbgname, false);
162 void __iomem *msm_ioremap_quiet(struct platform_device *pdev, const char *name,
165 return _msm_ioremap(pdev, name, dbgname, true);
168 void msm_writel(u32 data, void __iomem *addr)
171 printk(KERN_DEBUG "IO:W %p %08x\n", addr, data);
175 u32 msm_readl(const void __iomem *addr)
177 u32 val = readl(addr);
179 pr_err("IO:R %p %08x\n", addr, val);
183 struct msm_vblank_work {
184 struct work_struct work;
187 struct msm_drm_private *priv;
190 static void vblank_ctrl_worker(struct work_struct *work)
192 struct msm_vblank_work *vbl_work = container_of(work,
193 struct msm_vblank_work, work);
194 struct msm_drm_private *priv = vbl_work->priv;
195 struct msm_kms *kms = priv->kms;
197 if (vbl_work->enable)
198 kms->funcs->enable_vblank(kms, priv->crtcs[vbl_work->crtc_id]);
200 kms->funcs->disable_vblank(kms, priv->crtcs[vbl_work->crtc_id]);
205 static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
206 int crtc_id, bool enable)
208 struct msm_vblank_work *vbl_work;
210 vbl_work = kzalloc(sizeof(*vbl_work), GFP_ATOMIC);
214 INIT_WORK(&vbl_work->work, vblank_ctrl_worker);
216 vbl_work->crtc_id = crtc_id;
217 vbl_work->enable = enable;
218 vbl_work->priv = priv;
220 queue_work(priv->wq, &vbl_work->work);
225 static int msm_drm_uninit(struct device *dev)
227 struct platform_device *pdev = to_platform_device(dev);
228 struct drm_device *ddev = platform_get_drvdata(pdev);
229 struct msm_drm_private *priv = ddev->dev_private;
230 struct msm_kms *kms = priv->kms;
231 struct msm_mdss *mdss = priv->mdss;
235 * Shutdown the hw if we're far enough along where things might be on.
236 * If we run this too early, we'll end up panicking in any variety of
237 * places. Since we don't register the drm device until late in
238 * msm_drm_init, drm_dev->registered is used as an indicator that the
239 * shutdown will be successful.
241 if (ddev->registered) {
242 drm_dev_unregister(ddev);
243 drm_atomic_helper_shutdown(ddev);
246 /* We must cancel and cleanup any pending vblank enable/disable
247 * work before drm_irq_uninstall() to avoid work re-enabling an
248 * irq after uninstall has disabled it.
251 flush_workqueue(priv->wq);
253 /* clean up event worker threads */
254 for (i = 0; i < priv->num_crtcs; i++) {
255 if (priv->event_thread[i].worker)
256 kthread_destroy_worker(priv->event_thread[i].worker);
259 msm_gem_shrinker_cleanup(ddev);
261 drm_kms_helper_poll_fini(ddev);
263 msm_perf_debugfs_cleanup(priv);
264 msm_rd_debugfs_cleanup(priv);
266 #ifdef CONFIG_DRM_FBDEV_EMULATION
267 if (fbdev && priv->fbdev)
268 msm_fbdev_free(ddev);
271 drm_mode_config_cleanup(ddev);
273 pm_runtime_get_sync(dev);
274 drm_irq_uninstall(ddev);
275 pm_runtime_put_sync(dev);
277 if (kms && kms->funcs)
278 kms->funcs->destroy(kms);
280 if (priv->vram.paddr) {
281 unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING;
282 drm_mm_takedown(&priv->vram.mm);
283 dma_free_attrs(dev, priv->vram.size, NULL,
284 priv->vram.paddr, attrs);
287 component_unbind_all(dev, ddev);
289 if (mdss && mdss->funcs)
290 mdss->funcs->destroy(ddev);
292 ddev->dev_private = NULL;
295 destroy_workqueue(priv->wq);
305 static int get_mdp_ver(struct platform_device *pdev)
307 struct device *dev = &pdev->dev;
309 return (int) (unsigned long) of_device_get_match_data(dev);
312 #include <linux/of_address.h>
314 bool msm_use_mmu(struct drm_device *dev)
316 struct msm_drm_private *priv = dev->dev_private;
318 /* a2xx comes with its own MMU */
319 return priv->is_a2xx || iommu_present(&platform_bus_type);
322 static int msm_init_vram(struct drm_device *dev)
324 struct msm_drm_private *priv = dev->dev_private;
325 struct device_node *node;
326 unsigned long size = 0;
329 /* In the device-tree world, we could have a 'memory-region'
330 * phandle, which gives us a link to our "vram". Allocating
331 * is all nicely abstracted behind the dma api, but we need
332 * to know the entire size to allocate it all in one go. There
334 * 1) device with no IOMMU, in which case we need exclusive
335 * access to a VRAM carveout big enough for all gpu
337 * 2) device with IOMMU, but where the bootloader puts up
338 * a splash screen. In this case, the VRAM carveout
339 * need only be large enough for fbdev fb. But we need
340 * exclusive access to the buffer to avoid the kernel
341 * using those pages for other purposes (which appears
342 * as corruption on screen before we have a chance to
343 * load and do initial modeset)
346 node = of_parse_phandle(dev->dev->of_node, "memory-region", 0);
349 ret = of_address_to_resource(node, 0, &r);
353 size = r.end - r.start;
354 DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
356 /* if we have no IOMMU, then we need to use carveout allocator.
357 * Grab the entire CMA chunk carved out in early startup in
360 } else if (!msm_use_mmu(dev)) {
361 DRM_INFO("using %s VRAM carveout\n", vram);
362 size = memparse(vram, NULL);
366 unsigned long attrs = 0;
369 priv->vram.size = size;
371 drm_mm_init(&priv->vram.mm, 0, (size >> PAGE_SHIFT) - 1);
372 spin_lock_init(&priv->vram.lock);
374 attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
375 attrs |= DMA_ATTR_WRITE_COMBINE;
377 /* note that for no-kernel-mapping, the vaddr returned
378 * is bogus, but non-null if allocation succeeded:
380 p = dma_alloc_attrs(dev->dev, size,
381 &priv->vram.paddr, GFP_KERNEL, attrs);
383 DRM_DEV_ERROR(dev->dev, "failed to allocate VRAM\n");
384 priv->vram.paddr = 0;
388 DRM_DEV_INFO(dev->dev, "VRAM: %08x->%08x\n",
389 (uint32_t)priv->vram.paddr,
390 (uint32_t)(priv->vram.paddr + size));
396 static int msm_drm_init(struct device *dev, struct drm_driver *drv)
398 struct platform_device *pdev = to_platform_device(dev);
399 struct drm_device *ddev;
400 struct msm_drm_private *priv;
402 struct msm_mdss *mdss;
405 ddev = drm_dev_alloc(drv, dev);
407 DRM_DEV_ERROR(dev, "failed to allocate drm_device\n");
408 return PTR_ERR(ddev);
411 platform_set_drvdata(pdev, ddev);
413 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
416 goto err_put_drm_dev;
419 ddev->dev_private = priv;
422 switch (get_mdp_ver(pdev)) {
424 ret = mdp5_mdss_init(ddev);
427 ret = dpu_mdss_init(ddev);
438 priv->wq = alloc_ordered_workqueue("msm", 0);
440 INIT_WORK(&priv->free_work, msm_gem_free_work);
441 init_llist_head(&priv->free_list);
443 INIT_LIST_HEAD(&priv->inactive_list);
445 drm_mode_config_init(ddev);
447 /* Bind all our sub-components: */
448 ret = component_bind_all(dev, ddev);
450 goto err_destroy_mdss;
452 ret = msm_init_vram(ddev);
456 if (!dev->dma_parms) {
457 dev->dma_parms = devm_kzalloc(dev, sizeof(*dev->dma_parms),
459 if (!dev->dma_parms) {
464 dma_set_max_seg_size(dev, DMA_BIT_MASK(32));
466 msm_gem_shrinker_init(ddev);
468 switch (get_mdp_ver(pdev)) {
470 kms = mdp4_kms_init(ddev);
474 kms = mdp5_kms_init(ddev);
477 kms = dpu_kms_init(ddev);
481 /* valid only for the dummy headless case, where of_node=NULL */
482 WARN_ON(dev->of_node);
488 DRM_DEV_ERROR(dev, "failed to load kms\n");
494 /* Enable normalization of plane zpos */
495 ddev->mode_config.normalize_zpos = true;
499 ret = kms->funcs->hw_init(kms);
501 DRM_DEV_ERROR(dev, "kms hw init failed: %d\n", ret);
506 ddev->mode_config.funcs = &mode_config_funcs;
507 ddev->mode_config.helper_private = &mode_config_helper_funcs;
509 for (i = 0; i < priv->num_crtcs; i++) {
510 /* initialize event thread */
511 priv->event_thread[i].crtc_id = priv->crtcs[i]->base.id;
512 priv->event_thread[i].dev = ddev;
513 priv->event_thread[i].worker = kthread_create_worker(0,
514 "crtc_event:%d", priv->event_thread[i].crtc_id);
515 if (IS_ERR(priv->event_thread[i].worker)) {
516 DRM_DEV_ERROR(dev, "failed to create crtc_event kthread\n");
520 sched_set_fifo(priv->event_thread[i].worker->task);
523 ret = drm_vblank_init(ddev, priv->num_crtcs);
525 DRM_DEV_ERROR(dev, "failed to initialize vblank\n");
530 pm_runtime_get_sync(dev);
531 ret = drm_irq_install(ddev, kms->irq);
532 pm_runtime_put_sync(dev);
534 DRM_DEV_ERROR(dev, "failed to install IRQ handler\n");
539 ret = drm_dev_register(ddev, 0);
543 drm_mode_config_reset(ddev);
545 #ifdef CONFIG_DRM_FBDEV_EMULATION
547 priv->fbdev = msm_fbdev_init(ddev);
550 ret = msm_debugfs_late_init(ddev);
554 drm_kms_helper_poll_init(ddev);
562 if (mdss && mdss->funcs)
563 mdss->funcs->destroy(ddev);
575 static void load_gpu(struct drm_device *dev)
577 static DEFINE_MUTEX(init_lock);
578 struct msm_drm_private *priv = dev->dev_private;
580 mutex_lock(&init_lock);
583 priv->gpu = adreno_load_gpu(dev);
585 mutex_unlock(&init_lock);
588 static int context_init(struct drm_device *dev, struct drm_file *file)
590 struct msm_drm_private *priv = dev->dev_private;
591 struct msm_file_private *ctx;
593 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
597 msm_submitqueue_init(dev, ctx);
599 ctx->aspace = priv->gpu ? priv->gpu->aspace : NULL;
600 file->driver_priv = ctx;
605 static int msm_open(struct drm_device *dev, struct drm_file *file)
607 /* For now, load gpu on open.. to avoid the requirement of having
608 * firmware in the initrd.
612 return context_init(dev, file);
615 static void context_close(struct msm_file_private *ctx)
617 msm_submitqueue_close(ctx);
621 static void msm_postclose(struct drm_device *dev, struct drm_file *file)
623 struct msm_drm_private *priv = dev->dev_private;
624 struct msm_file_private *ctx = file->driver_priv;
626 mutex_lock(&dev->struct_mutex);
627 if (ctx == priv->lastctx)
628 priv->lastctx = NULL;
629 mutex_unlock(&dev->struct_mutex);
634 static irqreturn_t msm_irq(int irq, void *arg)
636 struct drm_device *dev = arg;
637 struct msm_drm_private *priv = dev->dev_private;
638 struct msm_kms *kms = priv->kms;
640 return kms->funcs->irq(kms);
643 static void msm_irq_preinstall(struct drm_device *dev)
645 struct msm_drm_private *priv = dev->dev_private;
646 struct msm_kms *kms = priv->kms;
648 kms->funcs->irq_preinstall(kms);
651 static int msm_irq_postinstall(struct drm_device *dev)
653 struct msm_drm_private *priv = dev->dev_private;
654 struct msm_kms *kms = priv->kms;
657 if (kms->funcs->irq_postinstall)
658 return kms->funcs->irq_postinstall(kms);
663 static void msm_irq_uninstall(struct drm_device *dev)
665 struct msm_drm_private *priv = dev->dev_private;
666 struct msm_kms *kms = priv->kms;
668 kms->funcs->irq_uninstall(kms);
671 int msm_crtc_enable_vblank(struct drm_crtc *crtc)
673 struct drm_device *dev = crtc->dev;
674 unsigned int pipe = crtc->index;
675 struct msm_drm_private *priv = dev->dev_private;
676 struct msm_kms *kms = priv->kms;
679 DBG("dev=%p, crtc=%u", dev, pipe);
680 return vblank_ctrl_queue_work(priv, pipe, true);
683 void msm_crtc_disable_vblank(struct drm_crtc *crtc)
685 struct drm_device *dev = crtc->dev;
686 unsigned int pipe = crtc->index;
687 struct msm_drm_private *priv = dev->dev_private;
688 struct msm_kms *kms = priv->kms;
691 DBG("dev=%p, crtc=%u", dev, pipe);
692 vblank_ctrl_queue_work(priv, pipe, false);
699 static int msm_ioctl_get_param(struct drm_device *dev, void *data,
700 struct drm_file *file)
702 struct msm_drm_private *priv = dev->dev_private;
703 struct drm_msm_param *args = data;
706 /* for now, we just have 3d pipe.. eventually this would need to
707 * be more clever to dispatch to appropriate gpu module:
709 if (args->pipe != MSM_PIPE_3D0)
717 return gpu->funcs->get_param(gpu, args->param, &args->value);
720 static int msm_ioctl_gem_new(struct drm_device *dev, void *data,
721 struct drm_file *file)
723 struct drm_msm_gem_new *args = data;
725 if (args->flags & ~MSM_BO_FLAGS) {
726 DRM_ERROR("invalid flags: %08x\n", args->flags);
730 return msm_gem_new_handle(dev, file, args->size,
731 args->flags, &args->handle, NULL);
734 static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
736 return ktime_set(timeout.tv_sec, timeout.tv_nsec);
739 static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
740 struct drm_file *file)
742 struct drm_msm_gem_cpu_prep *args = data;
743 struct drm_gem_object *obj;
744 ktime_t timeout = to_ktime(args->timeout);
747 if (args->op & ~MSM_PREP_FLAGS) {
748 DRM_ERROR("invalid op: %08x\n", args->op);
752 obj = drm_gem_object_lookup(file, args->handle);
756 ret = msm_gem_cpu_prep(obj, args->op, &timeout);
758 drm_gem_object_put(obj);
763 static int msm_ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
764 struct drm_file *file)
766 struct drm_msm_gem_cpu_fini *args = data;
767 struct drm_gem_object *obj;
770 obj = drm_gem_object_lookup(file, args->handle);
774 ret = msm_gem_cpu_fini(obj);
776 drm_gem_object_put(obj);
781 static int msm_ioctl_gem_info_iova(struct drm_device *dev,
782 struct drm_gem_object *obj, uint64_t *iova)
784 struct msm_drm_private *priv = dev->dev_private;
790 * Don't pin the memory here - just get an address so that userspace can
793 return msm_gem_get_iova(obj, priv->gpu->aspace, iova);
796 static int msm_ioctl_gem_info(struct drm_device *dev, void *data,
797 struct drm_file *file)
799 struct drm_msm_gem_info *args = data;
800 struct drm_gem_object *obj;
801 struct msm_gem_object *msm_obj;
807 switch (args->info) {
808 case MSM_INFO_GET_OFFSET:
809 case MSM_INFO_GET_IOVA:
810 /* value returned as immediate, not pointer, so len==0: */
814 case MSM_INFO_SET_NAME:
815 case MSM_INFO_GET_NAME:
821 obj = drm_gem_object_lookup(file, args->handle);
825 msm_obj = to_msm_bo(obj);
827 switch (args->info) {
828 case MSM_INFO_GET_OFFSET:
829 args->value = msm_gem_mmap_offset(obj);
831 case MSM_INFO_GET_IOVA:
832 ret = msm_ioctl_gem_info_iova(dev, obj, &args->value);
834 case MSM_INFO_SET_NAME:
835 /* length check should leave room for terminating null: */
836 if (args->len >= sizeof(msm_obj->name)) {
840 if (copy_from_user(msm_obj->name, u64_to_user_ptr(args->value),
842 msm_obj->name[0] = '\0';
846 msm_obj->name[args->len] = '\0';
847 for (i = 0; i < args->len; i++) {
848 if (!isprint(msm_obj->name[i])) {
849 msm_obj->name[i] = '\0';
854 case MSM_INFO_GET_NAME:
855 if (args->value && (args->len < strlen(msm_obj->name))) {
859 args->len = strlen(msm_obj->name);
861 if (copy_to_user(u64_to_user_ptr(args->value),
862 msm_obj->name, args->len))
868 drm_gem_object_put(obj);
873 static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
874 struct drm_file *file)
876 struct msm_drm_private *priv = dev->dev_private;
877 struct drm_msm_wait_fence *args = data;
878 ktime_t timeout = to_ktime(args->timeout);
879 struct msm_gpu_submitqueue *queue;
880 struct msm_gpu *gpu = priv->gpu;
884 DRM_ERROR("invalid pad: %08x\n", args->pad);
891 queue = msm_submitqueue_get(file->driver_priv, args->queueid);
895 ret = msm_wait_fence(gpu->rb[queue->prio]->fctx, args->fence, &timeout,
898 msm_submitqueue_put(queue);
902 static int msm_ioctl_gem_madvise(struct drm_device *dev, void *data,
903 struct drm_file *file)
905 struct drm_msm_gem_madvise *args = data;
906 struct drm_gem_object *obj;
909 switch (args->madv) {
910 case MSM_MADV_DONTNEED:
911 case MSM_MADV_WILLNEED:
917 ret = mutex_lock_interruptible(&dev->struct_mutex);
921 obj = drm_gem_object_lookup(file, args->handle);
927 ret = msm_gem_madvise(obj, args->madv);
929 args->retained = ret;
933 drm_gem_object_put_locked(obj);
936 mutex_unlock(&dev->struct_mutex);
941 static int msm_ioctl_submitqueue_new(struct drm_device *dev, void *data,
942 struct drm_file *file)
944 struct drm_msm_submitqueue *args = data;
946 if (args->flags & ~MSM_SUBMITQUEUE_FLAGS)
949 return msm_submitqueue_create(dev, file->driver_priv, args->prio,
950 args->flags, &args->id);
953 static int msm_ioctl_submitqueue_query(struct drm_device *dev, void *data,
954 struct drm_file *file)
956 return msm_submitqueue_query(dev, file->driver_priv, data);
959 static int msm_ioctl_submitqueue_close(struct drm_device *dev, void *data,
960 struct drm_file *file)
962 u32 id = *(u32 *) data;
964 return msm_submitqueue_remove(file->driver_priv, id);
967 static const struct drm_ioctl_desc msm_ioctls[] = {
968 DRM_IOCTL_DEF_DRV(MSM_GET_PARAM, msm_ioctl_get_param, DRM_RENDER_ALLOW),
969 DRM_IOCTL_DEF_DRV(MSM_GEM_NEW, msm_ioctl_gem_new, DRM_RENDER_ALLOW),
970 DRM_IOCTL_DEF_DRV(MSM_GEM_INFO, msm_ioctl_gem_info, DRM_RENDER_ALLOW),
971 DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_RENDER_ALLOW),
972 DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_RENDER_ALLOW),
973 DRM_IOCTL_DEF_DRV(MSM_GEM_SUBMIT, msm_ioctl_gem_submit, DRM_RENDER_ALLOW),
974 DRM_IOCTL_DEF_DRV(MSM_WAIT_FENCE, msm_ioctl_wait_fence, DRM_RENDER_ALLOW),
975 DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE, msm_ioctl_gem_madvise, DRM_RENDER_ALLOW),
976 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_NEW, msm_ioctl_submitqueue_new, DRM_RENDER_ALLOW),
977 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_CLOSE, msm_ioctl_submitqueue_close, DRM_RENDER_ALLOW),
978 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_QUERY, msm_ioctl_submitqueue_query, DRM_RENDER_ALLOW),
981 static const struct vm_operations_struct vm_ops = {
982 .fault = msm_gem_fault,
983 .open = drm_gem_vm_open,
984 .close = drm_gem_vm_close,
987 static const struct file_operations fops = {
988 .owner = THIS_MODULE,
990 .release = drm_release,
991 .unlocked_ioctl = drm_ioctl,
992 .compat_ioctl = drm_compat_ioctl,
996 .mmap = msm_gem_mmap,
999 static struct drm_driver msm_driver = {
1000 .driver_features = DRIVER_GEM |
1006 .postclose = msm_postclose,
1007 .lastclose = drm_fb_helper_lastclose,
1008 .irq_handler = msm_irq,
1009 .irq_preinstall = msm_irq_preinstall,
1010 .irq_postinstall = msm_irq_postinstall,
1011 .irq_uninstall = msm_irq_uninstall,
1012 .gem_free_object_unlocked = msm_gem_free_object,
1013 .gem_vm_ops = &vm_ops,
1014 .dumb_create = msm_gem_dumb_create,
1015 .dumb_map_offset = msm_gem_dumb_map_offset,
1016 .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
1017 .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
1018 .gem_prime_pin = msm_gem_prime_pin,
1019 .gem_prime_unpin = msm_gem_prime_unpin,
1020 .gem_prime_get_sg_table = msm_gem_prime_get_sg_table,
1021 .gem_prime_import_sg_table = msm_gem_prime_import_sg_table,
1022 .gem_prime_vmap = msm_gem_prime_vmap,
1023 .gem_prime_vunmap = msm_gem_prime_vunmap,
1024 .gem_prime_mmap = msm_gem_prime_mmap,
1025 #ifdef CONFIG_DEBUG_FS
1026 .debugfs_init = msm_debugfs_init,
1028 .ioctls = msm_ioctls,
1029 .num_ioctls = ARRAY_SIZE(msm_ioctls),
1032 .desc = "MSM Snapdragon DRM",
1034 .major = MSM_VERSION_MAJOR,
1035 .minor = MSM_VERSION_MINOR,
1036 .patchlevel = MSM_VERSION_PATCHLEVEL,
1039 static int __maybe_unused msm_runtime_suspend(struct device *dev)
1041 struct drm_device *ddev = dev_get_drvdata(dev);
1042 struct msm_drm_private *priv = ddev->dev_private;
1043 struct msm_mdss *mdss = priv->mdss;
1047 if (mdss && mdss->funcs)
1048 return mdss->funcs->disable(mdss);
1053 static int __maybe_unused msm_runtime_resume(struct device *dev)
1055 struct drm_device *ddev = dev_get_drvdata(dev);
1056 struct msm_drm_private *priv = ddev->dev_private;
1057 struct msm_mdss *mdss = priv->mdss;
1061 if (mdss && mdss->funcs)
1062 return mdss->funcs->enable(mdss);
1067 static int __maybe_unused msm_pm_suspend(struct device *dev)
1070 if (pm_runtime_suspended(dev))
1073 return msm_runtime_suspend(dev);
1076 static int __maybe_unused msm_pm_resume(struct device *dev)
1078 if (pm_runtime_suspended(dev))
1081 return msm_runtime_resume(dev);
1084 static int __maybe_unused msm_pm_prepare(struct device *dev)
1086 struct drm_device *ddev = dev_get_drvdata(dev);
1088 return drm_mode_config_helper_suspend(ddev);
1091 static void __maybe_unused msm_pm_complete(struct device *dev)
1093 struct drm_device *ddev = dev_get_drvdata(dev);
1095 drm_mode_config_helper_resume(ddev);
1098 static const struct dev_pm_ops msm_pm_ops = {
1099 SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume)
1100 SET_RUNTIME_PM_OPS(msm_runtime_suspend, msm_runtime_resume, NULL)
1101 .prepare = msm_pm_prepare,
1102 .complete = msm_pm_complete,
1106 * Componentized driver support:
1110 * NOTE: duplication of the same code as exynos or imx (or probably any other).
1111 * so probably some room for some helpers
1113 static int compare_of(struct device *dev, void *data)
1115 return dev->of_node == data;
1119 * Identify what components need to be added by parsing what remote-endpoints
1120 * our MDP output ports are connected to. In the case of LVDS on MDP4, there
1121 * is no external component that we need to add since LVDS is within MDP4
1124 static int add_components_mdp(struct device *mdp_dev,
1125 struct component_match **matchptr)
1127 struct device_node *np = mdp_dev->of_node;
1128 struct device_node *ep_node;
1129 struct device *master_dev;
1132 * on MDP4 based platforms, the MDP platform device is the component
1133 * master that adds other display interface components to itself.
1135 * on MDP5 based platforms, the MDSS platform device is the component
1136 * master that adds MDP5 and other display interface components to
1139 if (of_device_is_compatible(np, "qcom,mdp4"))
1140 master_dev = mdp_dev;
1142 master_dev = mdp_dev->parent;
1144 for_each_endpoint_of_node(np, ep_node) {
1145 struct device_node *intf;
1146 struct of_endpoint ep;
1149 ret = of_graph_parse_endpoint(ep_node, &ep);
1151 DRM_DEV_ERROR(mdp_dev, "unable to parse port endpoint\n");
1152 of_node_put(ep_node);
1157 * The LCDC/LVDS port on MDP4 is a speacial case where the
1158 * remote-endpoint isn't a component that we need to add
1160 if (of_device_is_compatible(np, "qcom,mdp4") &&
1165 * It's okay if some of the ports don't have a remote endpoint
1166 * specified. It just means that the port isn't connected to
1167 * any external interface.
1169 intf = of_graph_get_remote_port_parent(ep_node);
1173 if (of_device_is_available(intf))
1174 drm_of_component_match_add(master_dev, matchptr,
1183 static int compare_name_mdp(struct device *dev, void *data)
1185 return (strstr(dev_name(dev), "mdp") != NULL);
1188 static int add_display_components(struct device *dev,
1189 struct component_match **matchptr)
1191 struct device *mdp_dev;
1195 * MDP5/DPU based devices don't have a flat hierarchy. There is a top
1196 * level parent: MDSS, and children: MDP5/DPU, DSI, HDMI, eDP etc.
1197 * Populate the children devices, find the MDP5/DPU node, and then add
1198 * the interfaces to our components list.
1200 if (of_device_is_compatible(dev->of_node, "qcom,mdss") ||
1201 of_device_is_compatible(dev->of_node, "qcom,sdm845-mdss") ||
1202 of_device_is_compatible(dev->of_node, "qcom,sc7180-mdss")) {
1203 ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
1205 DRM_DEV_ERROR(dev, "failed to populate children devices\n");
1209 mdp_dev = device_find_child(dev, NULL, compare_name_mdp);
1211 DRM_DEV_ERROR(dev, "failed to find MDSS MDP node\n");
1212 of_platform_depopulate(dev);
1216 put_device(mdp_dev);
1218 /* add the MDP component itself */
1219 drm_of_component_match_add(dev, matchptr, compare_of,
1226 ret = add_components_mdp(mdp_dev, matchptr);
1228 of_platform_depopulate(dev);
1234 * We don't know what's the best binding to link the gpu with the drm device.
1235 * Fow now, we just hunt for all the possible gpus that we support, and add them
1238 static const struct of_device_id msm_gpu_match[] = {
1239 { .compatible = "qcom,adreno" },
1240 { .compatible = "qcom,adreno-3xx" },
1241 { .compatible = "amd,imageon" },
1242 { .compatible = "qcom,kgsl-3d0" },
1246 static int add_gpu_components(struct device *dev,
1247 struct component_match **matchptr)
1249 struct device_node *np;
1251 np = of_find_matching_node(NULL, msm_gpu_match);
1255 if (of_device_is_available(np))
1256 drm_of_component_match_add(dev, matchptr, compare_of, np);
1263 static int msm_drm_bind(struct device *dev)
1265 return msm_drm_init(dev, &msm_driver);
1268 static void msm_drm_unbind(struct device *dev)
1270 msm_drm_uninit(dev);
1273 static const struct component_master_ops msm_drm_ops = {
1274 .bind = msm_drm_bind,
1275 .unbind = msm_drm_unbind,
1282 static int msm_pdev_probe(struct platform_device *pdev)
1284 struct component_match *match = NULL;
1287 if (get_mdp_ver(pdev)) {
1288 ret = add_display_components(&pdev->dev, &match);
1293 ret = add_gpu_components(&pdev->dev, &match);
1297 /* on all devices that I am aware of, iommu's which can map
1298 * any address the cpu can see are used:
1300 ret = dma_set_mask_and_coherent(&pdev->dev, ~0);
1304 ret = component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
1311 of_platform_depopulate(&pdev->dev);
1315 static int msm_pdev_remove(struct platform_device *pdev)
1317 component_master_del(&pdev->dev, &msm_drm_ops);
1318 of_platform_depopulate(&pdev->dev);
1323 static const struct of_device_id dt_match[] = {
1324 { .compatible = "qcom,mdp4", .data = (void *)KMS_MDP4 },
1325 { .compatible = "qcom,mdss", .data = (void *)KMS_MDP5 },
1326 { .compatible = "qcom,sdm845-mdss", .data = (void *)KMS_DPU },
1327 { .compatible = "qcom,sc7180-mdss", .data = (void *)KMS_DPU },
1330 MODULE_DEVICE_TABLE(of, dt_match);
1332 static struct platform_driver msm_platform_driver = {
1333 .probe = msm_pdev_probe,
1334 .remove = msm_pdev_remove,
1337 .of_match_table = dt_match,
1342 static int __init msm_drm_register(void)
1352 msm_hdmi_register();
1354 return platform_driver_register(&msm_platform_driver);
1357 static void __exit msm_drm_unregister(void)
1360 platform_driver_unregister(&msm_platform_driver);
1361 msm_hdmi_unregister();
1362 adreno_unregister();
1363 msm_edp_unregister();
1364 msm_dsi_unregister();
1365 msm_mdp_unregister();
1366 msm_dpu_unregister();
1369 module_init(msm_drm_register);
1370 module_exit(msm_drm_unregister);
1373 MODULE_DESCRIPTION("MSM DRM Driver");
1374 MODULE_LICENSE("GPL");