Linux-mediatek Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: "CK Hu (胡俊光)" <ck.hu@mediatek.com>,
	"chunkuang.hu@kernel.org" <chunkuang.hu@kernel.org>
Cc: "robh@kernel.org" <robh@kernel.org>,
	"jie.qiu@mediatek.com" <jie.qiu@mediatek.com>,
	"tzimmermann@suse.de" <tzimmermann@suse.de>,
	"simona@ffwll.ch" <simona@ffwll.ch>,
	"mripard@kernel.org" <mripard@kernel.org>,
	"Jitao Shi (石记涛)" <jitao.shi@mediatek.com>,
	"linux-mediatek@lists.infradead.org"
	<linux-mediatek@lists.infradead.org>,
	"dri-devel@lists.freedesktop.org"
	<dri-devel@lists.freedesktop.org>,
	"maarten.lankhorst@linux.intel.com"
	<maarten.lankhorst@linux.intel.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"kernel@collabora.com" <kernel@collabora.com>,
	"dmitry.baryshkov@linaro.org" <dmitry.baryshkov@linaro.org>,
	"krzk+dt@kernel.org" <krzk+dt@kernel.org>,
	"Lewis Liao (廖柏鈞)" <Lewis.Liao@mediatek.com>,
	"p.zabel@pengutronix.de" <p.zabel@pengutronix.de>,
	"conor+dt@kernel.org" <conor+dt@kernel.org>,
	"TommyYL Chen (陳彥良)" <TommyYL.Chen@mediatek.com>,
	"Ives Chenjh (陳俊弘)" <Ives.Chenjh@mediatek.com>,
	"airlied@gmail.com" <airlied@gmail.com>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
	"Jason-JH Lin (林睿祥)" <Jason-JH.Lin@mediatek.com>,
	"junzhi.zhao@mediatek.com" <junzhi.zhao@mediatek.com>
Subject: Re: [PATCH v5 29/34] drm/mediatek: mtk_hdmi: Split driver and add common probe function
Date: Mon, 10 Feb 2025 18:11:45 +0100	[thread overview]
Message-ID: <a5d6d63b-ae37-4cd6-94f7-50647c8b0a21@collabora.com> (raw)
In-Reply-To: <8a4ba3fb6d953f1106d3a766208c4b86da1cfcb8.camel@mediatek.com>

