1*c66ec88fSEmmanuel VadotMulti-Inno MI0283QT display panel 2*c66ec88fSEmmanuel Vadot 3*c66ec88fSEmmanuel VadotRequired properties: 4*c66ec88fSEmmanuel Vadot- compatible: "multi-inno,mi0283qt". 5*c66ec88fSEmmanuel Vadot 6*c66ec88fSEmmanuel VadotThe node for this driver must be a child node of a SPI controller, hence 7*c66ec88fSEmmanuel Vadotall mandatory properties described in ../spi/spi-bus.txt must be specified. 8*c66ec88fSEmmanuel Vadot 9*c66ec88fSEmmanuel VadotOptional properties: 10*c66ec88fSEmmanuel Vadot- dc-gpios: D/C pin. The presence/absence of this GPIO determines 11*c66ec88fSEmmanuel Vadot the panel interface mode (IM[3:0] pins): 12*c66ec88fSEmmanuel Vadot - present: IM=x110 4-wire 8-bit data serial interface 13*c66ec88fSEmmanuel Vadot - absent: IM=x101 3-wire 9-bit data serial interface 14*c66ec88fSEmmanuel Vadot- reset-gpios: Reset pin 15*c66ec88fSEmmanuel Vadot- power-supply: A regulator node for the supply voltage. 16*c66ec88fSEmmanuel Vadot- backlight: phandle of the backlight device attached to the panel 17*c66ec88fSEmmanuel Vadot- rotation: panel rotation in degrees counter clockwise (0,90,180,270) 18*c66ec88fSEmmanuel Vadot 19*c66ec88fSEmmanuel VadotExample: 20*c66ec88fSEmmanuel Vadot mi0283qt@0{ 21*c66ec88fSEmmanuel Vadot compatible = "multi-inno,mi0283qt"; 22*c66ec88fSEmmanuel Vadot reg = <0>; 23*c66ec88fSEmmanuel Vadot spi-max-frequency = <32000000>; 24*c66ec88fSEmmanuel Vadot rotation = <90>; 25*c66ec88fSEmmanuel Vadot dc-gpios = <&gpio 25 0>; 26*c66ec88fSEmmanuel Vadot backlight = <&backlight>; 27*c66ec88fSEmmanuel Vadot }; 28