1 /* 2 * Copyright (C) 2013 Red Hat 3 * Author: Rob Clark <robdclark@gmail.com> 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of the GNU General Public License version 2 as published by 7 * the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 * You should have received a copy of the GNU General Public License along with 15 * this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17 18 #include <drm/drm_of.h> 19 20 #include "msm_drv.h" 21 #include "msm_debugfs.h" 22 #include "msm_fence.h" 23 #include "msm_gpu.h" 24 #include "msm_kms.h" 25 26 27 /* 28 * MSM driver version: 29 * - 1.0.0 - initial interface 30 * - 1.1.0 - adds madvise, and support for submits with > 4 cmd buffers 31 * - 1.2.0 - adds explicit fence support for submit ioctl 32 * - 1.3.0 - adds GMEM_BASE + NR_RINGS params, SUBMITQUEUE_NEW + 33 * SUBMITQUEUE_CLOSE ioctls, and MSM_INFO_IOVA flag for 34 * MSM_GEM_INFO ioctl. 35 */ 36 #define MSM_VERSION_MAJOR 1 37 #define MSM_VERSION_MINOR 3 38 #define MSM_VERSION_PATCHLEVEL 0 39 40 static const struct drm_mode_config_funcs mode_config_funcs = { 41 .fb_create = msm_framebuffer_create, 42 .output_poll_changed = drm_fb_helper_output_poll_changed, 43 .atomic_check = drm_atomic_helper_check, 44 .atomic_commit = drm_atomic_helper_commit, 45 }; 46 47 static const struct drm_mode_config_helper_funcs mode_config_helper_funcs = { 48 .atomic_commit_tail = msm_atomic_commit_tail, 49 }; 50 51 #ifdef CONFIG_DRM_MSM_REGISTER_LOGGING 52 static bool reglog = false; 53 MODULE_PARM_DESC(reglog, "Enable register read/write logging"); 54 module_param(reglog, bool, 0600); 55 #else 56 #define reglog 0 57 #endif 58 59 #ifdef CONFIG_DRM_FBDEV_EMULATION 60 static bool fbdev = true; 61 MODULE_PARM_DESC(fbdev, "Enable fbdev compat layer"); 62 module_param(fbdev, bool, 0600); 63 #endif 64 65 static char *vram = "16m"; 66 MODULE_PARM_DESC(vram, "Configure VRAM size (for devices without IOMMU/GPUMMU)"); 67 module_param(vram, charp, 0); 68 69 bool dumpstate = false; 70 MODULE_PARM_DESC(dumpstate, "Dump KMS state on errors"); 71 module_param(dumpstate, bool, 0600); 72 73 static bool modeset = true; 74 MODULE_PARM_DESC(modeset, "Use kernel modesetting [KMS] (1=on (default), 0=disable)"); 75 module_param(modeset, bool, 0600); 76 77 /* 78 * Util/helpers: 79 */ 80 81 struct clk *msm_clk_get(struct platform_device *pdev, const char *name) 82 { 83 struct clk *clk; 84 char name2[32]; 85 86 clk = devm_clk_get(&pdev->dev, name); 87 if (!IS_ERR(clk) || PTR_ERR(clk) == -EPROBE_DEFER) 88 return clk; 89 90 snprintf(name2, sizeof(name2), "%s_clk", name); 91 92 clk = devm_clk_get(&pdev->dev, name2); 93 if (!IS_ERR(clk)) 94 dev_warn(&pdev->dev, "Using legacy clk name binding. Use " 95 "\"%s\" instead of \"%s\"\n", name, name2); 96 97 return clk; 98 } 99 100 void __iomem *msm_ioremap(struct platform_device *pdev, const char *name, 101 const char *dbgname) 102 { 103 struct resource *res; 104 unsigned long size; 105 void __iomem *ptr; 106 107 if (name) 108 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name); 109 else 110 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 111 112 if (!res) { 113 dev_err(&pdev->dev, "failed to get memory resource: %s\n", name); 114 return ERR_PTR(-EINVAL); 115 } 116 117 size = resource_size(res); 118 119 ptr = devm_ioremap_nocache(&pdev->dev, res->start, size); 120 if (!ptr) { 121 dev_err(&pdev->dev, "failed to ioremap: %s\n", name); 122 return ERR_PTR(-ENOMEM); 123 } 124 125 if (reglog) 126 printk(KERN_DEBUG "IO:region %s %p %08lx\n", dbgname, ptr, size); 127 128 return ptr; 129 } 130 131 void msm_writel(u32 data, void __iomem *addr) 132 { 133 if (reglog) 134 printk(KERN_DEBUG "IO:W %p %08x\n", addr, data); 135 writel(data, addr); 136 } 137 138 u32 msm_readl(const void __iomem *addr) 139 { 140 u32 val = readl(addr); 141 if (reglog) 142 pr_err("IO:R %p %08x\n", addr, val); 143 return val; 144 } 145 146 struct vblank_event { 147 struct list_head node; 148 int crtc_id; 149 bool enable; 150 }; 151 152 static void vblank_ctrl_worker(struct work_struct *work) 153 { 154 struct msm_vblank_ctrl *vbl_ctrl = container_of(work, 155 struct msm_vblank_ctrl, work); 156 struct msm_drm_private *priv = container_of(vbl_ctrl, 157 struct msm_drm_private, vblank_ctrl); 158 struct msm_kms *kms = priv->kms; 159 struct vblank_event *vbl_ev, *tmp; 160 unsigned long flags; 161 162 spin_lock_irqsave(&vbl_ctrl->lock, flags); 163 list_for_each_entry_safe(vbl_ev, tmp, &vbl_ctrl->event_list, node) { 164 list_del(&vbl_ev->node); 165 spin_unlock_irqrestore(&vbl_ctrl->lock, flags); 166 167 if (vbl_ev->enable) 168 kms->funcs->enable_vblank(kms, 169 priv->crtcs[vbl_ev->crtc_id]); 170 else 171 kms->funcs->disable_vblank(kms, 172 priv->crtcs[vbl_ev->crtc_id]); 173 174 kfree(vbl_ev); 175 176 spin_lock_irqsave(&vbl_ctrl->lock, flags); 177 } 178 179 spin_unlock_irqrestore(&vbl_ctrl->lock, flags); 180 } 181 182 static int vblank_ctrl_queue_work(struct msm_drm_private *priv, 183 int crtc_id, bool enable) 184 { 185 struct msm_vblank_ctrl *vbl_ctrl = &priv->vblank_ctrl; 186 struct vblank_event *vbl_ev; 187 unsigned long flags; 188 189 vbl_ev = kzalloc(sizeof(*vbl_ev), GFP_ATOMIC); 190 if (!vbl_ev) 191 return -ENOMEM; 192 193 vbl_ev->crtc_id = crtc_id; 194 vbl_ev->enable = enable; 195 196 spin_lock_irqsave(&vbl_ctrl->lock, flags); 197 list_add_tail(&vbl_ev->node, &vbl_ctrl->event_list); 198 spin_unlock_irqrestore(&vbl_ctrl->lock, flags); 199 200 queue_work(priv->wq, &vbl_ctrl->work); 201 202 return 0; 203 } 204 205 static int msm_drm_uninit(struct device *dev) 206 { 207 struct platform_device *pdev = to_platform_device(dev); 208 struct drm_device *ddev = platform_get_drvdata(pdev); 209 struct msm_drm_private *priv = ddev->dev_private; 210 struct msm_kms *kms = priv->kms; 211 struct msm_vblank_ctrl *vbl_ctrl = &priv->vblank_ctrl; 212 struct vblank_event *vbl_ev, *tmp; 213 214 /* We must cancel and cleanup any pending vblank enable/disable 215 * work before drm_irq_uninstall() to avoid work re-enabling an 216 * irq after uninstall has disabled it. 217 */ 218 cancel_work_sync(&vbl_ctrl->work); 219 list_for_each_entry_safe(vbl_ev, tmp, &vbl_ctrl->event_list, node) { 220 list_del(&vbl_ev->node); 221 kfree(vbl_ev); 222 } 223 224 msm_gem_shrinker_cleanup(ddev); 225 226 drm_kms_helper_poll_fini(ddev); 227 228 drm_dev_unregister(ddev); 229 230 msm_perf_debugfs_cleanup(priv); 231 msm_rd_debugfs_cleanup(priv); 232 233 #ifdef CONFIG_DRM_FBDEV_EMULATION 234 if (fbdev && priv->fbdev) 235 msm_fbdev_free(ddev); 236 #endif 237 drm_mode_config_cleanup(ddev); 238 239 pm_runtime_get_sync(dev); 240 drm_irq_uninstall(ddev); 241 pm_runtime_put_sync(dev); 242 243 flush_workqueue(priv->wq); 244 destroy_workqueue(priv->wq); 245 246 flush_workqueue(priv->atomic_wq); 247 destroy_workqueue(priv->atomic_wq); 248 249 if (kms && kms->funcs) 250 kms->funcs->destroy(kms); 251 252 if (priv->vram.paddr) { 253 unsigned long attrs = DMA_ATTR_NO_KERNEL_MAPPING; 254 drm_mm_takedown(&priv->vram.mm); 255 dma_free_attrs(dev, priv->vram.size, NULL, 256 priv->vram.paddr, attrs); 257 } 258 259 component_unbind_all(dev, ddev); 260 261 msm_mdss_destroy(ddev); 262 263 ddev->dev_private = NULL; 264 drm_dev_unref(ddev); 265 266 kfree(priv); 267 268 return 0; 269 } 270 271 static int get_mdp_ver(struct platform_device *pdev) 272 { 273 struct device *dev = &pdev->dev; 274 275 return (int) (unsigned long) of_device_get_match_data(dev); 276 } 277 278 #include <linux/of_address.h> 279 280 static int msm_init_vram(struct drm_device *dev) 281 { 282 struct msm_drm_private *priv = dev->dev_private; 283 struct device_node *node; 284 unsigned long size = 0; 285 int ret = 0; 286 287 /* In the device-tree world, we could have a 'memory-region' 288 * phandle, which gives us a link to our "vram". Allocating 289 * is all nicely abstracted behind the dma api, but we need 290 * to know the entire size to allocate it all in one go. There 291 * are two cases: 292 * 1) device with no IOMMU, in which case we need exclusive 293 * access to a VRAM carveout big enough for all gpu 294 * buffers 295 * 2) device with IOMMU, but where the bootloader puts up 296 * a splash screen. In this case, the VRAM carveout 297 * need only be large enough for fbdev fb. But we need 298 * exclusive access to the buffer to avoid the kernel 299 * using those pages for other purposes (which appears 300 * as corruption on screen before we have a chance to 301 * load and do initial modeset) 302 */ 303 304 node = of_parse_phandle(dev->dev->of_node, "memory-region", 0); 305 if (node) { 306 struct resource r; 307 ret = of_address_to_resource(node, 0, &r); 308 of_node_put(node); 309 if (ret) 310 return ret; 311 size = r.end - r.start; 312 DRM_INFO("using VRAM carveout: %lx@%pa\n", size, &r.start); 313 314 /* if we have no IOMMU, then we need to use carveout allocator. 315 * Grab the entire CMA chunk carved out in early startup in 316 * mach-msm: 317 */ 318 } else if (!iommu_present(&platform_bus_type)) { 319 DRM_INFO("using %s VRAM carveout\n", vram); 320 size = memparse(vram, NULL); 321 } 322 323 if (size) { 324 unsigned long attrs = 0; 325 void *p; 326 327 priv->vram.size = size; 328 329 drm_mm_init(&priv->vram.mm, 0, (size >> PAGE_SHIFT) - 1); 330 spin_lock_init(&priv->vram.lock); 331 332 attrs |= DMA_ATTR_NO_KERNEL_MAPPING; 333 attrs |= DMA_ATTR_WRITE_COMBINE; 334 335 /* note that for no-kernel-mapping, the vaddr returned 336 * is bogus, but non-null if allocation succeeded: 337 */ 338 p = dma_alloc_attrs(dev->dev, size, 339 &priv->vram.paddr, GFP_KERNEL, attrs); 340 if (!p) { 341 dev_err(dev->dev, "failed to allocate VRAM\n"); 342 priv->vram.paddr = 0; 343 return -ENOMEM; 344 } 345 346 dev_info(dev->dev, "VRAM: %08x->%08x\n", 347 (uint32_t)priv->vram.paddr, 348 (uint32_t)(priv->vram.paddr + size)); 349 } 350 351 return ret; 352 } 353 354 static int msm_drm_init(struct device *dev, struct drm_driver *drv) 355 { 356 struct platform_device *pdev = to_platform_device(dev); 357 struct drm_device *ddev; 358 struct msm_drm_private *priv; 359 struct msm_kms *kms; 360 int ret; 361 362 ddev = drm_dev_alloc(drv, dev); 363 if (IS_ERR(ddev)) { 364 dev_err(dev, "failed to allocate drm_device\n"); 365 return PTR_ERR(ddev); 366 } 367 368 platform_set_drvdata(pdev, ddev); 369 370 priv = kzalloc(sizeof(*priv), GFP_KERNEL); 371 if (!priv) { 372 drm_dev_unref(ddev); 373 return -ENOMEM; 374 } 375 376 ddev->dev_private = priv; 377 priv->dev = ddev; 378 379 ret = msm_mdss_init(ddev); 380 if (ret) { 381 kfree(priv); 382 drm_dev_unref(ddev); 383 return ret; 384 } 385 386 priv->wq = alloc_ordered_workqueue("msm", 0); 387 priv->atomic_wq = alloc_ordered_workqueue("msm:atomic", 0); 388 389 INIT_LIST_HEAD(&priv->inactive_list); 390 INIT_LIST_HEAD(&priv->vblank_ctrl.event_list); 391 INIT_WORK(&priv->vblank_ctrl.work, vblank_ctrl_worker); 392 spin_lock_init(&priv->vblank_ctrl.lock); 393 394 drm_mode_config_init(ddev); 395 396 /* Bind all our sub-components: */ 397 ret = component_bind_all(dev, ddev); 398 if (ret) { 399 msm_mdss_destroy(ddev); 400 kfree(priv); 401 drm_dev_unref(ddev); 402 return ret; 403 } 404 405 ret = msm_init_vram(ddev); 406 if (ret) 407 goto fail; 408 409 msm_gem_shrinker_init(ddev); 410 411 switch (get_mdp_ver(pdev)) { 412 case 4: 413 kms = mdp4_kms_init(ddev); 414 priv->kms = kms; 415 break; 416 case 5: 417 kms = mdp5_kms_init(ddev); 418 break; 419 default: 420 kms = ERR_PTR(-ENODEV); 421 break; 422 } 423 424 if (IS_ERR(kms)) { 425 /* 426 * NOTE: once we have GPU support, having no kms should not 427 * be considered fatal.. ideally we would still support gpu 428 * and (for example) use dmabuf/prime to share buffers with 429 * imx drm driver on iMX5 430 */ 431 dev_err(dev, "failed to load kms\n"); 432 ret = PTR_ERR(kms); 433 goto fail; 434 } 435 436 if (kms) { 437 ret = kms->funcs->hw_init(kms); 438 if (ret) { 439 dev_err(dev, "kms hw init failed: %d\n", ret); 440 goto fail; 441 } 442 } 443 444 ddev->mode_config.funcs = &mode_config_funcs; 445 ddev->mode_config.helper_private = &mode_config_helper_funcs; 446 447 ret = drm_vblank_init(ddev, priv->num_crtcs); 448 if (ret < 0) { 449 dev_err(dev, "failed to initialize vblank\n"); 450 goto fail; 451 } 452 453 if (kms) { 454 pm_runtime_get_sync(dev); 455 ret = drm_irq_install(ddev, kms->irq); 456 pm_runtime_put_sync(dev); 457 if (ret < 0) { 458 dev_err(dev, "failed to install IRQ handler\n"); 459 goto fail; 460 } 461 } 462 463 ret = drm_dev_register(ddev, 0); 464 if (ret) 465 goto fail; 466 467 drm_mode_config_reset(ddev); 468 469 #ifdef CONFIG_DRM_FBDEV_EMULATION 470 if (fbdev) 471 priv->fbdev = msm_fbdev_init(ddev); 472 #endif 473 474 ret = msm_debugfs_late_init(ddev); 475 if (ret) 476 goto fail; 477 478 drm_kms_helper_poll_init(ddev); 479 480 return 0; 481 482 fail: 483 msm_drm_uninit(dev); 484 return ret; 485 } 486 487 /* 488 * DRM operations: 489 */ 490 491 static void load_gpu(struct drm_device *dev) 492 { 493 static DEFINE_MUTEX(init_lock); 494 struct msm_drm_private *priv = dev->dev_private; 495 496 mutex_lock(&init_lock); 497 498 if (!priv->gpu) 499 priv->gpu = adreno_load_gpu(dev); 500 501 mutex_unlock(&init_lock); 502 } 503 504 static int context_init(struct drm_device *dev, struct drm_file *file) 505 { 506 struct msm_file_private *ctx; 507 508 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); 509 if (!ctx) 510 return -ENOMEM; 511 512 msm_submitqueue_init(dev, ctx); 513 514 file->driver_priv = ctx; 515 516 return 0; 517 } 518 519 static int msm_open(struct drm_device *dev, struct drm_file *file) 520 { 521 /* For now, load gpu on open.. to avoid the requirement of having 522 * firmware in the initrd. 523 */ 524 load_gpu(dev); 525 526 return context_init(dev, file); 527 } 528 529 static void context_close(struct msm_file_private *ctx) 530 { 531 msm_submitqueue_close(ctx); 532 kfree(ctx); 533 } 534 535 static void msm_postclose(struct drm_device *dev, struct drm_file *file) 536 { 537 struct msm_drm_private *priv = dev->dev_private; 538 struct msm_file_private *ctx = file->driver_priv; 539 540 mutex_lock(&dev->struct_mutex); 541 if (ctx == priv->lastctx) 542 priv->lastctx = NULL; 543 mutex_unlock(&dev->struct_mutex); 544 545 context_close(ctx); 546 } 547 548 static irqreturn_t msm_irq(int irq, void *arg) 549 { 550 struct drm_device *dev = arg; 551 struct msm_drm_private *priv = dev->dev_private; 552 struct msm_kms *kms = priv->kms; 553 BUG_ON(!kms); 554 return kms->funcs->irq(kms); 555 } 556 557 static void msm_irq_preinstall(struct drm_device *dev) 558 { 559 struct msm_drm_private *priv = dev->dev_private; 560 struct msm_kms *kms = priv->kms; 561 BUG_ON(!kms); 562 kms->funcs->irq_preinstall(kms); 563 } 564 565 static int msm_irq_postinstall(struct drm_device *dev) 566 { 567 struct msm_drm_private *priv = dev->dev_private; 568 struct msm_kms *kms = priv->kms; 569 BUG_ON(!kms); 570 return kms->funcs->irq_postinstall(kms); 571 } 572 573 static void msm_irq_uninstall(struct drm_device *dev) 574 { 575 struct msm_drm_private *priv = dev->dev_private; 576 struct msm_kms *kms = priv->kms; 577 BUG_ON(!kms); 578 kms->funcs->irq_uninstall(kms); 579 } 580 581 static int msm_enable_vblank(struct drm_device *dev, unsigned int pipe) 582 { 583 struct msm_drm_private *priv = dev->dev_private; 584 struct msm_kms *kms = priv->kms; 585 if (!kms) 586 return -ENXIO; 587 DBG("dev=%p, crtc=%u", dev, pipe); 588 return vblank_ctrl_queue_work(priv, pipe, true); 589 } 590 591 static void msm_disable_vblank(struct drm_device *dev, unsigned int pipe) 592 { 593 struct msm_drm_private *priv = dev->dev_private; 594 struct msm_kms *kms = priv->kms; 595 if (!kms) 596 return; 597 DBG("dev=%p, crtc=%u", dev, pipe); 598 vblank_ctrl_queue_work(priv, pipe, false); 599 } 600 601 /* 602 * DRM ioctls: 603 */ 604 605 static int msm_ioctl_get_param(struct drm_device *dev, void *data, 606 struct drm_file *file) 607 { 608 struct msm_drm_private *priv = dev->dev_private; 609 struct drm_msm_param *args = data; 610 struct msm_gpu *gpu; 611 612 /* for now, we just have 3d pipe.. eventually this would need to 613 * be more clever to dispatch to appropriate gpu module: 614 */ 615 if (args->pipe != MSM_PIPE_3D0) 616 return -EINVAL; 617 618 gpu = priv->gpu; 619 620 if (!gpu) 621 return -ENXIO; 622 623 return gpu->funcs->get_param(gpu, args->param, &args->value); 624 } 625 626 static int msm_ioctl_gem_new(struct drm_device *dev, void *data, 627 struct drm_file *file) 628 { 629 struct drm_msm_gem_new *args = data; 630 631 if (args->flags & ~MSM_BO_FLAGS) { 632 DRM_ERROR("invalid flags: %08x\n", args->flags); 633 return -EINVAL; 634 } 635 636 return msm_gem_new_handle(dev, file, args->size, 637 args->flags, &args->handle); 638 } 639 640 static inline ktime_t to_ktime(struct drm_msm_timespec timeout) 641 { 642 return ktime_set(timeout.tv_sec, timeout.tv_nsec); 643 } 644 645 static int msm_ioctl_gem_cpu_prep(struct drm_device *dev, void *data, 646 struct drm_file *file) 647 { 648 struct drm_msm_gem_cpu_prep *args = data; 649 struct drm_gem_object *obj; 650 ktime_t timeout = to_ktime(args->timeout); 651 int ret; 652 653 if (args->op & ~MSM_PREP_FLAGS) { 654 DRM_ERROR("invalid op: %08x\n", args->op); 655 return -EINVAL; 656 } 657 658 obj = drm_gem_object_lookup(file, args->handle); 659 if (!obj) 660 return -ENOENT; 661 662 ret = msm_gem_cpu_prep(obj, args->op, &timeout); 663 664 drm_gem_object_put_unlocked(obj); 665 666 return ret; 667 } 668 669 static int msm_ioctl_gem_cpu_fini(struct drm_device *dev, void *data, 670 struct drm_file *file) 671 { 672 struct drm_msm_gem_cpu_fini *args = data; 673 struct drm_gem_object *obj; 674 int ret; 675 676 obj = drm_gem_object_lookup(file, args->handle); 677 if (!obj) 678 return -ENOENT; 679 680 ret = msm_gem_cpu_fini(obj); 681 682 drm_gem_object_put_unlocked(obj); 683 684 return ret; 685 } 686 687 static int msm_ioctl_gem_info_iova(struct drm_device *dev, 688 struct drm_gem_object *obj, uint64_t *iova) 689 { 690 struct msm_drm_private *priv = dev->dev_private; 691 692 if (!priv->gpu) 693 return -EINVAL; 694 695 return msm_gem_get_iova(obj, priv->gpu->aspace, iova); 696 } 697 698 static int msm_ioctl_gem_info(struct drm_device *dev, void *data, 699 struct drm_file *file) 700 { 701 struct drm_msm_gem_info *args = data; 702 struct drm_gem_object *obj; 703 int ret = 0; 704 705 if (args->flags & ~MSM_INFO_FLAGS) 706 return -EINVAL; 707 708 obj = drm_gem_object_lookup(file, args->handle); 709 if (!obj) 710 return -ENOENT; 711 712 if (args->flags & MSM_INFO_IOVA) { 713 uint64_t iova; 714 715 ret = msm_ioctl_gem_info_iova(dev, obj, &iova); 716 if (!ret) 717 args->offset = iova; 718 } else { 719 args->offset = msm_gem_mmap_offset(obj); 720 } 721 722 drm_gem_object_put_unlocked(obj); 723 724 return ret; 725 } 726 727 static int msm_ioctl_wait_fence(struct drm_device *dev, void *data, 728 struct drm_file *file) 729 { 730 struct msm_drm_private *priv = dev->dev_private; 731 struct drm_msm_wait_fence *args = data; 732 ktime_t timeout = to_ktime(args->timeout); 733 struct msm_gpu_submitqueue *queue; 734 struct msm_gpu *gpu = priv->gpu; 735 int ret; 736 737 if (args->pad) { 738 DRM_ERROR("invalid pad: %08x\n", args->pad); 739 return -EINVAL; 740 } 741 742 if (!gpu) 743 return 0; 744 745 queue = msm_submitqueue_get(file->driver_priv, args->queueid); 746 if (!queue) 747 return -ENOENT; 748 749 ret = msm_wait_fence(gpu->rb[queue->prio]->fctx, args->fence, &timeout, 750 true); 751 752 msm_submitqueue_put(queue); 753 return ret; 754 } 755 756 static int msm_ioctl_gem_madvise(struct drm_device *dev, void *data, 757 struct drm_file *file) 758 { 759 struct drm_msm_gem_madvise *args = data; 760 struct drm_gem_object *obj; 761 int ret; 762 763 switch (args->madv) { 764 case MSM_MADV_DONTNEED: 765 case MSM_MADV_WILLNEED: 766 break; 767 default: 768 return -EINVAL; 769 } 770 771 ret = mutex_lock_interruptible(&dev->struct_mutex); 772 if (ret) 773 return ret; 774 775 obj = drm_gem_object_lookup(file, args->handle); 776 if (!obj) { 777 ret = -ENOENT; 778 goto unlock; 779 } 780 781 ret = msm_gem_madvise(obj, args->madv); 782 if (ret >= 0) { 783 args->retained = ret; 784 ret = 0; 785 } 786 787 drm_gem_object_put(obj); 788 789 unlock: 790 mutex_unlock(&dev->struct_mutex); 791 return ret; 792 } 793 794 795 static int msm_ioctl_submitqueue_new(struct drm_device *dev, void *data, 796 struct drm_file *file) 797 { 798 struct drm_msm_submitqueue *args = data; 799 800 if (args->flags & ~MSM_SUBMITQUEUE_FLAGS) 801 return -EINVAL; 802 803 return msm_submitqueue_create(dev, file->driver_priv, args->prio, 804 args->flags, &args->id); 805 } 806 807 808 static int msm_ioctl_submitqueue_close(struct drm_device *dev, void *data, 809 struct drm_file *file) 810 { 811 u32 id = *(u32 *) data; 812 813 return msm_submitqueue_remove(file->driver_priv, id); 814 } 815 816 static const struct drm_ioctl_desc msm_ioctls[] = { 817 DRM_IOCTL_DEF_DRV(MSM_GET_PARAM, msm_ioctl_get_param, DRM_AUTH|DRM_RENDER_ALLOW), 818 DRM_IOCTL_DEF_DRV(MSM_GEM_NEW, msm_ioctl_gem_new, DRM_AUTH|DRM_RENDER_ALLOW), 819 DRM_IOCTL_DEF_DRV(MSM_GEM_INFO, msm_ioctl_gem_info, DRM_AUTH|DRM_RENDER_ALLOW), 820 DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_PREP, msm_ioctl_gem_cpu_prep, DRM_AUTH|DRM_RENDER_ALLOW), 821 DRM_IOCTL_DEF_DRV(MSM_GEM_CPU_FINI, msm_ioctl_gem_cpu_fini, DRM_AUTH|DRM_RENDER_ALLOW), 822 DRM_IOCTL_DEF_DRV(MSM_GEM_SUBMIT, msm_ioctl_gem_submit, DRM_AUTH|DRM_RENDER_ALLOW), 823 DRM_IOCTL_DEF_DRV(MSM_WAIT_FENCE, msm_ioctl_wait_fence, DRM_AUTH|DRM_RENDER_ALLOW), 824 DRM_IOCTL_DEF_DRV(MSM_GEM_MADVISE, msm_ioctl_gem_madvise, DRM_AUTH|DRM_RENDER_ALLOW), 825 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_NEW, msm_ioctl_submitqueue_new, DRM_AUTH|DRM_RENDER_ALLOW), 826 DRM_IOCTL_DEF_DRV(MSM_SUBMITQUEUE_CLOSE, msm_ioctl_submitqueue_close, DRM_AUTH|DRM_RENDER_ALLOW), 827 }; 828 829 static const struct vm_operations_struct vm_ops = { 830 .fault = msm_gem_fault, 831 .open = drm_gem_vm_open, 832 .close = drm_gem_vm_close, 833 }; 834 835 static const struct file_operations fops = { 836 .owner = THIS_MODULE, 837 .open = drm_open, 838 .release = drm_release, 839 .unlocked_ioctl = drm_ioctl, 840 .compat_ioctl = drm_compat_ioctl, 841 .poll = drm_poll, 842 .read = drm_read, 843 .llseek = no_llseek, 844 .mmap = msm_gem_mmap, 845 }; 846 847 static struct drm_driver msm_driver = { 848 .driver_features = DRIVER_HAVE_IRQ | 849 DRIVER_GEM | 850 DRIVER_PRIME | 851 DRIVER_RENDER | 852 DRIVER_ATOMIC | 853 DRIVER_MODESET, 854 .open = msm_open, 855 .postclose = msm_postclose, 856 .lastclose = drm_fb_helper_lastclose, 857 .irq_handler = msm_irq, 858 .irq_preinstall = msm_irq_preinstall, 859 .irq_postinstall = msm_irq_postinstall, 860 .irq_uninstall = msm_irq_uninstall, 861 .enable_vblank = msm_enable_vblank, 862 .disable_vblank = msm_disable_vblank, 863 .gem_free_object = msm_gem_free_object, 864 .gem_vm_ops = &vm_ops, 865 .dumb_create = msm_gem_dumb_create, 866 .dumb_map_offset = msm_gem_dumb_map_offset, 867 .prime_handle_to_fd = drm_gem_prime_handle_to_fd, 868 .prime_fd_to_handle = drm_gem_prime_fd_to_handle, 869 .gem_prime_export = drm_gem_prime_export, 870 .gem_prime_import = drm_gem_prime_import, 871 .gem_prime_res_obj = msm_gem_prime_res_obj, 872 .gem_prime_pin = msm_gem_prime_pin, 873 .gem_prime_unpin = msm_gem_prime_unpin, 874 .gem_prime_get_sg_table = msm_gem_prime_get_sg_table, 875 .gem_prime_import_sg_table = msm_gem_prime_import_sg_table, 876 .gem_prime_vmap = msm_gem_prime_vmap, 877 .gem_prime_vunmap = msm_gem_prime_vunmap, 878 .gem_prime_mmap = msm_gem_prime_mmap, 879 #ifdef CONFIG_DEBUG_FS 880 .debugfs_init = msm_debugfs_init, 881 #endif 882 .ioctls = msm_ioctls, 883 .num_ioctls = ARRAY_SIZE(msm_ioctls), 884 .fops = &fops, 885 .name = "msm", 886 .desc = "MSM Snapdragon DRM", 887 .date = "20130625", 888 .major = MSM_VERSION_MAJOR, 889 .minor = MSM_VERSION_MINOR, 890 .patchlevel = MSM_VERSION_PATCHLEVEL, 891 }; 892 893 #ifdef CONFIG_PM_SLEEP 894 static int msm_pm_suspend(struct device *dev) 895 { 896 struct drm_device *ddev = dev_get_drvdata(dev); 897 898 drm_kms_helper_poll_disable(ddev); 899 900 return 0; 901 } 902 903 static int msm_pm_resume(struct device *dev) 904 { 905 struct drm_device *ddev = dev_get_drvdata(dev); 906 907 drm_kms_helper_poll_enable(ddev); 908 909 return 0; 910 } 911 #endif 912 913 #ifdef CONFIG_PM 914 static int msm_runtime_suspend(struct device *dev) 915 { 916 struct drm_device *ddev = dev_get_drvdata(dev); 917 struct msm_drm_private *priv = ddev->dev_private; 918 919 DBG(""); 920 921 if (priv->mdss) 922 return msm_mdss_disable(priv->mdss); 923 924 return 0; 925 } 926 927 static int msm_runtime_resume(struct device *dev) 928 { 929 struct drm_device *ddev = dev_get_drvdata(dev); 930 struct msm_drm_private *priv = ddev->dev_private; 931 932 DBG(""); 933 934 if (priv->mdss) 935 return msm_mdss_enable(priv->mdss); 936 937 return 0; 938 } 939 #endif 940 941 static const struct dev_pm_ops msm_pm_ops = { 942 SET_SYSTEM_SLEEP_PM_OPS(msm_pm_suspend, msm_pm_resume) 943 SET_RUNTIME_PM_OPS(msm_runtime_suspend, msm_runtime_resume, NULL) 944 }; 945 946 /* 947 * Componentized driver support: 948 */ 949 950 /* 951 * NOTE: duplication of the same code as exynos or imx (or probably any other). 952 * so probably some room for some helpers 953 */ 954 static int compare_of(struct device *dev, void *data) 955 { 956 return dev->of_node == data; 957 } 958 959 /* 960 * Identify what components need to be added by parsing what remote-endpoints 961 * our MDP output ports are connected to. In the case of LVDS on MDP4, there 962 * is no external component that we need to add since LVDS is within MDP4 963 * itself. 964 */ 965 static int add_components_mdp(struct device *mdp_dev, 966 struct component_match **matchptr) 967 { 968 struct device_node *np = mdp_dev->of_node; 969 struct device_node *ep_node; 970 struct device *master_dev; 971 972 /* 973 * on MDP4 based platforms, the MDP platform device is the component 974 * master that adds other display interface components to itself. 975 * 976 * on MDP5 based platforms, the MDSS platform device is the component 977 * master that adds MDP5 and other display interface components to 978 * itself. 979 */ 980 if (of_device_is_compatible(np, "qcom,mdp4")) 981 master_dev = mdp_dev; 982 else 983 master_dev = mdp_dev->parent; 984 985 for_each_endpoint_of_node(np, ep_node) { 986 struct device_node *intf; 987 struct of_endpoint ep; 988 int ret; 989 990 ret = of_graph_parse_endpoint(ep_node, &ep); 991 if (ret) { 992 dev_err(mdp_dev, "unable to parse port endpoint\n"); 993 of_node_put(ep_node); 994 return ret; 995 } 996 997 /* 998 * The LCDC/LVDS port on MDP4 is a speacial case where the 999 * remote-endpoint isn't a component that we need to add 1000 */ 1001 if (of_device_is_compatible(np, "qcom,mdp4") && 1002 ep.port == 0) 1003 continue; 1004 1005 /* 1006 * It's okay if some of the ports don't have a remote endpoint 1007 * specified. It just means that the port isn't connected to 1008 * any external interface. 1009 */ 1010 intf = of_graph_get_remote_port_parent(ep_node); 1011 if (!intf) 1012 continue; 1013 1014 drm_of_component_match_add(master_dev, matchptr, compare_of, 1015 intf); 1016 of_node_put(intf); 1017 } 1018 1019 return 0; 1020 } 1021 1022 static int compare_name_mdp(struct device *dev, void *data) 1023 { 1024 return (strstr(dev_name(dev), "mdp") != NULL); 1025 } 1026 1027 static int add_display_components(struct device *dev, 1028 struct component_match **matchptr) 1029 { 1030 struct device *mdp_dev; 1031 int ret; 1032 1033 /* 1034 * MDP5 based devices don't have a flat hierarchy. There is a top level 1035 * parent: MDSS, and children: MDP5, DSI, HDMI, eDP etc. Populate the 1036 * children devices, find the MDP5 node, and then add the interfaces 1037 * to our components list. 1038 */ 1039 if (of_device_is_compatible(dev->of_node, "qcom,mdss")) { 1040 ret = of_platform_populate(dev->of_node, NULL, NULL, dev); 1041 if (ret) { 1042 dev_err(dev, "failed to populate children devices\n"); 1043 return ret; 1044 } 1045 1046 mdp_dev = device_find_child(dev, NULL, compare_name_mdp); 1047 if (!mdp_dev) { 1048 dev_err(dev, "failed to find MDSS MDP node\n"); 1049 of_platform_depopulate(dev); 1050 return -ENODEV; 1051 } 1052 1053 put_device(mdp_dev); 1054 1055 /* add the MDP component itself */ 1056 drm_of_component_match_add(dev, matchptr, compare_of, 1057 mdp_dev->of_node); 1058 } else { 1059 /* MDP4 */ 1060 mdp_dev = dev; 1061 } 1062 1063 ret = add_components_mdp(mdp_dev, matchptr); 1064 if (ret) 1065 of_platform_depopulate(dev); 1066 1067 return ret; 1068 } 1069 1070 /* 1071 * We don't know what's the best binding to link the gpu with the drm device. 1072 * Fow now, we just hunt for all the possible gpus that we support, and add them 1073 * as components. 1074 */ 1075 static const struct of_device_id msm_gpu_match[] = { 1076 { .compatible = "qcom,adreno" }, 1077 { .compatible = "qcom,adreno-3xx" }, 1078 { .compatible = "qcom,kgsl-3d0" }, 1079 { }, 1080 }; 1081 1082 static int add_gpu_components(struct device *dev, 1083 struct component_match **matchptr) 1084 { 1085 struct device_node *np; 1086 1087 np = of_find_matching_node(NULL, msm_gpu_match); 1088 if (!np) 1089 return 0; 1090 1091 drm_of_component_match_add(dev, matchptr, compare_of, np); 1092 1093 of_node_put(np); 1094 1095 return 0; 1096 } 1097 1098 static int msm_drm_bind(struct device *dev) 1099 { 1100 return msm_drm_init(dev, &msm_driver); 1101 } 1102 1103 static void msm_drm_unbind(struct device *dev) 1104 { 1105 msm_drm_uninit(dev); 1106 } 1107 1108 static const struct component_master_ops msm_drm_ops = { 1109 .bind = msm_drm_bind, 1110 .unbind = msm_drm_unbind, 1111 }; 1112 1113 /* 1114 * Platform driver: 1115 */ 1116 1117 static int msm_pdev_probe(struct platform_device *pdev) 1118 { 1119 struct component_match *match = NULL; 1120 int ret; 1121 1122 ret = add_display_components(&pdev->dev, &match); 1123 if (ret) 1124 return ret; 1125 1126 ret = add_gpu_components(&pdev->dev, &match); 1127 if (ret) 1128 return ret; 1129 1130 /* on all devices that I am aware of, iommu's which can map 1131 * any address the cpu can see are used: 1132 */ 1133 ret = dma_set_mask_and_coherent(&pdev->dev, ~0); 1134 if (ret) 1135 return ret; 1136 1137 return component_master_add_with_match(&pdev->dev, &msm_drm_ops, match); 1138 } 1139 1140 static int msm_pdev_remove(struct platform_device *pdev) 1141 { 1142 component_master_del(&pdev->dev, &msm_drm_ops); 1143 of_platform_depopulate(&pdev->dev); 1144 1145 return 0; 1146 } 1147 1148 static const struct of_device_id dt_match[] = { 1149 { .compatible = "qcom,mdp4", .data = (void *)4 }, /* MDP4 */ 1150 { .compatible = "qcom,mdss", .data = (void *)5 }, /* MDP5 MDSS */ 1151 {} 1152 }; 1153 MODULE_DEVICE_TABLE(of, dt_match); 1154 1155 static struct platform_driver msm_platform_driver = { 1156 .probe = msm_pdev_probe, 1157 .remove = msm_pdev_remove, 1158 .driver = { 1159 .name = "msm", 1160 .of_match_table = dt_match, 1161 .pm = &msm_pm_ops, 1162 }, 1163 }; 1164 1165 static int __init msm_drm_register(void) 1166 { 1167 if (!modeset) 1168 return -EINVAL; 1169 1170 DBG("init"); 1171 msm_mdp_register(); 1172 msm_dsi_register(); 1173 msm_edp_register(); 1174 msm_hdmi_register(); 1175 adreno_register(); 1176 return platform_driver_register(&msm_platform_driver); 1177 } 1178 1179 static void __exit msm_drm_unregister(void) 1180 { 1181 DBG("fini"); 1182 platform_driver_unregister(&msm_platform_driver); 1183 msm_hdmi_unregister(); 1184 adreno_unregister(); 1185 msm_edp_unregister(); 1186 msm_dsi_unregister(); 1187 msm_mdp_unregister(); 1188 } 1189 1190 module_init(msm_drm_register); 1191 module_exit(msm_drm_unregister); 1192 1193 MODULE_AUTHOR("Rob Clark <robdclark@gmail.com"); 1194 MODULE_DESCRIPTION("MSM DRM Driver"); 1195 MODULE_LICENSE("GPL"); 1196