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 v5.4 41 lines 1.1 kB view raw
1Raydium RM67171 OLED LCD panel with MIPI-DSI protocol 2 3Required properties: 4- compatible: "raydium,rm67191" 5- reg: virtual channel for MIPI-DSI protocol 6 must be <0> 7- dsi-lanes: number of DSI lanes to be used 8 must be <3> or <4> 9- port: input port node with endpoint definition as 10 defined in Documentation/devicetree/bindings/graph.txt; 11 the input port should be connected to a MIPI-DSI device 12 driver 13 14Optional properties: 15- reset-gpios: a GPIO spec for the RST_B GPIO pin 16- v3p3-supply: phandle to 3.3V regulator that powers the VDD_3V3 pin 17- v1p8-supply: phandle to 1.8V regulator that powers the VDD_1V8 pin 18- width-mm: see panel-common.txt 19- height-mm: see panel-common.txt 20- video-mode: 0 - burst-mode 21 1 - non-burst with sync event 22 2 - non-burst with sync pulse 23 24Example: 25 26 panel@0 { 27 compatible = "raydium,rm67191"; 28 reg = <0>; 29 pinctrl-0 = <&pinctrl_mipi_dsi_0_1_en>; 30 pinctrl-names = "default"; 31 reset-gpios = <&gpio1 7 GPIO_ACTIVE_LOW>; 32 dsi-lanes = <4>; 33 width-mm = <68>; 34 height-mm = <121>; 35 36 port { 37 panel_in: endpoint { 38 remote-endpoint = <&mipi_out>; 39 }; 40 }; 41 };