Il 10/02/25 03:18, CK Hu (胡俊光) ha scritto:
> Hi, Angelo:
> 
> On Mon, 2025-01-13 at 15:52 +0100, AngeloGioacchino Del Regno wrote:
>> External email : Please do not click links or open attachments until you have verified the sender or the content.
>>
>>
>> In preparation for adding a new driver for the HDMI TX v2 IP,
>> split out the functions that will be common between the already
>> present mtk_hdmi (v1) driver and the new one.
>>
>> Since the probe flow for both drivers is 90% similar, add a common
>> probe function that will be called from each driver's .probe()
>> callback, avoiding lots of code duplication.
>>
>> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
>> ---
>>   drivers/gpu/drm/mediatek/Kconfig           |  11 +-
>>   drivers/gpu/drm/mediatek/Makefile          |   1 +
>>   drivers/gpu/drm/mediatek/mtk_hdmi.c        | 553 +--------------------
>>   drivers/gpu/drm/mediatek/mtk_hdmi_common.c | 426 ++++++++++++++++
>>   drivers/gpu/drm/mediatek/mtk_hdmi_common.h | 188 +++++++
>>   5 files changed, 648 insertions(+), 531 deletions(-)
>>   create mode 100644 drivers/gpu/drm/mediatek/mtk_hdmi_common.c
>>   create mode 100644 drivers/gpu/drm/mediatek/mtk_hdmi_common.h
>>
>> diff --git a/drivers/gpu/drm/mediatek/Kconfig b/drivers/gpu/drm/mediatek/Kconfig
>> index e47debd60619..994b48b82d44 100644
>> --- a/drivers/gpu/drm/mediatek/Kconfig
>> +++ b/drivers/gpu/drm/mediatek/Kconfig
>> @@ -30,9 +30,18 @@ config DRM_MEDIATEK_DP
>>          help
>>            DRM/KMS Display Port driver for MediaTek SoCs.
>>
>> +config DRM_MEDIATEK_HDMI_COMMON
>> +       tristate
>> +       depends on DRM_MEDIATEK
>> +       select DRM_DISPLAY_HDMI_HELPER
>> +       select DRM_DISPLAY_HELPER
>> +       select SND_SOC_HDMI_CODEC if SND_SOC
>> +       help
>> +         MediaTek SoC HDMI common library
>> +
>>   config DRM_MEDIATEK_HDMI
>>          tristate "DRM HDMI Support for Mediatek SoCs"
>>          depends on DRM_MEDIATEK
>> -       select SND_SOC_HDMI_CODEC if SND_SOC
>> +       select DRM_MEDIATEK_HDMI_COMMON
>>          help
>>            DRM/KMS HDMI driver for Mediatek SoCs
>> diff --git a/drivers/gpu/drm/mediatek/Makefile b/drivers/gpu/drm/mediatek/Makefile
>> index 43afd0a26d14..78cf2d4fc85f 100644
>> --- a/drivers/gpu/drm/mediatek/Makefile
>> +++ b/drivers/gpu/drm/mediatek/Makefile
>> @@ -21,6 +21,7 @@ mediatek-drm-y := mtk_crtc.o \
>>
>>   obj-$(CONFIG_DRM_MEDIATEK) += mediatek-drm.o
>>
>> +obj-$(CONFIG_DRM_MEDIATEK_HDMI_COMMON) += mtk_hdmi_common.o
> 
> It's not necessary to create CONFIG_DRM_MEDIATEK_HDMI_COMMON to build mtk_hdmi_common.o.
> 
> obj-$(CONFIG_DRM_MEDIATEK_HDMI) += mtk_hdmi_common.o
> obj-$(CONFIG_DRM_MEDIATEK_HDMI_V2) += mtk_hdmi_common.o
> 

What you proposed would work - but it's not feasible: this is duplication, and
duplication is bad. That's why CONFIG_DRM_MEDIATEK_HDMI_COMMON was created.

I will not change that, sorry.

>>   obj-$(CONFIG_DRM_MEDIATEK_HDMI) += mtk_cec.o
>>   obj-$(CONFIG_DRM_MEDIATEK_HDMI) += mtk_hdmi.o
>>   obj-$(CONFIG_DRM_MEDIATEK_HDMI) += mtk_hdmi_ddc.o
>> diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi.c b/drivers/gpu/drm/mediatek/mtk_hdmi.c
>> index 138c6283c038..7940c9b598c1 100644
>> --- a/drivers/gpu/drm/mediatek/mtk_hdmi.c
>> +++ b/drivers/gpu/drm/mediatek/mtk_hdmi.c

..snip..

>> -
>>   static int mtk_hdmi_probe(struct platform_device *pdev)
>>   {
>>          struct mtk_hdmi *hdmi;
>> -       struct device *dev = &pdev->dev;
>> -       const int num_clocks = MTK_HDMI_CLK_COUNT;
>> -       int ret;
>> -
>> -       hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
>> -       if (!hdmi)
>> -               return -ENOMEM;
>>
>> -       hdmi->dev = dev;
>> -       hdmi->conf = of_device_get_match_data(dev);
>> +       hdmi = mtk_hdmi_common_probe(pdev);
>> +       if (IS_ERR(hdmi))
>> +               return PTR_ERR(hdmi);
>>
>> -       hdmi->clk = devm_kcalloc(dev, num_clocks, sizeof(*hdmi->clk), GFP_KERNEL);
>> -       if (!hdmi->clk)
>> -               return -ENOMEM;
>> -
>> -       ret = mtk_hdmi_dt_parse_pdata(hdmi, pdev, mtk_hdmi_clk_names, num_clocks);
>> -       if (ret)
>> -               return ret;
>> -
>> -       hdmi->phy = devm_phy_get(dev, "hdmi");
>> -       if (IS_ERR(hdmi->phy))
>> -               return dev_err_probe(dev, PTR_ERR(hdmi->phy),
>> -                                    "Failed to get HDMI PHY\n");
>> -
>> -       mutex_init(&hdmi->update_plugged_status_lock);
>> -       platform_set_drvdata(pdev, hdmi);
>> -
>> -       ret = mtk_hdmi_register_audio_driver(dev);
>> -       if (ret)
>> -               return dev_err_probe(dev, ret,
>> -                                    "Failed to register audio driver\n");
>> -
>> -       hdmi->bridge.funcs = &mtk_hdmi_bridge_funcs;
>> -       hdmi->bridge.of_node = pdev->dev.of_node;
>> -       hdmi->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID
>> -                        | DRM_BRIDGE_OP_HPD;
>> -       hdmi->bridge.type = DRM_MODE_CONNECTOR_HDMIA;
>> -       hdmi->bridge.vendor = "MediaTek";
>> -       hdmi->bridge.product = "On-Chip HDMI";
>> -
>> -       ret = devm_drm_bridge_add(dev, &hdmi->bridge);
>> -       if (ret)
>> -               return dev_err_probe(dev, ret, "Failed to add bridge\n");
>> +       if (!hdmi->cec_dev)
>> +               return dev_err_probe(hdmi->dev, -ENODEV, "CEC is required by HDMIv1\n");
>>
>> -       ret = mtk_hdmi_clk_enable_audio(hdmi);
>> -       if (ret)
>> -               return dev_err_probe(dev, ret,
>> -                                    "Failed to enable audio clocks\n");
> 
> Originally, print error message for mtk_hdmi_clk_enable_audio() here.
> In this patch, it does not print error message here.
> If this modification is necessary, separate this to another patch.
> 

I'll separate that to a different patch. Ok.

>> -
>> -       return 0;
>> +       return mtk_hdmi_clk_enable_audio(hdmi);
>>   }
>>
>>   static void mtk_hdmi_remove(struct platform_device *pdev)

..snip..

>> diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi_common.c b/drivers/gpu/drm/mediatek/mtk_hdmi_common.c
>> new file mode 100644
>> index 000000000000..7dc7ba46f44d
>> --- /dev/null
>> +++ b/drivers/gpu/drm/mediatek/mtk_hdmi_common.c

..snip..

>> +
>> +static int mtk_hdmi_dt_parse_pdata(struct mtk_hdmi *hdmi, struct platform_device *pdev,
>> +                                  const char * const *clk_names, size_t num_clocks)
>> +{
>> +       struct device *dev = &pdev->dev;
>> +       struct device_node *np = dev->of_node;
>> +       struct device_node *remote, *i2c_np;
>> +       int ret;
>> +
>> +       ret = mtk_hdmi_get_all_clk(hdmi, np, clk_names, num_clocks);
>> +       if (ret)
>> +               return dev_err_probe(dev, ret, "Failed to get clocks\n");
>> +
>> +       hdmi->regs = device_node_to_regmap(dev->of_node);
>> +       if (IS_ERR(hdmi->regs))
>> +               return PTR_ERR(hdmi->regs);
>> +
>> +       remote = of_graph_get_remote_node(np, 1, 0);
>> +       if (!remote)
>> +               return -EINVAL;
>> +
>> +       if (!of_device_is_compatible(remote, "hdmi-connector")) {
>> +               hdmi->next_bridge = of_drm_find_bridge(remote);
>> +               if (!hdmi->next_bridge) {
>> +                       dev_err(dev, "Waiting for external bridge\n");
>> +                       of_node_put(remote);
>> +                       return -EPROBE_DEFER;
>> +               }
>> +       }
>> +
>> +       i2c_np = of_parse_phandle(remote, "ddc-i2c-bus", 0);
>> +       of_node_put(remote);
>> +       if (!i2c_np)
>> +               return dev_err_probe(dev, -EINVAL, "No ddc-i2c-bus in connector\n");
>> +
>> +       hdmi->ddc_adpt = of_find_i2c_adapter_by_node(i2c_np);
>> +       of_node_put(i2c_np);
>> +       if (!hdmi->ddc_adpt)
>> +               return dev_err_probe(dev, -EINVAL, "Failed to get ddc i2c adapter by node\n");
>> +
>> +       ret = mtk_hdmi_get_cec_dev(hdmi, dev, np);
>> +       if (ret == -ENOTSUPP)
>> +               dev_info(dev, "CEC support unavailable: node not found\n");
> 
> CEC is used only in v1 driver. So separate CEC related modification to another patch.
> 

Ok.

>> +       else if (ret)
>> +               return ret;
>> +
>> +       return 0;
>> +}
>> +

..snip..

>> diff --git a/drivers/gpu/drm/mediatek/mtk_hdmi_common.h b/drivers/gpu/drm/mediatek/mtk_hdmi_common.h
>> new file mode 100644
>> index 000000000000..d3de8afff40f
>> --- /dev/null
>> +++ b/drivers/gpu/drm/mediatek/mtk_hdmi_common.h
>> @@ -0,0 +1,188 @@

..snip..

>> +struct mtk_hdmi_ver_conf {
>> +       const struct drm_bridge_funcs *bridge_funcs;
>> +       const struct hdmi_codec_ops *codec_ops;
>> +       const char * const *mtk_hdmi_clock_names;
>> +       int num_clocks;
>> +};
> 
> This patch create something new for new hdmi driver.
> And this patch also separate common function to common file.
> I would like to separate these to two patches.
> One for creating something new for new hdmi driver.
> Another one for separating common function to common file.
> 

That makes sense, will do.

Regards,
Angelo

> Regards,
> CK
> 
>> +
>> +struct mtk_hdmi_conf {
>> +       const struct mtk_hdmi_ver_conf *ver_conf;
>> +       bool tz_disabled;
>> +       bool cea_modes_only;
>> +       unsigned long max_mode_clock;
>> +};
>> +
>> +struct mtk_hdmi {
>> +       struct drm_bridge bridge;
>> +       struct drm_bridge *next_bridge;
>> +       struct drm_connector *curr_conn;/* current connector (only valid when 'enabled') */
>> +       struct device *dev;
>> +       const struct mtk_hdmi_conf *conf;
>> +       struct phy *phy;
>> +       struct device *cec_dev;
>> +       struct i2c_adapter *ddc_adpt;
>> +       struct clk **clk;
>> +       struct drm_display_mode mode;
>> +       bool dvi_mode;
>> +       struct regmap *sys_regmap;
>> +       unsigned int sys_offset;
>> +       struct regmap *regs;
>> +       struct platform_device *audio_pdev;
>> +       struct hdmi_audio_param aud_param;
>> +       bool audio_enable;
>> +       bool powered;
>> +       bool enabled;
>> +       hdmi_codec_plugged_cb plugged_cb;
>> +       struct device *codec_dev;
>> +       struct mutex update_plugged_status_lock;
>> +};
>> +
>> +static inline struct mtk_hdmi *hdmi_ctx_from_bridge(struct drm_bridge *b)
>> +{
>> +       return container_of(b, struct mtk_hdmi, bridge);
>> +}
>> +
>> +
>> +int mtk_hdmi_audio_get_eld(struct device *dev, void *data, uint8_t *buf, size_t len);
>> +void mtk_hdmi_audio_set_plugged_cb(struct mtk_hdmi *hdmi, hdmi_codec_plugged_cb fn,
>> +                                  struct device *codec_dev);
>> +int mtk_hdmi_audio_params(struct mtk_hdmi *hdmi, struct hdmi_codec_daifmt *daifmt,
>> +                         struct hdmi_codec_params *params);
>> +void mtk_hdmi_get_ncts(unsigned int sample_rate, unsigned int clock,
>> +                      unsigned int *n, unsigned int *cts);
>> +bool mtk_hdmi_bridge_mode_fixup(struct drm_bridge *bridge,
>> +                               const struct drm_display_mode *mode,
>> +                               struct drm_display_mode *adjusted_mode);
>> +void mtk_hdmi_bridge_mode_set(struct drm_bridge *bridge,
>> +                             const struct drm_display_mode *mode,
>> +                             const struct drm_display_mode *adjusted_mode);
>> +struct mtk_hdmi *mtk_hdmi_common_probe(struct platform_device *pdev);
>> +#endif /* _MTK_HDMI_COMMON_H */
>> --
>> 2.47.0
>>
> 




  reply	other threads:[~2025-02-10 19:34 UTC|newest]

