From: Kaustabh Chakraborty <kauschluss@disroot.org>
To: Neil Armstrong <neil.armstrong@linaro.org>
Cc: 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>,
Jessica Zhang <jessica.zhang@oss.qualcomm.com>,
dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Conor Dooley <conor.dooley@microchip.com>
Subject: Re: [PATCH v3 1/2] dt-bindings: display: panel: document Samsung S6E8AA5X01 panel driver
Date: Mon, 30 Jun 2025 17:18:22 +0000 [thread overview]
Message-ID: <4b9e44b14395ff4c64eba1bd71e63150@disroot.org> (raw)
In-Reply-To: <80055981-3624-4165-af0c-3b60c345e8f8@linaro.org>
On 2025-06-30 15:29, Neil Armstrong wrote:
> On 25/06/2025 14:41, Kaustabh Chakraborty wrote:
>> Samsung S6E8AA5X01 is an AMOLED MIPI DSI panel controller. Document
>> the
>> compatible and devicetree properties of this panel driver. Timings are
>> provided through the devicetree node as panels are available in
>> different sizes.
>
> Wait, why ? Why not multiple compatibles ?
The panel dimensions is the only thing which differs. The model name,
controller, registers, and functionality are supposedly all similar, so
I believe this is fine...
>
> Neil
>
>>
>> Acked-by: Conor Dooley <conor.dooley@microchip.com>
>> Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
>> ---
>> .../bindings/display/panel/samsung,s6e8aa5x01.yaml | 78
>> ++++++++++++++++++++++
>> 1 file changed, 78 insertions(+)
>>
>> diff --git
>> a/Documentation/devicetree/bindings/display/panel/samsung,s6e8aa5x01.yaml
>> b/Documentation/devicetree/bindings/display/panel/samsung,s6e8aa5x01.yaml
>> new file mode 100644
>> index
>> 0000000000000000000000000000000000000000..23dae6e961ae01c99de93bf4b4a067f2953f8edf
>> --- /dev/null
>> +++
>> b/Documentation/devicetree/bindings/display/panel/samsung,s6e8aa5x01.yaml
>> @@ -0,0 +1,78 @@
>> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id:
>> http://devicetree.org/schemas/display/panel/samsung,s6e8aa5x01.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: Samsung S6E8AA5X01 display panel controller
>> +
>> +maintainers:
>> + - Kaustabh Chakraborty <kauschluss@disroot.org>
>> +
>> +allOf:
>> + - $ref: panel-common.yaml#
>> +
>> +properties:
>> + compatible:
>> + const: samsung,s6e8aa5x01
>> +
>> + reg:
>> + maxItems: 1
>> +
>> + vdd-supply:
>> + description: core voltage supply
>> +
>> + vci-supply:
>> + description: voltage supply for analog circuits
>> +
>> + reset-gpios: true
>> + width-mm: true
>> + height-mm: true
>> + panel-timing: true
>> +
>> +required:
>> + - compatible
>> + - reg
>> + - width-mm
>> + - height-mm
>> + - panel-timing
>> +
>> +additionalProperties: false
>> +
>> +examples:
>> + - |
>> + #include <dt-bindings/gpio/gpio.h>
>> +
>> + dsi {
>> + #address-cells = <1>;
>> + #size-cells = <0>;
>> +
>> + panel@0 {
>> + compatible = "samsung,s6e8aa5x01";
>> + reg = <0>;
>> +
>> + vdd-supply = <&panel_vdd_reg>;
>> + vci-supply = <&panel_vci_reg>;
>> +
>> + reset-gpios = <&gpd3 4 GPIO_ACTIVE_HIGH>;
>> +
>> + width-mm = <62>;
>> + height-mm = <128>;
>> +
>> + panel-timing {
>> + clock-frequency = <73094400>;
>> +
>> + hactive = <720>;
>> + hsync-len = <2>;
>> + hfront-porch = <62>;
>> + hback-porch = <26>;
>> +
>> + vactive = <1480>;
>> + vsync-len = <2>;
>> + vfront-porch = <12>;
>> + vback-porch = <10>;
>> + };
>> + };
>> + };
>> +
>> +...
>>
next prev parent reply other threads:[~2025-06-30 17:18 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-25 12:41 [PATCH v3 0/2] Add driver for Samsung S6E8AA5X01 panel controller Kaustabh Chakraborty
2025-06-25 12:41 ` [PATCH v3 1/2] dt-bindings: display: panel: document Samsung S6E8AA5X01 panel driver Kaustabh Chakraborty
2025-06-30 15:29 ` Neil Armstrong
2025-06-30 17:18 ` Kaustabh Chakraborty [this message]
2025-07-03 9:01 ` Maxime Ripard
2025-07-05 14:46 ` Kaustabh Chakraborty
2025-07-05 18:58 ` Dmitry Baryshkov
2025-06-25 12:41 ` [PATCH v3 2/2] drm: panel: add support for Samsung S6E8AA5X01 panel controller Kaustabh Chakraborty
2025-06-30 15:30 ` 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=4b9e44b14395ff4c64eba1bd71e63150@disroot.org \
--to=kauschluss@disroot.org \
--cc=airlied@gmail.com \
--cc=conor+dt@kernel.org \
--cc=conor.dooley@microchip.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jessica.zhang@oss.qualcomm.com \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.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
all inboxes | Powered by JetHome®