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