]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
drm/panel: simple: Add support for Innolux AT043TN24
authorNicolas Ferre <nicolas.ferre@atmel.com>
Thu, 19 Mar 2015 13:43:01 +0000 (14:43 +0100)
committerThierry Reding <treding@nvidia.com>
Thu, 2 Apr 2015 17:04:09 +0000 (19:04 +0200)
The Innolux AT043TN24 4.3" WQVGA TFT LCD panel.
This panel with backlight is found in PDA 4.3" LCD screen (TM43xx series for
instance).

Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Documentation/devicetree/bindings/panel/innolux,at043tn24.txt [new file with mode: 0644]
drivers/gpu/drm/panel/panel-simple.c

diff --git a/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt b/Documentation/devicetree/bindings/panel/innolux,at043tn24.txt
new file mode 100644 (file)
index 0000000..4104226
--- /dev/null
@@ -0,0 +1,7 @@
+Innolux AT043TN24 4.3" WQVGA TFT LCD panel
+
+Required properties:
+- compatible: should be "innolux,at043tn24"
+
+This binding is compatible with the simple-panel binding, which is specified
+in simple-panel.txt in this directory.
index 555c11d9c7cc10259293dd76b179eca80023b313..57958f11d569d786b6e0e118a7c464f1b34edd0a 100644 (file)
@@ -663,6 +663,31 @@ static const struct panel_desc hitachi_tx23d38vm0caa = {
        },
 };
 
+static const struct drm_display_mode innolux_at043tn24_mode = {
+       .clock = 9000,
+       .hdisplay = 480,
+       .hsync_start = 480 + 2,
+       .hsync_end = 480 + 2 + 41,
+       .htotal = 480 + 2 + 41 + 2,
+       .vdisplay = 272,
+       .vsync_start = 272 + 2,
+       .vsync_end = 272 + 2 + 11,
+       .vtotal = 272 + 2 + 11 + 2,
+       .vrefresh = 60,
+       .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC,
+};
+
+static const struct panel_desc innolux_at043tn24 = {
+       .modes = &innolux_at043tn24_mode,
+       .num_modes = 1,
+       .bpc = 8,
+       .size = {
+               .width = 95,
+               .height = 54,
+       },
+       .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
+};
+
 static const struct drm_display_mode innolux_g121i1_l01_mode = {
        .clock = 71000,
        .hdisplay = 1280,
@@ -871,6 +896,9 @@ static const struct of_device_id platform_of_match[] = {
        }, {
                .compatible = "hit,tx23d38vm0caa",
                .data = &hitachi_tx23d38vm0caa
+       }, {
+               .compatible = "innolux,at043tn24",
+               .data = &innolux_at043tn24,
        }, {
                .compatible ="innolux,g121i1-l01",
                .data = &innolux_g121i1_l01