0001 Sitronix ST7586 display panel
0002
0003 Required properties:
0004 - compatible: "lego,ev3-lcd".
0005 - a0-gpios: The A0 signal (since this binding is for serial mode, this is
0006 the pin labeled D1 on the controller, not the pin labeled A0)
0007 - reset-gpios: Reset pin
0008
0009 The node for this driver must be a child node of a SPI controller, hence
0010 all mandatory properties described in ../spi/spi-bus.txt must be specified.
0011
0012 Optional properties:
0013 - rotation: panel rotation in degrees counter clockwise (0,90,180,270)
0014
0015 Example:
0016 display@0{
0017 compatible = "lego,ev3-lcd";
0018 reg = <0>;
0019 spi-max-frequency = <10000000>;
0020 a0-gpios = <&gpio 43 GPIO_ACTIVE_HIGH>;
0021 reset-gpios = <&gpio 80 GPIO_ACTIVE_HIGH>;
0022 };