From patchwork Tue Aug 11 00:22:35 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 11708655 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 96404618 for ; Tue, 11 Aug 2020 06:59:29 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 749CD20772 for ; Tue, 11 Aug 2020 06:59:29 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=crapouillou.net header.i=@crapouillou.net header.b="b0kw9AqL" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 749CD20772 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=crapouillou.net Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 598C96E15A; Tue, 11 Aug 2020 06:58:46 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from crapouillou.net (crapouillou.net [89.234.176.41]) by gabe.freedesktop.org (Postfix) with ESMTPS id 0F6916E03D for ; Tue, 11 Aug 2020 00:22:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=crapouillou.net; s=mail; t=1597105370; h=from:from:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-transfer-encoding:content-transfer-encoding: in-reply-to:references; bh=6HpYuenQaNHxSqUID5eIAEraqgAyWkjcmY0PScFv6AU=; b=b0kw9AqL7sEZAw2Xo2MLNe4qjsR78FVvun91EhjAYavWPJaID7P91cbGBx7muQK07wjgB+ T1BOXFtRWCJqZtZ6OspMDoVWxTUSP7M0vdnR/K0qoTqhQDfRgTmdiWhWfqs5Kbr/RLAguu twSOPR+FIYm/NawNXz1TyQnuE3Y+Mhs= From: Paul Cercueil To: Thierry Reding , Sam Ravnborg Subject: [PATCH 0/5] drm/panel: A few cleanups and improvements Date: Tue, 11 Aug 2020 02:22:35 +0200 Message-Id: <20200811002240.55194-1-paul@crapouillou.net> MIME-Version: 1.0 X-Mailman-Approved-At: Tue, 11 Aug 2020 06:58:41 +0000 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: David Airlie , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Paul Cercueil , od@zcrc.me Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Hi list, Here's a list of 5 patches that bring some cleanups and improvements. Patches 1-2 clean up the novatek,nt39016 code to remove custom handling of the backlight and to add the missing carriage returns on error messages. Patches 3-5 updates the modes list of the sharp,ls020b1dd01d panel, to make it use 'struct drm_display_mode' instead of 'struct display_timing', modify the timings to get a perfect 60.00 Hz rate, and add a 50 Hz mode. Cheers, -Paul Paul Cercueil (5): drm/panel: novatek,nt39016: Handle backlight the standard way drm/panel: novatek,nt39016: Add missing CR to error messages drm/panel: simple: Convert sharp,ls020b1dd01d from timings to videomode drm/panel: simple: Tweak timings of sharp,ls020b1dd01d for perfect 60Hz drm/panel: simple: Add 50Hz mode for sharp,ls020b1dd01d drivers/gpu/drm/panel/panel-novatek-nt39016.c | 34 ++++++---------- drivers/gpu/drm/panel/panel-simple.c | 40 +++++++++++++------ 2 files changed, 40 insertions(+), 34 deletions(-)