linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: amergnat@baylibre.com
To: Chun-Kuang Hu <chunkuang.hu@kernel.org>,
	 Philipp Zabel <p.zabel@pengutronix.de>,
	 Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	 Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	 David Airlie <airlied@gmail.com>,
	Daniel Vetter <daniel@ffwll.ch>,  Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	 Conor Dooley <conor+dt@kernel.org>,
	 Matthias Brugger <matthias.bgg@gmail.com>,
	 AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	 Jitao Shi <jitao.shi@mediatek.com>, CK Hu <ck.hu@mediatek.com>,
	 Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>
Cc: dri-devel@lists.freedesktop.org,
	linux-mediatek@lists.infradead.org,  devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	 linux-arm-kernel@lists.infradead.org,
	 Alexandre Mergnat <amergnat@baylibre.com>,
	 Fabien Parent <fparent@baylibre.com>
Subject: [PATCH v4 12/15] drm/mediatek: add MT8365 SoC support
Date: Thu, 23 May 2024 14:49:25 +0200	[thread overview]
Message-ID: <20231023-display-support-v4-12-ed82eb168fb1@baylibre.com> (raw)
In-Reply-To: <20231023-display-support-v4-0-ed82eb168fb1@baylibre.com>

From: Fabien Parent <fparent@baylibre.com>

Add DRM support for MT8365 SoC.

Signed-off-by: Fabien Parent <fparent@baylibre.com>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Alexandre Mergnat <amergnat@baylibre.com>
---
 drivers/gpu/drm/mediatek/mtk_drm_drv.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/gpu/drm/mediatek/mtk_drm_drv.c b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
index ce8f3cc6e853..e1c3281651ae 100644
--- a/drivers/gpu/drm/mediatek/mtk_drm_drv.c
+++ b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
@@ -318,6 +318,10 @@ static const struct mtk_mmsys_driver_data mt8195_vdosys1_driver_data = {
 	.mmsys_dev_num = 2,
 };
 
+static const struct mtk_mmsys_driver_data mt8365_mmsys_driver_data = {
+	.mmsys_dev_num = 1,
+};
+
 static const struct of_device_id mtk_drm_of_ids[] = {
 	{ .compatible = "mediatek,mt2701-mmsys",
 	  .data = &mt2701_mmsys_driver_data},
@@ -345,6 +349,8 @@ static const struct of_device_id mtk_drm_of_ids[] = {
 	  .data = &mt8195_vdosys0_driver_data},
 	{ .compatible = "mediatek,mt8195-vdosys1",
 	  .data = &mt8195_vdosys1_driver_data},
+	{ .compatible = "mediatek,mt8365-mmsys",
+	  .data = &mt8365_mmsys_driver_data},
 	{ }
 };
 MODULE_DEVICE_TABLE(of, mtk_drm_of_ids);
@@ -732,6 +738,8 @@ static const struct of_device_id mtk_ddp_comp_dt_ids[] = {
 	  .data = (void *)MTK_DISP_MUTEX },
 	{ .compatible = "mediatek,mt8195-disp-mutex",
 	  .data = (void *)MTK_DISP_MUTEX },
+	{ .compatible = "mediatek,mt8365-disp-mutex",
+	  .data = (void *)MTK_DISP_MUTEX },
 	{ .compatible = "mediatek,mt8173-disp-od",
 	  .data = (void *)MTK_DISP_OD },
 	{ .compatible = "mediatek,mt2701-disp-ovl",

-- 
2.25.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2024-05-23 12:52 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-23 12:49 [PATCH v4 00/15] Add display support for the MT8365-EVK board Alexandre Mergnat
2024-05-23 12:49 ` [PATCH v4 01/15] dt-bindings: display: mediatek: aal: add compatible for MT8365 SoC Alexandre Mergnat
2024-05-24  2:21   ` CK Hu (胡俊光)
2024-05-23 12:49 ` [PATCH v4 02/15] dt-bindings: display: mediatek: ccorr: " Alexandre Mergnat
2024-05-24  5:21   ` CK Hu (胡俊光)
2024-05-23 12:49 ` [PATCH v4 03/15] dt-bindings: display: mediatek: color: " Alexandre Mergnat
2024-05-24  5:58   ` CK Hu (胡俊光)
2024-05-23 12:49 ` [PATCH v4 04/15] dt-bindings: display: mediatek: dither: " Alexandre Mergnat
2024-05-24  6:21   ` CK Hu (胡俊光)
2024-05-23 12:49 ` [PATCH v4 05/15] dt-bindings: display: mediatek: dsi: " Alexandre Mergnat
2024-05-24  7:55   ` CK Hu (胡俊光)
2024-05-23 12:49 ` [PATCH v4 06/15] dt-bindings: display: mediatek: dpi: add power-domains property amergnat
2024-05-24  8:56   ` CK Hu (胡俊光)
2024-06-21 15:10   ` Chun-Kuang Hu
2024-06-24  7:18     ` Alexandre Mergnat
2024-05-23 12:49 ` [PATCH v4 07/15] dt-bindings: display: mediatek: dpi: add compatible for MT8365 Alexandre Mergnat
2024-05-24  9:02   ` CK Hu (胡俊光)
2024-05-23 12:49 ` [PATCH v4 08/15] dt-bindings: display: mediatek: gamma: add compatible for MT8365 SoC Alexandre Mergnat
2024-05-23 12:49 ` [PATCH v4 09/15] dt-bindings: display: mediatek: ovl: " Alexandre Mergnat
2024-05-23 12:49 ` [PATCH v4 10/15] dt-bindings: display: mediatek: rdma: " Alexandre Mergnat
2024-05-23 12:49 ` [PATCH v4 11/15] drm/mediatek: dsi: Improves the DSI lane setup robustness Alexandre Mergnat
2024-06-27 14:31   ` Chun-Kuang Hu
2024-05-23 12:49 ` amergnat [this message]
2024-06-21 15:24   ` [PATCH v4 12/15] drm/mediatek: add MT8365 SoC support Chun-Kuang Hu
2024-06-24  7:22     ` Alexandre Mergnat
2024-05-23 12:49 ` [PATCH v4 13/15] arm64: defconfig: enable display connector support Alexandre Mergnat
2024-05-23 12:49 ` [PATCH v4 14/15] arm64: dts: mediatek: add display blocks support for the MT8365 SoC Alexandre Mergnat
2024-06-19 10:47   ` AngeloGioacchino Del Regno
2024-05-23 12:49 ` [PATCH v4 15/15] arm64: dts: mediatek: add display support for mt8365-evk Alexandre Mergnat

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231023-display-support-v4-12-ed82eb168fb1@baylibre.com \
    --to=amergnat@baylibre.com \
    --cc=airlied@gmail.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=catalin.marinas@arm.com \
    --cc=chunkuang.hu@kernel.org \
    --cc=ck.hu@mediatek.com \
    --cc=conor+dt@kernel.org \
    --cc=daniel@ffwll.ch \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=fparent@baylibre.com \
    --cc=jitao.shi@mediatek.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=matthias.bgg@gmail.com \
    --cc=mripard@kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=robh@kernel.org \
    --cc=tzimmermann@suse.de \
    --cc=will@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).