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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C84FEC433F5 for ; Tue, 7 Dec 2021 13:20:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236652AbhLGNXq (ORCPT ); Tue, 7 Dec 2021 08:23:46 -0500 Received: from fllv0016.ext.ti.com ([198.47.19.142]:36520 "EHLO fllv0016.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230480AbhLGNXo (ORCPT ); Tue, 7 Dec 2021 08:23:44 -0500 Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 1B7DJuYj025207; Tue, 7 Dec 2021 07:19:56 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1638883196; bh=v/6aq2797oij1s5lipUAq6dL/uBHuD+VUvfMzrdyUdw=; h=Subject:To:CC:References:From:Date:In-Reply-To; b=FAfxRO7L0FQ3rTgTfhSQY2bjNf4WgveuuaMv1OG0GXjyFefkAJEG+mVfjoZMqKN34 qCETLKCcuawOnT9RcBXgHQJH+AWL2sCoHPcOXKe11lYwPwwQjxiIeTaWPa6Dn2o/tC gKq8IAiVMtFQHXsIqF89KuPX3MZ1XVxuIIqIJ3+g= Received: from DFLE114.ent.ti.com (dfle114.ent.ti.com [10.64.6.35]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 1B7DJuOE078582 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 7 Dec 2021 07:19:56 -0600 Received: from DFLE112.ent.ti.com (10.64.6.33) by DFLE114.ent.ti.com (10.64.6.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Tue, 7 Dec 2021 07:19:56 -0600 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE112.ent.ti.com (10.64.6.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Tue, 7 Dec 2021 07:19:56 -0600 Received: from [10.250.232.32] (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 1B7DJouG110240; Tue, 7 Dec 2021 07:19:51 -0600 Subject: Re: [PATCH v5 2/6] arm64: dts: ti: am654-base-board/am65-iot2050-common: Disable mcan nodes To: Aswath Govindraju CC: Marc Kleine-Budde , Kishon Vijay Abraham I , Nishanth Menon , Vignesh Raghavendra , Tero Kristo , Rob Herring , , , References: <20211122134159.29936-1-a-govindraju@ti.com> <20211122134159.29936-3-a-govindraju@ti.com> From: Apurva Nandan Message-ID: Date: Tue, 7 Dec 2021 18:49:50 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20211122134159.29936-3-a-govindraju@ti.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 22/11/21 7:11 pm, Aswath Govindraju wrote: > AM654 base board and iot platforms do not have mcan instances pinned out. > Therefore, disable all the mcan instances. > > Signed-off-by: Aswath Govindraju Reviewed-by: Apurva Nandan > --- > arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi | 8 ++++++++ > arch/arm64/boot/dts/ti/k3-am654-base-board.dts | 8 ++++++++ > 2 files changed, 16 insertions(+) > > diff --git a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi > index 65da226847f4..1e0112b90d9f 100644 > --- a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi > +++ b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi > @@ -646,6 +646,14 @@ > reset-gpios = <&wkup_gpio0 27 GPIO_ACTIVE_HIGH>; > }; > > +&m_can0 { > + status = "disabled"; > +}; > + > +&m_can1 { > + status = "disabled"; > +}; > + > &pcie1_ep { > status = "disabled"; > }; > diff --git a/arch/arm64/boot/dts/ti/k3-am654-base-board.dts b/arch/arm64/boot/dts/ti/k3-am654-base-board.dts > index cfbcebfa37c1..9043f91c9bec 100644 > --- a/arch/arm64/boot/dts/ti/k3-am654-base-board.dts > +++ b/arch/arm64/boot/dts/ti/k3-am654-base-board.dts > @@ -416,6 +416,14 @@ > status = "disabled"; > }; > > +&m_can0 { > + status = "disabled"; > +}; > + > +&m_can1 { > + status = "disabled"; > +}; > + > &mailbox0_cluster0 { > interrupts = <436>; > 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 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 935DDC433F5 for ; Tue, 7 Dec 2021 13:21:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender:Content-Type: Content-Transfer-Encoding:List-Subscribe:List-Help:List-Post:List-Archive: List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date:Message-ID:From: References:CC:To:Subject:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Owner; bh=N8sie7mHFvTpWKc9WDm34upY3hdviXyQmrbFmCiZ+pQ=; b=JvJL1Bwf5f0yKcIzWQDZYfyRYC ONbMb7KfISBzRVZ2ep+4dwklRd9JxyaGhfVoIY4JGRO4zaFUBiuOa8k8LzrYGtk1cpiBABIAbyHru zXIReO+Efuc623SKR+sC3+OaDt7ky4cR8WBvrRjmrh+J9L4MFhzctagyXtJBaq0IKTihYtVAPnKLh 2i2b2FSCua9iwD+zw5FKP4hH1tUylLBOFbGuZm7HMnvybTtbsLZTRcekverLiqb5PReJ5UZLtWmvR 9iIHs3jofYoG/wlqQgvS2ICiuTGTkDwlD5hxsqZXWP5h1d44Rqp69DPW628wuLrrVFAURJWdfQEj6 cckIzTow==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1muaOC-008eeL-Oh; Tue, 07 Dec 2021 13:20:12 +0000 Received: from fllv0016.ext.ti.com ([198.47.19.142]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1muaO7-008edz-Rs for linux-arm-kernel@lists.infradead.org; Tue, 07 Dec 2021 13:20:10 +0000 Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 1B7DJuYj025207; Tue, 7 Dec 2021 07:19:56 -0600 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1638883196; bh=v/6aq2797oij1s5lipUAq6dL/uBHuD+VUvfMzrdyUdw=; h=Subject:To:CC:References:From:Date:In-Reply-To; b=FAfxRO7L0FQ3rTgTfhSQY2bjNf4WgveuuaMv1OG0GXjyFefkAJEG+mVfjoZMqKN34 qCETLKCcuawOnT9RcBXgHQJH+AWL2sCoHPcOXKe11lYwPwwQjxiIeTaWPa6Dn2o/tC gKq8IAiVMtFQHXsIqF89KuPX3MZ1XVxuIIqIJ3+g= Received: from DFLE114.ent.ti.com (dfle114.ent.ti.com [10.64.6.35]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 1B7DJuOE078582 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Tue, 7 Dec 2021 07:19:56 -0600 Received: from DFLE112.ent.ti.com (10.64.6.33) by DFLE114.ent.ti.com (10.64.6.35) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14; Tue, 7 Dec 2021 07:19:56 -0600 Received: from lelv0326.itg.ti.com (10.180.67.84) by DFLE112.ent.ti.com (10.64.6.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2308.14 via Frontend Transport; Tue, 7 Dec 2021 07:19:56 -0600 Received: from [10.250.232.32] (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 1B7DJouG110240; Tue, 7 Dec 2021 07:19:51 -0600 Subject: Re: [PATCH v5 2/6] arm64: dts: ti: am654-base-board/am65-iot2050-common: Disable mcan nodes To: Aswath Govindraju CC: Marc Kleine-Budde , Kishon Vijay Abraham I , Nishanth Menon , Vignesh Raghavendra , Tero Kristo , Rob Herring , , , References: <20211122134159.29936-1-a-govindraju@ti.com> <20211122134159.29936-3-a-govindraju@ti.com> From: Apurva Nandan Message-ID: Date: Tue, 7 Dec 2021 18:49:50 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20211122134159.29936-3-a-govindraju@ti.com> Content-Language: en-US X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211207_052008_079707_7BD714C3 X-CRM114-Status: GOOD ( 13.79 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 22/11/21 7:11 pm, Aswath Govindraju wrote: > AM654 base board and iot platforms do not have mcan instances pinned out. > Therefore, disable all the mcan instances. > > Signed-off-by: Aswath Govindraju Reviewed-by: Apurva Nandan > --- > arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi | 8 ++++++++ > arch/arm64/boot/dts/ti/k3-am654-base-board.dts | 8 ++++++++ > 2 files changed, 16 insertions(+) > > diff --git a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi > index 65da226847f4..1e0112b90d9f 100644 > --- a/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi > +++ b/arch/arm64/boot/dts/ti/k3-am65-iot2050-common.dtsi > @@ -646,6 +646,14 @@ > reset-gpios = <&wkup_gpio0 27 GPIO_ACTIVE_HIGH>; > }; > > +&m_can0 { > + status = "disabled"; > +}; > + > +&m_can1 { > + status = "disabled"; > +}; > + > &pcie1_ep { > status = "disabled"; > }; > diff --git a/arch/arm64/boot/dts/ti/k3-am654-base-board.dts b/arch/arm64/boot/dts/ti/k3-am654-base-board.dts > index cfbcebfa37c1..9043f91c9bec 100644 > --- a/arch/arm64/boot/dts/ti/k3-am654-base-board.dts > +++ b/arch/arm64/boot/dts/ti/k3-am654-base-board.dts > @@ -416,6 +416,14 @@ > status = "disabled"; > }; > > +&m_can0 { > + status = "disabled"; > +}; > + > +&m_can1 { > + status = "disabled"; > +}; > + > &mailbox0_cluster0 { > interrupts = <436>; > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel