From: "Luca Ceresoli" <luca.ceresoli@bootlin.com>
To: "Icenowy Zheng" <zhengxingda@iscas.ac.cn>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Drew Fustini" <fustini@kernel.org>,
"Guo Ren" <guoren@kernel.org>, "Fu Wei" <wefu@redhat.com>,
"Philipp Zabel" <p.zabel@pengutronix.de>,
"Heiko Stuebner" <heiko@sntech.de>,
"Andrzej Hajda" <andrzej.hajda@intel.com>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Robert Foss" <rfoss@kernel.org>,
"Laurent Pinchart" <Laurent.pinchart@ideasonboard.com>,
"Jonas Karlman" <jonas@kwiboo.se>,
"Jernej Skrabec" <jernej.skrabec@gmail.com>,
"Michal Wilczynski" <m.wilczynski@samsung.com>
Cc: devicetree@vger.kernel.org, Yao Zi <ziyao@disroot.org>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
Han Gao <rabenda.cn@gmail.com>,
linux-riscv@lists.infradead.org
Subject: Re: [PATCH v4 3/9] drm: verisilicon: add a driver for Verisilicon display controllers
Date: Wed, 31 Dec 2025 15:20:19 +0100 [thread overview]
Message-ID: <DFCGV315JITK.1TXTXWUOMLMB9@bootlin.com> (raw)
In-Reply-To: <20251224161205.1132149-4-zhengxingda@iscas.ac.cn>
On Wed Dec 24, 2025 at 5:11 PM CET, Icenowy Zheng wrote:
> From: Icenowy Zheng <uwu@icenowy.me>
>
> This is a from-scratch driver targeting Verisilicon DC-series display
> controllers, which feature self-identification functionality like their
> GC-series GPUs.
>
> Only DC8200 is being supported now, and only the main framebuffer is set
> up (as the DRM primary plane). Support for more DC models and more
> features is my further targets.
>
> As the display controller is delivered to SoC vendors as a whole part,
> this driver does not use component framework and extra bridges inside a
> SoC is expected to be implemented as dedicated bridges (this driver
> properly supports bridge chaining).
>
> Signed-off-by: Icenowy Zheng <uwu@icenowy.me>
> Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
[...]
> +++ b/drivers/gpu/drm/verisilicon/vs_bridge.h
> +struct vs_bridge {
> + struct drm_bridge base;
> + struct drm_encoder *enc;
> + struct drm_connector *conn;
> +
> + struct vs_crtc *crtc;
> + struct drm_bridge *next;
It is a common convention to call this 'next_bridge'. This makes it easier
to understand but also to grep and find similar patterns.
For info, we are working to move to 'struct drm_bridge::next_bridge' [0] as
you can see from example patches like [1]. However this currently applies
only to drivers using of_drm_find_bridge(), so it does not affect your
driver.
I'm sorry I have seen your patch only at v4.
[0] https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/3fdeae134ba956aacbd87d5532c025913c98fc49
[1] https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/8f92a5fcbfe33f86b08f5f74dcc58a41425ea8c0
Luca
--
Luca Ceresoli, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: "Luca Ceresoli" <luca.ceresoli@bootlin.com>
To: "Icenowy Zheng" <zhengxingda@iscas.ac.cn>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Drew Fustini" <fustini@kernel.org>,
"Guo Ren" <guoren@kernel.org>, "Fu Wei" <wefu@redhat.com>,
"Philipp Zabel" <p.zabel@pengutronix.de>,
"Heiko Stuebner" <heiko@sntech.de>,
"Andrzej Hajda" <andrzej.hajda@intel.com>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Robert Foss" <rfoss@kernel.org>,
"Laurent Pinchart" <Laurent.pinchart@ideasonboard.com>,
"Jonas Karlman" <jonas@kwiboo.se>,
"Jernej Skrabec" <jernej.skrabec@gmail.com>,
"Michal Wilczynski" <m.wilczynski@samsung.com>
Cc: "Han Gao" <rabenda.cn@gmail.com>, "Yao Zi" <ziyao@disroot.org>,
<dri-devel@lists.freedesktop.org>, <devicetree@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <linux-riscv@lists.infradead.org>,
"Icenowy Zheng" <uwu@icenowy.me>
Subject: Re: [PATCH v4 3/9] drm: verisilicon: add a driver for Verisilicon display controllers
Date: Wed, 31 Dec 2025 15:20:19 +0100 [thread overview]
Message-ID: <DFCGV315JITK.1TXTXWUOMLMB9@bootlin.com> (raw)
In-Reply-To: <20251224161205.1132149-4-zhengxingda@iscas.ac.cn>
On Wed Dec 24, 2025 at 5:11 PM CET, Icenowy Zheng wrote:
> From: Icenowy Zheng <uwu@icenowy.me>
>
> This is a from-scratch driver targeting Verisilicon DC-series display
> controllers, which feature self-identification functionality like their
> GC-series GPUs.
>
> Only DC8200 is being supported now, and only the main framebuffer is set
> up (as the DRM primary plane). Support for more DC models and more
> features is my further targets.
>
> As the display controller is delivered to SoC vendors as a whole part,
> this driver does not use component framework and extra bridges inside a
> SoC is expected to be implemented as dedicated bridges (this driver
> properly supports bridge chaining).
>
> Signed-off-by: Icenowy Zheng <uwu@icenowy.me>
> Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
[...]
> +++ b/drivers/gpu/drm/verisilicon/vs_bridge.h
> +struct vs_bridge {
> + struct drm_bridge base;
> + struct drm_encoder *enc;
> + struct drm_connector *conn;
> +
> + struct vs_crtc *crtc;
> + struct drm_bridge *next;
It is a common convention to call this 'next_bridge'. This makes it easier
to understand but also to grep and find similar patterns.
For info, we are working to move to 'struct drm_bridge::next_bridge' [0] as
you can see from example patches like [1]. However this currently applies
only to drivers using of_drm_find_bridge(), so it does not affect your
driver.
I'm sorry I have seen your patch only at v4.
[0] https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/3fdeae134ba956aacbd87d5532c025913c98fc49
[1] https://gitlab.freedesktop.org/drm/misc/kernel/-/commit/8f92a5fcbfe33f86b08f5f74dcc58a41425ea8c0
Luca
--
Luca Ceresoli, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2025-12-31 14:21 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20251224161255eucas1p24c6de486b021f25007ed1ce24468cab2@eucas1p2.samsung.com>
2025-12-24 16:11 ` [PATCH v4 0/9] Verisilicon DC8200 driver (and adaption to TH1520) Icenowy Zheng
2025-12-24 16:11 ` Icenowy Zheng
2025-12-24 16:11 ` [PATCH v4 1/9] dt-bindings: vendor-prefixes: add verisilicon Icenowy Zheng
2025-12-24 16:11 ` Icenowy Zheng
2025-12-24 16:11 ` [PATCH v4 2/9] dt-bindings: display: add verisilicon,dc Icenowy Zheng
2025-12-24 16:11 ` Icenowy Zheng
2025-12-25 9:35 ` Han Gao (Revy)
2025-12-25 9:35 ` Han Gao (Revy)
2025-12-27 11:08 ` Krzysztof Kozlowski
2025-12-27 11:08 ` Krzysztof Kozlowski
2025-12-25 9:45 ` Han Gao (Revy)
2025-12-25 9:45 ` Han Gao (Revy)
2025-12-27 11:09 ` Krzysztof Kozlowski
2025-12-27 11:09 ` Krzysztof Kozlowski
2025-12-27 12:08 ` Han Gao
2025-12-27 12:08 ` Han Gao
2025-12-28 7:48 ` Krzysztof Kozlowski
2025-12-28 7:48 ` Krzysztof Kozlowski
2025-12-28 7:54 ` Han Gao
2025-12-28 7:54 ` Han Gao
2026-01-05 15:46 ` Rob Herring
2026-01-05 15:46 ` Rob Herring
2026-01-05 16:11 ` Icenowy Zheng
2026-01-05 16:11 ` Icenowy Zheng
2026-01-05 16:20 ` Rob Herring
2026-01-05 16:20 ` Rob Herring
2026-01-13 13:41 ` Icenowy Zheng
2026-01-13 13:41 ` Icenowy Zheng
2025-12-24 16:11 ` [PATCH v4 3/9] drm: verisilicon: add a driver for Verisilicon display controllers Icenowy Zheng
2025-12-24 16:11 ` Icenowy Zheng
2025-12-25 9:36 ` Han Gao (Revy)
2025-12-25 9:36 ` Han Gao (Revy)
2025-12-25 9:45 ` Han Gao (Revy)
2025-12-25 9:45 ` Han Gao (Revy)
2025-12-31 14:20 ` Luca Ceresoli [this message]
2025-12-31 14:20 ` Luca Ceresoli
2025-12-24 16:12 ` [PATCH v4 4/9] dt-bindings: display/bridge: add binding for TH1520 HDMI controller Icenowy Zheng
2025-12-24 16:12 ` Icenowy Zheng
2025-12-24 16:12 ` [PATCH v4 5/9] drm/bridge: add a driver for T-Head " Icenowy Zheng
2025-12-24 16:12 ` Icenowy Zheng
2025-12-25 9:46 ` Han Gao (Revy)
2025-12-25 9:46 ` Han Gao (Revy)
2025-12-25 11:07 ` Andy Yan
2025-12-25 11:07 ` Andy Yan
2025-12-26 13:27 ` [PATCH " Icenowy Zheng
2025-12-26 13:27 ` Icenowy Zheng
2025-12-27 7:03 ` Andy Yan
2025-12-27 7:03 ` Andy Yan
2025-12-27 7:22 ` Icenowy Zheng
2025-12-27 7:22 ` Icenowy Zheng
2025-12-28 17:41 ` Heiko Stübner
2025-12-28 17:41 ` Heiko Stübner
2025-12-24 16:12 ` [PATCH v4 6/9] riscv: dts: thead: add DPU and HDMI device tree nodes Icenowy Zheng
2025-12-24 16:12 ` Icenowy Zheng
2025-12-25 9:46 ` Han Gao (Revy)
2025-12-25 9:46 ` Han Gao (Revy)
2025-12-24 16:12 ` [PATCH v4 7/9] riscv: dts: thead: lichee-pi-4a: enable HDMI Icenowy Zheng
2025-12-24 16:12 ` Icenowy Zheng
2025-12-25 9:47 ` Han Gao (Revy)
2025-12-25 9:47 ` Han Gao (Revy)
2025-12-24 16:12 ` [PATCH v4 8/9] MAINTAINERS: assign myself as maintainer for verisilicon DC driver Icenowy Zheng
2025-12-24 16:12 ` Icenowy Zheng
2025-12-24 16:12 ` [PATCH v4 9/9] mailmap: map all Icenowy Zheng's mail addresses Icenowy Zheng
2025-12-24 16:12 ` Icenowy Zheng
2025-12-29 16:32 ` [PATCH v4 0/9] Verisilicon DC8200 driver (and adaption to TH1520) Michal Wilczynski
2025-12-29 16:32 ` Michal Wilczynski
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=DFCGV315JITK.1TXTXWUOMLMB9@bootlin.com \
--to=luca.ceresoli@bootlin.com \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=airlied@gmail.com \
--cc=andrzej.hajda@intel.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=fustini@kernel.org \
--cc=guoren@kernel.org \
--cc=heiko@sntech.de \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=m.wilczynski@samsung.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=p.zabel@pengutronix.de \
--cc=rabenda.cn@gmail.com \
--cc=rfoss@kernel.org \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
--cc=wefu@redhat.com \
--cc=zhengxingda@iscas.ac.cn \
--cc=ziyao@disroot.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.