sc8280xp.c (55667B)
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Copyright (c) 2021, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2022, Linaro Ltd 5 */ 6 7#include <linux/device.h> 8#include <linux/interconnect.h> 9#include <linux/interconnect-provider.h> 10#include <linux/module.h> 11#include <linux/of_platform.h> 12#include <dt-bindings/interconnect/qcom,sc8280xp.h> 13 14#include "bcm-voter.h" 15#include "icc-rpmh.h" 16#include "sc8280xp.h" 17 18static struct qcom_icc_node qhm_qspi = { 19 .name = "qhm_qspi", 20 .id = SC8280XP_MASTER_QSPI_0, 21 .channels = 1, 22 .buswidth = 4, 23 .num_links = 1, 24 .links = { SC8280XP_SLAVE_A1NOC_SNOC }, 25}; 26 27static struct qcom_icc_node qhm_qup1 = { 28 .name = "qhm_qup1", 29 .id = SC8280XP_MASTER_QUP_1, 30 .channels = 1, 31 .buswidth = 4, 32 .num_links = 1, 33 .links = { SC8280XP_SLAVE_A1NOC_SNOC }, 34}; 35 36static struct qcom_icc_node qhm_qup2 = { 37 .name = "qhm_qup2", 38 .id = SC8280XP_MASTER_QUP_2, 39 .channels = 1, 40 .buswidth = 4, 41 .num_links = 1, 42 .links = { SC8280XP_SLAVE_A1NOC_SNOC }, 43}; 44 45static struct qcom_icc_node qnm_a1noc_cfg = { 46 .name = "qnm_a1noc_cfg", 47 .id = SC8280XP_MASTER_A1NOC_CFG, 48 .channels = 1, 49 .buswidth = 4, 50 .links = { SC8280XP_SLAVE_SERVICE_A1NOC }, 51}; 52 53static struct qcom_icc_node qxm_ipa = { 54 .name = "qxm_ipa", 55 .id = SC8280XP_MASTER_IPA, 56 .channels = 1, 57 .buswidth = 8, 58 .num_links = 1, 59 .links = { SC8280XP_SLAVE_A1NOC_SNOC }, 60}; 61 62static struct qcom_icc_node xm_emac_1 = { 63 .name = "xm_emac_1", 64 .id = SC8280XP_MASTER_EMAC_1, 65 .channels = 1, 66 .buswidth = 8, 67 .num_links = 1, 68 .links = { SC8280XP_SLAVE_A1NOC_SNOC }, 69}; 70 71static struct qcom_icc_node xm_sdc4 = { 72 .name = "xm_sdc4", 73 .id = SC8280XP_MASTER_SDCC_4, 74 .channels = 1, 75 .buswidth = 8, 76 .num_links = 1, 77 .links = { SC8280XP_SLAVE_A1NOC_SNOC }, 78}; 79 80static struct qcom_icc_node xm_ufs_mem = { 81 .name = "xm_ufs_mem", 82 .id = SC8280XP_MASTER_UFS_MEM, 83 .channels = 1, 84 .buswidth = 8, 85 .num_links = 1, 86 .links = { SC8280XP_SLAVE_A1NOC_SNOC }, 87}; 88 89static struct qcom_icc_node xm_usb3_0 = { 90 .name = "xm_usb3_0", 91 .id = SC8280XP_MASTER_USB3_0, 92 .channels = 1, 93 .buswidth = 8, 94 .num_links = 1, 95 .links = { SC8280XP_SLAVE_USB_NOC_SNOC }, 96}; 97 98static struct qcom_icc_node xm_usb3_1 = { 99 .name = "xm_usb3_1", 100 .id = SC8280XP_MASTER_USB3_1, 101 .channels = 1, 102 .buswidth = 8, 103 .num_links = 1, 104 .links = { SC8280XP_SLAVE_USB_NOC_SNOC }, 105}; 106 107static struct qcom_icc_node xm_usb3_mp = { 108 .name = "xm_usb3_mp", 109 .id = SC8280XP_MASTER_USB3_MP, 110 .channels = 1, 111 .buswidth = 16, 112 .num_links = 1, 113 .links = { SC8280XP_SLAVE_USB_NOC_SNOC }, 114}; 115 116static struct qcom_icc_node xm_usb4_host0 = { 117 .name = "xm_usb4_host0", 118 .id = SC8280XP_MASTER_USB4_0, 119 .channels = 1, 120 .buswidth = 16, 121 .num_links = 1, 122 .links = { SC8280XP_SLAVE_USB_NOC_SNOC }, 123}; 124 125static struct qcom_icc_node xm_usb4_host1 = { 126 .name = "xm_usb4_host1", 127 .id = SC8280XP_MASTER_USB4_1, 128 .channels = 1, 129 .buswidth = 16, 130 .num_links = 1, 131 .links = { SC8280XP_SLAVE_USB_NOC_SNOC }, 132}; 133 134static struct qcom_icc_node qhm_qdss_bam = { 135 .name = "qhm_qdss_bam", 136 .id = SC8280XP_MASTER_QDSS_BAM, 137 .channels = 1, 138 .buswidth = 4, 139 .num_links = 1, 140 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 141}; 142 143static struct qcom_icc_node qhm_qup0 = { 144 .name = "qhm_qup0", 145 .id = SC8280XP_MASTER_QUP_0, 146 .channels = 1, 147 .buswidth = 4, 148 .num_links = 1, 149 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 150}; 151 152static struct qcom_icc_node qnm_a2noc_cfg = { 153 .name = "qnm_a2noc_cfg", 154 .id = SC8280XP_MASTER_A2NOC_CFG, 155 .channels = 1, 156 .buswidth = 4, 157 .num_links = 1, 158 .links = { SC8280XP_SLAVE_SERVICE_A2NOC }, 159}; 160 161static struct qcom_icc_node qxm_crypto = { 162 .name = "qxm_crypto", 163 .id = SC8280XP_MASTER_CRYPTO, 164 .channels = 1, 165 .buswidth = 8, 166 .num_links = 1, 167 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 168}; 169 170static struct qcom_icc_node qxm_sensorss_q6 = { 171 .name = "qxm_sensorss_q6", 172 .id = SC8280XP_MASTER_SENSORS_PROC, 173 .channels = 1, 174 .buswidth = 8, 175 .num_links = 1, 176 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 177}; 178 179static struct qcom_icc_node qxm_sp = { 180 .name = "qxm_sp", 181 .id = SC8280XP_MASTER_SP, 182 .channels = 1, 183 .buswidth = 8, 184 .num_links = 1, 185 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 186}; 187 188static struct qcom_icc_node xm_emac_0 = { 189 .name = "xm_emac_0", 190 .id = SC8280XP_MASTER_EMAC, 191 .channels = 1, 192 .buswidth = 8, 193 .num_links = 1, 194 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 195}; 196 197static struct qcom_icc_node xm_pcie3_0 = { 198 .name = "xm_pcie3_0", 199 .id = SC8280XP_MASTER_PCIE_0, 200 .channels = 1, 201 .buswidth = 16, 202 .num_links = 1, 203 .links = { SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC }, 204}; 205 206static struct qcom_icc_node xm_pcie3_1 = { 207 .name = "xm_pcie3_1", 208 .id = SC8280XP_MASTER_PCIE_1, 209 .channels = 1, 210 .buswidth = 16, 211 .num_links = 1, 212 .links = { SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC }, 213}; 214 215static struct qcom_icc_node xm_pcie3_2a = { 216 .name = "xm_pcie3_2a", 217 .id = SC8280XP_MASTER_PCIE_2A, 218 .channels = 1, 219 .buswidth = 16, 220 .num_links = 1, 221 .links = { SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC }, 222}; 223 224static struct qcom_icc_node xm_pcie3_2b = { 225 .name = "xm_pcie3_2b", 226 .id = SC8280XP_MASTER_PCIE_2B, 227 .channels = 1, 228 .buswidth = 8, 229 .num_links = 1, 230 .links = { SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC }, 231}; 232 233static struct qcom_icc_node xm_pcie3_3a = { 234 .name = "xm_pcie3_3a", 235 .id = SC8280XP_MASTER_PCIE_3A, 236 .channels = 1, 237 .buswidth = 16, 238 .num_links = 1, 239 .links = { SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC }, 240}; 241 242static struct qcom_icc_node xm_pcie3_3b = { 243 .name = "xm_pcie3_3b", 244 .id = SC8280XP_MASTER_PCIE_3B, 245 .channels = 1, 246 .buswidth = 8, 247 .num_links = 1, 248 .links = { SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC }, 249}; 250 251static struct qcom_icc_node xm_pcie3_4 = { 252 .name = "xm_pcie3_4", 253 .id = SC8280XP_MASTER_PCIE_4, 254 .channels = 1, 255 .buswidth = 8, 256 .num_links = 1, 257 .links = { SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC }, 258}; 259 260static struct qcom_icc_node xm_qdss_etr = { 261 .name = "xm_qdss_etr", 262 .id = SC8280XP_MASTER_QDSS_ETR, 263 .channels = 1, 264 .buswidth = 8, 265 .num_links = 1, 266 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 267}; 268 269static struct qcom_icc_node xm_sdc2 = { 270 .name = "xm_sdc2", 271 .id = SC8280XP_MASTER_SDCC_2, 272 .channels = 1, 273 .buswidth = 8, 274 .num_links = 1, 275 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 276}; 277 278static struct qcom_icc_node xm_ufs_card = { 279 .name = "xm_ufs_card", 280 .id = SC8280XP_MASTER_UFS_CARD, 281 .channels = 1, 282 .buswidth = 8, 283 .num_links = 1, 284 .links = { SC8280XP_SLAVE_A2NOC_SNOC }, 285}; 286 287static struct qcom_icc_node ipa_core_master = { 288 .name = "ipa_core_master", 289 .id = SC8280XP_MASTER_IPA_CORE, 290 .channels = 1, 291 .buswidth = 8, 292 .num_links = 1, 293 .links = { SC8280XP_SLAVE_IPA_CORE }, 294}; 295 296static struct qcom_icc_node qup0_core_master = { 297 .name = "qup0_core_master", 298 .id = SC8280XP_MASTER_QUP_CORE_0, 299 .channels = 1, 300 .buswidth = 4, 301 .num_links = 1, 302 .links = { SC8280XP_SLAVE_QUP_CORE_0 }, 303}; 304 305static struct qcom_icc_node qup1_core_master = { 306 .name = "qup1_core_master", 307 .id = SC8280XP_MASTER_QUP_CORE_1, 308 .channels = 1, 309 .buswidth = 4, 310 .num_links = 1, 311 .links = { SC8280XP_SLAVE_QUP_CORE_1 }, 312}; 313 314static struct qcom_icc_node qup2_core_master = { 315 .name = "qup2_core_master", 316 .id = SC8280XP_MASTER_QUP_CORE_2, 317 .channels = 1, 318 .buswidth = 4, 319 .num_links = 1, 320 .links = { SC8280XP_SLAVE_QUP_CORE_2 }, 321}; 322 323static struct qcom_icc_node qnm_gemnoc_cnoc = { 324 .name = "qnm_gemnoc_cnoc", 325 .id = SC8280XP_MASTER_GEM_NOC_CNOC, 326 .channels = 1, 327 .buswidth = 16, 328 .num_links = 76, 329 .links = { SC8280XP_SLAVE_AHB2PHY_0, 330 SC8280XP_SLAVE_AHB2PHY_1, 331 SC8280XP_SLAVE_AHB2PHY_2, 332 SC8280XP_SLAVE_AOSS, 333 SC8280XP_SLAVE_APPSS, 334 SC8280XP_SLAVE_CAMERA_CFG, 335 SC8280XP_SLAVE_CLK_CTL, 336 SC8280XP_SLAVE_CDSP_CFG, 337 SC8280XP_SLAVE_CDSP1_CFG, 338 SC8280XP_SLAVE_RBCPR_CX_CFG, 339 SC8280XP_SLAVE_RBCPR_MMCX_CFG, 340 SC8280XP_SLAVE_RBCPR_MX_CFG, 341 SC8280XP_SLAVE_CPR_NSPCX, 342 SC8280XP_SLAVE_CRYPTO_0_CFG, 343 SC8280XP_SLAVE_CX_RDPM, 344 SC8280XP_SLAVE_DCC_CFG, 345 SC8280XP_SLAVE_DISPLAY_CFG, 346 SC8280XP_SLAVE_DISPLAY1_CFG, 347 SC8280XP_SLAVE_EMAC_CFG, 348 SC8280XP_SLAVE_EMAC1_CFG, 349 SC8280XP_SLAVE_GFX3D_CFG, 350 SC8280XP_SLAVE_HWKM, 351 SC8280XP_SLAVE_IMEM_CFG, 352 SC8280XP_SLAVE_IPA_CFG, 353 SC8280XP_SLAVE_IPC_ROUTER_CFG, 354 SC8280XP_SLAVE_LPASS, 355 SC8280XP_SLAVE_MX_RDPM, 356 SC8280XP_SLAVE_MXC_RDPM, 357 SC8280XP_SLAVE_PCIE_0_CFG, 358 SC8280XP_SLAVE_PCIE_1_CFG, 359 SC8280XP_SLAVE_PCIE_2A_CFG, 360 SC8280XP_SLAVE_PCIE_2B_CFG, 361 SC8280XP_SLAVE_PCIE_3A_CFG, 362 SC8280XP_SLAVE_PCIE_3B_CFG, 363 SC8280XP_SLAVE_PCIE_4_CFG, 364 SC8280XP_SLAVE_PCIE_RSC_CFG, 365 SC8280XP_SLAVE_PDM, 366 SC8280XP_SLAVE_PIMEM_CFG, 367 SC8280XP_SLAVE_PKA_WRAPPER_CFG, 368 SC8280XP_SLAVE_PMU_WRAPPER_CFG, 369 SC8280XP_SLAVE_QDSS_CFG, 370 SC8280XP_SLAVE_QSPI_0, 371 SC8280XP_SLAVE_QUP_0, 372 SC8280XP_SLAVE_QUP_1, 373 SC8280XP_SLAVE_QUP_2, 374 SC8280XP_SLAVE_SDCC_2, 375 SC8280XP_SLAVE_SDCC_4, 376 SC8280XP_SLAVE_SECURITY, 377 SC8280XP_SLAVE_SMMUV3_CFG, 378 SC8280XP_SLAVE_SMSS_CFG, 379 SC8280XP_SLAVE_SPSS_CFG, 380 SC8280XP_SLAVE_TCSR, 381 SC8280XP_SLAVE_TLMM, 382 SC8280XP_SLAVE_UFS_CARD_CFG, 383 SC8280XP_SLAVE_UFS_MEM_CFG, 384 SC8280XP_SLAVE_USB3_0, 385 SC8280XP_SLAVE_USB3_1, 386 SC8280XP_SLAVE_USB3_MP, 387 SC8280XP_SLAVE_USB4_0, 388 SC8280XP_SLAVE_USB4_1, 389 SC8280XP_SLAVE_VENUS_CFG, 390 SC8280XP_SLAVE_VSENSE_CTRL_CFG, 391 SC8280XP_SLAVE_VSENSE_CTRL_R_CFG, 392 SC8280XP_SLAVE_A1NOC_CFG, 393 SC8280XP_SLAVE_A2NOC_CFG, 394 SC8280XP_SLAVE_ANOC_PCIE_BRIDGE_CFG, 395 SC8280XP_SLAVE_DDRSS_CFG, 396 SC8280XP_SLAVE_CNOC_MNOC_CFG, 397 SC8280XP_SLAVE_SNOC_CFG, 398 SC8280XP_SLAVE_SNOC_SF_BRIDGE_CFG, 399 SC8280XP_SLAVE_IMEM, 400 SC8280XP_SLAVE_PIMEM, 401 SC8280XP_SLAVE_SERVICE_CNOC, 402 SC8280XP_SLAVE_QDSS_STM, 403 SC8280XP_SLAVE_SMSS, 404 SC8280XP_SLAVE_TCU 405 }, 406}; 407 408static struct qcom_icc_node qnm_gemnoc_pcie = { 409 .name = "qnm_gemnoc_pcie", 410 .id = SC8280XP_MASTER_GEM_NOC_PCIE_SNOC, 411 .channels = 1, 412 .buswidth = 16, 413 .num_links = 7, 414 .links = { SC8280XP_SLAVE_PCIE_0, 415 SC8280XP_SLAVE_PCIE_1, 416 SC8280XP_SLAVE_PCIE_2A, 417 SC8280XP_SLAVE_PCIE_2B, 418 SC8280XP_SLAVE_PCIE_3A, 419 SC8280XP_SLAVE_PCIE_3B, 420 SC8280XP_SLAVE_PCIE_4 421 }, 422}; 423 424static struct qcom_icc_node qnm_cnoc_dc_noc = { 425 .name = "qnm_cnoc_dc_noc", 426 .id = SC8280XP_MASTER_CNOC_DC_NOC, 427 .channels = 1, 428 .buswidth = 4, 429 .num_links = 2, 430 .links = { SC8280XP_SLAVE_LLCC_CFG, 431 SC8280XP_SLAVE_GEM_NOC_CFG 432 }, 433}; 434 435static struct qcom_icc_node alm_gpu_tcu = { 436 .name = "alm_gpu_tcu", 437 .id = SC8280XP_MASTER_GPU_TCU, 438 .channels = 1, 439 .buswidth = 8, 440 .num_links = 2, 441 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 442 SC8280XP_SLAVE_LLCC 443 }, 444}; 445 446static struct qcom_icc_node alm_pcie_tcu = { 447 .name = "alm_pcie_tcu", 448 .id = SC8280XP_MASTER_PCIE_TCU, 449 .channels = 1, 450 .buswidth = 8, 451 .num_links = 2, 452 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 453 SC8280XP_SLAVE_LLCC 454 }, 455}; 456 457static struct qcom_icc_node alm_sys_tcu = { 458 .name = "alm_sys_tcu", 459 .id = SC8280XP_MASTER_SYS_TCU, 460 .channels = 1, 461 .buswidth = 8, 462 .num_links = 2, 463 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 464 SC8280XP_SLAVE_LLCC 465 }, 466}; 467 468static struct qcom_icc_node chm_apps = { 469 .name = "chm_apps", 470 .id = SC8280XP_MASTER_APPSS_PROC, 471 .channels = 2, 472 .buswidth = 32, 473 .num_links = 3, 474 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 475 SC8280XP_SLAVE_LLCC, 476 SC8280XP_SLAVE_GEM_NOC_PCIE_CNOC 477 }, 478}; 479 480static struct qcom_icc_node qnm_cmpnoc0 = { 481 .name = "qnm_cmpnoc0", 482 .id = SC8280XP_MASTER_COMPUTE_NOC, 483 .channels = 2, 484 .buswidth = 32, 485 .num_links = 2, 486 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 487 SC8280XP_SLAVE_LLCC 488 }, 489}; 490 491static struct qcom_icc_node qnm_cmpnoc1 = { 492 .name = "qnm_cmpnoc1", 493 .id = SC8280XP_MASTER_COMPUTE_NOC_1, 494 .channels = 2, 495 .buswidth = 32, 496 .num_links = 2, 497 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 498 SC8280XP_SLAVE_LLCC 499 }, 500}; 501 502static struct qcom_icc_node qnm_gemnoc_cfg = { 503 .name = "qnm_gemnoc_cfg", 504 .id = SC8280XP_MASTER_GEM_NOC_CFG, 505 .channels = 1, 506 .buswidth = 4, 507 .num_links = 3, 508 .links = { SC8280XP_SLAVE_SERVICE_GEM_NOC_1, 509 SC8280XP_SLAVE_SERVICE_GEM_NOC_2, 510 SC8280XP_SLAVE_SERVICE_GEM_NOC 511 }, 512}; 513 514static struct qcom_icc_node qnm_gpu = { 515 .name = "qnm_gpu", 516 .id = SC8280XP_MASTER_GFX3D, 517 .channels = 4, 518 .buswidth = 32, 519 .num_links = 2, 520 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 521 SC8280XP_SLAVE_LLCC 522 }, 523}; 524 525static struct qcom_icc_node qnm_mnoc_hf = { 526 .name = "qnm_mnoc_hf", 527 .id = SC8280XP_MASTER_MNOC_HF_MEM_NOC, 528 .channels = 2, 529 .buswidth = 32, 530 .num_links = 2, 531 .links = { SC8280XP_SLAVE_LLCC, 532 SC8280XP_SLAVE_GEM_NOC_PCIE_CNOC 533 }, 534}; 535 536static struct qcom_icc_node qnm_mnoc_sf = { 537 .name = "qnm_mnoc_sf", 538 .id = SC8280XP_MASTER_MNOC_SF_MEM_NOC, 539 .channels = 2, 540 .buswidth = 32, 541 .num_links = 2, 542 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 543 SC8280XP_SLAVE_LLCC 544 }, 545}; 546 547static struct qcom_icc_node qnm_pcie = { 548 .name = "qnm_pcie", 549 .id = SC8280XP_MASTER_ANOC_PCIE_GEM_NOC, 550 .channels = 1, 551 .buswidth = 32, 552 .num_links = 2, 553 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 554 SC8280XP_SLAVE_LLCC 555 }, 556}; 557 558static struct qcom_icc_node qnm_snoc_gc = { 559 .name = "qnm_snoc_gc", 560 .id = SC8280XP_MASTER_SNOC_GC_MEM_NOC, 561 .channels = 1, 562 .buswidth = 8, 563 .num_links = 1, 564 .links = { SC8280XP_SLAVE_LLCC }, 565}; 566 567static struct qcom_icc_node qnm_snoc_sf = { 568 .name = "qnm_snoc_sf", 569 .id = SC8280XP_MASTER_SNOC_SF_MEM_NOC, 570 .channels = 1, 571 .buswidth = 16, 572 .num_links = 3, 573 .links = { SC8280XP_SLAVE_GEM_NOC_CNOC, 574 SC8280XP_SLAVE_LLCC, 575 SC8280XP_SLAVE_GEM_NOC_PCIE_CNOC }, 576}; 577 578static struct qcom_icc_node qhm_config_noc = { 579 .name = "qhm_config_noc", 580 .id = SC8280XP_MASTER_CNOC_LPASS_AG_NOC, 581 .channels = 1, 582 .buswidth = 4, 583 .num_links = 6, 584 .links = { SC8280XP_SLAVE_LPASS_CORE_CFG, 585 SC8280XP_SLAVE_LPASS_LPI_CFG, 586 SC8280XP_SLAVE_LPASS_MPU_CFG, 587 SC8280XP_SLAVE_LPASS_TOP_CFG, 588 SC8280XP_SLAVE_SERVICES_LPASS_AML_NOC, 589 SC8280XP_SLAVE_SERVICE_LPASS_AG_NOC 590 }, 591}; 592 593static struct qcom_icc_node qxm_lpass_dsp = { 594 .name = "qxm_lpass_dsp", 595 .id = SC8280XP_MASTER_LPASS_PROC, 596 .channels = 1, 597 .buswidth = 8, 598 .num_links = 4, 599 .links = { SC8280XP_SLAVE_LPASS_TOP_CFG, 600 SC8280XP_SLAVE_LPASS_SNOC, 601 SC8280XP_SLAVE_SERVICES_LPASS_AML_NOC, 602 SC8280XP_SLAVE_SERVICE_LPASS_AG_NOC 603 }, 604}; 605 606static struct qcom_icc_node llcc_mc = { 607 .name = "llcc_mc", 608 .id = SC8280XP_MASTER_LLCC, 609 .channels = 8, 610 .buswidth = 4, 611 .num_links = 1, 612 .links = { SC8280XP_SLAVE_EBI1 }, 613}; 614 615static struct qcom_icc_node qnm_camnoc_hf = { 616 .name = "qnm_camnoc_hf", 617 .id = SC8280XP_MASTER_CAMNOC_HF, 618 .channels = 2, 619 .buswidth = 32, 620 .num_links = 1, 621 .links = { SC8280XP_SLAVE_MNOC_HF_MEM_NOC }, 622}; 623 624static struct qcom_icc_node qnm_mdp0_0 = { 625 .name = "qnm_mdp0_0", 626 .id = SC8280XP_MASTER_MDP0, 627 .channels = 1, 628 .buswidth = 32, 629 .num_links = 1, 630 .links = { SC8280XP_SLAVE_MNOC_HF_MEM_NOC }, 631}; 632 633static struct qcom_icc_node qnm_mdp0_1 = { 634 .name = "qnm_mdp0_1", 635 .id = SC8280XP_MASTER_MDP1, 636 .channels = 1, 637 .buswidth = 32, 638 .num_links = 1, 639 .links = { SC8280XP_SLAVE_MNOC_HF_MEM_NOC }, 640}; 641 642static struct qcom_icc_node qnm_mdp1_0 = { 643 .name = "qnm_mdp1_0", 644 .id = SC8280XP_MASTER_MDP_CORE1_0, 645 .channels = 1, 646 .buswidth = 32, 647 .num_links = 1, 648 .links = { SC8280XP_SLAVE_MNOC_HF_MEM_NOC }, 649}; 650 651static struct qcom_icc_node qnm_mdp1_1 = { 652 .name = "qnm_mdp1_1", 653 .id = SC8280XP_MASTER_MDP_CORE1_1, 654 .channels = 1, 655 .buswidth = 32, 656 .num_links = 1, 657 .links = { SC8280XP_SLAVE_MNOC_HF_MEM_NOC }, 658}; 659 660static struct qcom_icc_node qnm_mnoc_cfg = { 661 .name = "qnm_mnoc_cfg", 662 .id = SC8280XP_MASTER_CNOC_MNOC_CFG, 663 .channels = 1, 664 .buswidth = 4, 665 .num_links = 1, 666 .links = { SC8280XP_SLAVE_SERVICE_MNOC }, 667}; 668 669static struct qcom_icc_node qnm_rot_0 = { 670 .name = "qnm_rot_0", 671 .id = SC8280XP_MASTER_ROTATOR, 672 .channels = 1, 673 .buswidth = 32, 674 .num_links = 1, 675 .links = { SC8280XP_SLAVE_MNOC_SF_MEM_NOC }, 676}; 677 678static struct qcom_icc_node qnm_rot_1 = { 679 .name = "qnm_rot_1", 680 .id = SC8280XP_MASTER_ROTATOR_1, 681 .channels = 1, 682 .buswidth = 32, 683 .num_links = 1, 684 .links = { SC8280XP_SLAVE_MNOC_SF_MEM_NOC }, 685}; 686 687static struct qcom_icc_node qnm_video0 = { 688 .name = "qnm_video0", 689 .id = SC8280XP_MASTER_VIDEO_P0, 690 .channels = 1, 691 .buswidth = 32, 692 .num_links = 1, 693 .links = { SC8280XP_SLAVE_MNOC_SF_MEM_NOC }, 694}; 695 696static struct qcom_icc_node qnm_video1 = { 697 .name = "qnm_video1", 698 .id = SC8280XP_MASTER_VIDEO_P1, 699 .channels = 1, 700 .buswidth = 32, 701 .num_links = 1, 702 .links = { SC8280XP_SLAVE_MNOC_SF_MEM_NOC }, 703}; 704 705static struct qcom_icc_node qnm_video_cvp = { 706 .name = "qnm_video_cvp", 707 .id = SC8280XP_MASTER_VIDEO_PROC, 708 .channels = 1, 709 .buswidth = 32, 710 .num_links = 1, 711 .links = { SC8280XP_SLAVE_MNOC_SF_MEM_NOC }, 712}; 713 714static struct qcom_icc_node qxm_camnoc_icp = { 715 .name = "qxm_camnoc_icp", 716 .id = SC8280XP_MASTER_CAMNOC_ICP, 717 .channels = 1, 718 .buswidth = 8, 719 .num_links = 1, 720 .links = { SC8280XP_SLAVE_MNOC_SF_MEM_NOC }, 721}; 722 723static struct qcom_icc_node qxm_camnoc_sf = { 724 .name = "qxm_camnoc_sf", 725 .id = SC8280XP_MASTER_CAMNOC_SF, 726 .channels = 1, 727 .buswidth = 32, 728 .num_links = 1, 729 .links = { SC8280XP_SLAVE_MNOC_SF_MEM_NOC }, 730}; 731 732static struct qcom_icc_node qhm_nsp_noc_config = { 733 .name = "qhm_nsp_noc_config", 734 .id = SC8280XP_MASTER_CDSP_NOC_CFG, 735 .channels = 1, 736 .buswidth = 4, 737 .num_links = 1, 738 .links = { SC8280XP_SLAVE_SERVICE_NSP_NOC }, 739}; 740 741static struct qcom_icc_node qxm_nsp = { 742 .name = "qxm_nsp", 743 .id = SC8280XP_MASTER_CDSP_PROC, 744 .channels = 2, 745 .buswidth = 32, 746 .num_links = 2, 747 .links = { SC8280XP_SLAVE_CDSP_MEM_NOC, 748 SC8280XP_SLAVE_NSP_XFR 749 }, 750}; 751 752static struct qcom_icc_node qhm_nspb_noc_config = { 753 .name = "qhm_nspb_noc_config", 754 .id = SC8280XP_MASTER_CDSPB_NOC_CFG, 755 .channels = 1, 756 .buswidth = 4, 757 .num_links = 1, 758 .links = { SC8280XP_SLAVE_SERVICE_NSPB_NOC }, 759}; 760 761static struct qcom_icc_node qxm_nspb = { 762 .name = "qxm_nspb", 763 .id = SC8280XP_MASTER_CDSP_PROC_B, 764 .channels = 2, 765 .buswidth = 32, 766 .num_links = 2, 767 .links = { SC8280XP_SLAVE_CDSPB_MEM_NOC, 768 SC8280XP_SLAVE_NSPB_XFR 769 }, 770}; 771 772static struct qcom_icc_node qnm_aggre1_noc = { 773 .name = "qnm_aggre1_noc", 774 .id = SC8280XP_MASTER_A1NOC_SNOC, 775 .channels = 1, 776 .buswidth = 16, 777 .num_links = 1, 778 .links = { SC8280XP_SLAVE_SNOC_GEM_NOC_SF }, 779}; 780 781static struct qcom_icc_node qnm_aggre2_noc = { 782 .name = "qnm_aggre2_noc", 783 .id = SC8280XP_MASTER_A2NOC_SNOC, 784 .channels = 1, 785 .buswidth = 16, 786 .num_links = 1, 787 .links = { SC8280XP_SLAVE_SNOC_GEM_NOC_SF }, 788}; 789 790static struct qcom_icc_node qnm_aggre_usb_noc = { 791 .name = "qnm_aggre_usb_noc", 792 .id = SC8280XP_MASTER_USB_NOC_SNOC, 793 .channels = 1, 794 .buswidth = 16, 795 .num_links = 1, 796 .links = { SC8280XP_SLAVE_SNOC_GEM_NOC_SF }, 797}; 798 799static struct qcom_icc_node qnm_lpass_noc = { 800 .name = "qnm_lpass_noc", 801 .id = SC8280XP_MASTER_LPASS_ANOC, 802 .channels = 1, 803 .buswidth = 16, 804 .num_links = 1, 805 .links = { SC8280XP_SLAVE_SNOC_GEM_NOC_SF }, 806}; 807 808static struct qcom_icc_node qnm_snoc_cfg = { 809 .name = "qnm_snoc_cfg", 810 .id = SC8280XP_MASTER_SNOC_CFG, 811 .channels = 1, 812 .buswidth = 4, 813 .num_links = 1, 814 .links = { SC8280XP_SLAVE_SERVICE_SNOC }, 815}; 816 817static struct qcom_icc_node qxm_pimem = { 818 .name = "qxm_pimem", 819 .id = SC8280XP_MASTER_PIMEM, 820 .channels = 1, 821 .buswidth = 8, 822 .num_links = 1, 823 .links = { SC8280XP_SLAVE_SNOC_GEM_NOC_GC }, 824}; 825 826static struct qcom_icc_node xm_gic = { 827 .name = "xm_gic", 828 .id = SC8280XP_MASTER_GIC, 829 .channels = 1, 830 .buswidth = 8, 831 .num_links = 1, 832 .links = { SC8280XP_SLAVE_SNOC_GEM_NOC_GC }, 833}; 834 835static struct qcom_icc_node qns_a1noc_snoc = { 836 .name = "qns_a1noc_snoc", 837 .id = SC8280XP_SLAVE_A1NOC_SNOC, 838 .channels = 1, 839 .buswidth = 16, 840 .num_links = 1, 841 .links = { SC8280XP_MASTER_A1NOC_SNOC }, 842}; 843 844static struct qcom_icc_node qns_aggre_usb_snoc = { 845 .name = "qns_aggre_usb_snoc", 846 .id = SC8280XP_SLAVE_USB_NOC_SNOC, 847 .channels = 1, 848 .buswidth = 16, 849 .num_links = 1, 850 .links = { SC8280XP_MASTER_USB_NOC_SNOC }, 851}; 852 853static struct qcom_icc_node srvc_aggre1_noc = { 854 .name = "srvc_aggre1_noc", 855 .id = SC8280XP_SLAVE_SERVICE_A1NOC, 856 .channels = 1, 857 .buswidth = 4, 858}; 859 860static struct qcom_icc_node qns_a2noc_snoc = { 861 .name = "qns_a2noc_snoc", 862 .id = SC8280XP_SLAVE_A2NOC_SNOC, 863 .channels = 1, 864 .buswidth = 16, 865 .num_links = 1, 866 .links = { SC8280XP_MASTER_A2NOC_SNOC }, 867}; 868 869static struct qcom_icc_node qns_pcie_gem_noc = { 870 .name = "qns_pcie_gem_noc", 871 .id = SC8280XP_SLAVE_ANOC_PCIE_GEM_NOC, 872 .channels = 1, 873 .buswidth = 32, 874 .num_links = 1, 875 .links = { SC8280XP_MASTER_ANOC_PCIE_GEM_NOC }, 876}; 877 878static struct qcom_icc_node srvc_aggre2_noc = { 879 .name = "srvc_aggre2_noc", 880 .id = SC8280XP_SLAVE_SERVICE_A2NOC, 881 .channels = 1, 882 .buswidth = 4, 883}; 884 885static struct qcom_icc_node ipa_core_slave = { 886 .name = "ipa_core_slave", 887 .id = SC8280XP_SLAVE_IPA_CORE, 888 .channels = 1, 889 .buswidth = 8, 890}; 891 892static struct qcom_icc_node qup0_core_slave = { 893 .name = "qup0_core_slave", 894 .id = SC8280XP_SLAVE_QUP_CORE_0, 895 .channels = 1, 896 .buswidth = 4, 897}; 898 899static struct qcom_icc_node qup1_core_slave = { 900 .name = "qup1_core_slave", 901 .id = SC8280XP_SLAVE_QUP_CORE_1, 902 .channels = 1, 903 .buswidth = 4, 904}; 905 906static struct qcom_icc_node qup2_core_slave = { 907 .name = "qup2_core_slave", 908 .id = SC8280XP_SLAVE_QUP_CORE_2, 909 .channels = 1, 910 .buswidth = 4, 911}; 912 913static struct qcom_icc_node qhs_ahb2phy0 = { 914 .name = "qhs_ahb2phy0", 915 .id = SC8280XP_SLAVE_AHB2PHY_0, 916 .channels = 1, 917 .buswidth = 4, 918}; 919 920static struct qcom_icc_node qhs_ahb2phy1 = { 921 .name = "qhs_ahb2phy1", 922 .id = SC8280XP_SLAVE_AHB2PHY_1, 923 .channels = 1, 924 .buswidth = 4, 925}; 926 927static struct qcom_icc_node qhs_ahb2phy2 = { 928 .name = "qhs_ahb2phy2", 929 .id = SC8280XP_SLAVE_AHB2PHY_2, 930 .channels = 1, 931 .buswidth = 4, 932}; 933 934static struct qcom_icc_node qhs_aoss = { 935 .name = "qhs_aoss", 936 .id = SC8280XP_SLAVE_AOSS, 937 .channels = 1, 938 .buswidth = 4, 939}; 940 941static struct qcom_icc_node qhs_apss = { 942 .name = "qhs_apss", 943 .id = SC8280XP_SLAVE_APPSS, 944 .channels = 1, 945 .buswidth = 8, 946}; 947 948static struct qcom_icc_node qhs_camera_cfg = { 949 .name = "qhs_camera_cfg", 950 .id = SC8280XP_SLAVE_CAMERA_CFG, 951 .channels = 1, 952 .buswidth = 4, 953}; 954 955static struct qcom_icc_node qhs_clk_ctl = { 956 .name = "qhs_clk_ctl", 957 .id = SC8280XP_SLAVE_CLK_CTL, 958 .channels = 1, 959 .buswidth = 4, 960}; 961 962static struct qcom_icc_node qhs_compute0_cfg = { 963 .name = "qhs_compute0_cfg", 964 .id = SC8280XP_SLAVE_CDSP_CFG, 965 .channels = 1, 966 .buswidth = 4, 967 .num_links = 1, 968 .links = { SC8280XP_MASTER_CDSP_NOC_CFG }, 969}; 970 971static struct qcom_icc_node qhs_compute1_cfg = { 972 .name = "qhs_compute1_cfg", 973 .id = SC8280XP_SLAVE_CDSP1_CFG, 974 .channels = 1, 975 .buswidth = 4, 976 .num_links = 1, 977 .links = { SC8280XP_MASTER_CDSPB_NOC_CFG }, 978}; 979 980static struct qcom_icc_node qhs_cpr_cx = { 981 .name = "qhs_cpr_cx", 982 .id = SC8280XP_SLAVE_RBCPR_CX_CFG, 983 .channels = 1, 984 .buswidth = 4, 985}; 986 987static struct qcom_icc_node qhs_cpr_mmcx = { 988 .name = "qhs_cpr_mmcx", 989 .id = SC8280XP_SLAVE_RBCPR_MMCX_CFG, 990 .channels = 1, 991 .buswidth = 4, 992}; 993 994static struct qcom_icc_node qhs_cpr_mx = { 995 .name = "qhs_cpr_mx", 996 .id = SC8280XP_SLAVE_RBCPR_MX_CFG, 997 .channels = 1, 998 .buswidth = 4, 999}; 1000 1001static struct qcom_icc_node qhs_cpr_nspcx = { 1002 .name = "qhs_cpr_nspcx", 1003 .id = SC8280XP_SLAVE_CPR_NSPCX, 1004 .channels = 1, 1005 .buswidth = 4, 1006}; 1007 1008static struct qcom_icc_node qhs_crypto0_cfg = { 1009 .name = "qhs_crypto0_cfg", 1010 .id = SC8280XP_SLAVE_CRYPTO_0_CFG, 1011 .channels = 1, 1012 .buswidth = 4, 1013}; 1014 1015static struct qcom_icc_node qhs_cx_rdpm = { 1016 .name = "qhs_cx_rdpm", 1017 .id = SC8280XP_SLAVE_CX_RDPM, 1018 .channels = 1, 1019 .buswidth = 4, 1020}; 1021 1022static struct qcom_icc_node qhs_dcc_cfg = { 1023 .name = "qhs_dcc_cfg", 1024 .id = SC8280XP_SLAVE_DCC_CFG, 1025 .channels = 1, 1026 .buswidth = 4, 1027}; 1028 1029static struct qcom_icc_node qhs_display0_cfg = { 1030 .name = "qhs_display0_cfg", 1031 .id = SC8280XP_SLAVE_DISPLAY_CFG, 1032 .channels = 1, 1033 .buswidth = 4, 1034}; 1035 1036static struct qcom_icc_node qhs_display1_cfg = { 1037 .name = "qhs_display1_cfg", 1038 .id = SC8280XP_SLAVE_DISPLAY1_CFG, 1039 .channels = 1, 1040 .buswidth = 4, 1041}; 1042 1043static struct qcom_icc_node qhs_emac0_cfg = { 1044 .name = "qhs_emac0_cfg", 1045 .id = SC8280XP_SLAVE_EMAC_CFG, 1046 .channels = 1, 1047 .buswidth = 4, 1048}; 1049 1050static struct qcom_icc_node qhs_emac1_cfg = { 1051 .name = "qhs_emac1_cfg", 1052 .id = SC8280XP_SLAVE_EMAC1_CFG, 1053 .channels = 1, 1054 .buswidth = 4, 1055}; 1056 1057static struct qcom_icc_node qhs_gpuss_cfg = { 1058 .name = "qhs_gpuss_cfg", 1059 .id = SC8280XP_SLAVE_GFX3D_CFG, 1060 .channels = 1, 1061 .buswidth = 8, 1062}; 1063 1064static struct qcom_icc_node qhs_hwkm = { 1065 .name = "qhs_hwkm", 1066 .id = SC8280XP_SLAVE_HWKM, 1067 .channels = 1, 1068 .buswidth = 4, 1069}; 1070 1071static struct qcom_icc_node qhs_imem_cfg = { 1072 .name = "qhs_imem_cfg", 1073 .id = SC8280XP_SLAVE_IMEM_CFG, 1074 .channels = 1, 1075 .buswidth = 4, 1076}; 1077 1078static struct qcom_icc_node qhs_ipa = { 1079 .name = "qhs_ipa", 1080 .id = SC8280XP_SLAVE_IPA_CFG, 1081 .channels = 1, 1082 .buswidth = 4, 1083}; 1084 1085static struct qcom_icc_node qhs_ipc_router = { 1086 .name = "qhs_ipc_router", 1087 .id = SC8280XP_SLAVE_IPC_ROUTER_CFG, 1088 .channels = 1, 1089 .buswidth = 4, 1090}; 1091 1092static struct qcom_icc_node qhs_lpass_cfg = { 1093 .name = "qhs_lpass_cfg", 1094 .id = SC8280XP_SLAVE_LPASS, 1095 .channels = 1, 1096 .buswidth = 4, 1097 .num_links = 1, 1098 .links = { SC8280XP_MASTER_CNOC_LPASS_AG_NOC }, 1099}; 1100 1101static struct qcom_icc_node qhs_mx_rdpm = { 1102 .name = "qhs_mx_rdpm", 1103 .id = SC8280XP_SLAVE_MX_RDPM, 1104 .channels = 1, 1105 .buswidth = 4, 1106}; 1107 1108static struct qcom_icc_node qhs_mxc_rdpm = { 1109 .name = "qhs_mxc_rdpm", 1110 .id = SC8280XP_SLAVE_MXC_RDPM, 1111 .channels = 1, 1112 .buswidth = 4, 1113}; 1114 1115static struct qcom_icc_node qhs_pcie0_cfg = { 1116 .name = "qhs_pcie0_cfg", 1117 .id = SC8280XP_SLAVE_PCIE_0_CFG, 1118 .channels = 1, 1119 .buswidth = 4, 1120}; 1121 1122static struct qcom_icc_node qhs_pcie1_cfg = { 1123 .name = "qhs_pcie1_cfg", 1124 .id = SC8280XP_SLAVE_PCIE_1_CFG, 1125 .channels = 1, 1126 .buswidth = 4, 1127}; 1128 1129static struct qcom_icc_node qhs_pcie2a_cfg = { 1130 .name = "qhs_pcie2a_cfg", 1131 .id = SC8280XP_SLAVE_PCIE_2A_CFG, 1132 .channels = 1, 1133 .buswidth = 4, 1134}; 1135 1136static struct qcom_icc_node qhs_pcie2b_cfg = { 1137 .name = "qhs_pcie2b_cfg", 1138 .id = SC8280XP_SLAVE_PCIE_2B_CFG, 1139 .channels = 1, 1140 .buswidth = 4, 1141}; 1142 1143static struct qcom_icc_node qhs_pcie3a_cfg = { 1144 .name = "qhs_pcie3a_cfg", 1145 .id = SC8280XP_SLAVE_PCIE_3A_CFG, 1146 .channels = 1, 1147 .buswidth = 4, 1148}; 1149 1150static struct qcom_icc_node qhs_pcie3b_cfg = { 1151 .name = "qhs_pcie3b_cfg", 1152 .id = SC8280XP_SLAVE_PCIE_3B_CFG, 1153 .channels = 1, 1154 .buswidth = 4, 1155}; 1156 1157static struct qcom_icc_node qhs_pcie4_cfg = { 1158 .name = "qhs_pcie4_cfg", 1159 .id = SC8280XP_SLAVE_PCIE_4_CFG, 1160 .channels = 1, 1161 .buswidth = 4, 1162}; 1163 1164static struct qcom_icc_node qhs_pcie_rsc_cfg = { 1165 .name = "qhs_pcie_rsc_cfg", 1166 .id = SC8280XP_SLAVE_PCIE_RSC_CFG, 1167 .channels = 1, 1168 .buswidth = 4, 1169}; 1170 1171static struct qcom_icc_node qhs_pdm = { 1172 .name = "qhs_pdm", 1173 .id = SC8280XP_SLAVE_PDM, 1174 .channels = 1, 1175 .buswidth = 4, 1176}; 1177 1178static struct qcom_icc_node qhs_pimem_cfg = { 1179 .name = "qhs_pimem_cfg", 1180 .id = SC8280XP_SLAVE_PIMEM_CFG, 1181 .channels = 1, 1182 .buswidth = 4, 1183}; 1184 1185static struct qcom_icc_node qhs_pka_wrapper_cfg = { 1186 .name = "qhs_pka_wrapper_cfg", 1187 .id = SC8280XP_SLAVE_PKA_WRAPPER_CFG, 1188 .channels = 1, 1189 .buswidth = 4, 1190}; 1191 1192static struct qcom_icc_node qhs_pmu_wrapper_cfg = { 1193 .name = "qhs_pmu_wrapper_cfg", 1194 .id = SC8280XP_SLAVE_PMU_WRAPPER_CFG, 1195 .channels = 1, 1196 .buswidth = 4, 1197}; 1198 1199static struct qcom_icc_node qhs_qdss_cfg = { 1200 .name = "qhs_qdss_cfg", 1201 .id = SC8280XP_SLAVE_QDSS_CFG, 1202 .channels = 1, 1203 .buswidth = 4, 1204}; 1205 1206static struct qcom_icc_node qhs_qspi = { 1207 .name = "qhs_qspi", 1208 .id = SC8280XP_SLAVE_QSPI_0, 1209 .channels = 1, 1210 .buswidth = 4, 1211}; 1212 1213static struct qcom_icc_node qhs_qup0 = { 1214 .name = "qhs_qup0", 1215 .id = SC8280XP_SLAVE_QUP_0, 1216 .channels = 1, 1217 .buswidth = 4, 1218}; 1219 1220static struct qcom_icc_node qhs_qup1 = { 1221 .name = "qhs_qup1", 1222 .id = SC8280XP_SLAVE_QUP_1, 1223 .channels = 1, 1224 .buswidth = 4, 1225}; 1226 1227static struct qcom_icc_node qhs_qup2 = { 1228 .name = "qhs_qup2", 1229 .id = SC8280XP_SLAVE_QUP_2, 1230 .channels = 1, 1231 .buswidth = 4, 1232}; 1233 1234static struct qcom_icc_node qhs_sdc2 = { 1235 .name = "qhs_sdc2", 1236 .id = SC8280XP_SLAVE_SDCC_2, 1237 .channels = 1, 1238 .buswidth = 4, 1239}; 1240 1241static struct qcom_icc_node qhs_sdc4 = { 1242 .name = "qhs_sdc4", 1243 .id = SC8280XP_SLAVE_SDCC_4, 1244 .channels = 1, 1245 .buswidth = 4, 1246}; 1247 1248static struct qcom_icc_node qhs_security = { 1249 .name = "qhs_security", 1250 .id = SC8280XP_SLAVE_SECURITY, 1251 .channels = 1, 1252 .buswidth = 4, 1253}; 1254 1255static struct qcom_icc_node qhs_smmuv3_cfg = { 1256 .name = "qhs_smmuv3_cfg", 1257 .id = SC8280XP_SLAVE_SMMUV3_CFG, 1258 .channels = 1, 1259 .buswidth = 8, 1260}; 1261 1262static struct qcom_icc_node qhs_smss_cfg = { 1263 .name = "qhs_smss_cfg", 1264 .id = SC8280XP_SLAVE_SMSS_CFG, 1265 .channels = 1, 1266 .buswidth = 4, 1267}; 1268 1269static struct qcom_icc_node qhs_spss_cfg = { 1270 .name = "qhs_spss_cfg", 1271 .id = SC8280XP_SLAVE_SPSS_CFG, 1272 .channels = 1, 1273 .buswidth = 4, 1274}; 1275 1276static struct qcom_icc_node qhs_tcsr = { 1277 .name = "qhs_tcsr", 1278 .id = SC8280XP_SLAVE_TCSR, 1279 .channels = 1, 1280 .buswidth = 4, 1281}; 1282 1283static struct qcom_icc_node qhs_tlmm = { 1284 .name = "qhs_tlmm", 1285 .id = SC8280XP_SLAVE_TLMM, 1286 .channels = 1, 1287 .buswidth = 4, 1288}; 1289 1290static struct qcom_icc_node qhs_ufs_card_cfg = { 1291 .name = "qhs_ufs_card_cfg", 1292 .id = SC8280XP_SLAVE_UFS_CARD_CFG, 1293 .channels = 1, 1294 .buswidth = 4, 1295}; 1296 1297static struct qcom_icc_node qhs_ufs_mem_cfg = { 1298 .name = "qhs_ufs_mem_cfg", 1299 .id = SC8280XP_SLAVE_UFS_MEM_CFG, 1300 .channels = 1, 1301 .buswidth = 4, 1302}; 1303 1304static struct qcom_icc_node qhs_usb3_0 = { 1305 .name = "qhs_usb3_0", 1306 .id = SC8280XP_SLAVE_USB3_0, 1307 .channels = 1, 1308 .buswidth = 4, 1309}; 1310 1311static struct qcom_icc_node qhs_usb3_1 = { 1312 .name = "qhs_usb3_1", 1313 .id = SC8280XP_SLAVE_USB3_1, 1314 .channels = 1, 1315 .buswidth = 4, 1316}; 1317 1318static struct qcom_icc_node qhs_usb3_mp = { 1319 .name = "qhs_usb3_mp", 1320 .id = SC8280XP_SLAVE_USB3_MP, 1321 .channels = 1, 1322 .buswidth = 4, 1323}; 1324 1325static struct qcom_icc_node qhs_usb4_host_0 = { 1326 .name = "qhs_usb4_host_0", 1327 .id = SC8280XP_SLAVE_USB4_0, 1328 .channels = 1, 1329 .buswidth = 4, 1330}; 1331 1332static struct qcom_icc_node qhs_usb4_host_1 = { 1333 .name = "qhs_usb4_host_1", 1334 .id = SC8280XP_SLAVE_USB4_1, 1335 .channels = 1, 1336 .buswidth = 4, 1337}; 1338 1339static struct qcom_icc_node qhs_venus_cfg = { 1340 .name = "qhs_venus_cfg", 1341 .id = SC8280XP_SLAVE_VENUS_CFG, 1342 .channels = 1, 1343 .buswidth = 4, 1344}; 1345 1346static struct qcom_icc_node qhs_vsense_ctrl_cfg = { 1347 .name = "qhs_vsense_ctrl_cfg", 1348 .id = SC8280XP_SLAVE_VSENSE_CTRL_CFG, 1349 .channels = 1, 1350 .buswidth = 4, 1351}; 1352 1353static struct qcom_icc_node qhs_vsense_ctrl_r_cfg = { 1354 .name = "qhs_vsense_ctrl_r_cfg", 1355 .id = SC8280XP_SLAVE_VSENSE_CTRL_R_CFG, 1356 .channels = 1, 1357 .buswidth = 4, 1358}; 1359 1360static struct qcom_icc_node qns_a1_noc_cfg = { 1361 .name = "qns_a1_noc_cfg", 1362 .id = SC8280XP_SLAVE_A1NOC_CFG, 1363 .channels = 1, 1364 .buswidth = 4, 1365 .num_links = 1, 1366 .links = { SC8280XP_MASTER_A1NOC_CFG }, 1367}; 1368 1369static struct qcom_icc_node qns_a2_noc_cfg = { 1370 .name = "qns_a2_noc_cfg", 1371 .id = SC8280XP_SLAVE_A2NOC_CFG, 1372 .channels = 1, 1373 .buswidth = 4, 1374 .num_links = 1, 1375 .links = { SC8280XP_MASTER_A2NOC_CFG }, 1376}; 1377 1378static struct qcom_icc_node qns_anoc_pcie_bridge_cfg = { 1379 .name = "qns_anoc_pcie_bridge_cfg", 1380 .id = SC8280XP_SLAVE_ANOC_PCIE_BRIDGE_CFG, 1381 .channels = 1, 1382 .buswidth = 4, 1383}; 1384 1385static struct qcom_icc_node qns_ddrss_cfg = { 1386 .name = "qns_ddrss_cfg", 1387 .id = SC8280XP_SLAVE_DDRSS_CFG, 1388 .channels = 1, 1389 .buswidth = 4, 1390 .num_links = 1, 1391 .links = { SC8280XP_MASTER_CNOC_DC_NOC }, 1392}; 1393 1394static struct qcom_icc_node qns_mnoc_cfg = { 1395 .name = "qns_mnoc_cfg", 1396 .id = SC8280XP_SLAVE_CNOC_MNOC_CFG, 1397 .channels = 1, 1398 .buswidth = 4, 1399 .num_links = 1, 1400 .links = { SC8280XP_MASTER_CNOC_MNOC_CFG }, 1401}; 1402 1403static struct qcom_icc_node qns_snoc_cfg = { 1404 .name = "qns_snoc_cfg", 1405 .id = SC8280XP_SLAVE_SNOC_CFG, 1406 .channels = 1, 1407 .buswidth = 4, 1408 .num_links = 1, 1409 .links = { SC8280XP_MASTER_SNOC_CFG }, 1410}; 1411 1412static struct qcom_icc_node qns_snoc_sf_bridge_cfg = { 1413 .name = "qns_snoc_sf_bridge_cfg", 1414 .id = SC8280XP_SLAVE_SNOC_SF_BRIDGE_CFG, 1415 .channels = 1, 1416 .buswidth = 4, 1417}; 1418 1419static struct qcom_icc_node qxs_imem = { 1420 .name = "qxs_imem", 1421 .id = SC8280XP_SLAVE_IMEM, 1422 .channels = 1, 1423 .buswidth = 8, 1424}; 1425 1426static struct qcom_icc_node qxs_pimem = { 1427 .name = "qxs_pimem", 1428 .id = SC8280XP_SLAVE_PIMEM, 1429 .channels = 1, 1430 .buswidth = 8, 1431}; 1432 1433static struct qcom_icc_node srvc_cnoc = { 1434 .name = "srvc_cnoc", 1435 .id = SC8280XP_SLAVE_SERVICE_CNOC, 1436 .channels = 1, 1437 .buswidth = 4, 1438}; 1439 1440static struct qcom_icc_node xs_pcie_0 = { 1441 .name = "xs_pcie_0", 1442 .id = SC8280XP_SLAVE_PCIE_0, 1443 .channels = 1, 1444 .buswidth = 16, 1445}; 1446 1447static struct qcom_icc_node xs_pcie_1 = { 1448 .name = "xs_pcie_1", 1449 .id = SC8280XP_SLAVE_PCIE_1, 1450 .channels = 1, 1451 .buswidth = 16, 1452}; 1453 1454static struct qcom_icc_node xs_pcie_2a = { 1455 .name = "xs_pcie_2a", 1456 .id = SC8280XP_SLAVE_PCIE_2A, 1457 .channels = 1, 1458 .buswidth = 16, 1459}; 1460 1461static struct qcom_icc_node xs_pcie_2b = { 1462 .name = "xs_pcie_2b", 1463 .id = SC8280XP_SLAVE_PCIE_2B, 1464 .channels = 1, 1465 .buswidth = 8, 1466}; 1467 1468static struct qcom_icc_node xs_pcie_3a = { 1469 .name = "xs_pcie_3a", 1470 .id = SC8280XP_SLAVE_PCIE_3A, 1471 .channels = 1, 1472 .buswidth = 16, 1473}; 1474 1475static struct qcom_icc_node xs_pcie_3b = { 1476 .name = "xs_pcie_3b", 1477 .id = SC8280XP_SLAVE_PCIE_3B, 1478 .channels = 1, 1479 .buswidth = 8, 1480}; 1481 1482static struct qcom_icc_node xs_pcie_4 = { 1483 .name = "xs_pcie_4", 1484 .id = SC8280XP_SLAVE_PCIE_4, 1485 .channels = 1, 1486 .buswidth = 8, 1487}; 1488 1489static struct qcom_icc_node xs_qdss_stm = { 1490 .name = "xs_qdss_stm", 1491 .id = SC8280XP_SLAVE_QDSS_STM, 1492 .channels = 1, 1493 .buswidth = 4, 1494}; 1495 1496static struct qcom_icc_node xs_smss = { 1497 .name = "xs_smss", 1498 .id = SC8280XP_SLAVE_SMSS, 1499 .channels = 1, 1500 .buswidth = 8, 1501}; 1502 1503static struct qcom_icc_node xs_sys_tcu_cfg = { 1504 .name = "xs_sys_tcu_cfg", 1505 .id = SC8280XP_SLAVE_TCU, 1506 .channels = 1, 1507 .buswidth = 8, 1508}; 1509 1510static struct qcom_icc_node qhs_llcc = { 1511 .name = "qhs_llcc", 1512 .id = SC8280XP_SLAVE_LLCC_CFG, 1513 .channels = 1, 1514 .buswidth = 4, 1515}; 1516 1517static struct qcom_icc_node qns_gemnoc = { 1518 .name = "qns_gemnoc", 1519 .id = SC8280XP_SLAVE_GEM_NOC_CFG, 1520 .channels = 1, 1521 .buswidth = 4, 1522 .num_links = 1, 1523 .links = { SC8280XP_MASTER_GEM_NOC_CFG }, 1524}; 1525 1526static struct qcom_icc_node qns_gem_noc_cnoc = { 1527 .name = "qns_gem_noc_cnoc", 1528 .id = SC8280XP_SLAVE_GEM_NOC_CNOC, 1529 .channels = 1, 1530 .buswidth = 16, 1531 .num_links = 1, 1532 .links = { SC8280XP_MASTER_GEM_NOC_CNOC }, 1533}; 1534 1535static struct qcom_icc_node qns_llcc = { 1536 .name = "qns_llcc", 1537 .id = SC8280XP_SLAVE_LLCC, 1538 .channels = 8, 1539 .buswidth = 16, 1540 .num_links = 1, 1541 .links = { SC8280XP_MASTER_LLCC }, 1542}; 1543 1544static struct qcom_icc_node qns_pcie = { 1545 .name = "qns_pcie", 1546 .id = SC8280XP_SLAVE_GEM_NOC_PCIE_CNOC, 1547 .channels = 1, 1548 .buswidth = 16, 1549 .num_links = 1, 1550 .links = { SC8280XP_MASTER_GEM_NOC_PCIE_SNOC }, 1551}; 1552 1553static struct qcom_icc_node srvc_even_gemnoc = { 1554 .name = "srvc_even_gemnoc", 1555 .id = SC8280XP_SLAVE_SERVICE_GEM_NOC_1, 1556 .channels = 1, 1557 .buswidth = 4, 1558}; 1559 1560static struct qcom_icc_node srvc_odd_gemnoc = { 1561 .name = "srvc_odd_gemnoc", 1562 .id = SC8280XP_SLAVE_SERVICE_GEM_NOC_2, 1563 .channels = 1, 1564 .buswidth = 4, 1565}; 1566 1567static struct qcom_icc_node srvc_sys_gemnoc = { 1568 .name = "srvc_sys_gemnoc", 1569 .id = SC8280XP_SLAVE_SERVICE_GEM_NOC, 1570 .channels = 1, 1571 .buswidth = 4, 1572}; 1573 1574static struct qcom_icc_node qhs_lpass_core = { 1575 .name = "qhs_lpass_core", 1576 .id = SC8280XP_SLAVE_LPASS_CORE_CFG, 1577 .channels = 1, 1578 .buswidth = 4, 1579}; 1580 1581static struct qcom_icc_node qhs_lpass_lpi = { 1582 .name = "qhs_lpass_lpi", 1583 .id = SC8280XP_SLAVE_LPASS_LPI_CFG, 1584 .channels = 1, 1585 .buswidth = 4, 1586}; 1587 1588static struct qcom_icc_node qhs_lpass_mpu = { 1589 .name = "qhs_lpass_mpu", 1590 .id = SC8280XP_SLAVE_LPASS_MPU_CFG, 1591 .channels = 1, 1592 .buswidth = 4, 1593}; 1594 1595static struct qcom_icc_node qhs_lpass_top = { 1596 .name = "qhs_lpass_top", 1597 .id = SC8280XP_SLAVE_LPASS_TOP_CFG, 1598 .channels = 1, 1599 .buswidth = 4, 1600}; 1601 1602static struct qcom_icc_node qns_sysnoc = { 1603 .name = "qns_sysnoc", 1604 .id = SC8280XP_SLAVE_LPASS_SNOC, 1605 .channels = 1, 1606 .buswidth = 16, 1607 .num_links = 1, 1608 .links = { SC8280XP_MASTER_LPASS_ANOC }, 1609}; 1610 1611static struct qcom_icc_node srvc_niu_aml_noc = { 1612 .name = "srvc_niu_aml_noc", 1613 .id = SC8280XP_SLAVE_SERVICES_LPASS_AML_NOC, 1614 .channels = 1, 1615 .buswidth = 4, 1616}; 1617 1618static struct qcom_icc_node srvc_niu_lpass_agnoc = { 1619 .name = "srvc_niu_lpass_agnoc", 1620 .id = SC8280XP_SLAVE_SERVICE_LPASS_AG_NOC, 1621 .channels = 1, 1622 .buswidth = 4, 1623}; 1624 1625static struct qcom_icc_node ebi = { 1626 .name = "ebi", 1627 .id = SC8280XP_SLAVE_EBI1, 1628 .channels = 8, 1629 .buswidth = 4, 1630}; 1631 1632static struct qcom_icc_node qns_mem_noc_hf = { 1633 .name = "qns_mem_noc_hf", 1634 .id = SC8280XP_SLAVE_MNOC_HF_MEM_NOC, 1635 .channels = 2, 1636 .buswidth = 32, 1637 .num_links = 1, 1638 .links = { SC8280XP_MASTER_MNOC_HF_MEM_NOC }, 1639}; 1640 1641static struct qcom_icc_node qns_mem_noc_sf = { 1642 .name = "qns_mem_noc_sf", 1643 .id = SC8280XP_SLAVE_MNOC_SF_MEM_NOC, 1644 .channels = 2, 1645 .buswidth = 32, 1646 .num_links = 1, 1647 .links = { SC8280XP_MASTER_MNOC_SF_MEM_NOC }, 1648}; 1649 1650static struct qcom_icc_node srvc_mnoc = { 1651 .name = "srvc_mnoc", 1652 .id = SC8280XP_SLAVE_SERVICE_MNOC, 1653 .channels = 1, 1654 .buswidth = 4, 1655}; 1656 1657static struct qcom_icc_node qns_nsp_gemnoc = { 1658 .name = "qns_nsp_gemnoc", 1659 .id = SC8280XP_SLAVE_CDSP_MEM_NOC, 1660 .channels = 2, 1661 .buswidth = 32, 1662 .num_links = 1, 1663 .links = { SC8280XP_MASTER_COMPUTE_NOC }, 1664}; 1665 1666static struct qcom_icc_node qxs_nsp_xfr = { 1667 .name = "qxs_nsp_xfr", 1668 .id = SC8280XP_SLAVE_NSP_XFR, 1669 .channels = 1, 1670 .buswidth = 32, 1671}; 1672 1673static struct qcom_icc_node service_nsp_noc = { 1674 .name = "service_nsp_noc", 1675 .id = SC8280XP_SLAVE_SERVICE_NSP_NOC, 1676 .channels = 1, 1677 .buswidth = 4, 1678}; 1679 1680static struct qcom_icc_node qns_nspb_gemnoc = { 1681 .name = "qns_nspb_gemnoc", 1682 .id = SC8280XP_SLAVE_CDSPB_MEM_NOC, 1683 .channels = 2, 1684 .buswidth = 32, 1685 .num_links = 1, 1686 .links = { SC8280XP_MASTER_COMPUTE_NOC_1 }, 1687}; 1688 1689static struct qcom_icc_node qxs_nspb_xfr = { 1690 .name = "qxs_nspb_xfr", 1691 .id = SC8280XP_SLAVE_NSPB_XFR, 1692 .channels = 1, 1693 .buswidth = 32, 1694}; 1695 1696static struct qcom_icc_node service_nspb_noc = { 1697 .name = "service_nspb_noc", 1698 .id = SC8280XP_SLAVE_SERVICE_NSPB_NOC, 1699 .channels = 1, 1700 .buswidth = 4, 1701}; 1702 1703static struct qcom_icc_node qns_gemnoc_gc = { 1704 .name = "qns_gemnoc_gc", 1705 .id = SC8280XP_SLAVE_SNOC_GEM_NOC_GC, 1706 .channels = 1, 1707 .buswidth = 8, 1708 .num_links = 1, 1709 .links = { SC8280XP_MASTER_SNOC_GC_MEM_NOC }, 1710}; 1711 1712static struct qcom_icc_node qns_gemnoc_sf = { 1713 .name = "qns_gemnoc_sf", 1714 .id = SC8280XP_SLAVE_SNOC_GEM_NOC_SF, 1715 .channels = 1, 1716 .buswidth = 16, 1717 .num_links = 1, 1718 .links = { SC8280XP_MASTER_SNOC_SF_MEM_NOC }, 1719}; 1720 1721static struct qcom_icc_node srvc_snoc = { 1722 .name = "srvc_snoc", 1723 .id = SC8280XP_SLAVE_SERVICE_SNOC, 1724 .channels = 1, 1725 .buswidth = 4, 1726}; 1727 1728static struct qcom_icc_bcm bcm_acv = { 1729 .name = "ACV", 1730 .num_nodes = 1, 1731 .nodes = { &ebi }, 1732}; 1733 1734static struct qcom_icc_bcm bcm_ce0 = { 1735 .name = "CE0", 1736 .num_nodes = 1, 1737 .nodes = { &qxm_crypto }, 1738}; 1739 1740static struct qcom_icc_bcm bcm_cn0 = { 1741 .name = "CN0", 1742 .keepalive = true, 1743 .num_nodes = 9, 1744 .nodes = { &qnm_gemnoc_cnoc, 1745 &qnm_gemnoc_pcie, 1746 &xs_pcie_0, 1747 &xs_pcie_1, 1748 &xs_pcie_2a, 1749 &xs_pcie_2b, 1750 &xs_pcie_3a, 1751 &xs_pcie_3b, 1752 &xs_pcie_4 1753 }, 1754}; 1755 1756static struct qcom_icc_bcm bcm_cn1 = { 1757 .name = "CN1", 1758 .num_nodes = 67, 1759 .nodes = { &qhs_ahb2phy0, 1760 &qhs_ahb2phy1, 1761 &qhs_ahb2phy2, 1762 &qhs_aoss, 1763 &qhs_apss, 1764 &qhs_camera_cfg, 1765 &qhs_clk_ctl, 1766 &qhs_compute0_cfg, 1767 &qhs_compute1_cfg, 1768 &qhs_cpr_cx, 1769 &qhs_cpr_mmcx, 1770 &qhs_cpr_mx, 1771 &qhs_cpr_nspcx, 1772 &qhs_crypto0_cfg, 1773 &qhs_cx_rdpm, 1774 &qhs_dcc_cfg, 1775 &qhs_display0_cfg, 1776 &qhs_display1_cfg, 1777 &qhs_emac0_cfg, 1778 &qhs_emac1_cfg, 1779 &qhs_gpuss_cfg, 1780 &qhs_hwkm, 1781 &qhs_imem_cfg, 1782 &qhs_ipa, 1783 &qhs_ipc_router, 1784 &qhs_lpass_cfg, 1785 &qhs_mx_rdpm, 1786 &qhs_mxc_rdpm, 1787 &qhs_pcie0_cfg, 1788 &qhs_pcie1_cfg, 1789 &qhs_pcie2a_cfg, 1790 &qhs_pcie2b_cfg, 1791 &qhs_pcie3a_cfg, 1792 &qhs_pcie3b_cfg, 1793 &qhs_pcie4_cfg, 1794 &qhs_pcie_rsc_cfg, 1795 &qhs_pdm, 1796 &qhs_pimem_cfg, 1797 &qhs_pka_wrapper_cfg, 1798 &qhs_pmu_wrapper_cfg, 1799 &qhs_qdss_cfg, 1800 &qhs_sdc2, 1801 &qhs_sdc4, 1802 &qhs_security, 1803 &qhs_smmuv3_cfg, 1804 &qhs_smss_cfg, 1805 &qhs_spss_cfg, 1806 &qhs_tcsr, 1807 &qhs_tlmm, 1808 &qhs_ufs_card_cfg, 1809 &qhs_ufs_mem_cfg, 1810 &qhs_usb3_0, 1811 &qhs_usb3_1, 1812 &qhs_usb3_mp, 1813 &qhs_usb4_host_0, 1814 &qhs_usb4_host_1, 1815 &qhs_venus_cfg, 1816 &qhs_vsense_ctrl_cfg, 1817 &qhs_vsense_ctrl_r_cfg, 1818 &qns_a1_noc_cfg, 1819 &qns_a2_noc_cfg, 1820 &qns_anoc_pcie_bridge_cfg, 1821 &qns_ddrss_cfg, 1822 &qns_mnoc_cfg, 1823 &qns_snoc_cfg, 1824 &qns_snoc_sf_bridge_cfg, 1825 &srvc_cnoc 1826 }, 1827}; 1828 1829static struct qcom_icc_bcm bcm_cn2 = { 1830 .name = "CN2", 1831 .num_nodes = 4, 1832 .nodes = { &qhs_qspi, 1833 &qhs_qup0, 1834 &qhs_qup1, 1835 &qhs_qup2 1836 }, 1837}; 1838 1839static struct qcom_icc_bcm bcm_cn3 = { 1840 .name = "CN3", 1841 .num_nodes = 3, 1842 .nodes = { &qxs_imem, 1843 &xs_smss, 1844 &xs_sys_tcu_cfg 1845 }, 1846}; 1847 1848static struct qcom_icc_bcm bcm_ip0 = { 1849 .name = "IP0", 1850 .num_nodes = 1, 1851 .nodes = { &ipa_core_slave }, 1852}; 1853 1854static struct qcom_icc_bcm bcm_mc0 = { 1855 .name = "MC0", 1856 .keepalive = true, 1857 .num_nodes = 1, 1858 .nodes = { &ebi }, 1859}; 1860 1861static struct qcom_icc_bcm bcm_mm0 = { 1862 .name = "MM0", 1863 .keepalive = true, 1864 .num_nodes = 5, 1865 .nodes = { &qnm_camnoc_hf, 1866 &qnm_mdp0_0, 1867 &qnm_mdp0_1, 1868 &qnm_mdp1_0, 1869 &qns_mem_noc_hf 1870 }, 1871}; 1872 1873static struct qcom_icc_bcm bcm_mm1 = { 1874 .name = "MM1", 1875 .num_nodes = 8, 1876 .nodes = { &qnm_rot_0, 1877 &qnm_rot_1, 1878 &qnm_video0, 1879 &qnm_video1, 1880 &qnm_video_cvp, 1881 &qxm_camnoc_icp, 1882 &qxm_camnoc_sf, 1883 &qns_mem_noc_sf 1884 }, 1885}; 1886 1887static struct qcom_icc_bcm bcm_nsa0 = { 1888 .name = "NSA0", 1889 .num_nodes = 2, 1890 .nodes = { &qns_nsp_gemnoc, 1891 &qxs_nsp_xfr 1892 }, 1893}; 1894 1895static struct qcom_icc_bcm bcm_nsa1 = { 1896 .name = "NSA1", 1897 .num_nodes = 1, 1898 .nodes = { &qxm_nsp }, 1899}; 1900 1901static struct qcom_icc_bcm bcm_nsb0 = { 1902 .name = "NSB0", 1903 .num_nodes = 2, 1904 .nodes = { &qns_nspb_gemnoc, 1905 &qxs_nspb_xfr 1906 }, 1907}; 1908 1909static struct qcom_icc_bcm bcm_nsb1 = { 1910 .name = "NSB1", 1911 .num_nodes = 1, 1912 .nodes = { &qxm_nspb }, 1913}; 1914 1915static struct qcom_icc_bcm bcm_pci0 = { 1916 .name = "PCI0", 1917 .num_nodes = 1, 1918 .nodes = { &qns_pcie_gem_noc }, 1919}; 1920 1921static struct qcom_icc_bcm bcm_qup0 = { 1922 .name = "QUP0", 1923 .vote_scale = 1, 1924 .num_nodes = 1, 1925 .nodes = { &qup0_core_slave }, 1926}; 1927 1928static struct qcom_icc_bcm bcm_qup1 = { 1929 .name = "QUP1", 1930 .vote_scale = 1, 1931 .num_nodes = 1, 1932 .nodes = { &qup1_core_slave }, 1933}; 1934 1935static struct qcom_icc_bcm bcm_qup2 = { 1936 .name = "QUP2", 1937 .vote_scale = 1, 1938 .num_nodes = 1, 1939 .nodes = { &qup2_core_slave }, 1940}; 1941 1942static struct qcom_icc_bcm bcm_sh0 = { 1943 .name = "SH0", 1944 .keepalive = true, 1945 .num_nodes = 1, 1946 .nodes = { &qns_llcc }, 1947}; 1948 1949static struct qcom_icc_bcm bcm_sh2 = { 1950 .name = "SH2", 1951 .num_nodes = 1, 1952 .nodes = { &chm_apps }, 1953}; 1954 1955static struct qcom_icc_bcm bcm_sn0 = { 1956 .name = "SN0", 1957 .keepalive = true, 1958 .num_nodes = 1, 1959 .nodes = { &qns_gemnoc_sf }, 1960}; 1961 1962static struct qcom_icc_bcm bcm_sn1 = { 1963 .name = "SN1", 1964 .num_nodes = 1, 1965 .nodes = { &qns_gemnoc_gc }, 1966}; 1967 1968static struct qcom_icc_bcm bcm_sn2 = { 1969 .name = "SN2", 1970 .num_nodes = 1, 1971 .nodes = { &qxs_pimem }, 1972}; 1973 1974static struct qcom_icc_bcm bcm_sn3 = { 1975 .name = "SN3", 1976 .num_nodes = 2, 1977 .nodes = { &qns_a1noc_snoc, 1978 &qnm_aggre1_noc 1979 }, 1980}; 1981 1982static struct qcom_icc_bcm bcm_sn4 = { 1983 .name = "SN4", 1984 .num_nodes = 2, 1985 .nodes = { &qns_a2noc_snoc, 1986 &qnm_aggre2_noc 1987 }, 1988}; 1989 1990static struct qcom_icc_bcm bcm_sn5 = { 1991 .name = "SN5", 1992 .num_nodes = 2, 1993 .nodes = { &qns_aggre_usb_snoc, 1994 &qnm_aggre_usb_noc 1995 }, 1996}; 1997 1998static struct qcom_icc_bcm bcm_sn9 = { 1999 .name = "SN9", 2000 .num_nodes = 2, 2001 .nodes = { &qns_sysnoc, 2002 &qnm_lpass_noc 2003 }, 2004}; 2005 2006static struct qcom_icc_bcm bcm_sn10 = { 2007 .name = "SN10", 2008 .num_nodes = 1, 2009 .nodes = { &xs_qdss_stm }, 2010}; 2011 2012static struct qcom_icc_bcm * const aggre1_noc_bcms[] = { 2013 &bcm_sn3, 2014 &bcm_sn5, 2015}; 2016 2017static struct qcom_icc_node * const aggre1_noc_nodes[] = { 2018 [MASTER_QSPI_0] = &qhm_qspi, 2019 [MASTER_QUP_1] = &qhm_qup1, 2020 [MASTER_QUP_2] = &qhm_qup2, 2021 [MASTER_A1NOC_CFG] = &qnm_a1noc_cfg, 2022 [MASTER_IPA] = &qxm_ipa, 2023 [MASTER_EMAC_1] = &xm_emac_1, 2024 [MASTER_SDCC_4] = &xm_sdc4, 2025 [MASTER_UFS_MEM] = &xm_ufs_mem, 2026 [MASTER_USB3_0] = &xm_usb3_0, 2027 [MASTER_USB3_1] = &xm_usb3_1, 2028 [MASTER_USB3_MP] = &xm_usb3_mp, 2029 [MASTER_USB4_0] = &xm_usb4_host0, 2030 [MASTER_USB4_1] = &xm_usb4_host1, 2031 [SLAVE_A1NOC_SNOC] = &qns_a1noc_snoc, 2032 [SLAVE_USB_NOC_SNOC] = &qns_aggre_usb_snoc, 2033 [SLAVE_SERVICE_A1NOC] = &srvc_aggre1_noc, 2034}; 2035 2036static const struct qcom_icc_desc sc8280xp_aggre1_noc = { 2037 .nodes = aggre1_noc_nodes, 2038 .num_nodes = ARRAY_SIZE(aggre1_noc_nodes), 2039 .bcms = aggre1_noc_bcms, 2040 .num_bcms = ARRAY_SIZE(aggre1_noc_bcms), 2041}; 2042 2043static struct qcom_icc_bcm * const aggre2_noc_bcms[] = { 2044 &bcm_ce0, 2045 &bcm_pci0, 2046 &bcm_sn4, 2047}; 2048 2049static struct qcom_icc_node * const aggre2_noc_nodes[] = { 2050 [MASTER_QDSS_BAM] = &qhm_qdss_bam, 2051 [MASTER_QUP_0] = &qhm_qup0, 2052 [MASTER_A2NOC_CFG] = &qnm_a2noc_cfg, 2053 [MASTER_CRYPTO] = &qxm_crypto, 2054 [MASTER_SENSORS_PROC] = &qxm_sensorss_q6, 2055 [MASTER_SP] = &qxm_sp, 2056 [MASTER_EMAC] = &xm_emac_0, 2057 [MASTER_PCIE_0] = &xm_pcie3_0, 2058 [MASTER_PCIE_1] = &xm_pcie3_1, 2059 [MASTER_PCIE_2A] = &xm_pcie3_2a, 2060 [MASTER_PCIE_2B] = &xm_pcie3_2b, 2061 [MASTER_PCIE_3A] = &xm_pcie3_3a, 2062 [MASTER_PCIE_3B] = &xm_pcie3_3b, 2063 [MASTER_PCIE_4] = &xm_pcie3_4, 2064 [MASTER_QDSS_ETR] = &xm_qdss_etr, 2065 [MASTER_SDCC_2] = &xm_sdc2, 2066 [MASTER_UFS_CARD] = &xm_ufs_card, 2067 [SLAVE_A2NOC_SNOC] = &qns_a2noc_snoc, 2068 [SLAVE_ANOC_PCIE_GEM_NOC] = &qns_pcie_gem_noc, 2069 [SLAVE_SERVICE_A2NOC] = &srvc_aggre2_noc, 2070}; 2071 2072static const struct qcom_icc_desc sc8280xp_aggre2_noc = { 2073 .nodes = aggre2_noc_nodes, 2074 .num_nodes = ARRAY_SIZE(aggre2_noc_nodes), 2075 .bcms = aggre2_noc_bcms, 2076 .num_bcms = ARRAY_SIZE(aggre2_noc_bcms), 2077}; 2078 2079static struct qcom_icc_bcm * const clk_virt_bcms[] = { 2080 &bcm_ip0, 2081 &bcm_qup0, 2082 &bcm_qup1, 2083 &bcm_qup2, 2084}; 2085 2086static struct qcom_icc_node * const clk_virt_nodes[] = { 2087 [MASTER_IPA_CORE] = &ipa_core_master, 2088 [MASTER_QUP_CORE_0] = &qup0_core_master, 2089 [MASTER_QUP_CORE_1] = &qup1_core_master, 2090 [MASTER_QUP_CORE_2] = &qup2_core_master, 2091 [SLAVE_IPA_CORE] = &ipa_core_slave, 2092 [SLAVE_QUP_CORE_0] = &qup0_core_slave, 2093 [SLAVE_QUP_CORE_1] = &qup1_core_slave, 2094 [SLAVE_QUP_CORE_2] = &qup2_core_slave, 2095}; 2096 2097static const struct qcom_icc_desc sc8280xp_clk_virt = { 2098 .nodes = clk_virt_nodes, 2099 .num_nodes = ARRAY_SIZE(clk_virt_nodes), 2100 .bcms = clk_virt_bcms, 2101 .num_bcms = ARRAY_SIZE(clk_virt_bcms), 2102}; 2103 2104static struct qcom_icc_bcm * const config_noc_bcms[] = { 2105 &bcm_cn0, 2106 &bcm_cn1, 2107 &bcm_cn2, 2108 &bcm_cn3, 2109 &bcm_sn2, 2110 &bcm_sn10, 2111}; 2112 2113static struct qcom_icc_node * const config_noc_nodes[] = { 2114 [MASTER_GEM_NOC_CNOC] = &qnm_gemnoc_cnoc, 2115 [MASTER_GEM_NOC_PCIE_SNOC] = &qnm_gemnoc_pcie, 2116 [SLAVE_AHB2PHY_0] = &qhs_ahb2phy0, 2117 [SLAVE_AHB2PHY_1] = &qhs_ahb2phy1, 2118 [SLAVE_AHB2PHY_2] = &qhs_ahb2phy2, 2119 [SLAVE_AOSS] = &qhs_aoss, 2120 [SLAVE_APPSS] = &qhs_apss, 2121 [SLAVE_CAMERA_CFG] = &qhs_camera_cfg, 2122 [SLAVE_CLK_CTL] = &qhs_clk_ctl, 2123 [SLAVE_CDSP_CFG] = &qhs_compute0_cfg, 2124 [SLAVE_CDSP1_CFG] = &qhs_compute1_cfg, 2125 [SLAVE_RBCPR_CX_CFG] = &qhs_cpr_cx, 2126 [SLAVE_RBCPR_MMCX_CFG] = &qhs_cpr_mmcx, 2127 [SLAVE_RBCPR_MX_CFG] = &qhs_cpr_mx, 2128 [SLAVE_CPR_NSPCX] = &qhs_cpr_nspcx, 2129 [SLAVE_CRYPTO_0_CFG] = &qhs_crypto0_cfg, 2130 [SLAVE_CX_RDPM] = &qhs_cx_rdpm, 2131 [SLAVE_DCC_CFG] = &qhs_dcc_cfg, 2132 [SLAVE_DISPLAY_CFG] = &qhs_display0_cfg, 2133 [SLAVE_DISPLAY1_CFG] = &qhs_display1_cfg, 2134 [SLAVE_EMAC_CFG] = &qhs_emac0_cfg, 2135 [SLAVE_EMAC1_CFG] = &qhs_emac1_cfg, 2136 [SLAVE_GFX3D_CFG] = &qhs_gpuss_cfg, 2137 [SLAVE_HWKM] = &qhs_hwkm, 2138 [SLAVE_IMEM_CFG] = &qhs_imem_cfg, 2139 [SLAVE_IPA_CFG] = &qhs_ipa, 2140 [SLAVE_IPC_ROUTER_CFG] = &qhs_ipc_router, 2141 [SLAVE_LPASS] = &qhs_lpass_cfg, 2142 [SLAVE_MX_RDPM] = &qhs_mx_rdpm, 2143 [SLAVE_MXC_RDPM] = &qhs_mxc_rdpm, 2144 [SLAVE_PCIE_0_CFG] = &qhs_pcie0_cfg, 2145 [SLAVE_PCIE_1_CFG] = &qhs_pcie1_cfg, 2146 [SLAVE_PCIE_2A_CFG] = &qhs_pcie2a_cfg, 2147 [SLAVE_PCIE_2B_CFG] = &qhs_pcie2b_cfg, 2148 [SLAVE_PCIE_3A_CFG] = &qhs_pcie3a_cfg, 2149 [SLAVE_PCIE_3B_CFG] = &qhs_pcie3b_cfg, 2150 [SLAVE_PCIE_4_CFG] = &qhs_pcie4_cfg, 2151 [SLAVE_PCIE_RSC_CFG] = &qhs_pcie_rsc_cfg, 2152 [SLAVE_PDM] = &qhs_pdm, 2153 [SLAVE_PIMEM_CFG] = &qhs_pimem_cfg, 2154 [SLAVE_PKA_WRAPPER_CFG] = &qhs_pka_wrapper_cfg, 2155 [SLAVE_PMU_WRAPPER_CFG] = &qhs_pmu_wrapper_cfg, 2156 [SLAVE_QDSS_CFG] = &qhs_qdss_cfg, 2157 [SLAVE_QSPI_0] = &qhs_qspi, 2158 [SLAVE_QUP_0] = &qhs_qup0, 2159 [SLAVE_QUP_1] = &qhs_qup1, 2160 [SLAVE_QUP_2] = &qhs_qup2, 2161 [SLAVE_SDCC_2] = &qhs_sdc2, 2162 [SLAVE_SDCC_4] = &qhs_sdc4, 2163 [SLAVE_SECURITY] = &qhs_security, 2164 [SLAVE_SMMUV3_CFG] = &qhs_smmuv3_cfg, 2165 [SLAVE_SMSS_CFG] = &qhs_smss_cfg, 2166 [SLAVE_SPSS_CFG] = &qhs_spss_cfg, 2167 [SLAVE_TCSR] = &qhs_tcsr, 2168 [SLAVE_TLMM] = &qhs_tlmm, 2169 [SLAVE_UFS_CARD_CFG] = &qhs_ufs_card_cfg, 2170 [SLAVE_UFS_MEM_CFG] = &qhs_ufs_mem_cfg, 2171 [SLAVE_USB3_0] = &qhs_usb3_0, 2172 [SLAVE_USB3_1] = &qhs_usb3_1, 2173 [SLAVE_USB3_MP] = &qhs_usb3_mp, 2174 [SLAVE_USB4_0] = &qhs_usb4_host_0, 2175 [SLAVE_USB4_1] = &qhs_usb4_host_1, 2176 [SLAVE_VENUS_CFG] = &qhs_venus_cfg, 2177 [SLAVE_VSENSE_CTRL_CFG] = &qhs_vsense_ctrl_cfg, 2178 [SLAVE_VSENSE_CTRL_R_CFG] = &qhs_vsense_ctrl_r_cfg, 2179 [SLAVE_A1NOC_CFG] = &qns_a1_noc_cfg, 2180 [SLAVE_A2NOC_CFG] = &qns_a2_noc_cfg, 2181 [SLAVE_ANOC_PCIE_BRIDGE_CFG] = &qns_anoc_pcie_bridge_cfg, 2182 [SLAVE_DDRSS_CFG] = &qns_ddrss_cfg, 2183 [SLAVE_CNOC_MNOC_CFG] = &qns_mnoc_cfg, 2184 [SLAVE_SNOC_CFG] = &qns_snoc_cfg, 2185 [SLAVE_SNOC_SF_BRIDGE_CFG] = &qns_snoc_sf_bridge_cfg, 2186 [SLAVE_IMEM] = &qxs_imem, 2187 [SLAVE_PIMEM] = &qxs_pimem, 2188 [SLAVE_SERVICE_CNOC] = &srvc_cnoc, 2189 [SLAVE_PCIE_0] = &xs_pcie_0, 2190 [SLAVE_PCIE_1] = &xs_pcie_1, 2191 [SLAVE_PCIE_2A] = &xs_pcie_2a, 2192 [SLAVE_PCIE_2B] = &xs_pcie_2b, 2193 [SLAVE_PCIE_3A] = &xs_pcie_3a, 2194 [SLAVE_PCIE_3B] = &xs_pcie_3b, 2195 [SLAVE_PCIE_4] = &xs_pcie_4, 2196 [SLAVE_QDSS_STM] = &xs_qdss_stm, 2197 [SLAVE_SMSS] = &xs_smss, 2198 [SLAVE_TCU] = &xs_sys_tcu_cfg, 2199}; 2200 2201static const struct qcom_icc_desc sc8280xp_config_noc = { 2202 .nodes = config_noc_nodes, 2203 .num_nodes = ARRAY_SIZE(config_noc_nodes), 2204 .bcms = config_noc_bcms, 2205 .num_bcms = ARRAY_SIZE(config_noc_bcms), 2206}; 2207 2208static struct qcom_icc_bcm * const dc_noc_bcms[] = { 2209}; 2210 2211static struct qcom_icc_node * const dc_noc_nodes[] = { 2212 [MASTER_CNOC_DC_NOC] = &qnm_cnoc_dc_noc, 2213 [SLAVE_LLCC_CFG] = &qhs_llcc, 2214 [SLAVE_GEM_NOC_CFG] = &qns_gemnoc, 2215}; 2216 2217static const struct qcom_icc_desc sc8280xp_dc_noc = { 2218 .nodes = dc_noc_nodes, 2219 .num_nodes = ARRAY_SIZE(dc_noc_nodes), 2220 .bcms = dc_noc_bcms, 2221 .num_bcms = ARRAY_SIZE(dc_noc_bcms), 2222}; 2223 2224static struct qcom_icc_bcm * const gem_noc_bcms[] = { 2225 &bcm_sh0, 2226 &bcm_sh2, 2227}; 2228 2229static struct qcom_icc_node * const gem_noc_nodes[] = { 2230 [MASTER_GPU_TCU] = &alm_gpu_tcu, 2231 [MASTER_PCIE_TCU] = &alm_pcie_tcu, 2232 [MASTER_SYS_TCU] = &alm_sys_tcu, 2233 [MASTER_APPSS_PROC] = &chm_apps, 2234 [MASTER_COMPUTE_NOC] = &qnm_cmpnoc0, 2235 [MASTER_COMPUTE_NOC_1] = &qnm_cmpnoc1, 2236 [MASTER_GEM_NOC_CFG] = &qnm_gemnoc_cfg, 2237 [MASTER_GFX3D] = &qnm_gpu, 2238 [MASTER_MNOC_HF_MEM_NOC] = &qnm_mnoc_hf, 2239 [MASTER_MNOC_SF_MEM_NOC] = &qnm_mnoc_sf, 2240 [MASTER_ANOC_PCIE_GEM_NOC] = &qnm_pcie, 2241 [MASTER_SNOC_GC_MEM_NOC] = &qnm_snoc_gc, 2242 [MASTER_SNOC_SF_MEM_NOC] = &qnm_snoc_sf, 2243 [SLAVE_GEM_NOC_CNOC] = &qns_gem_noc_cnoc, 2244 [SLAVE_LLCC] = &qns_llcc, 2245 [SLAVE_GEM_NOC_PCIE_CNOC] = &qns_pcie, 2246 [SLAVE_SERVICE_GEM_NOC_1] = &srvc_even_gemnoc, 2247 [SLAVE_SERVICE_GEM_NOC_2] = &srvc_odd_gemnoc, 2248 [SLAVE_SERVICE_GEM_NOC] = &srvc_sys_gemnoc, 2249}; 2250 2251static const struct qcom_icc_desc sc8280xp_gem_noc = { 2252 .nodes = gem_noc_nodes, 2253 .num_nodes = ARRAY_SIZE(gem_noc_nodes), 2254 .bcms = gem_noc_bcms, 2255 .num_bcms = ARRAY_SIZE(gem_noc_bcms), 2256}; 2257 2258static struct qcom_icc_bcm * const lpass_ag_noc_bcms[] = { 2259 &bcm_sn9, 2260}; 2261 2262static struct qcom_icc_node * const lpass_ag_noc_nodes[] = { 2263 [MASTER_CNOC_LPASS_AG_NOC] = &qhm_config_noc, 2264 [MASTER_LPASS_PROC] = &qxm_lpass_dsp, 2265 [SLAVE_LPASS_CORE_CFG] = &qhs_lpass_core, 2266 [SLAVE_LPASS_LPI_CFG] = &qhs_lpass_lpi, 2267 [SLAVE_LPASS_MPU_CFG] = &qhs_lpass_mpu, 2268 [SLAVE_LPASS_TOP_CFG] = &qhs_lpass_top, 2269 [SLAVE_LPASS_SNOC] = &qns_sysnoc, 2270 [SLAVE_SERVICES_LPASS_AML_NOC] = &srvc_niu_aml_noc, 2271 [SLAVE_SERVICE_LPASS_AG_NOC] = &srvc_niu_lpass_agnoc, 2272}; 2273 2274static const struct qcom_icc_desc sc8280xp_lpass_ag_noc = { 2275 .nodes = lpass_ag_noc_nodes, 2276 .num_nodes = ARRAY_SIZE(lpass_ag_noc_nodes), 2277 .bcms = lpass_ag_noc_bcms, 2278 .num_bcms = ARRAY_SIZE(lpass_ag_noc_bcms), 2279}; 2280 2281static struct qcom_icc_bcm * const mc_virt_bcms[] = { 2282 &bcm_acv, 2283 &bcm_mc0, 2284}; 2285 2286static struct qcom_icc_node * const mc_virt_nodes[] = { 2287 [MASTER_LLCC] = &llcc_mc, 2288 [SLAVE_EBI1] = &ebi, 2289}; 2290 2291static const struct qcom_icc_desc sc8280xp_mc_virt = { 2292 .nodes = mc_virt_nodes, 2293 .num_nodes = ARRAY_SIZE(mc_virt_nodes), 2294 .bcms = mc_virt_bcms, 2295 .num_bcms = ARRAY_SIZE(mc_virt_bcms), 2296}; 2297 2298static struct qcom_icc_bcm * const mmss_noc_bcms[] = { 2299 &bcm_mm0, 2300 &bcm_mm1, 2301}; 2302 2303static struct qcom_icc_node * const mmss_noc_nodes[] = { 2304 [MASTER_CAMNOC_HF] = &qnm_camnoc_hf, 2305 [MASTER_MDP0] = &qnm_mdp0_0, 2306 [MASTER_MDP1] = &qnm_mdp0_1, 2307 [MASTER_MDP_CORE1_0] = &qnm_mdp1_0, 2308 [MASTER_MDP_CORE1_1] = &qnm_mdp1_1, 2309 [MASTER_CNOC_MNOC_CFG] = &qnm_mnoc_cfg, 2310 [MASTER_ROTATOR] = &qnm_rot_0, 2311 [MASTER_ROTATOR_1] = &qnm_rot_1, 2312 [MASTER_VIDEO_P0] = &qnm_video0, 2313 [MASTER_VIDEO_P1] = &qnm_video1, 2314 [MASTER_VIDEO_PROC] = &qnm_video_cvp, 2315 [MASTER_CAMNOC_ICP] = &qxm_camnoc_icp, 2316 [MASTER_CAMNOC_SF] = &qxm_camnoc_sf, 2317 [SLAVE_MNOC_HF_MEM_NOC] = &qns_mem_noc_hf, 2318 [SLAVE_MNOC_SF_MEM_NOC] = &qns_mem_noc_sf, 2319 [SLAVE_SERVICE_MNOC] = &srvc_mnoc, 2320}; 2321 2322static const struct qcom_icc_desc sc8280xp_mmss_noc = { 2323 .nodes = mmss_noc_nodes, 2324 .num_nodes = ARRAY_SIZE(mmss_noc_nodes), 2325 .bcms = mmss_noc_bcms, 2326 .num_bcms = ARRAY_SIZE(mmss_noc_bcms), 2327}; 2328 2329static struct qcom_icc_bcm * const nspa_noc_bcms[] = { 2330 &bcm_nsa0, 2331 &bcm_nsa1, 2332}; 2333 2334static struct qcom_icc_node * const nspa_noc_nodes[] = { 2335 [MASTER_CDSP_NOC_CFG] = &qhm_nsp_noc_config, 2336 [MASTER_CDSP_PROC] = &qxm_nsp, 2337 [SLAVE_CDSP_MEM_NOC] = &qns_nsp_gemnoc, 2338 [SLAVE_NSP_XFR] = &qxs_nsp_xfr, 2339 [SLAVE_SERVICE_NSP_NOC] = &service_nsp_noc, 2340}; 2341 2342static const struct qcom_icc_desc sc8280xp_nspa_noc = { 2343 .nodes = nspa_noc_nodes, 2344 .num_nodes = ARRAY_SIZE(nspa_noc_nodes), 2345 .bcms = nspa_noc_bcms, 2346 .num_bcms = ARRAY_SIZE(nspa_noc_bcms), 2347}; 2348 2349static struct qcom_icc_bcm * const nspb_noc_bcms[] = { 2350 &bcm_nsb0, 2351 &bcm_nsb1, 2352}; 2353 2354static struct qcom_icc_node * const nspb_noc_nodes[] = { 2355 [MASTER_CDSPB_NOC_CFG] = &qhm_nspb_noc_config, 2356 [MASTER_CDSP_PROC_B] = &qxm_nspb, 2357 [SLAVE_CDSPB_MEM_NOC] = &qns_nspb_gemnoc, 2358 [SLAVE_NSPB_XFR] = &qxs_nspb_xfr, 2359 [SLAVE_SERVICE_NSPB_NOC] = &service_nspb_noc, 2360}; 2361 2362static const struct qcom_icc_desc sc8280xp_nspb_noc = { 2363 .nodes = nspb_noc_nodes, 2364 .num_nodes = ARRAY_SIZE(nspb_noc_nodes), 2365 .bcms = nspb_noc_bcms, 2366 .num_bcms = ARRAY_SIZE(nspb_noc_bcms), 2367}; 2368 2369static struct qcom_icc_bcm * const system_noc_main_bcms[] = { 2370 &bcm_sn0, 2371 &bcm_sn1, 2372 &bcm_sn3, 2373 &bcm_sn4, 2374 &bcm_sn5, 2375 &bcm_sn9, 2376}; 2377 2378static struct qcom_icc_node * const system_noc_main_nodes[] = { 2379 [MASTER_A1NOC_SNOC] = &qnm_aggre1_noc, 2380 [MASTER_A2NOC_SNOC] = &qnm_aggre2_noc, 2381 [MASTER_USB_NOC_SNOC] = &qnm_aggre_usb_noc, 2382 [MASTER_LPASS_ANOC] = &qnm_lpass_noc, 2383 [MASTER_SNOC_CFG] = &qnm_snoc_cfg, 2384 [MASTER_PIMEM] = &qxm_pimem, 2385 [MASTER_GIC] = &xm_gic, 2386 [SLAVE_SNOC_GEM_NOC_GC] = &qns_gemnoc_gc, 2387 [SLAVE_SNOC_GEM_NOC_SF] = &qns_gemnoc_sf, 2388 [SLAVE_SERVICE_SNOC] = &srvc_snoc, 2389}; 2390 2391static const struct qcom_icc_desc sc8280xp_system_noc_main = { 2392 .nodes = system_noc_main_nodes, 2393 .num_nodes = ARRAY_SIZE(system_noc_main_nodes), 2394 .bcms = system_noc_main_bcms, 2395 .num_bcms = ARRAY_SIZE(system_noc_main_bcms), 2396}; 2397 2398static const struct of_device_id qnoc_of_match[] = { 2399 { .compatible = "qcom,sc8280xp-aggre1-noc", .data = &sc8280xp_aggre1_noc, }, 2400 { .compatible = "qcom,sc8280xp-aggre2-noc", .data = &sc8280xp_aggre2_noc, }, 2401 { .compatible = "qcom,sc8280xp-clk-virt", .data = &sc8280xp_clk_virt, }, 2402 { .compatible = "qcom,sc8280xp-config-noc", .data = &sc8280xp_config_noc, }, 2403 { .compatible = "qcom,sc8280xp-dc-noc", .data = &sc8280xp_dc_noc, }, 2404 { .compatible = "qcom,sc8280xp-gem-noc", .data = &sc8280xp_gem_noc, }, 2405 { .compatible = "qcom,sc8280xp-lpass-ag-noc", .data = &sc8280xp_lpass_ag_noc, }, 2406 { .compatible = "qcom,sc8280xp-mc-virt", .data = &sc8280xp_mc_virt, }, 2407 { .compatible = "qcom,sc8280xp-mmss-noc", .data = &sc8280xp_mmss_noc, }, 2408 { .compatible = "qcom,sc8280xp-nspa-noc", .data = &sc8280xp_nspa_noc, }, 2409 { .compatible = "qcom,sc8280xp-nspb-noc", .data = &sc8280xp_nspb_noc, }, 2410 { .compatible = "qcom,sc8280xp-system-noc", .data = &sc8280xp_system_noc_main, }, 2411 { } 2412}; 2413MODULE_DEVICE_TABLE(of, qnoc_of_match); 2414 2415static struct platform_driver qnoc_driver = { 2416 .probe = qcom_icc_rpmh_probe, 2417 .remove = qcom_icc_rpmh_remove, 2418 .driver = { 2419 .name = "qnoc-sc8280xp", 2420 .of_match_table = qnoc_of_match, 2421 .sync_state = icc_sync_state, 2422 }, 2423}; 2424 2425static int __init qnoc_driver_init(void) 2426{ 2427 return platform_driver_register(&qnoc_driver); 2428} 2429core_initcall(qnoc_driver_init); 2430 2431static void __exit qnoc_driver_exit(void) 2432{ 2433 platform_driver_unregister(&qnoc_driver); 2434} 2435module_exit(qnoc_driver_exit); 2436 2437MODULE_DESCRIPTION("Qualcomm SC8280XP NoC driver"); 2438MODULE_LICENSE("GPL");