msm_drv.c 26.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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/>.
 */

18 19
#include <drm/drm_of.h>

20
#include "msm_drv.h"
21
#include "msm_debugfs.h"
22
#include "msm_fence.h"
R
Rob Clark 已提交
23
#include "msm_gpu.h"
R
Rob Clark 已提交
24
#include "msm_kms.h"
25

R
Rob Clark 已提交
26 27 28 29 30

/*
 * MSM driver version:
 * - 1.0.0 - initial interface
 * - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers
31
 * - 1.2.0 - adds explicit fence support for submit ioctl
R
Rob Clark 已提交
32 33
 */
#define MSM_VERSION_MAJOR	1
34
#define MSM_VERSION_MINOR	2
R
Rob Clark 已提交
35 36
#define MSM_VERSION_PATCHLEVEL	0

37 38 39 40 41 42 43 44 45 46
static void msm_fb_output_poll_changed(struct drm_device *dev)
{
	struct msm_drm_private *priv = dev->dev_private;
	if (priv->fbdev)
		drm_fb_helper_hotplug_event(priv->fbdev);
}

static const struct drm_mode_config_funcs mode_config_funcs = {
	.fb_create = msm_framebuffer_create,
	.output_poll_changed = msm_fb_output_poll_changed,
47
	.atomic_check = msm_atomic_check,
R
Rob Clark 已提交
48
	.atomic_commit = msm_atomic_commit,
R
Rob Clark 已提交
49 50 51
	.atomic_state_alloc = msm_atomic_state_alloc,
	.atomic_state_clear = msm_atomic_state_clear,
	.atomic_state_free = msm_atomic_state_free,
52 53
};

54 55
int msm_register_address_space(struct drm_device *dev,
		struct msm_gem_address_space *aspace)
56 57
{
	struct msm_drm_private *priv = dev->dev_private;
58
	int idx = priv->num_aspaces++;
59

60
	if (WARN_ON(idx >= ARRAY_SIZE(priv->aspace)))
61 62
		return -EINVAL;

63
	priv->aspace[idx] = aspace;
64 65 66 67 68 69 70 71 72 73 74 75

	return idx;
}

#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

76
#ifdef CONFIG_DRM_FBDEV_EMULATION
77 78 79 80 81
static bool fbdev = true;
MODULE_PARM_DESC(fbdev, "Enable fbdev compat layer");
module_param(fbdev, bool, 0600);
#endif

82
static char *vram = "16m";
R
Rob Clark 已提交
83
MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)");
84 85
module_param(vram, charp, 0);

86 87 88 89
bool dumpstate = false;
MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors");
module_param(dumpstate, bool, 0600);

90 91 92 93
/*
 * Util/helpers:
 */

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
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) {
		dev_err(&pdev->dev, "failed to get memory resource: %s\n", name);
		return ERR_PTR(-EINVAL);
	}

	size = resource_size(res);

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

	if (reglog)
120
		printk(KERN_DEBUG "IO:region %s %p %08lx\n", dbgname, ptr, size);
121 122 123 124 125 126 127

	return ptr;
}

void msm_writel(u32 data, void __iomem *addr)
{
	if (reglog)
128
		printk(KERN_DEBUG "IO:W %p %08x\n", addr, data);
129 130 131 132 133 134 135
	writel(data, addr);
}

u32 msm_readl(const void __iomem *addr)
{
	u32 val = readl(addr);
	if (reglog)
136
		printk(KERN_ERR "IO:R %p %08x\n", addr, val);
137 138 139
	return val;
}

140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
struct vblank_event {
	struct list_head node;
	int crtc_id;
	bool enable;
};

static void vblank_ctrl_worker(struct work_struct *work)
{
	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);

	queue_work(priv->wq, &vbl_ctrl->work);

	return 0;
}

199
static int msm_drm_uninit(struct device *dev)
200
{
201 202 203
	struct platform_device *pdev = to_platform_device(dev);
	struct drm_device *ddev = platform_get_drvdata(pdev);
	struct msm_drm_private *priv = ddev->dev_private;
204
	struct msm_kms *kms = priv->kms;
R
Rob Clark 已提交
205
	struct msm_gpu *gpu = priv->gpu;
206 207 208 209 210 211 212 213 214 215 216 217
	struct msm_vblank_ctrl *vbl_ctrl = &priv->vblank_ctrl;
	struct vblank_event *vbl_ev, *tmp;

	/* 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.
	 */
	cancel_work_sync(&vbl_ctrl->work);
	list_for_each_entry_safe(vbl_ev, tmp, &vbl_ctrl->event_list, node) {
		list_del(&vbl_ev->node);
		kfree(vbl_ev);
	}
218

R
Rob Clark 已提交
219 220
	msm_gem_shrinker_cleanup(ddev);

221 222 223
	drm_kms_helper_poll_fini(ddev);

	drm_dev_unregister(ddev);
224

225 226
#ifdef CONFIG_DRM_FBDEV_EMULATION
	if (fbdev && priv->fbdev)
227
		msm_fbdev_free(ddev);
228
#endif
229
	drm_mode_config_cleanup(ddev);
230

231 232 233
	pm_runtime_get_sync(dev);
	drm_irq_uninstall(ddev);
	pm_runtime_put_sync(dev);
234 235 236 237

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

R
Rob Clark 已提交
238 239 240
	flush_workqueue(priv->atomic_wq);
	destroy_workqueue(priv->atomic_wq);

241
	if (kms && kms->funcs)
242 243
		kms->funcs->destroy(kms);

R
Rob Clark 已提交
244
	if (gpu) {
245
		mutex_lock(&ddev->struct_mutex);
R
Rob Clark 已提交
246
		gpu->funcs->pm_suspend(gpu);
247
		mutex_unlock(&ddev->struct_mutex);
248
		gpu->funcs->destroy(gpu);
R
Rob Clark 已提交
249
	}
250

251
	if (priv->vram.paddr) {
252
		unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING;
253
		drm_mm_takedown(&priv->vram.mm);
254
		dma_free_attrs(dev, priv->vram.size, NULL,
255
			       priv->vram.paddr, attrs);
256 257
	}

258
	component_unbind_all(dev, ddev);
259

260 261
	msm_mdss_destroy(ddev);

262 263
	ddev->dev_private = NULL;
	drm_dev_unref(ddev);
264 265 266 267 268 269

	kfree(priv);

	return 0;
}

R
Rob Clark 已提交
270 271 272
static int get_mdp_ver(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
273 274

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

277 278
#include <linux/of_address.h>

279
static int msm_init_vram(struct drm_device *dev)
280
{
281
	struct msm_drm_private *priv = dev->dev_private;
282
	struct device_node *node;
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
	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);
307
		of_node_put(node);
308 309 310
		if (ret)
			return ret;
		size = r.end - r.start;
311
		DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start);
312

313 314 315 316 317
		/* 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:
		 */
	} else if (!iommu_present(&platform_bus_type)) {
318 319 320 321 322
		DRM_INFO("using %s VRAM carveout\n", vram);
		size = memparse(vram, NULL);
	}

	if (size) {
323
		unsigned long attrs = 0;
324 325 326 327 328 329
		void *p;

		priv->vram.size = size;

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

330 331
		attrs |= DMA_ATTR_NO_KERNEL_MAPPING;
		attrs |= DMA_ATTR_WRITE_COMBINE;
332 333 334 335 336

		/* note that for no-kernel-mapping, the vaddr returned
		 * is bogus, but non-null if allocation succeeded:
		 */
		p = dma_alloc_attrs(dev->dev, size,
337
				&priv->vram.paddr, GFP_KERNEL, attrs);
338 339 340
		if (!p) {
			dev_err(dev->dev, "failed to allocate VRAM\n");
			priv->vram.paddr = 0;
341
			return -ENOMEM;
342 343 344 345 346 347 348
		}

		dev_info(dev->dev, "VRAM: %08x->%08x\n",
				(uint32_t)priv->vram.paddr,
				(uint32_t)(priv->vram.paddr + size));
	}

349
	return ret;
350 351
}

352
static int msm_drm_init(struct device *dev, struct drm_driver *drv)
353
{
354 355
	struct platform_device *pdev = to_platform_device(dev);
	struct drm_device *ddev;
356 357 358 359
	struct msm_drm_private *priv;
	struct msm_kms *kms;
	int ret;

360
	ddev = drm_dev_alloc(drv, dev);
361
	if (IS_ERR(ddev)) {
362
		dev_err(dev, "failed to allocate drm_device\n");
363
		return PTR_ERR(ddev);
364 365 366 367 368
	}

	platform_set_drvdata(pdev, ddev);
	ddev->platformdev = pdev;

369 370
	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
	if (!priv) {
371
		drm_dev_unref(ddev);
372 373 374
		return -ENOMEM;
	}

375
	ddev->dev_private = priv;
R
Rob Clark 已提交
376
	priv->dev = ddev;
377

378 379 380 381 382 383 384
	ret = msm_mdss_init(ddev);
	if (ret) {
		kfree(priv);
		drm_dev_unref(ddev);
		return ret;
	}

385
	priv->wq = alloc_ordered_workqueue("msm", 0);
R
Rob Clark 已提交
386
	priv->atomic_wq = alloc_ordered_workqueue("msm:atomic", 0);
387 388 389
	init_waitqueue_head(&priv->pending_crtcs_event);

	INIT_LIST_HEAD(&priv->inactive_list);
390 391 392
	INIT_LIST_HEAD(&priv->vblank_ctrl.event_list);
	INIT_WORK(&priv->vblank_ctrl.work, vblank_ctrl_worker);
	spin_lock_init(&priv->vblank_ctrl.lock);
393

394
	drm_mode_config_init(ddev);
395 396

	/* Bind all our sub-components: */
397 398
	ret = component_bind_all(dev, ddev);
	if (ret) {
399
		msm_mdss_destroy(ddev);
400 401
		kfree(priv);
		drm_dev_unref(ddev);
402
		return ret;
403
	}
404

405
	ret = msm_init_vram(ddev);
406 407 408
	if (ret)
		goto fail;

R
Rob Clark 已提交
409 410
	msm_gem_shrinker_init(ddev);

R
Rob Clark 已提交
411 412
	switch (get_mdp_ver(pdev)) {
	case 4:
413
		kms = mdp4_kms_init(ddev);
414
		priv->kms = kms;
R
Rob Clark 已提交
415 416
		break;
	case 5:
417
		kms = mdp5_kms_init(ddev);
R
Rob Clark 已提交
418 419 420 421 422 423
		break;
	default:
		kms = ERR_PTR(-ENODEV);
		break;
	}

424 425 426 427 428 429 430
	if (IS_ERR(kms)) {
		/*
		 * NOTE: once we have GPU support, having no kms should not
		 * be considered fatal.. ideally we would still support gpu
		 * and (for example) use dmabuf/prime to share buffers with
		 * imx drm driver on iMX5
		 */
431
		dev_err(dev, "failed to load kms\n");
T
Thomas Meyer 已提交
432
		ret = PTR_ERR(kms);
433 434 435 436 437 438
		goto fail;
	}

	if (kms) {
		ret = kms->funcs->hw_init(kms);
		if (ret) {
439
			dev_err(dev, "kms hw init failed: %d\n", ret);
440 441 442 443
			goto fail;
		}
	}

444
	ddev->mode_config.funcs = &mode_config_funcs;
445

446
	ret = drm_vblank_init(ddev, priv->num_crtcs);
447
	if (ret < 0) {
448
		dev_err(dev, "failed to initialize vblank\n");
449 450 451
		goto fail;
	}

452 453 454 455 456 457 458 459
	if (kms) {
		pm_runtime_get_sync(dev);
		ret = drm_irq_install(ddev, kms->irq);
		pm_runtime_put_sync(dev);
		if (ret < 0) {
			dev_err(dev, "failed to install IRQ handler\n");
			goto fail;
		}
460 461
	}

462 463 464 465 466
	ret = drm_dev_register(ddev, 0);
	if (ret)
		goto fail;

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

468
#ifdef CONFIG_DRM_FBDEV_EMULATION
469
	if (fbdev)
470
		priv->fbdev = msm_fbdev_init(ddev);
471 472
#endif

473
	ret = msm_debugfs_late_init(ddev);
R
Rob Clark 已提交
474 475 476
	if (ret)
		goto fail;

477
	drm_kms_helper_poll_init(ddev);
478 479 480 481

	return 0;

fail:
482
	msm_drm_uninit(dev);
483 484 485
	return ret;
}

486 487 488 489
/*
 * DRM operations:
 */

