From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755092AbcBWTXU (ORCPT ); Tue, 23 Feb 2016 14:23:20 -0500 Received: from mail-pa0-f51.google.com ([209.85.220.51]:35008 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752906AbcBWTXS (ORCPT ); Tue, 23 Feb 2016 14:23:18 -0500 Date: Tue, 23 Feb 2016 11:23:12 -0800 From: Joshua Clayton To: Lucas Stach , Thierry Reding , David Airlie Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] drm/panel: simple: Add support for Sharp LQ101K1LY04 Message-ID: <20160223112312.11f11353@jclayton-pc> In-Reply-To: <1452635736-7343-1-git-send-email-stillcompiling@gmail.com> References: <1452635736-7343-1-git-send-email-stillcompiling@gmail.com> X-Mailer: Claws Mail 3.12.0 (GTK+ 2.24.28; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 12 Jan 2016 13:55:35 -0800 Joshua Clayton wrote: Ping? FYI The dts for the board using this panel is now in linux-next. Is there something more I need to do to get it queued? They are my first patches for the drm subsystem, so I may be unfamiliar with the customs. I just checked; the patches still apply cleanly against linux-next. > Add simple-panel support for the Sharp LQ101K1LY04i, which is > a 10 inch WXGA (1280x800) lvds panel. > > Signed-off-by: Joshua Clayton > --- > drivers/gpu/drm/panel/panel-simple.c | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > > diff --git a/drivers/gpu/drm/panel/panel-simple.c > b/drivers/gpu/drm/panel/panel-simple.c index f97b73e..e01eacb 100644 > --- a/drivers/gpu/drm/panel/panel-simple.c > +++ b/drivers/gpu/drm/panel/panel-simple.c > @@ -1073,6 +1073,30 @@ static const struct panel_desc > samsung_ltn140at29_301 = { }, > }; > > +static const struct display_timing sharp_lq101k1ly04_timing = { > + .pixelclock = { 60000000, 65000000, 80000000 }, > + .hactive = { 1280, 1280, 1280 }, > + .hfront_porch = { 20, 20, 20 }, > + .hback_porch = { 20, 20, 20 }, > + .hsync_len = { 10, 10, 10 }, > + .vactive = { 800, 800, 800 }, > + .vfront_porch = { 4, 4, 4 }, > + .vback_porch = { 4, 4, 4 }, > + .vsync_len = { 4, 4, 4 }, > + .flags = DISPLAY_FLAGS_PIXDATA_POSEDGE, > +}; > + > +static const struct panel_desc sharp_lq101k1ly04 = { > + .timings = &sharp_lq101k1ly04_timing, > + .num_timings = 1, > + .bpc = 8, > + .size = { > + .width = 217, > + .height = 136, > + }, > + .bus_format = MEDIA_BUS_FMT_RGB888_1X7X4_JEIDA, > +}; > + > static const struct drm_display_mode shelly_sca07010_bfn_lnn_mode = { > .clock = 33300, > .hdisplay = 800, > @@ -1188,6 +1212,9 @@ static const struct of_device_id > platform_of_match[] = { .compatible = "samsung,ltn140at29-301", > .data = &samsung_ltn140at29_301, > }, { > + .compatible = "sharp,lq101k1ly04", > + .data = &sharp_lq101k1ly04, > + }, { > .compatible = "shelly,sca07010-bfn-lnn", > .data = &shelly_sca07010_bfn_lnn, > }, {