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 0170FC433F5 for ; Wed, 27 Apr 2022 21:43:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231351AbiD0Vqu (ORCPT ); Wed, 27 Apr 2022 17:46:50 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55510 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229959AbiD0Vqt (ORCPT ); Wed, 27 Apr 2022 17:46:49 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3EA0B90CED; Wed, 27 Apr 2022 14:43:37 -0700 (PDT) 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 F1199B82AC2; Wed, 27 Apr 2022 21:43:35 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 88EF9C385A7; Wed, 27 Apr 2022 21:43:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651095814; bh=VsDx9yNbJhTBwkE2mj7Zjsj6YSBkvaaPCEpYyfmHl/g=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=PvCHxaJpxPqJ37By5sZzYGLeGoZEfel2HtTjnWVM3cxayeHwIwf1+RoFlwbuThrfA tp3mmcp5ljQKuu41GksrK8Dbv24EgNdFYzPWBxcCvt5t3MJyLc9wyd3mCJ4kx+Qae+ pKxjeAplVH2y7iDyndXkXLUJklA5WTZWlQqyW+tg9UmKg0DmoQe5iV5XfI0/m967BY +bMillZMXaOVdofWRvYq95seKda5YG21qLnygrveRiCYaWkFtWs2EvaL6k1VsjUNi0 t4lHXh9OJCOdq5tpNN9v8l7JArMeveEvtcTgPbby+N1OrrLhaldlIKMBUzJf40FJN/ uyUG1/wjous9Q== Message-ID: Date: Thu, 28 Apr 2022 00:43:28 +0300 MIME-Version: 1.0 Subject: Re: [PATCH 4/4] arm64: dts: qcom: sm6350: Add interconnect support Content-Language: en-US To: Luca Weiss , linux-arm-msm@vger.kernel.org Cc: ~postmarketos/upstreaming@lists.sr.ht, phone-devel@vger.kernel.org, Andy Gross , Bjorn Andersson , Rob Herring , Krzysztof Kozlowski , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org References: <20220422144021.232993-1-luca.weiss@fairphone.com> <20220422144021.232993-5-luca.weiss@fairphone.com> From: Georgi Djakov In-Reply-To: <20220422144021.232993-5-luca.weiss@fairphone.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org On 22.04.22 17:40, Luca Weiss wrote: > Add all the different NoC providers that are found in SM6350 and > populate different nodes that use the interconnect properties. > > Signed-off-by: Luca Weiss > --- > Newer SoCs seem to have switched to using #interconnect-cells = <2>; > Is this something that should be done for all new implementations as > well? The 'tag' in the second cell seems to be 0 for all cases in > mainline except CPU. Yes, it's recommended to use #interconnect-cells = <2> (if you care about power management). This is to support different bandwidth configurations that are toggled by RPMh, depending on the power state of the CPU. Thanks, Georgi