msm_drv.c 34.5 KB
Newer Older
1
/*
2
 * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2013 Red Hat
 * Author: Rob Clark <robdclark@gmail.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

19 20
#include <linux/kthread.h>
#include <uapi/linux/sched/types.h>
21 22
#include <drm/drm_of.h>

23
#include "msm_drv.h"
24
#include "msm_debugfs.h"
25
#include "msm_fence.h"
26
#include "msm_gem.h"
R
Rob Clark 已提交
27
#include "msm_gpu.h"
R
Rob Clark 已提交
28
#include "msm_kms.h"
J
Jonathan Marek 已提交
29
#include "adreno/adreno_gpu.h"
30

R
Rob Clark 已提交
31 32 33 34 35

/*
 * MSM driver version:
 * - 1.0.0 - initial interface
 * - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers
36
 * - 1.2.0 - adds explicit fence support for submit ioctl
37 38 39
 * - 1.3.0 - adds GMEM_BASE + NR_RINGS params, SUBMITQUEUE_NEW +
 *           SUBMITQUEUE_CLOSE ioctls, and MSM_INFO_IOVA flag for
 *           MSM_GEM_INFO ioctl.
R
Rob Clark 已提交
40 41
 * - 1.4.0 - softpin, MSM_RELOC_BO_DUMP, and GEM_INFO support to set/get
 *           GEM object's debug name
R
Rob Clark 已提交
42 43
 */
#define MSM_VERSION_MAJOR	1
R
Rob Clark 已提交
44
#define MSM_VERSION_MINOR	4
R
Rob Clark 已提交
45 46
#define MSM_VERSION_PATCHLEVEL	0

47 48
static const struct drm_mode_config_funcs mode_config_funcs = {
	.fb_create = msm_framebuffer_create,
49
	.output_poll_changed = drm_fb_helper_output_poll_changed,
50
	.atomic_check = drm_atomic_helper_check,
51 52 53 54 55
	.atomic_commit = drm_atomic_helper_commit,
};

static const struct drm_mode_config_helper_funcs mode_config_helper_funcs = {
	.atomic_commit_tail = msm_atomic_commit_tail,
56 57 58 59 60 61 62 63 64 65
};

#ifdef CONFIG_DRM_MSM_REGISTER_LOGGING
static bool reglog = false;
MODULE_PARM_DESC(reglog, "Enable register read/write logging");
module_param(reglog, bool, 0600);
#else
#define reglog 0
#endif

66
#ifdef CONFIG_DRM_FBDEV_EMULATION
67 68 69 70 71
static bool fbdev = true;
MODULE_PARM_DESC(fbdev, "Enable fbdev compat layer");
module_param(fbdev, bool, 0600);
#endif

72
static char *vram = "16m";
R
Rob Clark 已提交
73
MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)");
74 75
module_param(vram, charp, 0);

76 77 78 79
bool dumpstate = false;
MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors");
module_param(dumpstate, bool, 0600);

R
Rob Clark 已提交
80 81 82 83
static bool modeset = true;
MODULE_PARM_DESC(modeset, "Use kernel modesetting [KMS] (1=on (default), 0=disable)");
module_param(modeset, bool, 0600);

84 85 86 87
/*
 * Util/helpers:
 */

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
int msm_clk_bulk_get(struct device *dev, struct clk_bulk_data **bulk)
{
	struct property *prop;
	const char *name;
	struct clk_bulk_data *local;
	int i = 0, ret, count;

	count = of_property_count_strings(dev->of_node, "clock-names");
	if (count < 1)
		return 0;

	local = devm_kcalloc(dev, sizeof(struct clk_bulk_data *),
		count, GFP_KERNEL);
	if (!local)
		return -ENOMEM;

	of_property_for_each_string(dev->of_node, "clock-names", prop, name) {
		local[i].id = devm_kstrdup(dev, name, GFP_KERNEL);
		if (!local[i].id) {
			devm_kfree(dev, local);
			return -ENOMEM;
		}

		i++;
	}

	ret = devm_clk_bulk_get(dev, count, local);

	if (ret) {
		for (i = 0; i < count; i++)
			devm_kfree(dev, (void *) local[i].id);
		devm_kfree(dev, local);

		return ret;
	}

	*bulk = local;
	return count;
}

struct clk *msm_clk_bulk_get_clock(struct clk_bulk_data *bulk, int count,
		const char *name)
{
	int i;
	char n[32];

	snprintf(n, sizeof(n), "%s_clk", name);

	for (i = 0; bulk && i < count; i++) {
		if (!strcmp(bulk[i].id, name) || !strcmp(bulk[i].id, n))
			return bulk[i].clk;
	}


	return NULL;
}

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
struct clk *msm_clk_get(struct platform_device *pdev, const char *name)
{
	struct clk *clk;
	char name2[32];

	clk = devm_clk_get(&pdev->dev, name);
	if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER)
		return clk;

	snprintf(name2, sizeof(name2), "%s_clk", name);

	clk = devm_clk_get(&pdev->dev, name2);
	if (!IS_ERR(clk))
		dev_warn(&pdev->dev, "Using legacy clk name binding.  Use "
				"\"%s\" instead of \"%s\"\n", name, name2);

	return clk;
}

164 165 166 167 168 169 170 171 172 173 174 175 176
void __iomem *msm_ioremap(struct platform_device *pdev, const char *name,
		const char *dbgname)
{
	struct resource *res;
	unsigned long size;
	void __iomem *ptr;

	if (name)
		res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
	else
		res = platform_get_resource(pdev, IORESOURCE_MEM, 0);

	if (!res) {
177
		DRM_DEV_ERROR(&pdev->dev, "failed to get memory resource: %s\n", name);
178 179 180 181 182 183 184
		return ERR_PTR(-EINVAL);
	}

	size = resource_size(res);

	ptr = devm_ioremap_nocache(&pdev->dev, res->start, size);
	if (!ptr) {
185
		DRM_DEV_ERROR(&pdev->dev, "failed to ioremap: %s\n", name);
186 187 188 189
		return ERR_PTR(-ENOMEM);
	}

	if (reglog)
190
		printk(KERN_DEBUG "IO:region %s %p %08lx\n", dbgname, ptr, size);
191 192 193 194 195 196 197

	return ptr;
}

void msm_writel(u32 data, void __iomem *addr)
{
	if (reglog)
198
		printk(KERN_DEBUG "IO:W %p %08x\n", addr, data);
199 200 201 202 203 204 205
	writel(data, addr);
}

