lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <d48056062b6ac160fd133b2ff6434c0126515868.camel@mediatek.com>
Date: Fri, 3 Jan 2025 03:02:29 +0000
From: LIANKUN YANG (杨连坤) <Liankun.Yang@...iatek.com>
To: Peng Liu (刘鹏) <Peng.Liu@...iatek.com>,
	Mac Shen (沈俊) <Mac.Shen@...iatek.com>,
	"chunkuang.hu@...nel.org" <chunkuang.hu@...nel.org>, "simona@...ll.ch"
	<simona@...ll.ch>, Jitao Shi (石记涛)
	<jitao.shi@...iatek.com>, "p.zabel@...gutronix.de" <p.zabel@...gutronix.de>,
	"granquet@...libre.com" <granquet@...libre.com>,
	CK Hu (胡俊光) <ck.hu@...iatek.com>,
	Project_Global_Chrome_Upstream_Group
	<Project_Global_Chrome_Upstream_Group@...iatek.com>, "airlied@...il.com"
	<airlied@...il.com>, "matthias.bgg@...il.com" <matthias.bgg@...il.com>,
	"dmitry.osipenko@...labora.com" <dmitry.osipenko@...labora.com>,
	Rex-BC Chen (陳柏辰) <Rex-BC.Chen@...iatek.com>,
	AngeloGioacchino Del Regno <angelogioacchino.delregno@...labora.com>
CC: "dri-devel@...ts.freedesktop.org" <dri-devel@...ts.freedesktop.org>,
	"linux-arm-kernel@...ts.infradead.org"
	<linux-arm-kernel@...ts.infradead.org>, "linux-mediatek@...ts.infradead.org"
	<linux-mediatek@...ts.infradead.org>, "linux-kernel@...r.kernel.org"
	<linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v3 1/1] drm/mediatek: Add return value check when reading
 DPCD

On Thu, 2024-12-19 at 03:51 -0600, Guillaume Ranquet wrote:
> External email : Please do not click links or open attachments until
> you have verified the sender or the content.
> 
> 
> On Wed, 18 Dec 2024 12:34, Liankun Yang <liankun.yang@...iatek.com>
> wrote:
> > Returns the number of bytes transferred (1) on success.
> 
> Hi Liankun,
> 
> I'm not sure this statement above is true, you are not returning the
> number of transferred bytes?
> 
> 
> Aside of that little nitpick
> 
> Reviewed-by: Guillaume Ranquet <granquet@...libre.com>
> 
Hi Guillaume,

1. DRM_DP_READ_SINK_COUNT modification is true, returning the current
number of real connection devices.
2. SOME DONGLES Still Source HPD When they do not connected to any sink
device. To avoid this, we need to read the sink count to make good to
sink devices.Therefore, the current judgment of the number of connected
devices is just enough.

Best Regards,
Liankun Yang

> > Check the return value to confirm that AUX communication is
> > successful.
> > 
> > Fixes: f70ac097a2cf ("drm/mediatek: Add MT8195 Embedded DisplayPort
> > driver")
> > 
> > Signed-off-by: Liankun Yang <liankun.yang@...iatek.com>
> > ---
> > Changes in V3:
> > - Using drm_dp_read_sink_count() to improve patch.
> > Per suggestion from the previous thread:
> > 
https://urldefense.com/v3/__https://patchwork.kernel.org/project/linux-mediatek/patch/20241128030940.25657-1-liankun.yang@mediatek.com/__;!!CTRNKA9wMg0ARbw!hB4quDn5mHgRtBK-Gf2pmkMN_4MbA66eggh1o8gdUWP7pA72uPoZlmbisRetswwyYSenG2ErIZK6oOaQqdCxdx4$
> > 
> > Changes in V2:
> > - Modify Fixes in Commit Message.
> > Per suggestion from the previous thread:
> > 
https://urldefense.com/v3/__https://patchwork.kernel.org/project/linux-mediatek/patch/20240930092000.5385-1-liankun.yang@mediatek.com/__;!!CTRNKA9wMg0ARbw!hB4quDn5mHgRtBK-Gf2pmkMN_4MbA66eggh1o8gdUWP7pA72uPoZlmbisRetswwyYSenG2ErIZK6oOaQWWaDClg$
> > ---
> > drivers/gpu/drm/mediatek/mtk_dp.c | 5 ++---
> > 1 file changed, 2 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/mediatek/mtk_dp.c
> > b/drivers/gpu/drm/mediatek/mtk_dp.c
> > index 36713c176cfc..b26dad8783be 100644
> > --- a/drivers/gpu/drm/mediatek/mtk_dp.c
> > +++ b/drivers/gpu/drm/mediatek/mtk_dp.c
> > @@ -2100,7 +2100,6 @@ static enum drm_connector_status
> > mtk_dp_bdg_detect(struct drm_bridge *bridge)
> >       struct mtk_dp *mtk_dp = mtk_dp_from_bridge(bridge);
> >       enum drm_connector_status ret =
> > connector_status_disconnected;
> >       bool enabled = mtk_dp->enabled;
> > -      u8 sink_count = 0;
> > 
> >       if (!mtk_dp->train_info.cable_plugged_in)
> >               return ret;
> > @@ -2115,8 +2114,8 @@ static enum drm_connector_status
> > mtk_dp_bdg_detect(struct drm_bridge *bridge)
> >        * function, we just need to check the HPD connection to
> > check
> >        * whether we connect to a sink device.
> >        */
> > -      drm_dp_dpcd_readb(&mtk_dp->aux, DP_SINK_COUNT, &sink_count);
> > -      if (DP_GET_SINK_COUNT(sink_count))
> > +
> > +      if (drm_dp_read_sink_count(&mtk_dp->aux))
> >               ret = connector_status_connected;
> > 
> >       if (!enabled)
> > --
> > 2.45.2

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