Linux Audio

Check our new training course

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