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=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham 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 4F2D0C4361B for ; Tue, 15 Dec 2020 08:31:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id ED94E222B6 for ; Tue, 15 Dec 2020 08:31:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726512AbgLOIbU (ORCPT ); Tue, 15 Dec 2020 03:31:20 -0500 Received: from honk.sigxcpu.org ([24.134.29.49]:57538 "EHLO honk.sigxcpu.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726356AbgLOIbM (ORCPT ); Tue, 15 Dec 2020 03:31:12 -0500 Received: from localhost (localhost [127.0.0.1]) by honk.sigxcpu.org (Postfix) with ESMTP id D41F5FB03; Tue, 15 Dec 2020 09:30:21 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at honk.sigxcpu.org Received: from honk.sigxcpu.org ([127.0.0.1]) by localhost (honk.sigxcpu.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id N7tRuB2LkNIs; Tue, 15 Dec 2020 09:30:19 +0100 (CET) Received: by bogon.sigxcpu.org (Postfix, from userid 1000) id 5ECA443FDC; Tue, 15 Dec 2020 09:30:19 +0100 (CET) Date: Tue, 15 Dec 2020 09:30:19 +0100 From: Guido =?iso-8859-1?Q?G=FCnther?= To: Liu Ying Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-arm-kernel@lists.infradead.org, kishon@ti.com, vkoul@kernel.org, robh+dt@kernel.org, a.hajda@samsung.com, narmstrong@baylibre.com, Laurent.pinchart@ideasonboard.com, jonas@kwiboo.se, jernej.skrabec@siol.net, airlied@linux.ie, daniel@ffwll.ch, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, festevam@gmail.com, linux-imx@nxp.com, robert.chiras@nxp.com, martin.kepplinger@puri.sm Subject: Re: [PATCH 1/4] drm/bridge: nwl-dsi: Set PHY mode in nwl_dsi_enable() Message-ID: <20201215083019.GA11854@bogon.m.sigxcpu.org> References: <1607067224-15616-1-git-send-email-victor.liu@nxp.com> <1607067224-15616-2-git-send-email-victor.liu@nxp.com> <20201208090457.GB20575@bogon.m.sigxcpu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20201208090457.GB20575@bogon.m.sigxcpu.org> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Hi, On Tue, Dec 08, 2020 at 10:04:57AM +0100, Guido Günther wrote: > Hi, > On Fri, Dec 04, 2020 at 03:33:41PM +0800, Liu Ying wrote: > > The Northwest Logic MIPI DSI host controller embedded in i.MX8qxp > > works with a Mixel MIPI DPHY + LVDS PHY combo to support either > > a MIPI DSI display or a LVDS display. So, this patch calls > > phy_set_mode() from nwl_dsi_enable() to set PHY mode to MIPI DPHY > > explicitly. Should i pull this patch in via drm-misc-next or is the whole series supposed to go via the phy tree? Cheers, -- Guido > > > > Cc: Guido Günther > > Cc: Robert Chiras > > Cc: Martin Kepplinger > > Cc: Andrzej Hajda > > Cc: Neil Armstrong > > Cc: Laurent Pinchart > > Cc: Jonas Karlman > > Cc: Jernej Skrabec > > Cc: David Airlie > > Cc: Daniel Vetter > > Cc: NXP Linux Team > > Signed-off-by: Liu Ying > > --- > > drivers/gpu/drm/bridge/nwl-dsi.c | 6 ++++++ > > 1 file changed, 6 insertions(+) > > > > diff --git a/drivers/gpu/drm/bridge/nwl-dsi.c b/drivers/gpu/drm/bridge/nwl-dsi.c > > index 66b6740..be6bfc5 100644 > > --- a/drivers/gpu/drm/bridge/nwl-dsi.c > > +++ b/drivers/gpu/drm/bridge/nwl-dsi.c > > @@ -678,6 +678,12 @@ static int nwl_dsi_enable(struct nwl_dsi *dsi) > > return ret; > > } > > > > + ret = phy_set_mode(dsi->phy, PHY_MODE_MIPI_DPHY); > > + if (ret < 0) { > > + DRM_DEV_ERROR(dev, "Failed to set DSI phy mode: %d\n", ret); > > + goto uninit_phy; > > + } > > + > > ret = phy_configure(dsi->phy, phy_cfg); > > if (ret < 0) { > > DRM_DEV_ERROR(dev, "Failed to configure DSI phy: %d\n", ret); > > Reviewed-by: Guido Günther > -- Guido > > > -- > > 2.7.4 > > > >