mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
95e9fd10f0
Bindings for gpio, interrupt controller, power management controller, timer, realtime clock, serial uart, ehci and uhci controllers and framebuffer controllers used on the arch-vt8500 platform. Framebuffer binding also specifies a 'display' node which is required for determining the lcd panel data. Signed-off-by: Tony Prisk <linux@prisktech.co.nz>
24 lines
694 B
Plaintext
24 lines
694 B
Plaintext
Wondermedia WM8505 Framebuffer
|
|
-----------------------------------------------------
|
|
|
|
Required properties:
|
|
- compatible : "wm,wm8505-fb"
|
|
- reg : Should contain 1 register ranges(address and length)
|
|
- via,display: a phandle pointing to the display node
|
|
|
|
Required nodes:
|
|
- display: a display node is required to initialize the lcd panel
|
|
This should be in the board dts. See definition in
|
|
Documentation/devicetree/bindings/video/via,vt8500-fb.txt
|
|
- default-mode: a videomode node as specified in
|
|
Documentation/devicetree/bindings/video/via,vt8500-fb.txt
|
|
|
|
Example:
|
|
|
|
fb@d8050800 {
|
|
compatible = "wm,wm8505-fb";
|
|
reg = <0xd8050800 0x200>;
|
|
display = <&display>;
|
|
default-mode = <&mode0>;
|
|
};
|