u32 msm_readl(const void __iomem *addr)
{
	u32 val = readl(addr);
	if (reglog)
206
		pr_err("IO:R %p %08x\n", addr, val);
207 208 209
	return val;
}

210 211 212 213 214 215
struct vblank_event {
	struct list_head node;
	int crtc_id;
	bool enable;
};

216
static void vblank_ctrl_worker(struct kthread_work *work)
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
{
	struct msm_vblank_ctrl *vbl_ctrl = container_of(work,
						struct msm_vblank_ctrl, work);
	struct msm_drm_private *priv = container_of(vbl_ctrl,
					struct msm_drm_private, vblank_ctrl);
	struct msm_kms *kms = priv->kms;
	struct vblank_event *vbl_ev, *tmp;
	unsigned long flags;

	spin_lock_irqsave(&vbl_ctrl->lock, flags);
	list_for_each_entry_safe(vbl_ev, tmp, &vbl_ctrl->event_list, node) {
		list_del(&vbl_ev->node);
		spin_unlock_irqrestore(&vbl_ctrl->lock, flags);

		if (vbl_ev->enable)
			kms->funcs->enable_vblank(kms,
						priv->crtcs[vbl_ev->crtc_id]);
		else
			kms->funcs->disable_vblank(kms,
						priv->crtcs[vbl_ev->crtc_id]);

		kfree(vbl_ev);

		spin_lock_irqsave(&vbl_ctrl->lock, flags);
	}

	spin_unlock_irqrestore(&vbl_ctrl->lock, flags);
}

static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
					int crtc_id, bool enable)
{
	struct msm_vblank_ctrl *vbl_ctrl = &priv->vblank_ctrl;
	struct vblank_event *vbl_ev;
	unsigned long flags;

	vbl_ev = kzalloc(sizeof(*vbl_ev), GFP_ATOMIC);
	if (!vbl_ev)
		return -ENOMEM;

	vbl_ev->crtc_id = crtc_id;
	vbl_ev->enable = enable;

	spin_lock_irqsave(&vbl_ctrl->lock, flags);
	list_add_tail(&vbl_ev->node, &vbl_ctrl->event_list);
	spin_unlock_irqrestore(&vbl_ctrl->lock, flags);

264 265
	kthread_queue_work(&priv->disp_thread[crtc_id].worker,
			&vbl_ctrl->work);
266 267 268 269

	return 0;
}

270
static int msm_drm_uninit(struct device *dev)
271
{
272 273 274
	struct platform_device *pdev = to_platform_device(dev);
	struct drm_device *ddev = platform_get_drvdata(pdev);
	struct msm_drm_private *priv = ddev->dev_private;
275
	struct msm_kms *kms = priv->kms;
276
	struct msm_mdss *mdss = priv->mdss;
277 278
	struct msm_vblank_ctrl *vbl_ctrl = &priv->vblank_ctrl;
	struct vblank_event *vbl_ev, *tmp;
279
	int i;
280 281 282 283 284

	/* We must cancel and cleanup any pending vblank enable/disable
	 * work before drm_irq_uninstall() to avoid work re-enabling an
	 * irq after uninstall has disabled it.
	 */
285
	kthread_flush_work(&vbl_ctrl->work);
286 287 288 289
	list_for_each_entry_safe(vbl_ev, tmp, &vbl_ctrl->event_list, node) {
		list_del(&vbl_ev->node);
		kfree(vbl_ev);
	}
290

291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
	/* clean up display commit/event worker threads */
	for (i = 0; i < priv->num_crtcs; i++) {
		if (priv->disp_thread[i].thread) {
			kthread_flush_worker(&priv->disp_thread[i].worker);
			kthread_stop(priv->disp_thread[i].thread);
			priv->disp_thread[i].thread = NULL;
		}

		if (priv->event_thread[i].thread) {
			kthread_flush_worker(&priv->event_thread[i].worker);
			kthread_stop(priv->event_thread[i].thread);
			priv->event_thread[i].thread = NULL;
		}
	}

R
Rob Clark 已提交
306 307
	msm_gem_shrinker_cleanup(ddev);

308 309 310
	drm_kms_helper_poll_fini(ddev);

	drm_dev_unregister(ddev);
311

312 313 314
	msm_perf_debugfs_cleanup(priv);
	msm_rd_debugfs_cleanup(priv);

315 316
#ifdef CONFIG_DRM_FBDEV_EMULATION
	if (fbdev && priv->fbdev)
317
		msm_fbdev_free(ddev);
318
#endif
319
	drm_atomic_helper_shutdown(ddev);
320
	drm_mode_config_cleanup(ddev);
321

322 323 324
	pm_runtime_get_sync(dev);
	drm_irq_uninstall(ddev);
	pm_runtime_put_sync(dev);
325 326 327 328

	flush_workqueue(priv->wq);
	destroy_workqueue(priv->wq);

329
	if (kms && kms->funcs)
330 331
		kms->funcs->destroy(kms);

332
	if (priv->vram.paddr) {
333
		unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING;
334
		drm_mm_takedown(&priv->vram.mm);
335
		dma_free_attrs(dev, priv->vram.size, NULL,
336
			       priv->vram.paddr, attrs);
337 338
	}

339
	component_unbind_all(dev, ddev);
340

341 342
	if (mdss && mdss->funcs)
		mdss->funcs->destroy(ddev);
343

344
	ddev->dev_private = NULL;
345
	drm_dev_put(ddev);
346 347 348 349 350 351

	kfree(priv);

	return 0;
}

352 353
#define KMS_MDP4 4
#define KMS_MDP5 5
354
#define KMS_DPU  3
355

R
Rob Clark 已提交
356 357 358
static int get_mdp_ver(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
359 360

	return (int) (unsigned long) of_device_get_match_data(dev);
R
Rob Clark 已提交
361 362
}

363 364
#include <linux/of_address.h>

J
Jonathan Marek 已提交
365 366 367 368 369 370 371 372
bool msm_use_mmu(struct drm_device *dev)
{
	struct msm_drm_private *priv = dev->dev_private;

	/* a2xx comes with its own MMU */
	return priv->is_a2xx || iommu_present(&platform_bus_type);
}

373
static int msm_init_vram(struct drm_device *dev)
374
{
375
	struct msm_drm_private *priv = dev->dev_private;
376
	struct device_node *node;
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
	unsigned long size = 0;
	int ret = 0;

	/* In the device-tree world, we could have a 'memory-region'
	 * phandle, which gives us a link to our "vram".  Allocating
	 * is all nicely abstracted behind the dma api, but we need
	 * to know the entire size to allocate it all in one go. There
	 * are two cases:
	 *  1) device with no IOMMU, in which case we need exclusive
	 *     access to a VRAM carveout big enough for all gpu
	 *     buffers
	 *  2) device with IOMMU, but where the bootloader puts up
	 *     a splash screen.  In this case, the VRAM carveout
	 *     need only be large enough for fbdev fb.  But we need
	 *     exclusive access to the buffer to avoid the kernel
	 *     using those pages for other purposes (which appears
	 *     as corruption on screen before we have a chance to
	 *     load and do initial modeset)
	 */

	node = of_parse_phandle(dev->dev->of_node, "memory-region", 0);
	if (node) {
		struct resource r;
		ret = of_address_to_resource(node, 0, &r);
401
		of_node_put(node);
402 403 404
		if (ret)
			return ret;
		size = r.end - r.start;
405
		DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
406

407 408 409 410
		/* if we have no IOMMU, then we need to use carveout allocator.
		 * Grab the entire CMA chunk carved out in early startup in
		 * mach-msm:
		 */
J
Jonathan Marek 已提交
411
	} else if (!msm_use_mmu(dev)) {
412 413 414 415 416
		DRM_INFO("using %s VRAM carveout\n", vram);
		size = memparse(vram, NULL);
	}

	if (size) {
417
		unsigned long attrs = 0;
418 419 420 421 422
		void *p;

		priv->vram.size = size;

		drm_mm_init(&priv->vram.mm, 0, (size >> PAGE_SHIFT) - 1);
423
		spin_lock_init(&priv->vram.lock);
424

425 426
		attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
		attrs |= DMA_ATTR_WRITE_COMBINE;
427 428 429 430 431

		/* note that for no-kernel-mapping, the vaddr returned
		 * is bogus, but non-null if allocation succeeded:
		 */
		p = dma_alloc_attrs(dev->dev, size,
432
				&priv->vram.paddr, GFP_KERNEL, attrs);
433
		if (!p) {
434
			DRM_DEV_ERROR(dev->dev, "failed to allocate VRAM\n");
435
			priv->vram.paddr = 0;
436
			return -ENOMEM;
437 438
		}

439
		DRM_DEV_INFO(dev->dev, "VRAM: %08x->%08x\n",
440 441 442 443
				(uint32_t)priv->vram.paddr,
				(uint32_t)(priv->vram.paddr + size));
	}

444
	return ret;
445 446
}

