Merge tag 'fbdev-v5.1' of git://github.com/bzolnier/linux
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / display / amlogic,simple-framebuffer.txt
1 Meson specific Simple Framebuffer bindings
2
3 This binding documents meson specific extensions to the simple-framebuffer
4 bindings. The meson simplefb u-boot code relies on the devicetree containing
5 pre-populated simplefb nodes.
6
7 These extensions are intended so that u-boot can select the right node based
8 on which pipeline is being used. As such they are solely intended for
9 firmware / bootloader use, and the OS should ignore them.
10
11 Required properties:
12 - compatible: "amlogic,simple-framebuffer", "simple-framebuffer"
13 - amlogic,pipeline, one of:
14   "vpu-cvbs"
15   "vpu-hdmi"
16
17 Example:
18
19 chosen {
20         #address-cells = <2>;
21         #size-cells = <2>;
22         ranges;
23
24         simplefb_hdmi: framebuffer-hdmi {
25                 compatible = "amlogic,simple-framebuffer",
26                              "simple-framebuffer";
27                 amlogic,pipeline = "vpu-hdmi";
28                 clocks = <&clkc CLKID_HDMI_PCLK>,
29                          <&clkc CLKID_CLK81>,
30                          <&clkc CLKID_GCLK_VENCI_INT0>;
31                 power-domains = <&pwrc_vpu>;
32         };
33 };