msm_drv.c 32.4 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
2
/*
3
 * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
4 5 6 7
 * Copyright (C) 2013 Red Hat
 * Author: Rob Clark <robdclark@gmail.com>
 */

S
Sam Ravnborg 已提交
8
#include <linux/dma-mapping.h>
9
#include <linux/kthread.h>
S
Sam Ravnborg 已提交
10
#include <linux/uaccess.h>
11
#include <uapi/linux/sched/types.h>
S
Sam Ravnborg 已提交
12 13 14 15 16 17

#include <drm/drm_drv.h>
#include <drm/drm_file.h>
#include <drm/drm_ioctl.h>
#include <drm/drm_irq.h>
#include <drm/drm_prime.h>
18
#include <drm/drm_of.h>
S
Sam Ravnborg 已提交
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"
R
Rob Clark 已提交
25
#include "msm_gpu.h"
R
Rob Clark 已提交
26
#include "msm_kms.h"
J
Jonathan Marek 已提交
27
#include "adreno/adreno_gpu.h"
28

R
Rob Clark 已提交
29 30 31 32
/*
 * MSM driver version:
 * - 1.0.0 - initial interface
 * - 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 35 36
 * - 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 已提交
37 38
 * - 1.4.0 - softpin, MSM_RELOC_BO_DUMP, and GEM_INFO support to set/get
 *           GEM object's debug name
39
 * - 1.5.0 - Add SUBMITQUERY_QUERY ioctl
40
 * - 1.6.0 - Syncobj support
R
Rob Clark 已提交
41 42
 */
#define MSM_VERSION_MAJOR	1
43
#define MSM_VERSION_MINOR	6
R
Rob Clark 已提交
44 45
#define MSM_VERSION_PATCHLEVEL	0

46 47
static const struct drm_mode_config_funcs mode_config_funcs = {
	.fb_create = msm_framebuffer_create,
48
	.output_poll_changed = drm_fb_helper_output_poll_changed,
49
	.atomic_check = drm_atomic_helper_check,
50 51 52 53 54
	.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,
55 56 57 58 59 60 61 62 63 64
};

#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

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

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

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

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

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

87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
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;
}

104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
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;
}

123 124 125 126 127 128 129 130 131 132 133 134 135
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) {
136
		DRM_DEV_ERROR(&pdev->dev, "failed to get memory resource: %s\n", name);
137 138 139 140 141
		return ERR_PTR(-EINVAL);
	}

	size = resource_size(res);

142
	ptr = devm_ioremap(&pdev->dev, res->start, size);
143
	if (!ptr) {
144
		DRM_DEV_ERROR(&pdev->dev, "failed to ioremap: %s\n", name);
145 146 147 148
		return ERR_PTR(-ENOMEM);
	}

	if (reglog)
149
		printk(KERN_DEBUG "IO:region %s %p %08lx\n", dbgname, ptr, size);
150 151 152 153 154 155 156

	return ptr;
}

void msm_writel(u32 data, void __iomem *addr)
{
	if (reglog)
157
		printk(KERN_DEBUG "IO:W %p %08x\n", addr, data);
158 159 160 161 162 163 164
	writel(data, addr);
}

u32 msm_readl(const void __iomem *addr)
{
	u32 val = readl(addr);
	if (reglog)
165
		pr_err("IO:R %p %08x\n", addr, val);
166 167 168
	return val;
}

169 170
struct msm_vblank_work {
	struct work_struct work;
171 172
	int crtc_id;
	bool enable;
173
	struct msm_drm_private *priv;
174 175
};

176
static void vblank_ctrl_worker(struct work_struct *work)
177
{
178 179 180
	struct msm_vblank_work *vbl_work = container_of(work,
						struct msm_vblank_work, work);
	struct msm_drm_private *priv = vbl_work->priv;
181 182
	struct msm_kms *kms = priv->kms;

183 184 185 186
	if (vbl_work->enable)
		kms->funcs->enable_vblank(kms, priv->crtcs[vbl_work->crtc_id]);
	else
		kms->funcs->disable_vblank(kms,	priv->crtcs[vbl_work->crtc_id]);
187

188
	kfree(vbl_work);
189 190 191 192 193
}

