Skip to content

Commit 958473e

Browse files
Marek Vasutsuperna9999
authored andcommitted
drm/panel: simple: add Multi-Inno Technology MI1010Z1T-1CP11
Add Multi-Inno Technology MI1010Z1T-1CP11 10.1" 1024x600 LVDS panel support. Signed-off-by: Marek Vasut <[email protected]> Reviewed-by: Neil Armstrong <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Neil Armstrong <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 523092f commit 958473e

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

drivers/gpu/drm/panel/panel-simple.c

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3340,6 +3340,33 @@ static const struct panel_desc multi_inno_mi1010ait_1cp = {
33403340
.connector_type = DRM_MODE_CONNECTOR_LVDS,
33413341
};
33423342

3343+
static const struct display_timing multi_inno_mi1010z1t_1cp11_timing = {
3344+
.pixelclock = { 40800000, 51200000, 67200000 },
3345+
.hactive = { 1024, 1024, 1024 },
3346+
.hfront_porch = { 30, 110, 130 },
3347+
.hback_porch = { 30, 110, 130 },
3348+
.hsync_len = { 30, 100, 116 },
3349+
.vactive = { 600, 600, 600 },
3350+
.vfront_porch = { 4, 13, 80 },
3351+
.vback_porch = { 4, 13, 80 },
3352+
.vsync_len = { 2, 9, 40 },
3353+
.flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW |
3354+
DISPLAY_FLAGS_DE_HIGH,
3355+
};
3356+
3357+
static const struct panel_desc multi_inno_mi1010z1t_1cp11 = {
3358+
.timings = &multi_inno_mi1010z1t_1cp11_timing,
3359+
.num_timings = 1,
3360+
.bpc = 6,
3361+
.size = {
3362+
.width = 260,
3363+
.height = 162,
3364+
},
3365+
.bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG,
3366+
.bus_flags = DRM_BUS_FLAG_DE_HIGH,
3367+
.connector_type = DRM_MODE_CONNECTOR_LVDS,
3368+
};
3369+
33433370
static const struct display_timing nec_nl12880bc20_05_timing = {
33443371
.pixelclock = { 67000000, 71000000, 75000000 },
33453372
.hactive = { 1280, 1280, 1280 },
@@ -4983,6 +5010,9 @@ static const struct of_device_id platform_of_match[] = {
49835010
}, {
49845011
.compatible = "multi-inno,mi1010ait-1cp",
49855012
.data = &multi_inno_mi1010ait_1cp,
5013+
}, {
5014+
.compatible = "multi-inno,mi1010z1t-1cp11",
5015+
.data = &multi_inno_mi1010z1t_1cp11,
49865016
}, {
49875017
.compatible = "nec,nl12880bc20-05",
49885018
.data = &nec_nl12880bc20_05,

0 commit comments

Comments
 (0)