R
Rob Clark 已提交
490 491
static void load_gpu(struct drm_device *dev)
{
492
	static DEFINE_MUTEX(init_lock);
R
Rob Clark 已提交
493 494
	struct msm_drm_private *priv = dev->dev_private;

495 496
	mutex_lock(&init_lock);

497 498
	if (!priv->gpu)
		priv->gpu = adreno_load_gpu(dev);
R
Rob Clark 已提交
499

500
	mutex_unlock(&init_lock);
R
Rob Clark 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
}

static int msm_open(struct drm_device *dev, struct drm_file *file)
{
	struct msm_file_private *ctx;

	/* For now, load gpu on open.. to avoid the requirement of having
	 * firmware in the initrd.
	 */
	load_gpu(dev);

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

	file->driver_priv = ctx;

	return 0;
}

521 522 523
static void msm_preclose(struct drm_device *dev, struct drm_file *file)
{
	struct msm_drm_private *priv = dev->dev_private;
R
Rob Clark 已提交
524 525 526 527 528 529 530 531
	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);

	kfree(ctx);
532 533 534 535 536
}

static void msm_lastclose(struct drm_device *dev)
{
	struct msm_drm_private *priv = dev->dev_private;
537 538
	if (priv->fbdev)
		drm_fb_helper_restore_fbdev_mode_unlocked(priv->fbdev);
539 540
}

D
Daniel Vetter 已提交
541
static irqreturn_t msm_irq(int irq, void *arg)
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
{
	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);
	return kms->funcs->irq_postinstall(kms);
}

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

574
static int msm_enable_vblank(struct drm_device *dev, unsigned int pipe)
575 576 577 578 579
{
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	if (!kms)
		return -ENXIO;
580 581
	DBG("dev=%p, crtc=%u", dev, pipe);
	return vblank_ctrl_queue_work(priv, pipe, true);
582 583
}

584
static void msm_disable_vblank(struct drm_device *dev, unsigned int pipe)
585 586 587 588 589
{
	struct msm_drm_private *priv = dev->dev_private;
	struct msm_kms *kms = priv->kms;
	if (!kms)
		return;
590 591
	DBG("dev=%p, crtc=%u", dev, pipe);
	vblank_ctrl_queue_work(priv, pipe, false);
592 593
}

