Merge tag 'drm/panel/for-4.6-rc1' of http://anongit.freedesktop.org/git/tegra/linux into drm-next
drm/panel: Changes for v4.6-rc1 This contains a refactoring of parts of the DSI core to allow creating DSI devices from non-DSI control busses (i.e. I2C, SPI, ...). Other than that there's support for a couple of new panels as well as a few cleanup patches. * tag 'drm/panel/for-4.6-rc1' of http://anongit.freedesktop.org/git/tegra/linux: drm/bridge: Make (pre/post) enable/disable callbacks optional drm/panel: simple: Add URT UMSH-8596MD-xT panels support dt-bindings: Add URT UMSH-8596MD-xT panel bindings of: Add United Radiant Technology Corporation vendor prefix drm/panel: simple: Support for LG lp120up1 panel dt-bindings: Add LG lp120up1 panel bindings drm/panel: simple: Fix g121x1_l03 hsync/vsync polarity drm/dsi: Get DSI host by DT device node drm/dsi: Add routine to unregister a DSI device drm/dsi: Try to match non-DT DSI devices drm/dsi: Use mipi_dsi_device_register_full() for DSI device creation drm/dsi: Check for CONFIG_OF when defining of_mipi_dsi_device_add()
This commit is contained in:
@@ -847,6 +847,7 @@ static const struct drm_display_mode innolux_g121x1_l03_mode = {
|
||||
.vsync_end = 768 + 38 + 1,
|
||||
.vtotal = 768 + 38 + 1 + 0,
|
||||
.vrefresh = 60,
|
||||
.flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
|
||||
};
|
||||
|
||||
static const struct panel_desc innolux_g121x1_l03 = {
|
||||
@@ -982,6 +983,29 @@ static const struct panel_desc lg_lb070wv8 = {
|
||||
.bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG,
|
||||
};
|
||||
|
||||
static const struct drm_display_mode lg_lp120up1_mode = {
|
||||
.clock = 162300,
|
||||
.hdisplay = 1920,
|
||||
.hsync_start = 1920 + 40,
|
||||
.hsync_end = 1920 + 40 + 40,
|
||||
.htotal = 1920 + 40 + 40+ 80,
|
||||
.vdisplay = 1280,
|
||||
.vsync_start = 1280 + 4,
|
||||
.vsync_end = 1280 + 4 + 4,
|
||||
.vtotal = 1280 + 4 + 4 + 12,
|
||||
.vrefresh = 60,
|
||||
};
|
||||
|
||||
static const struct panel_desc lg_lp120up1 = {
|
||||
.modes = &lg_lp120up1_mode,
|
||||
.num_modes = 1,
|
||||
.bpc = 8,
|
||||
.size = {
|
||||
.width = 267,
|
||||
.height = 183,
|
||||
},
|
||||
};
|
||||
|
||||
static const struct drm_display_mode lg_lp129qe_mode = {
|
||||
.clock = 285250,
|
||||
.hdisplay = 2560,
|
||||
@@ -1177,6 +1201,42 @@ static const struct panel_desc shelly_sca07010_bfn_lnn = {
|
||||
.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
|
||||
};
|
||||
|
||||
static const struct display_timing urt_umsh_8596md_timing = {
|
||||
.pixelclock = { 33260000, 33260000, 33260000 },
|
||||
.hactive = { 800, 800, 800 },
|
||||
.hfront_porch = { 41, 41, 41 },
|
||||
.hback_porch = { 216 - 128, 216 - 128, 216 - 128 },
|
||||
.hsync_len = { 71, 128, 128 },
|
||||
.vactive = { 480, 480, 480 },
|
||||
.vfront_porch = { 10, 10, 10 },
|
||||
.vback_porch = { 35 - 2, 35 - 2, 35 - 2 },
|
||||
.vsync_len = { 2, 2, 2 },
|
||||
.flags = DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_NEGEDGE |
|
||||
DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
|
||||
};
|
||||
|
||||
static const struct panel_desc urt_umsh_8596md_lvds = {
|
||||
.timings = &urt_umsh_8596md_timing,
|
||||
.num_timings = 1,
|
||||
.bpc = 6,
|
||||
.size = {
|
||||
.width = 152,
|
||||
.height = 91,
|
||||
},
|
||||
.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
|
||||
};
|
||||
|
||||
static const struct panel_desc urt_umsh_8596md_parallel = {
|
||||
.timings = &urt_umsh_8596md_timing,
|
||||
.num_timings = 1,
|
||||
.bpc = 6,
|
||||
.size = {
|
||||
.width = 152,
|
||||
.height = 91,
|
||||
},
|
||||
.bus_format = MEDIA_BUS_FMT_RGB666_1X18,
|
||||
};
|
||||
|
||||
static const struct of_device_id platform_of_match[] = {
|
||||
{
|
||||
.compatible = "ampire,am800480r3tmqwa1h",
|
||||
@@ -1256,6 +1316,9 @@ static const struct of_device_id platform_of_match[] = {
|
||||
}, {
|
||||
.compatible = "lg,lb070wv8",
|
||||
.data = &lg_lb070wv8,
|
||||
}, {
|
||||
.compatible = "lg,lp120up1",
|
||||
.data = &lg_lp120up1,
|
||||
}, {
|
||||
.compatible = "lg,lp129qe",
|
||||
.data = &lg_lp129qe,
|
||||
@@ -1280,6 +1343,24 @@ static const struct of_device_id platform_of_match[] = {
|
||||
}, {
|
||||
.compatible = "shelly,sca07010-bfn-lnn",
|
||||
.data = &shelly_sca07010_bfn_lnn,
|
||||
}, {
|
||||
.compatible = "urt,umsh-8596md-t",
|
||||
.data = &urt_umsh_8596md_parallel,
|
||||
}, {
|
||||
.compatible = "urt,umsh-8596md-1t",
|
||||
.data = &urt_umsh_8596md_parallel,
|
||||
}, {
|
||||
.compatible = "urt,umsh-8596md-7t",
|
||||
.data = &urt_umsh_8596md_parallel,
|
||||
}, {
|
||||
.compatible = "urt,umsh-8596md-11t",
|
||||
.data = &urt_umsh_8596md_lvds,
|
||||
}, {
|
||||
.compatible = "urt,umsh-8596md-19t",
|
||||
.data = &urt_umsh_8596md_lvds,
|
||||
}, {
|
||||
.compatible = "urt,umsh-8596md-20t",
|
||||
.data = &urt_umsh_8596md_parallel,
|
||||
}, {
|
||||
/* sentinel */
|
||||
}
|
||||
|
Reference in New Issue
Block a user