From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751936AbdBEImh (ORCPT ); Sun, 5 Feb 2017 03:42:37 -0500 Received: from regular1.263xmail.com ([211.150.99.138]:37724 "EHLO regular1.263xmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751774AbdBEImg (ORCPT ); Sun, 5 Feb 2017 03:42:36 -0500 X-263anti-spam: KSV:0; X-MAIL-GRAY: 0 X-MAIL-DELIVERY: 1 X-KSVirus-check: 0 X-ABS-CHECKED: 4 X-RL-SENDER: mark.yao@rock-chips.com X-FST-TO: linux-arm-kernel@lists.infradead.org X-SENDER-IP: 58.22.7.114 X-LOGIN-NAME: mark.yao@rock-chips.com X-UNIQUE-TAG: <423211038048e2f0bfa29a53acdece69> X-ATTACHMENT-NUM: 0 X-DNS-TYPE: 0 Subject: Re: [PATCH v17 0/7] drm/rockchip: Add CDN DP driver To: Chris Zhong , dri-devel@lists.freedesktop.org, linux-rockchip@lists.infradead.org References: <1486281302-28200-1-git-send-email-zyw@rock-chips.com> Cc: linux-kernel@vger.kernel.org, groeck@chromium.org, seanpaul@chromium.org, Heiko Stuebner , David Airlie , linux-arm-kernel@lists.infradead.org From: Mark yao Message-ID: <5896E56F.6020500@rock-chips.com> Date: Sun, 5 Feb 2017 16:42:23 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.3.0 MIME-Version: 1.0 In-Reply-To: <1486281302-28200-1-git-send-email-zyw@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 Chris Applied to my drm-next and already sent pull request to Dave. Thanks. On 2017年02月05日 15:54, Chris Zhong wrote: > This series adds support for the CDN DP controller to the rockchip drm > driver. This version fixes some coding style error in v16, it post by > Sean Paul, you can find it here: > https://patchwork.kernel.org/patch/9442135/ > > And I sorted out a few patches to fix the following problems: > - suspend/resume crash cause by drm_helper_hpd_irq_event > - crash during shutdown when cdn-dp failed to bind > - check sink count failed after reconnection > - suspend/reusme crash in mode_set function > > I also added these 2 patches to this series, although nothing changed: > https://patchwork.kernel.org/patch/9442141/ > https://patchwork.kernel.org/patch/9442151/ > > > Changes in v17: > - Correct the clock check condition > - Correct the coding style > - change LANE_REF_CYC to 0x8000 > > Chris Zhong (4): > drm/rockchip: cdn-dp: add cdn DP support for rk3399 > drm/rockchip: cdn-dp: do not use drm_helper_hpd_irq_event > drm/rockchip: cdn-dp: retry to check sink count > drm/rockchip: cdn-dp: don't configure hardware in mode_set > > Guenter Roeck (2): > drm/rockchip: cdn-dp: Load firmware if no monitor connected > drm/rockchip: cdn-dp: Do not run worker while suspended > > Jeffy Chen (1): > drm/rockchip: cdn-dp: Move mutex_init to probe > > drivers/gpu/drm/rockchip/Kconfig | 10 + > drivers/gpu/drm/rockchip/Makefile | 2 + > drivers/gpu/drm/rockchip/cdn-dp-core.c | 1260 +++++++++++++++++++++++++++ > drivers/gpu/drm/rockchip/cdn-dp-core.h | 112 +++ > drivers/gpu/drm/rockchip/cdn-dp-reg.c | 979 +++++++++++++++++++++ > drivers/gpu/drm/rockchip/cdn-dp-reg.h | 483 ++++++++++ > drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 13 +- > drivers/gpu/drm/rockchip/rockchip_drm_vop.h | 9 + > drivers/gpu/drm/rockchip/rockchip_vop_reg.c | 2 + > 9 files changed, 2867 insertions(+), 3 deletions(-) > create mode 100644 drivers/gpu/drm/rockchip/cdn-dp-core.c > create mode 100644 drivers/gpu/drm/rockchip/cdn-dp-core.h > create mode 100644 drivers/gpu/drm/rockchip/cdn-dp-reg.c > create mode 100644 drivers/gpu/drm/rockchip/cdn-dp-reg.h > -- Mark Yao