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