447
static int msm_drm_init(struct device *dev, struct drm_driver *drv)
448
{
449 450
	struct platform_device *pdev = to_platform_device(dev);
	struct drm_device *ddev;
451 452
	struct msm_drm_private *priv;
	struct msm_kms *kms;
453
	struct msm_mdss *mdss;
454 455
	int ret, i;
	struct sched_param param;
456

457
	ddev = drm_dev_alloc(drv, dev);
458
	if (IS_ERR(ddev)) {
459
		DRM_DEV_ERROR(dev, "failed to allocate drm_device\n");
460
		return PTR_ERR(ddev);
461 462 463 464
	}

	platform_set_drvdata(pdev, ddev);

465 466
	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
	if (!priv) {
467
		ret = -ENOMEM;
468
		goto err_put_drm_dev;
469 470
	}

471
	ddev->dev_private = priv;
R
Rob Clark 已提交
472
	priv->dev = ddev;
473

474 475 476 477 478 479 480 481 482 483 484
	switch (get_mdp_ver(pdev)) {
	case KMS_MDP5:
		ret = mdp5_mdss_init(ddev);
		break;
	case KMS_DPU:
		ret = dpu_mdss_init(ddev);
		break;
	default:
		ret = 0;
		break;
	}
485 486
	if (ret)
		goto err_free_priv;
487

488 489
	mdss = priv->mdss;

490 491 492
	priv->wq = alloc_ordered_workqueue("msm", 0);

	INIT_LIST_HEAD(&priv->inactive_list);
493
	INIT_LIST_HEAD(&priv->vblank_ctrl.event_list);
494
	kthread_init_work(&priv->vblank_ctrl.work, vblank_ctrl_worker);
495
	spin_lock_init(&priv->vblank_ctrl.lock);
496

497
	drm_mode_config_init(ddev);
498 499

	/* Bind all our sub-components: */
500
	ret = component_bind_all(dev, ddev);
501 502
	if (ret)
		goto err_destroy_mdss;
503

504
	ret = msm_init_vram(ddev);
505
	if (ret)
506
		goto err_msm_uninit;
507

R
Rob Clark 已提交
508 509
	msm_gem_shrinker_init(ddev);

R
Rob Clark 已提交
510
	switch (get_mdp_ver(pdev)) {
511
	case KMS_MDP4:
512
		kms = mdp4_kms_init(ddev);
513
		priv->kms = kms;
R
Rob Clark 已提交
514
		break;
515
	case KMS_MDP5:
516
		kms = mdp5_kms_init(ddev);
R
Rob Clark 已提交
517
		break;
518 519 520 521
	case KMS_DPU:
		kms = dpu_kms_init(ddev);
		priv->kms = kms;
		break;
R
Rob Clark 已提交
522
	default:
523 524 525
		/* valid only for the dummy headless case, where of_node=NULL */
		WARN_ON(dev->of_node);
		kms = NULL;
R
Rob Clark 已提交
526 527 528
		break;
	}

529
	if (IS_ERR(kms)) {
530
		DRM_DEV_ERROR(dev, "failed to load kms\n");
T
Thomas Meyer 已提交
531
		ret = PTR_ERR(kms);
532
		priv->kms = NULL;
533
		goto err_msm_uninit;
534 535
	}

536 537 538
	/* Enable normalization of plane zpos */
	ddev->mode_config.normalize_zpos = true;

539 540 541
	if (kms) {
		ret = kms->funcs->hw_init(kms);
		if (ret) {
542
			DRM_DEV_ERROR(dev, "kms hw init failed: %d\n", ret);
543
			goto err_msm_uninit;
544 545 546
		}
	}

547
	ddev->mode_config.funcs = &mode_config_funcs;
548
	ddev->mode_config.helper_private = &mode_config_helper_funcs;
549

550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
	/**
	 * this priority was found during empiric testing to have appropriate
	 * realtime scheduling to process display updates and interact with
	 * other real time and normal priority task
	 */
	param.sched_priority = 16;
	for (i = 0; i < priv->num_crtcs; i++) {

		/* initialize display thread */
		priv->disp_thread[i].crtc_id = priv->crtcs[i]->base.id;
		kthread_init_worker(&priv->disp_thread[i].worker);
		priv->disp_thread[i].dev = ddev;
		priv->disp_thread[i].thread =
			kthread_run(kthread_worker_fn,
				&priv->disp_thread[i].worker,
				"crtc_commit:%d", priv->disp_thread[i].crtc_id);
		if (IS_ERR(priv->disp_thread[i].thread)) {
567
			DRM_DEV_ERROR(dev, "failed to create crtc_commit kthread\n");
568
			priv->disp_thread[i].thread = NULL;
569
			goto err_msm_uninit;
570 571
		}

572 573 574 575 576 577
		ret = sched_setscheduler(priv->disp_thread[i].thread,
					 SCHED_FIFO, &param);
		if (ret)
			dev_warn(dev, "disp_thread set priority failed: %d\n",
				 ret);

578 579 580 581 582 583 584 585
		/* initialize event thread */
		priv->event_thread[i].crtc_id = priv->crtcs[i]->base.id;
		kthread_init_worker(&priv->event_thread[i].worker);
		priv->event_thread[i].dev = ddev;
		priv->event_thread[i].thread =
			kthread_run(kthread_worker_fn,
				&priv->event_thread[i].worker,
				"crtc_event:%d", priv->event_thread[i].crtc_id);
586
		if (IS_ERR(priv->event_thread[i].thread)) {
587
			DRM_DEV_ERROR(dev, "failed to create crtc_event kthread\n");
588 589 590 591
			priv->event_thread[i].thread = NULL;
			goto err_msm_uninit;
		}

592 593 594 595 596 597 598 599
		/**
		 * event thread should also run at same priority as disp_thread
		 * because it is handling frame_done events. A lower priority
		 * event thread and higher priority disp_thread can causes
		 * frame_pending counters beyond 2. This can lead to commit
		 * failure at crtc commit level.
		 */
		ret = sched_setscheduler(priv->event_thread[i].thread,
600
					 SCHED_FIFO, &param);
601
		if (ret)
602 603
			dev_warn(dev, "event_thread set priority failed:%d\n",
				 ret);
604 605
	}

606
	ret = drm_vblank_init(ddev, priv->num_crtcs);
607
	if (ret < 0) {
608
		DRM_DEV_ERROR(dev, "failed to initialize vblank\n");
609
		goto err_msm_uninit;
610 611
	}

612 613 614 615 616
	if (kms) {
		pm_runtime_get_sync(dev);
		ret = drm_irq_install(ddev, kms->irq);
		pm_runtime_put_sync(dev);
		if (ret < 0) {
617
			DRM_DEV_ERROR(dev, "failed to install IRQ handler\n");
618
			goto err_msm_uninit;
619
		}
620 621
	}

622 623
	ret = drm_dev_register(ddev, 0);
	if (ret)
624
		goto err_msm_uninit;
625 626

	drm_mode_config_reset(ddev);
R
Rob Clark 已提交
627

628
#ifdef CONFIG_DRM_FBDEV_EMULATION
629
	if (kms && fbdev)
630
		priv->fbdev = msm_fbdev_init(ddev);
631 632
#endif

633
	ret = msm_debugfs_late_init(ddev);
R
Rob Clark 已提交
634
	if (ret)
635
		goto err_msm_uninit;
R
Rob Clark 已提交
636

637
	drm_kms_helper_poll_init(ddev);
638 639 640

	return 0;

641
err_msm_uninit:
642
	msm_drm_uninit(dev);
643
	return ret;
644 645 646 647 648
err_destroy_mdss:
	if (mdss && mdss->funcs)
		mdss->funcs->destroy(ddev);
err_free_priv:
	kfree(priv);
649 650
err_put_drm_dev:
	drm_dev_put(ddev);
651
	return ret;
652 653
}

654 655 656 657
/*
 * DRM operations:
 */

R
Rob Clark 已提交
658 659
static void load_gpu(struct drm_device *dev)
{
660
	static DEFINE_MUTEX(init_lock);
R
Rob Clark 已提交
661 662
	struct msm_drm_private *priv = dev->dev_private;

663 664
	mutex_lock(&init_lock);

665 666
	if (!priv->gpu)
		priv->gpu = adreno_load_gpu(dev);
R
Rob Clark 已提交
667

668
	mutex_unlock(&init_lock);
R
Rob Clark 已提交
669 670
}

671
static int context_init(struct drm_device *dev, struct drm_file *file)
R
Rob Clark 已提交
672 673 674 675 676 677 678
{
	struct msm_file_private *ctx;

	ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
	if (!ctx)
		return -ENOMEM;

679
	msm_submitqueue_init(dev, ctx);
680

R
Rob Clark 已提交
681 682 683 684 685
	file->driver_priv = ctx;

	return 0;
}

686 687 688 689 690 691 692
static int msm_open(struct drm_device *dev, struct drm_file *file)
{
	/* For now, load gpu on open.. to avoid the requirement of having
	 * firmware in the initrd.
	 */
	load_gpu(dev);

693
	return context_init(dev, file);
694 695 696 697 698 699 700 701
}

static void context_close(struct msm_file_private *ctx)
{
	msm_submitqueue_close(ctx);
	kfree(ctx);
}

D
Daniel Vetter 已提交
702
static void msm_postclose(struct drm_device *dev, struct drm_file *file)
703 704
{
	struct msm_drm_private *priv = dev->dev_private;
R
Rob Clark 已提交
705 706 707 708 709 710 711
	struct msm_file_private *ctx = file->driver_priv;

	mutex_lock(&dev->struct_mutex);
	if (ctx == priv->lastctx)
		priv->lastctx = NULL;
	mutex_unlock(&dev->struct_mutex);

712
	context_close(ctx);
713 714
}

D
Daniel Vetter 已提交
715
static irqreturn_t msm_irq(int irq, void *arg)
716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
{
	struct drm_device *dev = arg;
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	BUG_ON(!kms);
	return kms->funcs->irq(kms);
}

static void msm_irq_preinstall(struct drm_device *dev)
{
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	BUG_ON(!kms);
	kms->funcs->irq_preinstall(kms);
}

static int msm_irq_postinstall(struct drm_device *dev)
{
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	BUG_ON(!kms);
737 738 739 740 741

	if (kms->funcs->irq_postinstall)
		return kms->funcs->irq_postinstall(kms);

	return 0;
742 743 744 745 746 747 748 749 750 751
}

static void msm_irq_uninstall(struct drm_device *dev)
{
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	BUG_ON(!kms);
	kms->funcs->irq_uninstall(kms);
}

752
static int msm_enable_vblank(struct drm_device *dev, unsigned int pipe)
753 754 755 756 757
{
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	if (!kms)
		return -ENXIO;
758 759
	DBG("dev=%p, crtc=%u", dev, pipe);
	return vblank_ctrl_queue_work(priv, pipe, true);
760 761
}

762
static void msm_disable_vblank(struct drm_device *dev, unsigned int pipe)
763 764 765 766 767
{
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	if (!kms)
		return;
768 769
	DBG("dev=%p, crtc=%u", dev, pipe);
	vblank_ctrl_queue_work(priv, pipe, false);
770 771
}

R
Rob Clark 已提交
772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800
/*
 * DRM ioctls:
 */

static int msm_ioctl_get_param(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	struct msm_drm_private *priv = dev->dev_private;
	struct drm_msm_param *args = data;
	struct msm_gpu *gpu;

	/* for now, we just have 3d pipe.. eventually this would need to
	 * be more clever to dispatch to appropriate gpu module:
	 */
	if (args->pipe != MSM_PIPE_3D0)
		return -EINVAL;

	gpu = priv->gpu;

	if (!gpu)
		return -ENXIO;

	return gpu->funcs->get_param(gpu, args->param, &args->value);
}

static int msm_ioctl_gem_new(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	struct drm_msm_gem_new *args = data;
R
Rob Clark 已提交
801 802 803 804 805 806

	if (args->flags & ~MSM_BO_FLAGS) {
		DRM_ERROR("invalid flags: %08x\n", args->flags);
		return -EINVAL;
	}

R
Rob Clark 已提交
807
	return msm_gem_new_handle(dev, file, args->size,
808
			args->flags, &args->handle, NULL);
R
Rob Clark 已提交
809 810
}

R
Rob Clark 已提交
811 812 813 814
static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
{
	return ktime_set(timeout.tv_sec, timeout.tv_nsec);
}
R
Rob Clark 已提交
815 816 817 818 819 820

static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	struct drm_msm_gem_cpu_prep *args = data;
	struct drm_gem_object *obj;
R
Rob Clark 已提交
821
	ktime_t timeout = to_ktime(args->timeout);
R
Rob Clark 已提交
822 823
	int ret;

R
Rob Clark 已提交
824 825 826 827 828
	if (args->op & ~MSM_PREP_FLAGS) {
		DRM_ERROR("invalid op: %08x\n", args->op);
		return -EINVAL;
	}

829
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
830 831 832
	if (!obj)
		return -ENOENT;

R
Rob Clark 已提交
833
	ret = msm_gem_cpu_prep(obj, args->op, &timeout);
R
Rob Clark 已提交
834

835
	drm_gem_object_put_unlocked(obj);
R
Rob Clark 已提交
836 837 838 839 840 841 842 843 844 845 846

	return ret;
}

static int msm_ioctl_gem_cpu_fini(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	struct drm_msm_gem_cpu_fini *args = data;
	struct drm_gem_object *obj;
	int ret;

847
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
848 849 850 851 852
	if (!obj)
		return -ENOENT;

	ret = msm_gem_cpu_fini(obj);

853
	drm_gem_object_put_unlocked(obj);
R
Rob Clark 已提交
854 855 856 857

	return ret;
}

858 859 860 861 862 863 864 865
static int msm_ioctl_gem_info_iova(struct drm_device *dev,
		struct drm_gem_object *obj, uint64_t *iova)
{
	struct msm_drm_private *priv = dev->dev_private;

	if (!priv->gpu)
		return -EINVAL;

866 867 868 869
	/*
	 * Don't pin the memory here - just get an address so that userspace can
	 * be productive
	 */
870
	return msm_gem_get_iova(obj, priv->gpu->aspace, iova);
871 872
}

R
Rob Clark 已提交
873 874 875 876 877
static int msm_ioctl_gem_info(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	struct drm_msm_gem_info *args = data;
	struct drm_gem_object *obj;
878 879
	struct msm_gem_object *msm_obj;
	int i, ret = 0;
R
Rob Clark 已提交
880

R
Rob Clark 已提交
881
	if (args->pad)
R
Rob Clark 已提交
882 883
		return -EINVAL;

R
Rob Clark 已提交
884 885 886 887 888 889 890
	switch (args->info) {
	case MSM_INFO_GET_OFFSET:
	case MSM_INFO_GET_IOVA:
		/* value returned as immediate, not pointer, so len==0: */
		if (args->len)
			return -EINVAL;
		break;
891 892 893
	case MSM_INFO_SET_NAME:
	case MSM_INFO_GET_NAME:
		break;
R
Rob Clark 已提交
894
	default:
R
Rob Clark 已提交
895
		return -EINVAL;
R
Rob Clark 已提交
896
	}
R
Rob Clark 已提交
897

898
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
899 900 901
	if (!obj)
		return -ENOENT;

902
	msm_obj = to_msm_bo(obj);
903

R
Rob Clark 已提交
904 905 906 907 908 909 910
	switch (args->info) {
	case MSM_INFO_GET_OFFSET:
		args->value = msm_gem_mmap_offset(obj);
		break;
	case MSM_INFO_GET_IOVA:
		ret = msm_ioctl_gem_info_iova(dev, obj, &args->value);
		break;
911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
	case MSM_INFO_SET_NAME:
		/* length check should leave room for terminating null: */
		if (args->len >= sizeof(msm_obj->name)) {
			ret = -EINVAL;
			break;
		}
		ret = copy_from_user(msm_obj->name,
			u64_to_user_ptr(args->value), args->len);
		msm_obj->name[args->len] = '\0';
		for (i = 0; i < args->len; i++) {
			if (!isprint(msm_obj->name[i])) {
				msm_obj->name[i] = '\0';
				break;
			}
		}
		break;
	case MSM_INFO_GET_NAME:
		if (args->value && (args->len < strlen(msm_obj->name))) {
			ret = -EINVAL;
			break;
		}
		args->len = strlen(msm_obj->name);
		if (args->value) {
			ret = copy_to_user(u64_to_user_ptr(args->value),
					msm_obj->name, args->len);
		}
		break;
938
	}
R
Rob Clark 已提交
939

940
	drm_gem_object_put_unlocked(obj);
R
Rob Clark 已提交
941 942 943 944 945 946 947

	return ret;
}

