diff options
author | Tom Rini <trini@konsulko.com> | 2018-09-29 22:28:44 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-29 22:28:44 -0400 |
commit | b592936d357f6c648f59ae0e3159149df3a942fb (patch) | |
tree | 4029ea898605dbd4b83ed4546dee5f348a08da7a /doc | |
parent | cc49e2bdb8fbd47af28cb7e47696322586e9fff1 (diff) | |
parent | c1a65a8c598d27379db91cd47d30103d76311398 (diff) | |
download | u-boot-b592936d357f6c648f59ae0e3159149df3a942fb.tar.gz u-boot-b592936d357f6c648f59ae0e3159149df3a942fb.tar.bz2 u-boot-b592936d357f6c648f59ae0e3159149df3a942fb.zip |
Merge branch 'master' of git://git.denx.de/u-boot-video
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/device-tree-bindings/video/osd/gdsys,ihs_video_out.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/device-tree-bindings/video/osd/gdsys,ihs_video_out.txt b/doc/device-tree-bindings/video/osd/gdsys,ihs_video_out.txt new file mode 100644 index 0000000000..d7aacc827e --- /dev/null +++ b/doc/device-tree-bindings/video/osd/gdsys,ihs_video_out.txt @@ -0,0 +1,23 @@ +* Guntermann & Drunck Integrated Hardware Systems OSD + +Required properties: +- compatible: "gdsys,ihs_video_out" +- reg: A combination of three register spaces: + - Register base for the video registers + - Register base for the OSD registers + - Address of the OSD video memory +- mode: The initial resolution and frequency: "1024_768_60", "720_400_70", or + "640_480_70" +- clk_gen: phandle to the pixel clock generator +- dp_tx: phandle to the display associated with the OSD + +Example: + +fpga0_video0 { + compatible = "gdsys,ihs_video_out"; + reg = <0x100 0x40 + 0x180 0x20 + 0x1000 0x1000>; + dp_tx = <&fpga0_dp_video0>; + clk_gen = <&fpga0_video0_clkgen>; +}; |