Hi igor,
Thanks for your reply.
modified the dtsi based on sabresd dtsi file. after checking the log i got this error.
dtsi file:
reg_mipi_dsi_pwr_on: mipi_dsi_pwr_on {
compatible = "regulator-fixed";
regulator-name = "mipi_dsi_pwr_on";
gpio = <&gpio6 14 0>;
enable-active-high;
};
mipi_dsi_reset: mipi-dsi-reset {
compatible = "gpio-reset";
reset-gpios = <&gpio5 27 1>;//GPIO_ACTIVE_LOW>;
reset-delay-us = <1000>;
#reset-cells = <0>;
};
mxcfb1: fb@0 {
compatible = "fsl,mxc_sdc_fb";
disp_dev = "mipi_dsi";
interface_pix_fmt = "RGB565";
mode_str = "TRULY-WVGA";
default_bpp = <24>;
int_clk = <0>;
lete_init = <0>;
status = "okay";
};
mipi_phy: mipi-phy {
compatible = "fsl,imx6dl-mipi-dsi";
lcd_panel = "TRULY-WVGA-TFT3P5581E";
ipy_id =<0>;
dev_id=<0>;
disp_id=<0>;
phy_data_lanes = <2>;
max_phy_clock = <5000000>;
phy_mode = "rgb";
&mipi_dsi {
pinctrl-names = "default";
compatible = "fsl,imx6q-mipi-dsi";
reg = <0x021e0000 0x4000>;
interrupts = <0 102 0x04>;
gpr = <&gpr>;
clocks = <&clks 138>, <&clks 204>;
clock-names = "mipi_pllref_clk", "mipi_cfg_clk";
//pinctrl-0 = <&pinctrl_mipi_dsi_reset>;
dev_id=<0>;
disp_id=<0>;//1
lcd_panel = "TRULY-WVGA";
resets = <&mipi_dsi_reset>;
mipi-phy = <&mipi_phy>;
status = "okay";
};
This is the error i am getting:
root~# dmesg | grep mipi
mipi_dsi_pwr_on: no parameters
21e0000.mipi supply disp-power-on not found, using dummy regulator
mxc_mipi_dsi 21e0000.mipi: i.MX MIPI DSI driver probed
mxc_mipi_dsi mipi-phy.23: failed to get platform resource 0
mipi_dsi_pwr_on: disabling
root:~# dmesg | grep mxc_sdc_fb
mxc_sdc_fb fb.18: get mxcfb of property fail
mxc_sdc_fb: probe of fb.18 failed with error -22
Error opening /dev/fb0: No such file or directory
Need help to solve this error.