static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
		struct drm_file *file)
{
R
Rob Clark 已提交
948
	struct msm_drm_private *priv = dev->dev_private;
R
Rob Clark 已提交
949
	struct drm_msm_wait_fence *args = data;
R
Rob Clark 已提交
950
	ktime_t timeout = to_ktime(args->timeout);
951 952 953
	struct msm_gpu_submitqueue *queue;
	struct msm_gpu *gpu = priv->gpu;
	int ret;
R
Rob Clark 已提交
954 955 956 957 958 959

	if (args->pad) {
		DRM_ERROR("invalid pad: %08x\n", args->pad);
		return -EINVAL;
	}

960
	if (!gpu)
R
Rob Clark 已提交
961 962
		return 0;

963 964 965 966 967 968 969 970 971
	queue = msm_submitqueue_get(file->driver_priv, args->queueid);
	if (!queue)
		return -ENOENT;

	ret = msm_wait_fence(gpu->rb[queue->prio]->fctx, args->fence, &timeout,
		true);

	msm_submitqueue_put(queue);
	return ret;
R
Rob Clark 已提交
972 973
}

R
Rob Clark 已提交
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
static int msm_ioctl_gem_madvise(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	struct drm_msm_gem_madvise *args = data;
	struct drm_gem_object *obj;
	int ret;

	switch (args->madv) {
	case MSM_MADV_DONTNEED:
	case MSM_MADV_WILLNEED:
		break;
	default:
		return -EINVAL;
	}

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

	obj = drm_gem_object_lookup(file, args->handle);
	if (!obj) {
		ret = -ENOENT;
		goto unlock;
	}

	ret = msm_gem_madvise(obj, args->madv);
	if (ret >= 0) {
		args->retained = ret;
		ret = 0;
	}

1005
	drm_gem_object_put(obj);
R
Rob Clark 已提交
1006 1007 1008 1009 1010 1011

unlock:
	mutex_unlock(&dev->struct_mutex);
	return ret;
}

1012 1013 1014 1015 1016 1017 1018 1019 1020

static int msm_ioctl_submitqueue_new(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	struct drm_msm_submitqueue *args = data;

	if (args->flags & ~MSM_SUBMITQUEUE_FLAGS)
		return -EINVAL;

1021
	return msm_submitqueue_create(dev, file->driver_priv, args->prio,
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
		args->flags, &args->id);
}


static int msm_ioctl_submitqueue_close(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	u32 id = *(u32 *) data;

	return msm_submitqueue_remove(file->driver_priv, id);
}

R
Rob Clark 已提交
1034
static const struct drm_ioctl_desc msm_ioctls[] = {
1035 1036 1037 1038 1039 1040 1041
	DRM_IOCTL_DEF_DRV(MSM_GET_PARAM,    msm_ioctl_get_param,    DRM_AUTH|DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_NEW,      msm_ioctl_gem_new,      DRM_AUTH|DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_INFO,     msm_ioctl_gem_info,     DRM_AUTH|DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_AUTH|DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_AUTH|DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_SUBMIT,   msm_ioctl_gem_submit,   DRM_AUTH|DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_WAIT_FENCE,   msm_ioctl_wait_fence,   DRM_AUTH|DRM_RENDER_ALLOW),
R
Rob Clark 已提交
1042
	DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE,  msm_ioctl_gem_madvise,  DRM_AUTH|DRM_RENDER_ALLOW),
1043 1044
	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_NEW,   msm_ioctl_submitqueue_new,   DRM_AUTH|DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_CLOSE, msm_ioctl_submitqueue_close, DRM_AUTH|DRM_RENDER_ALLOW),
R
Rob Clark 已提交
1045 1046
};

1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
static const struct vm_operations_struct vm_ops = {
	.fault = msm_gem_fault,
	.open = drm_gem_vm_open,
	.close = drm_gem_vm_close,
};

static const struct file_operations fops = {
	.owner              = THIS_MODULE,
	.open               = drm_open,
	.release            = drm_release,
	.unlocked_ioctl     = drm_ioctl,
	.compat_ioctl       = drm_compat_ioctl,
	.poll               = drm_poll,
	.read               = drm_read,
	.llseek             = no_llseek,
	.mmap               = msm_gem_mmap,
};

static struct drm_driver msm_driver = {
R
Rob Clark 已提交
1066 1067 1068
	.driver_features    = DRIVER_HAVE_IRQ |
				DRIVER_GEM |
				DRIVER_PRIME |
R
Rob Clark 已提交
1069
				DRIVER_RENDER |
1070
				DRIVER_ATOMIC |
R
Rob Clark 已提交
1071
				DRIVER_MODESET,
R
Rob Clark 已提交
1072
	.open               = msm_open,
D
Daniel Vetter 已提交
1073
	.postclose           = msm_postclose,
1074
	.lastclose          = drm_fb_helper_lastclose,
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
	.irq_handler        = msm_irq,
	.irq_preinstall     = msm_irq_preinstall,
	.irq_postinstall    = msm_irq_postinstall,
	.irq_uninstall      = msm_irq_uninstall,
	.enable_vblank      = msm_enable_vblank,
	.disable_vblank     = msm_disable_vblank,
	.gem_free_object    = msm_gem_free_object,
	.gem_vm_ops         = &vm_ops,
	.dumb_create        = msm_gem_dumb_create,
	.dumb_map_offset    = msm_gem_dumb_map_offset,
R
Rob Clark 已提交
1085 1086 1087 1088
	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
	.gem_prime_export   = drm_gem_prime_export,
	.gem_prime_import   = drm_gem_prime_import,
1089
	.gem_prime_res_obj  = msm_gem_prime_res_obj,
R
Rob Clark 已提交
1090 1091 1092 1093 1094 1095
	.gem_prime_pin      = msm_gem_prime_pin,
	.gem_prime_unpin    = msm_gem_prime_unpin,
	.gem_prime_get_sg_table = msm_gem_prime_get_sg_table,
	.gem_prime_import_sg_table = msm_gem_prime_import_sg_table,
	.gem_prime_vmap     = msm_gem_prime_vmap,
	.gem_prime_vunmap   = msm_gem_prime_vunmap,
1096
	.gem_prime_mmap     = msm_gem_prime_mmap,
1097 1098 1099
#ifdef CONFIG_DEBUG_FS
	.debugfs_init       = msm_debugfs_init,
#endif
R
Rob Clark 已提交
1100
	.ioctls             = msm_ioctls,
1101
	.num_ioctls         = ARRAY_SIZE(msm_ioctls),
1102 1103 1104 1105
	.fops               = &fops,
	.name               = "msm",
	.desc               = "MSM Snapdragon DRM",
	.date               = "20130625",
R
Rob Clark 已提交
1106 1107 1108
	.major              = MSM_VERSION_MAJOR,
	.minor              = MSM_VERSION_MINOR,
	.patchlevel         = MSM_VERSION_PATCHLEVEL,
1109 1110 1111 1112 1113 1114
};

