diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2018-11-10 20:44:37 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2018-11-10 20:44:37 +0000 |
commit | 0bf7de3125ed8dcfbeaa112994b25101fa9b96c6 (patch) | |
tree | ae8484d3cc1ff07575b83cc7a4592c9a33bd1dcc /Bindings/display/ilitek,ili9341.txt | |
parent | c4fc09e238494b428e1e0abfd881425a86d8bfe7 (diff) | |
download | src-0bf7de3125ed8dcfbeaa112994b25101fa9b96c6.tar.gz src-0bf7de3125ed8dcfbeaa112994b25101fa9b96c6.zip |
dts: Update our copy to Linux 4.19vendor/device-tree/4.19
Notes
Notes:
svn path=/vendor/device-tree/dist/; revision=340335
svn path=/vendor/device-tree/4.19/; revision=340336; tag=vendor/device-tree/4.19
Diffstat (limited to 'Bindings/display/ilitek,ili9341.txt')
-rw-r--r-- | Bindings/display/ilitek,ili9341.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Bindings/display/ilitek,ili9341.txt b/Bindings/display/ilitek,ili9341.txt new file mode 100644 index 000000000000..169b32e4ee4e --- /dev/null +++ b/Bindings/display/ilitek,ili9341.txt @@ -0,0 +1,27 @@ +Ilitek ILI9341 display panels + +This binding is for display panels using an Ilitek ILI9341 controller in SPI +mode. + +Required properties: +- compatible: "adafruit,yx240qv29", "ilitek,ili9341" +- dc-gpios: D/C pin +- reset-gpios: Reset pin + +The node for this driver must be a child node of a SPI controller, hence +all mandatory properties described in ../spi/spi-bus.txt must be specified. + +Optional properties: +- rotation: panel rotation in degrees counter clockwise (0,90,180,270) +- backlight: phandle of the backlight device attached to the panel + +Example: + display@0{ + compatible = "adafruit,yx240qv29", "ilitek,ili9341"; + reg = <0>; + spi-max-frequency = <32000000>; + dc-gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>; + reset-gpios = <&gpio0 8 GPIO_ACTIVE_HIGH>; + rotation = <270>; + backlight = <&backlight>; + }; |