From patchwork Fri Feb 1 18:06:36 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 10793507 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6067A6C2 for ; Fri, 1 Feb 2019 18:08:19 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 4F1563292A for ; Fri, 1 Feb 2019 18:08:19 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3FD2E329D7; Fri, 1 Feb 2019 18:08:19 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id D567C3292A for ; Fri, 1 Feb 2019 18:08:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726608AbfBASIS (ORCPT ); Fri, 1 Feb 2019 13:08:18 -0500 Received: from mail.kernel.org ([198.145.29.99]:36674 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726017AbfBASIS (ORCPT ); Fri, 1 Feb 2019 13:08:18 -0500 Received: from localhost.localdomain (unknown [171.76.100.40]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id AE836218AF; Fri, 1 Feb 2019 18:08:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1549044497; bh=budqVej6HseE3Ntm0Y19r/H2aTin030YbJ73OtRscyI=; h=From:To:Cc:Subject:Date:From; b=atw0SF0n7GY3BMLP1I5JDXsujNKu7PxxAlgCW86G3wJUHVUSA5w6Zr8qV+TLT0ONV L63ZY078unQA4JUZjyNp8yShCYY8C0ygJgEtGIpwDh/Rua3UVdiFCq+eMWykYbAkiz 4AjqcMyCq+v5lSI9GCrC/PvttQpVewnTZTRJpu9c= From: Vinod Koul To: Andy Gross , David Brown Cc: Shawn Guo , Rob Herring , Mark Rutland , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, Bjorn Andersson , Abhinav Asati , Vinod Koul Subject: [PATCH] arm64: dts: qcom: Enable blsp1_uart3 for qcs404-evb Date: Fri, 1 Feb 2019 23:36:36 +0530 Message-Id: <20190201180636.7169-1-vkoul@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Shawn Guo It defines pinctrl settings for blsp1_uart3 in board level dts and enable the device by toggling 'status'. Signed-off-by: Shawn Guo Signed-off-by: Abhinav Asati Signed-off-by: Vinod Koul --- arch/arm64/boot/dts/qcom/qcs404-evb.dtsi | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/arch/arm64/boot/dts/qcom/qcs404-evb.dtsi b/arch/arm64/boot/dts/qcom/qcs404-evb.dtsi index 50b3589c7f15..d85452f528c5 100644 --- a/arch/arm64/boot/dts/qcom/qcs404-evb.dtsi +++ b/arch/arm64/boot/dts/qcom/qcs404-evb.dtsi @@ -7,6 +7,7 @@ / { aliases { serial0 = &blsp1_uart2; + serial1 = &blsp1_uart3; }; chosen { @@ -137,6 +138,11 @@ }; &tlmm { + blsp1_uart3_default: blsp1-uart3-default { + drive-strength = <2>; + bias-disable; + }; + sdc1_on: sdc1-on { clk { pins = "sdc1_clk"; @@ -205,3 +211,7 @@ bias-disable; }; }; + +&blsp1_uart3 { + status = "okay"; +};