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

drm/panel: add support for Foxlink FL500WVR00-A0T panel

This panel is used by Atmel's SAMA5D3 Evaluation Kits (sama5d3xek) and
supported by the simple-panel driver.

Signed-off-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>

authored by

Boris BREZILLON and committed by
Thierry Reding
102932b0 5e4cc278

+32
+7
Documentation/devicetree/bindings/panel/foxlink,fl500wvr00-a0t.txt
··· 1 + Foxlink Group 5" WVGA TFT LCD panel 2 + 3 + Required properties: 4 + - compatible: should be "foxlink,fl500wvr00-a0t" 5 + 6 + This binding is compatible with the simple-panel binding, which is specified 7 + in simple-panel.txt in this directory.
+25
drivers/gpu/drm/panel/panel-simple.c
··· 403 403 }, 404 404 }; 405 405 406 + static const struct drm_display_mode foxlink_fl500wvr00_a0t_mode = { 407 + .clock = 32260, 408 + .hdisplay = 800, 409 + .hsync_start = 800 + 168, 410 + .hsync_end = 800 + 168 + 64, 411 + .htotal = 800 + 168 + 64 + 88, 412 + .vdisplay = 480, 413 + .vsync_start = 480 + 37, 414 + .vsync_end = 480 + 37 + 2, 415 + .vtotal = 480 + 37 + 2 + 8, 416 + .vrefresh = 60, 417 + }; 418 + 419 + static const struct panel_desc foxlink_fl500wvr00_a0t = { 420 + .modes = &foxlink_fl500wvr00_a0t_mode, 421 + .num_modes = 1, 422 + .size = { 423 + .width = 108, 424 + .height = 65, 425 + }, 426 + }; 427 + 406 428 static const struct drm_display_mode lg_lp129qe_mode = { 407 429 .clock = 285250, 408 430 .hdisplay = 2560, ··· 491 469 }, { 492 470 .compatible = "edt,etm0700g0dh6", 493 471 .data = &edt_etm0700g0dh6, 472 + }, { 473 + .compatible = "foxlink,fl500wvr00-a0t", 474 + .data = &foxlink_fl500wvr00_a0t, 494 475 }, { 495 476 .compatible = "lg,lp129qe", 496 477 .data = &lg_lp129qe,