mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Alexandre Mergnat <amergnat@baylibre.com>
To: Chun-Kuang Hu <chunkuang.hu@kernel.org>
Cc: 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>,
	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,
	Fabien Parent <fparent@baylibre.com>
Subject: Re: [PATCH v4 12/15] drm/mediatek: add MT8365 SoC support
Date: Mon, 24 Jun 2024 09:22:38 +0200	[thread overview]
Message-ID: <cc50cb9e-cbae-43dc-8845-da11a6fb7074@baylibre.com> (raw)
In-Reply-To: <CAAOTY__ZLjuJHnGsVLvGkFK0WhJJ6r=miqewRHsPCJhqO=8qoA@mail.gmail.com>



On 21/06/2024 17:24, Chun-Kuang Hu wrote:
> Hi, Alexandre:
> 
> <amergnat@baylibre.com>  於 2024年5月23日 週四 下午8:49寫道:
>> 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,
> You do not describe the pipeline information here. I think display
> function would not work.

Hi Chun-Kuang,

I don't describe the pipeline information here because I do it
in the DTS thanks to the OF graphs Angelo's serie [1].
I've tested DSI and DPI display, they work correctly ;)

[1] https://lore.kernel.org/all/20240618101726.110416-1-angelogioacchino.delregno@collabora.com/

-- 
Regards,
Alexandre

  reply	other threads:[~2024-06-24  7:22 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 ` [PATCH v4 12/15] drm/mediatek: add MT8365 SoC support amergnat
2024-06-21 15:24   ` Chun-Kuang Hu
2024-06-24  7:22     ` Alexandre Mergnat [this message]
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=cc50cb9e-cbae-43dc-8845-da11a6fb7074@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

all inboxes | Powered by JetHome®