From: Neil Armstrong <neil.armstrong@linaro.org>
To: Nickolay Goppen <setotau@mainlining.org>,
Jessica Zhang <jesszhan0024@gmail.com>,
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>
Cc: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH RFC 1/2] dt-bindings: display: panel: Add bindings for Novatek NT51021
Date: Sun, 30 Aug 2026 14:59:34 +0200 [thread overview]
Message-ID: <08cf135f-7fef-4dae-88d5-2ee0a080853d@linaro.org> (raw)
In-Reply-To: <20260829-qcom-novatek-nt51021-panels-v1-1-cc1ca61bd261@mainlining.org>
On 8/29/26 22:09, Nickolay Goppen wrote:
> Novatek NT51021 is a display driver IC that can drive DSI panel. It
> is also present in the BOE TV101WUM-NX0 video mode panel, which is a WUXGA
> panel with a resolution of 1200x1920 and 10.1 inches size. It is found in
> Xiaomi Mi Pad 4 Plus.
>
> This patch adds the bindings for display driver for the IC, with support
> added for this BOE TV101WUM-NX0 WUXGA video mode panel.
>
> Signed-off-by: Nickolay Goppen <setotau@mainlining.org>
> ---
> .../bindings/display/panel/novatek,nt51021.yaml | 93 ++++++++++++++++++++++
> MAINTAINERS | 5 ++
> 2 files changed, 98 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/display/panel/novatek,nt51021.yaml b/Documentation/devicetree/bindings/display/panel/novatek,nt51021.yaml
> new file mode 100644
> index 000000000000..a3e4ed10e645
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/panel/novatek,nt51021.yaml
> @@ -0,0 +1,93 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/display/panel/novatek,nt51021.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Novatek NT51021 based DSI display Panels
> +
> +maintainers:
> + - Nickolay Goppen <setotau@mainlining.org>
> +
> +description: |
> + The NT51021 IC from Novatek is a generic DSI Panel IC used to drive dsi
> + panels.
> + Right now, support is added only for a BOE WUXGA LCD display panels with a
> + resolution of 1200x1920. They are video mode DSI panels.
> +
> +allOf:
> + - $ref: panel-common.yaml#
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - boe,tv101wum-nx0
> + - boe,tv080wum-nx2
> + - const: novatek,nt51021
> + description: This indicates the panel manufacturer of the panel that is
> + in turn using the NT51021 panel driver. This compatible string
> + determines how the NT51021 panel driver is configured for the indicated
> + panel. The novatek,nt51021 compatible shall always be provided as a fallback.
> +
You can drop the description entirely here.
> + reg:
> + maxItems: 1
> +
> + reset-gpios:
> + maxItems: 1
> + description: phandle of gpio for reset line - This should be 8mA, gpio
> + can be configured using mux, pinctrl, pinctrl-names (active high)
> +
> + vdd-supply:
> + description: phandle of the regulator that provides the supply voltage
> + for digital circuits
> +
> + avdd-supply:
> + description: phandle of the regulator that provides the supply voltage
> + for analog circuits
> +
> + havdd-supply:
> + description: phandle of the regulator that provides the supply voltage
> + for analog circuits
> +
> + port: true
> + backlight: true
> +
> +required:
> + - compatible
> + - reg
> + - vdd-supply
> + - avdd-supply
> + - havdd-supply
> + - reset-gpios
> + - port
> +
> +unevaluatedProperties: false
> +
> +examples:
> + - |+
> + #include <dt-bindings/gpio/gpio.h>
> +
> + dsi0 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + panel@0 {
> + compatible = "boe,tv101wum-nx0", "novatek,nt51021";
> + reg = <0>;
> + vdd-supply = <&lcd_pwr>;
> + avdd-supply = <&lcd_pwr>;
> + havdd-supply = <&lcd_pwr>;
> +
> + backlight = <&i2c_backlight>;
> + reset-gpios = <&tlmm 62 GPIO_ACTIVE_LOW>;
> +
> + port {
> + panel_in: endpoint {
> + remote-endpoint = <&dsi0_out>;
> + };
> + };
> + };
> + };
> +
> +...
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 7291238bc09f..6cbf9ee3fa9b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -8354,6 +8354,11 @@ S: Maintained
> F: Documentation/devicetree/bindings/display/panel/novatek,nt37801.yaml
> F: drivers/gpu/drm/panel/panel-novatek-nt37801.c
>
> +DRM DRIVER FOR NOVATEK NT51021 PANELS
> +M: Nickolay Goppen <setotau@mainlining.org>
> +S: Maintained
> +F: Documentation/devicetree/bindings/display/panel/novatek,nt51021.yaml
> +
> DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
> M: Lyude Paul <lyude@redhat.com>
> M: Danilo Krummrich <dakr@kernel.org>
>
Move the MAINTAINERS change in a separate commit.
Neil
next prev parent reply other threads:[~2026-08-30 13:01 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-29 20:09 [PATCH RFC 0/2] Novatek NT51021 DSI panel IC driver Nickolay Goppen
2026-08-29 20:09 ` [PATCH RFC 1/2] dt-bindings: display: panel: Add bindings for Novatek NT51021 Nickolay Goppen
2026-08-29 20:14 ` sashiko-bot
2026-08-29 20:18 ` Nickolay Goppen
2026-08-30 12:59 ` Neil Armstrong [this message]
2026-08-29 20:09 ` [PATCH RFC 2/2] drivers: gpu: drm: panel: Add BOE NT51021 driver Nickolay Goppen
2026-08-29 20:19 ` sashiko-bot
2026-08-29 20:27 ` Nickolay Goppen
2026-08-29 20:32 ` Nickolay Goppen
2026-08-29 20:35 ` Nickolay Goppen
2026-08-30 12:58 ` Neil Armstrong
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=08cf135f-7fef-4dae-88d5-2ee0a080853d@linaro.org \
--to=neil.armstrong@linaro.org \
--cc=airlied@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jesszhan0024@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=robh@kernel.org \
--cc=setotau@mainlining.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