GNU Linux-libre 4.14.328-gnu1
[releases.git] / drivers / gpu / drm / msm / msm_drv.c
1 /*
2  * Copyright (C) 2013 Red Hat
3  * Author: Rob Clark <robdclark@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <drm/drm_of.h>
19
20 #include "msm_drv.h"
21 #include "msm_debugfs.h"
22 #include "msm_fence.h"
23 #include "msm_gpu.h"
24 #include "msm_kms.h"
25
26
27 /*
28  * MSM driver version:
29  * - 1.0.0 - initial interface
30  * - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers
31  * - 1.2.0 - adds explicit fence support for submit ioctl
32  */
33 #define MSM_VERSION_MAJOR       1
34 #define MSM_VERSION_MINOR       2
35 #define MSM_VERSION_PATCHLEVEL  0
36
37 static void msm_fb_output_poll_changed(struct drm_device *dev)
38 {
39         struct msm_drm_private *priv = dev->dev_private;
40         if (priv->fbdev)
41                 drm_fb_helper_hotplug_event(priv->fbdev);
42 }
43
44 static const struct drm_mode_config_funcs mode_config_funcs = {
45         .fb_create = msm_framebuffer_create,
46         .output_poll_changed = msm_fb_output_poll_changed,
47         .atomic_check = msm_atomic_check,
48         .atomic_commit = msm_atomic_commit,
49         .atomic_state_alloc = msm_atomic_state_alloc,
50         .atomic_state_clear = msm_atomic_state_clear,
51         .atomic_state_free = msm_atomic_state_free,
52 };
53
54 #ifdef CONFIG_DRM_MSM_REGISTER_LOGGING
55 static bool reglog = false;
56 MODULE_PARM_DESC(reglog, "Enable register read/write logging");
57 module_param(reglog, bool, 0600);
58 #else
59 #define reglog 0
60 #endif
61
62 #ifdef CONFIG_DRM_FBDEV_EMULATION
63 static bool fbdev = true;
64 MODULE_PARM_DESC(fbdev, "Enable fbdev compat layer");
65 module_param(fbdev, bool, 0600);
66 #endif
67
68 static char *vram = "16m";
69 MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)");
70 module_param(vram, charp, 0);
71
72 bool dumpstate = false;
73 MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors");
74 module_param(dumpstate, bool, 0600);
75
76 static bool modeset = true;
77 MODULE_PARM_DESC(modeset, "Use kernel modesetting [KMS] (1=on (default), 0=disable)");
78 module_param(modeset, bool, 0600);
79
80 /*
81  * Util/helpers:
82  */
83
84 struct clk *msm_clk_get(struct platform_device *pdev, const char *name)
85 {
86         struct clk *clk;
87         char name2[32];
88
89         clk = devm_clk_get(&pdev->dev, name);
90         if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
91                 return clk;
92
93         snprintf(name2, sizeof(name2), "%s_clk", name);
94
95         clk = devm_clk_get(&pdev->dev, name2);
96         if (!IS_ERR(clk))
97                 dev_warn(&pdev->dev, "Using legacy clk name binding.  Use "
98                                 "\"%s\" instead of \"%s\"\n", name, name2);
99
100         return clk;
101 }
102
103 void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
104                 const char *dbgname)
105 {
106         struct resource *res;
107         unsigned long size;
108         void __iomem *ptr;
109
110         if (name)
111                 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
112         else
113                 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
114
115         if (!res) {
116                 dev_err(&pdev->dev, "failed to get memory resource: %s\n", name);
117                 return ERR_PTR(-EINVAL);
118         }
119
120         size = resource_size(res);
121
122         ptr = devm_ioremap_nocache(&pdev->dev, res->start, size);
123         if (!ptr) {
124                 dev_err(&pdev->dev, "failed to ioremap: %s\n", name);
125                 return ERR_PTR(-ENOMEM);
126         }
127
128         if (reglog)
129                 printk(KERN_DEBUG "IO:region %s %p %08lx\n", dbgname, ptr, size);
130
131         return ptr;
132 }
133
134 void msm_writel(u32 data, void __iomem *addr)
135 {
136         if (reglog)
137                 printk(KERN_DEBUG "IO:W %p %08x\n", addr, data);
138         writel(data, addr);
139 }
140
141 u32 msm_readl(const void __iomem *addr)
142 {
143         u32 val = readl(addr);
144         if (reglog)
145                 pr_err("IO:R %p %08x\n", addr, val);
146         return val;
147 }
148
149 struct vblank_event {
150         struct list_head node;
151         int crtc_id;
152         bool enable;
153 };
154
155 static void vblank_ctrl_worker(struct work_struct *work)
156 {
157         struct msm_vblank_ctrl *vbl_ctrl = container_of(work,
158                                                 struct msm_vblank_ctrl, work);
159         struct msm_drm_private *priv = container_of(vbl_ctrl,
160                                         struct msm_drm_private, vblank_ctrl);
161         struct msm_kms *kms = priv->kms;
162         struct vblank_event *vbl_ev, *tmp;
163         unsigned long flags;
164
165         spin_lock_irqsave(&vbl_ctrl->lock, flags);
166         list_for_each_entry_safe(vbl_ev, tmp, &vbl_ctrl->event_list, node) {
167                 list_del(&vbl_ev->node);
168                 spin_unlock_irqrestore(&vbl_ctrl->lock, flags);
169
170                 if (vbl_ev->enable)
171                         kms->funcs->enable_vblank(kms,
172                                                 priv->crtcs[vbl_ev->crtc_id]);
173                 else
174                         kms->funcs->disable_vblank(kms,
175                                                 priv->crtcs[vbl_ev->crtc_id]);
176
177                 kfree(vbl_ev);
178
179                 spin_lock_irqsave(&vbl_ctrl->lock, flags);
180         }
181
182         spin_unlock_irqrestore(&vbl_ctrl->lock, flags);
183 }
184
185 static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
186                                         int crtc_id, bool enable)
187 {
188         struct msm_vblank_ctrl *vbl_ctrl = &priv->vblank_ctrl;
189         struct vblank_event *vbl_ev;
190         unsigned long flags;
191
192         vbl_ev = kzalloc(sizeof(*vbl_ev), GFP_ATOMIC);
193         if (!vbl_ev)
194                 return -ENOMEM;
195
196         vbl_ev->crtc_id = crtc_id;
197         vbl_ev->enable = enable;
198
199         spin_lock_irqsave(&vbl_ctrl->lock, flags);
200         list_add_tail(&vbl_ev->node, &vbl_ctrl->event_list);
201         spin_unlock_irqrestore(&vbl_ctrl->lock, flags);
202
203         queue_work(priv->wq, &vbl_ctrl->work);
204
205         return 0;
206 }
207
208 static int msm_drm_uninit(struct device *dev)
209 {
210         struct platform_device *pdev = to_platform_device(dev);
211         struct drm_device *ddev = platform_get_drvdata(pdev);
212         struct msm_drm_private *priv = ddev->dev_private;
213         struct msm_kms *kms = priv->kms;
214         struct msm_gpu *gpu = priv->gpu;
215         struct msm_vblank_ctrl *vbl_ctrl = &priv->vblank_ctrl;
216         struct vblank_event *vbl_ev, *tmp;
217
218         /* We must cancel and cleanup any pending vblank enable/disable
219          * work before drm_irq_uninstall() to avoid work re-enabling an
220          * irq after uninstall has disabled it.
221          */
222         cancel_work_sync(&vbl_ctrl->work);
223         list_for_each_entry_safe(vbl_ev, tmp, &vbl_ctrl->event_list, node) {
224                 list_del(&vbl_ev->node);
225                 kfree(vbl_ev);
226         }
227
228         msm_gem_shrinker_cleanup(ddev);
229
230         drm_kms_helper_poll_fini(ddev);
231
232         drm_dev_unregister(ddev);
233
234         msm_perf_debugfs_cleanup(priv);
235         msm_rd_debugfs_cleanup(priv);
236
237 #ifdef CONFIG_DRM_FBDEV_EMULATION
238         if (fbdev && priv->fbdev)
239                 msm_fbdev_free(ddev);
240 #endif
241         drm_mode_config_cleanup(ddev);
242
243         pm_runtime_get_sync(dev);
244         drm_irq_uninstall(ddev);
245         pm_runtime_put_sync(dev);
246
247         flush_workqueue(priv->wq);
248         destroy_workqueue(priv->wq);
249
250         flush_workqueue(priv->atomic_wq);
251         destroy_workqueue(priv->atomic_wq);
252
253         if (kms && kms->funcs)
254                 kms->funcs->destroy(kms);
255
256         if (gpu) {
257                 mutex_lock(&ddev->struct_mutex);
258                 // XXX what do we do here?
259                 //pm_runtime_enable(&pdev->dev);
260                 gpu->funcs->pm_suspend(gpu);
261                 mutex_unlock(&ddev->struct_mutex);
262                 gpu->funcs->destroy(gpu);
263         }
264
265         if (priv->vram.paddr) {
266                 unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING;
267                 drm_mm_takedown(&priv->vram.mm);
268                 dma_free_attrs(dev, priv->vram.size, NULL,
269                                priv->vram.paddr, attrs);
270         }
271
272         component_unbind_all(dev, ddev);
273
274         msm_mdss_destroy(ddev);
275
276         ddev->dev_private = NULL;
277         drm_dev_unref(ddev);
278
279         kfree(priv);
280
281         return 0;
282 }
283
284 static int get_mdp_ver(struct platform_device *pdev)
285 {
286         struct device *dev = &pdev->dev;
287
288         return (int) (unsigned long) of_device_get_match_data(dev);
289 }
290
291 #include <linux/of_address.h>
292
293 static int msm_init_vram(struct drm_device *dev)
294 {
295         struct msm_drm_private *priv = dev->dev_private;
296         struct device_node *node;
297         unsigned long size = 0;
298         int ret = 0;
299
300         /* In the device-tree world, we could have a 'memory-region'
301          * phandle, which gives us a link to our "vram".  Allocating
302          * is all nicely abstracted behind the dma api, but we need
303          * to know the entire size to allocate it all in one go. There
304          * are two cases:
305          *  1) device with no IOMMU, in which case we need exclusive
306          *     access to a VRAM carveout big enough for all gpu
307          *     buffers
308          *  2) device with IOMMU, but where the bootloader puts up
309          *     a splash screen.  In this case, the VRAM carveout
310          *     need only be large enough for fbdev fb.  But we need
311          *     exclusive access to the buffer to avoid the kernel
312          *     using those pages for other purposes (which appears
313          *     as corruption on screen before we have a chance to
314          *     load and do initial modeset)
315          */
316
317         node = of_parse_phandle(dev->dev->of_node, "memory-region", 0);
318         if (node) {
319                 struct resource r;
320                 ret = of_address_to_resource(node, 0, &r);
321                 of_node_put(node);
322                 if (ret)
323                         return ret;
324                 size = r.end - r.start + 1;
325                 DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
326
327                 /* if we have no IOMMU, then we need to use carveout allocator.
328                  * Grab the entire CMA chunk carved out in early startup in
329                  * mach-msm:
330                  */
331         } else if (!iommu_present(&platform_bus_type)) {
332                 DRM_INFO("using %s VRAM carveout\n", vram);
333                 size = memparse(vram, NULL);
334         }
335
336         if (size) {
337                 unsigned long attrs = 0;
338                 void *p;
339
340                 priv->vram.size = size;
341
342                 drm_mm_init(&priv->vram.mm, 0, (size >> PAGE_SHIFT) - 1);
343                 spin_lock_init(&priv->vram.lock);
344
345                 attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
346                 attrs |= DMA_ATTR_WRITE_COMBINE;
347
348                 /* note that for no-kernel-mapping, the vaddr returned
349                  * is bogus, but non-null if allocation succeeded:
350                  */
351                 p = dma_alloc_attrs(dev->dev, size,
352                                 &priv->vram.paddr, GFP_KERNEL, attrs);
353                 if (!p) {
354                         dev_err(dev->dev, "failed to allocate VRAM\n");
355                         priv->vram.paddr = 0;
356                         return -ENOMEM;
357                 }
358
359                 dev_info(dev->dev, "VRAM: %08x->%08x\n",
360                                 (uint32_t)priv->vram.paddr,
361                                 (uint32_t)(priv->vram.paddr + size));
362         }
363
364         return ret;
365 }
366
367 static int msm_drm_init(struct device *dev, struct drm_driver *drv)
368 {
369         struct platform_device *pdev = to_platform_device(dev);
370         struct drm_device *ddev;
371         struct msm_drm_private *priv;
372         struct msm_kms *kms;
373         int ret;
374
375         ddev = drm_dev_alloc(drv, dev);
376         if (IS_ERR(ddev)) {
377                 dev_err(dev, "failed to allocate drm_device\n");
378                 return PTR_ERR(ddev);
379         }
380
381         platform_set_drvdata(pdev, ddev);
382
383         priv = kzalloc(sizeof(*priv), GFP_KERNEL);
384         if (!priv) {
385                 drm_dev_unref(ddev);
386                 return -ENOMEM;
387         }
388
389         ddev->dev_private = priv;
390         priv->dev = ddev;
391
392         ret = msm_mdss_init(ddev);
393         if (ret) {
394                 kfree(priv);
395                 drm_dev_unref(ddev);
396                 return ret;
397         }
398
399         priv->wq = alloc_ordered_workqueue("msm", 0);
400         priv->atomic_wq = alloc_ordered_workqueue("msm:atomic", 0);
401         init_waitqueue_head(&priv->pending_crtcs_event);
402
403         INIT_LIST_HEAD(&priv->inactive_list);
404         INIT_LIST_HEAD(&priv->vblank_ctrl.event_list);
405         INIT_WORK(&priv->vblank_ctrl.work, vblank_ctrl_worker);
406         spin_lock_init(&priv->vblank_ctrl.lock);
407
408         drm_mode_config_init(ddev);
409
410         /* Bind all our sub-components: */
411         ret = component_bind_all(dev, ddev);
412         if (ret) {
413                 msm_mdss_destroy(ddev);
414                 kfree(priv);
415                 drm_dev_unref(ddev);
416                 return ret;
417         }
418
419         ret = msm_init_vram(ddev);
420         if (ret)
421                 goto fail;
422
423         if (!dev->dma_parms) {
424                 dev->dma_parms = devm_kzalloc(dev, sizeof(*dev->dma_parms),
425                                               GFP_KERNEL);
426                 if (!dev->dma_parms)
427                         return -ENOMEM;
428         }
429         dma_set_max_seg_size(dev, DMA_BIT_MASK(32));
430
431         msm_gem_shrinker_init(ddev);
432
433         switch (get_mdp_ver(pdev)) {
434         case 4:
435                 kms = mdp4_kms_init(ddev);
436                 priv->kms = kms;
437                 break;
438         case 5:
439                 kms = mdp5_kms_init(ddev);
440                 break;
441         default:
442                 kms = ERR_PTR(-ENODEV);
443                 break;
444         }
445
446         if (IS_ERR(kms)) {
447                 /*
448                  * NOTE: once we have GPU support, having no kms should not
449                  * be considered fatal.. ideally we would still support gpu
450                  * and (for example) use dmabuf/prime to share buffers with
451                  * imx drm driver on iMX5
452                  */
453                 dev_err(dev, "failed to load kms\n");
454                 ret = PTR_ERR(kms);
455                 goto fail;
456         }
457
458         if (kms) {
459                 ret = kms->funcs->hw_init(kms);
460                 if (ret) {
461                         dev_err(dev, "kms hw init failed: %d\n", ret);
462                         goto fail;
463                 }
464         }
465
466         ddev->mode_config.funcs = &mode_config_funcs;
467
468         ret = drm_vblank_init(ddev, priv->num_crtcs);
469         if (ret < 0) {
470                 dev_err(dev, "failed to initialize vblank\n");
471                 goto fail;
472         }
473
474         if (kms) {
475                 pm_runtime_get_sync(dev);
476                 ret = drm_irq_install(ddev, kms->irq);
477                 pm_runtime_put_sync(dev);
478                 if (ret < 0) {
479                         dev_err(dev, "failed to install IRQ handler\n");
480                         goto fail;
481                 }
482         }
483
484         ret = drm_dev_register(ddev, 0);
485         if (ret)
486                 goto fail;
487
488         drm_mode_config_reset(ddev);
489
490 #ifdef CONFIG_DRM_FBDEV_EMULATION
491         if (fbdev)
492                 priv->fbdev = msm_fbdev_init(ddev);
493 #endif
494
495         ret = msm_debugfs_late_init(ddev);
496         if (ret)
497                 goto fail;
498
499         drm_kms_helper_poll_init(ddev);
500
501         return 0;
502
503 fail:
504         msm_drm_uninit(dev);
505         return ret;
506 }
507
508 /*
509  * DRM operations:
510  */
511
512 static void load_gpu(struct drm_device *dev)
513 {
514         static DEFINE_MUTEX(init_lock);
515         struct msm_drm_private *priv = dev->dev_private;
516
517         mutex_lock(&init_lock);
518
519         if (!priv->gpu)
520                 priv->gpu = adreno_load_gpu(dev);
521
522         mutex_unlock(&init_lock);
523 }
524
525 static int msm_open(struct drm_device *dev, struct drm_file *file)
526 {
527         struct msm_file_private *ctx;
528
529         /* For now, load gpu on open.. to avoid the requirement of having
530          * firmware in the initrd.
531          */
532         load_gpu(dev);
533
534         ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
535         if (!ctx)
536                 return -ENOMEM;
537
538         file->driver_priv = ctx;
539
540         return 0;
541 }
542
543 static void msm_postclose(struct drm_device *dev, struct drm_file *file)
544 {
545         struct msm_drm_private *priv = dev->dev_private;
546         struct msm_file_private *ctx = file->driver_priv;
547
548         mutex_lock(&dev->struct_mutex);
549         if (ctx == priv->lastctx)
550                 priv->lastctx = NULL;
551         mutex_unlock(&dev->struct_mutex);
552
553         kfree(ctx);
554 }
555
556 static void msm_lastclose(struct drm_device *dev)
557 {
558         struct msm_drm_private *priv = dev->dev_private;
559         if (priv->fbdev)
560                 drm_fb_helper_restore_fbdev_mode_unlocked(priv->fbdev);
561 }
562
563 static irqreturn_t msm_irq(int irq, void *arg)
564 {
565         struct drm_device *dev = arg;
566         struct msm_drm_private *priv = dev->dev_private;
567         struct msm_kms *kms = priv->kms;
568         BUG_ON(!kms);
569         return kms->funcs->irq(kms);
570 }
571
572 static void msm_irq_preinstall(struct drm_device *dev)
573 {
574         struct msm_drm_private *priv = dev->dev_private;
575         struct msm_kms *kms = priv->kms;
576         BUG_ON(!kms);
577         kms->funcs->irq_preinstall(kms);
578 }
579
580 static int msm_irq_postinstall(struct drm_device *dev)
581 {
582         struct msm_drm_private *priv = dev->dev_private;
583         struct msm_kms *kms = priv->kms;
584         BUG_ON(!kms);
585         return kms->funcs->irq_postinstall(kms);
586 }
587
588 static void msm_irq_uninstall(struct drm_device *dev)
589 {
590         struct msm_drm_private *priv = dev->dev_private;
591         struct msm_kms *kms = priv->kms;
592         BUG_ON(!kms);
593         kms->funcs->irq_uninstall(kms);
594 }
595
596 static int msm_enable_vblank(struct drm_device *dev, unsigned int pipe)
597 {
598         struct msm_drm_private *priv = dev->dev_private;
599         struct msm_kms *kms = priv->kms;
600         if (!kms)
601                 return -ENXIO;
602         DBG("dev=%p, crtc=%u", dev, pipe);
603         return vblank_ctrl_queue_work(priv, pipe, true);
604 }
605
606 static void msm_disable_vblank(struct drm_device *dev, unsigned int pipe)
607 {
608         struct msm_drm_private *priv = dev->dev_private;
609         struct msm_kms *kms = priv->kms;
610         if (!kms)
611                 return;
612         DBG("dev=%p, crtc=%u", dev, pipe);
613         vblank_ctrl_queue_work(priv, pipe, false);
614 }
615
616 /*
617  * DRM ioctls:
618  */
619
620 static int msm_ioctl_get_param(struct drm_device *dev, void *data,
621                 struct drm_file *file)
622 {
623         struct msm_drm_private *priv = dev->dev_private;
624         struct drm_msm_param *args = data;
625         struct msm_gpu *gpu;
626
627         /* for now, we just have 3d pipe.. eventually this would need to
628          * be more clever to dispatch to appropriate gpu module:
629          */
630         if (args->pipe != MSM_PIPE_3D0)
631                 return -EINVAL;
632
633         gpu = priv->gpu;
634
635         if (!gpu)
636                 return -ENXIO;
637
638         return gpu->funcs->get_param(gpu, args->param, &args->value);
639 }
640
641 static int msm_ioctl_gem_new(struct drm_device *dev, void *data,
642                 struct drm_file *file)
643 {
644         struct drm_msm_gem_new *args = data;
645
646         if (args->flags & ~MSM_BO_FLAGS) {
647                 DRM_ERROR("invalid flags: %08x\n", args->flags);
648                 return -EINVAL;
649         }
650
651         return msm_gem_new_handle(dev, file, args->size,
652                         args->flags, &args->handle);
653 }
654
655 static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
656 {
657         return ktime_set(timeout.tv_sec, timeout.tv_nsec);
658 }
659
660 static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
661                 struct drm_file *file)
662 {
663         struct drm_msm_gem_cpu_prep *args = data;
664         struct drm_gem_object *obj;
665         ktime_t timeout = to_ktime(args->timeout);
666         int ret;
667
668         if (args->op & ~MSM_PREP_FLAGS) {
669                 DRM_ERROR("invalid op: %08x\n", args->op);
670                 return -EINVAL;
671         }
672
673         obj = drm_gem_object_lookup(file, args->handle);
674         if (!obj)
675                 return -ENOENT;
676
677         ret = msm_gem_cpu_prep(obj, args->op, &timeout);
678
679         drm_gem_object_unreference_unlocked(obj);
680
681         return ret;
682 }
683
684 static int msm_ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
685                 struct drm_file *file)
686 {
687         struct drm_msm_gem_cpu_fini *args = data;
688         struct drm_gem_object *obj;
689         int ret;
690
691         obj = drm_gem_object_lookup(file, args->handle);
692         if (!obj)
693                 return -ENOENT;
694
695         ret = msm_gem_cpu_fini(obj);
696
697         drm_gem_object_unreference_unlocked(obj);
698
699         return ret;
700 }
701
702 static int msm_ioctl_gem_info_iova(struct drm_device *dev,
703                 struct drm_gem_object *obj, uint64_t *iova)
704 {
705         struct msm_drm_private *priv = dev->dev_private;
706
707         if (!priv->gpu)
708                 return -EINVAL;
709
710         return msm_gem_get_iova(obj, priv->gpu->aspace, iova);
711 }
712
713 static int msm_ioctl_gem_info(struct drm_device *dev, void *data,
714                 struct drm_file *file)
715 {
716         struct drm_msm_gem_info *args = data;
717         struct drm_gem_object *obj;
718         int ret = 0;
719
720         if (args->flags & ~MSM_INFO_FLAGS)
721                 return -EINVAL;
722
723         obj = drm_gem_object_lookup(file, args->handle);
724         if (!obj)
725                 return -ENOENT;
726
727         if (args->flags & MSM_INFO_IOVA) {
728                 uint64_t iova;
729
730                 ret = msm_ioctl_gem_info_iova(dev, obj, &iova);
731                 if (!ret)
732                         args->offset = iova;
733         } else {
734                 args->offset = msm_gem_mmap_offset(obj);
735         }
736
737         drm_gem_object_unreference_unlocked(obj);
738
739         return ret;
740 }
741
742 static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
743                 struct drm_file *file)
744 {
745         struct msm_drm_private *priv = dev->dev_private;
746         struct drm_msm_wait_fence *args = data;
747         ktime_t timeout = to_ktime(args->timeout);
748
749         if (args->pad) {
750                 DRM_ERROR("invalid pad: %08x\n", args->pad);
751                 return -EINVAL;
752         }
753
754         if (!priv->gpu)
755                 return 0;
756
757         return msm_wait_fence(priv->gpu->fctx, args->fence, &timeout, true);
758 }
759
760 static int msm_ioctl_gem_madvise(struct drm_device *dev, void *data,
761                 struct drm_file *file)
762 {
763         struct drm_msm_gem_madvise *args = data;
764         struct drm_gem_object *obj;
765         int ret;
766
767         switch (args->madv) {
768         case MSM_MADV_DONTNEED:
769         case MSM_MADV_WILLNEED:
770                 break;
771         default:
772                 return -EINVAL;
773         }
774
775         ret = mutex_lock_interruptible(&dev->struct_mutex);
776         if (ret)
777                 return ret;
778
779         obj = drm_gem_object_lookup(file, args->handle);
780         if (!obj) {
781                 ret = -ENOENT;
782                 goto unlock;
783         }
784
785         ret = msm_gem_madvise(obj, args->madv);
786         if (ret >= 0) {
787                 args->retained = ret;
788                 ret = 0;
789         }
790
791         drm_gem_object_unreference(obj);
792
793 unlock:
794         mutex_unlock(&dev->struct_mutex);
795         return ret;
796 }
797
798 static const struct drm_ioctl_desc msm_ioctls[] = {
799         DRM_IOCTL_DEF_DRV(MSM_GET_PARAM,    msm_ioctl_get_param,    DRM_AUTH|DRM_RENDER_ALLOW),
800         DRM_IOCTL_DEF_DRV(MSM_GEM_NEW,      msm_ioctl_gem_new,      DRM_AUTH|DRM_RENDER_ALLOW),
801         DRM_IOCTL_DEF_DRV(MSM_GEM_INFO,     msm_ioctl_gem_info,     DRM_AUTH|DRM_RENDER_ALLOW),
802         DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_AUTH|DRM_RENDER_ALLOW),
803         DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_AUTH|DRM_RENDER_ALLOW),
804         DRM_IOCTL_DEF_DRV(MSM_GEM_SUBMIT,   msm_ioctl_gem_submit,   DRM_AUTH|DRM_RENDER_ALLOW),
805         DRM_IOCTL_DEF_DRV(MSM_WAIT_FENCE,   msm_ioctl_wait_fence,   DRM_AUTH|DRM_RENDER_ALLOW),
806         DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE,  msm_ioctl_gem_madvise,  DRM_AUTH|DRM_RENDER_ALLOW),
807 };
808
809 static const struct vm_operations_struct vm_ops = {
810         .fault = msm_gem_fault,
811         .open = drm_gem_vm_open,
812         .close = drm_gem_vm_close,
813 };
814
815 static const struct file_operations fops = {
816         .owner              = THIS_MODULE,
817         .open               = drm_open,
818         .release            = drm_release,
819         .unlocked_ioctl     = drm_ioctl,
820         .compat_ioctl       = drm_compat_ioctl,
821         .poll               = drm_poll,
822         .read               = drm_read,
823         .llseek             = no_llseek,
824         .mmap               = msm_gem_mmap,
825 };
826
827 static struct drm_driver msm_driver = {
828         .driver_features    = DRIVER_HAVE_IRQ |
829                                 DRIVER_GEM |
830                                 DRIVER_PRIME |
831                                 DRIVER_RENDER |
832                                 DRIVER_ATOMIC |
833                                 DRIVER_MODESET,
834         .open               = msm_open,
835         .postclose           = msm_postclose,
836         .lastclose          = msm_lastclose,
837         .irq_handler        = msm_irq,
838         .irq_preinstall     = msm_irq_preinstall,
839         .irq_postinstall    = msm_irq_postinstall,
840         .irq_uninstall      = msm_irq_uninstall,
841         .enable_vblank      = msm_enable_vblank,
842         .disable_vblank     = msm_disable_vblank,
843         .gem_free_object    = msm_gem_free_object,
844         .gem_vm_ops         = &vm_ops,
845         .dumb_create        = msm_gem_dumb_create,
846         .dumb_map_offset    = msm_gem_dumb_map_offset,
847         .prime_handle_to_fd = drm_gem_prime_handle_to_fd,
848         .prime_fd_to_handle = drm_gem_prime_fd_to_handle,
849         .gem_prime_export   = drm_gem_prime_export,
850         .gem_prime_import   = drm_gem_prime_import,
851         .gem_prime_res_obj  = msm_gem_prime_res_obj,
852         .gem_prime_pin      = msm_gem_prime_pin,
853         .gem_prime_unpin    = msm_gem_prime_unpin,
854         .gem_prime_get_sg_table = msm_gem_prime_get_sg_table,
855         .gem_prime_import_sg_table = msm_gem_prime_import_sg_table,
856         .gem_prime_vmap     = msm_gem_prime_vmap,
857         .gem_prime_vunmap   = msm_gem_prime_vunmap,
858         .gem_prime_mmap     = msm_gem_prime_mmap,
859 #ifdef CONFIG_DEBUG_FS
860         .debugfs_init       = msm_debugfs_init,
861 #endif
862         .ioctls             = msm_ioctls,
863         .num_ioctls         = ARRAY_SIZE(msm_ioctls),
864         .fops               = &fops,
865         .name               = "msm",
866         .desc               = "MSM Snapdragon DRM",
867         .date               = "20130625",
868         .major              = MSM_VERSION_MAJOR,
869         .minor              = MSM_VERSION_MINOR,
870         .patchlevel         = MSM_VERSION_PATCHLEVEL,
871 };
872
873 #ifdef CONFIG_PM_SLEEP
874 static int msm_pm_suspend(struct device *dev)
875 {
876         struct drm_device *ddev = dev_get_drvdata(dev);
877
878         drm_kms_helper_poll_disable(ddev);
879
880         return 0;
881 }
882
883 static int msm_pm_resume(struct device *dev)
884 {
885         struct drm_device *ddev = dev_get_drvdata(dev);
886
887         drm_kms_helper_poll_enable(ddev);
888
889         return 0;
890 }
891 #endif
892
893 #ifdef CONFIG_PM
894 static int msm_runtime_suspend(struct device *dev)
895 {
896         struct drm_device *ddev = dev_get_drvdata(dev);
897         struct msm_drm_private *priv = ddev->dev_private;
898
899         DBG("");
900
901         if (priv->mdss)
902                 return msm_mdss_disable(priv->mdss);
903
904         return 0;
905 }
906
907 static int msm_runtime_resume(struct device *dev)
908 {
909         struct drm_device *ddev = dev_get_drvdata(dev);
910         struct msm_drm_private *priv = ddev->dev_private;
911
912         DBG("");
913
914         if (priv->mdss)
915                 return msm_mdss_enable(priv->mdss);
916
917         return 0;
918 }
919 #endif
920
921 static const struct dev_pm_ops msm_pm_ops = {
922         SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume)
923         SET_RUNTIME_PM_OPS(msm_runtime_suspend, msm_runtime_resume, NULL)
924 };
925
926 /*
927  * Componentized driver support:
928  */
929
930 /*
931  * NOTE: duplication of the same code as exynos or imx (or probably any other).
932  * so probably some room for some helpers
933  */
934 static int compare_of(struct device *dev, void *data)
935 {
936         return dev->of_node == data;
937 }
938
939 /*
940  * Identify what components need to be added by parsing what remote-endpoints
941  * our MDP output ports are connected to. In the case of LVDS on MDP4, there
942  * is no external component that we need to add since LVDS is within MDP4
943  * itself.
944  */
945 static int add_components_mdp(struct device *mdp_dev,
946                               struct component_match **matchptr)
947 {
948         struct device_node *np = mdp_dev->of_node;
949         struct device_node *ep_node;
950         struct device *master_dev;
951
952         /*
953          * on MDP4 based platforms, the MDP platform device is the component
954          * master that adds other display interface components to itself.
955          *
956          * on MDP5 based platforms, the MDSS platform device is the component
957          * master that adds MDP5 and other display interface components to
958          * itself.
959          */
960         if (of_device_is_compatible(np, "qcom,mdp4"))
961                 master_dev = mdp_dev;
962         else
963                 master_dev = mdp_dev->parent;
964
965         for_each_endpoint_of_node(np, ep_node) {
966                 struct device_node *intf;
967                 struct of_endpoint ep;
968                 int ret;
969
970                 ret = of_graph_parse_endpoint(ep_node, &ep);
971                 if (ret) {
972                         dev_err(mdp_dev, "unable to parse port endpoint\n");
973                         of_node_put(ep_node);
974                         return ret;
975                 }
976
977                 /*
978                  * The LCDC/LVDS port on MDP4 is a speacial case where the
979                  * remote-endpoint isn't a component that we need to add
980                  */
981                 if (of_device_is_compatible(np, "qcom,mdp4") &&
982                     ep.port == 0)
983                         continue;
984
985                 /*
986                  * It's okay if some of the ports don't have a remote endpoint
987                  * specified. It just means that the port isn't connected to
988                  * any external interface.
989                  */
990                 intf = of_graph_get_remote_port_parent(ep_node);
991                 if (!intf)
992                         continue;
993
994                 drm_of_component_match_add(master_dev, matchptr, compare_of,
995                                            intf);
996                 of_node_put(intf);
997         }
998
999         return 0;
1000 }
1001
1002 static int compare_name_mdp(struct device *dev, void *data)
1003 {
1004         return (strstr(dev_name(dev), "mdp") != NULL);
1005 }
1006
1007 static int add_display_components(struct device *dev,
1008                                   struct component_match **matchptr)
1009 {
1010         struct device *mdp_dev;
1011         int ret;
1012
1013         /*
1014          * MDP5 based devices don't have a flat hierarchy. There is a top level
1015          * parent: MDSS, and children: MDP5, DSI, HDMI, eDP etc. Populate the
1016          * children devices, find the MDP5 node, and then add the interfaces
1017          * to our components list.
1018          */
1019         if (of_device_is_compatible(dev->of_node, "qcom,mdss")) {
1020                 ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
1021                 if (ret) {
1022                         dev_err(dev, "failed to populate children devices\n");
1023                         return ret;
1024                 }
1025
1026                 mdp_dev = device_find_child(dev, NULL, compare_name_mdp);
1027                 if (!mdp_dev) {
1028                         dev_err(dev, "failed to find MDSS MDP node\n");
1029                         of_platform_depopulate(dev);
1030                         return -ENODEV;
1031                 }
1032
1033                 put_device(mdp_dev);
1034
1035                 /* add the MDP component itself */
1036                 drm_of_component_match_add(dev, matchptr, compare_of,
1037                                            mdp_dev->of_node);
1038         } else {
1039                 /* MDP4 */
1040                 mdp_dev = dev;
1041         }
1042
1043         ret = add_components_mdp(mdp_dev, matchptr);
1044         if (ret)
1045                 of_platform_depopulate(dev);
1046
1047         return ret;
1048 }
1049
1050 /*
1051  * We don't know what's the best binding to link the gpu with the drm device.
1052  * Fow now, we just hunt for all the possible gpus that we support, and add them
1053  * as components.
1054  */
1055 static const struct of_device_id msm_gpu_match[] = {
1056         { .compatible = "qcom,adreno" },
1057         { .compatible = "qcom,adreno-3xx" },
1058         { .compatible = "qcom,kgsl-3d0" },
1059         { },
1060 };
1061
1062 static int add_gpu_components(struct device *dev,
1063                               struct component_match **matchptr)
1064 {
1065         struct device_node *np;
1066
1067         np = of_find_matching_node(NULL, msm_gpu_match);
1068         if (!np)
1069                 return 0;
1070
1071         if (of_device_is_available(np))
1072                 drm_of_component_match_add(dev, matchptr, compare_of, np);
1073
1074         of_node_put(np);
1075
1076         return 0;
1077 }
1078
1079 static int msm_drm_bind(struct device *dev)
1080 {
1081         return msm_drm_init(dev, &msm_driver);
1082 }
1083
1084 static void msm_drm_unbind(struct device *dev)
1085 {
1086         msm_drm_uninit(dev);
1087 }
1088
1089 static const struct component_master_ops msm_drm_ops = {
1090         .bind = msm_drm_bind,
1091         .unbind = msm_drm_unbind,
1092 };
1093
1094 /*
1095  * Platform driver:
1096  */
1097
1098 static int msm_pdev_probe(struct platform_device *pdev)
1099 {
1100         struct component_match *match = NULL;
1101         int ret;
1102
1103         ret = add_display_components(&pdev->dev, &match);
1104         if (ret)
1105                 return ret;
1106
1107         ret = add_gpu_components(&pdev->dev, &match);
1108         if (ret)
1109                 goto fail;
1110
1111         /* on all devices that I am aware of, iommu's which can map
1112          * any address the cpu can see are used:
1113          */
1114         ret = dma_set_mask_and_coherent(&pdev->dev, ~0);
1115         if (ret)
1116                 goto fail;
1117
1118         ret = component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
1119         if (ret)
1120                 goto fail;
1121
1122         return 0;
1123
1124 fail:
1125         of_platform_depopulate(&pdev->dev);
1126         return ret;
1127 }
1128
1129 static int msm_pdev_remove(struct platform_device *pdev)
1130 {
1131         component_master_del(&pdev->dev, &msm_drm_ops);
1132         of_platform_depopulate(&pdev->dev);
1133
1134         return 0;
1135 }
1136
1137 static void msm_pdev_shutdown(struct platform_device *pdev)
1138 {
1139         struct drm_device *drm = platform_get_drvdata(pdev);
1140         struct msm_drm_private *priv = drm ? drm->dev_private : NULL;
1141
1142         if (!priv || !priv->kms)
1143                 return;
1144
1145         drm_atomic_helper_shutdown(drm);
1146 }
1147
1148 static const struct of_device_id dt_match[] = {
1149         { .compatible = "qcom,mdp4", .data = (void *)4 },       /* MDP4 */
1150         { .compatible = "qcom,mdss", .data = (void *)5 },       /* MDP5 MDSS */
1151         {}
1152 };
1153 MODULE_DEVICE_TABLE(of, dt_match);
1154
1155 static struct platform_driver msm_platform_driver = {
1156         .probe      = msm_pdev_probe,
1157         .remove     = msm_pdev_remove,
1158         .shutdown   = msm_pdev_shutdown,
1159         .driver     = {
1160                 .name   = "msm",
1161                 .of_match_table = dt_match,
1162                 .pm     = &msm_pm_ops,
1163         },
1164 };
1165
1166 static int __init msm_drm_register(void)
1167 {
1168         if (!modeset)
1169                 return -EINVAL;
1170
1171         DBG("init");
1172         msm_mdp_register();
1173         msm_dsi_register();
1174         msm_edp_register();
1175         msm_hdmi_register();
1176         adreno_register();
1177         return platform_driver_register(&msm_platform_driver);
1178 }
1179
1180 static void __exit msm_drm_unregister(void)
1181 {
1182         DBG("fini");
1183         platform_driver_unregister(&msm_platform_driver);
1184         msm_hdmi_unregister();
1185         adreno_unregister();
1186         msm_edp_unregister();
1187         msm_dsi_unregister();
1188         msm_mdp_unregister();
1189 }
1190
1191 module_init(msm_drm_register);
1192 module_exit(msm_drm_unregister);
1193
1194 MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
1195 MODULE_DESCRIPTION("MSM DRM Driver");
1196 MODULE_LICENSE("GPL");