From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933884AbcBRHzQ (ORCPT ); Thu, 18 Feb 2016 02:55:16 -0500 Received: from lucky1.263xmail.com ([211.157.147.131]:50242 "EHLO lucky1.263xmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933509AbcBRHzN (ORCPT ); Thu, 18 Feb 2016 02:55:13 -0500 X-263anti-spam: KSV:0; X-MAIL-GRAY: 1 X-MAIL-DELIVERY: 0 X-KSVirus-check: 0 X-ABS-CHECKED: 4 X-ADDR-CHECKED: 0 X-RL-SENDER: ykk@rock-chips.com X-FST-TO: linux-arm-kernel@lists.infradead.org X-SENDER-IP: 103.29.142.67 X-LOGIN-NAME: ykk@rock-chips.com X-UNIQUE-TAG: <302d93ad7e147934f4c6925b4aa59293> X-ATTACHMENT-NUM: 0 X-DNS-TYPE: 0 Subject: Re: [PATCH v8 0/2] Add Rockchip Inno-HDMI driver To: Mark yao , Heiko Stuebner References: <1454049768-30872-1-git-send-email-ykk@rock-chips.com> <56C560B2.6020208@rock-chips.com> Cc: David Airlie , Thierry Reding , Rob Herring , Ken Mixte , Ben Chan , Zheng Yang , Kumar Gala , Ian Campbell , Pawel Moll , Mark Rutland , dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-rockchip@lists.infradead.org, linux-arm-kernel@lists.infradead.org From: Yakir Yang Message-ID: <56C578D4.30108@rock-chips.com> Date: Thu, 18 Feb 2016 15:55:00 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 In-Reply-To: <56C560B2.6020208@rock-chips.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Mark, Thanks for your apply ;) - Yakir On 02/18/2016 02:12 PM, Mark yao wrote: > On 2016年01月29日 14:42, Yakir Yang wrote: >> Here are a brief introduction to Innosilicon HDMI IP: >> - Support HDMI 1.4a, HDCP 1.2 and DVI 1.0 standard compliant >> transmitter >> - Support HDMI1.4 a/b 3D function defined in HDMI 1.4 a/b spec >> - Digital video interface supports a pixel size of 24, 30, 36, >> 48bits color depth in RGB >> - S/PDIF output supports PCM, Dolby Digital, DTS digital audio >> transmission >> (32-192kHz Fs) using IEC60958 and IEC 61937 >> - The EDID and CEC function are also supported by Innosilicon HDMI >> Transmitter Controlle >> >> Changes in v8: >> - Don't check whether encoder output format is RGB colorspace, cause >> driver >> default configure the output colorspace to RGB. (ZhengYang) >> - Correct the check condition in inno_hdmi_config_video_csc() >> (ZhengYang) >> - if (data->enc_out_format == data->enc_out_format) { >> + if (data->enc_in_format == data->enc_out_format) { >> >> Changes in v7: >> - Correct the module licnese statement (Paul) >> - MODULE_LICENSE("GPL"); >> + MODULE_LICENSE("GPLv2"); >> - Start indentation with tabs and fix the misspell in Kconfig (Paul) >> - Carry the lost device-binding document (Heiko) >> >> Changes in v6: >> - Rebase the Makefile/Kconfig files which add by Chris's >> rockchip-mipi driver (Caeser) >> >> Changes in v5: >> - Use hdmi_infoframe helper functions to packed the infoframe (Russell) >> - Remove the unused double wait_for_completion_timeout for ddc >> transfer (Russell) >> - Remove the unused local variable in "inno_hdmi_i2c_write()" >> function (Russell) >> >> Changes in v4: >> - Modify the commit title "drm/rockchip: hdmi: ..." (Mark) >> - Correct the "DKMS" to "DPMS" (Mark) >> - Fix over 80 characters problems (Mark) >> - Remove encoder .prepare/.commit helper functions, and move the vop >> mode >> configure function into encoder .enable helper functions. (Mark) >> >> Changes in v3: >> - Use encoder enable/disable function, and remove the encoder DPMS >> function >> - Keep HDMI PLL power on in standby mode >> >> Changes in v2: >> - Using DRM atomic helper functions for connector init (Mark) >> - Remove "hdmi->connector.encoder = encoder;" (Mark) >> - Add the Acked-by tags from Rob >> - Correct the misspell "rk3036-dw-hdmi" (Heiko) >> >> Yakir Yang (2): >> drm/rockchip: hdmi: add Innosilicon HDMI support >> dt-bindings: add document for Innosilicon HDMI on Rockchip platform >> >> .../display/rockchip/inno_hdmi-rockchip.txt | 50 ++ >> drivers/gpu/drm/rockchip/Kconfig | 8 + >> drivers/gpu/drm/rockchip/Makefile | 1 + >> drivers/gpu/drm/rockchip/inno_hdmi.c | 939 >> +++++++++++++++++++++ >> drivers/gpu/drm/rockchip/inno_hdmi.h | 362 ++++++++ >> 5 files changed, 1360 insertions(+) >> create mode 100644 >> Documentation/devicetree/bindings/display/rockchip/inno_hdmi-rockchip.txt >> create mode 100644 drivers/gpu/drm/rockchip/inno_hdmi.c >> create mode 100644 drivers/gpu/drm/rockchip/inno_hdmi.h >> > > Applied to my branch :-) . > > Thanks. > From mboxrd@z Thu Jan 1 00:00:00 1970 From: ykk@rock-chips.com (Yakir Yang) Date: Thu, 18 Feb 2016 15:55:00 +0800 Subject: [PATCH v8 0/2] Add Rockchip Inno-HDMI driver In-Reply-To: <56C560B2.6020208@rock-chips.com> References: <1454049768-30872-1-git-send-email-ykk@rock-chips.com> <56C560B2.6020208@rock-chips.com> Message-ID: <56C578D4.30108@rock-chips.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi Mark, Thanks for your apply ;) - Yakir On 02/18/2016 02:12 PM, Mark yao wrote: > On 2016?01?29? 14:42, Yakir Yang wrote: >> Here are a brief introduction to Innosilicon HDMI IP: >> - Support HDMI 1.4a, HDCP 1.2 and DVI 1.0 standard compliant >> transmitter >> - Support HDMI1.4 a/b 3D function defined in HDMI 1.4 a/b spec >> - Digital video interface supports a pixel size of 24, 30, 36, >> 48bits color depth in RGB >> - S/PDIF output supports PCM, Dolby Digital, DTS digital audio >> transmission >> (32-192kHz Fs) using IEC60958 and IEC 61937 >> - The EDID and CEC function are also supported by Innosilicon HDMI >> Transmitter Controlle >> >> Changes in v8: >> - Don't check whether encoder output format is RGB colorspace, cause >> driver >> default configure the output colorspace to RGB. (ZhengYang) >> - Correct the check condition in inno_hdmi_config_video_csc() >> (ZhengYang) >> - if (data->enc_out_format == data->enc_out_format) { >> + if (data->enc_in_format == data->enc_out_format) { >> >> Changes in v7: >> - Correct the module licnese statement (Paul) >> - MODULE_LICENSE("GPL"); >> + MODULE_LICENSE("GPLv2"); >> - Start indentation with tabs and fix the misspell in Kconfig (Paul) >> - Carry the lost device-binding document (Heiko) >> >> Changes in v6: >> - Rebase the Makefile/Kconfig files which add by Chris's >> rockchip-mipi driver (Caeser) >> >> Changes in v5: >> - Use hdmi_infoframe helper functions to packed the infoframe (Russell) >> - Remove the unused double wait_for_completion_timeout for ddc >> transfer (Russell) >> - Remove the unused local variable in "inno_hdmi_i2c_write()" >> function (Russell) >> >> Changes in v4: >> - Modify the commit title "drm/rockchip: hdmi: ..." (Mark) >> - Correct the "DKMS" to "DPMS" (Mark) >> - Fix over 80 characters problems (Mark) >> - Remove encoder .prepare/.commit helper functions, and move the vop >> mode >> configure function into encoder .enable helper functions. (Mark) >> >> Changes in v3: >> - Use encoder enable/disable function, and remove the encoder DPMS >> function >> - Keep HDMI PLL power on in standby mode >> >> Changes in v2: >> - Using DRM atomic helper functions for connector init (Mark) >> - Remove "hdmi->connector.encoder = encoder;" (Mark) >> - Add the Acked-by tags from Rob >> - Correct the misspell "rk3036-dw-hdmi" (Heiko) >> >> Yakir Yang (2): >> drm/rockchip: hdmi: add Innosilicon HDMI support >> dt-bindings: add document for Innosilicon HDMI on Rockchip platform >> >> .../display/rockchip/inno_hdmi-rockchip.txt | 50 ++ >> drivers/gpu/drm/rockchip/Kconfig | 8 + >> drivers/gpu/drm/rockchip/Makefile | 1 + >> drivers/gpu/drm/rockchip/inno_hdmi.c | 939 >> +++++++++++++++++++++ >> drivers/gpu/drm/rockchip/inno_hdmi.h | 362 ++++++++ >> 5 files changed, 1360 insertions(+) >> create mode 100644 >> Documentation/devicetree/bindings/display/rockchip/inno_hdmi-rockchip.txt >> create mode 100644 drivers/gpu/drm/rockchip/inno_hdmi.c >> create mode 100644 drivers/gpu/drm/rockchip/inno_hdmi.h >> > > Applied to my branch :-) . > > Thanks. >