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 JuTouch JT070TM041

Add JuTouch Technology JT070TM041 7" 1024x600 LVDS panel support.

Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patch.msgid.link/20260325-v7-0-topic-imx8mp-skov-dts-jutouch-7inch-v1-2-10255d236439@pengutronix.de

authored by

Steffen Trumtrar and committed by
Neil Armstrong
7a5b9669 87535f27

+32
+32
drivers/gpu/drm/panel/panel-simple.c
··· 2947 2947 }, 2948 2948 }; 2949 2949 2950 + static const struct display_timing jutouch_jt070tm041_timing = { 2951 + .pixelclock = { 40800000, 51200000, 67200000 }, 2952 + .hactive = { 1024, 1024, 1024 }, 2953 + .hfront_porch = { 16, 160, 216 }, 2954 + .hback_porch = { 160, 160, 160 }, 2955 + .hsync_len = { 1, 1, 140 }, 2956 + .vactive = { 600, 600, 600 }, 2957 + .vfront_porch = { 1, 12, 127 }, 2958 + .vback_porch = { 23, 23, 23 }, 2959 + .vsync_len = { 1, 1, 20 }, 2960 + }; 2961 + 2962 + static const struct panel_desc jutouch_jt070tm041 = { 2963 + .timings = &jutouch_jt070tm041_timing, 2964 + .num_timings = 1, 2965 + .bpc = 8, 2966 + .size = { 2967 + .width = 154, 2968 + .height = 86, 2969 + }, 2970 + .delay = { 2971 + .enable = 50, 2972 + .disable = 50, 2973 + }, 2974 + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_SPWG, 2975 + .bus_flags = DRM_BUS_FLAG_DE_HIGH, 2976 + .connector_type = DRM_MODE_CONNECTOR_LVDS, 2977 + }; 2978 + 2950 2979 static const struct display_timing jutouch_jt101tm023_timing = { 2951 2980 .pixelclock = { 66300000, 72400000, 78900000 }, 2952 2981 .hactive = { 1280, 1280, 1280 }, ··· 5442 5413 }, { 5443 5414 .compatible = "innolux,zj070na-01p", 5444 5415 .data = &innolux_zj070na_01p, 5416 + }, { 5417 + .compatible = "jutouch,jt070tm041", 5418 + .data = &jutouch_jt070tm041, 5445 5419 }, { 5446 5420 .compatible = "jutouch,jt101tm023", 5447 5421 .data = &jutouch_jt101tm023,