static int vblank_ctrl_queue_work(struct msm_drm_private *priv,
					int crtc_id, bool enable)
{
194
	struct msm_vblank_work *vbl_work;
195

196 197
	vbl_work = kzalloc(sizeof(*vbl_work), GFP_ATOMIC);
	if (!vbl_work)
198 199
		return -ENOMEM;

200
	INIT_WORK(&vbl_work->work, vblank_ctrl_worker);
201

202 203 204
	vbl_work->crtc_id = crtc_id;
	vbl_work->enable = enable;
	vbl_work->priv = priv;
205

206
	queue_work(priv->wq, &vbl_work->work);
207 208 209 210

	return 0;
}

211
static int msm_drm_uninit(struct device *dev)
212
{
213 214 215
	struct platform_device *pdev = to_platform_device(dev);
	struct drm_device *ddev = platform_get_drvdata(pdev);
	struct msm_drm_private *priv = ddev->dev_private;
216
	struct msm_kms *kms = priv->kms;
217
	struct msm_mdss *mdss = priv->mdss;
218
	int i;
219

220 221 222 223 224 225 226 227 228 229 230 231
	/*
	 * Shutdown the hw if we're far enough along where things might be on.
	 * If we run this too early, we'll end up panicking in any variety of
	 * places. Since we don't register the drm device until late in
	 * msm_drm_init, drm_dev->registered is used as an indicator that the
	 * shutdown will be successful.
	 */
	if (ddev->registered) {
		drm_dev_unregister(ddev);
		drm_atomic_helper_shutdown(ddev);
	}

232 233 234 235
	/* 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.
	 */
236

237
	flush_workqueue(priv->wq);
238

239
	/* clean up event worker threads */
240 241
	for (i = 0; i < priv->num_crtcs; i++) {
		if (priv->event_thread[i].thread) {
242
			kthread_destroy_worker(&priv->event_thread[i].worker);
243 244 245 246
			priv->event_thread[i].thread = NULL;
		}
	}

R
Rob Clark 已提交
247 248
	msm_gem_shrinker_cleanup(ddev);

249 250
	drm_kms_helper_poll_fini(ddev);

251 252 253
	msm_perf_debugfs_cleanup(priv);
	msm_rd_debugfs_cleanup(priv);

254 255
#ifdef CONFIG_DRM_FBDEV_EMULATION
	if (fbdev && priv->fbdev)
256
		msm_fbdev_free(ddev);
257
#endif
258

259
	drm_mode_config_cleanup(ddev);
260

261 262 263
	pm_runtime_get_sync(dev);
	drm_irq_uninstall(ddev);
	pm_runtime_put_sync(dev);
264

265
	if (kms && kms->funcs)
266 267
		kms->funcs->destroy(kms);

268
	if (priv->vram.paddr) {
269
		unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING;
270
		drm_mm_takedown(&priv->vram.mm);
271
		dma_free_attrs(dev, priv->vram.size, NULL,
272
			       priv->vram.paddr, attrs);
273 274
	}

275
	component_unbind_all(dev, ddev);
276

277 278
	if (mdss && mdss->funcs)
		mdss->funcs->destroy(ddev);
279

280
	ddev->dev_private = NULL;
281
	drm_dev_put(ddev);
282

283
	destroy_workqueue(priv->wq);
284 285 286 287 288
	kfree(priv);

	return 0;
}

289 290
#define KMS_MDP4 4
#define KMS_MDP5 5
291
#define KMS_DPU  3
292

R
Rob Clark 已提交
293 294 295
static int get_mdp_ver(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
296 297

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

300 301
#include <linux/of_address.h>

J
Jonathan Marek 已提交
302 303 304 305 306 307 308 309
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);
}

310
static int msm_init_vram(struct drm_device *dev)
311
{
312
	struct msm_drm_private *priv = dev->dev_private;
313
	struct device_node *node;
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
	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);
338
		of_node_put(node);
339 340 341
		if (ret)
			return ret;
		size = r.end - r.start;
342
		DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
343

344 345 346 347
		/* 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 已提交
348
	} else if (!msm_use_mmu(dev)) {
349 350 351 352 353
		DRM_INFO("using %s VRAM carveout\n", vram);
		size = memparse(vram, NULL);
	}

	if (size) {
354
		unsigned long attrs = 0;
355 356 357 358 359
		void *p;

		priv->vram.size = size;

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

362 363
		attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
		attrs |= DMA_ATTR_WRITE_COMBINE;
364 365 366 367 368

		/* note that for no-kernel-mapping, the vaddr returned
		 * is bogus, but non-null if allocation succeeded:
		 */
		p = dma_alloc_attrs(dev->dev, size,
369
				&priv->vram.paddr, GFP_KERNEL, attrs);
