xref: /openbmc/linux/drivers/gpu/drm/msm/msm_drv.c (revision 519a8a6c)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
4  * Copyright (C) 2013 Red Hat
5  * Author: Rob Clark <robdclark@gmail.com>
6  */
7 
8 #include <linux/dma-mapping.h>
9 #include <linux/kthread.h>
10 #include <linux/uaccess.h>
11 #include <uapi/linux/sched/types.h>
12 
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>
20 
21 #include "msm_drv.h"
22 #include "msm_debugfs.h"
23 #include "msm_fence.h"
24 #include "msm_gem.h"
25 #include "msm_gpu.h"
26 #include "msm_kms.h"
27 #include "adreno/adreno_gpu.h"
28 
29 /*
30  * MSM driver version:
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
36  *           MSM_GEM_INFO ioctl.
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
41  */
42 #define MSM_VERSION_MAJOR	1
43 #define MSM_VERSION_MINOR	6
44 #define MSM_VERSION_PATCHLEVEL	0
45 
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,
51 };
52 
53 static const struct drm_mode_config_helper_funcs mode_config_helper_funcs = {
54 	.atomic_commit_tail = msm_atomic_commit_tail,
55 };
56 
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);
61 #else
62 #define reglog 0
63 #endif
64 
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);
69 #endif
70 
71 static char *vram = "16m";
72 MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)");
73 module_param(vram, charp, 0);
74 
75 bool dumpstate = false;
76 MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors");
77 module_param(dumpstate, bool, 0600);
78 
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);
82 
83 /*
84  * Util/helpers:
85  */
86 
87 struct clk *msm_clk_bulk_get_clock(struct clk_bulk_data *bulk, int count,
88 		const char *name)
89 {
90 	int i;
91 	char n[32];
92 
93 	snprintf(n, sizeof(n), "%s_clk", name);
94 
95 	for (i = 0; bulk && i < count; i++) {
96 		if (!strcmp(bulk[i].id, name) || !strcmp(bulk[i].id, n))
97 			return bulk[i].clk;
98 	}
99 
100 
101 	return NULL;
102 }
103 
104 struct clk *msm_clk_get(struct platform_device *pdev, const char *name)
105 {
106 	struct clk *clk;
107 	char name2[32];
108 
109 	clk = devm_clk_get(&pdev->dev, name);
110 	if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
111 		return clk;
112 
113 	snprintf(name2, sizeof(name2), "%s_clk", name);
114 
115 	clk = devm_clk_get(&pdev->dev, name2);
116 	if (!IS_ERR(clk))
117 		dev_warn(&pdev->dev, "Using legacy clk name binding.  Use "
118 				"\"%s\" instead of \"%s\"\n", name, name2);
119 
120 	return clk;
121 }
122 
123 void __iomem *_msm_ioremap(struct platform_device *pdev, const char *name,
124 			   const char *dbgname, bool quiet)
125 {
126 	struct resource *res;
127 	unsigned long size;
128 	void __iomem *ptr;
129 
130 	if (name)
131 		res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
132 	else
133 		res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
134 
135 	if (!res) {
136 		if (!quiet)
137 			DRM_DEV_ERROR(&pdev->dev, "failed to get memory resource: %s\n", name);
138 		return ERR_PTR(-EINVAL);
139 	}
140 
141 	size = resource_size(res);
142 
143 	ptr = devm_ioremap(&pdev->dev, res->start, size);
144 	if (!ptr) {
145 		if (!quiet)
146 			DRM_DEV_ERROR(&pdev->dev, "failed to ioremap: %s\n", name);
147 		return ERR_PTR(-ENOMEM);
148 	}
149 
150 	if (reglog)
151 		printk(KERN_DEBUG "IO:region %s %p %08lx\n", dbgname, ptr, size);
152 
153 	return ptr;
154 }
155 
156 void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
157 			  const char *dbgname)
158 {
159 	return _msm_ioremap(pdev, name, dbgname, false);
160 }
161 
162 void __iomem *msm_ioremap_quiet(struct platform_device *pdev, const char *name,
163 				const char *dbgname)
164 {
165 	return _msm_ioremap(pdev, name, dbgname, true);
166 }
167 
168 void msm_writel(u32 data, void __iomem *addr)
169 {
170 	if (reglog)
171 		printk(KERN_DEBUG "IO:W %p %08x\n", addr, data);
172 	writel(data, addr);
173 }
174 
175 u32 msm_readl(const void __iomem *addr)
176 {
177 	u32 val = readl(addr);
178 	if (reglog)
179 		pr_err("IO:R %p %08x\n", addr, val);
180 	return val;
181 }
182 
183 struct msm_vblank_work {
184 	struct work_struct work;
185 	int crtc_id;
186 	bool enable;
187 	struct msm_drm_private *priv;
188 };
189 
190 static void vblank_ctrl_worker(struct work_struct *work)
191 {
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;
196 
197 	if (vbl_work->enable)
198 		kms->funcs->enable_vblank(kms, priv->crtcs[vbl_work->crtc_id]);
199 	else
200 		kms->funcs->disable_vblank(kms,	priv->crtcs[vbl_work->crtc_id]);
201 
202 	kfree(vbl_work);
203 }
204 
205 static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
206 					int crtc_id, bool enable)
207 {
208 	struct msm_vblank_work *vbl_work;
209 
210 	vbl_work = kzalloc(sizeof(*vbl_work), GFP_ATOMIC);
211 	if (!vbl_work)
212 		return -ENOMEM;
213 
214 	INIT_WORK(&vbl_work->work, vblank_ctrl_worker);
215 
216 	vbl_work->crtc_id = crtc_id;
217 	vbl_work->enable = enable;
218 	vbl_work->priv = priv;
219 
220 	queue_work(priv->wq, &vbl_work->work);
221 
222 	return 0;
223 }
224 
225 static int msm_drm_uninit(struct device *dev)
226 {
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;
232 	int i;
233 
234 	/*
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.
240 	 */
241 	if (ddev->registered) {
242 		drm_dev_unregister(ddev);
243 		drm_atomic_helper_shutdown(ddev);
244 	}
245 
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.
249 	 */
250 
251 	flush_workqueue(priv->wq);
252 
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);
257 	}
258 
259 	msm_gem_shrinker_cleanup(ddev);
260 
261 	drm_kms_helper_poll_fini(ddev);
262 
263 	msm_perf_debugfs_cleanup(priv);
264 	msm_rd_debugfs_cleanup(priv);
265 
266 #ifdef CONFIG_DRM_FBDEV_EMULATION
267 	if (fbdev && priv->fbdev)
268 		msm_fbdev_free(ddev);
269 #endif
270 
271 	drm_mode_config_cleanup(ddev);
272 
273 	pm_runtime_get_sync(dev);
274 	drm_irq_uninstall(ddev);
275 	pm_runtime_put_sync(dev);
276 
277 	if (kms && kms->funcs)
278 		kms->funcs->destroy(kms);
279 
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);
285 	}
286 
287 	component_unbind_all(dev, ddev);
288 
289 	if (mdss && mdss->funcs)
290 		mdss->funcs->destroy(ddev);
291 
292 	ddev->dev_private = NULL;
293 	drm_dev_put(ddev);
294 
295 	destroy_workqueue(priv->wq);
296 	kfree(priv);
297 
298 	return 0;
299 }
300 
301 #define KMS_MDP4 4
302 #define KMS_MDP5 5
303 #define KMS_DPU  3
304 
305 static int get_mdp_ver(struct platform_device *pdev)
306 {
307 	struct device *dev = &pdev->dev;
308 
309 	return (int) (unsigned long) of_device_get_match_data(dev);
310 }
311 
312 #include <linux/of_address.h>
313 
314 bool msm_use_mmu(struct drm_device *dev)
315 {
316 	struct msm_drm_private *priv = dev->dev_private;
317 
318 	/* a2xx comes with its own MMU */
319 	return priv->is_a2xx || iommu_present(&platform_bus_type);
320 }
321 
322 static int msm_init_vram(struct drm_device *dev)
323 {
324 	struct msm_drm_private *priv = dev->dev_private;
325 	struct device_node *node;
326 	unsigned long size = 0;
327 	int ret = 0;
328 
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
333 	 * are two cases:
334 	 *  1) device with no IOMMU, in which case we need exclusive
335 	 *     access to a VRAM carveout big enough for all gpu
336 	 *     buffers
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)
344 	 */
345 
346 	node = of_parse_phandle(dev->dev->of_node, "memory-region", 0);
347 	if (node) {
348 		struct resource r;
349 		ret = of_address_to_resource(node, 0, &r);
350 		of_node_put(node);
351 		if (ret)
352 			return ret;
353 		size = r.end - r.start;
354 		DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
355 
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
358 		 * mach-msm:
359 		 */
360 	} else if (!msm_use_mmu(dev)) {
361 		DRM_INFO("using %s VRAM carveout\n", vram);
362 		size = memparse(vram, NULL);
363 	}
364 
365 	if (size) {
366 		unsigned long attrs = 0;
367 		void *p;
368 
369 		priv->vram.size = size;
370 
371 		drm_mm_init(&priv->vram.mm, 0, (size >> PAGE_SHIFT) - 1);
372 		spin_lock_init(&priv->vram.lock);
373 
374 		attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
375 		attrs |= DMA_ATTR_WRITE_COMBINE;
376 
377 		/* note that for no-kernel-mapping, the vaddr returned
378 		 * is bogus, but non-null if allocation succeeded:
379 		 */
380 		p = dma_alloc_attrs(dev->dev, size,
381 				&priv->vram.paddr, GFP_KERNEL, attrs);
382 		if (!p) {
383 			DRM_DEV_ERROR(dev->dev, "failed to allocate VRAM\n");
384 			priv->vram.paddr = 0;
385 			return -ENOMEM;
386 		}
387 
388 		DRM_DEV_INFO(dev->dev, "VRAM: %08x->%08x\n",
389 				(uint32_t)priv->vram.paddr,
390 				(uint32_t)(priv->vram.paddr + size));
391 	}
392 
393 	return ret;
394 }
395 
396 static int msm_drm_init(struct device *dev, struct drm_driver *drv)
397 {
398 	struct platform_device *pdev = to_platform_device(dev);
399 	struct drm_device *ddev;
400 	struct msm_drm_private *priv;
401 	struct msm_kms *kms;
402 	struct msm_mdss *mdss;
403 	int ret, i;
404 	struct sched_param param;
405 
406 	ddev = drm_dev_alloc(drv, dev);
407 	if (IS_ERR(ddev)) {
408 		DRM_DEV_ERROR(dev, "failed to allocate drm_device\n");
409 		return PTR_ERR(ddev);
410 	}
411 
412 	platform_set_drvdata(pdev, ddev);
413 
414 	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
415 	if (!priv) {
416 		ret = -ENOMEM;
417 		goto err_put_drm_dev;
418 	}
419 
420 	ddev->dev_private = priv;
421 	priv->dev = ddev;
422 
423 	switch (get_mdp_ver(pdev)) {
424 	case KMS_MDP5:
425 		ret = mdp5_mdss_init(ddev);
426 		break;
427 	case KMS_DPU:
428 		ret = dpu_mdss_init(ddev);
429 		break;
430 	default:
431 		ret = 0;
432 		break;
433 	}
434 	if (ret)
435 		goto err_free_priv;
436 
437 	mdss = priv->mdss;
438 
439 	priv->wq = alloc_ordered_workqueue("msm", 0);
440 
441 	INIT_WORK(&priv->free_work, msm_gem_free_work);
442 	init_llist_head(&priv->free_list);
443 
444 	INIT_LIST_HEAD(&priv->inactive_list);
445 
446 	drm_mode_config_init(ddev);
447 
448 	/* Bind all our sub-components: */
449 	ret = component_bind_all(dev, ddev);
450 	if (ret)
451 		goto err_destroy_mdss;
452 
453 	ret = msm_init_vram(ddev);
454 	if (ret)
455 		goto err_msm_uninit;
456 
457 	if (!dev->dma_parms) {
458 		dev->dma_parms = devm_kzalloc(dev, sizeof(*dev->dma_parms),
459 					      GFP_KERNEL);
460 		if (!dev->dma_parms) {
461 			ret = -ENOMEM;
462 			goto err_msm_uninit;
463 		}
464 	}
465 	dma_set_max_seg_size(dev, DMA_BIT_MASK(32));
466 
467 	msm_gem_shrinker_init(ddev);
468 
469 	switch (get_mdp_ver(pdev)) {
470 	case KMS_MDP4:
471 		kms = mdp4_kms_init(ddev);
472 		priv->kms = kms;
473 		break;
474 	case KMS_MDP5:
475 		kms = mdp5_kms_init(ddev);
476 		break;
477 	case KMS_DPU:
478 		kms = dpu_kms_init(ddev);
479 		priv->kms = kms;
480 		break;
481 	default:
482 		/* valid only for the dummy headless case, where of_node=NULL */
483 		WARN_ON(dev->of_node);
484 		kms = NULL;
485 		break;
486 	}
487 
488 	if (IS_ERR(kms)) {
489 		DRM_DEV_ERROR(dev, "failed to load kms\n");
490 		ret = PTR_ERR(kms);
491 		priv->kms = NULL;
492 		goto err_msm_uninit;
493 	}
494 
495 	/* Enable normalization of plane zpos */
496 	ddev->mode_config.normalize_zpos = true;
497 
498 	if (kms) {
499 		kms->dev = ddev;
500 		ret = kms->funcs->hw_init(kms);
501 		if (ret) {
502 			DRM_DEV_ERROR(dev, "kms hw init failed: %d\n", ret);
503 			goto err_msm_uninit;
504 		}
505 	}
506 
507 	ddev->mode_config.funcs = &mode_config_funcs;
508 	ddev->mode_config.helper_private = &mode_config_helper_funcs;
509 
510 	/**
511 	 * this priority was found during empiric testing to have appropriate
512 	 * realtime scheduling to process display updates and interact with
513 	 * other real time and normal priority task
514 	 */
515 	param.sched_priority = 16;
516 	for (i = 0; i < priv->num_crtcs; i++) {
517 		/* initialize event thread */
518 		priv->event_thread[i].crtc_id = priv->crtcs[i]->base.id;
519 		priv->event_thread[i].dev = ddev;
520 		priv->event_thread[i].worker = kthread_create_worker(0,
521 			"crtc_event:%d", priv->event_thread[i].crtc_id);
522 		if (IS_ERR(priv->event_thread[i].worker)) {
523 			DRM_DEV_ERROR(dev, "failed to create crtc_event kthread\n");
524 			goto err_msm_uninit;
525 		}
526 
527 		ret = sched_setscheduler(priv->event_thread[i].worker->task,
528 					 SCHED_FIFO, &param);
529 		if (ret)
530 			dev_warn(dev, "event_thread set priority failed:%d\n",
531 				 ret);
532 	}
533 
534 	ret = drm_vblank_init(ddev, priv->num_crtcs);
535 	if (ret < 0) {
536 		DRM_DEV_ERROR(dev, "failed to initialize vblank\n");
537 		goto err_msm_uninit;
538 	}
539 
540 	if (kms) {
541 		pm_runtime_get_sync(dev);
542 		ret = drm_irq_install(ddev, kms->irq);
543 		pm_runtime_put_sync(dev);
544 		if (ret < 0) {
545 			DRM_DEV_ERROR(dev, "failed to install IRQ handler\n");
546 			goto err_msm_uninit;
547 		}
548 	}
549 
550 	ret = drm_dev_register(ddev, 0);
551 	if (ret)
552 		goto err_msm_uninit;
553 
554 	drm_mode_config_reset(ddev);
555 
556 #ifdef CONFIG_DRM_FBDEV_EMULATION
557 	if (kms && fbdev)
558 		priv->fbdev = msm_fbdev_init(ddev);
559 #endif
560 
561 	ret = msm_debugfs_late_init(ddev);
562 	if (ret)
563 		goto err_msm_uninit;
564 
565 	drm_kms_helper_poll_init(ddev);
566 
567 	return 0;
568 
569 err_msm_uninit:
570 	msm_drm_uninit(dev);
571 	return ret;
572 err_destroy_mdss:
573 	if (mdss && mdss->funcs)
574 		mdss->funcs->destroy(ddev);
575 err_free_priv:
576 	kfree(priv);
577 err_put_drm_dev:
578 	drm_dev_put(ddev);
579 	return ret;
580 }
581 
582 /*
583  * DRM operations:
584  */
585 
586 static void load_gpu(struct drm_device *dev)
587 {
588 	static DEFINE_MUTEX(init_lock);
589 	struct msm_drm_private *priv = dev->dev_private;
590 
591 	mutex_lock(&init_lock);
592 
593 	if (!priv->gpu)
594 		priv->gpu = adreno_load_gpu(dev);
595 
596 	mutex_unlock(&init_lock);
597 }
598 
599 static int context_init(struct drm_device *dev, struct drm_file *file)
600 {
601 	struct msm_drm_private *priv = dev->dev_private;
602 	struct msm_file_private *ctx;
603 
604 	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
605 	if (!ctx)
606 		return -ENOMEM;
607 
608 	msm_submitqueue_init(dev, ctx);
609 
610 	ctx->aspace = priv->gpu ? priv->gpu->aspace : NULL;
611 	file->driver_priv = ctx;
612 
613 	return 0;
614 }
615 
616 static int msm_open(struct drm_device *dev, struct drm_file *file)
617 {
618 	/* For now, load gpu on open.. to avoid the requirement of having
619 	 * firmware in the initrd.
620 	 */
621 	load_gpu(dev);
622 
623 	return context_init(dev, file);
624 }
625 
626 static void context_close(struct msm_file_private *ctx)
627 {
628 	msm_submitqueue_close(ctx);
629 	kfree(ctx);
630 }
631 
632 static void msm_postclose(struct drm_device *dev, struct drm_file *file)
633 {
634 	struct msm_drm_private *priv = dev->dev_private;
635 	struct msm_file_private *ctx = file->driver_priv;
636 
637 	mutex_lock(&dev->struct_mutex);
638 	if (ctx == priv->lastctx)
639 		priv->lastctx = NULL;
640 	mutex_unlock(&dev->struct_mutex);
641 
642 	context_close(ctx);
643 }
644 
645 static irqreturn_t msm_irq(int irq, void *arg)
646 {
647 	struct drm_device *dev = arg;
648 	struct msm_drm_private *priv = dev->dev_private;
649 	struct msm_kms *kms = priv->kms;
650 	BUG_ON(!kms);
651 	return kms->funcs->irq(kms);
652 }
653 
654 static void msm_irq_preinstall(struct drm_device *dev)
655 {
656 	struct msm_drm_private *priv = dev->dev_private;
657 	struct msm_kms *kms = priv->kms;
658 	BUG_ON(!kms);
659 	kms->funcs->irq_preinstall(kms);
660 }
661 
662 static int msm_irq_postinstall(struct drm_device *dev)
663 {
664 	struct msm_drm_private *priv = dev->dev_private;
665 	struct msm_kms *kms = priv->kms;
666 	BUG_ON(!kms);
667 
668 	if (kms->funcs->irq_postinstall)
669 		return kms->funcs->irq_postinstall(kms);
670 
671 	return 0;
672 }
673 
674 static void msm_irq_uninstall(struct drm_device *dev)
675 {
676 	struct msm_drm_private *priv = dev->dev_private;
677 	struct msm_kms *kms = priv->kms;
678 	BUG_ON(!kms);
679 	kms->funcs->irq_uninstall(kms);
680 }
681 
682 int msm_crtc_enable_vblank(struct drm_crtc *crtc)
683 {
684 	struct drm_device *dev = crtc->dev;
685 	unsigned int pipe = crtc->index;
686 	struct msm_drm_private *priv = dev->dev_private;
687 	struct msm_kms *kms = priv->kms;
688 	if (!kms)
689 		return -ENXIO;
690 	DBG("dev=%p, crtc=%u", dev, pipe);
691 	return vblank_ctrl_queue_work(priv, pipe, true);
692 }
693 
694 void msm_crtc_disable_vblank(struct drm_crtc *crtc)
695 {
696 	struct drm_device *dev = crtc->dev;
697 	unsigned int pipe = crtc->index;
698 	struct msm_drm_private *priv = dev->dev_private;
699 	struct msm_kms *kms = priv->kms;
700 	if (!kms)
701 		return;
702 	DBG("dev=%p, crtc=%u", dev, pipe);
703 	vblank_ctrl_queue_work(priv, pipe, false);
704 }
705 
706 /*
707  * DRM ioctls:
708  */
709 
710 static int msm_ioctl_get_param(struct drm_device *dev, void *data,
711 		struct drm_file *file)
712 {
713 	struct msm_drm_private *priv = dev->dev_private;
714 	struct drm_msm_param *args = data;
715 	struct msm_gpu *gpu;
716 
717 	/* for now, we just have 3d pipe.. eventually this would need to
718 	 * be more clever to dispatch to appropriate gpu module:
719 	 */
720 	if (args->pipe != MSM_PIPE_3D0)
721 		return -EINVAL;
722 
723 	gpu = priv->gpu;
724 
725 	if (!gpu)
726 		return -ENXIO;
727 
728 	return gpu->funcs->get_param(gpu, args->param, &args->value);
729 }
730 
731 static int msm_ioctl_gem_new(struct drm_device *dev, void *data,
732 		struct drm_file *file)
733 {
734 	struct drm_msm_gem_new *args = data;
735 
736 	if (args->flags & ~MSM_BO_FLAGS) {
737 		DRM_ERROR("invalid flags: %08x\n", args->flags);
738 		return -EINVAL;
739 	}
740 
741 	return msm_gem_new_handle(dev, file, args->size,
742 			args->flags, &args->handle, NULL);
743 }
744 
745 static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
746 {
747 	return ktime_set(timeout.tv_sec, timeout.tv_nsec);
748 }
749 
750 static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
751 		struct drm_file *file)
752 {
753 	struct drm_msm_gem_cpu_prep *args = data;
754 	struct drm_gem_object *obj;
755 	ktime_t timeout = to_ktime(args->timeout);
756 	int ret;
757 
758 	if (args->op & ~MSM_PREP_FLAGS) {
759 		DRM_ERROR("invalid op: %08x\n", args->op);
760 		return -EINVAL;
761 	}
762 
763 	obj = drm_gem_object_lookup(file, args->handle);
764 	if (!obj)
765 		return -ENOENT;
766 
767 	ret = msm_gem_cpu_prep(obj, args->op, &timeout);
768 
769 	drm_gem_object_put(obj);
770 
771 	return ret;
772 }
773 
774 static int msm_ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
775 		struct drm_file *file)
776 {
777 	struct drm_msm_gem_cpu_fini *args = data;
778 	struct drm_gem_object *obj;
779 	int ret;
780 
781 	obj = drm_gem_object_lookup(file, args->handle);
782 	if (!obj)
783 		return -ENOENT;
784 
785 	ret = msm_gem_cpu_fini(obj);
786 
787 	drm_gem_object_put(obj);
788 
789 	return ret;
790 }
791 
792 static int msm_ioctl_gem_info_iova(struct drm_device *dev,
793 		struct drm_gem_object *obj, uint64_t *iova)
794 {
795 	struct msm_drm_private *priv = dev->dev_private;
796 
797 	if (!priv->gpu)
798 		return -EINVAL;
799 
800 	/*
801 	 * Don't pin the memory here - just get an address so that userspace can
802 	 * be productive
803 	 */
804 	return msm_gem_get_iova(obj, priv->gpu->aspace, iova);
805 }
806 
807 static int msm_ioctl_gem_info(struct drm_device *dev, void *data,
808 		struct drm_file *file)
809 {
810 	struct drm_msm_gem_info *args = data;
811 	struct drm_gem_object *obj;
812 	struct msm_gem_object *msm_obj;
813 	int i, ret = 0;
814 
815 	if (args->pad)
816 		return -EINVAL;
817 
818 	switch (args->info) {
819 	case MSM_INFO_GET_OFFSET:
820 	case MSM_INFO_GET_IOVA:
821 		/* value returned as immediate, not pointer, so len==0: */
822 		if (args->len)
823 			return -EINVAL;
824 		break;
825 	case MSM_INFO_SET_NAME:
826 	case MSM_INFO_GET_NAME:
827 		break;
828 	default:
829 		return -EINVAL;
830 	}
831 
832 	obj = drm_gem_object_lookup(file, args->handle);
833 	if (!obj)
834 		return -ENOENT;
835 
836 	msm_obj = to_msm_bo(obj);
837 
838 	switch (args->info) {
839 	case MSM_INFO_GET_OFFSET:
840 		args->value = msm_gem_mmap_offset(obj);
841 		break;
842 	case MSM_INFO_GET_IOVA:
843 		ret = msm_ioctl_gem_info_iova(dev, obj, &args->value);
844 		break;
845 	case MSM_INFO_SET_NAME:
846 		/* length check should leave room for terminating null: */
847 		if (args->len >= sizeof(msm_obj->name)) {
848 			ret = -EINVAL;
849 			break;
850 		}
851 		if (copy_from_user(msm_obj->name, u64_to_user_ptr(args->value),
852 				   args->len)) {
853 			msm_obj->name[0] = '\0';
854 			ret = -EFAULT;
855 			break;
856 		}
857 		msm_obj->name[args->len] = '\0';
858 		for (i = 0; i < args->len; i++) {
859 			if (!isprint(msm_obj->name[i])) {
860 				msm_obj->name[i] = '\0';
861 				break;
862 			}
863 		}
864 		break;
865 	case MSM_INFO_GET_NAME:
866 		if (args->value && (args->len < strlen(msm_obj->name))) {
867 			ret = -EINVAL;
868 			break;
869 		}
870 		args->len = strlen(msm_obj->name);
871 		if (args->value) {
872 			if (copy_to_user(u64_to_user_ptr(args->value),
873 					 msm_obj->name, args->len))
874 				ret = -EFAULT;
875 		}
876 		break;
877 	}
878 
879 	drm_gem_object_put(obj);
880 
881 	return ret;
882 }
883 
884 static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
885 		struct drm_file *file)
886 {
887 	struct msm_drm_private *priv = dev->dev_private;
888 	struct drm_msm_wait_fence *args = data;
889 	ktime_t timeout = to_ktime(args->timeout);
890 	struct msm_gpu_submitqueue *queue;
891 	struct msm_gpu *gpu = priv->gpu;
892 	int ret;
893 
894 	if (args->pad) {
895 		DRM_ERROR("invalid pad: %08x\n", args->pad);
896 		return -EINVAL;
897 	}
898 
899 	if (!gpu)
900 		return 0;
901 
902 	queue = msm_submitqueue_get(file->driver_priv, args->queueid);
903 	if (!queue)
904 		return -ENOENT;
905 
906 	ret = msm_wait_fence(gpu->rb[queue->prio]->fctx, args->fence, &timeout,
907 		true);
908 
909 	msm_submitqueue_put(queue);
910 	return ret;
911 }
912 
913 static int msm_ioctl_gem_madvise(struct drm_device *dev, void *data,
914 		struct drm_file *file)
915 {
916 	struct drm_msm_gem_madvise *args = data;
917 	struct drm_gem_object *obj;
918 	int ret;
919 
920 	switch (args->madv) {
921 	case MSM_MADV_DONTNEED:
922 	case MSM_MADV_WILLNEED:
923 		break;
924 	default:
925 		return -EINVAL;
926 	}
927 
928 	ret = mutex_lock_interruptible(&dev->struct_mutex);
929 	if (ret)
930 		return ret;
931 
932 	obj = drm_gem_object_lookup(file, args->handle);
933 	if (!obj) {
934 		ret = -ENOENT;
935 		goto unlock;
936 	}
937 
938 	ret = msm_gem_madvise(obj, args->madv);
939 	if (ret >= 0) {
940 		args->retained = ret;
941 		ret = 0;
942 	}
943 
944 	drm_gem_object_put_locked(obj);
945 
946 unlock:
947 	mutex_unlock(&dev->struct_mutex);
948 	return ret;
949 }
950 
951 
952 static int msm_ioctl_submitqueue_new(struct drm_device *dev, void *data,
953 		struct drm_file *file)
954 {
955 	struct drm_msm_submitqueue *args = data;
956 
957 	if (args->flags & ~MSM_SUBMITQUEUE_FLAGS)
958 		return -EINVAL;
959 
960 	return msm_submitqueue_create(dev, file->driver_priv, args->prio,
961 		args->flags, &args->id);
962 }
963 
964 static int msm_ioctl_submitqueue_query(struct drm_device *dev, void *data,
965 		struct drm_file *file)
966 {
967 	return msm_submitqueue_query(dev, file->driver_priv, data);
968 }
969 
970 static int msm_ioctl_submitqueue_close(struct drm_device *dev, void *data,
971 		struct drm_file *file)
972 {
973 	u32 id = *(u32 *) data;
974 
975 	return msm_submitqueue_remove(file->driver_priv, id);
976 }
977 
978 static const struct drm_ioctl_desc msm_ioctls[] = {
979 	DRM_IOCTL_DEF_DRV(MSM_GET_PARAM,    msm_ioctl_get_param,    DRM_RENDER_ALLOW),
980 	DRM_IOCTL_DEF_DRV(MSM_GEM_NEW,      msm_ioctl_gem_new,      DRM_RENDER_ALLOW),
981 	DRM_IOCTL_DEF_DRV(MSM_GEM_INFO,     msm_ioctl_gem_info,     DRM_RENDER_ALLOW),
982 	DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_RENDER_ALLOW),
983 	DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_RENDER_ALLOW),
984 	DRM_IOCTL_DEF_DRV(MSM_GEM_SUBMIT,   msm_ioctl_gem_submit,   DRM_RENDER_ALLOW),
985 	DRM_IOCTL_DEF_DRV(MSM_WAIT_FENCE,   msm_ioctl_wait_fence,   DRM_RENDER_ALLOW),
986 	DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE,  msm_ioctl_gem_madvise,  DRM_RENDER_ALLOW),
987 	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_NEW,   msm_ioctl_submitqueue_new,   DRM_RENDER_ALLOW),
988 	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_CLOSE, msm_ioctl_submitqueue_close, DRM_RENDER_ALLOW),
989 	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_QUERY, msm_ioctl_submitqueue_query, DRM_RENDER_ALLOW),
990 };
991 
992 static const struct vm_operations_struct vm_ops = {
993 	.fault = msm_gem_fault,
994 	.open = drm_gem_vm_open,
995 	.close = drm_gem_vm_close,
996 };
997 
998 static const struct file_operations fops = {
999 	.owner              = THIS_MODULE,
1000 	.open               = drm_open,
1001 	.release            = drm_release,
1002 	.unlocked_ioctl     = drm_ioctl,
1003 	.compat_ioctl       = drm_compat_ioctl,
1004 	.poll               = drm_poll,
1005 	.read               = drm_read,
1006 	.llseek             = no_llseek,
1007 	.mmap               = msm_gem_mmap,
1008 };
1009 
1010 static struct drm_driver msm_driver = {
1011 	.driver_features    = DRIVER_GEM |
1012 				DRIVER_RENDER |
1013 				DRIVER_ATOMIC |
1014 				DRIVER_MODESET |
1015 				DRIVER_SYNCOBJ,
1016 	.open               = msm_open,
1017 	.postclose           = msm_postclose,
1018 	.lastclose          = drm_fb_helper_lastclose,
1019 	.irq_handler        = msm_irq,
1020 	.irq_preinstall     = msm_irq_preinstall,
1021 	.irq_postinstall    = msm_irq_postinstall,
1022 	.irq_uninstall      = msm_irq_uninstall,
1023 	.gem_free_object_unlocked = msm_gem_free_object,
1024 	.gem_vm_ops         = &vm_ops,
1025 	.dumb_create        = msm_gem_dumb_create,
1026 	.dumb_map_offset    = msm_gem_dumb_map_offset,
1027 	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
1028 	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
1029 	.gem_prime_pin      = msm_gem_prime_pin,
1030 	.gem_prime_unpin    = msm_gem_prime_unpin,
1031 	.gem_prime_get_sg_table = msm_gem_prime_get_sg_table,
1032 	.gem_prime_import_sg_table = msm_gem_prime_import_sg_table,
1033 	.gem_prime_vmap     = msm_gem_prime_vmap,
1034 	.gem_prime_vunmap   = msm_gem_prime_vunmap,
1035 	.gem_prime_mmap     = msm_gem_prime_mmap,
1036 #ifdef CONFIG_DEBUG_FS
1037 	.debugfs_init       = msm_debugfs_init,
1038 #endif
1039 	.ioctls             = msm_ioctls,
1040 	.num_ioctls         = ARRAY_SIZE(msm_ioctls),
1041 	.fops               = &fops,
1042 	.name               = "msm",
1043 	.desc               = "MSM Snapdragon DRM",
1044 	.date               = "20130625",
1045 	.major              = MSM_VERSION_MAJOR,
1046 	.minor              = MSM_VERSION_MINOR,
1047 	.patchlevel         = MSM_VERSION_PATCHLEVEL,
1048 };
1049 
1050 static int __maybe_unused msm_runtime_suspend(struct device *dev)
1051 {
1052 	struct drm_device *ddev = dev_get_drvdata(dev);
1053 	struct msm_drm_private *priv = ddev->dev_private;
1054 	struct msm_mdss *mdss = priv->mdss;
1055 
1056 	DBG("");
1057 
1058 	if (mdss && mdss->funcs)
1059 		return mdss->funcs->disable(mdss);
1060 
1061 	return 0;
1062 }
1063 
1064 static int __maybe_unused msm_runtime_resume(struct device *dev)
1065 {
1066 	struct drm_device *ddev = dev_get_drvdata(dev);
1067 	struct msm_drm_private *priv = ddev->dev_private;
1068 	struct msm_mdss *mdss = priv->mdss;
1069 
1070 	DBG("");
1071 
1072 	if (mdss && mdss->funcs)
1073 		return mdss->funcs->enable(mdss);
1074 
1075 	return 0;
1076 }
1077 
1078 static int __maybe_unused msm_pm_suspend(struct device *dev)
1079 {
1080 
1081 	if (pm_runtime_suspended(dev))
1082 		return 0;
1083 
1084 	return msm_runtime_suspend(dev);
1085 }
1086 
1087 static int __maybe_unused msm_pm_resume(struct device *dev)
1088 {
1089 	if (pm_runtime_suspended(dev))
1090 		return 0;
1091 
1092 	return msm_runtime_resume(dev);
1093 }
1094 
1095 static int __maybe_unused msm_pm_prepare(struct device *dev)
1096 {
1097 	struct drm_device *ddev = dev_get_drvdata(dev);
1098 
1099 	return drm_mode_config_helper_suspend(ddev);
1100 }
1101 
1102 static void __maybe_unused msm_pm_complete(struct device *dev)
1103 {
1104 	struct drm_device *ddev = dev_get_drvdata(dev);
1105 
1106 	drm_mode_config_helper_resume(ddev);
1107 }
1108 
1109 static const struct dev_pm_ops msm_pm_ops = {
1110 	SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume)
1111 	SET_RUNTIME_PM_OPS(msm_runtime_suspend, msm_runtime_resume, NULL)
1112 	.prepare = msm_pm_prepare,
1113 	.complete = msm_pm_complete,
1114 };
1115 
1116 /*
1117  * Componentized driver support:
1118  */
1119 
1120 /*
1121  * NOTE: duplication of the same code as exynos or imx (or probably any other).
1122  * so probably some room for some helpers
1123  */
1124 static int compare_of(struct device *dev, void *data)
1125 {
1126 	return dev->of_node == data;
1127 }
1128 
1129 /*
1130  * Identify what components need to be added by parsing what remote-endpoints
1131  * our MDP output ports are connected to. In the case of LVDS on MDP4, there
1132  * is no external component that we need to add since LVDS is within MDP4
1133  * itself.
1134  */
1135 static int add_components_mdp(struct device *mdp_dev,
1136 			      struct component_match **matchptr)
1137 {
1138 	struct device_node *np = mdp_dev->of_node;
1139 	struct device_node *ep_node;
1140 	struct device *master_dev;
1141 
1142 	/*
1143 	 * on MDP4 based platforms, the MDP platform device is the component
1144 	 * master that adds other display interface components to itself.
1145 	 *
1146 	 * on MDP5 based platforms, the MDSS platform device is the component
1147 	 * master that adds MDP5 and other display interface components to
1148 	 * itself.
1149 	 */
1150 	if (of_device_is_compatible(np, "qcom,mdp4"))
1151 		master_dev = mdp_dev;
1152 	else
1153 		master_dev = mdp_dev->parent;
1154 
1155 	for_each_endpoint_of_node(np, ep_node) {
1156 		struct device_node *intf;
1157 		struct of_endpoint ep;
1158 		int ret;
1159 
1160 		ret = of_graph_parse_endpoint(ep_node, &ep);
1161 		if (ret) {
1162 			DRM_DEV_ERROR(mdp_dev, "unable to parse port endpoint\n");
1163 			of_node_put(ep_node);
1164 			return ret;
1165 		}
1166 
1167 		/*
1168 		 * The LCDC/LVDS port on MDP4 is a speacial case where the
1169 		 * remote-endpoint isn't a component that we need to add
1170 		 */
1171 		if (of_device_is_compatible(np, "qcom,mdp4") &&
1172 		    ep.port == 0)
1173 			continue;
1174 
1175 		/*
1176 		 * It's okay if some of the ports don't have a remote endpoint
1177 		 * specified. It just means that the port isn't connected to
1178 		 * any external interface.
1179 		 */
1180 		intf = of_graph_get_remote_port_parent(ep_node);
1181 		if (!intf)
1182 			continue;
1183 
1184 		if (of_device_is_available(intf))
1185 			drm_of_component_match_add(master_dev, matchptr,
1186 						   compare_of, intf);
1187 
1188 		of_node_put(intf);
1189 	}
1190 
1191 	return 0;
1192 }
1193 
1194 static int compare_name_mdp(struct device *dev, void *data)
1195 {
1196 	return (strstr(dev_name(dev), "mdp") != NULL);
1197 }
1198 
1199 static int add_display_components(struct device *dev,
1200 				  struct component_match **matchptr)
1201 {
1202 	struct device *mdp_dev;
1203 	int ret;
1204 
1205 	/*
1206 	 * MDP5/DPU based devices don't have a flat hierarchy. There is a top
1207 	 * level parent: MDSS, and children: MDP5/DPU, DSI, HDMI, eDP etc.
1208 	 * Populate the children devices, find the MDP5/DPU node, and then add
1209 	 * the interfaces to our components list.
1210 	 */
1211 	if (of_device_is_compatible(dev->of_node, "qcom,mdss") ||
1212 	    of_device_is_compatible(dev->of_node, "qcom,sdm845-mdss") ||
1213 	    of_device_is_compatible(dev->of_node, "qcom,sc7180-mdss")) {
1214 		ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
1215 		if (ret) {
1216 			DRM_DEV_ERROR(dev, "failed to populate children devices\n");
1217 			return ret;
1218 		}
1219 
1220 		mdp_dev = device_find_child(dev, NULL, compare_name_mdp);
1221 		if (!mdp_dev) {
1222 			DRM_DEV_ERROR(dev, "failed to find MDSS MDP node\n");
1223 			of_platform_depopulate(dev);
1224 			return -ENODEV;
1225 		}
1226 
1227 		put_device(mdp_dev);
1228 
1229 		/* add the MDP component itself */
1230 		drm_of_component_match_add(dev, matchptr, compare_of,
1231 					   mdp_dev->of_node);
1232 	} else {
1233 		/* MDP4 */
1234 		mdp_dev = dev;
1235 	}
1236 
1237 	ret = add_components_mdp(mdp_dev, matchptr);
1238 	if (ret)
1239 		of_platform_depopulate(dev);
1240 
1241 	return ret;
1242 }
1243 
1244 /*
1245  * We don't know what's the best binding to link the gpu with the drm device.
1246  * Fow now, we just hunt for all the possible gpus that we support, and add them
1247  * as components.
1248  */
1249 static const struct of_device_id msm_gpu_match[] = {
1250 	{ .compatible = "qcom,adreno" },
1251 	{ .compatible = "qcom,adreno-3xx" },
1252 	{ .compatible = "amd,imageon" },
1253 	{ .compatible = "qcom,kgsl-3d0" },
1254 	{ },
1255 };
1256 
1257 static int add_gpu_components(struct device *dev,
1258 			      struct component_match **matchptr)
1259 {
1260 	struct device_node *np;
1261 
1262 	np = of_find_matching_node(NULL, msm_gpu_match);
1263 	if (!np)
1264 		return 0;
1265 
1266 	if (of_device_is_available(np))
1267 		drm_of_component_match_add(dev, matchptr, compare_of, np);
1268 
1269 	of_node_put(np);
1270 
1271 	return 0;
1272 }
1273 
1274 static int msm_drm_bind(struct device *dev)
1275 {
1276 	return msm_drm_init(dev, &msm_driver);
1277 }
1278 
1279 static void msm_drm_unbind(struct device *dev)
1280 {
1281 	msm_drm_uninit(dev);
1282 }
1283 
1284 static const struct component_master_ops msm_drm_ops = {
1285 	.bind = msm_drm_bind,
1286 	.unbind = msm_drm_unbind,
1287 };
1288 
1289 /*
1290  * Platform driver:
1291  */
1292 
1293 static int msm_pdev_probe(struct platform_device *pdev)
1294 {
1295 	struct component_match *match = NULL;
1296 	int ret;
1297 
1298 	if (get_mdp_ver(pdev)) {
1299 		ret = add_display_components(&pdev->dev, &match);
1300 		if (ret)
1301 			return ret;
1302 	}
1303 
1304 	ret = add_gpu_components(&pdev->dev, &match);
1305 	if (ret)
1306 		goto fail;
1307 
1308 	/* on all devices that I am aware of, iommu's which can map
1309 	 * any address the cpu can see are used:
1310 	 */
1311 	ret = dma_set_mask_and_coherent(&pdev->dev, ~0);
1312 	if (ret)
1313 		goto fail;
1314 
1315 	ret = component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
1316 	if (ret)
1317 		goto fail;
1318 
1319 	return 0;
1320 
1321 fail:
1322 	of_platform_depopulate(&pdev->dev);
1323 	return ret;
1324 }
1325 
1326 static int msm_pdev_remove(struct platform_device *pdev)
1327 {
1328 	component_master_del(&pdev->dev, &msm_drm_ops);
1329 	of_platform_depopulate(&pdev->dev);
1330 
1331 	return 0;
1332 }
1333 
1334 static const struct of_device_id dt_match[] = {
1335 	{ .compatible = "qcom,mdp4", .data = (void *)KMS_MDP4 },
1336 	{ .compatible = "qcom,mdss", .data = (void *)KMS_MDP5 },
1337 	{ .compatible = "qcom,sdm845-mdss", .data = (void *)KMS_DPU },
1338 	{ .compatible = "qcom,sc7180-mdss", .data = (void *)KMS_DPU },
1339 	{}
1340 };
1341 MODULE_DEVICE_TABLE(of, dt_match);
1342 
1343 static struct platform_driver msm_platform_driver = {
1344 	.probe      = msm_pdev_probe,
1345 	.remove     = msm_pdev_remove,
1346 	.driver     = {
1347 		.name   = "msm",
1348 		.of_match_table = dt_match,
1349 		.pm     = &msm_pm_ops,
1350 	},
1351 };
1352 
1353 static int __init msm_drm_register(void)
1354 {
1355 	if (!modeset)
1356 		return -EINVAL;
1357 
1358 	DBG("init");
1359 	msm_mdp_register();
1360 	msm_dpu_register();
1361 	msm_dsi_register();
1362 	msm_edp_register();
1363 	msm_hdmi_register();
1364 	adreno_register();
1365 	return platform_driver_register(&msm_platform_driver);
1366 }
1367 
1368 static void __exit msm_drm_unregister(void)
1369 {
1370 	DBG("fini");
1371 	platform_driver_unregister(&msm_platform_driver);
1372 	msm_hdmi_unregister();
1373 	adreno_unregister();
1374 	msm_edp_unregister();
1375 	msm_dsi_unregister();
1376 	msm_mdp_unregister();
1377 	msm_dpu_unregister();
1378 }
1379 
1380 module_init(msm_drm_register);
1381 module_exit(msm_drm_unregister);
1382 
1383 MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
1384 MODULE_DESCRIPTION("MSM DRM Driver");
1385 MODULE_LICENSE("GPL");
1386