From: Yongbang Shi <shiyongbang@huawei.com>
To: <xinliang.liu@linaro.org>, <tiantao6@hisilicon.com>,
<maarten.lankhorst@linux.intel.com>, <mripard@kernel.org>,
<tzimmermann@suse.de>, <airlied@gmail.com>, <daniel@ffwll.ch>,
<kong.kongxinwei@hisilicon.com>,
<dmitry.baryshkov@oss.qualcomm.com>
Cc: <liangjian010@huawei.com>, <chenjianmin@huawei.com>,
<fengsheng5@huawei.com>, <libaihan@huawei.com>,
<shenjian15@huawei.com>, <shaojijie@huawei.com>,
<jani.nikula@linux.intel.com>, <dri-devel@lists.freedesktop.org>,
<linux-kernel@vger.kernel.org>, <shiyongbang@huawei.com>
Subject: Re: [PATCH v3 drm-dp 00/11] Fix hibmc driver bugs
Date: Fri, 25 Jul 2025 17:16:41 +0800 [thread overview]
Message-ID: <3cf2c010-4ea2-42c8-9bdd-deaa854d1af3@huawei.com> (raw)
In-Reply-To: <20250718065125.2892404-1-shiyongbang@huawei.com>
Gentle ping for review !
> From: Baihan Li <libaihan@huawei.com>
>
> There are some bugfix for hibmc-drm driver.
> ---
> ChangeLog:
> v2 -> v3:
> - fix hibmc_connector_get_modes() and hibmc_vdac_detect() to realize BMC KVM, suggested by Dmitry Baryshkov.
> - fix the issue commit ID, suggested by Dmitry Baryshkov.
> - split into 2 commits, suggested by Dmitry Baryshkov.
> - add more comments in commit log, suggested by Dmitry Baryshkov.
> ---
>
> Baihan Li (11):
> drm/hisilicon/hibmc: fix the i2c device resource leak when vdac init
> failed
> drm/hisilicon/hibmc: fix dp probabilistical detect errors after HPD
> irq
> drm/hisilicon/hibmc: fix irq_request()'s irq name variable is local
> drm/hisilicon/hibmc: fix the hibmc loaded failed bug
> drm/hisilicon/hibmc: fix rare monitors cannot display problem
> drm/hisilicon/hibmc: add dp mode valid check
> drm/hisilicon/hibmc: fix dp and vga cannot show together
> drm/hisilicon/hibmc: fix no showing when no connectors connected
> drm/hisilicon/hibmc: fix no showing problem with loading hibmc
> manually
> drm/hisilicon/hibmc: adapting modification for the former commit
> drm/hisilicon/hibmc: modification for the former commit
>
> drivers/gpu/drm/hisilicon/hibmc/dp/dp_comm.h | 4 +-
> drivers/gpu/drm/hisilicon/hibmc/dp/dp_hw.c | 51 ++++++++++----
> drivers/gpu/drm/hisilicon/hibmc/dp/dp_hw.h | 8 +++
> drivers/gpu/drm/hisilicon/hibmc/dp/dp_link.c | 33 +++++++---
> .../gpu/drm/hisilicon/hibmc/dp/dp_serdes.c | 12 ----
> .../gpu/drm/hisilicon/hibmc/hibmc_drm_dp.c | 64 ++++++++++++++++--
> .../gpu/drm/hisilicon/hibmc/hibmc_drm_drv.c | 22 ++++---
> .../gpu/drm/hisilicon/hibmc/hibmc_drm_drv.h | 5 ++
> .../gpu/drm/hisilicon/hibmc/hibmc_drm_i2c.c | 5 ++
> .../gpu/drm/hisilicon/hibmc/hibmc_drm_vdac.c | 66 +++++++++++++------
> 10 files changed, 201 insertions(+), 69 deletions(-)
>
prev parent reply other threads:[~2025-07-25 9:16 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-18 6:51 Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 01/11] drm/hisilicon/hibmc: fix the i2c device resource leak when vdac init failed Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 02/11] drm/hisilicon/hibmc: fix dp probabilistical detect errors after HPD irq Yongbang Shi
2025-07-26 15:03 ` Dmitry Baryshkov
2025-08-01 9:21 ` Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 03/11] drm/hisilicon/hibmc: fix irq_request()'s irq name variable is local Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 04/11] drm/hisilicon/hibmc: fix the hibmc loaded failed bug Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 05/11] drm/hisilicon/hibmc: fix rare monitors cannot display problem Yongbang Shi
2025-07-26 15:09 ` Dmitry Baryshkov
2025-08-01 9:22 ` Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 06/11] drm/hisilicon/hibmc: add dp mode valid check Yongbang Shi
2025-07-26 15:56 ` Dmitry Baryshkov
2025-08-01 9:22 ` Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 07/11] drm/hisilicon/hibmc: fix dp and vga cannot show together Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 08/11] drm/hisilicon/hibmc: fix no showing when no connectors connected Yongbang Shi
2025-07-26 16:03 ` Dmitry Baryshkov
2025-08-01 9:24 ` Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 09/11] drm/hisilicon/hibmc: fix no showing problem with loading hibmc manually Yongbang Shi
2025-07-26 16:04 ` Dmitry Baryshkov
2025-07-18 6:51 ` [PATCH v3 drm-dp 10/11] drm/hisilicon/hibmc: adapting modification for the former commit Yongbang Shi
2025-07-26 16:05 ` Dmitry Baryshkov
2025-08-01 9:25 ` Yongbang Shi
2025-07-18 6:51 ` [PATCH v3 drm-dp 11/11] drm/hisilicon/hibmc: " Yongbang Shi
2025-07-25 9:16 ` Yongbang Shi [this message]
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=3cf2c010-4ea2-42c8-9bdd-deaa854d1af3@huawei.com \
--to=shiyongbang@huawei.com \
--cc=airlied@gmail.com \
--cc=chenjianmin@huawei.com \
--cc=daniel@ffwll.ch \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=fengsheng5@huawei.com \
--cc=jani.nikula@linux.intel.com \
--cc=kong.kongxinwei@hisilicon.com \
--cc=liangjian010@huawei.com \
--cc=libaihan@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=shaojijie@huawei.com \
--cc=shenjian15@huawei.com \
--cc=tiantao6@hisilicon.com \
--cc=tzimmermann@suse.de \
--cc=xinliang.liu@linaro.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®