1*c66ec88fSEmmanuel VadotIlitek ILI9225 display panels 2*c66ec88fSEmmanuel Vadot 3*c66ec88fSEmmanuel VadotThis binding is for display panels using an Ilitek ILI9225 controller in SPI 4*c66ec88fSEmmanuel Vadotmode. 5*c66ec88fSEmmanuel Vadot 6*c66ec88fSEmmanuel VadotRequired properties: 7*c66ec88fSEmmanuel Vadot- compatible: "vot,v220hf01a-t", "ilitek,ili9225" 8*c66ec88fSEmmanuel Vadot- rs-gpios: Register select signal 9*c66ec88fSEmmanuel Vadot- reset-gpios: Reset pin 10*c66ec88fSEmmanuel Vadot 11*c66ec88fSEmmanuel VadotThe node for this driver must be a child node of a SPI controller, hence 12*c66ec88fSEmmanuel Vadotall mandatory properties described in ../spi/spi-bus.txt must be specified. 13*c66ec88fSEmmanuel Vadot 14*c66ec88fSEmmanuel VadotOptional properties: 15*c66ec88fSEmmanuel Vadot- rotation: panel rotation in degrees counter clockwise (0,90,180,270) 16*c66ec88fSEmmanuel Vadot 17*c66ec88fSEmmanuel VadotExample: 18*c66ec88fSEmmanuel Vadot display@0{ 19*c66ec88fSEmmanuel Vadot compatible = "vot,v220hf01a-t", "ilitek,ili9225"; 20*c66ec88fSEmmanuel Vadot reg = <0>; 21*c66ec88fSEmmanuel Vadot spi-max-frequency = <12000000>; 22*c66ec88fSEmmanuel Vadot rs-gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>; 23*c66ec88fSEmmanuel Vadot reset-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>; 24*c66ec88fSEmmanuel Vadot rotation = <270>; 25*c66ec88fSEmmanuel Vadot }; 26