Back to home page

OSCL-LXR

 
 

    


0001 Wondermedia WM8505 Framebuffer
0002 -----------------------------------------------------
0003 
0004 Required properties:
0005 - compatible : "wm,wm8505-fb"
0006 - reg : Should contain 1 register ranges(address and length)
0007 - bits-per-pixel : bit depth of framebuffer (16 or 32)
0008 
0009 Required subnodes:
0010 - display-timings: see display-timing.txt for information
0011 
0012 Example:
0013 
0014         fb@d8051700 {
0015                 compatible = "wm,wm8505-fb";
0016                 reg = <0xd8051700 0x200>;
0017                 bits-per-pixel = <16>;
0018 
0019                 display-timings {
0020                         native-mode = <&timing0>;
0021                         timing0: 800x480 {
0022                                 clock-frequency = <0>; /* unused but required */
0023                                 hactive = <800>;
0024                                 vactive = <480>;
0025                                 hfront-porch = <40>;
0026                                 hback-porch = <88>;
0027                                 hsync-len = <0>;
0028                                 vback-porch = <32>;
0029                                 vfront-porch = <11>;
0030                                 vsync-len = <1>;
0031                         };
0032                 };
0033         };