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=-12.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable 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 90C9DC48BC2 for ; Wed, 23 Jun 2021 08:28:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 73D516100B for ; Wed, 23 Jun 2021 08:28:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229978AbhFWIa5 (ORCPT ); Wed, 23 Jun 2021 04:30:57 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:34632 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229833AbhFWIa4 (ORCPT ); Wed, 23 Jun 2021 04:30:56 -0400 Received: from [192.168.0.20] (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id DC4499B1; Wed, 23 Jun 2021 10:28:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1624436918; bh=nApNo5hcf8BQh5BVUFafE+xcZysYzEQx+MRVHfn8ISY=; h=From:Subject:To:Cc:References:Date:In-Reply-To:From; b=nx1LkOwluS9fVtYANJTTuvbmtFKz3aOMNC9vDO6T0/zdKl0i+R1AYxnbtDFP0ac8O cjHsT2DFQW7SVeW/hNxMoARdkd+XoF92GJh5q+AisBXF0DuCgo+jl2/Vd2RlRlZf72 U+fsDfZ6+gmiRsJphoBdgWLayIo7GkAQQKxXb6DI= From: Kieran Bingham Subject: Re: [PATCH 0/3] drm: rcar-du: V3U support To: Laurent Pinchart Cc: dri-devel@lists.freedesktop.org, linux-renesas-soc@vger.kernel.org, linux-kernel@vger.kernel.org References: <20210622232024.3215248-1-kieran.bingham@ideasonboard.com> Message-ID: Date: Wed, 23 Jun 2021 09:28:34 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Laurent, On 23/06/2021 03:09, Laurent Pinchart wrote: > Hi Kieran, > > It seems that the cover letter didn't include the mailing lists on CC, > fixing this. Argh, I should have remembered this. I used --cc-cmd ./scripts/get_maintainer... but it doesn't match anything for the cover letters, when really the cover letter should cc all recipients of all patches. Anyone got a workaround for that, so that the cover-letter actually makes it to the right places as well? > On Wed, Jun 23, 2021 at 12:20:21AM +0100, Kieran Bingham wrote: >> Extend support for the V3U Display Unit, making use of the {recently, >> soon to be} posted DSI encoder from Laurent. >> >> Patch 1 just cleans up in preparation for patch 3, and patch 2 is >> required for operation on the V3U, however it is functional and should >> be correct for the D3 and E3 as well, as they also lack external sync. >> >> Patch 3 enables the V3U and connects it to the MIPI DSI encoder, of >> which I'm in a race between me and laurent for posting these patches ;-) > > You won the race :-) Ah well, as long as the dependency is clear ;D -- Kieran > >> Tests have been run and produce images - but there are artifacts visible >> and some modes are unavailable, which will need further investigations, >> but can be done on top of this integration. >> >> Kieran Bingham (3): >> drm: rcar-du: Sort the DU outputs >> drm: rcar-du: Only initialise TVM_TVSYNC mode when supported >> drm: rcar-du: Add r8a779a0 device support >> >> drivers/gpu/drm/rcar-du/rcar_du_crtc.c | 25 ++++++++++++++++++++++- >> drivers/gpu/drm/rcar-du/rcar_du_crtc.h | 6 ++++-- >> drivers/gpu/drm/rcar-du/rcar_du_drv.c | 21 +++++++++++++++++++ >> drivers/gpu/drm/rcar-du/rcar_du_drv.h | 6 ++++++ >> drivers/gpu/drm/rcar-du/rcar_du_encoder.c | 4 ++++ >> drivers/gpu/drm/rcar-du/rcar_du_group.c | 2 ++ >> 6 files changed, 61 insertions(+), 3 deletions(-) >> >