View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003490 | fsimx_Linux | HDMI | public | 2018-09-28 13:44 | 2019-01-30 11:29 |
Reporter | Assigned To | ||||
Priority | normal | Severity | tweak | Reproducibility | N/A |
Status | resolved | Resolution | fixed | ||
Product Version | fsimx6-V3.1 | ||||
Target Version | fsimx6-B2019.08 | Fixed in Version | fsimx6-B2019.08 | ||
Summary | 0003490: force dvi mode for hdmi | ||||
Description | there is no devicetree entry available to turn the dvi mode on hdmi on. | ||||
Forum Link | |||||
|
/arch/arm/boot/dts/qblissa9r2qdl.dtsi #ifdef CONFIG_QBLISSA9R2_HDMI &hdmi_video { [...] force-video-mode-mdvi; [...] }; /drivers/video/fbdev/mxc/mxc_hdmi.c struct mxc_edid_cfg edid_cfg; bool force_video_mode_mdvi; static void mxc_hdmi_setup(struct mxc_hdmi *hdmi, unsigned long event) if (hdmi->force_video_mode_mdvi){ hdmi->hdmi_data.video_mode.mDVI = true; } static void hdmi_get_of_property(struct mxc_hdmi *hdmi) /* Force the video mode to mDVI */ hdmi->force_video_mode_mdvi = of_property_read_bool(np, "force-video-mode-mdvi"); |