370
		if (!p) {
371
			DRM_DEV_ERROR(dev->dev, "failed to allocate VRAM\n");
372
			priv->vram.paddr = 0;
373
			return -ENOMEM;
374 375
		}

376
		DRM_DEV_INFO(dev->dev, "VRAM: %08x->%08x\n",
377 378 379 380
				(uint32_t)priv->vram.paddr,
				(uint32_t)(priv->vram.paddr + size));
	}

381
	return ret;
382 383
}

384
static int msm_drm_init(struct device *dev, struct drm_driver *drv)
385
{
386 387
	struct platform_device *pdev = to_platform_device(dev);
	struct drm_device *ddev;
388 389
	struct msm_drm_private *priv;
	struct msm_kms *kms;
390
	struct msm_mdss *mdss;
391 392
	int ret, i;
	struct sched_param param;
393

394
	ddev = drm_dev_alloc(drv, dev);
395
	if (IS_ERR(ddev)) {
396
		DRM_DEV_ERROR(dev, "failed to allocate drm_device\n");
397
		return PTR_ERR(ddev);
398 399 400 401
	}

	platform_set_drvdata(pdev, ddev);

402 403
	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
	if (!priv) {
404
		ret = -ENOMEM;
405
		goto err_put_drm_dev;
406 407
	}

408
	ddev->dev_private = priv;
R
Rob Clark 已提交
409
	priv->dev = ddev;
410

411 412 413 414 415 416 417 418 419 420 421
	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;
	}
422 423
	if (ret)
		goto err_free_priv;
424

425 426
	mdss = priv->mdss;

427 428
	priv->wq = alloc_ordered_workqueue("msm", 0);

429 430 431
	INIT_WORK(&priv->free_work, msm_gem_free_work);
	init_llist_head(&priv->free_list);

432 433
	INIT_LIST_HEAD(&priv->inactive_list);

434
	drm_mode_config_init(ddev);
435 436

	/* Bind all our sub-components: */
437
	ret = component_bind_all(dev, ddev);
438 439
	if (ret)
		goto err_destroy_mdss;
440

441
	ret = msm_init_vram(ddev);
442
	if (ret)
443
		goto err_msm_uninit;
444

445 446 447
	if (!dev->dma_parms) {
		dev->dma_parms = devm_kzalloc(dev, sizeof(*dev->dma_parms),
					      GFP_KERNEL);
448 449 450 451
		if (!dev->dma_parms) {
			ret = -ENOMEM;
			goto err_msm_uninit;
		}
452 453 454
	}
	dma_set_max_seg_size(dev, DMA_BIT_MASK(32));

R
Rob Clark 已提交
455 456
	msm_gem_shrinker_init(ddev);

R
Rob Clark 已提交
457
	switch (get_mdp_ver(pdev)) {
458
	case KMS_MDP4:
459
		kms = mdp4_kms_init(ddev);
460
		priv->kms = kms;
R
Rob Clark 已提交
461
		break;
462
	case KMS_MDP5:
463
		kms = mdp5_kms_init(ddev);
R
Rob Clark 已提交
464
		break;
465 466 467 468
	case KMS_DPU:
		kms = dpu_kms_init(ddev);
		priv->kms = kms;
		break;
R
Rob Clark 已提交
469
	default:
470 471 472
		/* valid only for the dummy headless case, where of_node=NULL */
		WARN_ON(dev->of_node);
		kms = NULL;
R
Rob Clark 已提交
473 474 475
		break;
	}

476
	if (IS_ERR(kms)) {
477
		DRM_DEV_ERROR(dev, "failed to load kms\n");
T
Thomas Meyer 已提交
478
		ret = PTR_ERR(kms);
479
		priv->kms = NULL;
480
		goto err_msm_uninit;
481 482
	}

483 484 485
	/* Enable normalization of plane zpos */
	ddev->mode_config.normalize_zpos = true;

486
	if (kms) {
R
Rob Clark 已提交
487
		kms->dev = ddev;
488 489
		ret = kms->funcs->hw_init(kms);
		if (ret) {
490
			DRM_DEV_ERROR(dev, "kms hw init failed: %d\n", ret);
491
			goto err_msm_uninit;
492 493 494
		}
	}

