mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 11:01:38 +00:00
drm/panel: Add support for Samsung LTN101NT05 panel
The Samsung LNT101NT05 10.1" WXVGA panel can be supported by the simple panel driver. Cc: linux-fbdev@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Cc: David Airlie <airlied@linux.ie> Signed-off-by: Marc Dietrich <marvin24@gmx.de> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
81239c6f79
commit
6d54e3d275
@ -0,0 +1,7 @@
|
|||||||
|
Samsung Electronics 10.1" WSVGA TFT LCD panel
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible: should be "samsung,ltn101nt05"
|
||||||
|
|
||||||
|
This binding is compatible with the simple-panel binding, which is specified
|
||||||
|
in simple-panel.txt in this directory.
|
@ -338,6 +338,28 @@ static const struct panel_desc chunghwa_claa101wb01 = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct drm_display_mode samsung_ltn101nt05_mode = {
|
||||||
|
.clock = 54030,
|
||||||
|
.hdisplay = 1024,
|
||||||
|
.hsync_start = 1024 + 24,
|
||||||
|
.hsync_end = 1024 + 24 + 136,
|
||||||
|
.htotal = 1024 + 24 + 136 + 160,
|
||||||
|
.vdisplay = 600,
|
||||||
|
.vsync_start = 600 + 3,
|
||||||
|
.vsync_end = 600 + 3 + 6,
|
||||||
|
.vtotal = 600 + 3 + 6 + 61,
|
||||||
|
.vrefresh = 60,
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct panel_desc samsung_ltn101nt05 = {
|
||||||
|
.modes = &samsung_ltn101nt05_mode,
|
||||||
|
.num_modes = 1,
|
||||||
|
.size = {
|
||||||
|
.width = 1024,
|
||||||
|
.height = 600,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
static const struct of_device_id platform_of_match[] = {
|
static const struct of_device_id platform_of_match[] = {
|
||||||
{
|
{
|
||||||
.compatible = "auo,b101aw03",
|
.compatible = "auo,b101aw03",
|
||||||
@ -345,6 +367,9 @@ static const struct of_device_id platform_of_match[] = {
|
|||||||
}, {
|
}, {
|
||||||
.compatible = "chunghwa,claa101wb01",
|
.compatible = "chunghwa,claa101wb01",
|
||||||
.data = &chunghwa_claa101wb01
|
.data = &chunghwa_claa101wb01
|
||||||
|
}, {
|
||||||
|
.compatible = "samsung,ltn101nt05",
|
||||||
|
.data = &samsung_ltn101nt05,
|
||||||
}, {
|
}, {
|
||||||
.compatible = "simple-panel",
|
.compatible = "simple-panel",
|
||||||
}, {
|
}, {
|
||||||
|
Loading…
Reference in New Issue
Block a user