drm/panel: simple: Add support for BOE TV080WUM-NL0
authorChris Zhong <zyw@rock-chips.com>
Fri, 20 Nov 2015 08:15:37 +0000 (16:15 +0800)
committerThierry Reding <treding@nvidia.com>
Mon, 23 Nov 2015 08:07:48 +0000 (09:07 +0100)
The BOE TV080WUM-NL0 is an 8.0", 1200x1920 (WUXGA) TFT-LCD panel
connected using four DSI lanes. It can be supported by the simple-panel
driver.

Signed-off-by: Chris Zhong <zyw@rock-chips.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/panel/panel-simple.c

index f97b73ec4713722ae3af5a05ba048ea95042e4e0..e3ac2de623a317a1eb9c705af4c39d195ec825f6 100644 (file)
@@ -1263,6 +1263,36 @@ static const struct panel_desc_dsi auo_b080uan01 = {
        .lanes = 4,
 };
 
+static const struct drm_display_mode boe_tv080wum_nl0_mode = {
+       .clock = 160000,
+       .hdisplay = 1200,
+       .hsync_start = 1200 + 120,
+       .hsync_end = 1200 + 120 + 20,
+       .htotal = 1200 + 120 + 20 + 21,
+       .vdisplay = 1920,
+       .vsync_start = 1920 + 21,
+       .vsync_end = 1920 + 21 + 3,
+       .vtotal = 1920 + 21 + 3 + 18,
+       .vrefresh = 60,
+       .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
+};
+
+static const struct panel_desc_dsi boe_tv080wum_nl0 = {
+       .desc = {
+               .modes = &boe_tv080wum_nl0_mode,
+               .num_modes = 1,
+               .size = {
+                       .width = 107,
+                       .height = 172,
+               },
+       },
+       .flags = MIPI_DSI_MODE_VIDEO |
+                MIPI_DSI_MODE_VIDEO_BURST |
+                MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
+       .format = MIPI_DSI_FMT_RGB888,
+       .lanes = 4,
+};
+
 static const struct drm_display_mode lg_ld070wx3_sl01_mode = {
        .clock = 71000,
        .hdisplay = 800,
@@ -1348,10 +1378,14 @@ static const struct panel_desc_dsi panasonic_vvx10f004b00 = {
        .lanes = 4,
 };
 
+
 static const struct of_device_id dsi_of_match[] = {
        {
                .compatible = "auo,b080uan01",
                .data = &auo_b080uan01
+       }, {
+               .compatible = "boe,tv080wum-nl0",
+               .data = &boe_tv080wum_nl0
        }, {
                .compatible = "lg,ld070wx3-sl01",
                .data = &lg_ld070wx3_sl01
This page took 0.026136 seconds and 5 git commands to generate.