495
	ddev->mode_config.funcs = &mode_config_funcs;
496
	ddev->mode_config.helper_private = &mode_config_helper_funcs;
497

498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
	/**
	 * 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 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);
513
		if (IS_ERR(priv->event_thread[i].thread)) {
514
			DRM_DEV_ERROR(dev, "failed to create crtc_event kthread\n");
515 516 517 518
			priv->event_thread[i].thread = NULL;
			goto err_msm_uninit;
		}

519
		ret = sched_setscheduler(priv->event_thread[i].thread,
520
					 SCHED_FIFO, &param);
521
		if (ret)
522 523
			dev_warn(dev, "event_thread set priority failed:%d\n",
				 ret);
524 525
	}

526
	ret = drm_vblank_init(ddev, priv->num_crtcs);
527
	if (ret < 0) {
528
		DRM_DEV_ERROR(dev, "failed to initialize vblank\n");
529
		goto err_msm_uninit;
530 531
	}

532 533 534 535 536
	if (kms) {
		pm_runtime_get_sync(dev);
		ret = drm_irq_install(ddev, kms->irq);
		pm_runtime_put_sync(dev);
		if (ret < 0) {
537
			DRM_DEV_ERROR(dev, "failed to install IRQ handler\n");
538
			goto err_msm_uninit;
539
		}
540 541
	}

542 543
	ret = drm_dev_register(ddev, 0);
	if (ret)
544
		goto err_msm_uninit;
545 546

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

548
#ifdef CONFIG_DRM_FBDEV_EMULATION
549
	if (kms && fbdev)
550
		priv->fbdev = msm_fbdev_init(ddev);
551 552
#endif

553
	ret = msm_debugfs_late_init(ddev);
R
Rob Clark 已提交
554
	if (ret)
555
		goto err_msm_uninit;
R
Rob Clark 已提交
556

557
	drm_kms_helper_poll_init(ddev);
558 559 560

	return 0;

561
err_msm_uninit:
562
	msm_drm_uninit(dev);
563
	return ret;
564 565 566 567 568
err_destroy_mdss:
	if (mdss && mdss->funcs)
		mdss->funcs->destroy(ddev);
err_free_priv:
	kfree(priv);
569 570
err_put_drm_dev:
	drm_dev_put(ddev);
571
	return ret;
572 573
}

574 575 576 577
/*
 * DRM operations:
 */

R
Rob Clark 已提交
578 579
static void load_gpu(struct drm_device *dev)
{
580
	static DEFINE_MUTEX(init_lock);
R
Rob Clark 已提交
581 582
	struct msm_drm_private *priv = dev->dev_private;

583 584
	mutex_lock(&init_lock);

585 586
	if (!priv->gpu)
		priv->gpu = adreno_load_gpu(dev);
R
Rob Clark 已提交
587

588
	mutex_unlock(&init_lock);
R
Rob Clark 已提交
589 590
}

591
static int context_init(struct drm_device *dev, struct drm_file *file)
R
Rob Clark 已提交
592
{
593
	struct msm_drm_private *priv = dev->dev_private;
R
Rob Clark 已提交
594 595 596 597 598 599
	struct msm_file_private *ctx;

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

600
	msm_submitqueue_init(dev, ctx);
601

602
	ctx->aspace = priv->gpu ? priv->gpu->aspace : NULL;
R
Rob Clark 已提交
603 604 605 606 607
	file->driver_priv = ctx;

	return 0;
}

608 609 610 611 612 613 614
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);

615
	return context_init(dev, file);
616 617 618 619 620 621 622 623
}

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

D
Daniel Vetter 已提交
624
static void msm_postclose(struct drm_device *dev, struct drm_file *file)
625 626
{
	struct msm_drm_private *priv = dev->dev_private;
R
Rob Clark 已提交
627 628 629 630 631 632 633
	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);

634
	context_close(ctx);
635 636
}

D
Daniel Vetter 已提交
637
static irqreturn_t msm_irq(int irq, void *arg)
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
{
	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);
659 660 661 662 663

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

	return 0;
664 665 666 667 668 669 670 671 672 673
}

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);
}

674
int msm_crtc_enable_vblank(struct drm_crtc *crtc)
675
{
676 677
	struct drm_device *dev = crtc->dev;
	unsigned int pipe = crtc->index;
678 679 680 681
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	if (!kms)
		return -ENXIO;
682 683
	DBG("dev=%p, crtc=%u", dev, pipe);
	return vblank_ctrl_queue_work(priv, pipe, true);
684 685
}

686
void msm_crtc_disable_vblank(struct drm_crtc *crtc)
687
{
688 689
	struct drm_device *dev = crtc->dev;
	unsigned int pipe = crtc->index;
690 691 692 693
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	if (!kms)
		return;
694 695
	DBG("dev=%p, crtc=%u", dev, pipe);
	vblank_ctrl_queue_work(priv, pipe, false);
696 697
}

R
Rob Clark 已提交
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
/*
 * 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 已提交
727 728 729 730 731 732

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

R
Rob Clark 已提交
733
	return msm_gem_new_handle(dev, file, args->size,
734
			args->flags, &args->handle, NULL);
R
Rob Clark 已提交
735 736
}

R
Rob Clark 已提交
737 738 739 740
static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
{
	return ktime_set(timeout.tv_sec, timeout.tv_nsec);
}
R
Rob Clark 已提交
741 742 743 744 745 746

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 已提交
747
	ktime_t timeout = to_ktime(args->timeout);
R
Rob Clark 已提交
748 749
	int ret;

R
Rob Clark 已提交
750 751 752 753 754
	if (args->op & ~MSM_PREP_FLAGS) {
		DRM_ERROR("invalid op: %08x\n", args->op);
		return -EINVAL;
	}

755
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
756 757 758
	if (!obj)
		return -ENOENT;

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

761
	drm_gem_object_put(obj);
R
Rob Clark 已提交
762 763 764 765 766 767 768 769 770 771 772

	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;

773
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
774 775 776 777 778
	if (!obj)
		return -ENOENT;

	ret = msm_gem_cpu_fini(obj);

779
	drm_gem_object_put(obj);
R
Rob Clark 已提交
780 781 782 783

	return ret;
}

784 785 786 787 788 789 790 791
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;

792 793 794 795
	/*
	 * Don't pin the memory here - just get an address so that userspace can
	 * be productive
	 */
796
	return msm_gem_get_iova(obj, priv->gpu->aspace, iova);
797 798
}

R
Rob Clark 已提交
799 800 801 802 803
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;
804 805
	struct msm_gem_object *msm_obj;
	int i, ret = 0;
R
Rob Clark 已提交
806

R
Rob Clark 已提交
807
	if (args->pad)
R
Rob Clark 已提交
808 809
		return -EINVAL;

R
Rob Clark 已提交
810 811 812 813 814 815 816
	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;
817 818 819
	case MSM_INFO_SET_NAME:
	case MSM_INFO_GET_NAME:
		break;
R
Rob Clark 已提交
820
	default:
R
Rob Clark 已提交
821
		return -EINVAL;
R
Rob Clark 已提交
822
	}
R
Rob Clark 已提交
823

824
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
825 826 827
	if (!obj)
		return -ENOENT;

828
	msm_obj = to_msm_bo(obj);
829

R
Rob Clark 已提交
830 831 832 833 834 835 836
	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;
837 838 839 840 841 842
	case MSM_INFO_SET_NAME:
		/* length check should leave room for terminating null: */
		if (args->len >= sizeof(msm_obj->name)) {
			ret = -EINVAL;
			break;
		}
843
		if (copy_from_user(msm_obj->name, u64_to_user_ptr(args->value),
844 845
				   args->len)) {
			msm_obj->name[0] = '\0';
846
			ret = -EFAULT;
847 848
			break;
		}
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863
		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) {
864 865 866
			if (copy_to_user(u64_to_user_ptr(args->value),
					 msm_obj->name, args->len))
				ret = -EFAULT;
867 868
		}
		break;
869
	}
R
Rob Clark 已提交
870

871
	drm_gem_object_put(obj);
R
Rob Clark 已提交
872 873 874 875 876 877 878

	return ret;
}

static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
		struct drm_file *file)
{
R
Rob Clark 已提交
879
	struct msm_drm_private *priv = dev->dev_private;
R
Rob Clark 已提交
880
	struct drm_msm_wait_fence *args = data;
R
Rob Clark 已提交
881
	ktime_t timeout = to_ktime(args->timeout);
882 883 884
	struct msm_gpu_submitqueue *queue;
	struct msm_gpu *gpu = priv->gpu;
	int ret;
R
Rob Clark 已提交
885 886 887 888 889 890

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

891
	if (!gpu)
R
Rob Clark 已提交
892 893
		return 0;

894 895 896 897 898 899 900 901 902
	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 已提交
903 904
}

R
Rob Clark 已提交
905 906 907 908 909 910 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
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;
	}

936
	drm_gem_object_put_locked(obj);
R
Rob Clark 已提交
937 938 939 940 941 942

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

943 944 945 946 947 948 949 950 951

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;

952
	return msm_submitqueue_create(dev, file->driver_priv, args->prio,
953 954 955
		args->flags, &args->id);
}

956 957 958 959 960
static int msm_ioctl_submitqueue_query(struct drm_device *dev, void *data,
		struct drm_file *file)
{
	return msm_submitqueue_query(dev, file->driver_priv, data);
}
961 962 963 964 965 966 967 968 969

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 已提交
970
static const struct drm_ioctl_desc msm_ioctls[] = {
971 972 973 974 975 976 977 978 979 980 981
	DRM_IOCTL_DEF_DRV(MSM_GET_PARAM,    msm_ioctl_get_param,    DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_NEW,      msm_ioctl_gem_new,      DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_INFO,     msm_ioctl_gem_info,     DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_SUBMIT,   msm_ioctl_gem_submit,   DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_WAIT_FENCE,   msm_ioctl_wait_fence,   DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE,  msm_ioctl_gem_madvise,  DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_NEW,   msm_ioctl_submitqueue_new,   DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_CLOSE, msm_ioctl_submitqueue_close, DRM_RENDER_ALLOW),
	DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_QUERY, msm_ioctl_submitqueue_query, DRM_RENDER_ALLOW),
R
Rob Clark 已提交
982 983
};

984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
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 = {
1003
	.driver_features    = DRIVER_GEM |
R
Rob Clark 已提交
1004
				DRIVER_RENDER |
1005
				DRIVER_ATOMIC |
1006 1007
				DRIVER_MODESET |
				DRIVER_SYNCOBJ,
R
Rob Clark 已提交
1008
	.open               = msm_open,
D
Daniel Vetter 已提交
1009
	.postclose           = msm_postclose,
1010
	.lastclose          = drm_fb_helper_lastclose,
1011 1012 1013 1014
	.irq_handler        = msm_irq,
	.irq_preinstall     = msm_irq_preinstall,
	.irq_postinstall    = msm_irq_postinstall,
	.irq_uninstall      = msm_irq_uninstall,
1015
	.gem_free_object_unlocked = msm_gem_free_object,
1016 1017 1018
	.gem_vm_ops         = &vm_ops,
	.dumb_create        = msm_gem_dumb_create,
	.dumb_map_offset    = msm_gem_dumb_map_offset,
R
Rob Clark 已提交
1019 1020 1021 1022 1023 1024 1025 1026
	.prime_handle_to_fd = drm_gem_prime_handle_to_fd,
	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
	.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,
1027
	.gem_prime_mmap     = msm_gem_prime_mmap,
1028 1029 1030
#ifdef CONFIG_DEBUG_FS
	.debugfs_init       = msm_debugfs_init,
#endif
R
Rob Clark 已提交
1031
	.ioctls             = msm_ioctls,
1032
	.num_ioctls         = ARRAY_SIZE(msm_ioctls),
1033 1034 1035 1036
	.fops               = &fops,
	.name               = "msm",
	.desc               = "MSM Snapdragon DRM",
	.date               = "20130625",
R
Rob Clark 已提交
1037 1038 1039
	.major              = MSM_VERSION_MAJOR,
	.minor              = MSM_VERSION_MINOR,
	.patchlevel         = MSM_VERSION_PATCHLEVEL,
1040 1041
};

1042
static int __maybe_unused msm_runtime_suspend(struct device *dev)
1043 1044
{
	struct drm_device *ddev = dev_get_drvdata(dev);
1045
	struct msm_drm_private *priv = ddev->dev_private;
1046
	struct msm_mdss *mdss = priv->mdss;
1047

1048
	DBG("");
1049

1050 1051
	if (mdss && mdss->funcs)
		return mdss->funcs->disable(mdss);
1052

1053 1054 1055
	return 0;
}

