Linux Power Management development
 help / color / mirror / Atom feed
From: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
To: Georgi Djakov <djakov@kernel.org>,
	Bjorn Andersson <andersson@kernel.org>
Cc: linux-arm-msm@vger.kernel.org, linux-pm@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [PATCH v2 02/28] interconnect: qcom: sc8180x: specify num_nodes
Date: Fri, 04 Jul 2025 19:35:14 +0300	[thread overview]
Message-ID: <20250704-rework-icc-v2-2-875fac996ef5@oss.qualcomm.com> (raw)
In-Reply-To: <20250704-rework-icc-v2-0-875fac996ef5@oss.qualcomm.com>

Specify .num_nodes for several BCMs which missed this declaration.

Fixes: 04548d4e2798 ("interconnect: qcom: sc8180x: Reformat node and bcm definitions")
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
 drivers/interconnect/qcom/sc8180x.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/interconnect/qcom/sc8180x.c b/drivers/interconnect/qcom/sc8180x.c
index a741badaa966e0b1d0e0117f73f5d37c6ef9f19d..4dd1d2f2e8216271c15b91b726d4f0c46994ae78 100644
--- a/drivers/interconnect/qcom/sc8180x.c
+++ b/drivers/interconnect/qcom/sc8180x.c
@@ -1492,34 +1492,40 @@ static struct qcom_icc_bcm bcm_sh3 = {
 
 static struct qcom_icc_bcm bcm_sn0 = {
 	.name = "SN0",
+	.num_nodes = 1,
 	.nodes = { &slv_qns_gemnoc_sf }
 };
 
 static struct qcom_icc_bcm bcm_sn1 = {
 	.name = "SN1",
+	.num_nodes = 1,
 	.nodes = { &slv_qxs_imem }
 };
 
 static struct qcom_icc_bcm bcm_sn2 = {
 	.name = "SN2",
 	.keepalive = true,
+	.num_nodes = 1,
 	.nodes = { &slv_qns_gemnoc_gc }
 };
 
 static struct qcom_icc_bcm bcm_co2 = {
 	.name = "CO2",
+	.num_nodes = 1,
 	.nodes = { &mas_qnm_npu }
 };
 
 static struct qcom_icc_bcm bcm_sn3 = {
 	.name = "SN3",
 	.keepalive = true,
+	.num_nodes = 2,
 	.nodes = { &slv_srvc_aggre1_noc,
 		  &slv_qns_cnoc }
 };
 
 static struct qcom_icc_bcm bcm_sn4 = {
 	.name = "SN4",
+	.num_nodes = 1,
 	.nodes = { &slv_qxs_pimem }
 };
 

-- 
2.39.5


  parent reply	other threads:[~2025-07-04 16:35 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-04 16:35 [PATCH v2 00/28] interconnect: qcom: icc-rpmh: use NULL-terminated arrays and drop static IDs Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 01/28] interconnect: qcom: sc8280xp: specify num_links for qnm_a1noc_cfg Dmitry Baryshkov
2025-07-08 12:59   ` Konrad Dybcio
2025-07-04 16:35 ` Dmitry Baryshkov [this message]
2025-07-08 13:00   ` [PATCH v2 02/28] interconnect: qcom: sc8180x: specify num_nodes Konrad Dybcio
2025-07-04 16:35 ` [PATCH v2 03/28] interconnect: qcom: rpmh: make nodes a NULL_terminated array Dmitry Baryshkov
2025-07-08 16:41   ` Konrad Dybcio
2025-07-18 13:38   ` Georgi Djakov
2025-07-18 17:26     ` Dmitry Baryshkov
2025-07-18 22:17       ` Konrad Dybcio
2025-07-18 22:44         ` Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 04/28] interconnect: qcom: rpmh: make link_nodes " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 05/28] interconnect: qcom: sc7280: convert to dynamic IDs Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 06/28] interconnect: qcom: sc8180x: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 07/28] interconnect: qcom: sc8280xp: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 08/28] interconnect: qcom: sdm845: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 09/28] interconnect: qcom: sm8250: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 10/28] interconnect: qcom: x1e80100: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 11/28] interconnect: qcom: qcs615: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 12/28] interconnect: qcom: qcs8300: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 13/28] interconnect: qcom: qdu1000: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 14/28] interconnect: qcom: sar2130p: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 15/28] interconnect: qcom: sc7180: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 16/28] interconnect: qcom: sdm670: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 17/28] interconnect: qcom: sdx55: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 18/28] interconnect: qcom: sdx65: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 19/28] interconnect: qcom: sdx75: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 20/28] interconnect: qcom: sm6350: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 21/28] interconnect: qcom: sm7150: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 22/28] interconnect: qcom: sm8150: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 23/28] interconnect: qcom: sm8350: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 24/28] interconnect: qcom: sm8450: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 25/28] interconnect: qcom: sm8550: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 26/28] interconnect: qcom: sm8650: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 27/28] interconnect: qcom: sm8750: " Dmitry Baryshkov
2025-07-04 16:35 ` [PATCH v2 28/28] interconnect: qcom: icc-rpmh: drop support for non-dynamic IDS Dmitry Baryshkov
2025-07-08 16:44   ` Konrad Dybcio
2025-07-16 15:22 ` [PATCH v2 00/28] interconnect: qcom: icc-rpmh: use NULL-terminated arrays and drop static IDs Dmitry Baryshkov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250704-rework-icc-v2-2-875fac996ef5@oss.qualcomm.com \
    --to=dmitry.baryshkov@oss.qualcomm.com \
    --cc=andersson@kernel.org \
    --cc=djakov@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox