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 support for Mitsubishi AA084XE01

Add support for the Mitsubishi AA084XE01 panel which is an 8.4 inch XGA
TFT-LCD module for industrial use.

Link: https://www.mouser.fr/datasheet/2/274/aa084xe01_e-364171.pdf
Signed-off-by: Thomas Weber <thomas.weber@corscience.de>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230807123138.67443-2-miquel.raynal@bootlin.com

authored by

Thomas Weber and committed by
Neil Armstrong
637d3fdc 50b0cd7d

+29
+29
drivers/gpu/drm/panel/panel-simple.c
··· 2793 2793 .bus_flags = DRM_BUS_FLAG_DE_HIGH, 2794 2794 }; 2795 2795 2796 + static const struct drm_display_mode mitsubishi_aa084xe01_mode = { 2797 + .clock = 56234, 2798 + .hdisplay = 1024, 2799 + .hsync_start = 1024 + 24, 2800 + .hsync_end = 1024 + 24 + 63, 2801 + .htotal = 1024 + 24 + 63 + 1, 2802 + .vdisplay = 768, 2803 + .vsync_start = 768 + 3, 2804 + .vsync_end = 768 + 3 + 6, 2805 + .vtotal = 768 + 3 + 6 + 1, 2806 + .flags = DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC, 2807 + }; 2808 + 2809 + static const struct panel_desc mitsubishi_aa084xe01 = { 2810 + .modes = &mitsubishi_aa084xe01_mode, 2811 + .num_modes = 1, 2812 + .bpc = 8, 2813 + .size = { 2814 + .width = 1024, 2815 + .height = 768, 2816 + }, 2817 + .bus_format = MEDIA_BUS_FMT_RGB565_1X16, 2818 + .connector_type = DRM_MODE_CONNECTOR_DPI, 2819 + .bus_flags = DRM_BUS_FLAG_DE_HIGH | DRM_BUS_FLAG_PIXDATA_SAMPLE_NEGEDGE, 2820 + }; 2821 + 2796 2822 static const struct display_timing multi_inno_mi0700s4t_6_timing = { 2797 2823 .pixelclock = { 29000000, 33000000, 38000000 }, 2798 2824 .hactive = { 800, 800, 800 }, ··· 4347 4321 }, { 4348 4322 .compatible = "mitsubishi,aa070mc01-ca1", 4349 4323 .data = &mitsubishi_aa070mc01, 4324 + }, { 4325 + .compatible = "mitsubishi,aa084xe01", 4326 + .data = &mitsubishi_aa084xe01, 4350 4327 }, { 4351 4328 .compatible = "multi-inno,mi0700s4t-6", 4352 4329 .data = &multi_inno_mi0700s4t_6,