Dear support team,
I have an armstoneA9r2 running with release fsimx6-V3.0. I want to use it with a lvds display. The configuration for the display in /drivers/video/mxc/ldb.c structure ldb_modedb is not available anymore. So I expected the display configuration to be in the device tree armstonea9r2qdl.dtsi. The only thing I found is:
Code
- #ifdef CONFIG_ARMSTONEA9R2_LVDS0
- /* LVDS0 must always go to DI0 of an IPU! */
- lvds-channel@0 {
- reg = <0>;
- #ifdef CONFIG_ARMSTONEA9R2_USE_ONE_IPU
- crtc = "ipu1-di0";
- #else
- crtc = "ipu2-di0";
- #endif
- fsl,data-mapping = CONFIG_ARMSTONEA9R2_LVDS0_MAPPING;
- fsl,data-width = <CONFIG_ARMSTONEA9R2_LVDS0_DATA_WIDTH>;
- #ifdef __LVDS0_PRIMARY__
- primary;
- #endif
- status = "okay";
- display-timings {
- native-mode = <&timing0>;
- timing0: CONFIG_ARMSTONEA9R2_LVDS0_TIMING;
- };
- };
- #endif
Where can I set display resolution and timings ?
Thanks in advance.