From patchwork Wed Feb 15 16:45:23 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johan Hovold X-Patchwork-Id: 13141944 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 EECB4C636CC for ; Wed, 15 Feb 2023 16:45:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229597AbjBOQp4 (ORCPT ); Wed, 15 Feb 2023 11:45:56 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53960 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229726AbjBOQpz (ORCPT ); Wed, 15 Feb 2023 11:45:55 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8C4D01F488; Wed, 15 Feb 2023 08:45:54 -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 ams.source.kernel.org (Postfix) with ESMTPS id 3DDB6B8225F; Wed, 15 Feb 2023 16:45:53 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E8B69C433D2; 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=gXCoCYIWuQ6zQPZdkRw/SFmCLHKeUNes3OHwjCNAvMk=; h=From:To:Cc:Subject:Date:From; b=psgd15gCQzR+zIFPKZDbUDVORdJVqWAiGjsprnfd2q0y+Es3zKUuLREBAIDP7DK/m oRuLXnYCxG4OCl9xEagjyaAvX45wWBke2h0+294ILt6c29k2FIvRTecbVMNhaD8N96 qX4fWiiRVAh7dVM2DcuQB0WHhM9zPb95PWTvgmCxhDFBfnvPxwHI8YeDthPp8JgJP5 QrcfrxBntN9fT5kgokVm3/0n7c8ZgDJb89Op5DjNLaz9De1vvdEjmxmpJVGzIYAWgR ZNd2FMae3bS0E/rfrdyGxUlHO5EYTOoIIqVJ6Rrj9tAMzfCIKXe4FWfXC0wTsuTphV bnU6Ki3TnIMHg== Received: from johan by xi.lan with local (Exim 4.94.2) (envelope-from ) id 1pSKvg-0000Mv-4n; 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 1/2] arm64: dts: sc8280xp-crd: fix external display 'data-lanes' Date: Wed, 15 Feb 2023 17:45:23 +0100 Message-Id: <20230215164524.1335-1-johan+linaro@kernel.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@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: bc9a747ae91f ("arm64: dts: qcom: sc8280xp-crd: Introduce pmic_glink") Signed-off-by: Johan Hovold --- arch/arm64/boot/dts/qcom/sc8280xp-crd.dts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts index 0c3bdd3cdb9e..db6eb19d0da7 100644 --- a/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts +++ b/arch/arm64/boot/dts/qcom/sc8280xp-crd.dts @@ -379,20 +379,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>; }; 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: 13141943 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 3A54CC636CC for ; Wed, 15 Feb 2023 16:45:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229716AbjBOQpy (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: linux-arm-msm@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>; };