R
Rob Clark 已提交
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
/*
 * 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 已提交
623 624 625 626 627 628

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

R
Rob Clark 已提交
629 630 631 632
	return msm_gem_new_handle(dev, file, args->size,
			args->flags, &args->handle);
}

R
Rob Clark 已提交
633 634 635 636
static inline ktime_t to_ktime(struct drm_msm_timespec timeout)
{
	return ktime_set(timeout.tv_sec, timeout.tv_nsec);
}
R
Rob Clark 已提交
637 638 639 640 641 642

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

R
Rob Clark 已提交
646 647 648 649 650
	if (args->op & ~MSM_PREP_FLAGS) {
		DRM_ERROR("invalid op: %08x\n", args->op);
		return -EINVAL;
	}

651
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
652 653 654
	if (!obj)
		return -ENOENT;

R
Rob Clark 已提交
655
	ret = msm_gem_cpu_prep(obj, args->op, &timeout);
R
Rob Clark 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668

	drm_gem_object_unreference_unlocked(obj);

	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;

669
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
	if (!obj)
		return -ENOENT;

	ret = msm_gem_cpu_fini(obj);

	drm_gem_object_unreference_unlocked(obj);

	return ret;
}

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;
	int ret = 0;

	if (args->pad)
		return -EINVAL;

690
	obj = drm_gem_object_lookup(file, args->handle);
R
Rob Clark 已提交
691 692 693 694 695 696 697 698 699 700 701 702 703
	if (!obj)
		return -ENOENT;

	args->offset = msm_gem_mmap_offset(obj);

	drm_gem_object_unreference_unlocked(obj);

	return ret;
}

static int msm_ioctl_wait_fence(struct drm_device *dev, void *data,
		struct drm_file *file)
{
R
Rob Clark 已提交
704
	struct msm_drm_private *priv = dev->dev_private;
R
Rob Clark 已提交
705
	struct drm_msm_wait_fence *args = data;
R
Rob Clark 已提交
706
	ktime_t timeout = to_ktime(args->timeout);
R
Rob Clark 已提交
707 708 709 710 711 712

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

R
Rob Clark 已提交
713 714 715 716
	if (!priv->gpu)
		return 0;

	return msm_wait_fence(priv->gpu->fctx, args->fence, &timeout, true);
R
Rob Clark 已提交
717 718
}

R
Rob Clark 已提交
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
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;
	}

	drm_gem_object_unreference(obj);

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

R
Rob Clark 已提交
757
static const struct drm_ioctl_desc msm_ioctls[] = {
758 759 760 761 762 763 764
	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 已提交
765
	DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE,  msm_ioctl_gem_madvise,  DRM_AUTH|DRM_RENDER_ALLOW),
R
Rob Clark 已提交
766 767
};

768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
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 已提交
787 788 789
	.driver_features    = DRIVER_HAVE_IRQ |
				DRIVER_GEM |
				DRIVER_PRIME |
R
Rob Clark 已提交
790
				DRIVER_RENDER |
791
				DRIVER_ATOMIC |
R
Rob Clark 已提交
792
				DRIVER_MODESET,
R
Rob Clark 已提交
793
	.open               = msm_open,
794 795 796 797 798 799
	.preclose           = msm_preclose,
	.lastclose          = msm_lastclose,
	.irq_handler        = msm_irq,
	.irq_preinstall     = msm_irq_preinstall,
	.irq_postinstall    = msm_irq_postinstall,
	.irq_uninstall      = msm_irq_uninstall,
800
	.get_vblank_counter = drm_vblank_no_hw_counter,
801 802 803 804 805 806
	.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,
807
	.dumb_destroy       = drm_gem_dumb_destroy,
R
Rob Clark 已提交
808 809 810 811 812 813 814 815 816 817
	.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,
	.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,
818
	.gem_prime_mmap     = msm_gem_prime_mmap,
819 820 821 822
#ifdef CONFIG_DEBUG_FS
	.debugfs_init       = msm_debugfs_init,
	.debugfs_cleanup    = msm_debugfs_cleanup,
#endif
R
Rob Clark 已提交
823 824
	.ioctls             = msm_ioctls,
	.num_ioctls         = DRM_MSM_NUM_IOCTLS,
825 826 827 828
	.fops               = &fops,
	.name               = "msm",
	.desc               = "MSM Snapdragon DRM",
	.date               = "20130625",
R
Rob Clark 已提交
829 830 831
	.major              = MSM_VERSION_MAJOR,
	.minor              = MSM_VERSION_MINOR,
	.patchlevel         = MSM_VERSION_PATCHLEVEL,
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857
};

#ifdef CONFIG_PM_SLEEP
static int msm_pm_suspend(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);

	drm_kms_helper_poll_disable(ddev);

	return 0;
}

static int msm_pm_resume(struct device *dev)
{
	struct drm_device *ddev = dev_get_drvdata(dev);

	drm_kms_helper_poll_enable(ddev);

	return 0;
}
#endif

static const struct dev_pm_ops msm_pm_ops = {
	SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume)
};

858 859 860 861
/*
 * Componentized driver support:
 */

862 863 864
/*
 * NOTE: duplication of the same code as exynos or imx (or probably any other).
 * so probably some room for some helpers
865 866 867 868 869
 */
static int compare_of(struct device *dev, void *data)
{
	return dev->of_node == data;
}
870

871 872 873 874 875 876 877 878 879 880 881
/*
 * 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 已提交
882 883 884 885 886 887 888 889 890 891 892 893 894 895
	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;
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913

	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) {
			dev_err(mdp_dev, "unable to parse port endpoint\n");
			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") &&
914
		    ep.port == 0)
915 916 917 918 919 920 921 922
			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);
923
		if (!intf)
924 925
			continue;

926 927
		drm_of_component_match_add(master_dev, matchptr, compare_of,
					   intf);
928 929 930 931 932 933
		of_node_put(intf);
	}

	return 0;
}

A
Archit Taneja 已提交
934 935 936 937 938
static int compare_name_mdp(struct device *dev, void *data)
{
	return (strstr(dev_name(dev), "mdp") != NULL);
}

939 940 941
static int add_display_components(struct device *dev,
				  struct component_match **matchptr)
{
A
Archit Taneja 已提交
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967
	struct device *mdp_dev;
	int ret;

	/*
	 * MDP5 based devices don't have a flat hierarchy. There is a top level
	 * parent: MDSS, and children: MDP5, DSI, HDMI, eDP etc. Populate the
	 * children devices, find the MDP5 node, and then add the interfaces
	 * to our components list.
	 */
	if (of_device_is_compatible(dev->of_node, "qcom,mdss")) {
		ret = of_platform_populate(dev->of_node, NULL, NULL, dev);
		if (ret) {
			dev_err(dev, "failed to populate children devices\n");
			return ret;
		}

		mdp_dev = device_find_child(dev, NULL, compare_name_mdp);
		if (!mdp_dev) {
			dev_err(dev, "failed to find MDSS MDP node\n");
			of_platform_depopulate(dev);
			return -ENODEV;
		}

		put_device(mdp_dev);

		/* add the MDP component itself */
968 969
		drm_of_component_match_add(dev, matchptr, compare_of,
					   mdp_dev->of_node);
A
Archit Taneja 已提交
970 971 972 973 974 975 976 977 978 979
	} else {
		/* MDP4 */
		mdp_dev = dev;
	}

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

	return ret;
