aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/panel/panel-simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/panel/panel-simple.c')
-rw-r--r--drivers/gpu/drm/panel/panel-simple.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
index 062b6b416b89..2209aeddae3c 100644
--- a/drivers/gpu/drm/panel/panel-simple.c
+++ b/drivers/gpu/drm/panel/panel-simple.c
@@ -1216,6 +1216,30 @@ static const struct panel_desc innolux_n156bge_l21 = {
1216 }, 1216 },
1217}; 1217};
1218 1218
1219static const struct drm_display_mode innolux_tv123wam_mode = {
1220 .clock = 206016,
1221 .hdisplay = 2160,
1222 .hsync_start = 2160 + 48,
1223 .hsync_end = 2160 + 48 + 32,
1224 .htotal = 2160 + 48 + 32 + 80,
1225 .vdisplay = 1440,
1226 .vsync_start = 1440 + 3,
1227 .vsync_end = 1440 + 3 + 10,
1228 .vtotal = 1440 + 3 + 10 + 27,
1229 .vrefresh = 60,
1230 .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC,
1231};
1232
1233static const struct panel_desc innolux_tv123wam = {
1234 .modes = &innolux_tv123wam_mode,
1235 .num_modes = 1,
1236 .bpc = 8,
1237 .size = {
1238 .width = 259,
1239 .height = 173,
1240 },
1241};
1242
1219static const struct drm_display_mode innolux_zj070na_01p_mode = { 1243static const struct drm_display_mode innolux_zj070na_01p_mode = {
1220 .clock = 51501, 1244 .clock = 51501,
1221 .hdisplay = 1024, 1245 .hdisplay = 1024,
@@ -2169,6 +2193,9 @@ static const struct of_device_id platform_of_match[] = {
2169 .compatible = "innolux,n156bge-l21", 2193 .compatible = "innolux,n156bge-l21",
2170 .data = &innolux_n156bge_l21, 2194 .data = &innolux_n156bge_l21,
2171 }, { 2195 }, {
2196 .compatible = "innolux,tv123wam",
2197 .data = &innolux_tv123wam,
2198 }, {
2172 .compatible = "innolux,zj070na-01p", 2199 .compatible = "innolux,zj070na-01p",
2173 .data = &innolux_zj070na_01p, 2200 .data = &innolux_zj070na_01p,
2174 }, { 2201 }, {