Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.18 31 lines 594 B view raw
1ARM Versatile TFT Panels 2 3These panels are connected to the daughterboards found on the 4ARM Versatile reference designs. 5 6This device node must appear as a child to a "syscon"-compatible 7node. 8 9Required properties: 10- compatible: should be "arm,versatile-tft-panel" 11 12Required subnodes: 13- port: see display/panel/panel-common.txt, graph.txt 14 15 16Example: 17 18sysreg@0 { 19 compatible = "arm,versatile-sysreg", "syscon", "simple-mfd"; 20 reg = <0x00000 0x1000>; 21 22 panel: display@0 { 23 compatible = "arm,versatile-tft-panel"; 24 25 port { 26 panel_in: endpoint { 27 remote-endpoint = <&foo>; 28 }; 29 }; 30 }; 31};