980 981
}

A
Archit Taneja 已提交
982 983 984 985 986 987 988 989 990 991 992
/*
 * 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[] = {
	{ .compatible = "qcom,adreno-3xx" },
	{ .compatible = "qcom,kgsl-3d0" },
	{ },
};

993 994 995
static int add_gpu_components(struct device *dev,
			      struct component_match **matchptr)
{
A
Archit Taneja 已提交
996 997 998 999 1000 1001
	struct device_node *np;

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

1002
	drm_of_component_match_add(dev, matchptr, compare_of, np);
A
Archit Taneja 已提交
1003 1004 1005 1006

	of_node_put(np);

	return 0;
1007 1008
}

1009 1010
static int msm_drm_bind(struct device *dev)
{
1011
	return msm_drm_init(dev, &msm_driver);
1012 1013 1014 1015
}

static void msm_drm_unbind(struct device *dev)
{
1016
	msm_drm_uninit(dev);
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
}

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

/*
 * Platform driver:
 */
1027

1028
static int msm_pdev_probe(struct platform_device *pdev)
1029
{
1030
	struct component_match *match = NULL;
1031 1032 1033 1034 1035
	int ret;

	ret = add_display_components(&pdev->dev, &match);
	if (ret)
		return ret;
1036

1037 1038 1039
	ret = add_gpu_components(&pdev->dev, &match);
	if (ret)
		return ret;
1040

R
Rob Clark 已提交
1041 1042 1043 1044 1045 1046 1047
	/* 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;

1048
	return component_master_add_with_match(&pdev->dev, &msm_drm_ops, match);
1049 1050 1051 1052
}

static int msm_pdev_remove(struct platform_device *pdev)
{
1053
	component_master_del(&pdev->dev, &msm_drm_ops);
A
Archit Taneja 已提交
1054
	of_platform_depopulate(&pdev->dev);
1055 1056 1057 1058

	return 0;
}

R
Rob Clark 已提交
1059
static const struct of_device_id dt_match[] = {
1060 1061
	{ .compatible = "qcom,mdp4", .data = (void *)4 },	/* MDP4 */
	{ .compatible = "qcom,mdss", .data = (void *)5 },	/* MDP5 MDSS */
R
Rob Clark 已提交
1062 1063 1064 1065
	{}
};
MODULE_DEVICE_TABLE(of, dt_match);

1066 1067 1068 1069 1070
static struct platform_driver msm_platform_driver = {
	.probe      = msm_pdev_probe,
	.remove     = msm_pdev_remove,
	.driver     = {
		.name   = "msm",
R
Rob Clark 已提交
1071
		.of_match_table = dt_match,
1072 1073 1074 1075 1076 1077 1078
		.pm     = &msm_pm_ops,
	},
};

static int __init msm_drm_register(void)
{
	DBG("init");
1079
	msm_mdp_register();
1080
	msm_dsi_register();
1081
	msm_edp_register();
A
Arnd Bergmann 已提交
1082
	msm_hdmi_register();
1083
	adreno_register();
1084 1085 1086 1087 1088 1089 1090
	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 已提交
1091
	msm_hdmi_unregister();
1092
	adreno_unregister();
1093
	msm_edp_unregister();
1094
	msm_dsi_unregister();
1095
	msm_mdp_unregister();
1096 1097 1098 1099 1100 1101 1102 1103
}

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