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