From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Rohit Agarwal <quic_rohiagar@quicinc.com>,
agross@kernel.org, andersson@kernel.org,
konrad.dybcio@linaro.org, djakov@kernel.org, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org
Cc: linux-arm-msm@vger.kernel.org, linux-pm@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel@quicinc.com
Subject: Re: [PATCH 2/2] interconnect: qcom: Add SDX75 interconnect provider driver
Date: Tue, 5 Sep 2023 09:02:34 +0200 [thread overview]
Message-ID: <4388cb18-ada2-656b-ff1d-e75bf1e8b82d@linaro.org> (raw)
In-Reply-To: <1693889975-19122-3-git-send-email-quic_rohiagar@quicinc.com>
On 05/09/2023 06:59, Rohit Agarwal wrote:
> Add driver for the Qualcomm interconnect buses found in SDX75.
>
> Signed-off-by: Rohit Agarwal <quic_rohiagar@quicinc.com>
...
> +
> +static struct qcom_icc_bcm *system_noc_bcms[] = {
Please do not copy your code from downstream, but work on upstream. We
changed this long time ago, so you clearly used some old or obsolete
file as template.
> + &bcm_ce0,
> + &bcm_cn0,
> + &bcm_sn0,
> + &bcm_sn1,
> + &bcm_sn2,
> +};
> +
> +static struct qcom_icc_node *system_noc_nodes[] = {
> + [MASTER_AUDIO] = &qhm_audio,
> + [MASTER_GIC_AHB] = &qhm_gic,
> + [MASTER_PCIE_RSCC] = &qhm_pcie_rscc,
> + [MASTER_QDSS_BAM] = &qhm_qdss_bam,
> + [MASTER_QPIC] = &qhm_qpic,
> + [MASTER_QUP_0] = &qhm_qup0,
> + [MASTER_ANOC_SNOC] = &qnm_aggre_noc,
> + [MASTER_GEM_NOC_CNOC] = &qnm_gemnoc_cnoc,
> + [MASTER_GEM_NOC_PCIE_SNOC] = &qnm_gemnoc_pcie,
> + [MASTER_SNOC_CFG] = &qnm_system_noc_cfg,
> + [MASTER_PCIE_ANOC_CFG] = &qnm_system_noc_pcie_cfg,
> + [MASTER_CRYPTO] = &qxm_crypto,
> + [MASTER_IPA] = &qxm_ipa,
> + [MASTER_MVMSS] = &qxm_mvmss,
> + [MASTER_EMAC_0] = &xm_emac_0,
> + [MASTER_EMAC_1] = &xm_emac_1,
> + [MASTER_QDSS_ETR] = &xm_qdss_etr0,
> + [MASTER_QDSS_ETR_1] = &xm_qdss_etr1,
> + [MASTER_SDCC_1] = &xm_sdc1,
> + [MASTER_SDCC_4] = &xm_sdc4,
> + [MASTER_USB3_0] = &xm_usb3,
> + [SLAVE_ETH0_CFG] = &ps_eth0_cfg,
> + [SLAVE_ETH1_CFG] = &ps_eth1_cfg,
> + [SLAVE_AUDIO] = &qhs_audio,
> + [SLAVE_CLK_CTL] = &qhs_clk_ctl,
> + [SLAVE_CRYPTO_0_CFG] = &qhs_crypto_cfg,
> + [SLAVE_IMEM_CFG] = &qhs_imem_cfg,
> + [SLAVE_IPA_CFG] = &qhs_ipa,
> + [SLAVE_IPC_ROUTER_CFG] = &qhs_ipc_router,
> + [SLAVE_CNOC_MSS] = &qhs_mss_cfg,
> + [SLAVE_ICBDI_MVMSS_CFG] = &qhs_mvmss_cfg,
> + [SLAVE_PCIE_0_CFG] = &qhs_pcie0_cfg,
> + [SLAVE_PCIE_1_CFG] = &qhs_pcie1_cfg,
> + [SLAVE_PCIE_2_CFG] = &qhs_pcie2_cfg,
> + [SLAVE_PCIE_RSC_CFG] = &qhs_pcie_rscc,
> + [SLAVE_PDM] = &qhs_pdm,
> + [SLAVE_PRNG] = &qhs_prng,
> + [SLAVE_QDSS_CFG] = &qhs_qdss_cfg,
> + [SLAVE_QPIC] = &qhs_qpic,
> + [SLAVE_QUP_0] = &qhs_qup0,
> + [SLAVE_SDCC_1] = &qhs_sdc1,
> + [SLAVE_SDCC_4] = &qhs_sdc4,
> + [SLAVE_SPMI_VGI_COEX] = &qhs_spmi_vgi_coex,
> + [SLAVE_TCSR] = &qhs_tcsr,
> + [SLAVE_TLMM] = &qhs_tlmm,
> + [SLAVE_USB3] = &qhs_usb3,
> + [SLAVE_USB3_PHY_CFG] = &qhs_usb3_phy,
> + [SLAVE_A1NOC_CFG] = &qns_a1noc,
> + [SLAVE_DDRSS_CFG] = &qns_ddrss_cfg,
> + [SLAVE_SNOC_GEM_NOC_SF] = &qns_gemnoc_sf,
> + [SLAVE_SNOC_CFG] = &qns_system_noc_cfg,
> + [SLAVE_PCIE_ANOC_CFG] = &qns_system_noc_pcie_cfg,
> + [SLAVE_IMEM] = &qxs_imem,
> + [SLAVE_SERVICE_PCIE_ANOC] = &srvc_pcie_system_noc,
> + [SLAVE_SERVICE_SNOC] = &srvc_system_noc,
> + [SLAVE_PCIE_0] = &xs_pcie_0,
> + [SLAVE_PCIE_1] = &xs_pcie_1,
> + [SLAVE_PCIE_2] = &xs_pcie_2,
> + [SLAVE_QDSS_STM] = &xs_qdss_stm,
> + [SLAVE_TCU] = &xs_sys_tcu_cfg,
> +};
> +
> +static struct qcom_icc_desc sdx75_system_noc = {
Come on... we fixed it.
There could be more issues because you used old file as template. Start
from scratch from new file.
Best regards,
Krzysztof
next prev parent reply other threads:[~2023-09-05 16:25 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-05 4:59 [PATCH 0/2] Add interconnect driver for SDX75 Rohit Agarwal
2023-09-05 4:59 ` [PATCH 1/2] dt-bindings: interconnect: Add compatibles " Rohit Agarwal
2023-09-05 6:59 ` Krzysztof Kozlowski
2023-09-05 7:14 ` Rohit Agarwal
2023-09-05 4:59 ` [PATCH 2/2] interconnect: qcom: Add SDX75 interconnect provider driver Rohit Agarwal
2023-09-05 7:02 ` Krzysztof Kozlowski [this message]
2023-09-05 7:20 ` Rohit Agarwal
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=4388cb18-ada2-656b-ff1d-e75bf1e8b82d@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=agross@kernel.org \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=djakov@kernel.org \
--cc=kernel@quicinc.com \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=quic_rohiagar@quicinc.com \
--cc=robh+dt@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