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