From: Conor Dooley <conor@kernel.org>
To: Iker Pedrosa <ikerpedrosam@gmail.com>
Cc: 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>,
Javier Martinez Canillas <javierm@redhat.com>,
linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
devicetree@vger.kernel.org
Subject: Re: [PATCH 2/3] dt-bindings: display: sitronix,st7920: Add DT schema
Date: Wed, 6 Aug 2025 18:22:32 +0100 [thread overview]
Message-ID: <20250806-contend-retread-066519296adc@spud> (raw)
In-Reply-To: <20250806-st7920-v1-2-64ab5a34f9a0@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2491 bytes --]
On Wed, Aug 06, 2025 at 02:48:10PM +0200, Iker Pedrosa wrote:
> Add binding for Sitronix ST7920 display.
>
> Signed-off-by: Iker Pedrosa <ikerpedrosam@gmail.com>
> ---
> .../bindings/display/sitronix,st7920.yaml | 55 ++++++++++++++++++++++
> 1 file changed, 55 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/display/sitronix,st7920.yaml b/Documentation/devicetree/bindings/display/sitronix,st7920.yaml
> new file mode 100644
> index 0000000000000000000000000000000000000000..caee85f98c6d242dfab73729210f8c34b23a3a99
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/display/sitronix,st7920.yaml
> @@ -0,0 +1,55 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/display/sitronix,st7920.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Sitronix ST7920 LCD Display Controllers
> +
> +maintainers:
> + - Iker Pedrosa <ikerpedrosam@gmail.com>
> +
> +description: |
> + The Sitronix ST7920 is a controller for monochrome dot-matrix graphical LCDs,
> + most commonly used for 128x64 pixel displays.
> + This binding supports connecting the display via a standard SPI bus.
> +
> +properties:
> + compatible:
> + const: sitronix,st7920
> +
> + reg:
> + description: The chip-select number for the device on the SPI bus.
> + maxItems: 1
> +
> + spi-max-frequency:
> + description: Maximum SPI clock frequency in Hz.
> + maximum: 600000
> +
> + spi-cs-high:
> + type: boolean
> + description: Indicates the chip select is active high.
Don't redefine this, it's defined in spi-peripheral-props.yaml:
spi-cs-high:
$ref: /schemas/types.yaml#/definitions/flag
description:
The device requires the chip select active high.
spi-max-frequency's type comes from there, so you need it for that too.
> +
> +required:
> + - compatible
> + - reg
> + - spi-max-frequency
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + // Example: ST7920 connected to an SPI bus
> + #include <dt-bindings/gpio/gpio.h>
> +
> + spi0 {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + display@0 {
> + compatible = "sitronix,st7920";
> + reg = <0>; // Chip select 0
> + spi-max-frequency = <600000>;
> + spi-cs-high;
> + };
> + };
>
> --
> 2.50.1
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2025-08-06 17:22 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-06 12:48 [PATCH 0/3] drm/sitronix/st7920: Add support for the ST7920 controller Iker Pedrosa
2025-08-06 12:48 ` [PATCH 1/3] drm: Add driver for Sitronix ST7920 LCD displays Iker Pedrosa
2025-08-07 7:48 ` kernel test robot
2025-08-07 8:12 ` Krzysztof Kozlowski
2025-09-01 13:44 ` Thomas Zimmermann
2025-08-06 12:48 ` [PATCH 2/3] dt-bindings: display: sitronix,st7920: Add DT schema Iker Pedrosa
2025-08-06 17:22 ` Conor Dooley [this message]
2025-08-07 8:09 ` Krzysztof Kozlowski
2025-08-06 12:48 ` [PATCH 3/3] MAINTAINERS: Add entry for Sitronix ST7920 driver Iker Pedrosa
2025-08-07 8:13 ` Krzysztof Kozlowski
[not found] ` <CABdCQ=Mysc3a5JNe7te0nRAOzB2n9vQcEz+hZmE3B3vmDYNt2A@mail.gmail.com>
2025-08-20 13:10 ` Krzysztof Kozlowski
2025-09-01 12:53 ` Maxime Ripard
2025-09-01 13:17 ` Javier Martinez Canillas
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=20250806-contend-retread-066519296adc@spud \
--to=conor@kernel.org \
--cc=airlied@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=ikerpedrosam@gmail.com \
--cc=javierm@redhat.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=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