forked from Minki/linux
73fc610f9a
Add a simple device tree probe support for mxsfb driver. Before a common binding for struct fb_videomode is available, the driver will keep using struct mxsfb_platform_data. That said, platform code will use auxdata to attach mxsfb_platform_data for device tree boot. Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
20 lines
487 B
Plaintext
20 lines
487 B
Plaintext
* Freescale MXS LCD Interface (LCDIF)
|
|
|
|
Required properties:
|
|
- compatible: Should be "fsl,<chip>-lcdif". Supported chips include
|
|
imx23 and imx28.
|
|
- reg: Address and length of the register set for lcdif
|
|
- interrupts: Should contain lcdif interrupts
|
|
|
|
Optional properties:
|
|
- panel-enable-gpios : Should specify the gpio for panel enable
|
|
|
|
Examples:
|
|
|
|
lcdif@80030000 {
|
|
compatible = "fsl,imx28-lcdif";
|
|
reg = <0x80030000 2000>;
|
|
interrupts = <38 86>;
|
|
panel-enable-gpios = <&gpio3 30 0>;
|
|
};
|