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 X-Spam-Level: X-Spam-Status: No, score=-3.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C03FAC43613 for ; Fri, 21 Jun 2019 09:07:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 960D9208C3 for ; Fri, 21 Jun 2019 09:07:43 +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="o6cpdXWD" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726360AbfFUJHm (ORCPT ); Fri, 21 Jun 2019 05:07:42 -0400 Received: from outils.crapouillou.net ([89.234.176.41]:36498 "EHLO crapouillou.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726055AbfFUJHl (ORCPT ); Fri, 21 Jun 2019 05:07:41 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=crapouillou.net; s=mail; t=1561108058; 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-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0hmNXNpfLXB/81EAq7J6wicDteIao7+vjXFAj9FSVA4=; b=o6cpdXWDkPBz1kMBgJ3nUoQc8y1XLQgy/0vEsbf+f0AeDnjVUvg+9Dk14VgdGX0Rr9HTOT DoGjrVfLFOH72xmc1UVRmuyP3K49pDeqL+fJtFJhu2uJiTtbsL/RK/vVwbaQTzUVlCHjlR AKXm6m4MNJEtuek94uG0vl2qXtIkCCQ= Date: Fri, 21 Jun 2019 11:07:30 +0200 From: Paul Cercueil Subject: Re: [PATCH v5 2/2] DRM: Add KMS driver for the Ingenic JZ47xx SoCs To: Daniel Vetter Cc: Sam Ravnborg , David Airlie , Rob Herring , Mark Rutland , Maarten Lankhorst , Maxime Ripard , Sean Paul , od@zcrc.me, dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Artur Rojek Message-Id: <1561108050.1777.0@crapouillou.net> In-Reply-To: <20190621090411.GY12905@phenom.ffwll.local> References: <20190603152331.23160-1-paul@crapouillou.net> <20190603152331.23160-2-paul@crapouillou.net> <20190619122622.GB29084@ravnborg.org> <1561040159.1978.0@crapouillou.net> <20190621090411.GY12905@phenom.ffwll.local> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Le ven. 21 juin 2019 =E0 11:04, Daniel Vetter a =E9crit=20 : > On Thu, Jun 20, 2019 at 04:15:59PM +0200, Paul Cercueil wrote: >>=20 >>=20 >> Le mer. 19 juin 2019 =E0 14:26, Sam Ravnborg a=20 >> =E9crit : >> > Hi Paul. >> > >> > On Mon, Jun 03, 2019 at 05:23:31PM +0200, Paul Cercueil wrote: >> > > Add a KMS driver for the Ingenic JZ47xx family of SoCs. >> > > This driver is meant to replace the aging jz4740-fb driver. >> > > >> > > This driver does not make use of the simple pipe helper, for=20 >> the >> > > reason >> > > that it will soon be updated to support more advanced features=20 >> like >> > > multiple planes, IPU integration for colorspace conversion and >> > > up/down >> > > scaling, support for DSI displays, and TV-out and HDMI outputs. >> > > >> > > Signed-off-by: Paul Cercueil >> > > Tested-by: Artur Rojek >> > > --- >> > > >> > > Notes: >> > > v2: - Remove custom handling of panel. The panel is now >> > > discovered using >> > > the standard API. >> > > - Lots of small tweaks suggested by upstream >> > > >> > > v3: - Use devm_drm_dev_init() >> > > - Update compatible strings to -lcd instead of -drm >> > > - Add destroy() callbacks to plane and crtc >> > > - The ingenic,lcd-mode is now read from the bridge's DT=20 >> node >> > > >> > > v4: Remove ingenic,lcd-mode property completely. The=20 >> various >> > > modes are now >> > > deduced from the connector type, the pixel format or the=20 >> bus >> > > flags. >> > > >> > > v5: - Fix framebuffer size incorrectly calculated for 24bpp >> > > framebuffers >> > > - Use 32bpp framebuffer instead of 16bpp, as it'll work=20 >> with >> > > both >> > > 16-bit and 24-bit panel >> > > - Get rid of drm_format_plane_cpp() which has been dropped >> > > upstream >> > > - Avoid using drm_format_info->depth, which is deprecated. >> > In the drm world we include the revision notes in the changelog. >> > So I did this when I applied it to drm-misc-next. >> > >> > Fixed a few trivial checkpatch warnings about indent too. >> > There was a few too-long-lines warnings that I ignored. Fixing=20 >> them >> > would have hurt readability. >>=20 >> Thanks. >>=20 >> > I assume you will maintain this driver onwards from now. >> > Please request drm-misc commit rights (see >> > https://www.freedesktop.org/wiki/AccountRequests/) >> > You will need a legacy SSH account. >>=20 >> I requested an account here: >> https://gitlab.freedesktop.org/freedesktop/freedesktop/issues/162 >=20 > This 404s for me. Did you set the issue to private by any chance? Or > deleted already again? > -Daniel Sorry, yes, I set it to private. I thought I had to :( -Paul >>=20 >> > And you should familiarize yourself with the maintainer-tools: >> > https://drm.pages.freedesktop.org/maintainer-tools/index.html >> > >> > For my use I use "dim update-branches; dim apply; dim push >> > So only a small subset i needed for simple use. >> > >> > Sam >>=20 >>=20 >=20 > -- > Daniel Vetter > Software Engineer, Intel Corporation > http://blog.ffwll.ch =