From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 72B9EC433FE for ; Fri, 15 Oct 2021 15:07:14 +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 3756D610E8 for ; Fri, 15 Oct 2021 15:07:14 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 3756D610E8 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=zonque.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 155566EDD6; Fri, 15 Oct 2021 15:07:04 +0000 (UTC) Received: from mail.bugwerft.de (mail.bugwerft.de [46.23.86.59]) by gabe.freedesktop.org (Postfix) with ESMTP id 0BC0D6EDD6 for ; Fri, 15 Oct 2021 15:06:57 +0000 (UTC) Received: from [192.168.178.106] (p57bc9963.dip0.t-ipconnect.de [87.188.153.99]) by mail.bugwerft.de (Postfix) with ESMTPSA id 8A25148E465; Fri, 15 Oct 2021 15:00:55 +0000 (UTC) Message-ID: <68ec9712-5f3d-c572-99ee-2cbcaa84a6d7@zonque.org> Date: Fri, 15 Oct 2021 17:00:54 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.1.0 Subject: Re: [PATCH v8 0/2] gpu: drm: add driver for ili9361 panel Content-Language: en-US To: airlied@linux.ie, daniel@ffwll.ch Cc: robh+dt@kernel.org, devicetree@vger.kernel.org, dri-devel@lists.freedesktop.org References: <20211015145910.1020068-1-daniel@zonque.org> From: Daniel Mack In-Reply-To: <20211015145910.1020068-1-daniel@zonque.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 10/15/21 16:59, Daniel Mack wrote: > This is v3 of the series. Ups, sorry. Ignore this one. I meant to resend a different version of this series. My apologies, Daniel > > Changelog: > > v2 -> v3: > * Turn Documentation into yaml format > > v3 -> v4: > * Fix reference error in yaml file > > v4 -> v5: > * More yaml file documentation fixes > > v5 -> v6: > * More yaml file documentation fixes > > v6 -> v7: > * Fix ordering of patches > > v7 -> v8: > * More yaml file documentation fixes > > Daniel Mack (2): > dt-bindings: display: add bindings for newhaven,1.8-128160EF > drm/tiny: add driver for newhaven,1.8-128160EF > > .../display/panel/ilitek,ili9163.yaml | 69 +++++++++++++++++++ > drivers/gpu/drm/tiny/Kconfig | 13 + > drivers/gpu/drm/tiny/Makefile | 1 + > drivers/gpu/drm/tiny/ili9163.c | 224 ++++++++++++++++++ > 4 files changed, 307 insertions(+) > create mode 100644 Documentation/devicetree/bindings/display/ilitek,ili9163.yaml > create mode 100644 drivers/gpu/drm/tiny/ili9163.c >