From patchwork Mon Dec 9 14:31:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Heiko Stuebner X-Patchwork-Id: 11279461 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 31A8315AB for ; Mon, 9 Dec 2019 14:32:42 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 19C8A207FD for ; Mon, 9 Dec 2019 14:32:42 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 19C8A207FD Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=sntech.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 8ECE16E46C; Mon, 9 Dec 2019 14:32:35 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) by gabe.freedesktop.org (Postfix) with ESMTPS id 868326E463 for ; Mon, 9 Dec 2019 14:32:30 +0000 (UTC) Received: from ip5f5a6266.dynamic.kabel-deutschland.de ([95.90.98.102] helo=phil.lan) by gloria.sntech.de with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1ieK57-0000zC-Dz; Mon, 09 Dec 2019 15:32:13 +0100 From: Heiko Stuebner To: a.hajda@samsung.com Subject: [PATCH v5 0/6] drm/rockchip: px30 dsi support Date: Mon, 9 Dec 2019 15:31:24 +0100 Message-Id: <20191209143130.4553-1-heiko@sntech.de> X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: bivvy.bi@rock-chips.com, jernej.skrabec@siol.net, xzy.xu@rock-chips.com, kuninori.morimoto.gx@renesas.com, jonas@kwiboo.se, sean@poorly.run, narmstrong@baylibre.com, philippe.cornu@st.com, dri-devel@lists.freedesktop.org, hjc@rock-chips.com, yannick.fertre@st.com, linux-rockchip@lists.infradead.org, nickey.yang@rock-chips.com, eddie.cai@rock-chips.com, Laurent.pinchart@ideasonboard.com, Heiko Stuebner , sam@ravnborg.org, christoph.muellner@theobroma-systems.com Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" From: Heiko Stuebner This series addes support for the px30 Rockchip soc to the dsi driver. This includes support for external dsi-phys like used on the px30. What happened between v1 and v5? The then separate dsi hs2lp timing patch happened ;-) . As both it and this series touch similar areas in the dsi driver ordering becomes an issue and so combining them to make ordering explicit is helpful. v2-v4 where then iterations of the timing patch. So this v5 is mainly rebased on 5.5-rc1 and rechecked against drm-misc. Heiko Stuebner (6): drm/bridge/synopsys: dsi: driver-specific configuration of phy timings drm/bridge/synopsys: dsi: move phy_ops callbacks around panel enablement dt-bindings: display: rockchip-dsi: document external phys drm/rockchip: add ability to handle external dphys in mipi-dsi dt-bindings: display: rockchip-dsi: add px30 compatible drm/rockchip: dsi: add px30 support .../display/rockchip/dw_mipi_dsi_rockchip.txt | 13 +- drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi.c | 40 ++-- drivers/gpu/drm/rockchip/Kconfig | 1 + .../gpu/drm/rockchip/dw-mipi-dsi-rockchip.c | 173 +++++++++++++++++- drivers/gpu/drm/stm/dw_mipi_dsi-stm.c | 13 ++ include/drm/bridge/dw_mipi_dsi.h | 9 + 6 files changed, 227 insertions(+), 22 deletions(-)