1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2015 MediaTek Inc.
7 #include <linux/component.h>
8 #include <linux/module.h>
10 #include <linux/of_platform.h>
11 #include <linux/platform_device.h>
12 #include <linux/pm_runtime.h>
13 #include <linux/dma-mapping.h>
15 #include <drm/clients/drm_client_setup.h>
16 #include <drm/drm_atomic.h>
17 #include <drm/drm_atomic_helper.h>
18 #include <drm/drm_drv.h>
19 #include <drm/drm_fbdev_dma.h>
20 #include <drm/drm_fourcc.h>
21 #include <drm/drm_gem.h>
22 #include <drm/drm_gem_framebuffer_helper.h>
23 #include <drm/drm_ioctl.h>
24 #include <drm/drm_of.h>
25 #include <drm/drm_probe_helper.h>
26 #include <drm/drm_vblank.h>
29 #include "mtk_ddp_comp.h"
30 #include "mtk_disp_drv.h"
31 #include "mtk_drm_drv.h"
34 #define DRIVER_NAME "mediatek"
35 #define DRIVER_DESC "Mediatek SoC DRM"
36 #define DRIVER_MAJOR 1
37 #define DRIVER_MINOR 0
39 static const struct drm_mode_config_helper_funcs mtk_drm_mode_config_helpers = {
40 .atomic_commit_tail = drm_atomic_helper_commit_tail_rpm,
43 static struct drm_framebuffer *
44 mtk_drm_mode_fb_create(struct drm_device *dev,
45 struct drm_file *file,
46 const struct drm_mode_fb_cmd2 *cmd)
48 const struct drm_format_info *info = drm_get_format_info(dev, cmd);
50 if (info->num_planes != 1)
51 return ERR_PTR(-EINVAL);
53 return drm_gem_fb_create(dev, file, cmd);
56 static const struct drm_mode_config_funcs mtk_drm_mode_config_funcs = {
57 .fb_create = mtk_drm_mode_fb_create,
58 .atomic_check = drm_atomic_helper_check,
59 .atomic_commit = drm_atomic_helper_commit,
62 static const unsigned int mt2701_mtk_ddp_main[] = {
70 static const unsigned int mt2701_mtk_ddp_ext[] = {
75 static const unsigned int mt7623_mtk_ddp_main[] = {
83 static const unsigned int mt7623_mtk_ddp_ext[] = {
88 static const unsigned int mt2712_mtk_ddp_main[] = {
98 static const unsigned int mt2712_mtk_ddp_ext[] = {
100 DDP_COMPONENT_COLOR1,
108 static const unsigned int mt2712_mtk_ddp_third[] = {
114 static unsigned int mt8167_mtk_ddp_main[] = {
116 DDP_COMPONENT_COLOR0,
120 DDP_COMPONENT_DITHER0,
125 static const unsigned int mt8173_mtk_ddp_main[] = {
127 DDP_COMPONENT_COLOR0,
136 static const unsigned int mt8173_mtk_ddp_ext[] = {
138 DDP_COMPONENT_COLOR1,
144 static const unsigned int mt8183_mtk_ddp_main[] = {
146 DDP_COMPONENT_OVL_2L0,
148 DDP_COMPONENT_COLOR0,
152 DDP_COMPONENT_DITHER0,
156 static const unsigned int mt8183_mtk_ddp_ext[] = {
157 DDP_COMPONENT_OVL_2L1,
162 static const unsigned int mt8186_mtk_ddp_main[] = {
165 DDP_COMPONENT_COLOR0,
169 DDP_COMPONENT_POSTMASK0,
170 DDP_COMPONENT_DITHER0,
174 static const unsigned int mt8186_mtk_ddp_ext[] = {
175 DDP_COMPONENT_OVL_2L0,
180 static const unsigned int mt8188_mtk_ddp_main[] = {
183 DDP_COMPONENT_COLOR0,
187 DDP_COMPONENT_POSTMASK0,
188 DDP_COMPONENT_DITHER0,
191 static const struct mtk_drm_route mt8188_mtk_ddp_main_routes[] = {
192 {0, DDP_COMPONENT_DP_INTF0},
193 {0, DDP_COMPONENT_DSI0},
196 static const unsigned int mt8192_mtk_ddp_main[] = {
198 DDP_COMPONENT_OVL_2L0,
200 DDP_COMPONENT_COLOR0,
204 DDP_COMPONENT_POSTMASK0,
205 DDP_COMPONENT_DITHER0,
209 static const unsigned int mt8192_mtk_ddp_ext[] = {
210 DDP_COMPONENT_OVL_2L2,
215 static const unsigned int mt8195_mtk_ddp_main[] = {
218 DDP_COMPONENT_COLOR0,
222 DDP_COMPONENT_DITHER0,
224 DDP_COMPONENT_MERGE0,
225 DDP_COMPONENT_DP_INTF0,
228 static const unsigned int mt8195_mtk_ddp_ext[] = {
229 DDP_COMPONENT_DRM_OVL_ADAPTOR,
230 DDP_COMPONENT_MERGE5,
231 DDP_COMPONENT_DP_INTF1,
234 static const struct mtk_mmsys_driver_data mt2701_mmsys_driver_data = {
235 .main_path = mt2701_mtk_ddp_main,
236 .main_len = ARRAY_SIZE(mt2701_mtk_ddp_main),
237 .ext_path = mt2701_mtk_ddp_ext,
238 .ext_len = ARRAY_SIZE(mt2701_mtk_ddp_ext),
239 .shadow_register = true,
243 static const struct mtk_mmsys_driver_data mt7623_mmsys_driver_data = {
244 .main_path = mt7623_mtk_ddp_main,
245 .main_len = ARRAY_SIZE(mt7623_mtk_ddp_main),
246 .ext_path = mt7623_mtk_ddp_ext,
247 .ext_len = ARRAY_SIZE(mt7623_mtk_ddp_ext),
248 .shadow_register = true,
252 static const struct mtk_mmsys_driver_data mt2712_mmsys_driver_data = {
253 .main_path = mt2712_mtk_ddp_main,
254 .main_len = ARRAY_SIZE(mt2712_mtk_ddp_main),
255 .ext_path = mt2712_mtk_ddp_ext,
256 .ext_len = ARRAY_SIZE(mt2712_mtk_ddp_ext),
257 .third_path = mt2712_mtk_ddp_third,
258 .third_len = ARRAY_SIZE(mt2712_mtk_ddp_third),
262 static const struct mtk_mmsys_driver_data mt8167_mmsys_driver_data = {
263 .main_path = mt8167_mtk_ddp_main,
264 .main_len = ARRAY_SIZE(mt8167_mtk_ddp_main),
268 static const struct mtk_mmsys_driver_data mt8173_mmsys_driver_data = {
269 .main_path = mt8173_mtk_ddp_main,
270 .main_len = ARRAY_SIZE(mt8173_mtk_ddp_main),
271 .ext_path = mt8173_mtk_ddp_ext,
272 .ext_len = ARRAY_SIZE(mt8173_mtk_ddp_ext),
276 static const struct mtk_mmsys_driver_data mt8183_mmsys_driver_data = {
277 .main_path = mt8183_mtk_ddp_main,
278 .main_len = ARRAY_SIZE(mt8183_mtk_ddp_main),
279 .ext_path = mt8183_mtk_ddp_ext,
280 .ext_len = ARRAY_SIZE(mt8183_mtk_ddp_ext),
284 static const struct mtk_mmsys_driver_data mt8186_mmsys_driver_data = {
285 .main_path = mt8186_mtk_ddp_main,
286 .main_len = ARRAY_SIZE(mt8186_mtk_ddp_main),
287 .ext_path = mt8186_mtk_ddp_ext,
288 .ext_len = ARRAY_SIZE(mt8186_mtk_ddp_ext),
292 static const struct mtk_mmsys_driver_data mt8188_vdosys0_driver_data = {
293 .main_path = mt8188_mtk_ddp_main,
294 .main_len = ARRAY_SIZE(mt8188_mtk_ddp_main),
295 .conn_routes = mt8188_mtk_ddp_main_routes,
296 .num_conn_routes = ARRAY_SIZE(mt8188_mtk_ddp_main_routes),
303 static const struct mtk_mmsys_driver_data mt8192_mmsys_driver_data = {
304 .main_path = mt8192_mtk_ddp_main,
305 .main_len = ARRAY_SIZE(mt8192_mtk_ddp_main),
306 .ext_path = mt8192_mtk_ddp_ext,
307 .ext_len = ARRAY_SIZE(mt8192_mtk_ddp_ext),
311 static const struct mtk_mmsys_driver_data mt8195_vdosys0_driver_data = {
312 .main_path = mt8195_mtk_ddp_main,
313 .main_len = ARRAY_SIZE(mt8195_mtk_ddp_main),
320 static const struct mtk_mmsys_driver_data mt8195_vdosys1_driver_data = {
321 .ext_path = mt8195_mtk_ddp_ext,
322 .ext_len = ARRAY_SIZE(mt8195_mtk_ddp_ext),
326 .min_width = 2, /* 2-pixel align when ethdr is bypassed */
330 static const struct of_device_id mtk_drm_of_ids[] = {
331 { .compatible = "mediatek,mt2701-mmsys",
332 .data = &mt2701_mmsys_driver_data},
333 { .compatible = "mediatek,mt7623-mmsys",
334 .data = &mt7623_mmsys_driver_data},
335 { .compatible = "mediatek,mt2712-mmsys",
336 .data = &mt2712_mmsys_driver_data},
337 { .compatible = "mediatek,mt8167-mmsys",
338 .data = &mt8167_mmsys_driver_data},
339 { .compatible = "mediatek,mt8173-mmsys",
340 .data = &mt8173_mmsys_driver_data},
341 { .compatible = "mediatek,mt8183-mmsys",
342 .data = &mt8183_mmsys_driver_data},
343 { .compatible = "mediatek,mt8186-mmsys",
344 .data = &mt8186_mmsys_driver_data},
345 { .compatible = "mediatek,mt8188-vdosys0",
346 .data = &mt8188_vdosys0_driver_data},
347 { .compatible = "mediatek,mt8188-vdosys1",
348 .data = &mt8195_vdosys1_driver_data},
349 { .compatible = "mediatek,mt8192-mmsys",
350 .data = &mt8192_mmsys_driver_data},
351 { .compatible = "mediatek,mt8195-mmsys",
352 .data = &mt8195_vdosys0_driver_data},
353 { .compatible = "mediatek,mt8195-vdosys0",
354 .data = &mt8195_vdosys0_driver_data},
355 { .compatible = "mediatek,mt8195-vdosys1",
356 .data = &mt8195_vdosys1_driver_data},
359 MODULE_DEVICE_TABLE(of, mtk_drm_of_ids);
361 static int mtk_drm_match(struct device *dev, const void *data)
363 if (!strncmp(dev_name(dev), "mediatek-drm", sizeof("mediatek-drm") - 1))
368 static bool mtk_drm_get_all_drm_priv(struct device *dev)
370 struct mtk_drm_private *drm_priv = dev_get_drvdata(dev);
371 struct mtk_drm_private *all_drm_priv[MAX_CRTC];
372 struct mtk_drm_private *temp_drm_priv;
373 struct device_node *phandle = dev->parent->of_node;
374 const struct of_device_id *of_id;
375 struct device_node *node;
376 struct device *drm_dev;
377 unsigned int cnt = 0;
380 for_each_child_of_node(phandle->parent, node) {
381 struct platform_device *pdev;
383 of_id = of_match_node(mtk_drm_of_ids, node);
387 pdev = of_find_device_by_node(node);
391 drm_dev = device_find_child(&pdev->dev, NULL, mtk_drm_match);
395 temp_drm_priv = dev_get_drvdata(drm_dev);
399 if (temp_drm_priv->data->main_len)
400 all_drm_priv[CRTC_MAIN] = temp_drm_priv;
401 else if (temp_drm_priv->data->ext_len)
402 all_drm_priv[CRTC_EXT] = temp_drm_priv;
403 else if (temp_drm_priv->data->third_len)
404 all_drm_priv[CRTC_THIRD] = temp_drm_priv;
406 if (temp_drm_priv->mtk_drm_bound)
409 if (cnt == MAX_CRTC) {
415 if (drm_priv->data->mmsys_dev_num == cnt) {
416 for (i = 0; i < cnt; i++)
417 for (j = 0; j < cnt; j++)
418 all_drm_priv[j]->all_drm_private[i] = all_drm_priv[i];
426 static bool mtk_drm_find_mmsys_comp(struct mtk_drm_private *private, int comp_id)
428 const struct mtk_mmsys_driver_data *drv_data = private->data;
431 if (drv_data->main_path)
432 for (i = 0; i < drv_data->main_len; i++)
433 if (drv_data->main_path[i] == comp_id)
436 if (drv_data->ext_path)
437 for (i = 0; i < drv_data->ext_len; i++)
438 if (drv_data->ext_path[i] == comp_id)
441 if (drv_data->third_path)
442 for (i = 0; i < drv_data->third_len; i++)
443 if (drv_data->third_path[i] == comp_id)
446 if (drv_data->num_conn_routes)
447 for (i = 0; i < drv_data->num_conn_routes; i++)
448 if (drv_data->conn_routes[i].route_ddp == comp_id)
454 static int mtk_drm_kms_init(struct drm_device *drm)
456 struct mtk_drm_private *private = drm->dev_private;
457 struct mtk_drm_private *priv_n;
458 struct device *dma_dev = NULL;
459 struct drm_crtc *crtc;
462 if (drm_firmware_drivers_only())
465 ret = drmm_mode_config_init(drm);
469 drm->mode_config.min_width = 64;
470 drm->mode_config.min_height = 64;
473 * set max width and height as default value(4096x4096).
474 * this value would be used to check framebuffer size limitation
475 * at drm_mode_addfb().
477 drm->mode_config.max_width = 4096;
478 drm->mode_config.max_height = 4096;
479 drm->mode_config.funcs = &mtk_drm_mode_config_funcs;
480 drm->mode_config.helper_private = &mtk_drm_mode_config_helpers;
482 for (i = 0; i < private->data->mmsys_dev_num; i++) {
483 drm->dev_private = private->all_drm_private[i];
484 ret = component_bind_all(private->all_drm_private[i]->dev, drm);
490 * Ensure internal panels are at the top of the connector list before
493 drm_helper_move_panel_connectors_to_head(drm);
496 * 1. We currently support two fixed data streams, each optional,
497 * and each statically assigned to a crtc:
498 * OVL0 -> COLOR0 -> AAL -> OD -> RDMA0 -> UFOE -> DSI0 ...
499 * 2. For multi mmsys architecture, crtc path data are located in
500 * different drm private data structures. Loop through crtc index to
501 * create crtc from the main path and then ext_path and finally the
504 for (i = 0; i < MAX_CRTC; i++) {
505 for (j = 0; j < private->data->mmsys_dev_num; j++) {
506 priv_n = private->all_drm_private[j];
508 if (priv_n->data->max_width)
509 drm->mode_config.max_width = priv_n->data->max_width;
511 if (priv_n->data->min_width)
512 drm->mode_config.min_width = priv_n->data->min_width;
514 if (priv_n->data->min_height)
515 drm->mode_config.min_height = priv_n->data->min_height;
517 if (i == CRTC_MAIN && priv_n->data->main_len) {
518 ret = mtk_crtc_create(drm, priv_n->data->main_path,
519 priv_n->data->main_len, j,
520 priv_n->data->conn_routes,
521 priv_n->data->num_conn_routes);
523 goto err_component_unbind;
526 } else if (i == CRTC_EXT && priv_n->data->ext_len) {
527 ret = mtk_crtc_create(drm, priv_n->data->ext_path,
528 priv_n->data->ext_len, j, NULL, 0);
530 goto err_component_unbind;
533 } else if (i == CRTC_THIRD && priv_n->data->third_len) {
534 ret = mtk_crtc_create(drm, priv_n->data->third_path,
535 priv_n->data->third_len, j, NULL, 0);
537 goto err_component_unbind;
544 /* IGT will check if the cursor size is configured */
545 drm->mode_config.cursor_width = 512;
546 drm->mode_config.cursor_height = 512;
548 /* Use OVL device for all DMA memory allocations */
549 crtc = drm_crtc_from_index(drm, 0);
551 dma_dev = mtk_crtc_dma_dev_get(crtc);
554 dev_err(drm->dev, "Need at least one OVL device\n");
555 goto err_component_unbind;
558 for (i = 0; i < private->data->mmsys_dev_num; i++)
559 private->all_drm_private[i]->dma_dev = dma_dev;
562 * Configure the DMA segment size to make sure we get contiguous IOVA
563 * when importing PRIME buffers.
565 dma_set_max_seg_size(dma_dev, UINT_MAX);
567 ret = drm_vblank_init(drm, MAX_CRTC);
569 goto err_component_unbind;
571 drm_kms_helper_poll_init(drm);
572 drm_mode_config_reset(drm);
576 err_component_unbind:
577 for (i = 0; i < private->data->mmsys_dev_num; i++)
578 component_unbind_all(private->all_drm_private[i]->dev, drm);
580 for (i = 0; i < private->data->mmsys_dev_num; i++)
581 put_device(private->all_drm_private[i]->mutex_dev);
586 static void mtk_drm_kms_deinit(struct drm_device *drm)
588 drm_kms_helper_poll_fini(drm);
589 drm_atomic_helper_shutdown(drm);
591 component_unbind_all(drm->dev, drm);
594 DEFINE_DRM_GEM_FOPS(mtk_drm_fops);
597 * We need to override this because the device used to import the memory is
598 * not dev->dev, as drm_gem_prime_import() expects.
600 static struct drm_gem_object *mtk_gem_prime_import(struct drm_device *dev,
601 struct dma_buf *dma_buf)
603 struct mtk_drm_private *private = dev->dev_private;
605 return drm_gem_prime_import_dev(dev, dma_buf, private->dma_dev);
608 static const struct drm_driver mtk_drm_driver = {
609 .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_ATOMIC,
611 .dumb_create = mtk_gem_dumb_create,
612 DRM_FBDEV_DMA_DRIVER_OPS,
614 .gem_prime_import = mtk_gem_prime_import,
615 .gem_prime_import_sg_table = mtk_gem_prime_import_sg_table,
616 .fops = &mtk_drm_fops,
620 .major = DRIVER_MAJOR,
621 .minor = DRIVER_MINOR,
624 static int compare_dev(struct device *dev, void *data)
626 return dev == (struct device *)data;
629 static int mtk_drm_bind(struct device *dev)
631 struct mtk_drm_private *private = dev_get_drvdata(dev);
632 struct platform_device *pdev;
633 struct drm_device *drm;
636 pdev = of_find_device_by_node(private->mutex_node);
638 dev_err(dev, "Waiting for disp-mutex device %pOF\n",
639 private->mutex_node);
640 of_node_put(private->mutex_node);
641 return -EPROBE_DEFER;
644 private->mutex_dev = &pdev->dev;
645 private->mtk_drm_bound = true;
648 if (!mtk_drm_get_all_drm_priv(dev))
651 drm = drm_dev_alloc(&mtk_drm_driver, dev);
655 private->drm_master = true;
656 drm->dev_private = private;
657 for (i = 0; i < private->data->mmsys_dev_num; i++)
658 private->all_drm_private[i]->drm = drm;
660 ret = mtk_drm_kms_init(drm);
664 ret = drm_dev_register(drm, 0);
668 drm_client_setup(drm, NULL);
673 mtk_drm_kms_deinit(drm);
677 for (i = 0; i < private->data->mmsys_dev_num; i++)
678 private->all_drm_private[i]->drm = NULL;
682 static void mtk_drm_unbind(struct device *dev)
684 struct mtk_drm_private *private = dev_get_drvdata(dev);
686 /* for multi mmsys dev, unregister drm dev in mmsys master */
687 if (private->drm_master) {
688 drm_dev_unregister(private->drm);
689 mtk_drm_kms_deinit(private->drm);
690 drm_dev_put(private->drm);
692 private->mtk_drm_bound = false;
693 private->drm_master = false;
697 static const struct component_master_ops mtk_drm_ops = {
698 .bind = mtk_drm_bind,
699 .unbind = mtk_drm_unbind,
702 static const struct of_device_id mtk_ddp_comp_dt_ids[] = {
703 { .compatible = "mediatek,mt8167-disp-aal",
704 .data = (void *)MTK_DISP_AAL},
705 { .compatible = "mediatek,mt8173-disp-aal",
706 .data = (void *)MTK_DISP_AAL},
707 { .compatible = "mediatek,mt8183-disp-aal",
708 .data = (void *)MTK_DISP_AAL},
709 { .compatible = "mediatek,mt8192-disp-aal",
710 .data = (void *)MTK_DISP_AAL},
711 { .compatible = "mediatek,mt8167-disp-ccorr",
712 .data = (void *)MTK_DISP_CCORR },
713 { .compatible = "mediatek,mt8183-disp-ccorr",
714 .data = (void *)MTK_DISP_CCORR },
715 { .compatible = "mediatek,mt8192-disp-ccorr",
716 .data = (void *)MTK_DISP_CCORR },
717 { .compatible = "mediatek,mt2701-disp-color",
718 .data = (void *)MTK_DISP_COLOR },
719 { .compatible = "mediatek,mt8167-disp-color",
720 .data = (void *)MTK_DISP_COLOR },
721 { .compatible = "mediatek,mt8173-disp-color",
722 .data = (void *)MTK_DISP_COLOR },
723 { .compatible = "mediatek,mt8167-disp-dither",
724 .data = (void *)MTK_DISP_DITHER },
725 { .compatible = "mediatek,mt8183-disp-dither",
726 .data = (void *)MTK_DISP_DITHER },
727 { .compatible = "mediatek,mt8195-disp-dsc",
728 .data = (void *)MTK_DISP_DSC },
729 { .compatible = "mediatek,mt8167-disp-gamma",
730 .data = (void *)MTK_DISP_GAMMA, },
731 { .compatible = "mediatek,mt8173-disp-gamma",
732 .data = (void *)MTK_DISP_GAMMA, },
733 { .compatible = "mediatek,mt8183-disp-gamma",
734 .data = (void *)MTK_DISP_GAMMA, },
735 { .compatible = "mediatek,mt8195-disp-gamma",
736 .data = (void *)MTK_DISP_GAMMA, },
737 { .compatible = "mediatek,mt8195-disp-merge",
738 .data = (void *)MTK_DISP_MERGE },
739 { .compatible = "mediatek,mt2701-disp-mutex",
740 .data = (void *)MTK_DISP_MUTEX },
741 { .compatible = "mediatek,mt2712-disp-mutex",
742 .data = (void *)MTK_DISP_MUTEX },
743 { .compatible = "mediatek,mt8167-disp-mutex",
744 .data = (void *)MTK_DISP_MUTEX },
745 { .compatible = "mediatek,mt8173-disp-mutex",
746 .data = (void *)MTK_DISP_MUTEX },
747 { .compatible = "mediatek,mt8183-disp-mutex",
748 .data = (void *)MTK_DISP_MUTEX },
749 { .compatible = "mediatek,mt8186-disp-mutex",
750 .data = (void *)MTK_DISP_MUTEX },
751 { .compatible = "mediatek,mt8188-disp-mutex",
752 .data = (void *)MTK_DISP_MUTEX },
753 { .compatible = "mediatek,mt8192-disp-mutex",
754 .data = (void *)MTK_DISP_MUTEX },
755 { .compatible = "mediatek,mt8195-disp-mutex",
756 .data = (void *)MTK_DISP_MUTEX },
757 { .compatible = "mediatek,mt8173-disp-od",
758 .data = (void *)MTK_DISP_OD },
759 { .compatible = "mediatek,mt2701-disp-ovl",
760 .data = (void *)MTK_DISP_OVL },
761 { .compatible = "mediatek,mt8167-disp-ovl",
762 .data = (void *)MTK_DISP_OVL },
763 { .compatible = "mediatek,mt8173-disp-ovl",
764 .data = (void *)MTK_DISP_OVL },
765 { .compatible = "mediatek,mt8183-disp-ovl",
766 .data = (void *)MTK_DISP_OVL },
767 { .compatible = "mediatek,mt8192-disp-ovl",
768 .data = (void *)MTK_DISP_OVL },
769 { .compatible = "mediatek,mt8195-disp-ovl",
770 .data = (void *)MTK_DISP_OVL },
771 { .compatible = "mediatek,mt8183-disp-ovl-2l",
772 .data = (void *)MTK_DISP_OVL_2L },
773 { .compatible = "mediatek,mt8192-disp-ovl-2l",
774 .data = (void *)MTK_DISP_OVL_2L },
775 { .compatible = "mediatek,mt8192-disp-postmask",
776 .data = (void *)MTK_DISP_POSTMASK },
777 { .compatible = "mediatek,mt2701-disp-pwm",
778 .data = (void *)MTK_DISP_BLS },
779 { .compatible = "mediatek,mt8167-disp-pwm",
780 .data = (void *)MTK_DISP_PWM },
781 { .compatible = "mediatek,mt8173-disp-pwm",
782 .data = (void *)MTK_DISP_PWM },
783 { .compatible = "mediatek,mt2701-disp-rdma",
784 .data = (void *)MTK_DISP_RDMA },
785 { .compatible = "mediatek,mt8167-disp-rdma",
786 .data = (void *)MTK_DISP_RDMA },
787 { .compatible = "mediatek,mt8173-disp-rdma",
788 .data = (void *)MTK_DISP_RDMA },
789 { .compatible = "mediatek,mt8183-disp-rdma",
790 .data = (void *)MTK_DISP_RDMA },
791 { .compatible = "mediatek,mt8195-disp-rdma",
792 .data = (void *)MTK_DISP_RDMA },
793 { .compatible = "mediatek,mt8173-disp-ufoe",
794 .data = (void *)MTK_DISP_UFOE },
795 { .compatible = "mediatek,mt8173-disp-wdma",
796 .data = (void *)MTK_DISP_WDMA },
797 { .compatible = "mediatek,mt2701-dpi",
798 .data = (void *)MTK_DPI },
799 { .compatible = "mediatek,mt8167-dsi",
800 .data = (void *)MTK_DSI },
801 { .compatible = "mediatek,mt8173-dpi",
802 .data = (void *)MTK_DPI },
803 { .compatible = "mediatek,mt8183-dpi",
804 .data = (void *)MTK_DPI },
805 { .compatible = "mediatek,mt8186-dpi",
806 .data = (void *)MTK_DPI },
807 { .compatible = "mediatek,mt8188-dp-intf",
808 .data = (void *)MTK_DP_INTF },
809 { .compatible = "mediatek,mt8192-dpi",
810 .data = (void *)MTK_DPI },
811 { .compatible = "mediatek,mt8195-dp-intf",
812 .data = (void *)MTK_DP_INTF },
813 { .compatible = "mediatek,mt2701-dsi",
814 .data = (void *)MTK_DSI },
815 { .compatible = "mediatek,mt8173-dsi",
816 .data = (void *)MTK_DSI },
817 { .compatible = "mediatek,mt8183-dsi",
818 .data = (void *)MTK_DSI },
819 { .compatible = "mediatek,mt8186-dsi",
820 .data = (void *)MTK_DSI },
821 { .compatible = "mediatek,mt8188-dsi",
822 .data = (void *)MTK_DSI },
826 static int mtk_drm_of_get_ddp_comp_type(struct device_node *node, enum mtk_ddp_comp_type *ctype)
828 const struct of_device_id *of_id = of_match_node(mtk_ddp_comp_dt_ids, node);
833 *ctype = (enum mtk_ddp_comp_type)((uintptr_t)of_id->data);
838 static int mtk_drm_of_get_ddp_ep_cid(struct device_node *node,
839 int output_port, enum mtk_crtc_path crtc_path,
840 struct device_node **next, unsigned int *cid)
842 struct device_node *ep_dev_node, *ep_out;
843 enum mtk_ddp_comp_type comp_type;
846 ep_out = of_graph_get_endpoint_by_regs(node, output_port, crtc_path);
850 ep_dev_node = of_graph_get_remote_port_parent(ep_out);
856 * Pass the next node pointer regardless of failures in the later code
857 * so that if this function is called in a loop it will walk through all
858 * of the subsequent endpoints anyway.
862 if (!of_device_is_available(ep_dev_node))
865 ret = mtk_drm_of_get_ddp_comp_type(ep_dev_node, &comp_type);
867 if (mtk_ovl_adaptor_is_comp_present(ep_dev_node)) {
868 *cid = (unsigned int)DDP_COMPONENT_DRM_OVL_ADAPTOR;
874 ret = mtk_ddp_comp_get_id(ep_dev_node, comp_type);
878 /* All ok! Pass the Component ID to the caller. */
879 *cid = (unsigned int)ret;
885 * mtk_drm_of_ddp_path_build_one - Build a Display HW Pipeline for a CRTC Path
886 * @dev: The mediatek-drm device
887 * @cpath: CRTC Path relative to a VDO or MMSYS
888 * @out_path: Pointer to an array that will contain the new pipeline
889 * @out_path_len: Number of entries in the pipeline array
891 * MediaTek SoCs can use different DDP hardware pipelines (or paths) depending
892 * on the board-specific desired display configuration; this function walks
893 * through all of the output endpoints starting from a VDO or MMSYS hardware
894 * instance and builds the right pipeline as specified in device trees.
897 * * %0 - Display HW Pipeline successfully built and validated
898 * * %-ENOENT - Display pipeline was not specified in device tree
899 * * %-EINVAL - Display pipeline built but validation failed
900 * * %-ENOMEM - Failure to allocate pipeline array to pass to the caller
902 static int mtk_drm_of_ddp_path_build_one(struct device *dev, enum mtk_crtc_path cpath,
903 const unsigned int **out_path,
904 unsigned int *out_path_len)
906 struct device_node *next = NULL, *prev, *vdo = dev->parent->of_node;
907 unsigned int temp_path[DDP_COMPONENT_DRM_ID_MAX] = { 0 };
908 unsigned int *final_ddp_path;
909 unsigned short int idx = 0;
910 bool ovl_adaptor_comp_added = false;
913 /* Get the first entry for the temp_path array */
914 ret = mtk_drm_of_get_ddp_ep_cid(vdo, 0, cpath, &next, &temp_path[idx]);
916 if (next && temp_path[idx] == DDP_COMPONENT_DRM_OVL_ADAPTOR) {
917 dev_dbg(dev, "Adding OVL Adaptor for %pOF\n", next);
918 ovl_adaptor_comp_added = true;
921 dev_err(dev, "Invalid component %pOF\n", next);
923 dev_err(dev, "Cannot find first endpoint for path %d\n", cpath);
931 * Walk through port outputs until we reach the last valid mediatek-drm component.
932 * To be valid, this must end with an "invalid" component that is a display node.
936 ret = mtk_drm_of_get_ddp_ep_cid(next, 1, cpath, &next, &temp_path[idx]);
944 * If this is an OVL adaptor exclusive component and one of those
945 * was already added, don't add another instance of the generic
946 * DDP_COMPONENT_OVL_ADAPTOR, as this is used only to decide whether
947 * to probe that component master driver of which only one instance
948 * is needed and possible.
950 if (temp_path[idx] == DDP_COMPONENT_DRM_OVL_ADAPTOR) {
951 if (!ovl_adaptor_comp_added)
952 ovl_adaptor_comp_added = true;
956 } while (++idx < DDP_COMPONENT_DRM_ID_MAX);
959 * The device component might not be enabled: in that case, don't
960 * check the last entry and just report that the device is missing.
965 /* If the last entry is not a final display output, the configuration is wrong */
966 switch (temp_path[idx - 1]) {
967 case DDP_COMPONENT_DP_INTF0:
968 case DDP_COMPONENT_DP_INTF1:
969 case DDP_COMPONENT_DPI0:
970 case DDP_COMPONENT_DPI1:
971 case DDP_COMPONENT_DSI0:
972 case DDP_COMPONENT_DSI1:
973 case DDP_COMPONENT_DSI2:
974 case DDP_COMPONENT_DSI3:
977 dev_err(dev, "Invalid display hw pipeline. Last component: %d (ret=%d)\n",
978 temp_path[idx - 1], ret);
982 final_ddp_path = devm_kmemdup(dev, temp_path, idx * sizeof(temp_path[0]), GFP_KERNEL);
986 dev_dbg(dev, "Display HW Pipeline built with %d components.\n", idx);
988 /* Pipeline built! */
989 *out_path = final_ddp_path;
995 static int mtk_drm_of_ddp_path_build(struct device *dev, struct device_node *node,
996 struct mtk_mmsys_driver_data *data)
998 struct device_node *ep_node;
999 struct of_endpoint of_ep;
1000 bool output_present[MAX_CRTC] = { false };
1003 for_each_endpoint_of_node(node, ep_node) {
1004 ret = of_graph_parse_endpoint(ep_node, &of_ep);
1006 dev_err_probe(dev, ret, "Cannot parse endpoint\n");
1010 if (of_ep.id >= MAX_CRTC) {
1011 ret = dev_err_probe(dev, -EINVAL,
1012 "Invalid endpoint%u number\n", of_ep.port);
1016 output_present[of_ep.id] = true;
1020 of_node_put(ep_node);
1024 if (output_present[CRTC_MAIN]) {
1025 ret = mtk_drm_of_ddp_path_build_one(dev, CRTC_MAIN,
1026 &data->main_path, &data->main_len);
1027 if (ret && ret != -ENODEV)
1031 if (output_present[CRTC_EXT]) {
1032 ret = mtk_drm_of_ddp_path_build_one(dev, CRTC_EXT,
1033 &data->ext_path, &data->ext_len);
1034 if (ret && ret != -ENODEV)
1038 if (output_present[CRTC_THIRD]) {
1039 ret = mtk_drm_of_ddp_path_build_one(dev, CRTC_THIRD,
1040 &data->third_path, &data->third_len);
1041 if (ret && ret != -ENODEV)
1048 static int mtk_drm_probe(struct platform_device *pdev)
1050 struct device *dev = &pdev->dev;
1051 struct device_node *phandle = dev->parent->of_node;
1052 const struct of_device_id *of_id;
1053 struct mtk_drm_private *private;
1054 struct mtk_mmsys_driver_data *mtk_drm_data;
1055 struct device_node *node;
1056 struct component_match *match = NULL;
1057 struct platform_device *ovl_adaptor;
1061 private = devm_kzalloc(dev, sizeof(*private), GFP_KERNEL);
1065 private->mmsys_dev = dev->parent;
1066 if (!private->mmsys_dev) {
1067 dev_err(dev, "Failed to get MMSYS device\n");
1071 of_id = of_match_node(mtk_drm_of_ids, phandle);
1075 mtk_drm_data = (struct mtk_mmsys_driver_data *)of_id->data;
1079 /* Try to build the display pipeline from devicetree graphs */
1080 if (of_graph_is_present(phandle)) {
1081 dev_dbg(dev, "Building display pipeline for MMSYS %u\n",
1082 mtk_drm_data->mmsys_id);
1083 private->data = devm_kmemdup(dev, mtk_drm_data,
1084 sizeof(*mtk_drm_data), GFP_KERNEL);
1088 ret = mtk_drm_of_ddp_path_build(dev, phandle, private->data);
1092 /* No devicetree graphs support: go with hardcoded paths if present */
1093 dev_dbg(dev, "Using hardcoded paths for MMSYS %u\n", mtk_drm_data->mmsys_id);
1094 private->data = mtk_drm_data;
1097 private->all_drm_private = devm_kmalloc_array(dev, private->data->mmsys_dev_num,
1098 sizeof(*private->all_drm_private),
1100 if (!private->all_drm_private)
1103 /* Bringup ovl_adaptor */
1104 if (mtk_drm_find_mmsys_comp(private, DDP_COMPONENT_DRM_OVL_ADAPTOR)) {
1105 ovl_adaptor = platform_device_register_data(dev, "mediatek-disp-ovl-adaptor",
1106 PLATFORM_DEVID_AUTO,
1107 (void *)private->mmsys_dev,
1108 sizeof(*private->mmsys_dev));
1109 private->ddp_comp[DDP_COMPONENT_DRM_OVL_ADAPTOR].dev = &ovl_adaptor->dev;
1110 mtk_ddp_comp_init(NULL, &private->ddp_comp[DDP_COMPONENT_DRM_OVL_ADAPTOR],
1111 DDP_COMPONENT_DRM_OVL_ADAPTOR);
1112 component_match_add(dev, &match, compare_dev, &ovl_adaptor->dev);
1115 /* Iterate over sibling DISP function blocks */
1116 for_each_child_of_node(phandle->parent, node) {
1117 enum mtk_ddp_comp_type comp_type;
1120 ret = mtk_drm_of_get_ddp_comp_type(node, &comp_type);
1124 if (!of_device_is_available(node)) {
1125 dev_dbg(dev, "Skipping disabled component %pOF\n",
1130 if (comp_type == MTK_DISP_MUTEX) {
1133 id = of_alias_get_id(node, "mutex");
1134 if (id < 0 || id == private->data->mmsys_id) {
1135 private->mutex_node = of_node_get(node);
1136 dev_dbg(dev, "get mutex for mmsys %d", private->data->mmsys_id);
1141 comp_id = mtk_ddp_comp_get_id(node, comp_type);
1143 dev_warn(dev, "Skipping unknown component %pOF\n",
1148 if (!mtk_drm_find_mmsys_comp(private, comp_id))
1151 private->comp_node[comp_id] = of_node_get(node);
1154 * Currently only the AAL, CCORR, COLOR, GAMMA, MERGE, OVL, RDMA, DSI, and DPI
1155 * blocks have separate component platform drivers and initialize their own
1156 * DDP component structure. The others are initialized here.
1158 if (comp_type == MTK_DISP_AAL ||
1159 comp_type == MTK_DISP_CCORR ||
1160 comp_type == MTK_DISP_COLOR ||
1161 comp_type == MTK_DISP_GAMMA ||
1162 comp_type == MTK_DISP_MERGE ||
1163 comp_type == MTK_DISP_OVL ||
1164 comp_type == MTK_DISP_OVL_2L ||
1165 comp_type == MTK_DISP_OVL_ADAPTOR ||
1166 comp_type == MTK_DISP_RDMA ||
1167 comp_type == MTK_DP_INTF ||
1168 comp_type == MTK_DPI ||
1169 comp_type == MTK_DSI) {
1170 dev_info(dev, "Adding component match for %pOF\n",
1172 drm_of_component_match_add(dev, &match, component_compare_of,
1176 ret = mtk_ddp_comp_init(node, &private->ddp_comp[comp_id], comp_id);
1183 if (!private->mutex_node) {
1184 dev_err(dev, "Failed to find disp-mutex node\n");
1189 pm_runtime_enable(dev);
1191 platform_set_drvdata(pdev, private);
1193 ret = component_master_add_with_match(dev, &mtk_drm_ops, match);
1200 pm_runtime_disable(dev);
1202 of_node_put(private->mutex_node);
1203 for (i = 0; i < DDP_COMPONENT_DRM_ID_MAX; i++)
1204 of_node_put(private->comp_node[i]);
1208 static void mtk_drm_remove(struct platform_device *pdev)
1210 struct mtk_drm_private *private = platform_get_drvdata(pdev);
1213 component_master_del(&pdev->dev, &mtk_drm_ops);
1214 pm_runtime_disable(&pdev->dev);
1215 of_node_put(private->mutex_node);
1216 for (i = 0; i < DDP_COMPONENT_DRM_ID_MAX; i++)
1217 of_node_put(private->comp_node[i]);
1220 static void mtk_drm_shutdown(struct platform_device *pdev)
1222 struct mtk_drm_private *private = platform_get_drvdata(pdev);
1224 drm_atomic_helper_shutdown(private->drm);
1227 static int mtk_drm_sys_prepare(struct device *dev)
1229 struct mtk_drm_private *private = dev_get_drvdata(dev);
1230 struct drm_device *drm = private->drm;
1232 if (private->drm_master)
1233 return drm_mode_config_helper_suspend(drm);
1238 static void mtk_drm_sys_complete(struct device *dev)
1240 struct mtk_drm_private *private = dev_get_drvdata(dev);
1241 struct drm_device *drm = private->drm;
1244 if (private->drm_master)
1245 ret = drm_mode_config_helper_resume(drm);
1247 dev_err(dev, "Failed to resume\n");
1250 static const struct dev_pm_ops mtk_drm_pm_ops = {
1251 .prepare = mtk_drm_sys_prepare,
1252 .complete = mtk_drm_sys_complete,
1255 static struct platform_driver mtk_drm_platform_driver = {
1256 .probe = mtk_drm_probe,
1257 .remove = mtk_drm_remove,
1258 .shutdown = mtk_drm_shutdown,
1260 .name = "mediatek-drm",
1261 .pm = &mtk_drm_pm_ops,
1265 static struct platform_driver * const mtk_drm_drivers[] = {
1266 &mtk_disp_aal_driver,
1267 &mtk_disp_ccorr_driver,
1268 &mtk_disp_color_driver,
1269 &mtk_disp_gamma_driver,
1270 &mtk_disp_merge_driver,
1271 &mtk_disp_ovl_adaptor_driver,
1272 &mtk_disp_ovl_driver,
1273 &mtk_disp_rdma_driver,
1275 &mtk_drm_platform_driver,
1278 &mtk_mdp_rdma_driver,
1279 &mtk_padding_driver,
1282 static int __init mtk_drm_init(void)
1284 return platform_register_drivers(mtk_drm_drivers,
1285 ARRAY_SIZE(mtk_drm_drivers));
1288 static void __exit mtk_drm_exit(void)
1290 platform_unregister_drivers(mtk_drm_drivers,
1291 ARRAY_SIZE(mtk_drm_drivers));
1294 module_init(mtk_drm_init);
1295 module_exit(mtk_drm_exit);
1298 MODULE_DESCRIPTION("Mediatek SoC DRM driver");
1299 MODULE_LICENSE("GPL v2");