From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752302AbdIVMxg (ORCPT ); Fri, 22 Sep 2017 08:53:36 -0400 Received: from lb1-smtp-cloud8.xs4all.net ([194.109.24.21]:39709 "EHLO lb1-smtp-cloud8.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752148AbdIVMxf (ORCPT ); Fri, 22 Sep 2017 08:53:35 -0400 Subject: Re: [PATCH v8 0/5] Synopsys Designware HDMI Video Capture Controller + PHY To: Jose Abreu , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org References: Cc: Carlos Palminha , Mauro Carvalho Chehab , Hans Verkuil , Rob Herring , Mark Rutland , Sylwester Nawrocki From: Hans Verkuil Message-ID: <6fb1523a-101f-cfe3-51a0-57463b53eb31@xs4all.nl> Date: Fri, 22 Sep 2017 14:53:32 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfBxaQeUqymjzncWx7i86AXhZYBwqJ6DZhm8PnGkCv1CguSjlCAGpJFk0UVghfaHuBJNCTUUCM4uTgcTfj+V0Mci9KLkr4W8KPNkOke3hgTDAFtI1rr/2 y72L3GFF8S6ZhNsnSGgOxNHJK8KdDh1WEzCJCEV5y9ljkrha94Uleph1UPvTslpOnKkKtyyQ8fO6mq6nTFFNSbxnCkcakWmHQR5Ms/DkaNUIMkaZFAZJLsh6 cv1pRmM9GF9I02QtDTDnA9SqL92GJRrSQR1l4iX0+AAtByGIu4/dsoD3ZQWQnV3jqvxhiFpnEj79884rdcBLjqUR1oj8OLryrZHQuisRphd1Nfmk7AKMC6eS YWT2T3+ltmcMnuSN3QowrEn6gCtuDWXgeI2PI0mQFw5GdA0fWgfCU9c/7q3+TsgYIkpBS3/uxK6LFgpnToEpbI1IcQl7NhRFvsILW7ELUohLZhkBQGg= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Jose, I'm going to mark this patch series as 'Changes Requested' since it depends on Sakari's subnotifier work. Once that is accepted I assume you'll make a v9 on top and then this can hopefully be merged. Regards, Hans On 10/07/17 17:46, Jose Abreu wrote: > The Synopsys Designware HDMI RX controller is an HDMI receiver controller that > is responsible to process digital data that comes from a phy. The final result > is a stream of raw video data that can then be connected to a video DMA, for > example, and transfered into RAM so that it can be displayed. > > The controller + phy available in this series natively support all HDMI 1.4 and > HDMI 2.0 modes, including deep color. Although, the driver is quite in its > initial stage and unfortunatelly only non deep color modes are supported. Also, > audio is not yet supported in the driver (the controller has several audio > output interfaces). > > Version 8 addresses review comments from Rob Herring regarding device tree > bindings. > > I also added one patch for cec.h which is needed to fix build errors/warnings. > > This series depends on the patch at [1]. > > This series was tested in a FPGA platform using an embedded platform called > ARC AXS101. > > Jose Abreu (5): > [media] cec.h: Add stub function for cec_register_cec_notifier() > dt-bindings: media: Document Synopsys Designware HDMI RX > MAINTAINERS: Add entry for Synopsys Designware HDMI drivers > [media] platform: Add Synopsys Designware HDMI RX PHY e405 Driver > [media] platform: Add Synopsys Designware HDMI RX Controller Driver > > Cc: Carlos Palminha > Cc: Mauro Carvalho Chehab > Cc: Hans Verkuil > Cc: Rob Herring > Cc: Mark Rutland > Cc: Sylwester Nawrocki > > [1] https://patchwork.linuxtv.org/patch/41834/ > > .../devicetree/bindings/media/snps,dw-hdmi-rx.txt | 58 + > MAINTAINERS | 7 + > drivers/media/platform/Kconfig | 2 + > drivers/media/platform/Makefile | 2 + > drivers/media/platform/dwc/Kconfig | 23 + > drivers/media/platform/dwc/Makefile | 2 + > drivers/media/platform/dwc/dw-hdmi-phy-e405.c | 844 +++++++++ > drivers/media/platform/dwc/dw-hdmi-phy-e405.h | 63 + > drivers/media/platform/dwc/dw-hdmi-rx.c | 1823 ++++++++++++++++++++ > drivers/media/platform/dwc/dw-hdmi-rx.h | 441 +++++ > include/media/cec.h | 8 + > include/media/dwc/dw-hdmi-phy-pdata.h | 128 ++ > include/media/dwc/dw-hdmi-rx-pdata.h | 70 + > 13 files changed, 3471 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/snps,dw-hdmi-rx.txt > create mode 100644 drivers/media/platform/dwc/Kconfig > create mode 100644 drivers/media/platform/dwc/Makefile > create mode 100644 drivers/media/platform/dwc/dw-hdmi-phy-e405.c > create mode 100644 drivers/media/platform/dwc/dw-hdmi-phy-e405.h > create mode 100644 drivers/media/platform/dwc/dw-hdmi-rx.c > create mode 100644 drivers/media/platform/dwc/dw-hdmi-rx.h > create mode 100644 include/media/dwc/dw-hdmi-phy-pdata.h > create mode 100644 include/media/dwc/dw-hdmi-rx-pdata.h >