1056
static int __maybe_unused msm_runtime_resume(struct device *dev)
1057 1058
{
	struct drm_device *ddev = dev_get_drvdata(dev);
1059
	struct msm_drm_private *priv = ddev->dev_private;
1060
	struct msm_mdss *mdss = priv->mdss;
1061

1062
	DBG("");
1063

1064 1065
	if (mdss && mdss->funcs)
		return mdss->funcs->enable(mdss);
1066

1067
	return 0;
1068 1069
}

1070
static int __maybe_unused msm_pm_suspend(struct device *dev)
1071 1072
{

1073 1074
	if (pm_runtime_suspended(dev))
		return 0;
1075

1076 1077
	return msm_runtime_suspend(dev);
}
1078

1079 1080 1081 1082 1083 1084
static int __maybe_unused msm_pm_resume(struct device *dev)
{
	if (pm_runtime_suspended(dev))
		return 0;

	return msm_runtime_resume(dev);
1085 1086
}

1087
static int __maybe_unused msm_pm_prepare(struct device *dev)
1088 1089 1090
{
	struct drm_device *ddev = dev_get_drvdata(dev);

1091 1092
	return drm_mode_config_helper_suspend(ddev);
}
1093

1094 1095 1096
static void __maybe_unused msm_pm_complete(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);
1097

1098
	drm_mode_config_helper_resume(ddev);
1099 1100
}

1101 1102
static const struct dev_pm_ops msm_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume)
1103
	SET_RUNTIME_PM_OPS(msm_runtime_suspend, msm_runtime_resume, NULL)
1104 1105
	.prepare = msm_pm_prepare,
	.complete = msm_pm_complete,
1106 1107
};

1108 1109 1110 1111
/*
 * Componentized driver support:
 */

1112 1113 1114
/*
 * NOTE: duplication of the same code as exynos or imx (or probably any other).
 * so probably some room for some helpers
1115 1116 1117 1118 1119
 */
static int compare_of(struct device *dev, void *data)
{
	return dev->of_node == data;
}
1120

1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
/*
 * 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 已提交
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
	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;
1146 1147 1148 1149 1150 1151 1152 1153

	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) {
1154
			DRM_DEV_ERROR(mdp_dev, "unable to parse port endpoint\n");
1155 1156 1157 1158 1159 1160 1161 1162 1163
			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") &&
1164
		    ep.port == 0)
1165 1166 1167 1168 1169 1170 1171 1172
			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);
1173
		if (!intf)
1174 1175
			continue;

1176 1177 1178 1179
		if (of_device_is_available(intf))
			drm_of_component_match_add(master_dev, matchptr,
						   compare_of, intf);

1180 1181 1182 1183 1184 1185
		of_node_put(intf);
	}

	return 0;
}

A
Archit Taneja 已提交
1186 1187 1188 1189 1190
static int compare_name_mdp(struct device *dev, void *data)
{
	return (strstr(dev_name(dev), "mdp") != NULL);
}

1191 1192 1193
static int add_display_components(struct device *dev,
				  struct component_match **matchptr)
{
A
Archit Taneja 已提交
1194 1195 1196 1197
	struct device *mdp_dev;
	int ret;

	/*
1198 1199 1200 1201
	 * 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 已提交
1202
	 */
1203
	if (of_device_is_compatible(dev->of_node, "qcom,mdss") ||
1204 1205
	    of_device_is_compatible(dev->of_node, "qcom,sdm845-mdss") ||
	    of_device_is_compatible(dev->of_node, "qcom,sc7180-mdss")) {
A
Archit Taneja 已提交
1206 1207
		ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
		if (ret) {
1208
			DRM_DEV_ERROR(dev, "failed to populate children devices\n");
A
Archit Taneja 已提交
1209 1210 1211 1212 1213
			return ret;
		}

		mdp_dev = device_find_child(dev, NULL, compare_name_mdp);
		if (!mdp_dev) {
1214
			DRM_DEV_ERROR(dev, "failed to find MDSS MDP node\n");
A
Archit Taneja 已提交
1215 1216 1217 1218 1219 1220 1221
			of_platform_depopulate(dev);
			return -ENODEV;
		}

		put_device(mdp_dev);

		/* add the MDP component itself */
1222 1223
		drm_of_component_match_add(dev, matchptr, compare_of,
					   mdp_dev->of_node);
A
Archit Taneja 已提交
1224 1225 1226 1227 1228 1229 1230 1231 1232 1233
	} else {
		/* MDP4 */
		mdp_dev = dev;
	}

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

	return ret;
1234 1235
}

A
Archit Taneja 已提交
1236 1237 1238 1239 1240 1241
/*
 * 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 已提交
1242
	{ .compatible = "qcom,adreno" },
A
Archit Taneja 已提交
1243
	{ .compatible = "qcom,adreno-3xx" },
1244
	{ .compatible = "amd,imageon" },
A
Archit Taneja 已提交
1245 1246 1247 1248
	{ .compatible = "qcom,kgsl-3d0" },
	{ },
};

1249 1250 1251
static int add_gpu_components(struct device *dev,
			      struct component_match **matchptr)
{
A
Archit Taneja 已提交
1252 1253 1254 1255 1256 1257
	struct device_node *np;

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

J
Jeffrey Hugo 已提交
1258 1259
	if (of_device_is_available(np))
		drm_of_component_match_add(dev, matchptr, compare_of, np);
A
Archit Taneja 已提交
1260 1261 1262 1263

	of_node_put(np);

	return 0;
1264 1265
}

1266 1267
static int msm_drm_bind(struct device *dev)
{
1268
	return msm_drm_init(dev, &msm_driver);
1269 1270 1271 1272
}

static void msm_drm_unbind(struct device *dev)
{
1273
	msm_drm_uninit(dev);
1274 1275 1276 1277 1278 1279 1280 1281 1282 1283
}

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

/*
 * Platform driver:
 */
1284

1285
static int msm_pdev_probe(struct platform_device *pdev)
1286
{
1287
	struct component_match *match = NULL;
1288 1289
	int ret;

1290 1291 1292 1293 1294
	if (get_mdp_ver(pdev)) {
		ret = add_display_components(&pdev->dev, &match);
		if (ret)
			return ret;
	}
1295

1296 1297
	ret = add_gpu_components(&pdev->dev, &match);
	if (ret)
1298
		goto fail;
1299

R
Rob Clark 已提交
1300 1301 1302 1303 1304
	/* 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)
1305 1306 1307 1308 1309
		goto fail;

	ret = component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
	if (ret)
		goto fail;
R
Rob Clark 已提交
1310

1311 1312 1313 1314 1315
	return 0;

fail:
	of_platform_depopulate(&pdev->dev);
	return ret;
1316 1317 1318 1319
}

static int msm_pdev_remove(struct platform_device *pdev)
{
1320
	component_master_del(&pdev->dev, &msm_drm_ops);
A
Archit Taneja 已提交
1321
	of_platform_depopulate(&pdev->dev);
1322 1323 1324 1325

	return 0;
}

R
Rob Clark 已提交
1326
static const struct of_device_id dt_match[] = {
1327 1328
	{ .compatible = "qcom,mdp4", .data = (void *)KMS_MDP4 },
	{ .compatible = "qcom,mdss", .data = (void *)KMS_MDP5 },
1329
	{ .compatible = "qcom,sdm845-mdss", .data = (void *)KMS_DPU },
1330
	{ .compatible = "qcom,sc7180-mdss", .data = (void *)KMS_DPU },
R
Rob Clark 已提交
1331 1332 1333 1334
	{}
};
MODULE_DEVICE_TABLE(of, dt_match);

1335 1336 1337 1338 1339
static struct platform_driver msm_platform_driver = {
	.probe      = msm_pdev_probe,
	.remove     = msm_pdev_remove,
	.driver     = {
		.name   = "msm",
R
Rob Clark 已提交
1340
		.of_match_table = dt_match,
1341 1342 1343 1344 1345 1346
		.pm     = &msm_pm_ops,
	},
};

static int __init msm_drm_register(void)
{
R
Rob Clark 已提交
1347 1348 1349
	if (!modeset)
		return -EINVAL;

1350
	DBG("init");
1351
	msm_mdp_register();
1352
	msm_dpu_register();
1353
	msm_dsi_register();
1354
	msm_edp_register();
A
Arnd Bergmann 已提交
1355
	msm_hdmi_register();
1356
	adreno_register();
1357 1358 1359 1360 1361 1362 1363
	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 已提交
1364
	msm_hdmi_unregister();
1365
	adreno_unregister();
1366
	msm_edp_unregister();
1367
	msm_dsi_unregister();
1368
	msm_mdp_unregister();
1369
	msm_dpu_unregister();
1370 1371 1372 1373 1374 1375 1376 1377
}

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");