Re: [PATCH 2/2] interconnect: qcom: add glymur interconnect provider driver
From: Konrad Dybcio
Date: Thu Jul 17 2025 - 16:33:36 EST
On 7/16/25 5:15 PM, Pankaj Patil wrote:
> From: Raviteja Laggyshetty <raviteja.laggyshetty@xxxxxxxxxxxxxxxx>
>
> Add driver for the Qualcomm interconnect buses found in glymur
> based platforms. The topology consists of several NoCs that are
> controlled by a remote processor that collects the aggregated
> bandwidth for each master-slave pairs.
>
> Signed-off-by: Raviteja Laggyshetty <raviteja.laggyshetty@xxxxxxxxxxxxxxxx>
> Signed-off-by: Pankaj Patil <pankaj.patil@xxxxxxxxxxxxxxxx>
> ---
[...]
> +static const struct of_device_id qnoc_of_match[] = {
> + { .compatible = "qcom,glymur-aggre1-noc",
> + .data = &glymur_aggre1_noc},
> + { .compatible = "qcom,glymur-aggre2-noc",
Please unwrap these lines, i.e.:
{ .compatible = "qcom,glymur-aggre2-noc", .data = &glymur_aggre2_noc },
I'd also request you work with the author to provide the ICC QoS settings
for this platform (which would be good to see as part of the introductory
commit).
Konrad