From patchwork Wed Feb 15 16:45:24 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johan Hovold X-Patchwork-Id: 653804 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id ADD68C636D7 for ; Wed, 15 Feb 2023 16:45:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229692AbjBOQpy (ORCPT ); Wed, 15 Feb 2023 11:45:54 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53954 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229686AbjBOQpx (ORCPT ); Wed, 15 Feb 2023 11:45:53 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0195B1F488; Wed, 15 Feb 2023 08:45:53 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 92DD161CDE; Wed, 15 Feb 2023 16:45:52 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id EB88FC4339B; Wed, 15 Feb 2023 16:45:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1676479552; bh=4hSk3iQocpfOE/qEG5dsksQoLFfjipAko9fOMasZXic=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=udKiLjkWTK002xyuosj56bqlyJCbbe+/cYbLVe/mbuEfoz1EHQtWVJwsgKrJcdtEg WEqHtZEaA/vRCNXsGemp0QeSL+gpPBSY1vUpxSWEEgJ5O4tjTYRzm+DY+cyeTZD8hI vdxQhpEW1KV0T7Ik0LuOQhLYZ8IslzXhVOnbIz8cKiRKh6YjtBzzymC69yPWfRgG0m l0FuR9cbm6RrQgvMQgVTUjmsbMFiYap+QVuSWIPt6Boaa6Vn3dSslkQgVBn4xwzPAg f1iUK/sG21guXbgzE+xE/EDDAo32/MUWbJ6iMITXiAjPxVl3xW/lqvvmaL8hxaFWrG 3pPTGJRZtN/0g== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1pSKvg-0000Mx-UO; Wed, 15 Feb 2023 17:46:48 +0100 From: Johan Hovold To: Bjorn Andersson Cc: Andy Gross , Konrad Dybcio , Rob Herring , Krzysztof Kozlowski , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Johan Hovold Subject: [PATCH 2/2] arm64: dts: sc8280xp-x13s: fix external display 'data-lanes' Date: Wed, 15 Feb 2023 17:45:24 +0100 Message-Id: <20230215164524.1335-2-johan+linaro@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230215164524.1335-1-johan+linaro@kernel.org> References: <20230215164524.1335-1-johan+linaro@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org The 'data-lanes' property belongs in the controller node but was erroneously moved to the endpoint nodes in the last revision of the external display series: [drm] Invalid property "data-lanes", default max DP lanes = 4 Fixes: 8fcff430faee ("arm64: dts: qcom: sc8280xp-x13s: Enable external display") Signed-off-by: Johan Hovold --- arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts index 918be6728baa..d52d49a82ada 100644 --- a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts +++ b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts @@ -491,20 +491,22 @@ &mdss0 { }; &mdss0_dp0 { + data-lanes = <0 1>; + status = "okay"; }; &mdss0_dp0_out { - data-lanes = <0 1>; remote-endpoint = <&pmic_glink_con0_ss>; }; &mdss0_dp1 { + data-lanes = <0 1>; + status = "okay"; }; &mdss0_dp1_out { - data-lanes = <0 1>; remote-endpoint = <&pmic_glink_con1_ss>; };