Path: blob/master/Documentation/devicetree/bindings/auxdisplay/modtronix,lcd2s.yaml
26308 views
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)1%YAML 1.22---3$id: http://devicetree.org/schemas/auxdisplay/modtronix,lcd2s.yaml#4$schema: http://devicetree.org/meta-schemas/core.yaml#56title: Modtronix engineering LCD2S Character LCD Display78maintainers:9- Lars Poeschel <poeschel@lemonage.de>1011description:12The LCD2S is a Character LCD Display manufactured by Modtronix Engineering.13The display supports a serial I2C and SPI interface. The driver currently14only supports the I2C interface.1516properties:17compatible:18const: modtronix,lcd2s1920reg:21maxItems: 122description:23I2C bus address of the display.2425display-height-chars:26description: Height of the display, in character cells.27$ref: /schemas/types.yaml#/definitions/uint3228minimum: 129maximum: 43031display-width-chars:32description: Width of the display, in character cells.33$ref: /schemas/types.yaml#/definitions/uint3234minimum: 1635maximum: 203637required:38- compatible39- reg40- display-height-chars41- display-width-chars4243additionalProperties: false4445examples:46- |47i2c {48#address-cells = <1>;49#size-cells = <0>;5051lcd2s: auxdisplay@28 {52compatible = "modtronix,lcd2s";53reg = <0x28>;54display-height-chars = <4>;55display-width-chars = <20>;56};57};585960