DART-MX8M Display

From Variscite Wiki
Revision as of 16:12, 18 July 2018 by Admin (talk | contribs)
DART-MX8M Display

Introduction

MIPI-DSI, LVDS and HDMI

I.MX8M supports MIPI-DSI and HDMI displays. DART-MX8M can be optionally equipped with SN65DSI84 MIPI-DSI to LVDS bridge.
DART-MX8M carrier board comes with LVDS and HDMI connectors, so you can connect either LVDS or HDMI display.
Dual LVDS+HDMI display configuration is also supported.
Connecting MIPI-DSI display to DART-MX8M carrier board requires designing a custom connector.

DCSS vs LCDIF

i.MX8M comes with 2 display controllers: DCSS and LCDIF.
DCCS can be connected to either HDMI or MIPI-DSI and supports resolutions up to 4K.
LCDIF can be connected only to MIPI-DSI and supports resolutions up to 1080p.

Selecting display configuration

Selecting display configuration is a matter of selecting an appropriate DTB file.
All available DTB files are listed in the table below.

DTB File Name
Description
imx8m-var-dart-emmc-wifi-hdmi.dtb Device tree blob for eMMC, WIFI and HDMI display configuration. SD card disabled.
imx8m-var-dart-emmc-wifi-hdmi-4k.dtb Device tree blob for eMMC, WIFI and HDMI 4K display configuration. SD card disabled.
imx8m-var-dart-emmc-wifi-dcss-lvds.dtb Device tree blob for for eMMC, WIFI and DCSS LVDS display configuration. SD card disabled.
imx8m-var-dart-emmc-wifi-lcdif-lvds.dtb Device tree blob for for eMMC, WIFI and LCDIF LVDS display configuration. SD card disabled.
imx8m-var-dart-emmc-wifi-dual-display.dtb Device tree blob for for eMMC, WIFI and dual LVDS+HDMI display configuration. SD card disabled.
imx8m-var-dart-sd-emmc-hdmi.dtb Device tree blob for SD, eMMC and HDMI display configuration. WIFI disabled.
imx8m-var-dart-sd-emmc-hdmi-4k.dtb Device tree blob for SD, eMMC and HDMI 4K display configuration. WIFI disabled.
imx8m-var-dart-sd-emmc-dcss-lvds.dtb Device tree blob for SD, eMMC and DCSS LVDS display configuration. WIFI disabled.
imx8m-var-dart-sd-emmc-lcdif-lvds.dtb Device tree blob for SD, eMMC and LCDIF LVDS display configuration. WIFI disabled.
imx8m-var-dart-sd-emmc-dual-display.dtb Device tree blob for SD, eMMC and dual LVDS+HDMI display configuration. WIFI disabled.


File /boot/imx8m-var-dart.dtb is a symbolic link to the active DTB file. By default DCSS+LVDS display is used.
For example, to select HDMI display in EMMC+WIFI configuration, run the following commands:

# cd /boot
# ln -fs imx8m-var-dart-emmc-wifi-hdmi.dtb imx8m-var-dart.dtb

Reboot is required for new configuration to take effect.

Setting HDMI display resolution

The default HDMI display resolution is 1080P. This setting is passed to the Linux kernel via "video" command line parameter.

To check the current resolution, use fbset command:

root@imx8m-var-dart:~# fbset

mode "1920x1080"
    geometry 1920 1080 1920 1080 32
    timings 0 0 0 0 0 0 0
    accel true
    rgba 8/16,8/8,8/0,0/0
endmode

To modify HDMI display resolution use fw_setenv command to set "video" parameter in the u-boot environment.
For example, to set 4K@60fps resolution, run

# fw_setenv video HDMI-A-1:3840x2160-32@60

The setting will take effect after reboot.

Setting Weston desktop resolution

The default Weston desktop resolution is 1080P. This setting is independent of actual display resolution.
To modify Weston resolution, edit /etc/default/weston and set DESKTOP_SHELL_WINDOW parameter.
For example, to set 4K resolution

DESKTOP_SHELL_WINDOW=3840x2160

For new setting to take effect restart weston by running

# systemctl restart weston

Dual display configuration

In dual display configuration Weston desktop is running on LVDS display and HDMI display is blank.
To play video on HDMI display the following command can be used:

# gplay-1.0 --video-sink=kmssink video.mp4

To play video on LVDS display the following command can be used:

# gplay-1.0 --video-sink=waylandsink video.mp4

Adding custom LVDS panel

DART-MX8M evaluation kit comes with 800x480 LCD panel. DART-MX8M DTS files were created with this panel in mind. To support your custom LVDS panel, you should make several modifications

Adding panel definitions to panel driver

The following code snippets define Variscite panel in drivers/gpu/drm/panel/panel-simple.c in Linux kernel source:

static const struct drm_display_mode sgd_gktw70sdae4sd_mode = {
	.clock = 29250,
	.hdisplay = 800,
	.hsync_start = 800 + 40,
	.hsync_end = 800 + 40 + 48,
	.htotal = 800 + 40 + 48 + 40,
	.vdisplay = 480,
	.vsync_start = 480 + 23,
	.vsync_end = 480 + 23 + 3,
	.vtotal = 480 + 23 + 3 + 39,
	.vrefresh = 60,
	.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
};

static const struct panel_desc_dsi sgd_gktw70sdae4sd = {
	.desc = {
		.modes = &sgd_gktw70sdae4sd_mode,
		.num_modes = 1,
		.bpc = 8,
		.size = {
			.width = 154,
			.height = 87,
		},
		.bus_flags = DRM_BUS_FLAG_DE_LOW,
	},
	.flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_CLOCK_NON_CONTINUOUS,
	.format = MIPI_DSI_FMT_RGB888,
	.lanes = 4,
};

static const struct of_device_id dsi_of_match[] = {
 ...
	}, {
		.compatible = "sgd,gktw70sdae4sd",
		.data = &sgd_gktw70sdae4sd
	}, {
		/* sentinel */
	}
};

You you should add definitions of your panel and rebuild the kernel.

Referencing custom panel in the DTS file

The following code references Variscite panel in arch/arm64/boot/dts/variscite/imx8m-var-dart-common.dtsi under kernel source tree

&mipi_dsi_bridge {
	...
	panel@0 {
                reg = <0>;
                status = "okay";
                compatible = "sgd,gktw70sdae4sd";
                backlight = <&backlight>;
		dsi-lanes = <4>;
		panel-width-mm  = <154>;
		panel-height-mm = <87>;

		port {
			panel_in: endpoint {
				remote-endpoint = <&mipi_dsi_bridge_out>;
			};
		};
	};
        ...
};

You should modify "compatible", "dsi-lanes", "panel-width-mm" and "panel-height-mm" properties to match your panel and rebuild DTB files.

Configuring MIPI-DSI to LVDS bridge

MIPI-DSI to LVDS bridge configuration in arch/arm64/boot/dts/variscite/imx8m-var-dart-common.dtsi matches Variscite panel:

	dsi_lvds_bridge: sn65dsi84@2c {
	        ...
		sn65dsi84,addresses = <	0x09 0x0A 0x0B 0x0D 0x10 0x11 0x12 0x13
					0x18 0x19 0x1A 0x1B 0x20 0x21 0x22 0x23
					0x24 0x25 0x26 0x27 0x28 0x29 0x2A 0x2B
					0x2C 0x2D 0x2E 0x2F 0x30 0x31 0x32 0x33
					0x34 0x35 0x36 0x37 0x38 0x39 0x3A 0x3B
					0x3C 0x3D 0x3E 0x0D>;

		sn65dsi84,values =    <	0x00 0x01 0x10 0x00 0x26 0x00 0x11 0x00
					0x7a 0x00 0x03 0x00 0x20 0x03 0x00 0x00
					0x00 0x00 0x00 0x00 0x21 0x00 0x00 0x00
					0x30 0x00 0x00 0x00 0x03 0x00 0x00 0x00
					0x28 0x00 0x00 0x00 0x00 0x00 0x00 0x00
					0x00 0x00 0x00 0x01>;
	};
};

Use TI DSI Tuner application http://www.ti.com/tool/DSI-TUNER to generate bridge configuration for your panel and rebuild DTB files.
Documentation on MIPI-DSI to LVDS bridge is available here: http://www.ti.com/product/sn65dsi84