From 7ba25eea80693fa07d3c0150cd99eada708e1e79 Mon Sep 17 00:00:00 2001 From: Wyon Bi Date: Thu, 7 Sep 2017 14:27:12 +0800 Subject: [PATCH] drm/panel: simple: Add support for BOE MV238QUM-N20 This adds support for the BOE Corporation MV238QUM-N20 23.8" eDP(HBR2, 5.4Gbps) UHD TFT LCD panel, which can be supported by the simple panel driver. Change-Id: I5ec47bf4864899ab437a8aea4fa0d58d338b709a Signed-off-by: Wyon Bi --- .../display/panel/boe,mv238qum-n20.txt | 9 +++++ drivers/gpu/drm/panel/panel-simple.c | 33 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 Documentation/devicetree/bindings/display/panel/boe,mv238qum-n20.txt diff --git a/Documentation/devicetree/bindings/display/panel/boe,mv238qum-n20.txt b/Documentation/devicetree/bindings/display/panel/boe,mv238qum-n20.txt new file mode 100644 index 000000000000..09f2217b87d4 --- /dev/null +++ b/Documentation/devicetree/bindings/display/panel/boe,mv238qum-n20.txt @@ -0,0 +1,9 @@ +Boe Corporation 23.8" UHD TFT LCD panel + +It has been designed to apply eDP(HBR2, 5.4Gbps) interface. + +Required properties: +- compatible: should be "boe,mv238qum-n20" + +This binding is compatible with the simple-panel binding, which is specified +in simple-panel.txt in this directory. diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c index 2e8b210fe74e..ec7853c90838 100644 --- a/drivers/gpu/drm/panel/panel-simple.c +++ b/drivers/gpu/drm/panel/panel-simple.c @@ -895,6 +895,36 @@ static const struct panel_desc avic_tm070ddh03 = { }, }; +static const struct drm_display_mode boe_mv238qum_n20_mode = { + .clock = 559440, + .hdisplay = 3840, + .hsync_start = 3840 + 150, + .hsync_end = 3840 + 150 + 60, + .htotal = 3840 + 150 + 60 + 150, + .vdisplay = 2160, + .vsync_start = 2160 + 24, + .vsync_end = 2160 + 24 + 12, + .vtotal = 2160 + 24 + 12 + 24, + .vrefresh = 60, + .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC, +}; + +static const struct panel_desc boe_mv238qum_n20 = { + .modes = &boe_mv238qum_n20_mode, + .num_modes = 1, + .bpc = 8, + .size = { + .width = 527, + .height = 296, + }, + .delay = { + .prepare = 20, + .enable = 20, + .unprepare = 20, + .disable = 20, + }, +}; + static const struct drm_display_mode boe_nv125fhm_n73_mode = { .clock = 72300, .hdisplay = 1366, @@ -1692,6 +1722,9 @@ static const struct of_device_id platform_of_match[] = { }, { .compatible = "avic,tm070ddh03", .data = &avic_tm070ddh03, + }, { + .compatible = "boe,mv238qum-n20", + .data = &boe_mv238qum_n20, }, { .compatible = "boe,nv125fhm-n73", .data = &boe_nv125fhm_n73,