Thread overview: 72+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-13 14:51 [PATCH v5 00/34] Add support for MT8195/88 DPI, HDMIv2 and DDCv2 AngeloGioacchino Del Regno
2025-01-13 14:51 ` [PATCH v5 01/34] dt-bindings: display: mediatek: dpi: Add MT8195 and MT8188 compat AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 02/34] drm/mediatek: mtk_dpi: Add support for Pattern Generator in debugfs AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 03/34] drm/mediatek: mtk_dpi: Use an array for pixclk factor calculation AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 04/34] drm/mediatek: mtk_dpi: Move pixel clock setting flow to function AngeloGioacchino Del Regno
2025-01-24  9:02   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 05/34] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 06/34] drm/mediatek: Add support for MT8195 Digital Parallel Interface AngeloGioacchino Del Regno
2025-01-24  9:00   ` CK Hu (胡俊光)
2025-01-27  8:56     ` AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 07/34] dt-bindings: display: mediatek: Add binding for HDMIv2 DDC AngeloGioacchino Del Regno
2025-02-10  7:32   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 08/34] dt-bindings: display: mediatek: Add binding for MT8195 HDMI-TX v2 AngeloGioacchino Del Regno
2025-02-10  7:29   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 09/34] drm/mediatek: mtk_cec: Switch to register as module_platform_driver AngeloGioacchino Del Regno
2025-02-07 14:20   ` Alexandre Mergnat
2025-02-10  6:58   ` CK Hu (胡俊光)
2025-02-10 16:40     ` AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 10/34] drm/mediatek: mtk_hdmi_ddc: " AngeloGioacchino Del Regno
2025-02-07 14:20   ` Alexandre Mergnat
2025-02-10  7:01   ` CK Hu (胡俊光)
2025-02-10 11:50     ` AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 11/34] drm/mediatek: mtk_hdmi: Convert to module_platform_driver macro AngeloGioacchino Del Regno
2025-02-07 14:21   ` Alexandre Mergnat
2025-01-13 14:52 ` [PATCH v5 12/34] drm/mediatek: mtk_hdmi: Unregister audio platform device on failure AngeloGioacchino Del Regno
2025-01-22  1:23   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 13/34] drm/mediatek: hdmi: Use regmap instead of iomem for main registers AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 14/34] drm/mediatek: mtk_hdmi: Fix typo for aud_sampe_size member AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 15/34] drm/mediatek: mtk_hdmi: Disgregate function mtk_hdmi_audio_set_param() AngeloGioacchino Del Regno
2025-01-24  7:59   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 16/34] drm/mediatek: mtk_hdmi: Move audio params selection to new function AngeloGioacchino Del Regno
2025-01-24  8:09   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 17/34] drm/mediatek: mtk_hdmi: Move plugged_cb/codec_dev setting " AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 18/34] drm/mediatek: mtk_hdmi: Move N/CTS " AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 19/34] drm/mediatek: mtk_hdmi: Move vendor/product strings to drm_bridge AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 20/34] drm/mediatek: mtk_hdmi: Use dev_err_probe() in mtk_hdmi_dt_parse_pdata() AngeloGioacchino Del Regno
2025-01-24  8:24   ` CK Hu (胡俊光)
2025-01-27 11:42     ` AngeloGioacchino Del Regno
2025-02-07  5:24       ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 21/34] drm/mediatek: mtk_hdmi: Move CEC device parsing in new function AngeloGioacchino Del Regno
2025-02-07 14:45   ` Alexandre Mergnat
2025-02-10 11:44     ` AngeloGioacchino Del Regno
2025-02-10  6:22   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 22/34] drm/mediatek: mtk_hdmi: Remove unused members of struct mtk_hdmi AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 23/34] drm/mediatek: mtk_hdmi: Move output init to mtk_hdmi_register_audio_driver() AngeloGioacchino Del Regno
2025-02-07  5:46   ` CK Hu (胡俊光)
2025-02-10 11:15     ` AngeloGioacchino Del Regno
2025-02-11  2:25       ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 24/34] drm/mediatek: mtk_hdmi: Use devm managed version of drm_bridge_add AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 25/34] drm/mediatek: mtk_hdmi: Remove ifdef for CONFIG_PM_SLEEP AngeloGioacchino Del Regno
2025-02-07  6:10   ` CK Hu (胡俊光)
2025-02-10 11:43     ` AngeloGioacchino Del Regno
2025-02-11  2:16       ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 26/34] drm/mediatek: mtk_hdmi: Remove goto in mtk_hdmi_clk_enable_audio() AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 27/34] drm/mediatek: mtk_hdmi: Cleanup function mtk_hdmi_resume() AngeloGioacchino Del Regno
2025-02-07  6:04   ` CK Hu (胡俊光)
2025-02-10 11:23     ` AngeloGioacchino Del Regno
2025-02-11  2:13       ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 28/34] drm/mediatek: mtk_hdmi: Improve mtk_hdmi_get_all_clk() flexibility AngeloGioacchino Del Regno
2025-02-07  6:26   ` CK Hu (胡俊光)
2025-01-13 14:52 ` [PATCH v5 29/34] drm/mediatek: mtk_hdmi: Split driver and add common probe function AngeloGioacchino Del Regno
2025-02-10  2:18   ` CK Hu (胡俊光)
2025-02-10 17:11     ` AngeloGioacchino Del Regno [this message]
2025-01-13 14:52 ` [PATCH v5 30/34] drm/mediatek: mtk_hdmi_common: Assign DDC adapter pointer to bridge AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 31/34] drm/mediatek: mtk_hdmi_common: Add OP_HDMI if helper funcs assigned AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 32/34] drm/mediatek: Introduce HDMI/DDC v2 for MT8195/MT8188 AngeloGioacchino Del Regno
2025-01-17 16:54   ` kernel test robot
2025-01-17 18:41   ` kernel test robot
2025-01-17 22:04   ` kernel test robot
2025-01-20 12:48     ` AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 33/34] drm/mediatek: mtk_hdmi_common: Add var to enable interlaced modes AngeloGioacchino Del Regno
2025-01-13 14:52 ` [PATCH v5 34/34] drm/mediatek: mtk_hdmi_v2: Add debugfs ops and implement ABIST AngeloGioacchino Del Regno

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=a5d6d63b-ae37-4cd6-94f7-50647c8b0a21@collabora.com \
    --to=angelogioacchino.delregno@collabora.com \
    --cc=Ives.Chenjh@mediatek.com \
    --cc=Jason-JH.Lin@mediatek.com \
    --cc=Lewis.Liao@mediatek.com \
    --cc=TommyYL.Chen@mediatek.com \
    --cc=airlied@gmail.com \
    --cc=chunkuang.hu@kernel.org \
    --cc=ck.hu@mediatek.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jie.qiu@mediatek.com \
    --cc=jitao.shi@mediatek.com \
    --cc=junzhi.zhao@mediatek.com \
    --cc=kernel@collabora.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=simona@ffwll.ch \
    --cc=tzimmermann@suse.de \
    /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