From: Neil Armstrong <neil.armstrong@linaro.org>
To: Svyatoslav Ryhel <clamor95@gmail.com>,
Jessica Zhang <quic_jesszhan@quicinc.com>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
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 v2 1/2] dt-bindings: display: panel: document Sharp LQ079L1SX01 panel
Date: Fri, 19 Sep 2025 16:36:23 +0200 [thread overview]
Message-ID: <bdd942ef-1ede-4f9f-ab90-ea7ac8995b92@linaro.org> (raw)
In-Reply-To: <20250912064253.26346-2-clamor95@gmail.com>
Hi,
On 12/09/2025 08:42, Svyatoslav Ryhel wrote:
> Document Sharp LQ079L1SX01 panel found in Xiaomi Mi Pad.
The patch doesn't apply on drm-misc-next, please rebase.
Neil
>
> Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
> ---
> .../display/panel/sharp,lq079l1sx01.yaml | 99 +++++++++++++++++++
> 1 file changed, 99 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/display/panel/sharp,lq079l1sx01.yaml
>
> diff --git a/Documentation/devicetree/bindings/display/panel/sharp,lq079l1sx01.yaml b/Documentation/devicetree/bindings/display/panel/sharp,lq079l1sx01.yaml
> new file mode 100644
> index 000000000000..08a35ebbbb3c
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/panel/sharp,lq079l1sx01.yaml
> @@ -0,0 +1,99 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/display/panel/sharp,lq079l1sx01.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Sharp Microelectronics 7.9" WQXGA TFT LCD panel
> +
> +maintainers:
> + - Svyatoslav Ryhel <clamor95@gmail.com>
> +
> +description: >
> + This panel requires a dual-channel DSI host to operate and it supports
> + only left-right split mode, where each channel drives the left or right
> + half of the screen and only video mode.
> +
> + Each of the DSI channels controls a separate DSI peripheral.
> + The peripheral driven by the first link (DSI-LINK1), left one, is
> + considered the primary peripheral and controls the device.
> +
> +allOf:
> + - $ref: panel-common-dual.yaml#
> +
> +properties:
> + compatible:
> + const: sharp,lq079l1sx01
> +
> + reg:
> + maxItems: 1
> +
> + avdd-supply:
> + description: regulator that supplies the analog voltage
> +
> + vddio-supply:
> + description: regulator that supplies the I/O voltage
> +
> + vsp-supply:
> + description: positive boost supply regulator
> +
> + vsn-supply:
> + description: negative boost supply regulator
> +
> + reset-gpios:
> + maxItems: 1
> +
> + backlight: true
> + ports: true
> +
> +required:
> + - compatible
> + - reg
> + - avdd-supply
> + - vddio-supply
> + - ports
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/gpio/gpio.h>
> +
> + dsi {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + panel@0 {
> + compatible = "sharp,lq079l1sx01";
> + reg = <0>;
> +
> + reset-gpios = <&gpio 59 GPIO_ACTIVE_LOW>;
> +
> + avdd-supply = <&avdd_lcd>;
> + vddio-supply = <&vdd_lcd_io>;
> + vsp-supply = <&vsp_5v5_lcd>;
> + vsn-supply = <&vsn_5v5_lcd>;
> +
> + backlight = <&backlight>;
> +
> + ports {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + port@0 {
> + reg = <0>;
> + panel_in0: endpoint {
> + remote-endpoint = <&dsi0_out>;
> + };
> + };
> +
> + port@1 {
> + reg = <1>;
> + panel_in1: endpoint {
> + remote-endpoint = <&dsi1_out>;
> + };
> + };
> + };
> + };
> + };
> +...
next prev parent reply other threads:[~2025-09-19 14:36 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-12 6:42 [PATCH v2 0/2] DRM: panel: add support for Sharp LQ079L1SX01 panel Svyatoslav Ryhel
2025-09-12 6:42 ` [PATCH v2 1/2] dt-bindings: display: panel: document " Svyatoslav Ryhel
2025-09-15 21:03 ` Rob Herring (Arm)
2025-09-19 14:36 ` Neil Armstrong [this message]
2025-09-19 14:45 ` Svyatoslav Ryhel
2025-09-19 15:19 ` Svyatoslav Ryhel
2025-09-12 6:42 ` [PATCH v2 2/2] gpu/drm: panel: Add Sharp LQ079L1SX01 panel support Svyatoslav Ryhel
2025-10-01 7:24 ` (subset) [PATCH v2 0/2] DRM: panel: add support for Sharp LQ079L1SX01 panel 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=bdd942ef-1ede-4f9f-ab90-ea7ac8995b92@linaro.org \
--to=neil.armstrong@linaro.org \
--cc=airlied@gmail.com \
--cc=clamor95@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=quic_jesszhan@quicinc.com \
--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;
as well as URLs for NNTP newsgroup(s).