Commit 2cb35c80 authored by Randy Li's avatar Randy Li Committed by Thierry Reding

drm/panel: Add support for Chunghwa CLAA070WP03XG panel

The Chunghwa CLAA070WP03XG is a 7" 1280x800 panel, which can be
supported by the simple panel driver.
Signed-off-by: default avatarRandy Li <ayaka@soulik.info>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 05ec0e45
Chunghwa Picture Tubes Ltd. 7" WXGA TFT LCD panel
Required properties:
- compatible: should be "chunghwa,claa070wp03xg"
This binding is compatible with the simple-panel binding, which is specified
in simple-panel.txt in this directory.
...@@ -610,6 +610,30 @@ static const struct panel_desc avic_tm070ddh03 = { ...@@ -610,6 +610,30 @@ static const struct panel_desc avic_tm070ddh03 = {
}, },
}; };
static const struct drm_display_mode chunghwa_claa070wp03xg_mode = {
.clock = 66770,
.hdisplay = 800,
.hsync_start = 800 + 49,
.hsync_end = 800 + 49 + 33,
.htotal = 800 + 49 + 33 + 17,
.vdisplay = 1280,
.vsync_start = 1280 + 1,
.vsync_end = 1280 + 1 + 7,
.vtotal = 1280 + 1 + 7 + 15,
.vrefresh = 60,
.flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
};
static const struct panel_desc chunghwa_claa070wp03xg = {
.modes = &chunghwa_claa070wp03xg_mode,
.num_modes = 1,
.bpc = 6,
.size = {
.width = 94,
.height = 150,
},
};
static const struct drm_display_mode chunghwa_claa101wa01a_mode = { static const struct drm_display_mode chunghwa_claa101wa01a_mode = {
.clock = 72070, .clock = 72070,
.hdisplay = 1366, .hdisplay = 1366,
...@@ -1654,6 +1678,9 @@ static const struct of_device_id platform_of_match[] = { ...@@ -1654,6 +1678,9 @@ static const struct of_device_id platform_of_match[] = {
}, { }, {
.compatible = "avic,tm070ddh03", .compatible = "avic,tm070ddh03",
.data = &avic_tm070ddh03, .data = &avic_tm070ddh03,
}, {
.compatible = "chunghwa,claa070wp03xg",
.data = &chunghwa_claa070wp03xg,
}, { }, {
.compatible = "chunghwa,claa101wa01a", .compatible = "chunghwa,claa101wa01a",
.data = &chunghwa_claa101wa01a .data = &chunghwa_claa101wa01a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment