Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/panel: simple: add Multi-Inno Technology MI0700A2T-30

Add Multi-Inno Technology MI0700A2T-30 7" 800x480 LVDS panel support.

Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20241125013413.160725-2-marex@denx.de
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20241125013413.160725-2-marex@denx.de

authored by

Marek Vasut and committed by
Neil Armstrong
ba68e690 465f127a

+30
+30
drivers/gpu/drm/panel/panel-simple.c
··· 3222 3222 .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE, 3223 3223 }; 3224 3224 3225 + static const struct display_timing multi_inno_mi0700a2t_30_timing = { 3226 + .pixelclock = { 26400000, 33000000, 46800000 }, 3227 + .hactive = { 800, 800, 800 }, 3228 + .hfront_porch = { 16, 204, 354 }, 3229 + .hback_porch = { 46, 46, 46 }, 3230 + .hsync_len = { 1, 6, 40 }, 3231 + .vactive = { 480, 480, 480 }, 3232 + .vfront_porch = { 7, 22, 147 }, 3233 + .vback_porch = { 23, 23, 23 }, 3234 + .vsync_len = { 1, 3, 20 }, 3235 + .flags = DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW | 3236 + DISPLAY_FLAGS_DE_HIGH, 3237 + }; 3238 + 3239 + static const struct panel_desc multi_inno_mi0700a2t_30 = { 3240 + .timings = &multi_inno_mi0700a2t_30_timing, 3241 + .num_timings = 1, 3242 + .bpc = 6, 3243 + .size = { 3244 + .width = 153, 3245 + .height = 92, 3246 + }, 3247 + .bus_format = MEDIA_BUS_FMT_RGB666_1X7X3_SPWG, 3248 + .bus_flags = DRM_BUS_FLAG_DE_HIGH, 3249 + .connector_type = DRM_MODE_CONNECTOR_LVDS, 3250 + }; 3251 + 3225 3252 static const struct display_timing multi_inno_mi0700s4t_6_timing = { 3226 3253 .pixelclock = { 29000000, 33000000, 38000000 }, 3227 3254 .hactive = { 800, 800, 800 }, ··· 4932 4905 }, { 4933 4906 .compatible = "mitsubishi,aa084xe01", 4934 4907 .data = &mitsubishi_aa084xe01, 4908 + }, { 4909 + .compatible = "multi-inno,mi0700a2t-30", 4910 + .data = &multi_inno_mi0700a2t_30, 4935 4911 }, { 4936 4912 .compatible = "multi-inno,mi0700s4t-6", 4937 4913 .data = &multi_inno_mi0700s4t_6,