#ifdef CONFIG_PM_SLEEP
static int msm_pm_suspend(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);
1115
	struct msm_drm_private *priv = ddev->dev_private;
1116

1117 1118
	if (WARN_ON(priv->pm_state))
		drm_atomic_state_put(priv->pm_state);
1119

1120 1121
	priv->pm_state = drm_atomic_helper_suspend(ddev);
	if (IS_ERR(priv->pm_state)) {
1122 1123 1124
		int ret = PTR_ERR(priv->pm_state);
		DRM_ERROR("Failed to suspend dpu, %d\n", ret);
		return ret;
1125 1126
	}

1127 1128 1129 1130 1131 1132
	return 0;
}

static int msm_pm_resume(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);
1133
	struct msm_drm_private *priv = ddev->dev_private;
1134
	int ret;
1135

1136 1137
	if (WARN_ON(!priv->pm_state))
		return -ENOENT;
1138

1139 1140 1141
	ret = drm_atomic_helper_resume(ddev, priv->pm_state);
	if (!ret)
		priv->pm_state = NULL;
1142

1143
	return ret;
1144 1145 1146
}
#endif

1147 1148 1149 1150 1151
#ifdef CONFIG_PM
static int msm_runtime_suspend(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);
	struct msm_drm_private *priv = ddev->dev_private;
1152
	struct msm_mdss *mdss = priv->mdss;
1153 1154 1155

	DBG("");

1156 1157
	if (mdss && mdss->funcs)
		return mdss->funcs->disable(mdss);
1158 1159 1160 1161 1162 1163 1164 1165

	return 0;
}

static int msm_runtime_resume(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);
	struct msm_drm_private *priv = ddev->dev_private;
1166
	struct msm_mdss *mdss = priv->mdss;
1167 1168 1169

	DBG("");

1170 1171
	if (mdss && mdss->funcs)
		return mdss->funcs->enable(mdss);
1172 1173 1174 1175 1176

	return 0;
}
#endif

1177 1178
static const struct dev_pm_ops msm_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume)
1179
	SET_RUNTIME_PM_OPS(msm_runtime_suspend, msm_runtime_resume, NULL)
1180 1181
};

1182 1183 1184 1185
/*
 * Componentized driver support:
 */

1186 1187 1188
/*
 * NOTE: duplication of the same code as exynos or imx (or probably any other).
 * so probably some room for some helpers
1189 1190 1191 1192 1193
 */
static int compare_of(struct device *dev, void *data)
{
	return dev->of_node == data;
}
1194

1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
/*
 * Identify what components need to be added by parsing what remote-endpoints
 * our MDP output ports are connected to. In the case of LVDS on MDP4, there
 * is no external component that we need to add since LVDS is within MDP4
 * itself.
 */
static int add_components_mdp(struct device *mdp_dev,
			      struct component_match **matchptr)
{
	struct device_node *np = mdp_dev->of_node;
	struct device_node *ep_node;
A
Archit Taneja 已提交
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
	struct device *master_dev;

	/*
	 * on MDP4 based platforms, the MDP platform device is the component
	 * master that adds other display interface components to itself.
	 *
	 * on MDP5 based platforms, the MDSS platform device is the component
	 * master that adds MDP5 and other display interface components to
	 * itself.
	 */
	if (of_device_is_compatible(np, "qcom,mdp4"))
		master_dev = mdp_dev;
	else
		master_dev = mdp_dev->parent;
1220 1221 1222 1223 1224 1225 1226 1227

	for_each_endpoint_of_node(np, ep_node) {
		struct device_node *intf;
		struct of_endpoint ep;
		int ret;

		ret = of_graph_parse_endpoint(ep_node, &ep);
		if (ret) {
1228
			DRM_DEV_ERROR(mdp_dev, "unable to parse port endpoint\n");
1229 1230 1231 1232 1233 1234 1235 1236 1237
			of_node_put(ep_node);
			return ret;
		}

		/*
		 * The LCDC/LVDS port on MDP4 is a speacial case where the
		 * remote-endpoint isn't a component that we need to add
		 */
		if (of_device_is_compatible(np, "qcom,mdp4") &&
1238
		    ep.port == 0)
1239 1240 1241 1242 1243 1244 1245 1246
			continue;

		/*
		 * It's okay if some of the ports don't have a remote endpoint
		 * specified. It just means that the port isn't connected to
		 * any external interface.
		 */
		intf = of_graph_get_remote_port_parent(ep_node);
1247
		if (!intf)
1248 1249
			continue;

1250 1251 1252 1253
		if (of_device_is_available(intf))
			drm_of_component_match_add(master_dev, matchptr,
						   compare_of, intf);

1254 1255 1256 1257 1258 1259
		of_node_put(intf);
	}

	return 0;
}

A
Archit Taneja 已提交
1260 1261 1262 1263 1264
static int compare_name_mdp(struct device *dev, void *data)
{
	return (strstr(dev_name(dev), "mdp") != NULL);
}

1265 1266 1267
static int add_display_components(struct device *dev,
				  struct component_match **matchptr)
{
A
Archit Taneja 已提交
1268 1269 1270 1271
	struct device *mdp_dev;
	int ret;

	/*
1272 1273 1274 1275
	 * MDP5/DPU based devices don't have a flat hierarchy. There is a top
	 * level parent: MDSS, and children: MDP5/DPU, DSI, HDMI, eDP etc.
	 * Populate the children devices, find the MDP5/DPU node, and then add
	 * the interfaces to our components list.
A
Archit Taneja 已提交
1276
	 */
1277 1278
	if (of_device_is_compatible(dev->of_node, "qcom,mdss") ||
	    of_device_is_compatible(dev->of_node, "qcom,sdm845-mdss")) {
A
Archit Taneja 已提交
1279 1280
		ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
		if (ret) {
1281
			DRM_DEV_ERROR(dev, "failed to populate children devices\n");
A
Archit Taneja 已提交
1282 1283 1284 1285 1286
			return ret;
		}

		mdp_dev = device_find_child(dev, NULL, compare_name_mdp);
		if (!mdp_dev) {
1287
			DRM_DEV_ERROR(dev, "failed to find MDSS MDP node\n");
A
Archit Taneja 已提交
1288 1289 1290 1291 1292 1293 1294
			of_platform_depopulate(dev);
			return -ENODEV;
		}

		put_device(mdp_dev);

		/* add the MDP component itself */
1295 1296
		drm_of_component_match_add(dev, matchptr, compare_of,
					   mdp_dev->of_node);
A
Archit Taneja 已提交
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
	} else {
		/* MDP4 */
		mdp_dev = dev;
	}

	ret = add_components_mdp(mdp_dev, matchptr);
	if (ret)
		of_platform_depopulate(dev);

	return ret;
1307 1308
}

A
Archit Taneja 已提交
1309 1310 1311 1312 1313 1314
/*
 * We don't know what's the best binding to link the gpu with the drm device.
 * Fow now, we just hunt for all the possible gpus that we support, and add them
 * as components.
 */
static const struct of_device_id msm_gpu_match[] = {
R
Rob Clark 已提交
1315
	{ .compatible = "qcom,adreno" },
A
Archit Taneja 已提交
1316
	{ .compatible = "qcom,adreno-3xx" },
1317
	{ .compatible = "amd,imageon" },
A
Archit Taneja 已提交
1318 1319 1320 1321
	{ .compatible = "qcom,kgsl-3d0" },
	{ },
};

1322 1323 1324
static int add_gpu_components(struct device *dev,
			      struct component_match **matchptr)
{
A
Archit Taneja 已提交
1325 1326 1327 1328 1329 1330
	struct device_node *np;

	np = of_find_matching_node(NULL, msm_gpu_match);
	if (!np)
		return 0;

1331
	drm_of_component_match_add(dev, matchptr, compare_of, np);
A
Archit Taneja 已提交
1332 1333 1334 1335

	of_node_put(np);

	return 0;
1336 1337
}

1338 1339
static int msm_drm_bind(struct device *dev)
{
1340
	return msm_drm_init(dev, &msm_driver);
1341 1342 1343 1344
}

static void msm_drm_unbind(struct device *dev)
{
1345
	msm_drm_uninit(dev);
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355
}

static const struct component_master_ops msm_drm_ops = {
	.bind = msm_drm_bind,
	.unbind = msm_drm_unbind,
};

/*
 * Platform driver:
 */
1356

1357
static int msm_pdev_probe(struct platform_device *pdev)
1358
{
1359
	struct component_match *match = NULL;
1360 1361
	int ret;

1362 1363 1364 1365 1366
	if (get_mdp_ver(pdev)) {
		ret = add_display_components(&pdev->dev, &match);
		if (ret)
			return ret;
	}
1367

1368 1369 1370
	ret = add_gpu_components(&pdev->dev, &match);
	if (ret)
		return ret;
1371

R
Rob Clark 已提交
1372 1373 1374 1375 1376 1377 1378
	/* on all devices that I am aware of, iommu's which can map
	 * any address the cpu can see are used:
	 */
	ret = dma_set_mask_and_coherent(&pdev->dev, ~0);
	if (ret)
		return ret;

1379
	return component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
1380 1381 1382 1383
}

static int msm_pdev_remove(struct platform_device *pdev)
{
1384
	component_master_del(&pdev->dev, &msm_drm_ops);
A
Archit Taneja 已提交
1385
	of_platform_depopulate(&pdev->dev);
1386 1387 1388 1389

	return 0;
}

R
Rob Clark 已提交
1390
static const struct of_device_id dt_match[] = {
1391 1392
	{ .compatible = "qcom,mdp4", .data = (void *)KMS_MDP4 },
	{ .compatible = "qcom,mdss", .data = (void *)KMS_MDP5 },
1393
	{ .compatible = "qcom,sdm845-mdss", .data = (void *)KMS_DPU },
R
Rob Clark 已提交
1394 1395 1396 1397
	{}
};
MODULE_DEVICE_TABLE(of, dt_match);

1398 1399 1400 1401 1402
static struct platform_driver msm_platform_driver = {
	.probe      = msm_pdev_probe,
	.remove     = msm_pdev_remove,
	.driver     = {
		.name   = "msm",
R
Rob Clark 已提交
1403
		.of_match_table = dt_match,
1404 1405 1406 1407 1408 1409
		.pm     = &msm_pm_ops,
	},
};

static int __init msm_drm_register(void)
{
R
Rob Clark 已提交
1410 1411 1412
	if (!modeset)
		return -EINVAL;

1413
	DBG("init");
1414
	msm_mdp_register();
1415
	msm_dpu_register();
1416
	msm_dsi_register();
1417
	msm_edp_register();
A
Arnd Bergmann 已提交
1418
	msm_hdmi_register();
1419
	adreno_register();
1420 1421 1422 1423 1424 1425 1426
	return platform_driver_register(&msm_platform_driver);
}

static void __exit msm_drm_unregister(void)
{
	DBG("fini");
	platform_driver_unregister(&msm_platform_driver);
A
Arnd Bergmann 已提交
1427
	msm_hdmi_unregister();
1428
	adreno_unregister();
1429
	msm_edp_unregister();
1430
	msm_dsi_unregister();
1431
	msm_mdp_unregister();
1432
	msm_dpu_unregister();
1433 1434 1435 1436 1437 1438 1439 1440
}

module_init(msm_drm_register);
module_exit(msm_drm_unregister);

MODULE_AUTHOR("Rob Clark <robdclark@gmail.com");
MODULE_DESCRIPTION("MSM DRM Driver");
MODULE_LICENSE("GPL");