1// SPDX-License-Identifier: GPL-2.0 2/* 3 * SDM845 SoC device tree source 4 * 5 * Copyright (c) 2018, The Linux Foundation. All rights reserved. 6 */ 7 8#include <dt-bindings/clock/qcom,camcc-sdm845.h> 9#include <dt-bindings/clock/qcom,dispcc-sdm845.h> 10#include <dt-bindings/clock/qcom,gcc-sdm845.h> 11#include <dt-bindings/clock/qcom,gpucc-sdm845.h> 12#include <dt-bindings/clock/qcom,lpass-sdm845.h> 13#include <dt-bindings/clock/qcom,rpmh.h> 14#include <dt-bindings/clock/qcom,videocc-sdm845.h> 15#include <dt-bindings/dma/qcom-gpi.h> 16#include <dt-bindings/firmware/qcom,scm.h> 17#include <dt-bindings/gpio/gpio.h> 18#include <dt-bindings/interconnect/qcom,icc.h> 19#include <dt-bindings/interconnect/qcom,osm-l3.h> 20#include <dt-bindings/interconnect/qcom,sdm845.h> 21#include <dt-bindings/interrupt-controller/arm-gic.h> 22#include <dt-bindings/phy/phy-qcom-qmp.h> 23#include <dt-bindings/phy/phy-qcom-qusb2.h> 24#include <dt-bindings/power/qcom-rpmpd.h> 25#include <dt-bindings/reset/qcom,sdm845-aoss.h> 26#include <dt-bindings/reset/qcom,sdm845-pdc.h> 27#include <dt-bindings/soc/qcom,apr.h> 28#include <dt-bindings/soc/qcom,rpmh-rsc.h> 29#include <dt-bindings/clock/qcom,gcc-sdm845.h> 30#include <dt-bindings/thermal/thermal.h> 31 32/ { 33 interrupt-parent = <&intc>; 34 35 #address-cells = <2>; 36 #size-cells = <2>; 37 38 aliases { 39 i2c0 = &i2c0; 40 i2c1 = &i2c1; 41 i2c2 = &i2c2; 42 i2c3 = &i2c3; 43 i2c4 = &i2c4; 44 i2c5 = &i2c5; 45 i2c6 = &i2c6; 46 i2c7 = &i2c7; 47 i2c8 = &i2c8; 48 i2c9 = &i2c9; 49 i2c10 = &i2c10; 50 i2c11 = &i2c11; 51 i2c12 = &i2c12; 52 i2c13 = &i2c13; 53 i2c14 = &i2c14; 54 i2c15 = &i2c15; 55 spi0 = &spi0; 56 spi1 = &spi1; 57 spi2 = &spi2; 58 spi3 = &spi3; 59 spi4 = &spi4; 60 spi5 = &spi5; 61 spi6 = &spi6; 62 spi7 = &spi7; 63 spi8 = &spi8; 64 spi9 = &spi9; 65 spi10 = &spi10; 66 spi11 = &spi11; 67 spi12 = &spi12; 68 spi13 = &spi13; 69 spi14 = &spi14; 70 spi15 = &spi15; 71 }; 72 73 chosen { }; 74 75 clocks { 76 xo_board: xo-board { 77 compatible = "fixed-clock"; 78 #clock-cells = <0>; 79 clock-frequency = <38400000>; 80 clock-output-names = "xo_board"; 81 }; 82 83 sleep_clk: sleep-clk { 84 compatible = "fixed-clock"; 85 #clock-cells = <0>; 86 clock-frequency = <32764>; 87 }; 88 }; 89 90 cpus: cpus { 91 #address-cells = <2>; 92 #size-cells = <0>; 93 94 cpu0: cpu@0 { 95 device_type = "cpu"; 96 compatible = "qcom,kryo385"; 97 reg = <0x0 0x0>; 98 clocks = <&cpufreq_hw 0>; 99 enable-method = "psci"; 100 capacity-dmips-mhz = <611>; 101 dynamic-power-coefficient = <154>; 102 qcom,freq-domain = <&cpufreq_hw 0>; 103 operating-points-v2 = <&cpu0_opp_table>; 104 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 105 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 106 power-domains = <&cpu_pd0>; 107 power-domain-names = "psci"; 108 #cooling-cells = <2>; 109 next-level-cache = <&l2_0>; 110 l2_0: l2-cache { 111 compatible = "cache"; 112 cache-level = <2>; 113 cache-unified; 114 next-level-cache = <&l3_0>; 115 l3_0: l3-cache { 116 compatible = "cache"; 117 cache-level = <3>; 118 cache-unified; 119 }; 120 }; 121 }; 122 123 cpu1: cpu@100 { 124 device_type = "cpu"; 125 compatible = "qcom,kryo385"; 126 reg = <0x0 0x100>; 127 clocks = <&cpufreq_hw 0>; 128 enable-method = "psci"; 129 capacity-dmips-mhz = <611>; 130 dynamic-power-coefficient = <154>; 131 qcom,freq-domain = <&cpufreq_hw 0>; 132 operating-points-v2 = <&cpu0_opp_table>; 133 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 134 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 135 power-domains = <&cpu_pd1>; 136 power-domain-names = "psci"; 137 #cooling-cells = <2>; 138 next-level-cache = <&l2_100>; 139 l2_100: l2-cache { 140 compatible = "cache"; 141 cache-level = <2>; 142 cache-unified; 143 next-level-cache = <&l3_0>; 144 }; 145 }; 146 147 cpu2: cpu@200 { 148 device_type = "cpu"; 149 compatible = "qcom,kryo385"; 150 reg = <0x0 0x200>; 151 clocks = <&cpufreq_hw 0>; 152 enable-method = "psci"; 153 capacity-dmips-mhz = <611>; 154 dynamic-power-coefficient = <154>; 155 qcom,freq-domain = <&cpufreq_hw 0>; 156 operating-points-v2 = <&cpu0_opp_table>; 157 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 158 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 159 power-domains = <&cpu_pd2>; 160 power-domain-names = "psci"; 161 #cooling-cells = <2>; 162 next-level-cache = <&l2_200>; 163 l2_200: l2-cache { 164 compatible = "cache"; 165 cache-level = <2>; 166 cache-unified; 167 next-level-cache = <&l3_0>; 168 }; 169 }; 170 171 cpu3: cpu@300 { 172 device_type = "cpu"; 173 compatible = "qcom,kryo385"; 174 reg = <0x0 0x300>; 175 clocks = <&cpufreq_hw 0>; 176 enable-method = "psci"; 177 capacity-dmips-mhz = <611>; 178 dynamic-power-coefficient = <154>; 179 qcom,freq-domain = <&cpufreq_hw 0>; 180 operating-points-v2 = <&cpu0_opp_table>; 181 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 182 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 183 #cooling-cells = <2>; 184 power-domains = <&cpu_pd3>; 185 power-domain-names = "psci"; 186 next-level-cache = <&l2_300>; 187 l2_300: l2-cache { 188 compatible = "cache"; 189 cache-level = <2>; 190 cache-unified; 191 next-level-cache = <&l3_0>; 192 }; 193 }; 194 195 cpu4: cpu@400 { 196 device_type = "cpu"; 197 compatible = "qcom,kryo385"; 198 reg = <0x0 0x400>; 199 clocks = <&cpufreq_hw 1>; 200 enable-method = "psci"; 201 capacity-dmips-mhz = <1024>; 202 dynamic-power-coefficient = <442>; 203 qcom,freq-domain = <&cpufreq_hw 1>; 204 operating-points-v2 = <&cpu4_opp_table>; 205 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 206 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 207 power-domains = <&cpu_pd4>; 208 power-domain-names = "psci"; 209 #cooling-cells = <2>; 210 next-level-cache = <&l2_400>; 211 l2_400: l2-cache { 212 compatible = "cache"; 213 cache-level = <2>; 214 cache-unified; 215 next-level-cache = <&l3_0>; 216 }; 217 }; 218 219 cpu5: cpu@500 { 220 device_type = "cpu"; 221 compatible = "qcom,kryo385"; 222 reg = <0x0 0x500>; 223 clocks = <&cpufreq_hw 1>; 224 enable-method = "psci"; 225 capacity-dmips-mhz = <1024>; 226 dynamic-power-coefficient = <442>; 227 qcom,freq-domain = <&cpufreq_hw 1>; 228 operating-points-v2 = <&cpu4_opp_table>; 229 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 230 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 231 power-domains = <&cpu_pd5>; 232 power-domain-names = "psci"; 233 #cooling-cells = <2>; 234 next-level-cache = <&l2_500>; 235 l2_500: l2-cache { 236 compatible = "cache"; 237 cache-level = <2>; 238 cache-unified; 239 next-level-cache = <&l3_0>; 240 }; 241 }; 242 243 cpu6: cpu@600 { 244 device_type = "cpu"; 245 compatible = "qcom,kryo385"; 246 reg = <0x0 0x600>; 247 clocks = <&cpufreq_hw 1>; 248 enable-method = "psci"; 249 capacity-dmips-mhz = <1024>; 250 dynamic-power-coefficient = <442>; 251 qcom,freq-domain = <&cpufreq_hw 1>; 252 operating-points-v2 = <&cpu4_opp_table>; 253 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 254 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 255 power-domains = <&cpu_pd6>; 256 power-domain-names = "psci"; 257 #cooling-cells = <2>; 258 next-level-cache = <&l2_600>; 259 l2_600: l2-cache { 260 compatible = "cache"; 261 cache-level = <2>; 262 cache-unified; 263 next-level-cache = <&l3_0>; 264 }; 265 }; 266 267 cpu7: cpu@700 { 268 device_type = "cpu"; 269 compatible = "qcom,kryo385"; 270 reg = <0x0 0x700>; 271 clocks = <&cpufreq_hw 1>; 272 enable-method = "psci"; 273 capacity-dmips-mhz = <1024>; 274 dynamic-power-coefficient = <442>; 275 qcom,freq-domain = <&cpufreq_hw 1>; 276 operating-points-v2 = <&cpu4_opp_table>; 277 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_EBI1 3>, 278 <&osm_l3 MASTER_OSM_L3_APPS &osm_l3 SLAVE_OSM_L3>; 279 power-domains = <&cpu_pd7>; 280 power-domain-names = "psci"; 281 #cooling-cells = <2>; 282 next-level-cache = <&l2_700>; 283 l2_700: l2-cache { 284 compatible = "cache"; 285 cache-level = <2>; 286 cache-unified; 287 next-level-cache = <&l3_0>; 288 }; 289 }; 290 291 cpu-map { 292 cluster0 { 293 core0 { 294 cpu = <&cpu0>; 295 }; 296 297 core1 { 298 cpu = <&cpu1>; 299 }; 300 301 core2 { 302 cpu = <&cpu2>; 303 }; 304 305 core3 { 306 cpu = <&cpu3>; 307 }; 308 309 core4 { 310 cpu = <&cpu4>; 311 }; 312 313 core5 { 314 cpu = <&cpu5>; 315 }; 316 317 core6 { 318 cpu = <&cpu6>; 319 }; 320 321 core7 { 322 cpu = <&cpu7>; 323 }; 324 }; 325 }; 326 327 cpu_idle_states: idle-states { 328 entry-method = "psci"; 329 330 little_cpu_sleep_0: cpu-sleep-0-0 { 331 compatible = "arm,idle-state"; 332 idle-state-name = "little-rail-power-collapse"; 333 arm,psci-suspend-param = <0x40000004>; 334 entry-latency-us = <350>; 335 exit-latency-us = <461>; 336 min-residency-us = <1890>; 337 local-timer-stop; 338 }; 339 340 big_cpu_sleep_0: cpu-sleep-1-0 { 341 compatible = "arm,idle-state"; 342 idle-state-name = "big-rail-power-collapse"; 343 arm,psci-suspend-param = <0x40000004>; 344 entry-latency-us = <264>; 345 exit-latency-us = <621>; 346 min-residency-us = <952>; 347 local-timer-stop; 348 }; 349 }; 350 351 domain-idle-states { 352 cluster_sleep_0: cluster-sleep-0 { 353 compatible = "domain-idle-state"; 354 arm,psci-suspend-param = <0x4100c244>; 355 entry-latency-us = <3263>; 356 exit-latency-us = <6562>; 357 min-residency-us = <9987>; 358 }; 359 }; 360 }; 361 362 firmware { 363 scm { 364 compatible = "qcom,scm-sdm845", "qcom,scm"; 365 }; 366 }; 367 368 memory@80000000 { 369 device_type = "memory"; 370 /* We expect the bootloader to fill in the size */ 371 reg = <0 0x80000000 0 0>; 372 }; 373 374 cpu0_opp_table: opp-table-cpu0 { 375 compatible = "operating-points-v2"; 376 opp-shared; 377 378 cpu0_opp1: opp-300000000 { 379 opp-hz = /bits/ 64 <300000000>; 380 opp-peak-kBps = <800000 4800000>; 381 }; 382 383 cpu0_opp2: opp-403200000 { 384 opp-hz = /bits/ 64 <403200000>; 385 opp-peak-kBps = <800000 4800000>; 386 }; 387 388 cpu0_opp3: opp-480000000 { 389 opp-hz = /bits/ 64 <480000000>; 390 opp-peak-kBps = <800000 6451200>; 391 }; 392 393 cpu0_opp4: opp-576000000 { 394 opp-hz = /bits/ 64 <576000000>; 395 opp-peak-kBps = <800000 6451200>; 396 }; 397 398 cpu0_opp5: opp-652800000 { 399 opp-hz = /bits/ 64 <652800000>; 400 opp-peak-kBps = <800000 7680000>; 401 }; 402 403 cpu0_opp6: opp-748800000 { 404 opp-hz = /bits/ 64 <748800000>; 405 opp-peak-kBps = <1804000 9216000>; 406 }; 407 408 cpu0_opp7: opp-825600000 { 409 opp-hz = /bits/ 64 <825600000>; 410 opp-peak-kBps = <1804000 9216000>; 411 }; 412 413 cpu0_opp8: opp-902400000 { 414 opp-hz = /bits/ 64 <902400000>; 415 opp-peak-kBps = <1804000 10444800>; 416 }; 417 418 cpu0_opp9: opp-979200000 { 419 opp-hz = /bits/ 64 <979200000>; 420 opp-peak-kBps = <1804000 11980800>; 421 }; 422 423 cpu0_opp10: opp-1056000000 { 424 opp-hz = /bits/ 64 <1056000000>; 425 opp-peak-kBps = <1804000 11980800>; 426 }; 427 428 cpu0_opp11: opp-1132800000 { 429 opp-hz = /bits/ 64 <1132800000>; 430 opp-peak-kBps = <2188000 13516800>; 431 }; 432 433 cpu0_opp12: opp-1228800000 { 434 opp-hz = /bits/ 64 <1228800000>; 435 opp-peak-kBps = <2188000 15052800>; 436 }; 437 438 cpu0_opp13: opp-1324800000 { 439 opp-hz = /bits/ 64 <1324800000>; 440 opp-peak-kBps = <2188000 16588800>; 441 }; 442 443 cpu0_opp14: opp-1420800000 { 444 opp-hz = /bits/ 64 <1420800000>; 445 opp-peak-kBps = <3072000 18124800>; 446 }; 447 448 cpu0_opp15: opp-1516800000 { 449 opp-hz = /bits/ 64 <1516800000>; 450 opp-peak-kBps = <3072000 19353600>; 451 }; 452 453 cpu0_opp16: opp-1612800000 { 454 opp-hz = /bits/ 64 <1612800000>; 455 opp-peak-kBps = <4068000 19353600>; 456 }; 457 458 cpu0_opp17: opp-1689600000 { 459 opp-hz = /bits/ 64 <1689600000>; 460 opp-peak-kBps = <4068000 20889600>; 461 }; 462 463 cpu0_opp18: opp-1766400000 { 464 opp-hz = /bits/ 64 <1766400000>; 465 opp-peak-kBps = <4068000 22425600>; 466 }; 467 }; 468 469 cpu4_opp_table: opp-table-cpu4 { 470 compatible = "operating-points-v2"; 471 opp-shared; 472 473 cpu4_opp1: opp-300000000 { 474 opp-hz = /bits/ 64 <300000000>; 475 opp-peak-kBps = <800000 4800000>; 476 }; 477 478 cpu4_opp2: opp-403200000 { 479 opp-hz = /bits/ 64 <403200000>; 480 opp-peak-kBps = <800000 4800000>; 481 }; 482 483 cpu4_opp3: opp-480000000 { 484 opp-hz = /bits/ 64 <480000000>; 485 opp-peak-kBps = <1804000 4800000>; 486 }; 487 488 cpu4_opp4: opp-576000000 { 489 opp-hz = /bits/ 64 <576000000>; 490 opp-peak-kBps = <1804000 4800000>; 491 }; 492 493 cpu4_opp5: opp-652800000 { 494 opp-hz = /bits/ 64 <652800000>; 495 opp-peak-kBps = <1804000 4800000>; 496 }; 497 498 cpu4_opp6: opp-748800000 { 499 opp-hz = /bits/ 64 <748800000>; 500 opp-peak-kBps = <1804000 4800000>; 501 }; 502 503 cpu4_opp7: opp-825600000 { 504 opp-hz = /bits/ 64 <825600000>; 505 opp-peak-kBps = <2188000 9216000>; 506 }; 507 508 cpu4_opp8: opp-902400000 { 509 opp-hz = /bits/ 64 <902400000>; 510 opp-peak-kBps = <2188000 9216000>; 511 }; 512 513 cpu4_opp9: opp-979200000 { 514 opp-hz = /bits/ 64 <979200000>; 515 opp-peak-kBps = <2188000 9216000>; 516 }; 517 518 cpu4_opp10: opp-1056000000 { 519 opp-hz = /bits/ 64 <1056000000>; 520 opp-peak-kBps = <3072000 9216000>; 521 }; 522 523 cpu4_opp11: opp-1132800000 { 524 opp-hz = /bits/ 64 <1132800000>; 525 opp-peak-kBps = <3072000 11980800>; 526 }; 527 528 cpu4_opp12: opp-1209600000 { 529 opp-hz = /bits/ 64 <1209600000>; 530 opp-peak-kBps = <4068000 11980800>; 531 }; 532 533 cpu4_opp13: opp-1286400000 { 534 opp-hz = /bits/ 64 <1286400000>; 535 opp-peak-kBps = <4068000 11980800>; 536 }; 537 538 cpu4_opp14: opp-1363200000 { 539 opp-hz = /bits/ 64 <1363200000>; 540 opp-peak-kBps = <4068000 15052800>; 541 }; 542 543 cpu4_opp15: opp-1459200000 { 544 opp-hz = /bits/ 64 <1459200000>; 545 opp-peak-kBps = <4068000 15052800>; 546 }; 547 548 cpu4_opp16: opp-1536000000 { 549 opp-hz = /bits/ 64 <1536000000>; 550 opp-peak-kBps = <5412000 15052800>; 551 }; 552 553 cpu4_opp17: opp-1612800000 { 554 opp-hz = /bits/ 64 <1612800000>; 555 opp-peak-kBps = <5412000 15052800>; 556 }; 557 558 cpu4_opp18: opp-1689600000 { 559 opp-hz = /bits/ 64 <1689600000>; 560 opp-peak-kBps = <5412000 19353600>; 561 }; 562 563 cpu4_opp19: opp-1766400000 { 564 opp-hz = /bits/ 64 <1766400000>; 565 opp-peak-kBps = <6220000 19353600>; 566 }; 567 568 cpu4_opp20: opp-1843200000 { 569 opp-hz = /bits/ 64 <1843200000>; 570 opp-peak-kBps = <6220000 19353600>; 571 }; 572 573 cpu4_opp21: opp-1920000000 { 574 opp-hz = /bits/ 64 <1920000000>; 575 opp-peak-kBps = <7216000 19353600>; 576 }; 577 578 cpu4_opp22: opp-1996800000 { 579 opp-hz = /bits/ 64 <1996800000>; 580 opp-peak-kBps = <7216000 20889600>; 581 }; 582 583 cpu4_opp23: opp-2092800000 { 584 opp-hz = /bits/ 64 <2092800000>; 585 opp-peak-kBps = <7216000 20889600>; 586 }; 587 588 cpu4_opp24: opp-2169600000 { 589 opp-hz = /bits/ 64 <2169600000>; 590 opp-peak-kBps = <7216000 20889600>; 591 }; 592 593 cpu4_opp25: opp-2246400000 { 594 opp-hz = /bits/ 64 <2246400000>; 595 opp-peak-kBps = <7216000 20889600>; 596 }; 597 598 cpu4_opp26: opp-2323200000 { 599 opp-hz = /bits/ 64 <2323200000>; 600 opp-peak-kBps = <7216000 20889600>; 601 }; 602 603 cpu4_opp27: opp-2400000000 { 604 opp-hz = /bits/ 64 <2400000000>; 605 opp-peak-kBps = <7216000 22425600>; 606 }; 607 608 cpu4_opp28: opp-2476800000 { 609 opp-hz = /bits/ 64 <2476800000>; 610 opp-peak-kBps = <7216000 22425600>; 611 }; 612 613 cpu4_opp29: opp-2553600000 { 614 opp-hz = /bits/ 64 <2553600000>; 615 opp-peak-kBps = <7216000 22425600>; 616 }; 617 618 cpu4_opp30: opp-2649600000 { 619 opp-hz = /bits/ 64 <2649600000>; 620 opp-peak-kBps = <7216000 22425600>; 621 }; 622 623 cpu4_opp31: opp-2745600000 { 624 opp-hz = /bits/ 64 <2745600000>; 625 opp-peak-kBps = <7216000 25497600>; 626 }; 627 628 cpu4_opp32: opp-2803200000 { 629 opp-hz = /bits/ 64 <2803200000>; 630 opp-peak-kBps = <7216000 25497600>; 631 }; 632 }; 633 634 dsi_opp_table: opp-table-dsi { 635 compatible = "operating-points-v2"; 636 637 opp-19200000 { 638 opp-hz = /bits/ 64 <19200000>; 639 required-opps = <&rpmhpd_opp_min_svs>; 640 }; 641 642 opp-180000000 { 643 opp-hz = /bits/ 64 <180000000>; 644 required-opps = <&rpmhpd_opp_low_svs>; 645 }; 646 647 opp-275000000 { 648 opp-hz = /bits/ 64 <275000000>; 649 required-opps = <&rpmhpd_opp_svs>; 650 }; 651 652 opp-328580000 { 653 opp-hz = /bits/ 64 <328580000>; 654 required-opps = <&rpmhpd_opp_svs_l1>; 655 }; 656 657 opp-358000000 { 658 opp-hz = /bits/ 64 <358000000>; 659 required-opps = <&rpmhpd_opp_nom>; 660 }; 661 }; 662 663 qspi_opp_table: opp-table-qspi { 664 compatible = "operating-points-v2"; 665 666 opp-19200000 { 667 opp-hz = /bits/ 64 <19200000>; 668 required-opps = <&rpmhpd_opp_min_svs>; 669 }; 670 671 opp-100000000 { 672 opp-hz = /bits/ 64 <100000000>; 673 required-opps = <&rpmhpd_opp_low_svs>; 674 }; 675 676 opp-150000000 { 677 opp-hz = /bits/ 64 <150000000>; 678 required-opps = <&rpmhpd_opp_svs>; 679 }; 680 681 opp-300000000 { 682 opp-hz = /bits/ 64 <300000000>; 683 required-opps = <&rpmhpd_opp_nom>; 684 }; 685 }; 686 687 qup_opp_table: opp-table-qup { 688 compatible = "operating-points-v2"; 689 690 opp-50000000 { 691 opp-hz = /bits/ 64 <50000000>; 692 required-opps = <&rpmhpd_opp_min_svs>; 693 }; 694 695 opp-75000000 { 696 opp-hz = /bits/ 64 <75000000>; 697 required-opps = <&rpmhpd_opp_low_svs>; 698 }; 699 700 opp-100000000 { 701 opp-hz = /bits/ 64 <100000000>; 702 required-opps = <&rpmhpd_opp_svs>; 703 }; 704 705 opp-128000000 { 706 opp-hz = /bits/ 64 <128000000>; 707 required-opps = <&rpmhpd_opp_nom>; 708 }; 709 }; 710 711 pmu { 712 compatible = "arm,armv8-pmuv3"; 713 interrupts = <GIC_PPI 5 IRQ_TYPE_LEVEL_HIGH>; 714 }; 715 716 psci: psci { 717 compatible = "arm,psci-1.0"; 718 method = "smc"; 719 720 cpu_pd0: power-domain-cpu0 { 721 #power-domain-cells = <0>; 722 power-domains = <&cluster_pd>; 723 domain-idle-states = <&little_cpu_sleep_0>; 724 }; 725 726 cpu_pd1: power-domain-cpu1 { 727 #power-domain-cells = <0>; 728 power-domains = <&cluster_pd>; 729 domain-idle-states = <&little_cpu_sleep_0>; 730 }; 731 732 cpu_pd2: power-domain-cpu2 { 733 #power-domain-cells = <0>; 734 power-domains = <&cluster_pd>; 735 domain-idle-states = <&little_cpu_sleep_0>; 736 }; 737 738 cpu_pd3: power-domain-cpu3 { 739 #power-domain-cells = <0>; 740 power-domains = <&cluster_pd>; 741 domain-idle-states = <&little_cpu_sleep_0>; 742 }; 743 744 cpu_pd4: power-domain-cpu4 { 745 #power-domain-cells = <0>; 746 power-domains = <&cluster_pd>; 747 domain-idle-states = <&big_cpu_sleep_0>; 748 }; 749 750 cpu_pd5: power-domain-cpu5 { 751 #power-domain-cells = <0>; 752 power-domains = <&cluster_pd>; 753 domain-idle-states = <&big_cpu_sleep_0>; 754 }; 755 756 cpu_pd6: power-domain-cpu6 { 757 #power-domain-cells = <0>; 758 power-domains = <&cluster_pd>; 759 domain-idle-states = <&big_cpu_sleep_0>; 760 }; 761 762 cpu_pd7: power-domain-cpu7 { 763 #power-domain-cells = <0>; 764 power-domains = <&cluster_pd>; 765 domain-idle-states = <&big_cpu_sleep_0>; 766 }; 767 768 cluster_pd: power-domain-cluster { 769 #power-domain-cells = <0>; 770 domain-idle-states = <&cluster_sleep_0>; 771 }; 772 }; 773 774 reserved-memory { 775 #address-cells = <2>; 776 #size-cells = <2>; 777 ranges; 778 779 hyp_mem: hyp-mem@85700000 { 780 reg = <0 0x85700000 0 0x600000>; 781 no-map; 782 }; 783 784 xbl_mem: xbl-mem@85e00000 { 785 reg = <0 0x85e00000 0 0x100000>; 786 no-map; 787 }; 788 789 aop_mem: aop-mem@85fc0000 { 790 reg = <0 0x85fc0000 0 0x20000>; 791 no-map; 792 }; 793 794 aop_cmd_db_mem: aop-cmd-db-mem@85fe0000 { 795 compatible = "qcom,cmd-db"; 796 reg = <0x0 0x85fe0000 0 0x20000>; 797 no-map; 798 }; 799 800 smem@86000000 { 801 compatible = "qcom,smem"; 802 reg = <0x0 0x86000000 0 0x200000>; 803 no-map; 804 hwlocks = <&tcsr_mutex 3>; 805 }; 806 807 tz_mem: tz@86200000 { 808 reg = <0 0x86200000 0 0x2d00000>; 809 no-map; 810 }; 811 812 rmtfs_mem: rmtfs@88f00000 { 813 compatible = "qcom,rmtfs-mem"; 814 reg = <0 0x88f00000 0 0x200000>; 815 no-map; 816 817 qcom,client-id = <1>; 818 qcom,vmid = <QCOM_SCM_VMID_MSS_MSA>; 819 }; 820 821 qseecom_mem: qseecom@8ab00000 { 822 reg = <0 0x8ab00000 0 0x1400000>; 823 no-map; 824 }; 825 826 camera_mem: camera-mem@8bf00000 { 827 reg = <0 0x8bf00000 0 0x500000>; 828 no-map; 829 }; 830 831 ipa_fw_mem: ipa-fw@8c400000 { 832 reg = <0 0x8c400000 0 0x10000>; 833 no-map; 834 }; 835 836 ipa_gsi_mem: ipa-gsi@8c410000 { 837 reg = <0 0x8c410000 0 0x5000>; 838 no-map; 839 }; 840 841 gpu_mem: gpu@8c415000 { 842 reg = <0 0x8c415000 0 0x2000>; 843 no-map; 844 }; 845 846 adsp_mem: adsp@8c500000 { 847 reg = <0 0x8c500000 0 0x1a00000>; 848 no-map; 849 }; 850 851 wlan_msa_mem: wlan-msa@8df00000 { 852 reg = <0 0x8df00000 0 0x100000>; 853 no-map; 854 }; 855 856 mpss_region: mpss@8e000000 { 857 reg = <0 0x8e000000 0 0x7800000>; 858 no-map; 859 }; 860 861 venus_mem: venus@95800000 { 862 reg = <0 0x95800000 0 0x500000>; 863 no-map; 864 }; 865 866 cdsp_mem: cdsp@95d00000 { 867 reg = <0 0x95d00000 0 0x800000>; 868 no-map; 869 }; 870 871 mba_region: mba@96500000 { 872 reg = <0 0x96500000 0 0x200000>; 873 no-map; 874 }; 875 876 slpi_mem: slpi@96700000 { 877 reg = <0 0x96700000 0 0x1400000>; 878 no-map; 879 }; 880 881 spss_mem: spss@97b00000 { 882 reg = <0 0x97b00000 0 0x100000>; 883 no-map; 884 }; 885 886 mdata_mem: mpss-metadata { 887 alloc-ranges = <0 0xa0000000 0 0x20000000>; 888 size = <0 0x4000>; 889 no-map; 890 }; 891 892 fastrpc_mem: fastrpc { 893 compatible = "shared-dma-pool"; 894 alloc-ranges = <0x0 0x00000000 0x0 0xffffffff>; 895 alignment = <0x0 0x400000>; 896 size = <0x0 0x1000000>; 897 reusable; 898 }; 899 }; 900 901 adsp_pas: remoteproc-adsp { 902 compatible = "qcom,sdm845-adsp-pas"; 903 904 interrupts-extended = <&intc GIC_SPI 162 IRQ_TYPE_EDGE_RISING>, 905 <&adsp_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 906 <&adsp_smp2p_in 1 IRQ_TYPE_EDGE_RISING>, 907 <&adsp_smp2p_in 2 IRQ_TYPE_EDGE_RISING>, 908 <&adsp_smp2p_in 3 IRQ_TYPE_EDGE_RISING>; 909 interrupt-names = "wdog", "fatal", "ready", 910 "handover", "stop-ack"; 911 912 clocks = <&rpmhcc RPMH_CXO_CLK>; 913 clock-names = "xo"; 914 915 memory-region = <&adsp_mem>; 916 917 qcom,qmp = <&aoss_qmp>; 918 919 qcom,smem-states = <&adsp_smp2p_out 0>; 920 qcom,smem-state-names = "stop"; 921 922 status = "disabled"; 923 924 glink-edge { 925 interrupts = <GIC_SPI 156 IRQ_TYPE_EDGE_RISING>; 926 label = "lpass"; 927 qcom,remote-pid = <2>; 928 mboxes = <&apss_shared 8>; 929 930 apr { 931 compatible = "qcom,apr-v2"; 932 qcom,glink-channels = "apr_audio_svc"; 933 qcom,domain = <APR_DOMAIN_ADSP>; 934 #address-cells = <1>; 935 #size-cells = <0>; 936 qcom,intents = <512 20>; 937 938 service@3 { 939 reg = <APR_SVC_ADSP_CORE>; 940 compatible = "qcom,q6core"; 941 qcom,protection-domain = "avs/audio", "msm/adsp/audio_pd"; 942 }; 943 944 q6afe: service@4 { 945 compatible = "qcom,q6afe"; 946 reg = <APR_SVC_AFE>; 947 qcom,protection-domain = "avs/audio", "msm/adsp/audio_pd"; 948 q6afedai: dais { 949 compatible = "qcom,q6afe-dais"; 950 #address-cells = <1>; 951 #size-cells = <0>; 952 #sound-dai-cells = <1>; 953 }; 954 }; 955 956 q6asm: service@7 { 957 compatible = "qcom,q6asm"; 958 reg = <APR_SVC_ASM>; 959 qcom,protection-domain = "avs/audio", "msm/adsp/audio_pd"; 960 q6asmdai: dais { 961 compatible = "qcom,q6asm-dais"; 962 #address-cells = <1>; 963 #size-cells = <0>; 964 #sound-dai-cells = <1>; 965 iommus = <&apps_smmu 0x1821 0x0>; 966 }; 967 }; 968 969 q6adm: service@8 { 970 compatible = "qcom,q6adm"; 971 reg = <APR_SVC_ADM>; 972 qcom,protection-domain = "avs/audio", "msm/adsp/audio_pd"; 973 q6routing: routing { 974 compatible = "qcom,q6adm-routing"; 975 #sound-dai-cells = <0>; 976 }; 977 }; 978 }; 979 980 fastrpc { 981 compatible = "qcom,fastrpc"; 982 qcom,glink-channels = "fastrpcglink-apps-dsp"; 983 label = "adsp"; 984 qcom,non-secure-domain; 985 #address-cells = <1>; 986 #size-cells = <0>; 987 988 compute-cb@3 { 989 compatible = "qcom,fastrpc-compute-cb"; 990 reg = <3>; 991 iommus = <&apps_smmu 0x1823 0x0>; 992 }; 993 994 compute-cb@4 { 995 compatible = "qcom,fastrpc-compute-cb"; 996 reg = <4>; 997 iommus = <&apps_smmu 0x1824 0x0>; 998 }; 999 }; 1000 }; 1001 }; 1002 1003 cdsp_pas: remoteproc-cdsp { 1004 compatible = "qcom,sdm845-cdsp-pas"; 1005 1006 interrupts-extended = <&intc GIC_SPI 578 IRQ_TYPE_EDGE_RISING>, 1007 <&cdsp_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 1008 <&cdsp_smp2p_in 1 IRQ_TYPE_EDGE_RISING>, 1009 <&cdsp_smp2p_in 2 IRQ_TYPE_EDGE_RISING>, 1010 <&cdsp_smp2p_in 3 IRQ_TYPE_EDGE_RISING>; 1011 interrupt-names = "wdog", "fatal", "ready", 1012 "handover", "stop-ack"; 1013 1014 clocks = <&rpmhcc RPMH_CXO_CLK>; 1015 clock-names = "xo"; 1016 1017 memory-region = <&cdsp_mem>; 1018 1019 qcom,qmp = <&aoss_qmp>; 1020 1021 qcom,smem-states = <&cdsp_smp2p_out 0>; 1022 qcom,smem-state-names = "stop"; 1023 1024 status = "disabled"; 1025 1026 glink-edge { 1027 interrupts = <GIC_SPI 574 IRQ_TYPE_EDGE_RISING>; 1028 label = "turing"; 1029 qcom,remote-pid = <5>; 1030 mboxes = <&apss_shared 4>; 1031 fastrpc { 1032 compatible = "qcom,fastrpc"; 1033 qcom,glink-channels = "fastrpcglink-apps-dsp"; 1034 label = "cdsp"; 1035 qcom,non-secure-domain; 1036 #address-cells = <1>; 1037 #size-cells = <0>; 1038 1039 compute-cb@1 { 1040 compatible = "qcom,fastrpc-compute-cb"; 1041 reg = <1>; 1042 iommus = <&apps_smmu 0x1401 0x30>; 1043 }; 1044 1045 compute-cb@2 { 1046 compatible = "qcom,fastrpc-compute-cb"; 1047 reg = <2>; 1048 iommus = <&apps_smmu 0x1402 0x30>; 1049 }; 1050 1051 compute-cb@3 { 1052 compatible = "qcom,fastrpc-compute-cb"; 1053 reg = <3>; 1054 iommus = <&apps_smmu 0x1403 0x30>; 1055 }; 1056 1057 compute-cb@4 { 1058 compatible = "qcom,fastrpc-compute-cb"; 1059 reg = <4>; 1060 iommus = <&apps_smmu 0x1404 0x30>; 1061 }; 1062 1063 compute-cb@5 { 1064 compatible = "qcom,fastrpc-compute-cb"; 1065 reg = <5>; 1066 iommus = <&apps_smmu 0x1405 0x30>; 1067 }; 1068 1069 compute-cb@6 { 1070 compatible = "qcom,fastrpc-compute-cb"; 1071 reg = <6>; 1072 iommus = <&apps_smmu 0x1406 0x30>; 1073 }; 1074 1075 compute-cb@7 { 1076 compatible = "qcom,fastrpc-compute-cb"; 1077 reg = <7>; 1078 iommus = <&apps_smmu 0x1407 0x30>; 1079 }; 1080 1081 compute-cb@8 { 1082 compatible = "qcom,fastrpc-compute-cb"; 1083 reg = <8>; 1084 iommus = <&apps_smmu 0x1408 0x30>; 1085 }; 1086 }; 1087 }; 1088 }; 1089 1090 smp2p-cdsp { 1091 compatible = "qcom,smp2p"; 1092 qcom,smem = <94>, <432>; 1093 1094 interrupts = <GIC_SPI 576 IRQ_TYPE_EDGE_RISING>; 1095 1096 mboxes = <&apss_shared 6>; 1097 1098 qcom,local-pid = <0>; 1099 qcom,remote-pid = <5>; 1100 1101 cdsp_smp2p_out: master-kernel { 1102 qcom,entry-name = "master-kernel"; 1103 #qcom,smem-state-cells = <1>; 1104 }; 1105 1106 cdsp_smp2p_in: slave-kernel { 1107 qcom,entry-name = "slave-kernel"; 1108 1109 interrupt-controller; 1110 #interrupt-cells = <2>; 1111 }; 1112 }; 1113 1114 smp2p-lpass { 1115 compatible = "qcom,smp2p"; 1116 qcom,smem = <443>, <429>; 1117 1118 interrupts = <GIC_SPI 158 IRQ_TYPE_EDGE_RISING>; 1119 1120 mboxes = <&apss_shared 10>; 1121 1122 qcom,local-pid = <0>; 1123 qcom,remote-pid = <2>; 1124 1125 adsp_smp2p_out: master-kernel { 1126 qcom,entry-name = "master-kernel"; 1127 #qcom,smem-state-cells = <1>; 1128 }; 1129 1130 adsp_smp2p_in: slave-kernel { 1131 qcom,entry-name = "slave-kernel"; 1132 1133 interrupt-controller; 1134 #interrupt-cells = <2>; 1135 }; 1136 }; 1137 1138 smp2p-mpss { 1139 compatible = "qcom,smp2p"; 1140 qcom,smem = <435>, <428>; 1141 interrupts = <GIC_SPI 451 IRQ_TYPE_EDGE_RISING>; 1142 mboxes = <&apss_shared 14>; 1143 qcom,local-pid = <0>; 1144 qcom,remote-pid = <1>; 1145 1146 modem_smp2p_out: master-kernel { 1147 qcom,entry-name = "master-kernel"; 1148 #qcom,smem-state-cells = <1>; 1149 }; 1150 1151 modem_smp2p_in: slave-kernel { 1152 qcom,entry-name = "slave-kernel"; 1153 interrupt-controller; 1154 #interrupt-cells = <2>; 1155 }; 1156 1157 ipa_smp2p_out: ipa-ap-to-modem { 1158 qcom,entry-name = "ipa"; 1159 #qcom,smem-state-cells = <1>; 1160 }; 1161 1162 ipa_smp2p_in: ipa-modem-to-ap { 1163 qcom,entry-name = "ipa"; 1164 interrupt-controller; 1165 #interrupt-cells = <2>; 1166 }; 1167 }; 1168 1169 smp2p-slpi { 1170 compatible = "qcom,smp2p"; 1171 qcom,smem = <481>, <430>; 1172 interrupts = <GIC_SPI 172 IRQ_TYPE_EDGE_RISING>; 1173 mboxes = <&apss_shared 26>; 1174 qcom,local-pid = <0>; 1175 qcom,remote-pid = <3>; 1176 1177 slpi_smp2p_out: master-kernel { 1178 qcom,entry-name = "master-kernel"; 1179 #qcom,smem-state-cells = <1>; 1180 }; 1181 1182 slpi_smp2p_in: slave-kernel { 1183 qcom,entry-name = "slave-kernel"; 1184 interrupt-controller; 1185 #interrupt-cells = <2>; 1186 }; 1187 }; 1188 1189 soc: soc@0 { 1190 #address-cells = <2>; 1191 #size-cells = <2>; 1192 ranges = <0 0 0 0 0x10 0>; 1193 dma-ranges = <0 0 0 0 0x10 0>; 1194 compatible = "simple-bus"; 1195 1196 gcc: clock-controller@100000 { 1197 compatible = "qcom,gcc-sdm845"; 1198 reg = <0 0x00100000 0 0x1f0000>; 1199 clocks = <&rpmhcc RPMH_CXO_CLK>, 1200 <&rpmhcc RPMH_CXO_CLK_A>, 1201 <&sleep_clk>, 1202 <&pcie0_phy>, 1203 <&pcie1_phy>; 1204 clock-names = "bi_tcxo", 1205 "bi_tcxo_ao", 1206 "sleep_clk", 1207 "pcie_0_pipe_clk", 1208 "pcie_1_pipe_clk"; 1209 #clock-cells = <1>; 1210 #reset-cells = <1>; 1211 #power-domain-cells = <1>; 1212 power-domains = <&rpmhpd SDM845_CX>; 1213 }; 1214 1215 qfprom@784000 { 1216 compatible = "qcom,sdm845-qfprom", "qcom,qfprom"; 1217 reg = <0 0x00784000 0 0x8ff>; 1218 #address-cells = <1>; 1219 #size-cells = <1>; 1220 1221 qusb2p_hstx_trim: hstx-trim-primary@1eb { 1222 reg = <0x1eb 0x1>; 1223 bits = <1 4>; 1224 }; 1225 1226 qusb2s_hstx_trim: hstx-trim-secondary@1eb { 1227 reg = <0x1eb 0x2>; 1228 bits = <6 4>; 1229 }; 1230 }; 1231 1232 rng: rng@793000 { 1233 compatible = "qcom,prng-ee"; 1234 reg = <0 0x00793000 0 0x1000>; 1235 clocks = <&gcc GCC_PRNG_AHB_CLK>; 1236 clock-names = "core"; 1237 }; 1238 1239 gpi_dma0: dma-controller@800000 { 1240 #dma-cells = <3>; 1241 compatible = "qcom,sdm845-gpi-dma"; 1242 reg = <0 0x00800000 0 0x60000>; 1243 interrupts = <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>, 1244 <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>, 1245 <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>, 1246 <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>, 1247 <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>, 1248 <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>, 1249 <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>, 1250 <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>, 1251 <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>, 1252 <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>, 1253 <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>, 1254 <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>, 1255 <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>; 1256 dma-channels = <13>; 1257 dma-channel-mask = <0xfa>; 1258 iommus = <&apps_smmu 0x0016 0x0>; 1259 status = "disabled"; 1260 }; 1261 1262 qupv3_id_0: geniqup@8c0000 { 1263 compatible = "qcom,geni-se-qup"; 1264 reg = <0 0x008c0000 0 0x6000>; 1265 clock-names = "m-ahb", "s-ahb"; 1266 clocks = <&gcc GCC_QUPV3_WRAP_0_M_AHB_CLK>, 1267 <&gcc GCC_QUPV3_WRAP_0_S_AHB_CLK>; 1268 iommus = <&apps_smmu 0x3 0x0>; 1269 #address-cells = <2>; 1270 #size-cells = <2>; 1271 ranges; 1272 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>; 1273 interconnect-names = "qup-core"; 1274 status = "disabled"; 1275 1276 i2c0: i2c@880000 { 1277 compatible = "qcom,geni-i2c"; 1278 reg = <0 0x00880000 0 0x4000>; 1279 clock-names = "se"; 1280 clocks = <&gcc GCC_QUPV3_WRAP0_S0_CLK>; 1281 pinctrl-names = "default"; 1282 pinctrl-0 = <&qup_i2c0_default>; 1283 interrupts = <GIC_SPI 601 IRQ_TYPE_LEVEL_HIGH>; 1284 #address-cells = <1>; 1285 #size-cells = <0>; 1286 power-domains = <&rpmhpd SDM845_CX>; 1287 operating-points-v2 = <&qup_opp_table>; 1288 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1289 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>, 1290 <&aggre1_noc MASTER_QUP_1 0 &mem_noc SLAVE_EBI1 0>; 1291 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1292 dmas = <&gpi_dma0 0 0 QCOM_GPI_I2C>, 1293 <&gpi_dma0 1 0 QCOM_GPI_I2C>; 1294 dma-names = "tx", "rx"; 1295 status = "disabled"; 1296 }; 1297 1298 spi0: spi@880000 { 1299 compatible = "qcom,geni-spi"; 1300 reg = <0 0x00880000 0 0x4000>; 1301 clock-names = "se"; 1302 clocks = <&gcc GCC_QUPV3_WRAP0_S0_CLK>; 1303 pinctrl-names = "default"; 1304 pinctrl-0 = <&qup_spi0_default>; 1305 interrupts = <GIC_SPI 601 IRQ_TYPE_LEVEL_HIGH>; 1306 #address-cells = <1>; 1307 #size-cells = <0>; 1308 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1309 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1310 interconnect-names = "qup-core", "qup-config"; 1311 dmas = <&gpi_dma0 0 0 QCOM_GPI_SPI>, 1312 <&gpi_dma0 1 0 QCOM_GPI_SPI>; 1313 dma-names = "tx", "rx"; 1314 status = "disabled"; 1315 }; 1316 1317 uart0: serial@880000 { 1318 compatible = "qcom,geni-uart"; 1319 reg = <0 0x00880000 0 0x4000>; 1320 clock-names = "se"; 1321 clocks = <&gcc GCC_QUPV3_WRAP0_S0_CLK>; 1322 pinctrl-names = "default"; 1323 pinctrl-0 = <&qup_uart0_default>; 1324 interrupts = <GIC_SPI 601 IRQ_TYPE_LEVEL_HIGH>; 1325 power-domains = <&rpmhpd SDM845_CX>; 1326 operating-points-v2 = <&qup_opp_table>; 1327 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1328 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1329 interconnect-names = "qup-core", "qup-config"; 1330 status = "disabled"; 1331 }; 1332 1333 i2c1: i2c@884000 { 1334 compatible = "qcom,geni-i2c"; 1335 reg = <0 0x00884000 0 0x4000>; 1336 clock-names = "se"; 1337 clocks = <&gcc GCC_QUPV3_WRAP0_S1_CLK>; 1338 pinctrl-names = "default"; 1339 pinctrl-0 = <&qup_i2c1_default>; 1340 interrupts = <GIC_SPI 602 IRQ_TYPE_LEVEL_HIGH>; 1341 #address-cells = <1>; 1342 #size-cells = <0>; 1343 power-domains = <&rpmhpd SDM845_CX>; 1344 operating-points-v2 = <&qup_opp_table>; 1345 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1346 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>, 1347 <&aggre1_noc MASTER_QUP_1 0 &mem_noc SLAVE_EBI1 0>; 1348 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1349 dmas = <&gpi_dma0 0 1 QCOM_GPI_I2C>, 1350 <&gpi_dma0 1 1 QCOM_GPI_I2C>; 1351 dma-names = "tx", "rx"; 1352 status = "disabled"; 1353 }; 1354 1355 spi1: spi@884000 { 1356 compatible = "qcom,geni-spi"; 1357 reg = <0 0x00884000 0 0x4000>; 1358 clock-names = "se"; 1359 clocks = <&gcc GCC_QUPV3_WRAP0_S1_CLK>; 1360 pinctrl-names = "default"; 1361 pinctrl-0 = <&qup_spi1_default>; 1362 interrupts = <GIC_SPI 602 IRQ_TYPE_LEVEL_HIGH>; 1363 #address-cells = <1>; 1364 #size-cells = <0>; 1365 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1366 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1367 interconnect-names = "qup-core", "qup-config"; 1368 dmas = <&gpi_dma0 0 1 QCOM_GPI_SPI>, 1369 <&gpi_dma0 1 1 QCOM_GPI_SPI>; 1370 dma-names = "tx", "rx"; 1371 status = "disabled"; 1372 }; 1373 1374 uart1: serial@884000 { 1375 compatible = "qcom,geni-uart"; 1376 reg = <0 0x00884000 0 0x4000>; 1377 clock-names = "se"; 1378 clocks = <&gcc GCC_QUPV3_WRAP0_S1_CLK>; 1379 pinctrl-names = "default"; 1380 pinctrl-0 = <&qup_uart1_default>; 1381 interrupts = <GIC_SPI 602 IRQ_TYPE_LEVEL_HIGH>; 1382 power-domains = <&rpmhpd SDM845_CX>; 1383 operating-points-v2 = <&qup_opp_table>; 1384 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1385 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1386 interconnect-names = "qup-core", "qup-config"; 1387 status = "disabled"; 1388 }; 1389 1390 i2c2: i2c@888000 { 1391 compatible = "qcom,geni-i2c"; 1392 reg = <0 0x00888000 0 0x4000>; 1393 clock-names = "se"; 1394 clocks = <&gcc GCC_QUPV3_WRAP0_S2_CLK>; 1395 pinctrl-names = "default"; 1396 pinctrl-0 = <&qup_i2c2_default>; 1397 interrupts = <GIC_SPI 603 IRQ_TYPE_LEVEL_HIGH>; 1398 #address-cells = <1>; 1399 #size-cells = <0>; 1400 power-domains = <&rpmhpd SDM845_CX>; 1401 operating-points-v2 = <&qup_opp_table>; 1402 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1403 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>, 1404 <&aggre1_noc MASTER_QUP_1 0 &mem_noc SLAVE_EBI1 0>; 1405 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1406 dmas = <&gpi_dma0 0 2 QCOM_GPI_I2C>, 1407 <&gpi_dma0 1 2 QCOM_GPI_I2C>; 1408 dma-names = "tx", "rx"; 1409 status = "disabled"; 1410 }; 1411 1412 spi2: spi@888000 { 1413 compatible = "qcom,geni-spi"; 1414 reg = <0 0x00888000 0 0x4000>; 1415 clock-names = "se"; 1416 clocks = <&gcc GCC_QUPV3_WRAP0_S2_CLK>; 1417 pinctrl-names = "default"; 1418 pinctrl-0 = <&qup_spi2_default>; 1419 interrupts = <GIC_SPI 603 IRQ_TYPE_LEVEL_HIGH>; 1420 #address-cells = <1>; 1421 #size-cells = <0>; 1422 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1423 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1424 interconnect-names = "qup-core", "qup-config"; 1425 dmas = <&gpi_dma0 0 2 QCOM_GPI_SPI>, 1426 <&gpi_dma0 1 2 QCOM_GPI_SPI>; 1427 dma-names = "tx", "rx"; 1428 status = "disabled"; 1429 }; 1430 1431 uart2: serial@888000 { 1432 compatible = "qcom,geni-uart"; 1433 reg = <0 0x00888000 0 0x4000>; 1434 clock-names = "se"; 1435 clocks = <&gcc GCC_QUPV3_WRAP0_S2_CLK>; 1436 pinctrl-names = "default"; 1437 pinctrl-0 = <&qup_uart2_default>; 1438 interrupts = <GIC_SPI 603 IRQ_TYPE_LEVEL_HIGH>; 1439 power-domains = <&rpmhpd SDM845_CX>; 1440 operating-points-v2 = <&qup_opp_table>; 1441 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1442 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1443 interconnect-names = "qup-core", "qup-config"; 1444 status = "disabled"; 1445 }; 1446 1447 i2c3: i2c@88c000 { 1448 compatible = "qcom,geni-i2c"; 1449 reg = <0 0x0088c000 0 0x4000>; 1450 clock-names = "se"; 1451 clocks = <&gcc GCC_QUPV3_WRAP0_S3_CLK>; 1452 pinctrl-names = "default"; 1453 pinctrl-0 = <&qup_i2c3_default>; 1454 interrupts = <GIC_SPI 604 IRQ_TYPE_LEVEL_HIGH>; 1455 #address-cells = <1>; 1456 #size-cells = <0>; 1457 power-domains = <&rpmhpd SDM845_CX>; 1458 operating-points-v2 = <&qup_opp_table>; 1459 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1460 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>, 1461 <&aggre1_noc MASTER_QUP_1 0 &mem_noc SLAVE_EBI1 0>; 1462 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1463 dmas = <&gpi_dma0 0 3 QCOM_GPI_I2C>, 1464 <&gpi_dma0 1 3 QCOM_GPI_I2C>; 1465 dma-names = "tx", "rx"; 1466 status = "disabled"; 1467 }; 1468 1469 spi3: spi@88c000 { 1470 compatible = "qcom,geni-spi"; 1471 reg = <0 0x0088c000 0 0x4000>; 1472 clock-names = "se"; 1473 clocks = <&gcc GCC_QUPV3_WRAP0_S3_CLK>; 1474 pinctrl-names = "default"; 1475 pinctrl-0 = <&qup_spi3_default>; 1476 interrupts = <GIC_SPI 604 IRQ_TYPE_LEVEL_HIGH>; 1477 #address-cells = <1>; 1478 #size-cells = <0>; 1479 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1480 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1481 interconnect-names = "qup-core", "qup-config"; 1482 dmas = <&gpi_dma0 0 3 QCOM_GPI_SPI>, 1483 <&gpi_dma0 1 3 QCOM_GPI_SPI>; 1484 dma-names = "tx", "rx"; 1485 status = "disabled"; 1486 }; 1487 1488 uart3: serial@88c000 { 1489 compatible = "qcom,geni-uart"; 1490 reg = <0 0x0088c000 0 0x4000>; 1491 clock-names = "se"; 1492 clocks = <&gcc GCC_QUPV3_WRAP0_S3_CLK>; 1493 pinctrl-names = "default"; 1494 pinctrl-0 = <&qup_uart3_default>; 1495 interrupts = <GIC_SPI 604 IRQ_TYPE_LEVEL_HIGH>; 1496 power-domains = <&rpmhpd SDM845_CX>; 1497 operating-points-v2 = <&qup_opp_table>; 1498 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1499 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1500 interconnect-names = "qup-core", "qup-config"; 1501 status = "disabled"; 1502 }; 1503 1504 i2c4: i2c@890000 { 1505 compatible = "qcom,geni-i2c"; 1506 reg = <0 0x00890000 0 0x4000>; 1507 clock-names = "se"; 1508 clocks = <&gcc GCC_QUPV3_WRAP0_S4_CLK>; 1509 pinctrl-names = "default"; 1510 pinctrl-0 = <&qup_i2c4_default>; 1511 interrupts = <GIC_SPI 605 IRQ_TYPE_LEVEL_HIGH>; 1512 #address-cells = <1>; 1513 #size-cells = <0>; 1514 power-domains = <&rpmhpd SDM845_CX>; 1515 operating-points-v2 = <&qup_opp_table>; 1516 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1517 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>, 1518 <&aggre1_noc MASTER_QUP_1 0 &mem_noc SLAVE_EBI1 0>; 1519 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1520 dmas = <&gpi_dma0 0 4 QCOM_GPI_I2C>, 1521 <&gpi_dma0 1 4 QCOM_GPI_I2C>; 1522 dma-names = "tx", "rx"; 1523 status = "disabled"; 1524 }; 1525 1526 spi4: spi@890000 { 1527 compatible = "qcom,geni-spi"; 1528 reg = <0 0x00890000 0 0x4000>; 1529 clock-names = "se"; 1530 clocks = <&gcc GCC_QUPV3_WRAP0_S4_CLK>; 1531 pinctrl-names = "default"; 1532 pinctrl-0 = <&qup_spi4_default>; 1533 interrupts = <GIC_SPI 605 IRQ_TYPE_LEVEL_HIGH>; 1534 #address-cells = <1>; 1535 #size-cells = <0>; 1536 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1537 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1538 interconnect-names = "qup-core", "qup-config"; 1539 dmas = <&gpi_dma0 0 4 QCOM_GPI_SPI>, 1540 <&gpi_dma0 1 4 QCOM_GPI_SPI>; 1541 dma-names = "tx", "rx"; 1542 status = "disabled"; 1543 }; 1544 1545 uart4: serial@890000 { 1546 compatible = "qcom,geni-uart"; 1547 reg = <0 0x00890000 0 0x4000>; 1548 clock-names = "se"; 1549 clocks = <&gcc GCC_QUPV3_WRAP0_S4_CLK>; 1550 pinctrl-names = "default"; 1551 pinctrl-0 = <&qup_uart4_default>; 1552 interrupts = <GIC_SPI 605 IRQ_TYPE_LEVEL_HIGH>; 1553 power-domains = <&rpmhpd SDM845_CX>; 1554 operating-points-v2 = <&qup_opp_table>; 1555 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1556 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1557 interconnect-names = "qup-core", "qup-config"; 1558 status = "disabled"; 1559 }; 1560 1561 i2c5: i2c@894000 { 1562 compatible = "qcom,geni-i2c"; 1563 reg = <0 0x00894000 0 0x4000>; 1564 clock-names = "se"; 1565 clocks = <&gcc GCC_QUPV3_WRAP0_S5_CLK>; 1566 pinctrl-names = "default"; 1567 pinctrl-0 = <&qup_i2c5_default>; 1568 interrupts = <GIC_SPI 606 IRQ_TYPE_LEVEL_HIGH>; 1569 #address-cells = <1>; 1570 #size-cells = <0>; 1571 power-domains = <&rpmhpd SDM845_CX>; 1572 operating-points-v2 = <&qup_opp_table>; 1573 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1574 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>, 1575 <&aggre1_noc MASTER_QUP_1 0 &mem_noc SLAVE_EBI1 0>; 1576 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1577 dmas = <&gpi_dma0 0 5 QCOM_GPI_I2C>, 1578 <&gpi_dma0 1 5 QCOM_GPI_I2C>; 1579 dma-names = "tx", "rx"; 1580 status = "disabled"; 1581 }; 1582 1583 spi5: spi@894000 { 1584 compatible = "qcom,geni-spi"; 1585 reg = <0 0x00894000 0 0x4000>; 1586 clock-names = "se"; 1587 clocks = <&gcc GCC_QUPV3_WRAP0_S5_CLK>; 1588 pinctrl-names = "default"; 1589 pinctrl-0 = <&qup_spi5_default>; 1590 interrupts = <GIC_SPI 606 IRQ_TYPE_LEVEL_HIGH>; 1591 #address-cells = <1>; 1592 #size-cells = <0>; 1593 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1594 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1595 interconnect-names = "qup-core", "qup-config"; 1596 dmas = <&gpi_dma0 0 5 QCOM_GPI_SPI>, 1597 <&gpi_dma0 1 5 QCOM_GPI_SPI>; 1598 dma-names = "tx", "rx"; 1599 status = "disabled"; 1600 }; 1601 1602 uart5: serial@894000 { 1603 compatible = "qcom,geni-uart"; 1604 reg = <0 0x00894000 0 0x4000>; 1605 clock-names = "se"; 1606 clocks = <&gcc GCC_QUPV3_WRAP0_S5_CLK>; 1607 pinctrl-names = "default"; 1608 pinctrl-0 = <&qup_uart5_default>; 1609 interrupts = <GIC_SPI 606 IRQ_TYPE_LEVEL_HIGH>; 1610 power-domains = <&rpmhpd SDM845_CX>; 1611 operating-points-v2 = <&qup_opp_table>; 1612 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1613 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1614 interconnect-names = "qup-core", "qup-config"; 1615 status = "disabled"; 1616 }; 1617 1618 i2c6: i2c@898000 { 1619 compatible = "qcom,geni-i2c"; 1620 reg = <0 0x00898000 0 0x4000>; 1621 clock-names = "se"; 1622 clocks = <&gcc GCC_QUPV3_WRAP0_S6_CLK>; 1623 pinctrl-names = "default"; 1624 pinctrl-0 = <&qup_i2c6_default>; 1625 interrupts = <GIC_SPI 607 IRQ_TYPE_LEVEL_HIGH>; 1626 #address-cells = <1>; 1627 #size-cells = <0>; 1628 power-domains = <&rpmhpd SDM845_CX>; 1629 operating-points-v2 = <&qup_opp_table>; 1630 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1631 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>, 1632 <&aggre1_noc MASTER_QUP_1 0 &mem_noc SLAVE_EBI1 0>; 1633 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1634 dmas = <&gpi_dma0 0 6 QCOM_GPI_I2C>, 1635 <&gpi_dma0 1 6 QCOM_GPI_I2C>; 1636 dma-names = "tx", "rx"; 1637 status = "disabled"; 1638 }; 1639 1640 spi6: spi@898000 { 1641 compatible = "qcom,geni-spi"; 1642 reg = <0 0x00898000 0 0x4000>; 1643 clock-names = "se"; 1644 clocks = <&gcc GCC_QUPV3_WRAP0_S6_CLK>; 1645 pinctrl-names = "default"; 1646 pinctrl-0 = <&qup_spi6_default>; 1647 interrupts = <GIC_SPI 607 IRQ_TYPE_LEVEL_HIGH>; 1648 #address-cells = <1>; 1649 #size-cells = <0>; 1650 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1651 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1652 interconnect-names = "qup-core", "qup-config"; 1653 dmas = <&gpi_dma0 0 6 QCOM_GPI_SPI>, 1654 <&gpi_dma0 1 6 QCOM_GPI_SPI>; 1655 dma-names = "tx", "rx"; 1656 status = "disabled"; 1657 }; 1658 1659 uart6: serial@898000 { 1660 compatible = "qcom,geni-uart"; 1661 reg = <0 0x00898000 0 0x4000>; 1662 clock-names = "se"; 1663 clocks = <&gcc GCC_QUPV3_WRAP0_S6_CLK>; 1664 pinctrl-names = "default"; 1665 pinctrl-0 = <&qup_uart6_default>; 1666 interrupts = <GIC_SPI 607 IRQ_TYPE_LEVEL_HIGH>; 1667 power-domains = <&rpmhpd SDM845_CX>; 1668 operating-points-v2 = <&qup_opp_table>; 1669 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1670 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1671 interconnect-names = "qup-core", "qup-config"; 1672 status = "disabled"; 1673 }; 1674 1675 i2c7: i2c@89c000 { 1676 compatible = "qcom,geni-i2c"; 1677 reg = <0 0x0089c000 0 0x4000>; 1678 clock-names = "se"; 1679 clocks = <&gcc GCC_QUPV3_WRAP0_S7_CLK>; 1680 pinctrl-names = "default"; 1681 pinctrl-0 = <&qup_i2c7_default>; 1682 interrupts = <GIC_SPI 608 IRQ_TYPE_LEVEL_HIGH>; 1683 #address-cells = <1>; 1684 #size-cells = <0>; 1685 power-domains = <&rpmhpd SDM845_CX>; 1686 operating-points-v2 = <&qup_opp_table>; 1687 status = "disabled"; 1688 }; 1689 1690 spi7: spi@89c000 { 1691 compatible = "qcom,geni-spi"; 1692 reg = <0 0x0089c000 0 0x4000>; 1693 clock-names = "se"; 1694 clocks = <&gcc GCC_QUPV3_WRAP0_S7_CLK>; 1695 pinctrl-names = "default"; 1696 pinctrl-0 = <&qup_spi7_default>; 1697 interrupts = <GIC_SPI 608 IRQ_TYPE_LEVEL_HIGH>; 1698 #address-cells = <1>; 1699 #size-cells = <0>; 1700 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1701 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1702 interconnect-names = "qup-core", "qup-config"; 1703 dmas = <&gpi_dma0 0 7 QCOM_GPI_SPI>, 1704 <&gpi_dma0 1 7 QCOM_GPI_SPI>; 1705 dma-names = "tx", "rx"; 1706 status = "disabled"; 1707 }; 1708 1709 uart7: serial@89c000 { 1710 compatible = "qcom,geni-uart"; 1711 reg = <0 0x0089c000 0 0x4000>; 1712 clock-names = "se"; 1713 clocks = <&gcc GCC_QUPV3_WRAP0_S7_CLK>; 1714 pinctrl-names = "default"; 1715 pinctrl-0 = <&qup_uart7_default>; 1716 interrupts = <GIC_SPI 608 IRQ_TYPE_LEVEL_HIGH>; 1717 power-domains = <&rpmhpd SDM845_CX>; 1718 operating-points-v2 = <&qup_opp_table>; 1719 interconnects = <&aggre1_noc MASTER_QUP_1 0 &config_noc SLAVE_BLSP_1 0>, 1720 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_1 0>; 1721 interconnect-names = "qup-core", "qup-config"; 1722 status = "disabled"; 1723 }; 1724 }; 1725 1726 gpi_dma1: dma-controller@a00000 { 1727 #dma-cells = <3>; 1728 compatible = "qcom,sdm845-gpi-dma"; 1729 reg = <0 0x00a00000 0 0x60000>; 1730 interrupts = <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>, 1731 <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>, 1732 <GIC_SPI 281 IRQ_TYPE_LEVEL_HIGH>, 1733 <GIC_SPI 282 IRQ_TYPE_LEVEL_HIGH>, 1734 <GIC_SPI 283 IRQ_TYPE_LEVEL_HIGH>, 1735 <GIC_SPI 284 IRQ_TYPE_LEVEL_HIGH>, 1736 <GIC_SPI 293 IRQ_TYPE_LEVEL_HIGH>, 1737 <GIC_SPI 294 IRQ_TYPE_LEVEL_HIGH>, 1738 <GIC_SPI 295 IRQ_TYPE_LEVEL_HIGH>, 1739 <GIC_SPI 296 IRQ_TYPE_LEVEL_HIGH>, 1740 <GIC_SPI 297 IRQ_TYPE_LEVEL_HIGH>, 1741 <GIC_SPI 298 IRQ_TYPE_LEVEL_HIGH>, 1742 <GIC_SPI 299 IRQ_TYPE_LEVEL_HIGH>; 1743 dma-channels = <13>; 1744 dma-channel-mask = <0xfa>; 1745 iommus = <&apps_smmu 0x06d6 0x0>; 1746 status = "disabled"; 1747 }; 1748 1749 qupv3_id_1: geniqup@ac0000 { 1750 compatible = "qcom,geni-se-qup"; 1751 reg = <0 0x00ac0000 0 0x6000>; 1752 clock-names = "m-ahb", "s-ahb"; 1753 clocks = <&gcc GCC_QUPV3_WRAP_1_M_AHB_CLK>, 1754 <&gcc GCC_QUPV3_WRAP_1_S_AHB_CLK>; 1755 iommus = <&apps_smmu 0x6c3 0x0>; 1756 #address-cells = <2>; 1757 #size-cells = <2>; 1758 ranges; 1759 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>; 1760 interconnect-names = "qup-core"; 1761 status = "disabled"; 1762 1763 i2c8: i2c@a80000 { 1764 compatible = "qcom,geni-i2c"; 1765 reg = <0 0x00a80000 0 0x4000>; 1766 clock-names = "se"; 1767 clocks = <&gcc GCC_QUPV3_WRAP1_S0_CLK>; 1768 pinctrl-names = "default"; 1769 pinctrl-0 = <&qup_i2c8_default>; 1770 interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>; 1771 #address-cells = <1>; 1772 #size-cells = <0>; 1773 power-domains = <&rpmhpd SDM845_CX>; 1774 operating-points-v2 = <&qup_opp_table>; 1775 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1776 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 1777 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 1778 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1779 dmas = <&gpi_dma1 0 0 QCOM_GPI_I2C>, 1780 <&gpi_dma1 1 0 QCOM_GPI_I2C>; 1781 dma-names = "tx", "rx"; 1782 status = "disabled"; 1783 }; 1784 1785 spi8: spi@a80000 { 1786 compatible = "qcom,geni-spi"; 1787 reg = <0 0x00a80000 0 0x4000>; 1788 clock-names = "se"; 1789 clocks = <&gcc GCC_QUPV3_WRAP1_S0_CLK>; 1790 pinctrl-names = "default"; 1791 pinctrl-0 = <&qup_spi8_default>; 1792 interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>; 1793 #address-cells = <1>; 1794 #size-cells = <0>; 1795 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1796 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1797 interconnect-names = "qup-core", "qup-config"; 1798 dmas = <&gpi_dma1 0 0 QCOM_GPI_SPI>, 1799 <&gpi_dma1 1 0 QCOM_GPI_SPI>; 1800 dma-names = "tx", "rx"; 1801 status = "disabled"; 1802 }; 1803 1804 uart8: serial@a80000 { 1805 compatible = "qcom,geni-uart"; 1806 reg = <0 0x00a80000 0 0x4000>; 1807 clock-names = "se"; 1808 clocks = <&gcc GCC_QUPV3_WRAP1_S0_CLK>; 1809 pinctrl-names = "default"; 1810 pinctrl-0 = <&qup_uart8_default>; 1811 interrupts = <GIC_SPI 353 IRQ_TYPE_LEVEL_HIGH>; 1812 power-domains = <&rpmhpd SDM845_CX>; 1813 operating-points-v2 = <&qup_opp_table>; 1814 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1815 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1816 interconnect-names = "qup-core", "qup-config"; 1817 status = "disabled"; 1818 }; 1819 1820 i2c9: i2c@a84000 { 1821 compatible = "qcom,geni-i2c"; 1822 reg = <0 0x00a84000 0 0x4000>; 1823 clock-names = "se"; 1824 clocks = <&gcc GCC_QUPV3_WRAP1_S1_CLK>; 1825 pinctrl-names = "default"; 1826 pinctrl-0 = <&qup_i2c9_default>; 1827 interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>; 1828 #address-cells = <1>; 1829 #size-cells = <0>; 1830 power-domains = <&rpmhpd SDM845_CX>; 1831 operating-points-v2 = <&qup_opp_table>; 1832 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1833 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 1834 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 1835 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1836 dmas = <&gpi_dma1 0 1 QCOM_GPI_I2C>, 1837 <&gpi_dma1 1 1 QCOM_GPI_I2C>; 1838 dma-names = "tx", "rx"; 1839 status = "disabled"; 1840 }; 1841 1842 spi9: spi@a84000 { 1843 compatible = "qcom,geni-spi"; 1844 reg = <0 0x00a84000 0 0x4000>; 1845 clock-names = "se"; 1846 clocks = <&gcc GCC_QUPV3_WRAP1_S1_CLK>; 1847 pinctrl-names = "default"; 1848 pinctrl-0 = <&qup_spi9_default>; 1849 interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>; 1850 #address-cells = <1>; 1851 #size-cells = <0>; 1852 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1853 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1854 interconnect-names = "qup-core", "qup-config"; 1855 dmas = <&gpi_dma1 0 1 QCOM_GPI_SPI>, 1856 <&gpi_dma1 1 1 QCOM_GPI_SPI>; 1857 dma-names = "tx", "rx"; 1858 status = "disabled"; 1859 }; 1860 1861 uart9: serial@a84000 { 1862 compatible = "qcom,geni-debug-uart"; 1863 reg = <0 0x00a84000 0 0x4000>; 1864 clock-names = "se"; 1865 clocks = <&gcc GCC_QUPV3_WRAP1_S1_CLK>; 1866 pinctrl-names = "default"; 1867 pinctrl-0 = <&qup_uart9_default>; 1868 interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>; 1869 power-domains = <&rpmhpd SDM845_CX>; 1870 operating-points-v2 = <&qup_opp_table>; 1871 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1872 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1873 interconnect-names = "qup-core", "qup-config"; 1874 status = "disabled"; 1875 }; 1876 1877 i2c10: i2c@a88000 { 1878 compatible = "qcom,geni-i2c"; 1879 reg = <0 0x00a88000 0 0x4000>; 1880 clock-names = "se"; 1881 clocks = <&gcc GCC_QUPV3_WRAP1_S2_CLK>; 1882 pinctrl-names = "default"; 1883 pinctrl-0 = <&qup_i2c10_default>; 1884 interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>; 1885 #address-cells = <1>; 1886 #size-cells = <0>; 1887 power-domains = <&rpmhpd SDM845_CX>; 1888 operating-points-v2 = <&qup_opp_table>; 1889 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1890 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 1891 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 1892 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1893 dmas = <&gpi_dma1 0 2 QCOM_GPI_I2C>, 1894 <&gpi_dma1 1 2 QCOM_GPI_I2C>; 1895 dma-names = "tx", "rx"; 1896 status = "disabled"; 1897 }; 1898 1899 spi10: spi@a88000 { 1900 compatible = "qcom,geni-spi"; 1901 reg = <0 0x00a88000 0 0x4000>; 1902 clock-names = "se"; 1903 clocks = <&gcc GCC_QUPV3_WRAP1_S2_CLK>; 1904 pinctrl-names = "default"; 1905 pinctrl-0 = <&qup_spi10_default>; 1906 interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>; 1907 #address-cells = <1>; 1908 #size-cells = <0>; 1909 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1910 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1911 interconnect-names = "qup-core", "qup-config"; 1912 dmas = <&gpi_dma1 0 2 QCOM_GPI_SPI>, 1913 <&gpi_dma1 1 2 QCOM_GPI_SPI>; 1914 dma-names = "tx", "rx"; 1915 status = "disabled"; 1916 }; 1917 1918 uart10: serial@a88000 { 1919 compatible = "qcom,geni-uart"; 1920 reg = <0 0x00a88000 0 0x4000>; 1921 clock-names = "se"; 1922 clocks = <&gcc GCC_QUPV3_WRAP1_S2_CLK>; 1923 pinctrl-names = "default"; 1924 pinctrl-0 = <&qup_uart10_default>; 1925 interrupts = <GIC_SPI 355 IRQ_TYPE_LEVEL_HIGH>; 1926 power-domains = <&rpmhpd SDM845_CX>; 1927 operating-points-v2 = <&qup_opp_table>; 1928 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1929 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1930 interconnect-names = "qup-core", "qup-config"; 1931 status = "disabled"; 1932 }; 1933 1934 i2c11: i2c@a8c000 { 1935 compatible = "qcom,geni-i2c"; 1936 reg = <0 0x00a8c000 0 0x4000>; 1937 clock-names = "se"; 1938 clocks = <&gcc GCC_QUPV3_WRAP1_S3_CLK>; 1939 pinctrl-names = "default"; 1940 pinctrl-0 = <&qup_i2c11_default>; 1941 interrupts = <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>; 1942 #address-cells = <1>; 1943 #size-cells = <0>; 1944 power-domains = <&rpmhpd SDM845_CX>; 1945 operating-points-v2 = <&qup_opp_table>; 1946 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1947 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 1948 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 1949 interconnect-names = "qup-core", "qup-config", "qup-memory"; 1950 dmas = <&gpi_dma1 0 3 QCOM_GPI_I2C>, 1951 <&gpi_dma1 1 3 QCOM_GPI_I2C>; 1952 dma-names = "tx", "rx"; 1953 status = "disabled"; 1954 }; 1955 1956 spi11: spi@a8c000 { 1957 compatible = "qcom,geni-spi"; 1958 reg = <0 0x00a8c000 0 0x4000>; 1959 clock-names = "se"; 1960 clocks = <&gcc GCC_QUPV3_WRAP1_S3_CLK>; 1961 pinctrl-names = "default"; 1962 pinctrl-0 = <&qup_spi11_default>; 1963 interrupts = <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>; 1964 #address-cells = <1>; 1965 #size-cells = <0>; 1966 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1967 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1968 interconnect-names = "qup-core", "qup-config"; 1969 dmas = <&gpi_dma1 0 3 QCOM_GPI_SPI>, 1970 <&gpi_dma1 1 3 QCOM_GPI_SPI>; 1971 dma-names = "tx", "rx"; 1972 status = "disabled"; 1973 }; 1974 1975 uart11: serial@a8c000 { 1976 compatible = "qcom,geni-uart"; 1977 reg = <0 0x00a8c000 0 0x4000>; 1978 clock-names = "se"; 1979 clocks = <&gcc GCC_QUPV3_WRAP1_S3_CLK>; 1980 pinctrl-names = "default"; 1981 pinctrl-0 = <&qup_uart11_default>; 1982 interrupts = <GIC_SPI 356 IRQ_TYPE_LEVEL_HIGH>; 1983 power-domains = <&rpmhpd SDM845_CX>; 1984 operating-points-v2 = <&qup_opp_table>; 1985 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 1986 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 1987 interconnect-names = "qup-core", "qup-config"; 1988 status = "disabled"; 1989 }; 1990 1991 i2c12: i2c@a90000 { 1992 compatible = "qcom,geni-i2c"; 1993 reg = <0 0x00a90000 0 0x4000>; 1994 clock-names = "se"; 1995 clocks = <&gcc GCC_QUPV3_WRAP1_S4_CLK>; 1996 pinctrl-names = "default"; 1997 pinctrl-0 = <&qup_i2c12_default>; 1998 interrupts = <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>; 1999 #address-cells = <1>; 2000 #size-cells = <0>; 2001 power-domains = <&rpmhpd SDM845_CX>; 2002 operating-points-v2 = <&qup_opp_table>; 2003 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2004 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 2005 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 2006 interconnect-names = "qup-core", "qup-config", "qup-memory"; 2007 dmas = <&gpi_dma1 0 4 QCOM_GPI_I2C>, 2008 <&gpi_dma1 1 4 QCOM_GPI_I2C>; 2009 dma-names = "tx", "rx"; 2010 status = "disabled"; 2011 }; 2012 2013 spi12: spi@a90000 { 2014 compatible = "qcom,geni-spi"; 2015 reg = <0 0x00a90000 0 0x4000>; 2016 clock-names = "se"; 2017 clocks = <&gcc GCC_QUPV3_WRAP1_S4_CLK>; 2018 pinctrl-names = "default"; 2019 pinctrl-0 = <&qup_spi12_default>; 2020 interrupts = <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>; 2021 #address-cells = <1>; 2022 #size-cells = <0>; 2023 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2024 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2025 interconnect-names = "qup-core", "qup-config"; 2026 dmas = <&gpi_dma1 0 4 QCOM_GPI_SPI>, 2027 <&gpi_dma1 1 4 QCOM_GPI_SPI>; 2028 dma-names = "tx", "rx"; 2029 status = "disabled"; 2030 }; 2031 2032 uart12: serial@a90000 { 2033 compatible = "qcom,geni-uart"; 2034 reg = <0 0x00a90000 0 0x4000>; 2035 clock-names = "se"; 2036 clocks = <&gcc GCC_QUPV3_WRAP1_S4_CLK>; 2037 pinctrl-names = "default"; 2038 pinctrl-0 = <&qup_uart12_default>; 2039 interrupts = <GIC_SPI 357 IRQ_TYPE_LEVEL_HIGH>; 2040 power-domains = <&rpmhpd SDM845_CX>; 2041 operating-points-v2 = <&qup_opp_table>; 2042 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2043 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2044 interconnect-names = "qup-core", "qup-config"; 2045 status = "disabled"; 2046 }; 2047 2048 i2c13: i2c@a94000 { 2049 compatible = "qcom,geni-i2c"; 2050 reg = <0 0x00a94000 0 0x4000>; 2051 clock-names = "se"; 2052 clocks = <&gcc GCC_QUPV3_WRAP1_S5_CLK>; 2053 pinctrl-names = "default"; 2054 pinctrl-0 = <&qup_i2c13_default>; 2055 interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>; 2056 #address-cells = <1>; 2057 #size-cells = <0>; 2058 power-domains = <&rpmhpd SDM845_CX>; 2059 operating-points-v2 = <&qup_opp_table>; 2060 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2061 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 2062 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 2063 interconnect-names = "qup-core", "qup-config", "qup-memory"; 2064 dmas = <&gpi_dma1 0 5 QCOM_GPI_I2C>, 2065 <&gpi_dma1 1 5 QCOM_GPI_I2C>; 2066 dma-names = "tx", "rx"; 2067 status = "disabled"; 2068 }; 2069 2070 spi13: spi@a94000 { 2071 compatible = "qcom,geni-spi"; 2072 reg = <0 0x00a94000 0 0x4000>; 2073 clock-names = "se"; 2074 clocks = <&gcc GCC_QUPV3_WRAP1_S5_CLK>; 2075 pinctrl-names = "default"; 2076 pinctrl-0 = <&qup_spi13_default>; 2077 interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>; 2078 #address-cells = <1>; 2079 #size-cells = <0>; 2080 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2081 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2082 interconnect-names = "qup-core", "qup-config"; 2083 dmas = <&gpi_dma1 0 5 QCOM_GPI_SPI>, 2084 <&gpi_dma1 1 5 QCOM_GPI_SPI>; 2085 dma-names = "tx", "rx"; 2086 status = "disabled"; 2087 }; 2088 2089 uart13: serial@a94000 { 2090 compatible = "qcom,geni-uart"; 2091 reg = <0 0x00a94000 0 0x4000>; 2092 clock-names = "se"; 2093 clocks = <&gcc GCC_QUPV3_WRAP1_S5_CLK>; 2094 pinctrl-names = "default"; 2095 pinctrl-0 = <&qup_uart13_default>; 2096 interrupts = <GIC_SPI 358 IRQ_TYPE_LEVEL_HIGH>; 2097 power-domains = <&rpmhpd SDM845_CX>; 2098 operating-points-v2 = <&qup_opp_table>; 2099 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2100 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2101 interconnect-names = "qup-core", "qup-config"; 2102 status = "disabled"; 2103 }; 2104 2105 i2c14: i2c@a98000 { 2106 compatible = "qcom,geni-i2c"; 2107 reg = <0 0x00a98000 0 0x4000>; 2108 clock-names = "se"; 2109 clocks = <&gcc GCC_QUPV3_WRAP1_S6_CLK>; 2110 pinctrl-names = "default"; 2111 pinctrl-0 = <&qup_i2c14_default>; 2112 interrupts = <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>; 2113 #address-cells = <1>; 2114 #size-cells = <0>; 2115 power-domains = <&rpmhpd SDM845_CX>; 2116 operating-points-v2 = <&qup_opp_table>; 2117 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2118 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 2119 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 2120 interconnect-names = "qup-core", "qup-config", "qup-memory"; 2121 dmas = <&gpi_dma1 0 6 QCOM_GPI_I2C>, 2122 <&gpi_dma1 1 6 QCOM_GPI_I2C>; 2123 dma-names = "tx", "rx"; 2124 status = "disabled"; 2125 }; 2126 2127 spi14: spi@a98000 { 2128 compatible = "qcom,geni-spi"; 2129 reg = <0 0x00a98000 0 0x4000>; 2130 clock-names = "se"; 2131 clocks = <&gcc GCC_QUPV3_WRAP1_S6_CLK>; 2132 pinctrl-names = "default"; 2133 pinctrl-0 = <&qup_spi14_default>; 2134 interrupts = <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>; 2135 #address-cells = <1>; 2136 #size-cells = <0>; 2137 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2138 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2139 interconnect-names = "qup-core", "qup-config"; 2140 dmas = <&gpi_dma1 0 6 QCOM_GPI_SPI>, 2141 <&gpi_dma1 1 6 QCOM_GPI_SPI>; 2142 dma-names = "tx", "rx"; 2143 status = "disabled"; 2144 }; 2145 2146 uart14: serial@a98000 { 2147 compatible = "qcom,geni-uart"; 2148 reg = <0 0x00a98000 0 0x4000>; 2149 clock-names = "se"; 2150 clocks = <&gcc GCC_QUPV3_WRAP1_S6_CLK>; 2151 pinctrl-names = "default"; 2152 pinctrl-0 = <&qup_uart14_default>; 2153 interrupts = <GIC_SPI 359 IRQ_TYPE_LEVEL_HIGH>; 2154 power-domains = <&rpmhpd SDM845_CX>; 2155 operating-points-v2 = <&qup_opp_table>; 2156 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2157 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2158 interconnect-names = "qup-core", "qup-config"; 2159 status = "disabled"; 2160 }; 2161 2162 i2c15: i2c@a9c000 { 2163 compatible = "qcom,geni-i2c"; 2164 reg = <0 0x00a9c000 0 0x4000>; 2165 clock-names = "se"; 2166 clocks = <&gcc GCC_QUPV3_WRAP1_S7_CLK>; 2167 pinctrl-names = "default"; 2168 pinctrl-0 = <&qup_i2c15_default>; 2169 interrupts = <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>; 2170 #address-cells = <1>; 2171 #size-cells = <0>; 2172 power-domains = <&rpmhpd SDM845_CX>; 2173 operating-points-v2 = <&qup_opp_table>; 2174 status = "disabled"; 2175 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2176 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>, 2177 <&aggre2_noc MASTER_QUP_2 0 &mem_noc SLAVE_EBI1 0>; 2178 interconnect-names = "qup-core", "qup-config", "qup-memory"; 2179 dmas = <&gpi_dma1 0 7 QCOM_GPI_I2C>, 2180 <&gpi_dma1 1 7 QCOM_GPI_I2C>; 2181 dma-names = "tx", "rx"; 2182 }; 2183 2184 spi15: spi@a9c000 { 2185 compatible = "qcom,geni-spi"; 2186 reg = <0 0x00a9c000 0 0x4000>; 2187 clock-names = "se"; 2188 clocks = <&gcc GCC_QUPV3_WRAP1_S7_CLK>; 2189 pinctrl-names = "default"; 2190 pinctrl-0 = <&qup_spi15_default>; 2191 interrupts = <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>; 2192 #address-cells = <1>; 2193 #size-cells = <0>; 2194 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2195 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2196 interconnect-names = "qup-core", "qup-config"; 2197 dmas = <&gpi_dma1 0 7 QCOM_GPI_SPI>, 2198 <&gpi_dma1 1 7 QCOM_GPI_SPI>; 2199 dma-names = "tx", "rx"; 2200 status = "disabled"; 2201 }; 2202 2203 uart15: serial@a9c000 { 2204 compatible = "qcom,geni-uart"; 2205 reg = <0 0x00a9c000 0 0x4000>; 2206 clock-names = "se"; 2207 clocks = <&gcc GCC_QUPV3_WRAP1_S7_CLK>; 2208 pinctrl-names = "default"; 2209 pinctrl-0 = <&qup_uart15_default>; 2210 interrupts = <GIC_SPI 360 IRQ_TYPE_LEVEL_HIGH>; 2211 power-domains = <&rpmhpd SDM845_CX>; 2212 operating-points-v2 = <&qup_opp_table>; 2213 interconnects = <&aggre2_noc MASTER_QUP_2 0 &config_noc SLAVE_BLSP_2 0>, 2214 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_BLSP_2 0>; 2215 interconnect-names = "qup-core", "qup-config"; 2216 status = "disabled"; 2217 }; 2218 }; 2219 2220 llcc: system-cache-controller@1100000 { 2221 compatible = "qcom,sdm845-llcc"; 2222 reg = <0 0x01100000 0 0x45000>, <0 0x01180000 0 0x50000>, 2223 <0 0x01200000 0 0x50000>, <0 0x01280000 0 0x50000>, 2224 <0 0x01300000 0 0x50000>; 2225 reg-names = "llcc0_base", "llcc1_base", "llcc2_base", 2226 "llcc3_base", "llcc_broadcast_base"; 2227 interrupts = <GIC_SPI 582 IRQ_TYPE_LEVEL_HIGH>; 2228 }; 2229 2230 dma@10a2000 { 2231 compatible = "qcom,sdm845-dcc", "qcom,dcc"; 2232 reg = <0x0 0x010a2000 0x0 0x1000>, 2233 <0x0 0x010ae000 0x0 0x2000>; 2234 }; 2235 2236 pmu@114a000 { 2237 compatible = "qcom,sdm845-llcc-bwmon"; 2238 reg = <0 0x0114a000 0 0x1000>; 2239 interrupts = <GIC_SPI 580 IRQ_TYPE_LEVEL_HIGH>; 2240 interconnects = <&mem_noc MASTER_LLCC 3 &mem_noc SLAVE_EBI1 3>; 2241 2242 operating-points-v2 = <&llcc_bwmon_opp_table>; 2243 2244 llcc_bwmon_opp_table: opp-table { 2245 compatible = "operating-points-v2"; 2246 2247 /* 2248 * The interconnect path bandwidth taken from 2249 * cpu4_opp_table bandwidth for gladiator_noc-mem_noc 2250 * interconnect. This also matches the 2251 * bandwidth table of qcom,llccbw (qcom,bw-tbl, 2252 * bus width: 4 bytes) from msm-4.9 downstream 2253 * kernel. 2254 */ 2255 opp-0 { 2256 opp-peak-kBps = <800000>; 2257 }; 2258 opp-1 { 2259 opp-peak-kBps = <1804000>; 2260 }; 2261 opp-2 { 2262 opp-peak-kBps = <3072000>; 2263 }; 2264 opp-3 { 2265 opp-peak-kBps = <5412000>; 2266 }; 2267 opp-4 { 2268 opp-peak-kBps = <7216000>; 2269 }; 2270 }; 2271 }; 2272 2273 pmu@1436400 { 2274 compatible = "qcom,sdm845-cpu-bwmon", "qcom,sdm845-bwmon"; 2275 reg = <0 0x01436400 0 0x600>; 2276 interrupts = <GIC_SPI 581 IRQ_TYPE_LEVEL_HIGH>; 2277 interconnects = <&gladiator_noc MASTER_APPSS_PROC 3 &mem_noc SLAVE_LLCC 3>; 2278 2279 operating-points-v2 = <&cpu_bwmon_opp_table>; 2280 2281 cpu_bwmon_opp_table: opp-table { 2282 compatible = "operating-points-v2"; 2283 2284 /* 2285 * The interconnect path bandwidth taken from 2286 * cpu4_opp_table bandwidth for OSM L3 2287 * interconnect. This also matches the OSM L3 2288 * from bandwidth table of qcom,cpu4-l3lat-mon 2289 * (qcom,core-dev-table, bus width: 16 bytes) 2290 * from msm-4.9 downstream kernel. 2291 */ 2292 opp-0 { 2293 opp-peak-kBps = <4800000>; 2294 }; 2295 opp-1 { 2296 opp-peak-kBps = <9216000>; 2297 }; 2298 opp-2 { 2299 opp-peak-kBps = <15052800>; 2300 }; 2301 opp-3 { 2302 opp-peak-kBps = <20889600>; 2303 }; 2304 opp-4 { 2305 opp-peak-kBps = <25497600>; 2306 }; 2307 }; 2308 }; 2309 2310 pcie0: pcie@1c00000 { 2311 compatible = "qcom,pcie-sdm845"; 2312 reg = <0 0x01c00000 0 0x2000>, 2313 <0 0x60000000 0 0xf1d>, 2314 <0 0x60000f20 0 0xa8>, 2315 <0 0x60100000 0 0x100000>, 2316 <0 0x01c07000 0 0x1000>; 2317 reg-names = "parf", "dbi", "elbi", "config", "mhi"; 2318 device_type = "pci"; 2319 linux,pci-domain = <0>; 2320 bus-range = <0x00 0xff>; 2321 num-lanes = <1>; 2322 2323 #address-cells = <3>; 2324 #size-cells = <2>; 2325 2326 ranges = <0x01000000 0x0 0x00000000 0x0 0x60200000 0x0 0x100000>, 2327 <0x02000000 0x0 0x60300000 0x0 0x60300000 0x0 0xd00000>; 2328 2329 interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>; 2330 interrupt-names = "msi"; 2331 #interrupt-cells = <1>; 2332 interrupt-map-mask = <0 0 0 0x7>; 2333 interrupt-map = <0 0 0 1 &intc 0 0 0 149 IRQ_TYPE_LEVEL_HIGH>, /* int_a */ 2334 <0 0 0 2 &intc 0 0 0 150 IRQ_TYPE_LEVEL_HIGH>, /* int_b */ 2335 <0 0 0 3 &intc 0 0 0 151 IRQ_TYPE_LEVEL_HIGH>, /* int_c */ 2336 <0 0 0 4 &intc 0 0 0 152 IRQ_TYPE_LEVEL_HIGH>; /* int_d */ 2337 2338 clocks = <&gcc GCC_PCIE_0_PIPE_CLK>, 2339 <&gcc GCC_PCIE_0_AUX_CLK>, 2340 <&gcc GCC_PCIE_0_CFG_AHB_CLK>, 2341 <&gcc GCC_PCIE_0_MSTR_AXI_CLK>, 2342 <&gcc GCC_PCIE_0_SLV_AXI_CLK>, 2343 <&gcc GCC_PCIE_0_SLV_Q2A_AXI_CLK>, 2344 <&gcc GCC_AGGRE_NOC_PCIE_TBU_CLK>; 2345 clock-names = "pipe", 2346 "aux", 2347 "cfg", 2348 "bus_master", 2349 "bus_slave", 2350 "slave_q2a", 2351 "tbu"; 2352 2353 iommu-map = <0x0 &apps_smmu 0x1c10 0x1>, 2354 <0x100 &apps_smmu 0x1c11 0x1>, 2355 <0x200 &apps_smmu 0x1c12 0x1>, 2356 <0x300 &apps_smmu 0x1c13 0x1>, 2357 <0x400 &apps_smmu 0x1c14 0x1>, 2358 <0x500 &apps_smmu 0x1c15 0x1>, 2359 <0x600 &apps_smmu 0x1c16 0x1>, 2360 <0x700 &apps_smmu 0x1c17 0x1>, 2361 <0x800 &apps_smmu 0x1c18 0x1>, 2362 <0x900 &apps_smmu 0x1c19 0x1>, 2363 <0xa00 &apps_smmu 0x1c1a 0x1>, 2364 <0xb00 &apps_smmu 0x1c1b 0x1>, 2365 <0xc00 &apps_smmu 0x1c1c 0x1>, 2366 <0xd00 &apps_smmu 0x1c1d 0x1>, 2367 <0xe00 &apps_smmu 0x1c1e 0x1>, 2368 <0xf00 &apps_smmu 0x1c1f 0x1>; 2369 2370 resets = <&gcc GCC_PCIE_0_BCR>; 2371 reset-names = "pci"; 2372 2373 power-domains = <&gcc PCIE_0_GDSC>; 2374 2375 phys = <&pcie0_phy>; 2376 phy-names = "pciephy"; 2377 2378 status = "disabled"; 2379 2380 pcie@0 { 2381 device_type = "pci"; 2382 reg = <0x0 0x0 0x0 0x0 0x0>; 2383 bus-range = <0x01 0xff>; 2384 2385 #address-cells = <3>; 2386 #size-cells = <2>; 2387 ranges; 2388 }; 2389 }; 2390 2391 pcie0_phy: phy@1c06000 { 2392 compatible = "qcom,sdm845-qmp-pcie-phy"; 2393 reg = <0 0x01c06000 0 0x1000>; 2394 clocks = <&gcc GCC_PCIE_PHY_AUX_CLK>, 2395 <&gcc GCC_PCIE_0_CFG_AHB_CLK>, 2396 <&gcc GCC_PCIE_0_CLKREF_CLK>, 2397 <&gcc GCC_PCIE_PHY_REFGEN_CLK>, 2398 <&gcc GCC_PCIE_0_PIPE_CLK>; 2399 clock-names = "aux", 2400 "cfg_ahb", 2401 "ref", 2402 "refgen", 2403 "pipe"; 2404 2405 clock-output-names = "pcie_0_pipe_clk"; 2406 #clock-cells = <0>; 2407 2408 #phy-cells = <0>; 2409 2410 resets = <&gcc GCC_PCIE_0_PHY_BCR>; 2411 reset-names = "phy"; 2412 2413 assigned-clocks = <&gcc GCC_PCIE_PHY_REFGEN_CLK>; 2414 assigned-clock-rates = <100000000>; 2415 2416 status = "disabled"; 2417 }; 2418 2419 pcie1: pcie@1c08000 { 2420 compatible = "qcom,pcie-sdm845"; 2421 reg = <0 0x01c08000 0 0x2000>, 2422 <0 0x40000000 0 0xf1d>, 2423 <0 0x40000f20 0 0xa8>, 2424 <0 0x40100000 0 0x100000>, 2425 <0 0x01c0c000 0 0x1000>; 2426 reg-names = "parf", "dbi", "elbi", "config", "mhi"; 2427 device_type = "pci"; 2428 linux,pci-domain = <1>; 2429 bus-range = <0x00 0xff>; 2430 num-lanes = <1>; 2431 2432 #address-cells = <3>; 2433 #size-cells = <2>; 2434 2435 ranges = <0x01000000 0x0 0x00000000 0x0 0x40200000 0x0 0x100000>, 2436 <0x02000000 0x0 0x40300000 0x0 0x40300000 0x0 0x1fd00000>; 2437 2438 interrupts = <GIC_SPI 307 IRQ_TYPE_EDGE_RISING>; 2439 interrupt-names = "msi"; 2440 #interrupt-cells = <1>; 2441 interrupt-map-mask = <0 0 0 0x7>; 2442 interrupt-map = <0 0 0 1 &intc 0 0 0 434 IRQ_TYPE_LEVEL_HIGH>, /* int_a */ 2443 <0 0 0 2 &intc 0 0 0 435 IRQ_TYPE_LEVEL_HIGH>, /* int_b */ 2444 <0 0 0 3 &intc 0 0 0 438 IRQ_TYPE_LEVEL_HIGH>, /* int_c */ 2445 <0 0 0 4 &intc 0 0 0 439 IRQ_TYPE_LEVEL_HIGH>; /* int_d */ 2446 2447 clocks = <&gcc GCC_PCIE_1_PIPE_CLK>, 2448 <&gcc GCC_PCIE_1_AUX_CLK>, 2449 <&gcc GCC_PCIE_1_CFG_AHB_CLK>, 2450 <&gcc GCC_PCIE_1_MSTR_AXI_CLK>, 2451 <&gcc GCC_PCIE_1_SLV_AXI_CLK>, 2452 <&gcc GCC_PCIE_1_SLV_Q2A_AXI_CLK>, 2453 <&gcc GCC_PCIE_1_CLKREF_CLK>, 2454 <&gcc GCC_AGGRE_NOC_PCIE_TBU_CLK>; 2455 clock-names = "pipe", 2456 "aux", 2457 "cfg", 2458 "bus_master", 2459 "bus_slave", 2460 "slave_q2a", 2461 "ref", 2462 "tbu"; 2463 2464 assigned-clocks = <&gcc GCC_PCIE_1_AUX_CLK>; 2465 assigned-clock-rates = <19200000>; 2466 2467 iommu-map = <0x0 &apps_smmu 0x1c00 0x1>, 2468 <0x100 &apps_smmu 0x1c01 0x1>, 2469 <0x200 &apps_smmu 0x1c02 0x1>, 2470 <0x300 &apps_smmu 0x1c03 0x1>, 2471 <0x400 &apps_smmu 0x1c04 0x1>, 2472 <0x500 &apps_smmu 0x1c05 0x1>, 2473 <0x600 &apps_smmu 0x1c06 0x1>, 2474 <0x700 &apps_smmu 0x1c07 0x1>, 2475 <0x800 &apps_smmu 0x1c08 0x1>, 2476 <0x900 &apps_smmu 0x1c09 0x1>, 2477 <0xa00 &apps_smmu 0x1c0a 0x1>, 2478 <0xb00 &apps_smmu 0x1c0b 0x1>, 2479 <0xc00 &apps_smmu 0x1c0c 0x1>, 2480 <0xd00 &apps_smmu 0x1c0d 0x1>, 2481 <0xe00 &apps_smmu 0x1c0e 0x1>, 2482 <0xf00 &apps_smmu 0x1c0f 0x1>; 2483 2484 resets = <&gcc GCC_PCIE_1_BCR>; 2485 reset-names = "pci"; 2486 2487 power-domains = <&gcc PCIE_1_GDSC>; 2488 2489 phys = <&pcie1_phy>; 2490 phy-names = "pciephy"; 2491 2492 status = "disabled"; 2493 2494 pcie@0 { 2495 device_type = "pci"; 2496 reg = <0x0 0x0 0x0 0x0 0x0>; 2497 bus-range = <0x01 0xff>; 2498 2499 #address-cells = <3>; 2500 #size-cells = <2>; 2501 ranges; 2502 }; 2503 }; 2504 2505 pcie1_phy: phy@1c0a000 { 2506 compatible = "qcom,sdm845-qhp-pcie-phy"; 2507 reg = <0 0x01c0a000 0 0x2000>; 2508 clocks = <&gcc GCC_PCIE_PHY_AUX_CLK>, 2509 <&gcc GCC_PCIE_1_CFG_AHB_CLK>, 2510 <&gcc GCC_PCIE_1_CLKREF_CLK>, 2511 <&gcc GCC_PCIE_PHY_REFGEN_CLK>, 2512 <&gcc GCC_PCIE_1_PIPE_CLK>; 2513 clock-names = "aux", 2514 "cfg_ahb", 2515 "ref", 2516 "refgen", 2517 "pipe"; 2518 2519 clock-output-names = "pcie_1_pipe_clk"; 2520 #clock-cells = <0>; 2521 2522 #phy-cells = <0>; 2523 2524 resets = <&gcc GCC_PCIE_1_PHY_BCR>; 2525 reset-names = "phy"; 2526 2527 assigned-clocks = <&gcc GCC_PCIE_PHY_REFGEN_CLK>; 2528 assigned-clock-rates = <100000000>; 2529 2530 status = "disabled"; 2531 }; 2532 2533 mem_noc: interconnect@1380000 { 2534 compatible = "qcom,sdm845-mem-noc"; 2535 reg = <0 0x01380000 0 0x27200>; 2536 #interconnect-cells = <2>; 2537 qcom,bcm-voters = <&apps_bcm_voter>; 2538 }; 2539 2540 dc_noc: interconnect@14e0000 { 2541 compatible = "qcom,sdm845-dc-noc"; 2542 reg = <0 0x014e0000 0 0x400>; 2543 #interconnect-cells = <2>; 2544 qcom,bcm-voters = <&apps_bcm_voter>; 2545 }; 2546 2547 config_noc: interconnect@1500000 { 2548 compatible = "qcom,sdm845-config-noc"; 2549 reg = <0 0x01500000 0 0x5080>; 2550 #interconnect-cells = <2>; 2551 qcom,bcm-voters = <&apps_bcm_voter>; 2552 }; 2553 2554 system_noc: interconnect@1620000 { 2555 compatible = "qcom,sdm845-system-noc"; 2556 reg = <0 0x01620000 0 0x18080>; 2557 #interconnect-cells = <2>; 2558 qcom,bcm-voters = <&apps_bcm_voter>; 2559 }; 2560 2561 aggre1_noc: interconnect@16e0000 { 2562 compatible = "qcom,sdm845-aggre1-noc"; 2563 reg = <0 0x016e0000 0 0x15080>; 2564 #interconnect-cells = <2>; 2565 qcom,bcm-voters = <&apps_bcm_voter>; 2566 }; 2567 2568 aggre2_noc: interconnect@1700000 { 2569 compatible = "qcom,sdm845-aggre2-noc"; 2570 reg = <0 0x01700000 0 0x1f300>; 2571 #interconnect-cells = <2>; 2572 qcom,bcm-voters = <&apps_bcm_voter>; 2573 }; 2574 2575 mmss_noc: interconnect@1740000 { 2576 compatible = "qcom,sdm845-mmss-noc"; 2577 reg = <0 0x01740000 0 0x1c100>; 2578 #interconnect-cells = <2>; 2579 qcom,bcm-voters = <&apps_bcm_voter>; 2580 }; 2581 2582 ufs_mem_hc: ufshc@1d84000 { 2583 compatible = "qcom,sdm845-ufshc", "qcom,ufshc", 2584 "jedec,ufs-2.0"; 2585 reg = <0 0x01d84000 0 0x2500>, 2586 <0 0x01d90000 0 0x8000>; 2587 reg-names = "std", "ice"; 2588 interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>; 2589 phys = <&ufs_mem_phy>; 2590 phy-names = "ufsphy"; 2591 lanes-per-direction = <2>; 2592 power-domains = <&gcc UFS_PHY_GDSC>; 2593 #reset-cells = <1>; 2594 resets = <&gcc GCC_UFS_PHY_BCR>; 2595 reset-names = "rst"; 2596 2597 iommus = <&apps_smmu 0x100 0xf>; 2598 2599 clock-names = 2600 "core_clk", 2601 "bus_aggr_clk", 2602 "iface_clk", 2603 "core_clk_unipro", 2604 "ref_clk", 2605 "tx_lane0_sync_clk", 2606 "rx_lane0_sync_clk", 2607 "rx_lane1_sync_clk", 2608 "ice_core_clk"; 2609 clocks = 2610 <&gcc GCC_UFS_PHY_AXI_CLK>, 2611 <&gcc GCC_AGGRE_UFS_PHY_AXI_CLK>, 2612 <&gcc GCC_UFS_PHY_AHB_CLK>, 2613 <&gcc GCC_UFS_PHY_UNIPRO_CORE_CLK>, 2614 <&rpmhcc RPMH_CXO_CLK>, 2615 <&gcc GCC_UFS_PHY_TX_SYMBOL_0_CLK>, 2616 <&gcc GCC_UFS_PHY_RX_SYMBOL_0_CLK>, 2617 <&gcc GCC_UFS_PHY_RX_SYMBOL_1_CLK>, 2618 <&gcc GCC_UFS_PHY_ICE_CORE_CLK>; 2619 2620 operating-points-v2 = <&ufs_opp_table>; 2621 2622 interconnects = <&aggre1_noc MASTER_UFS_MEM 0 &mem_noc SLAVE_EBI1 0>, 2623 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_UFS_MEM_CFG 0>; 2624 interconnect-names = "ufs-ddr", "cpu-ufs"; 2625 2626 status = "disabled"; 2627 2628 ufs_opp_table: opp-table { 2629 compatible = "operating-points-v2"; 2630 2631 opp-50000000 { 2632 opp-hz = /bits/ 64 <50000000>, 2633 /bits/ 64 <0>, 2634 /bits/ 64 <0>, 2635 /bits/ 64 <37500000>, 2636 /bits/ 64 <0>, 2637 /bits/ 64 <0>, 2638 /bits/ 64 <0>, 2639 /bits/ 64 <0>, 2640 /bits/ 64 <75000000>; 2641 required-opps = <&rpmhpd_opp_low_svs>; 2642 }; 2643 2644 opp-200000000 { 2645 opp-hz = /bits/ 64 <200000000>, 2646 /bits/ 64 <0>, 2647 /bits/ 64 <0>, 2648 /bits/ 64 <150000000>, 2649 /bits/ 64 <0>, 2650 /bits/ 64 <0>, 2651 /bits/ 64 <0>, 2652 /bits/ 64 <0>, 2653 /bits/ 64 <300000000>; 2654 required-opps = <&rpmhpd_opp_nom>; 2655 }; 2656 }; 2657 }; 2658 2659 ufs_mem_phy: phy@1d87000 { 2660 compatible = "qcom,sdm845-qmp-ufs-phy"; 2661 reg = <0 0x01d87000 0 0x1000>; 2662 2663 clocks = <&rpmhcc RPMH_CXO_CLK>, 2664 <&gcc GCC_UFS_PHY_PHY_AUX_CLK>, 2665 <&gcc GCC_UFS_MEM_CLKREF_CLK>; 2666 clock-names = "ref", 2667 "ref_aux", 2668 "qref"; 2669 2670 power-domains = <&gcc UFS_PHY_GDSC>; 2671 2672 resets = <&ufs_mem_hc 0>; 2673 reset-names = "ufsphy"; 2674 2675 #phy-cells = <0>; 2676 status = "disabled"; 2677 }; 2678 2679 cryptobam: dma-controller@1dc4000 { 2680 compatible = "qcom,bam-v1.7.4", "qcom,bam-v1.7.0"; 2681 reg = <0 0x01dc4000 0 0x24000>; 2682 interrupts = <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>; 2683 clocks = <&rpmhcc RPMH_CE_CLK>; 2684 clock-names = "bam_clk"; 2685 #dma-cells = <1>; 2686 qcom,ee = <0>; 2687 qcom,controlled-remotely; 2688 iommus = <&apps_smmu 0x704 0x1>, 2689 <&apps_smmu 0x706 0x1>, 2690 <&apps_smmu 0x714 0x1>, 2691 <&apps_smmu 0x716 0x1>; 2692 }; 2693 2694 crypto: crypto@1dfa000 { 2695 compatible = "qcom,crypto-v5.4"; 2696 reg = <0 0x01dfa000 0 0x6000>; 2697 clocks = <&gcc GCC_CE1_AHB_CLK>, 2698 <&gcc GCC_CE1_AXI_CLK>, 2699 <&rpmhcc RPMH_CE_CLK>; 2700 clock-names = "iface", "bus", "core"; 2701 dmas = <&cryptobam 6>, <&cryptobam 7>; 2702 dma-names = "rx", "tx"; 2703 iommus = <&apps_smmu 0x704 0x1>, 2704 <&apps_smmu 0x706 0x1>, 2705 <&apps_smmu 0x714 0x1>, 2706 <&apps_smmu 0x716 0x1>; 2707 }; 2708 2709 ipa: ipa@1e40000 { 2710 compatible = "qcom,sdm845-ipa"; 2711 2712 iommus = <&apps_smmu 0x720 0x0>, 2713 <&apps_smmu 0x722 0x0>; 2714 reg = <0 0x01e40000 0 0x7000>, 2715 <0 0x01e47000 0 0x2000>, 2716 <0 0x01e04000 0 0x2c000>; 2717 reg-names = "ipa-reg", 2718 "ipa-shared", 2719 "gsi"; 2720 2721 interrupts-extended = <&intc GIC_SPI 311 IRQ_TYPE_EDGE_RISING>, 2722 <&intc GIC_SPI 432 IRQ_TYPE_LEVEL_HIGH>, 2723 <&ipa_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 2724 <&ipa_smp2p_in 1 IRQ_TYPE_EDGE_RISING>; 2725 interrupt-names = "ipa", 2726 "gsi", 2727 "ipa-clock-query", 2728 "ipa-setup-ready"; 2729 2730 clocks = <&rpmhcc RPMH_IPA_CLK>; 2731 clock-names = "core"; 2732 2733 interconnects = <&aggre2_noc MASTER_IPA 0 &mem_noc SLAVE_EBI1 0>, 2734 <&aggre2_noc MASTER_IPA 0 &system_noc SLAVE_IMEM 0>, 2735 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_IPA_CFG 0>; 2736 interconnect-names = "memory", 2737 "imem", 2738 "config"; 2739 2740 qcom,smem-states = <&ipa_smp2p_out 0>, 2741 <&ipa_smp2p_out 1>; 2742 qcom,smem-state-names = "ipa-clock-enabled-valid", 2743 "ipa-clock-enabled"; 2744 2745 status = "disabled"; 2746 }; 2747 2748 tcsr_mutex: hwlock@1f40000 { 2749 compatible = "qcom,tcsr-mutex"; 2750 reg = <0 0x01f40000 0 0x20000>; 2751 #hwlock-cells = <1>; 2752 }; 2753 2754 tcsr_regs_1: syscon@1f60000 { 2755 compatible = "qcom,sdm845-tcsr", "syscon"; 2756 reg = <0 0x01f60000 0 0x20000>; 2757 }; 2758 2759 tlmm: pinctrl@3400000 { 2760 compatible = "qcom,sdm845-pinctrl"; 2761 reg = <0 0x03400000 0 0xc00000>; 2762 interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>; 2763 gpio-controller; 2764 #gpio-cells = <2>; 2765 interrupt-controller; 2766 #interrupt-cells = <2>; 2767 gpio-ranges = <&tlmm 0 0 151>; 2768 wakeup-parent = <&pdc_intc>; 2769 2770 cci0_default: cci0-default-state { 2771 /* SDA, SCL */ 2772 pins = "gpio17", "gpio18"; 2773 function = "cci_i2c"; 2774 2775 bias-pull-up; 2776 drive-strength = <2>; /* 2 mA */ 2777 }; 2778 2779 cci0_sleep: cci0-sleep-state { 2780 /* SDA, SCL */ 2781 pins = "gpio17", "gpio18"; 2782 function = "cci_i2c"; 2783 2784 drive-strength = <2>; /* 2 mA */ 2785 bias-pull-down; 2786 }; 2787 2788 cci1_default: cci1-default-state { 2789 /* SDA, SCL */ 2790 pins = "gpio19", "gpio20"; 2791 function = "cci_i2c"; 2792 2793 bias-pull-up; 2794 drive-strength = <2>; /* 2 mA */ 2795 }; 2796 2797 cci1_sleep: cci1-sleep-state { 2798 /* SDA, SCL */ 2799 pins = "gpio19", "gpio20"; 2800 function = "cci_i2c"; 2801 2802 drive-strength = <2>; /* 2 mA */ 2803 bias-pull-down; 2804 }; 2805 2806 qspi_clk: qspi-clk-state { 2807 pins = "gpio95"; 2808 function = "qspi_clk"; 2809 }; 2810 2811 qspi_cs0: qspi-cs0-state { 2812 pins = "gpio90"; 2813 function = "qspi_cs"; 2814 }; 2815 2816 qspi_cs1: qspi-cs1-state { 2817 pins = "gpio89"; 2818 function = "qspi_cs"; 2819 }; 2820 2821 qspi_data0: qspi-data0-state { 2822 pins = "gpio91"; 2823 function = "qspi_data"; 2824 }; 2825 2826 qspi_data1: qspi-data1-state { 2827 pins = "gpio92"; 2828 function = "qspi_data"; 2829 }; 2830 2831 qspi_data23: qspi-data23-state { 2832 pins = "gpio93", "gpio94"; 2833 function = "qspi_data"; 2834 }; 2835 2836 qup_i2c0_default: qup-i2c0-default-state { 2837 pins = "gpio0", "gpio1"; 2838 function = "qup0"; 2839 }; 2840 2841 qup_i2c1_default: qup-i2c1-default-state { 2842 pins = "gpio17", "gpio18"; 2843 function = "qup1"; 2844 }; 2845 2846 qup_i2c2_default: qup-i2c2-default-state { 2847 pins = "gpio27", "gpio28"; 2848 function = "qup2"; 2849 }; 2850 2851 qup_i2c3_default: qup-i2c3-default-state { 2852 pins = "gpio41", "gpio42"; 2853 function = "qup3"; 2854 }; 2855 2856 qup_i2c4_default: qup-i2c4-default-state { 2857 pins = "gpio89", "gpio90"; 2858 function = "qup4"; 2859 }; 2860 2861 qup_i2c5_default: qup-i2c5-default-state { 2862 pins = "gpio85", "gpio86"; 2863 function = "qup5"; 2864 }; 2865 2866 qup_i2c6_default: qup-i2c6-default-state { 2867 pins = "gpio45", "gpio46"; 2868 function = "qup6"; 2869 }; 2870 2871 qup_i2c7_default: qup-i2c7-default-state { 2872 pins = "gpio93", "gpio94"; 2873 function = "qup7"; 2874 }; 2875 2876 qup_i2c8_default: qup-i2c8-default-state { 2877 pins = "gpio65", "gpio66"; 2878 function = "qup8"; 2879 }; 2880 2881 qup_i2c9_default: qup-i2c9-default-state { 2882 pins = "gpio6", "gpio7"; 2883 function = "qup9"; 2884 }; 2885 2886 qup_i2c10_default: qup-i2c10-default-state { 2887 pins = "gpio55", "gpio56"; 2888 function = "qup10"; 2889 }; 2890 2891 qup_i2c11_default: qup-i2c11-default-state { 2892 pins = "gpio31", "gpio32"; 2893 function = "qup11"; 2894 }; 2895 2896 qup_i2c12_default: qup-i2c12-default-state { 2897 pins = "gpio49", "gpio50"; 2898 function = "qup12"; 2899 }; 2900 2901 qup_i2c13_default: qup-i2c13-default-state { 2902 pins = "gpio105", "gpio106"; 2903 function = "qup13"; 2904 }; 2905 2906 qup_i2c14_default: qup-i2c14-default-state { 2907 pins = "gpio33", "gpio34"; 2908 function = "qup14"; 2909 }; 2910 2911 qup_i2c15_default: qup-i2c15-default-state { 2912 pins = "gpio81", "gpio82"; 2913 function = "qup15"; 2914 }; 2915 2916 qup_spi0_default: qup-spi0-default-state { 2917 pins = "gpio0", "gpio1", "gpio2", "gpio3"; 2918 function = "qup0"; 2919 }; 2920 2921 qup_spi1_default: qup-spi1-default-state { 2922 pins = "gpio17", "gpio18", "gpio19", "gpio20"; 2923 function = "qup1"; 2924 }; 2925 2926 qup_spi2_default: qup-spi2-default-state { 2927 pins = "gpio27", "gpio28", "gpio29", "gpio30"; 2928 function = "qup2"; 2929 }; 2930 2931 qup_spi3_default: qup-spi3-default-state { 2932 pins = "gpio41", "gpio42", "gpio43", "gpio44"; 2933 function = "qup3"; 2934 }; 2935 2936 qup_spi4_default: qup-spi4-default-state { 2937 pins = "gpio89", "gpio90", "gpio91", "gpio92"; 2938 function = "qup4"; 2939 }; 2940 2941 qup_spi5_default: qup-spi5-default-state { 2942 pins = "gpio85", "gpio86", "gpio87", "gpio88"; 2943 function = "qup5"; 2944 }; 2945 2946 qup_spi6_default: qup-spi6-default-state { 2947 pins = "gpio45", "gpio46", "gpio47", "gpio48"; 2948 function = "qup6"; 2949 }; 2950 2951 qup_spi7_default: qup-spi7-default-state { 2952 pins = "gpio93", "gpio94", "gpio95", "gpio96"; 2953 function = "qup7"; 2954 }; 2955 2956 qup_spi8_default: qup-spi8-default-state { 2957 pins = "gpio65", "gpio66", "gpio67", "gpio68"; 2958 function = "qup8"; 2959 }; 2960 2961 qup_spi9_default: qup-spi9-default-state { 2962 pins = "gpio6", "gpio7", "gpio4", "gpio5"; 2963 function = "qup9"; 2964 }; 2965 2966 qup_spi10_default: qup-spi10-default-state { 2967 pins = "gpio55", "gpio56", "gpio53", "gpio54"; 2968 function = "qup10"; 2969 }; 2970 2971 qup_spi11_default: qup-spi11-default-state { 2972 pins = "gpio31", "gpio32", "gpio33", "gpio34"; 2973 function = "qup11"; 2974 }; 2975 2976 qup_spi12_default: qup-spi12-default-state { 2977 pins = "gpio49", "gpio50", "gpio51", "gpio52"; 2978 function = "qup12"; 2979 }; 2980 2981 qup_spi13_default: qup-spi13-default-state { 2982 pins = "gpio105", "gpio106", "gpio107", "gpio108"; 2983 function = "qup13"; 2984 }; 2985 2986 qup_spi14_default: qup-spi14-default-state { 2987 pins = "gpio33", "gpio34", "gpio31", "gpio32"; 2988 function = "qup14"; 2989 }; 2990 2991 qup_spi15_default: qup-spi15-default-state { 2992 pins = "gpio81", "gpio82", "gpio83", "gpio84"; 2993 function = "qup15"; 2994 }; 2995 2996 qup_uart0_default: qup-uart0-default-state { 2997 qup_uart0_tx: tx-pins { 2998 pins = "gpio2"; 2999 function = "qup0"; 3000 }; 3001 3002 qup_uart0_rx: rx-pins { 3003 pins = "gpio3"; 3004 function = "qup0"; 3005 }; 3006 }; 3007 3008 qup_uart1_default: qup-uart1-default-state { 3009 qup_uart1_tx: tx-pins { 3010 pins = "gpio19"; 3011 function = "qup1"; 3012 }; 3013 3014 qup_uart1_rx: rx-pins { 3015 pins = "gpio20"; 3016 function = "qup1"; 3017 }; 3018 }; 3019 3020 qup_uart2_default: qup-uart2-default-state { 3021 qup_uart2_tx: tx-pins { 3022 pins = "gpio29"; 3023 function = "qup2"; 3024 }; 3025 3026 qup_uart2_rx: rx-pins { 3027 pins = "gpio30"; 3028 function = "qup2"; 3029 }; 3030 }; 3031 3032 qup_uart3_default: qup-uart3-default-state { 3033 qup_uart3_tx: tx-pins { 3034 pins = "gpio43"; 3035 function = "qup3"; 3036 }; 3037 3038 qup_uart3_rx: rx-pins { 3039 pins = "gpio44"; 3040 function = "qup3"; 3041 }; 3042 }; 3043 3044 qup_uart3_4pin: qup-uart3-4pin-state { 3045 qup_uart3_4pin_cts: cts-pins { 3046 pins = "gpio41"; 3047 function = "qup3"; 3048 }; 3049 3050 qup_uart3_4pin_rts_tx: rts-tx-pins { 3051 pins = "gpio42", "gpio43"; 3052 function = "qup3"; 3053 }; 3054 3055 qup_uart3_4pin_rx: rx-pins { 3056 pins = "gpio44"; 3057 function = "qup3"; 3058 }; 3059 }; 3060 3061 qup_uart4_default: qup-uart4-default-state { 3062 qup_uart4_tx: tx-pins { 3063 pins = "gpio91"; 3064 function = "qup4"; 3065 }; 3066 3067 qup_uart4_rx: rx-pins { 3068 pins = "gpio92"; 3069 function = "qup4"; 3070 }; 3071 }; 3072 3073 qup_uart5_default: qup-uart5-default-state { 3074 qup_uart5_tx: tx-pins { 3075 pins = "gpio87"; 3076 function = "qup5"; 3077 }; 3078 3079 qup_uart5_rx: rx-pins { 3080 pins = "gpio88"; 3081 function = "qup5"; 3082 }; 3083 }; 3084 3085 qup_uart6_default: qup-uart6-default-state { 3086 qup_uart6_tx: tx-pins { 3087 pins = "gpio47"; 3088 function = "qup6"; 3089 }; 3090 3091 qup_uart6_rx: rx-pins { 3092 pins = "gpio48"; 3093 function = "qup6"; 3094 }; 3095 }; 3096 3097 qup_uart6_4pin: qup-uart6-4pin-state { 3098 qup_uart6_4pin_cts: cts-pins { 3099 pins = "gpio45"; 3100 function = "qup6"; 3101 bias-pull-down; 3102 }; 3103 3104 qup_uart6_4pin_rts_tx: rts-tx-pins { 3105 pins = "gpio46", "gpio47"; 3106 function = "qup6"; 3107 drive-strength = <2>; 3108 bias-disable; 3109 }; 3110 3111 qup_uart6_4pin_rx: rx-pins { 3112 pins = "gpio48"; 3113 function = "qup6"; 3114 bias-pull-up; 3115 }; 3116 }; 3117 3118 qup_uart7_default: qup-uart7-default-state { 3119 qup_uart7_tx: tx-pins { 3120 pins = "gpio95"; 3121 function = "qup7"; 3122 }; 3123 3124 qup_uart7_rx: rx-pins { 3125 pins = "gpio96"; 3126 function = "qup7"; 3127 }; 3128 }; 3129 3130 qup_uart8_default: qup-uart8-default-state { 3131 qup_uart8_tx: tx-pins { 3132 pins = "gpio67"; 3133 function = "qup8"; 3134 }; 3135 3136 qup_uart8_rx: rx-pins { 3137 pins = "gpio68"; 3138 function = "qup8"; 3139 }; 3140 }; 3141 3142 qup_uart9_default: qup-uart9-default-state { 3143 qup_uart9_tx: tx-pins { 3144 pins = "gpio4"; 3145 function = "qup9"; 3146 }; 3147 3148 qup_uart9_rx: rx-pins { 3149 pins = "gpio5"; 3150 function = "qup9"; 3151 }; 3152 }; 3153 3154 qup_uart10_default: qup-uart10-default-state { 3155 qup_uart10_tx: tx-pins { 3156 pins = "gpio53"; 3157 function = "qup10"; 3158 }; 3159 3160 qup_uart10_rx: rx-pins { 3161 pins = "gpio54"; 3162 function = "qup10"; 3163 }; 3164 }; 3165 3166 qup_uart11_default: qup-uart11-default-state { 3167 qup_uart11_tx: tx-pins { 3168 pins = "gpio33"; 3169 function = "qup11"; 3170 }; 3171 3172 qup_uart11_rx: rx-pins { 3173 pins = "gpio34"; 3174 function = "qup11"; 3175 }; 3176 }; 3177 3178 qup_uart12_default: qup-uart12-default-state { 3179 qup_uart12_tx: tx-pins { 3180 pins = "gpio51"; 3181 function = "qup0"; 3182 }; 3183 3184 qup_uart12_rx: rx-pins { 3185 pins = "gpio52"; 3186 function = "qup0"; 3187 }; 3188 }; 3189 3190 qup_uart13_default: qup-uart13-default-state { 3191 qup_uart13_tx: tx-pins { 3192 pins = "gpio107"; 3193 function = "qup13"; 3194 }; 3195 3196 qup_uart13_rx: rx-pins { 3197 pins = "gpio108"; 3198 function = "qup13"; 3199 }; 3200 }; 3201 3202 qup_uart14_default: qup-uart14-default-state { 3203 qup_uart14_tx: tx-pins { 3204 pins = "gpio31"; 3205 function = "qup14"; 3206 }; 3207 3208 qup_uart14_rx: rx-pins { 3209 pins = "gpio32"; 3210 function = "qup14"; 3211 }; 3212 }; 3213 3214 qup_uart15_default: qup-uart15-default-state { 3215 qup_uart15_tx: tx-pins { 3216 pins = "gpio83"; 3217 function = "qup15"; 3218 }; 3219 3220 qup_uart15_rx: rx-pins { 3221 pins = "gpio84"; 3222 function = "qup15"; 3223 }; 3224 }; 3225 3226 quat_mi2s_sleep: quat-mi2s-sleep-state { 3227 pins = "gpio58", "gpio59"; 3228 function = "gpio"; 3229 drive-strength = <2>; 3230 bias-pull-down; 3231 }; 3232 3233 quat_mi2s_active: quat-mi2s-active-state { 3234 pins = "gpio58", "gpio59"; 3235 function = "qua_mi2s"; 3236 drive-strength = <8>; 3237 bias-disable; 3238 output-high; 3239 }; 3240 3241 quat_mi2s_sd0_sleep: quat-mi2s-sd0-sleep-state { 3242 pins = "gpio60"; 3243 function = "gpio"; 3244 drive-strength = <2>; 3245 bias-pull-down; 3246 }; 3247 3248 quat_mi2s_sd0_active: quat-mi2s-sd0-active-state { 3249 pins = "gpio60"; 3250 function = "qua_mi2s"; 3251 drive-strength = <8>; 3252 bias-disable; 3253 }; 3254 3255 quat_mi2s_sd1_sleep: quat-mi2s-sd1-sleep-state { 3256 pins = "gpio61"; 3257 function = "gpio"; 3258 drive-strength = <2>; 3259 bias-pull-down; 3260 }; 3261 3262 quat_mi2s_sd1_active: quat-mi2s-sd1-active-state { 3263 pins = "gpio61"; 3264 function = "qua_mi2s"; 3265 drive-strength = <8>; 3266 bias-disable; 3267 }; 3268 3269 quat_mi2s_sd2_sleep: quat-mi2s-sd2-sleep-state { 3270 pins = "gpio62"; 3271 function = "gpio"; 3272 drive-strength = <2>; 3273 bias-pull-down; 3274 }; 3275 3276 quat_mi2s_sd2_active: quat-mi2s-sd2-active-state { 3277 pins = "gpio62"; 3278 function = "qua_mi2s"; 3279 drive-strength = <8>; 3280 bias-disable; 3281 }; 3282 3283 quat_mi2s_sd3_sleep: quat-mi2s-sd3-sleep-state { 3284 pins = "gpio63"; 3285 function = "gpio"; 3286 drive-strength = <2>; 3287 bias-pull-down; 3288 }; 3289 3290 quat_mi2s_sd3_active: quat-mi2s-sd3-active-state { 3291 pins = "gpio63"; 3292 function = "qua_mi2s"; 3293 drive-strength = <8>; 3294 bias-disable; 3295 }; 3296 }; 3297 3298 mss_pil: remoteproc@4080000 { 3299 compatible = "qcom,sdm845-mss-pil"; 3300 reg = <0 0x04080000 0 0x408>, <0 0x04180000 0 0x48>; 3301 reg-names = "qdsp6", "rmb"; 3302 3303 interrupts-extended = 3304 <&intc GIC_SPI 266 IRQ_TYPE_EDGE_RISING>, 3305 <&modem_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 3306 <&modem_smp2p_in 1 IRQ_TYPE_EDGE_RISING>, 3307 <&modem_smp2p_in 2 IRQ_TYPE_EDGE_RISING>, 3308 <&modem_smp2p_in 3 IRQ_TYPE_EDGE_RISING>, 3309 <&modem_smp2p_in 7 IRQ_TYPE_EDGE_RISING>; 3310 interrupt-names = "wdog", "fatal", "ready", 3311 "handover", "stop-ack", 3312 "shutdown-ack"; 3313 3314 clocks = <&gcc GCC_MSS_CFG_AHB_CLK>, 3315 <&gcc GCC_MSS_Q6_MEMNOC_AXI_CLK>, 3316 <&gcc GCC_BOOT_ROM_AHB_CLK>, 3317 <&gcc GCC_MSS_GPLL0_DIV_CLK_SRC>, 3318 <&gcc GCC_MSS_SNOC_AXI_CLK>, 3319 <&gcc GCC_MSS_MFAB_AXIS_CLK>, 3320 <&gcc GCC_PRNG_AHB_CLK>, 3321 <&rpmhcc RPMH_CXO_CLK>; 3322 clock-names = "iface", "bus", "mem", "gpll0_mss", 3323 "snoc_axi", "mnoc_axi", "prng", "xo"; 3324 3325 qcom,qmp = <&aoss_qmp>; 3326 3327 qcom,smem-states = <&modem_smp2p_out 0>; 3328 qcom,smem-state-names = "stop"; 3329 3330 resets = <&aoss_reset AOSS_CC_MSS_RESTART>, 3331 <&pdc_reset PDC_MODEM_SYNC_RESET>; 3332 reset-names = "mss_restart", "pdc_reset"; 3333 3334 qcom,halt-regs = <&tcsr_regs_1 0x3000 0x5000 0x4000>; 3335 3336 power-domains = <&rpmhpd SDM845_CX>, 3337 <&rpmhpd SDM845_MX>, 3338 <&rpmhpd SDM845_MSS>; 3339 power-domain-names = "cx", "mx", "mss"; 3340 3341 status = "disabled"; 3342 3343 mba { 3344 memory-region = <&mba_region>; 3345 }; 3346 3347 mpss { 3348 memory-region = <&mpss_region>; 3349 }; 3350 3351 metadata { 3352 memory-region = <&mdata_mem>; 3353 }; 3354 3355 glink-edge { 3356 interrupts = <GIC_SPI 449 IRQ_TYPE_EDGE_RISING>; 3357 label = "modem"; 3358 qcom,remote-pid = <1>; 3359 mboxes = <&apss_shared 12>; 3360 }; 3361 }; 3362 3363 gpucc: clock-controller@5090000 { 3364 compatible = "qcom,sdm845-gpucc"; 3365 reg = <0 0x05090000 0 0x9000>; 3366 #clock-cells = <1>; 3367 #reset-cells = <1>; 3368 #power-domain-cells = <1>; 3369 clocks = <&rpmhcc RPMH_CXO_CLK>, 3370 <&gcc GCC_GPU_GPLL0_CLK_SRC>, 3371 <&gcc GCC_GPU_GPLL0_DIV_CLK_SRC>; 3372 clock-names = "bi_tcxo", 3373 "gcc_gpu_gpll0_clk_src", 3374 "gcc_gpu_gpll0_div_clk_src"; 3375 }; 3376 3377 slpi_pas: remoteproc@5c00000 { 3378 compatible = "qcom,sdm845-slpi-pas"; 3379 reg = <0 0x5c00000 0 0x4000>; 3380 3381 interrupts-extended = <&intc GIC_SPI 494 IRQ_TYPE_EDGE_RISING>, 3382 <&slpi_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 3383 <&slpi_smp2p_in 1 IRQ_TYPE_EDGE_RISING>, 3384 <&slpi_smp2p_in 2 IRQ_TYPE_EDGE_RISING>, 3385 <&slpi_smp2p_in 3 IRQ_TYPE_EDGE_RISING>; 3386 interrupt-names = "wdog", "fatal", "ready", 3387 "handover", "stop-ack"; 3388 3389 clocks = <&rpmhcc RPMH_CXO_CLK>; 3390 clock-names = "xo"; 3391 3392 qcom,qmp = <&aoss_qmp>; 3393 3394 power-domains = <&rpmhpd SDM845_LCX>, 3395 <&rpmhpd SDM845_LMX>; 3396 power-domain-names = "lcx", "lmx"; 3397 3398 memory-region = <&slpi_mem>; 3399 3400 qcom,smem-states = <&slpi_smp2p_out 0>; 3401 qcom,smem-state-names = "stop"; 3402 3403 status = "disabled"; 3404 3405 glink-edge { 3406 interrupts = <GIC_SPI 170 IRQ_TYPE_EDGE_RISING>; 3407 label = "dsps"; 3408 qcom,remote-pid = <3>; 3409 mboxes = <&apss_shared 24>; 3410 3411 fastrpc { 3412 compatible = "qcom,fastrpc"; 3413 qcom,glink-channels = "fastrpcglink-apps-dsp"; 3414 label = "sdsp"; 3415 qcom,non-secure-domain; 3416 qcom,vmids = <QCOM_SCM_VMID_HLOS QCOM_SCM_VMID_MSS_MSA 3417 QCOM_SCM_VMID_SSC_Q6 QCOM_SCM_VMID_ADSP_Q6>; 3418 memory-region = <&fastrpc_mem>; 3419 #address-cells = <1>; 3420 #size-cells = <0>; 3421 3422 compute-cb@0 { 3423 compatible = "qcom,fastrpc-compute-cb"; 3424 reg = <0>; 3425 }; 3426 }; 3427 }; 3428 }; 3429 3430 stm@6002000 { 3431 compatible = "arm,coresight-stm", "arm,primecell"; 3432 reg = <0 0x06002000 0 0x1000>, 3433 <0 0x16280000 0 0x180000>; 3434 reg-names = "stm-base", "stm-stimulus-base"; 3435 3436 clocks = <&aoss_qmp>; 3437 clock-names = "apb_pclk"; 3438 3439 out-ports { 3440 port { 3441 stm_out: endpoint { 3442 remote-endpoint = 3443 <&funnel0_in7>; 3444 }; 3445 }; 3446 }; 3447 }; 3448 3449 funnel@6041000 { 3450 compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 3451 reg = <0 0x06041000 0 0x1000>; 3452 3453 clocks = <&aoss_qmp>; 3454 clock-names = "apb_pclk"; 3455 3456 out-ports { 3457 port { 3458 funnel0_out: endpoint { 3459 remote-endpoint = 3460 <&merge_funnel_in0>; 3461 }; 3462 }; 3463 }; 3464 3465 in-ports { 3466 #address-cells = <1>; 3467 #size-cells = <0>; 3468 3469 port@7 { 3470 reg = <7>; 3471 funnel0_in7: endpoint { 3472 remote-endpoint = <&stm_out>; 3473 }; 3474 }; 3475 }; 3476 }; 3477 3478 funnel@6043000 { 3479 compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 3480 reg = <0 0x06043000 0 0x1000>; 3481 3482 clocks = <&aoss_qmp>; 3483 clock-names = "apb_pclk"; 3484 3485 out-ports { 3486 port { 3487 funnel2_out: endpoint { 3488 remote-endpoint = 3489 <&merge_funnel_in2>; 3490 }; 3491 }; 3492 }; 3493 3494 in-ports { 3495 #address-cells = <1>; 3496 #size-cells = <0>; 3497 3498 port@5 { 3499 reg = <5>; 3500 funnel2_in5: endpoint { 3501 remote-endpoint = 3502 <&apss_merge_funnel_out>; 3503 }; 3504 }; 3505 }; 3506 }; 3507 3508 funnel@6045000 { 3509 compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 3510 reg = <0 0x06045000 0 0x1000>; 3511 3512 clocks = <&aoss_qmp>; 3513 clock-names = "apb_pclk"; 3514 3515 out-ports { 3516 port { 3517 merge_funnel_out: endpoint { 3518 remote-endpoint = <&etf_in>; 3519 }; 3520 }; 3521 }; 3522 3523 in-ports { 3524 #address-cells = <1>; 3525 #size-cells = <0>; 3526 3527 port@0 { 3528 reg = <0>; 3529 merge_funnel_in0: endpoint { 3530 remote-endpoint = 3531 <&funnel0_out>; 3532 }; 3533 }; 3534 3535 port@2 { 3536 reg = <2>; 3537 merge_funnel_in2: endpoint { 3538 remote-endpoint = 3539 <&funnel2_out>; 3540 }; 3541 }; 3542 }; 3543 }; 3544 3545 replicator@6046000 { 3546 compatible = "arm,coresight-dynamic-replicator", "arm,primecell"; 3547 reg = <0 0x06046000 0 0x1000>; 3548 3549 clocks = <&aoss_qmp>; 3550 clock-names = "apb_pclk"; 3551 3552 out-ports { 3553 port { 3554 replicator_out: endpoint { 3555 remote-endpoint = <&etr_in>; 3556 }; 3557 }; 3558 }; 3559 3560 in-ports { 3561 port { 3562 replicator_in: endpoint { 3563 remote-endpoint = <&etf_out>; 3564 }; 3565 }; 3566 }; 3567 }; 3568 3569 etf@6047000 { 3570 compatible = "arm,coresight-tmc", "arm,primecell"; 3571 reg = <0 0x06047000 0 0x1000>; 3572 3573 clocks = <&aoss_qmp>; 3574 clock-names = "apb_pclk"; 3575 3576 out-ports { 3577 port { 3578 etf_out: endpoint { 3579 remote-endpoint = 3580 <&replicator_in>; 3581 }; 3582 }; 3583 }; 3584 3585 in-ports { 3586 3587 port { 3588 etf_in: endpoint { 3589 remote-endpoint = 3590 <&merge_funnel_out>; 3591 }; 3592 }; 3593 }; 3594 }; 3595 3596 etr@6048000 { 3597 compatible = "arm,coresight-tmc", "arm,primecell"; 3598 reg = <0 0x06048000 0 0x1000>; 3599 3600 clocks = <&aoss_qmp>; 3601 clock-names = "apb_pclk"; 3602 arm,scatter-gather; 3603 3604 in-ports { 3605 port { 3606 etr_in: endpoint { 3607 remote-endpoint = 3608 <&replicator_out>; 3609 }; 3610 }; 3611 }; 3612 }; 3613 3614 etm@7040000 { 3615 compatible = "arm,coresight-etm4x", "arm,primecell"; 3616 reg = <0 0x07040000 0 0x1000>; 3617 3618 cpu = <&cpu0>; 3619 3620 clocks = <&aoss_qmp>; 3621 clock-names = "apb_pclk"; 3622 arm,coresight-loses-context-with-cpu; 3623 3624 out-ports { 3625 port { 3626 etm0_out: endpoint { 3627 remote-endpoint = 3628 <&apss_funnel_in0>; 3629 }; 3630 }; 3631 }; 3632 }; 3633 3634 etm@7140000 { 3635 compatible = "arm,coresight-etm4x", "arm,primecell"; 3636 reg = <0 0x07140000 0 0x1000>; 3637 3638 cpu = <&cpu1>; 3639 3640 clocks = <&aoss_qmp>; 3641 clock-names = "apb_pclk"; 3642 arm,coresight-loses-context-with-cpu; 3643 3644 out-ports { 3645 port { 3646 etm1_out: endpoint { 3647 remote-endpoint = 3648 <&apss_funnel_in1>; 3649 }; 3650 }; 3651 }; 3652 }; 3653 3654 etm@7240000 { 3655 compatible = "arm,coresight-etm4x", "arm,primecell"; 3656 reg = <0 0x07240000 0 0x1000>; 3657 3658 cpu = <&cpu2>; 3659 3660 clocks = <&aoss_qmp>; 3661 clock-names = "apb_pclk"; 3662 arm,coresight-loses-context-with-cpu; 3663 3664 out-ports { 3665 port { 3666 etm2_out: endpoint { 3667 remote-endpoint = 3668 <&apss_funnel_in2>; 3669 }; 3670 }; 3671 }; 3672 }; 3673 3674 etm@7340000 { 3675 compatible = "arm,coresight-etm4x", "arm,primecell"; 3676 reg = <0 0x07340000 0 0x1000>; 3677 3678 cpu = <&cpu3>; 3679 3680 clocks = <&aoss_qmp>; 3681 clock-names = "apb_pclk"; 3682 arm,coresight-loses-context-with-cpu; 3683 3684 out-ports { 3685 port { 3686 etm3_out: endpoint { 3687 remote-endpoint = 3688 <&apss_funnel_in3>; 3689 }; 3690 }; 3691 }; 3692 }; 3693 3694 etm@7440000 { 3695 compatible = "arm,coresight-etm4x", "arm,primecell"; 3696 reg = <0 0x07440000 0 0x1000>; 3697 3698 cpu = <&cpu4>; 3699 3700 clocks = <&aoss_qmp>; 3701 clock-names = "apb_pclk"; 3702 arm,coresight-loses-context-with-cpu; 3703 3704 out-ports { 3705 port { 3706 etm4_out: endpoint { 3707 remote-endpoint = 3708 <&apss_funnel_in4>; 3709 }; 3710 }; 3711 }; 3712 }; 3713 3714 etm@7540000 { 3715 compatible = "arm,coresight-etm4x", "arm,primecell"; 3716 reg = <0 0x07540000 0 0x1000>; 3717 3718 cpu = <&cpu5>; 3719 3720 clocks = <&aoss_qmp>; 3721 clock-names = "apb_pclk"; 3722 arm,coresight-loses-context-with-cpu; 3723 3724 out-ports { 3725 port { 3726 etm5_out: endpoint { 3727 remote-endpoint = 3728 <&apss_funnel_in5>; 3729 }; 3730 }; 3731 }; 3732 }; 3733 3734 etm@7640000 { 3735 compatible = "arm,coresight-etm4x", "arm,primecell"; 3736 reg = <0 0x07640000 0 0x1000>; 3737 3738 cpu = <&cpu6>; 3739 3740 clocks = <&aoss_qmp>; 3741 clock-names = "apb_pclk"; 3742 arm,coresight-loses-context-with-cpu; 3743 3744 out-ports { 3745 port { 3746 etm6_out: endpoint { 3747 remote-endpoint = 3748 <&apss_funnel_in6>; 3749 }; 3750 }; 3751 }; 3752 }; 3753 3754 etm@7740000 { 3755 compatible = "arm,coresight-etm4x", "arm,primecell"; 3756 reg = <0 0x07740000 0 0x1000>; 3757 3758 cpu = <&cpu7>; 3759 3760 clocks = <&aoss_qmp>; 3761 clock-names = "apb_pclk"; 3762 arm,coresight-loses-context-with-cpu; 3763 3764 out-ports { 3765 port { 3766 etm7_out: endpoint { 3767 remote-endpoint = 3768 <&apss_funnel_in7>; 3769 }; 3770 }; 3771 }; 3772 }; 3773 3774 funnel@7800000 { /* APSS Funnel */ 3775 compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 3776 reg = <0 0x07800000 0 0x1000>; 3777 3778 clocks = <&aoss_qmp>; 3779 clock-names = "apb_pclk"; 3780 3781 out-ports { 3782 port { 3783 apss_funnel_out: endpoint { 3784 remote-endpoint = 3785 <&apss_merge_funnel_in>; 3786 }; 3787 }; 3788 }; 3789 3790 in-ports { 3791 #address-cells = <1>; 3792 #size-cells = <0>; 3793 3794 port@0 { 3795 reg = <0>; 3796 apss_funnel_in0: endpoint { 3797 remote-endpoint = 3798 <&etm0_out>; 3799 }; 3800 }; 3801 3802 port@1 { 3803 reg = <1>; 3804 apss_funnel_in1: endpoint { 3805 remote-endpoint = 3806 <&etm1_out>; 3807 }; 3808 }; 3809 3810 port@2 { 3811 reg = <2>; 3812 apss_funnel_in2: endpoint { 3813 remote-endpoint = 3814 <&etm2_out>; 3815 }; 3816 }; 3817 3818 port@3 { 3819 reg = <3>; 3820 apss_funnel_in3: endpoint { 3821 remote-endpoint = 3822 <&etm3_out>; 3823 }; 3824 }; 3825 3826 port@4 { 3827 reg = <4>; 3828 apss_funnel_in4: endpoint { 3829 remote-endpoint = 3830 <&etm4_out>; 3831 }; 3832 }; 3833 3834 port@5 { 3835 reg = <5>; 3836 apss_funnel_in5: endpoint { 3837 remote-endpoint = 3838 <&etm5_out>; 3839 }; 3840 }; 3841 3842 port@6 { 3843 reg = <6>; 3844 apss_funnel_in6: endpoint { 3845 remote-endpoint = 3846 <&etm6_out>; 3847 }; 3848 }; 3849 3850 port@7 { 3851 reg = <7>; 3852 apss_funnel_in7: endpoint { 3853 remote-endpoint = 3854 <&etm7_out>; 3855 }; 3856 }; 3857 }; 3858 }; 3859 3860 funnel@7810000 { 3861 compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 3862 reg = <0 0x07810000 0 0x1000>; 3863 3864 clocks = <&aoss_qmp>; 3865 clock-names = "apb_pclk"; 3866 3867 out-ports { 3868 port { 3869 apss_merge_funnel_out: endpoint { 3870 remote-endpoint = 3871 <&funnel2_in5>; 3872 }; 3873 }; 3874 }; 3875 3876 in-ports { 3877 port { 3878 apss_merge_funnel_in: endpoint { 3879 remote-endpoint = 3880 <&apss_funnel_out>; 3881 }; 3882 }; 3883 }; 3884 }; 3885 3886 sdhc_2: mmc@8804000 { 3887 compatible = "qcom,sdm845-sdhci", "qcom,sdhci-msm-v5"; 3888 reg = <0 0x08804000 0 0x1000>; 3889 3890 interrupts = <GIC_SPI 204 IRQ_TYPE_LEVEL_HIGH>, 3891 <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>; 3892 interrupt-names = "hc_irq", "pwr_irq"; 3893 3894 clocks = <&gcc GCC_SDCC2_AHB_CLK>, 3895 <&gcc GCC_SDCC2_APPS_CLK>, 3896 <&rpmhcc RPMH_CXO_CLK>; 3897 clock-names = "iface", "core", "xo"; 3898 iommus = <&apps_smmu 0xa0 0xf>; 3899 power-domains = <&rpmhpd SDM845_CX>; 3900 operating-points-v2 = <&sdhc2_opp_table>; 3901 3902 status = "disabled"; 3903 3904 sdhc2_opp_table: opp-table { 3905 compatible = "operating-points-v2"; 3906 3907 opp-9600000 { 3908 opp-hz = /bits/ 64 <9600000>; 3909 required-opps = <&rpmhpd_opp_min_svs>; 3910 }; 3911 3912 opp-19200000 { 3913 opp-hz = /bits/ 64 <19200000>; 3914 required-opps = <&rpmhpd_opp_low_svs>; 3915 }; 3916 3917 opp-100000000 { 3918 opp-hz = /bits/ 64 <100000000>; 3919 required-opps = <&rpmhpd_opp_svs>; 3920 }; 3921 3922 opp-201500000 { 3923 opp-hz = /bits/ 64 <201500000>; 3924 required-opps = <&rpmhpd_opp_svs_l1>; 3925 }; 3926 }; 3927 }; 3928 3929 qspi: spi@88df000 { 3930 compatible = "qcom,sdm845-qspi", "qcom,qspi-v1"; 3931 reg = <0 0x088df000 0 0x600>; 3932 iommus = <&apps_smmu 0x160 0x0>; 3933 #address-cells = <1>; 3934 #size-cells = <0>; 3935 interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; 3936 clocks = <&gcc GCC_QSPI_CNOC_PERIPH_AHB_CLK>, 3937 <&gcc GCC_QSPI_CORE_CLK>; 3938 clock-names = "iface", "core"; 3939 power-domains = <&rpmhpd SDM845_CX>; 3940 operating-points-v2 = <&qspi_opp_table>; 3941 status = "disabled"; 3942 }; 3943 3944 slim: slim-ngd@171c0000 { 3945 compatible = "qcom,slim-ngd-v2.1.0"; 3946 reg = <0 0x171c0000 0 0x2c000>; 3947 interrupts = <GIC_SPI 163 IRQ_TYPE_LEVEL_HIGH>; 3948 3949 dmas = <&slimbam 3>, <&slimbam 4>; 3950 dma-names = "rx", "tx"; 3951 3952 iommus = <&apps_smmu 0x1806 0x0>; 3953 #address-cells = <1>; 3954 #size-cells = <0>; 3955 status = "disabled"; 3956 }; 3957 3958 lmh_cluster1: lmh@17d70800 { 3959 compatible = "qcom,sdm845-lmh"; 3960 reg = <0 0x17d70800 0 0x400>; 3961 interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; 3962 cpus = <&cpu4>; 3963 qcom,lmh-temp-arm-millicelsius = <65000>; 3964 qcom,lmh-temp-low-millicelsius = <94500>; 3965 qcom,lmh-temp-high-millicelsius = <95000>; 3966 interrupt-controller; 3967 #interrupt-cells = <1>; 3968 }; 3969 3970 lmh_cluster0: lmh@17d78800 { 3971 compatible = "qcom,sdm845-lmh"; 3972 reg = <0 0x17d78800 0 0x400>; 3973 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; 3974 cpus = <&cpu0>; 3975 qcom,lmh-temp-arm-millicelsius = <65000>; 3976 qcom,lmh-temp-low-millicelsius = <94500>; 3977 qcom,lmh-temp-high-millicelsius = <95000>; 3978 interrupt-controller; 3979 #interrupt-cells = <1>; 3980 }; 3981 3982 usb_1_hsphy: phy@88e2000 { 3983 compatible = "qcom,sdm845-qusb2-phy", "qcom,qusb2-v2-phy"; 3984 reg = <0 0x088e2000 0 0x400>; 3985 status = "disabled"; 3986 #phy-cells = <0>; 3987 3988 clocks = <&gcc GCC_USB_PHY_CFG_AHB2PHY_CLK>, 3989 <&rpmhcc RPMH_CXO_CLK>; 3990 clock-names = "cfg_ahb", "ref"; 3991 3992 resets = <&gcc GCC_QUSB2PHY_PRIM_BCR>; 3993 3994 nvmem-cells = <&qusb2p_hstx_trim>; 3995 }; 3996 3997 usb_2_hsphy: phy@88e3000 { 3998 compatible = "qcom,sdm845-qusb2-phy", "qcom,qusb2-v2-phy"; 3999 reg = <0 0x088e3000 0 0x400>; 4000 status = "disabled"; 4001 #phy-cells = <0>; 4002 4003 clocks = <&gcc GCC_USB_PHY_CFG_AHB2PHY_CLK>, 4004 <&rpmhcc RPMH_CXO_CLK>; 4005 clock-names = "cfg_ahb", "ref"; 4006 4007 resets = <&gcc GCC_QUSB2PHY_SEC_BCR>; 4008 4009 nvmem-cells = <&qusb2s_hstx_trim>; 4010 }; 4011 4012 usb_1_qmpphy: phy@88e8000 { 4013 compatible = "qcom,sdm845-qmp-usb3-dp-phy"; 4014 reg = <0 0x088e8000 0 0x3000>; 4015 status = "disabled"; 4016 4017 clocks = <&gcc GCC_USB3_PRIM_PHY_AUX_CLK>, 4018 <&gcc GCC_USB3_PRIM_CLKREF_CLK>, 4019 <&gcc GCC_USB3_PRIM_PHY_COM_AUX_CLK>, 4020 <&gcc GCC_USB3_PRIM_PHY_PIPE_CLK>, 4021 <&gcc GCC_USB_PHY_CFG_AHB2PHY_CLK>; 4022 clock-names = "aux", 4023 "ref", 4024 "com_aux", 4025 "usb3_pipe", 4026 "cfg_ahb"; 4027 4028 resets = <&gcc GCC_USB3_PHY_PRIM_BCR>, 4029 <&gcc GCC_USB3_DP_PHY_PRIM_BCR>; 4030 reset-names = "phy", "common"; 4031 4032 #clock-cells = <1>; 4033 #phy-cells = <1>; 4034 orientation-switch; 4035 4036 ports { 4037 #address-cells = <1>; 4038 #size-cells = <0>; 4039 4040 port@0 { 4041 reg = <0>; 4042 4043 usb_1_qmpphy_out: endpoint { 4044 }; 4045 }; 4046 4047 port@1 { 4048 reg = <1>; 4049 4050 usb_1_qmpphy_usb_ss_in: endpoint { 4051 remote-endpoint = <&usb_1_dwc3_ss>; 4052 }; 4053 }; 4054 4055 port@2 { 4056 reg = <2>; 4057 4058 usb_1_qmpphy_dp_in: endpoint { 4059 remote-endpoint = <&dp_out>; 4060 }; 4061 }; 4062 }; 4063 }; 4064 4065 usb_2_qmpphy: phy@88eb000 { 4066 compatible = "qcom,sdm845-qmp-usb3-uni-phy"; 4067 reg = <0 0x088eb000 0 0x1000>; 4068 4069 clocks = <&gcc GCC_USB3_SEC_PHY_AUX_CLK>, 4070 <&gcc GCC_USB_PHY_CFG_AHB2PHY_CLK>, 4071 <&gcc GCC_USB3_SEC_CLKREF_CLK>, 4072 <&gcc GCC_USB3_SEC_PHY_COM_AUX_CLK>, 4073 <&gcc GCC_USB3_SEC_PHY_PIPE_CLK>; 4074 clock-names = "aux", 4075 "cfg_ahb", 4076 "ref", 4077 "com_aux", 4078 "pipe"; 4079 clock-output-names = "usb3_uni_phy_pipe_clk_src"; 4080 #clock-cells = <0>; 4081 #phy-cells = <0>; 4082 4083 resets = <&gcc GCC_USB3_PHY_SEC_BCR>, 4084 <&gcc GCC_USB3PHY_PHY_SEC_BCR>; 4085 reset-names = "phy", 4086 "phy_phy"; 4087 4088 status = "disabled"; 4089 }; 4090 4091 usb_1: usb@a6f8800 { 4092 compatible = "qcom,sdm845-dwc3", "qcom,dwc3"; 4093 reg = <0 0x0a6f8800 0 0x400>; 4094 status = "disabled"; 4095 #address-cells = <2>; 4096 #size-cells = <2>; 4097 ranges; 4098 dma-ranges; 4099 4100 clocks = <&gcc GCC_CFG_NOC_USB3_PRIM_AXI_CLK>, 4101 <&gcc GCC_USB30_PRIM_MASTER_CLK>, 4102 <&gcc GCC_AGGRE_USB3_PRIM_AXI_CLK>, 4103 <&gcc GCC_USB30_PRIM_SLEEP_CLK>, 4104 <&gcc GCC_USB30_PRIM_MOCK_UTMI_CLK>; 4105 clock-names = "cfg_noc", 4106 "core", 4107 "iface", 4108 "sleep", 4109 "mock_utmi"; 4110 4111 assigned-clocks = <&gcc GCC_USB30_PRIM_MOCK_UTMI_CLK>, 4112 <&gcc GCC_USB30_PRIM_MASTER_CLK>; 4113 assigned-clock-rates = <19200000>, <150000000>; 4114 4115 interrupts-extended = <&intc GIC_SPI 130 IRQ_TYPE_LEVEL_HIGH>, 4116 <&intc GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>, 4117 <&pdc_intc 9 IRQ_TYPE_EDGE_BOTH>, 4118 <&pdc_intc 8 IRQ_TYPE_EDGE_BOTH>, 4119 <&pdc_intc 6 IRQ_TYPE_LEVEL_HIGH>; 4120 interrupt-names = "pwr_event", 4121 "hs_phy_irq", 4122 "dp_hs_phy_irq", 4123 "dm_hs_phy_irq", 4124 "ss_phy_irq"; 4125 4126 power-domains = <&gcc USB30_PRIM_GDSC>; 4127 4128 resets = <&gcc GCC_USB30_PRIM_BCR>; 4129 4130 interconnects = <&aggre2_noc MASTER_USB3_0 0 &mem_noc SLAVE_EBI1 0>, 4131 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_USB3_0 0>; 4132 interconnect-names = "usb-ddr", "apps-usb"; 4133 4134 usb_1_dwc3: usb@a600000 { 4135 compatible = "snps,dwc3"; 4136 reg = <0 0x0a600000 0 0xcd00>; 4137 interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>; 4138 iommus = <&apps_smmu 0x740 0>; 4139 snps,dis_u2_susphy_quirk; 4140 snps,dis_enblslpm_quirk; 4141 snps,parkmode-disable-ss-quirk; 4142 snps,dis-u1-entry-quirk; 4143 snps,dis-u2-entry-quirk; 4144 phys = <&usb_1_hsphy>, <&usb_1_qmpphy QMP_USB43DP_USB3_PHY>; 4145 phy-names = "usb2-phy", "usb3-phy"; 4146 4147 ports { 4148 #address-cells = <1>; 4149 #size-cells = <0>; 4150 4151 port@0 { 4152 reg = <0>; 4153 4154 usb_1_dwc3_hs: endpoint { 4155 }; 4156 }; 4157 4158 port@1 { 4159 reg = <1>; 4160 4161 usb_1_dwc3_ss: endpoint { 4162 remote-endpoint = <&usb_1_qmpphy_usb_ss_in>; 4163 }; 4164 }; 4165 }; 4166 }; 4167 }; 4168 4169 usb_2: usb@a8f8800 { 4170 compatible = "qcom,sdm845-dwc3", "qcom,dwc3"; 4171 reg = <0 0x0a8f8800 0 0x400>; 4172 status = "disabled"; 4173 #address-cells = <2>; 4174 #size-cells = <2>; 4175 ranges; 4176 dma-ranges; 4177 4178 clocks = <&gcc GCC_CFG_NOC_USB3_SEC_AXI_CLK>, 4179 <&gcc GCC_USB30_SEC_MASTER_CLK>, 4180 <&gcc GCC_AGGRE_USB3_SEC_AXI_CLK>, 4181 <&gcc GCC_USB30_SEC_SLEEP_CLK>, 4182 <&gcc GCC_USB30_SEC_MOCK_UTMI_CLK>; 4183 clock-names = "cfg_noc", 4184 "core", 4185 "iface", 4186 "sleep", 4187 "mock_utmi"; 4188 4189 assigned-clocks = <&gcc GCC_USB30_SEC_MOCK_UTMI_CLK>, 4190 <&gcc GCC_USB30_SEC_MASTER_CLK>; 4191 assigned-clock-rates = <19200000>, <150000000>; 4192 4193 interrupts-extended = <&intc GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>, 4194 <&intc GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>, 4195 <&pdc_intc 11 IRQ_TYPE_EDGE_BOTH>, 4196 <&pdc_intc 10 IRQ_TYPE_EDGE_BOTH>, 4197 <&pdc_intc 7 IRQ_TYPE_LEVEL_HIGH>; 4198 interrupt-names = "pwr_event", 4199 "hs_phy_irq", 4200 "dp_hs_phy_irq", 4201 "dm_hs_phy_irq", 4202 "ss_phy_irq"; 4203 4204 power-domains = <&gcc USB30_SEC_GDSC>; 4205 4206 resets = <&gcc GCC_USB30_SEC_BCR>; 4207 4208 interconnects = <&aggre2_noc MASTER_USB3_1 0 &mem_noc SLAVE_EBI1 0>, 4209 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_USB3_1 0>; 4210 interconnect-names = "usb-ddr", "apps-usb"; 4211 4212 usb_2_dwc3: usb@a800000 { 4213 compatible = "snps,dwc3"; 4214 reg = <0 0x0a800000 0 0xcd00>; 4215 interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>; 4216 iommus = <&apps_smmu 0x760 0>; 4217 snps,dis_u2_susphy_quirk; 4218 snps,dis_enblslpm_quirk; 4219 snps,parkmode-disable-ss-quirk; 4220 snps,dis-u1-entry-quirk; 4221 snps,dis-u2-entry-quirk; 4222 phys = <&usb_2_hsphy>, <&usb_2_qmpphy>; 4223 phy-names = "usb2-phy", "usb3-phy"; 4224 }; 4225 }; 4226 4227 venus: video-codec@aa00000 { 4228 compatible = "qcom,sdm845-venus-v2"; 4229 reg = <0 0x0aa00000 0 0xff000>; 4230 interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>; 4231 power-domains = <&videocc VENUS_GDSC>, 4232 <&videocc VCODEC0_GDSC>, 4233 <&videocc VCODEC1_GDSC>, 4234 <&rpmhpd SDM845_CX>; 4235 power-domain-names = "venus", "vcodec0", "vcodec1", "cx"; 4236 operating-points-v2 = <&venus_opp_table>; 4237 clocks = <&videocc VIDEO_CC_VENUS_CTL_CORE_CLK>, 4238 <&videocc VIDEO_CC_VENUS_AHB_CLK>, 4239 <&videocc VIDEO_CC_VENUS_CTL_AXI_CLK>, 4240 <&videocc VIDEO_CC_VCODEC0_CORE_CLK>, 4241 <&videocc VIDEO_CC_VCODEC0_AXI_CLK>, 4242 <&videocc VIDEO_CC_VCODEC1_CORE_CLK>, 4243 <&videocc VIDEO_CC_VCODEC1_AXI_CLK>; 4244 clock-names = "core", "iface", "bus", 4245 "vcodec0_core", "vcodec0_bus", 4246 "vcodec1_core", "vcodec1_bus"; 4247 iommus = <&apps_smmu 0x10a0 0x8>, 4248 <&apps_smmu 0x10b0 0x0>; 4249 memory-region = <&venus_mem>; 4250 interconnects = <&mmss_noc MASTER_VIDEO_P0 0 &mem_noc SLAVE_EBI1 0>, 4251 <&gladiator_noc MASTER_APPSS_PROC 0 &config_noc SLAVE_VENUS_CFG 0>; 4252 interconnect-names = "video-mem", "cpu-cfg"; 4253 4254 status = "disabled"; 4255 4256 video-core0 { 4257 compatible = "venus-decoder"; 4258 }; 4259 4260 video-core1 { 4261 compatible = "venus-encoder"; 4262 }; 4263 4264 venus_opp_table: opp-table { 4265 compatible = "operating-points-v2"; 4266 4267 opp-100000000 { 4268 opp-hz = /bits/ 64 <100000000>; 4269 required-opps = <&rpmhpd_opp_min_svs>; 4270 }; 4271 4272 opp-200000000 { 4273 opp-hz = /bits/ 64 <200000000>; 4274 required-opps = <&rpmhpd_opp_low_svs>; 4275 }; 4276 4277 opp-320000000 { 4278 opp-hz = /bits/ 64 <320000000>; 4279 required-opps = <&rpmhpd_opp_svs>; 4280 }; 4281 4282 opp-380000000 { 4283 opp-hz = /bits/ 64 <380000000>; 4284 required-opps = <&rpmhpd_opp_svs_l1>; 4285 }; 4286 4287 opp-444000000 { 4288 opp-hz = /bits/ 64 <444000000>; 4289 required-opps = <&rpmhpd_opp_nom>; 4290 }; 4291 4292 opp-533000097 { 4293 opp-hz = /bits/ 64 <533000097>; 4294 required-opps = <&rpmhpd_opp_turbo>; 4295 }; 4296 }; 4297 }; 4298 4299 videocc: clock-controller@ab00000 { 4300 compatible = "qcom,sdm845-videocc"; 4301 reg = <0 0x0ab00000 0 0x10000>; 4302 clocks = <&rpmhcc RPMH_CXO_CLK>; 4303 clock-names = "bi_tcxo"; 4304 #clock-cells = <1>; 4305 #power-domain-cells = <1>; 4306 #reset-cells = <1>; 4307 }; 4308 4309 camss: camss@acb3000 { 4310 compatible = "qcom,sdm845-camss"; 4311 4312 reg = <0 0x0acb3000 0 0x1000>, 4313 <0 0x0acba000 0 0x1000>, 4314 <0 0x0acc8000 0 0x1000>, 4315 <0 0x0ac65000 0 0x1000>, 4316 <0 0x0ac66000 0 0x1000>, 4317 <0 0x0ac67000 0 0x1000>, 4318 <0 0x0ac68000 0 0x1000>, 4319 <0 0x0acaf000 0 0x4000>, 4320 <0 0x0acb6000 0 0x4000>, 4321 <0 0x0acc4000 0 0x4000>; 4322 reg-names = "csid0", 4323 "csid1", 4324 "csid2", 4325 "csiphy0", 4326 "csiphy1", 4327 "csiphy2", 4328 "csiphy3", 4329 "vfe0", 4330 "vfe1", 4331 "vfe_lite"; 4332 4333 interrupts = <GIC_SPI 464 IRQ_TYPE_EDGE_RISING>, 4334 <GIC_SPI 466 IRQ_TYPE_EDGE_RISING>, 4335 <GIC_SPI 468 IRQ_TYPE_EDGE_RISING>, 4336 <GIC_SPI 477 IRQ_TYPE_EDGE_RISING>, 4337 <GIC_SPI 478 IRQ_TYPE_EDGE_RISING>, 4338 <GIC_SPI 479 IRQ_TYPE_EDGE_RISING>, 4339 <GIC_SPI 448 IRQ_TYPE_EDGE_RISING>, 4340 <GIC_SPI 465 IRQ_TYPE_EDGE_RISING>, 4341 <GIC_SPI 467 IRQ_TYPE_EDGE_RISING>, 4342 <GIC_SPI 469 IRQ_TYPE_EDGE_RISING>; 4343 interrupt-names = "csid0", 4344 "csid1", 4345 "csid2", 4346 "csiphy0", 4347 "csiphy1", 4348 "csiphy2", 4349 "csiphy3", 4350 "vfe0", 4351 "vfe1", 4352 "vfe_lite"; 4353 4354 power-domains = <&clock_camcc IFE_0_GDSC>, 4355 <&clock_camcc IFE_1_GDSC>, 4356 <&clock_camcc TITAN_TOP_GDSC>; 4357 4358 clocks = <&clock_camcc CAM_CC_CAMNOC_AXI_CLK>, 4359 <&clock_camcc CAM_CC_CPAS_AHB_CLK>, 4360 <&clock_camcc CAM_CC_CPHY_RX_CLK_SRC>, 4361 <&clock_camcc CAM_CC_IFE_0_CSID_CLK>, 4362 <&clock_camcc CAM_CC_IFE_0_CSID_CLK_SRC>, 4363 <&clock_camcc CAM_CC_IFE_1_CSID_CLK>, 4364 <&clock_camcc CAM_CC_IFE_1_CSID_CLK_SRC>, 4365 <&clock_camcc CAM_CC_IFE_LITE_CSID_CLK>, 4366 <&clock_camcc CAM_CC_IFE_LITE_CSID_CLK_SRC>, 4367 <&clock_camcc CAM_CC_CSIPHY0_CLK>, 4368 <&clock_camcc CAM_CC_CSI0PHYTIMER_CLK>, 4369 <&clock_camcc CAM_CC_CSI0PHYTIMER_CLK_SRC>, 4370 <&clock_camcc CAM_CC_CSIPHY1_CLK>, 4371 <&clock_camcc CAM_CC_CSI1PHYTIMER_CLK>, 4372 <&clock_camcc CAM_CC_CSI1PHYTIMER_CLK_SRC>, 4373 <&clock_camcc CAM_CC_CSIPHY2_CLK>, 4374 <&clock_camcc CAM_CC_CSI2PHYTIMER_CLK>, 4375 <&clock_camcc CAM_CC_CSI2PHYTIMER_CLK_SRC>, 4376 <&clock_camcc CAM_CC_CSIPHY3_CLK>, 4377 <&clock_camcc CAM_CC_CSI3PHYTIMER_CLK>, 4378 <&clock_camcc CAM_CC_CSI3PHYTIMER_CLK_SRC>, 4379 <&gcc GCC_CAMERA_AHB_CLK>, 4380 <&gcc GCC_CAMERA_AXI_CLK>, 4381 <&clock_camcc CAM_CC_SLOW_AHB_CLK_SRC>, 4382 <&clock_camcc CAM_CC_SOC_AHB_CLK>, 4383 <&clock_camcc CAM_CC_IFE_0_AXI_CLK>, 4384 <&clock_camcc CAM_CC_IFE_0_CLK>, 4385 <&clock_camcc CAM_CC_IFE_0_CPHY_RX_CLK>, 4386 <&clock_camcc CAM_CC_IFE_0_CLK_SRC>, 4387 <&clock_camcc CAM_CC_IFE_1_AXI_CLK>, 4388 <&clock_camcc CAM_CC_IFE_1_CLK>, 4389 <&clock_camcc CAM_CC_IFE_1_CPHY_RX_CLK>, 4390 <&clock_camcc CAM_CC_IFE_1_CLK_SRC>, 4391 <&clock_camcc CAM_CC_IFE_LITE_CLK>, 4392 <&clock_camcc CAM_CC_IFE_LITE_CPHY_RX_CLK>, 4393 <&clock_camcc CAM_CC_IFE_LITE_CLK_SRC>; 4394 clock-names = "camnoc_axi", 4395 "cpas_ahb", 4396 "cphy_rx_src", 4397 "csi0", 4398 "csi0_src", 4399 "csi1", 4400 "csi1_src", 4401 "csi2", 4402 "csi2_src", 4403 "csiphy0", 4404 "csiphy0_timer", 4405 "csiphy0_timer_src", 4406 "csiphy1", 4407 "csiphy1_timer", 4408 "csiphy1_timer_src", 4409 "csiphy2", 4410 "csiphy2_timer", 4411 "csiphy2_timer_src", 4412 "csiphy3", 4413 "csiphy3_timer", 4414 "csiphy3_timer_src", 4415 "gcc_camera_ahb", 4416 "gcc_camera_axi", 4417 "slow_ahb_src", 4418 "soc_ahb", 4419 "vfe0_axi", 4420 "vfe0", 4421 "vfe0_cphy_rx", 4422 "vfe0_src", 4423 "vfe1_axi", 4424 "vfe1", 4425 "vfe1_cphy_rx", 4426 "vfe1_src", 4427 "vfe_lite", 4428 "vfe_lite_cphy_rx", 4429 "vfe_lite_src"; 4430 4431 iommus = <&apps_smmu 0x0808 0x0>, 4432 <&apps_smmu 0x0810 0x8>, 4433 <&apps_smmu 0x0c08 0x0>, 4434 <&apps_smmu 0x0c10 0x8>; 4435 4436 status = "disabled"; 4437 4438 ports { 4439 #address-cells = <1>; 4440 #size-cells = <0>; 4441 4442 port@0 { 4443 reg = <0>; 4444 }; 4445 4446 port@1 { 4447 reg = <1>; 4448 }; 4449 4450 port@2 { 4451 reg = <2>; 4452 }; 4453 4454 port@3 { 4455 reg = <3>; 4456 }; 4457 }; 4458 }; 4459 4460 cci: cci@ac4a000 { 4461 compatible = "qcom,sdm845-cci", "qcom,msm8996-cci"; 4462 #address-cells = <1>; 4463 #size-cells = <0>; 4464 4465 reg = <0 0x0ac4a000 0 0x4000>; 4466 interrupts = <GIC_SPI 460 IRQ_TYPE_EDGE_RISING>; 4467 power-domains = <&clock_camcc TITAN_TOP_GDSC>; 4468 4469 clocks = <&clock_camcc CAM_CC_CAMNOC_AXI_CLK>, 4470 <&clock_camcc CAM_CC_SOC_AHB_CLK>, 4471 <&clock_camcc CAM_CC_SLOW_AHB_CLK_SRC>, 4472 <&clock_camcc CAM_CC_CPAS_AHB_CLK>, 4473 <&clock_camcc CAM_CC_CCI_CLK>, 4474 <&clock_camcc CAM_CC_CCI_CLK_SRC>; 4475 clock-names = "camnoc_axi", 4476 "soc_ahb", 4477 "slow_ahb_src", 4478 "cpas_ahb", 4479 "cci", 4480 "cci_src"; 4481 4482 assigned-clocks = <&clock_camcc CAM_CC_CAMNOC_AXI_CLK>, 4483 <&clock_camcc CAM_CC_CCI_CLK>; 4484 assigned-clock-rates = <80000000>, <37500000>; 4485 4486 pinctrl-names = "default", "sleep"; 4487 pinctrl-0 = <&cci0_default &cci1_default>; 4488 pinctrl-1 = <&cci0_sleep &cci1_sleep>; 4489 4490 status = "disabled"; 4491 4492 cci_i2c0: i2c-bus@0 { 4493 reg = <0>; 4494 clock-frequency = <1000000>; 4495 #address-cells = <1>; 4496 #size-cells = <0>; 4497 }; 4498 4499 cci_i2c1: i2c-bus@1 { 4500 reg = <1>; 4501 clock-frequency = <1000000>; 4502 #address-cells = <1>; 4503 #size-cells = <0>; 4504 }; 4505 }; 4506 4507 clock_camcc: clock-controller@ad00000 { 4508 compatible = "qcom,sdm845-camcc"; 4509 reg = <0 0x0ad00000 0 0x10000>; 4510 #clock-cells = <1>; 4511 #reset-cells = <1>; 4512 #power-domain-cells = <1>; 4513 clocks = <&rpmhcc RPMH_CXO_CLK>; 4514 clock-names = "bi_tcxo"; 4515 }; 4516 4517 mdss: display-subsystem@ae00000 { 4518 compatible = "qcom,sdm845-mdss"; 4519 reg = <0 0x0ae00000 0 0x1000>; 4520 reg-names = "mdss"; 4521 4522 power-domains = <&dispcc MDSS_GDSC>; 4523 4524 clocks = <&dispcc DISP_CC_MDSS_AHB_CLK>, 4525 <&dispcc DISP_CC_MDSS_MDP_CLK>; 4526 clock-names = "iface", "core"; 4527 4528 interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; 4529 interrupt-controller; 4530 #interrupt-cells = <1>; 4531 4532 interconnects = <&mmss_noc MASTER_MDP0 0 &mem_noc SLAVE_EBI1 0>, 4533 <&mmss_noc MASTER_MDP1 0 &mem_noc SLAVE_EBI1 0>; 4534 interconnect-names = "mdp0-mem", "mdp1-mem"; 4535 4536 iommus = <&apps_smmu 0x880 0x8>, 4537 <&apps_smmu 0xc80 0x8>; 4538 4539 status = "disabled"; 4540 4541 #address-cells = <2>; 4542 #size-cells = <2>; 4543 ranges; 4544 4545 mdss_mdp: display-controller@ae01000 { 4546 compatible = "qcom,sdm845-dpu"; 4547 reg = <0 0x0ae01000 0 0x8f000>, 4548 <0 0x0aeb0000 0 0x2008>; 4549 reg-names = "mdp", "vbif"; 4550 4551 clocks = <&gcc GCC_DISP_AXI_CLK>, 4552 <&dispcc DISP_CC_MDSS_AHB_CLK>, 4553 <&dispcc DISP_CC_MDSS_AXI_CLK>, 4554 <&dispcc DISP_CC_MDSS_MDP_CLK>, 4555 <&dispcc DISP_CC_MDSS_VSYNC_CLK>; 4556 clock-names = "gcc-bus", "iface", "bus", "core", "vsync"; 4557 4558 assigned-clocks = <&dispcc DISP_CC_MDSS_VSYNC_CLK>; 4559 assigned-clock-rates = <19200000>; 4560 operating-points-v2 = <&mdp_opp_table>; 4561 power-domains = <&rpmhpd SDM845_CX>; 4562 4563 interrupt-parent = <&mdss>; 4564 interrupts = <0>; 4565 4566 ports { 4567 #address-cells = <1>; 4568 #size-cells = <0>; 4569 4570 port@0 { 4571 reg = <0>; 4572 dpu_intf0_out: endpoint { 4573 remote-endpoint = <&dp_in>; 4574 }; 4575 }; 4576 4577 port@1 { 4578 reg = <1>; 4579 dpu_intf1_out: endpoint { 4580 remote-endpoint = <&mdss_dsi0_in>; 4581 }; 4582 }; 4583 4584 port@2 { 4585 reg = <2>; 4586 dpu_intf2_out: endpoint { 4587 remote-endpoint = <&mdss_dsi1_in>; 4588 }; 4589 }; 4590 }; 4591 4592 mdp_opp_table: opp-table { 4593 compatible = "operating-points-v2"; 4594 4595 opp-19200000 { 4596 opp-hz = /bits/ 64 <19200000>; 4597 required-opps = <&rpmhpd_opp_min_svs>; 4598 }; 4599 4600 opp-171428571 { 4601 opp-hz = /bits/ 64 <171428571>; 4602 required-opps = <&rpmhpd_opp_low_svs>; 4603 }; 4604 4605 opp-344000000 { 4606 opp-hz = /bits/ 64 <344000000>; 4607 required-opps = <&rpmhpd_opp_svs_l1>; 4608 }; 4609 4610 opp-430000000 { 4611 opp-hz = /bits/ 64 <430000000>; 4612 required-opps = <&rpmhpd_opp_nom>; 4613 }; 4614 }; 4615 }; 4616 4617 mdss_dp: displayport-controller@ae90000 { 4618 status = "disabled"; 4619 compatible = "qcom,sdm845-dp"; 4620 4621 reg = <0 0x0ae90000 0 0x200>, 4622 <0 0x0ae90200 0 0x200>, 4623 <0 0x0ae90400 0 0x600>, 4624 <0 0x0ae90a00 0 0x600>, 4625 <0 0x0ae91000 0 0x600>; 4626 4627 interrupt-parent = <&mdss>; 4628 interrupts = <12>; 4629 4630 clocks = <&dispcc DISP_CC_MDSS_AHB_CLK>, 4631 <&dispcc DISP_CC_MDSS_DP_AUX_CLK>, 4632 <&dispcc DISP_CC_MDSS_DP_LINK_CLK>, 4633 <&dispcc DISP_CC_MDSS_DP_LINK_INTF_CLK>, 4634 <&dispcc DISP_CC_MDSS_DP_PIXEL_CLK>; 4635 clock-names = "core_iface", "core_aux", "ctrl_link", 4636 "ctrl_link_iface", "stream_pixel"; 4637 assigned-clocks = <&dispcc DISP_CC_MDSS_DP_LINK_CLK_SRC>, 4638 <&dispcc DISP_CC_MDSS_DP_PIXEL_CLK_SRC>; 4639 assigned-clock-parents = <&usb_1_qmpphy QMP_USB43DP_DP_LINK_CLK>, 4640 <&usb_1_qmpphy QMP_USB43DP_DP_VCO_DIV_CLK>; 4641 phys = <&usb_1_qmpphy QMP_USB43DP_DP_PHY>; 4642 phy-names = "dp"; 4643 4644 operating-points-v2 = <&dp_opp_table>; 4645 power-domains = <&rpmhpd SDM845_CX>; 4646 4647 ports { 4648 #address-cells = <1>; 4649 #size-cells = <0>; 4650 port@0 { 4651 reg = <0>; 4652 dp_in: endpoint { 4653 remote-endpoint = <&dpu_intf0_out>; 4654 }; 4655 }; 4656 4657 port@1 { 4658 reg = <1>; 4659 dp_out: endpoint { 4660 remote-endpoint = <&usb_1_qmpphy_dp_in>; 4661 }; 4662 }; 4663 }; 4664 4665 dp_opp_table: opp-table { 4666 compatible = "operating-points-v2"; 4667 4668 opp-162000000 { 4669 opp-hz = /bits/ 64 <162000000>; 4670 required-opps = <&rpmhpd_opp_low_svs>; 4671 }; 4672 4673 opp-270000000 { 4674 opp-hz = /bits/ 64 <270000000>; 4675 required-opps = <&rpmhpd_opp_svs>; 4676 }; 4677 4678 opp-540000000 { 4679 opp-hz = /bits/ 64 <540000000>; 4680 required-opps = <&rpmhpd_opp_svs_l1>; 4681 }; 4682 4683 opp-810000000 { 4684 opp-hz = /bits/ 64 <810000000>; 4685 required-opps = <&rpmhpd_opp_nom>; 4686 }; 4687 }; 4688 }; 4689 4690 mdss_dsi0: dsi@ae94000 { 4691 compatible = "qcom,sdm845-dsi-ctrl", 4692 "qcom,mdss-dsi-ctrl"; 4693 reg = <0 0x0ae94000 0 0x400>; 4694 reg-names = "dsi_ctrl"; 4695 4696 interrupt-parent = <&mdss>; 4697 interrupts = <4>; 4698 4699 clocks = <&dispcc DISP_CC_MDSS_BYTE0_CLK>, 4700 <&dispcc DISP_CC_MDSS_BYTE0_INTF_CLK>, 4701 <&dispcc DISP_CC_MDSS_PCLK0_CLK>, 4702 <&dispcc DISP_CC_MDSS_ESC0_CLK>, 4703 <&dispcc DISP_CC_MDSS_AHB_CLK>, 4704 <&dispcc DISP_CC_MDSS_AXI_CLK>; 4705 clock-names = "byte", 4706 "byte_intf", 4707 "pixel", 4708 "core", 4709 "iface", 4710 "bus"; 4711 assigned-clocks = <&dispcc DISP_CC_MDSS_BYTE0_CLK_SRC>, <&dispcc DISP_CC_MDSS_PCLK0_CLK_SRC>; 4712 assigned-clock-parents = <&mdss_dsi0_phy 0>, <&mdss_dsi0_phy 1>; 4713 4714 operating-points-v2 = <&dsi_opp_table>; 4715 power-domains = <&rpmhpd SDM845_CX>; 4716 4717 phys = <&mdss_dsi0_phy>; 4718 4719 status = "disabled"; 4720 4721 #address-cells = <1>; 4722 #size-cells = <0>; 4723 4724 ports { 4725 #address-cells = <1>; 4726 #size-cells = <0>; 4727 4728 port@0 { 4729 reg = <0>; 4730 mdss_dsi0_in: endpoint { 4731 remote-endpoint = <&dpu_intf1_out>; 4732 }; 4733 }; 4734 4735 port@1 { 4736 reg = <1>; 4737 mdss_dsi0_out: endpoint { 4738 }; 4739 }; 4740 }; 4741 }; 4742 4743 mdss_dsi0_phy: phy@ae94400 { 4744 compatible = "qcom,dsi-phy-10nm"; 4745 reg = <0 0x0ae94400 0 0x200>, 4746 <0 0x0ae94600 0 0x280>, 4747 <0 0x0ae94a00 0 0x1e0>; 4748 reg-names = "dsi_phy", 4749 "dsi_phy_lane", 4750 "dsi_pll"; 4751 4752 #clock-cells = <1>; 4753 #phy-cells = <0>; 4754 4755 clocks = <&dispcc DISP_CC_MDSS_AHB_CLK>, 4756 <&rpmhcc RPMH_CXO_CLK>; 4757 clock-names = "iface", "ref"; 4758 4759 status = "disabled"; 4760 }; 4761 4762 mdss_dsi1: dsi@ae96000 { 4763 compatible = "qcom,sdm845-dsi-ctrl", 4764 "qcom,mdss-dsi-ctrl"; 4765 reg = <0 0x0ae96000 0 0x400>; 4766 reg-names = "dsi_ctrl"; 4767 4768 interrupt-parent = <&mdss>; 4769 interrupts = <5>; 4770 4771 clocks = <&dispcc DISP_CC_MDSS_BYTE1_CLK>, 4772 <&dispcc DISP_CC_MDSS_BYTE1_INTF_CLK>, 4773 <&dispcc DISP_CC_MDSS_PCLK1_CLK>, 4774 <&dispcc DISP_CC_MDSS_ESC1_CLK>, 4775 <&dispcc DISP_CC_MDSS_AHB_CLK>, 4776 <&dispcc DISP_CC_MDSS_AXI_CLK>; 4777 clock-names = "byte", 4778 "byte_intf", 4779 "pixel", 4780 "core", 4781 "iface", 4782 "bus"; 4783 assigned-clocks = <&dispcc DISP_CC_MDSS_BYTE1_CLK_SRC>, <&dispcc DISP_CC_MDSS_PCLK1_CLK_SRC>; 4784 assigned-clock-parents = <&mdss_dsi1_phy 0>, <&mdss_dsi1_phy 1>; 4785 4786 operating-points-v2 = <&dsi_opp_table>; 4787 power-domains = <&rpmhpd SDM845_CX>; 4788 4789 phys = <&mdss_dsi1_phy>; 4790 4791 status = "disabled"; 4792 4793 #address-cells = <1>; 4794 #size-cells = <0>; 4795 4796 ports { 4797 #address-cells = <1>; 4798 #size-cells = <0>; 4799 4800 port@0 { 4801 reg = <0>; 4802 mdss_dsi1_in: endpoint { 4803 remote-endpoint = <&dpu_intf2_out>; 4804 }; 4805 }; 4806 4807 port@1 { 4808 reg = <1>; 4809 mdss_dsi1_out: endpoint { 4810 }; 4811 }; 4812 }; 4813 }; 4814 4815 mdss_dsi1_phy: phy@ae96400 { 4816 compatible = "qcom,dsi-phy-10nm"; 4817 reg = <0 0x0ae96400 0 0x200>, 4818 <0 0x0ae96600 0 0x280>, 4819 <0 0x0ae96a00 0 0x10e>; 4820 reg-names = "dsi_phy", 4821 "dsi_phy_lane", 4822 "dsi_pll"; 4823 4824 #clock-cells = <1>; 4825 #phy-cells = <0>; 4826 4827 clocks = <&dispcc DISP_CC_MDSS_AHB_CLK>, 4828 <&rpmhcc RPMH_CXO_CLK>; 4829 clock-names = "iface", "ref"; 4830 4831 status = "disabled"; 4832 }; 4833 }; 4834 4835 gpu: gpu@5000000 { 4836 compatible = "qcom,adreno-630.2", "qcom,adreno"; 4837 4838 reg = <0 0x05000000 0 0x40000>, <0 0x509e000 0 0x10>; 4839 reg-names = "kgsl_3d0_reg_memory", "cx_mem"; 4840 4841 /* 4842 * Look ma, no clocks! The GPU clocks and power are 4843 * controlled entirely by the GMU 4844 */ 4845 4846 interrupts = <GIC_SPI 300 IRQ_TYPE_LEVEL_HIGH>; 4847 4848 iommus = <&adreno_smmu 0>; 4849 4850 operating-points-v2 = <&gpu_opp_table>; 4851 4852 qcom,gmu = <&gmu>; 4853 #cooling-cells = <2>; 4854 4855 interconnects = <&mem_noc MASTER_GFX3D 0 &mem_noc SLAVE_EBI1 0>; 4856 interconnect-names = "gfx-mem"; 4857 4858 status = "disabled"; 4859 4860 gpu_opp_table: opp-table { 4861 compatible = "operating-points-v2"; 4862 4863 opp-710000000 { 4864 opp-hz = /bits/ 64 <710000000>; 4865 opp-level = <RPMH_REGULATOR_LEVEL_TURBO_L1>; 4866 opp-peak-kBps = <7216000>; 4867 }; 4868 4869 opp-675000000 { 4870 opp-hz = /bits/ 64 <675000000>; 4871 opp-level = <RPMH_REGULATOR_LEVEL_TURBO>; 4872 opp-peak-kBps = <7216000>; 4873 }; 4874 4875 opp-596000000 { 4876 opp-hz = /bits/ 64 <596000000>; 4877 opp-level = <RPMH_REGULATOR_LEVEL_NOM_L1>; 4878 opp-peak-kBps = <6220000>; 4879 }; 4880 4881 opp-520000000 { 4882 opp-hz = /bits/ 64 <520000000>; 4883 opp-level = <RPMH_REGULATOR_LEVEL_NOM>; 4884 opp-peak-kBps = <6220000>; 4885 }; 4886 4887 opp-414000000 { 4888 opp-hz = /bits/ 64 <414000000>; 4889 opp-level = <RPMH_REGULATOR_LEVEL_SVS_L1>; 4890 opp-peak-kBps = <4068000>; 4891 }; 4892 4893 opp-342000000 { 4894 opp-hz = /bits/ 64 <342000000>; 4895 opp-level = <RPMH_REGULATOR_LEVEL_SVS>; 4896 opp-peak-kBps = <2724000>; 4897 }; 4898 4899 opp-257000000 { 4900 opp-hz = /bits/ 64 <257000000>; 4901 opp-level = <RPMH_REGULATOR_LEVEL_LOW_SVS>; 4902 opp-peak-kBps = <1648000>; 4903 }; 4904 }; 4905 }; 4906 4907 adreno_smmu: iommu@5040000 { 4908 compatible = "qcom,sdm845-smmu-v2", "qcom,adreno-smmu", "qcom,smmu-v2"; 4909 reg = <0 0x05040000 0 0x10000>; 4910 #iommu-cells = <1>; 4911 #global-interrupts = <2>; 4912 interrupts = <GIC_SPI 229 IRQ_TYPE_LEVEL_HIGH>, 4913 <GIC_SPI 231 IRQ_TYPE_LEVEL_HIGH>, 4914 <GIC_SPI 364 IRQ_TYPE_EDGE_RISING>, 4915 <GIC_SPI 365 IRQ_TYPE_EDGE_RISING>, 4916 <GIC_SPI 366 IRQ_TYPE_EDGE_RISING>, 4917 <GIC_SPI 367 IRQ_TYPE_EDGE_RISING>, 4918 <GIC_SPI 368 IRQ_TYPE_EDGE_RISING>, 4919 <GIC_SPI 369 IRQ_TYPE_EDGE_RISING>, 4920 <GIC_SPI 370 IRQ_TYPE_EDGE_RISING>, 4921 <GIC_SPI 371 IRQ_TYPE_EDGE_RISING>; 4922 clocks = <&gcc GCC_GPU_MEMNOC_GFX_CLK>, 4923 <&gcc GCC_GPU_CFG_AHB_CLK>; 4924 clock-names = "bus", "iface"; 4925 4926 power-domains = <&gpucc GPU_CX_GDSC>; 4927 }; 4928 4929 gmu: gmu@506a000 { 4930 compatible = "qcom,adreno-gmu-630.2", "qcom,adreno-gmu"; 4931 4932 reg = <0 0x0506a000 0 0x30000>, 4933 <0 0x0b280000 0 0x10000>, 4934 <0 0x0b480000 0 0x10000>; 4935 reg-names = "gmu", "gmu_pdc", "gmu_pdc_seq"; 4936 4937 interrupts = <GIC_SPI 304 IRQ_TYPE_LEVEL_HIGH>, 4938 <GIC_SPI 305 IRQ_TYPE_LEVEL_HIGH>; 4939 interrupt-names = "hfi", "gmu"; 4940 4941 clocks = <&gpucc GPU_CC_CX_GMU_CLK>, 4942 <&gpucc GPU_CC_CXO_CLK>, 4943 <&gcc GCC_DDRSS_GPU_AXI_CLK>, 4944 <&gcc GCC_GPU_MEMNOC_GFX_CLK>; 4945 clock-names = "gmu", "cxo", "axi", "memnoc"; 4946 4947 power-domains = <&gpucc GPU_CX_GDSC>, 4948 <&gpucc GPU_GX_GDSC>; 4949 power-domain-names = "cx", "gx"; 4950 4951 iommus = <&adreno_smmu 5>; 4952 4953 operating-points-v2 = <&gmu_opp_table>; 4954 4955 status = "disabled"; 4956 4957 gmu_opp_table: opp-table { 4958 compatible = "operating-points-v2"; 4959 4960 opp-400000000 { 4961 opp-hz = /bits/ 64 <400000000>; 4962 opp-level = <RPMH_REGULATOR_LEVEL_SVS>; 4963 }; 4964 4965 opp-200000000 { 4966 opp-hz = /bits/ 64 <200000000>; 4967 opp-level = <RPMH_REGULATOR_LEVEL_MIN_SVS>; 4968 }; 4969 }; 4970 }; 4971 4972 dispcc: clock-controller@af00000 { 4973 compatible = "qcom,sdm845-dispcc"; 4974 reg = <0 0x0af00000 0 0x10000>; 4975 clocks = <&rpmhcc RPMH_CXO_CLK>, 4976 <&gcc GCC_DISP_GPLL0_CLK_SRC>, 4977 <&gcc GCC_DISP_GPLL0_DIV_CLK_SRC>, 4978 <&mdss_dsi0_phy 0>, 4979 <&mdss_dsi0_phy 1>, 4980 <&mdss_dsi1_phy 0>, 4981 <&mdss_dsi1_phy 1>, 4982 <&usb_1_qmpphy QMP_USB43DP_DP_LINK_CLK>, 4983 <&usb_1_qmpphy QMP_USB43DP_DP_VCO_DIV_CLK>; 4984 clock-names = "bi_tcxo", 4985 "gcc_disp_gpll0_clk_src", 4986 "gcc_disp_gpll0_div_clk_src", 4987 "dsi0_phy_pll_out_byteclk", 4988 "dsi0_phy_pll_out_dsiclk", 4989 "dsi1_phy_pll_out_byteclk", 4990 "dsi1_phy_pll_out_dsiclk", 4991 "dp_link_clk_divsel_ten", 4992 "dp_vco_divided_clk_src_mux"; 4993 #clock-cells = <1>; 4994 #reset-cells = <1>; 4995 #power-domain-cells = <1>; 4996 }; 4997 4998 pdc_intc: interrupt-controller@b220000 { 4999 compatible = "qcom,sdm845-pdc", "qcom,pdc"; 5000 reg = <0 0x0b220000 0 0x30000>; 5001 qcom,pdc-ranges = <0 480 94>, <94 609 15>, <115 630 7>; 5002 #interrupt-cells = <2>; 5003 interrupt-parent = <&intc>; 5004 interrupt-controller; 5005 }; 5006 5007 pdc_reset: reset-controller@b2e0000 { 5008 compatible = "qcom,sdm845-pdc-global"; 5009 reg = <0 0x0b2e0000 0 0x20000>; 5010 #reset-cells = <1>; 5011 }; 5012 5013 tsens0: thermal-sensor@c263000 { 5014 compatible = "qcom,sdm845-tsens", "qcom,tsens-v2"; 5015 reg = <0 0x0c263000 0 0x1ff>, /* TM */ 5016 <0 0x0c222000 0 0x1ff>; /* SROT */ 5017 #qcom,sensors = <13>; 5018 interrupts = <GIC_SPI 506 IRQ_TYPE_LEVEL_HIGH>, 5019 <GIC_SPI 508 IRQ_TYPE_LEVEL_HIGH>; 5020 interrupt-names = "uplow", "critical"; 5021 #thermal-sensor-cells = <1>; 5022 }; 5023 5024 tsens1: thermal-sensor@c265000 { 5025 compatible = "qcom,sdm845-tsens", "qcom,tsens-v2"; 5026 reg = <0 0x0c265000 0 0x1ff>, /* TM */ 5027 <0 0x0c223000 0 0x1ff>; /* SROT */ 5028 #qcom,sensors = <8>; 5029 interrupts = <GIC_SPI 507 IRQ_TYPE_LEVEL_HIGH>, 5030 <GIC_SPI 509 IRQ_TYPE_LEVEL_HIGH>; 5031 interrupt-names = "uplow", "critical"; 5032 #thermal-sensor-cells = <1>; 5033 }; 5034 5035 aoss_reset: reset-controller@c2a0000 { 5036 compatible = "qcom,sdm845-aoss-cc"; 5037 reg = <0 0x0c2a0000 0 0x31000>; 5038 #reset-cells = <1>; 5039 }; 5040 5041 aoss_qmp: power-management@c300000 { 5042 compatible = "qcom,sdm845-aoss-qmp", "qcom,aoss-qmp"; 5043 reg = <0 0x0c300000 0 0x400>; 5044 interrupts = <GIC_SPI 389 IRQ_TYPE_EDGE_RISING>; 5045 mboxes = <&apss_shared 0>; 5046 5047 #clock-cells = <0>; 5048 5049 cx_cdev: cx { 5050 #cooling-cells = <2>; 5051 }; 5052 5053 ebi_cdev: ebi { 5054 #cooling-cells = <2>; 5055 }; 5056 }; 5057 5058 sram@c3f0000 { 5059 compatible = "qcom,sdm845-rpmh-stats"; 5060 reg = <0 0x0c3f0000 0 0x400>; 5061 }; 5062 5063 spmi_bus: spmi@c440000 { 5064 compatible = "qcom,spmi-pmic-arb"; 5065 reg = <0 0x0c440000 0 0x1100>, 5066 <0 0x0c600000 0 0x2000000>, 5067 <0 0x0e600000 0 0x100000>, 5068 <0 0x0e700000 0 0xa0000>, 5069 <0 0x0c40a000 0 0x26000>; 5070 reg-names = "core", "chnls", "obsrvr", "intr", "cnfg"; 5071 interrupt-names = "periph_irq"; 5072 interrupts = <GIC_SPI 481 IRQ_TYPE_LEVEL_HIGH>; 5073 qcom,ee = <0>; 5074 qcom,channel = <0>; 5075 #address-cells = <2>; 5076 #size-cells = <0>; 5077 interrupt-controller; 5078 #interrupt-cells = <4>; 5079 }; 5080 5081 sram@146bf000 { 5082 compatible = "qcom,sdm845-imem", "syscon", "simple-mfd"; 5083 reg = <0 0x146bf000 0 0x1000>; 5084 5085 #address-cells = <1>; 5086 #size-cells = <1>; 5087 5088 ranges = <0 0 0x146bf000 0x1000>; 5089 5090 pil-reloc@94c { 5091 compatible = "qcom,pil-reloc-info"; 5092 reg = <0x94c 0xc8>; 5093 }; 5094 }; 5095 5096 apps_smmu: iommu@15000000 { 5097 compatible = "qcom,sdm845-smmu-500", "arm,mmu-500"; 5098 reg = <0 0x15000000 0 0x80000>; 5099 #iommu-cells = <2>; 5100 #global-interrupts = <1>; 5101 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>, 5102 <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>, 5103 <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>, 5104 <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>, 5105 <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>, 5106 <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>, 5107 <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>, 5108 <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>, 5109 <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>, 5110 <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>, 5111 <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>, 5112 <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>, 5113 <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>, 5114 <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>, 5115 <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>, 5116 <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>, 5117 <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>, 5118 <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>, 5119 <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>, 5120 <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>, 5121 <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>, 5122 <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>, 5123 <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>, 5124 <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>, 5125 <GIC_SPI 181 IRQ_TYPE_LEVEL_HIGH>, 5126 <GIC_SPI 182 IRQ_TYPE_LEVEL_HIGH>, 5127 <GIC_SPI 183 IRQ_TYPE_LEVEL_HIGH>, 5128 <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>, 5129 <GIC_SPI 185 IRQ_TYPE_LEVEL_HIGH>, 5130 <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>, 5131 <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>, 5132 <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>, 5133 <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>, 5134 <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>, 5135 <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>, 5136 <GIC_SPI 192 IRQ_TYPE_LEVEL_HIGH>, 5137 <GIC_SPI 315 IRQ_TYPE_LEVEL_HIGH>, 5138 <GIC_SPI 316 IRQ_TYPE_LEVEL_HIGH>, 5139 <GIC_SPI 317 IRQ_TYPE_LEVEL_HIGH>, 5140 <GIC_SPI 318 IRQ_TYPE_LEVEL_HIGH>, 5141 <GIC_SPI 319 IRQ_TYPE_LEVEL_HIGH>, 5142 <GIC_SPI 320 IRQ_TYPE_LEVEL_HIGH>, 5143 <GIC_SPI 321 IRQ_TYPE_LEVEL_HIGH>, 5144 <GIC_SPI 322 IRQ_TYPE_LEVEL_HIGH>, 5145 <GIC_SPI 323 IRQ_TYPE_LEVEL_HIGH>, 5146 <GIC_SPI 324 IRQ_TYPE_LEVEL_HIGH>, 5147 <GIC_SPI 325 IRQ_TYPE_LEVEL_HIGH>, 5148 <GIC_SPI 326 IRQ_TYPE_LEVEL_HIGH>, 5149 <GIC_SPI 327 IRQ_TYPE_LEVEL_HIGH>, 5150 <GIC_SPI 328 IRQ_TYPE_LEVEL_HIGH>, 5151 <GIC_SPI 329 IRQ_TYPE_LEVEL_HIGH>, 5152 <GIC_SPI 330 IRQ_TYPE_LEVEL_HIGH>, 5153 <GIC_SPI 331 IRQ_TYPE_LEVEL_HIGH>, 5154 <GIC_SPI 332 IRQ_TYPE_LEVEL_HIGH>, 5155 <GIC_SPI 333 IRQ_TYPE_LEVEL_HIGH>, 5156 <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>, 5157 <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>, 5158 <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>, 5159 <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>, 5160 <GIC_SPI 338 IRQ_TYPE_LEVEL_HIGH>, 5161 <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>, 5162 <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>, 5163 <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>, 5164 <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>, 5165 <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>; 5166 }; 5167 5168 anoc_1_tbu: tbu@150c5000 { 5169 compatible = "qcom,sdm845-tbu"; 5170 reg = <0x0 0x150c5000 0x0 0x1000>; 5171 interconnects = <&system_noc MASTER_GNOC_SNOC QCOM_ICC_TAG_ACTIVE_ONLY 5172 &config_noc SLAVE_IMEM_CFG QCOM_ICC_TAG_ACTIVE_ONLY>; 5173 power-domains = <&gcc HLOS1_VOTE_AGGRE_NOC_MMU_TBU1_GDSC>; 5174 qcom,stream-id-range = <&apps_smmu 0x0 0x400>; 5175 }; 5176 5177 anoc_2_tbu: tbu@150c9000 { 5178 compatible = "qcom,sdm845-tbu"; 5179 reg = <0x0 0x150c9000 0x0 0x1000>; 5180 interconnects = <&system_noc MASTER_GNOC_SNOC QCOM_ICC_TAG_ACTIVE_ONLY 5181 &config_noc SLAVE_IMEM_CFG QCOM_ICC_TAG_ACTIVE_ONLY>; 5182 power-domains = <&gcc HLOS1_VOTE_AGGRE_NOC_MMU_TBU2_GDSC>; 5183 qcom,stream-id-range = <&apps_smmu 0x400 0x400>; 5184 }; 5185 5186 mnoc_hf_0_tbu: tbu@150cd000 { 5187 compatible = "qcom,sdm845-tbu"; 5188 reg = <0x0 0x150cd000 0x0 0x1000>; 5189 interconnects = <&mmss_noc MASTER_MDP0 QCOM_ICC_TAG_ACTIVE_ONLY 5190 &mmss_noc SLAVE_MNOC_HF_MEM_NOC QCOM_ICC_TAG_ACTIVE_ONLY>; 5191 power-domains = <&gcc HLOS1_VOTE_MMNOC_MMU_TBU_HF0_GDSC>; 5192 qcom,stream-id-range = <&apps_smmu 0x800 0x400>; 5193 }; 5194 5195 mnoc_hf_1_tbu: tbu@150d1000 { 5196 compatible = "qcom,sdm845-tbu"; 5197 reg = <0x0 0x150d1000 0x0 0x1000>; 5198 interconnects = <&mmss_noc MASTER_MDP0 QCOM_ICC_TAG_ACTIVE_ONLY 5199 &mmss_noc SLAVE_MNOC_HF_MEM_NOC QCOM_ICC_TAG_ACTIVE_ONLY>; 5200 power-domains = <&gcc HLOS1_VOTE_MMNOC_MMU_TBU_HF1_GDSC>; 5201 qcom,stream-id-range = <&apps_smmu 0xc00 0x400>; 5202 }; 5203 5204 mnoc_sf_0_tbu: tbu@150d5000 { 5205 compatible = "qcom,sdm845-tbu"; 5206 reg = <0x0 0x150d5000 0x0 0x1000>; 5207 interconnects = <&mmss_noc MASTER_CAMNOC_SF QCOM_ICC_TAG_ACTIVE_ONLY 5208 &mmss_noc SLAVE_MNOC_SF_MEM_NOC QCOM_ICC_TAG_ACTIVE_ONLY>; 5209 power-domains = <&gcc HLOS1_VOTE_MMNOC_MMU_TBU_SF_GDSC>; 5210 qcom,stream-id-range = <&apps_smmu 0x1000 0x400>; 5211 }; 5212 5213 compute_dsp_tbu: tbu@150d9000 { 5214 compatible = "qcom,sdm845-tbu"; 5215 reg = <0x0 0x150d9000 0x0 0x1000>; 5216 interconnects = <&system_noc MASTER_GNOC_SNOC QCOM_ICC_TAG_ACTIVE_ONLY 5217 &config_noc SLAVE_IMEM_CFG QCOM_ICC_TAG_ACTIVE_ONLY>; 5218 qcom,stream-id-range = <&apps_smmu 0x1400 0x400>; 5219 }; 5220 5221 adsp_tbu: tbu@150dd000 { 5222 compatible = "qcom,sdm845-tbu"; 5223 reg = <0x0 0x150dd000 0x0 0x1000>; 5224 interconnects = <&system_noc MASTER_GNOC_SNOC QCOM_ICC_TAG_ACTIVE_ONLY 5225 &config_noc SLAVE_IMEM_CFG QCOM_ICC_TAG_ACTIVE_ONLY>; 5226 power-domains = <&gcc HLOS1_VOTE_AGGRE_NOC_MMU_AUDIO_TBU_GDSC>; 5227 qcom,stream-id-range = <&apps_smmu 0x1800 0x400>; 5228 }; 5229 5230 anoc_1_pcie_tbu: tbu@150e1000 { 5231 compatible = "qcom,sdm845-tbu"; 5232 reg = <0x0 0x150e1000 0x0 0x1000>; 5233 clocks = <&gcc GCC_AGGRE_NOC_PCIE_TBU_CLK>; 5234 interconnects = <&system_noc MASTER_GNOC_SNOC QCOM_ICC_TAG_ACTIVE_ONLY 5235 &config_noc SLAVE_IMEM_CFG QCOM_ICC_TAG_ACTIVE_ONLY>; 5236 power-domains = <&gcc HLOS1_VOTE_AGGRE_NOC_MMU_PCIE_TBU_GDSC>; 5237 qcom,stream-id-range = <&apps_smmu 0x1c00 0x400>; 5238 }; 5239 5240 lpasscc: clock-controller@17014000 { 5241 compatible = "qcom,sdm845-lpasscc"; 5242 reg = <0 0x17014000 0 0x1f004>, <0 0x17300000 0 0x200>; 5243 reg-names = "cc", "qdsp6ss"; 5244 #clock-cells = <1>; 5245 status = "disabled"; 5246 }; 5247 5248 gladiator_noc: interconnect@17900000 { 5249 compatible = "qcom,sdm845-gladiator-noc"; 5250 reg = <0 0x17900000 0 0xd080>; 5251 #interconnect-cells = <2>; 5252 qcom,bcm-voters = <&apps_bcm_voter>; 5253 }; 5254 5255 watchdog@17980000 { 5256 compatible = "qcom,apss-wdt-sdm845", "qcom,kpss-wdt"; 5257 reg = <0 0x17980000 0 0x1000>; 5258 clocks = <&sleep_clk>; 5259 interrupts = <GIC_SPI 0 IRQ_TYPE_EDGE_RISING>; 5260 }; 5261 5262 apss_shared: mailbox@17990000 { 5263 compatible = "qcom,sdm845-apss-shared"; 5264 reg = <0 0x17990000 0 0x1000>; 5265 #mbox-cells = <1>; 5266 }; 5267 5268 apps_rsc: rsc@179c0000 { 5269 label = "apps_rsc"; 5270 compatible = "qcom,rpmh-rsc"; 5271 reg = <0 0x179c0000 0 0x10000>, 5272 <0 0x179d0000 0 0x10000>, 5273 <0 0x179e0000 0 0x10000>; 5274 reg-names = "drv-0", "drv-1", "drv-2"; 5275 interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>, 5276 <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>, 5277 <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; 5278 qcom,tcs-offset = <0xd00>; 5279 qcom,drv-id = <2>; 5280 qcom,tcs-config = <ACTIVE_TCS 2>, 5281 <SLEEP_TCS 3>, 5282 <WAKE_TCS 3>, 5283 <CONTROL_TCS 1>; 5284 power-domains = <&cluster_pd>; 5285 5286 apps_bcm_voter: bcm-voter { 5287 compatible = "qcom,bcm-voter"; 5288 }; 5289 5290 rpmhcc: clock-controller { 5291 compatible = "qcom,sdm845-rpmh-clk"; 5292 #clock-cells = <1>; 5293 clock-names = "xo"; 5294 clocks = <&xo_board>; 5295 }; 5296 5297 rpmhpd: power-controller { 5298 compatible = "qcom,sdm845-rpmhpd"; 5299 #power-domain-cells = <1>; 5300 operating-points-v2 = <&rpmhpd_opp_table>; 5301 5302 rpmhpd_opp_table: opp-table { 5303 compatible = "operating-points-v2"; 5304 5305 rpmhpd_opp_ret: opp1 { 5306 opp-level = <RPMH_REGULATOR_LEVEL_RETENTION>; 5307 }; 5308 5309 rpmhpd_opp_min_svs: opp2 { 5310 opp-level = <RPMH_REGULATOR_LEVEL_MIN_SVS>; 5311 }; 5312 5313 rpmhpd_opp_low_svs: opp3 { 5314 opp-level = <RPMH_REGULATOR_LEVEL_LOW_SVS>; 5315 }; 5316 5317 rpmhpd_opp_svs: opp4 { 5318 opp-level = <RPMH_REGULATOR_LEVEL_SVS>; 5319 }; 5320 5321 rpmhpd_opp_svs_l1: opp5 { 5322 opp-level = <RPMH_REGULATOR_LEVEL_SVS_L1>; 5323 }; 5324 5325 rpmhpd_opp_nom: opp6 { 5326 opp-level = <RPMH_REGULATOR_LEVEL_NOM>; 5327 }; 5328 5329 rpmhpd_opp_nom_l1: opp7 { 5330 opp-level = <RPMH_REGULATOR_LEVEL_NOM_L1>; 5331 }; 5332 5333 rpmhpd_opp_nom_l2: opp8 { 5334 opp-level = <RPMH_REGULATOR_LEVEL_NOM_L2>; 5335 }; 5336 5337 rpmhpd_opp_turbo: opp9 { 5338 opp-level = <RPMH_REGULATOR_LEVEL_TURBO>; 5339 }; 5340 5341 rpmhpd_opp_turbo_l1: opp10 { 5342 opp-level = <RPMH_REGULATOR_LEVEL_TURBO_L1>; 5343 }; 5344 }; 5345 }; 5346 }; 5347 5348 intc: interrupt-controller@17a00000 { 5349 compatible = "arm,gic-v3"; 5350 #address-cells = <2>; 5351 #size-cells = <2>; 5352 ranges; 5353 #interrupt-cells = <3>; 5354 interrupt-controller; 5355 reg = <0 0x17a00000 0 0x10000>, /* GICD */ 5356 <0 0x17a60000 0 0x100000>; /* GICR * 8 */ 5357 interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>; 5358 5359 msi-controller@17a40000 { 5360 compatible = "arm,gic-v3-its"; 5361 msi-controller; 5362 #msi-cells = <1>; 5363 reg = <0 0x17a40000 0 0x20000>; 5364 status = "disabled"; 5365 }; 5366 }; 5367 5368 slimbam: dma-controller@17184000 { 5369 compatible = "qcom,bam-v1.7.4", "qcom,bam-v1.7.0"; 5370 qcom,controlled-remotely; 5371 reg = <0 0x17184000 0 0x2a000>; 5372 num-channels = <31>; 5373 interrupts = <GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>; 5374 #dma-cells = <1>; 5375 qcom,ee = <1>; 5376 qcom,num-ees = <2>; 5377 iommus = <&apps_smmu 0x1806 0x0>; 5378 }; 5379 5380 timer@17c90000 { 5381 #address-cells = <1>; 5382 #size-cells = <1>; 5383 ranges = <0 0 0 0x20000000>; 5384 compatible = "arm,armv7-timer-mem"; 5385 reg = <0 0x17c90000 0 0x1000>; 5386 5387 frame@17ca0000 { 5388 frame-number = <0>; 5389 interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>, 5390 <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>; 5391 reg = <0x17ca0000 0x1000>, 5392 <0x17cb0000 0x1000>; 5393 }; 5394 5395 frame@17cc0000 { 5396 frame-number = <1>; 5397 interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>; 5398 reg = <0x17cc0000 0x1000>; 5399 status = "disabled"; 5400 }; 5401 5402 frame@17cd0000 { 5403 frame-number = <2>; 5404 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>; 5405 reg = <0x17cd0000 0x1000>; 5406 status = "disabled"; 5407 }; 5408 5409 frame@17ce0000 { 5410 frame-number = <3>; 5411 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; 5412 reg = <0x17ce0000 0x1000>; 5413 status = "disabled"; 5414 }; 5415 5416 frame@17cf0000 { 5417 frame-number = <4>; 5418 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; 5419 reg = <0x17cf0000 0x1000>; 5420 status = "disabled"; 5421 }; 5422 5423 frame@17d00000 { 5424 frame-number = <5>; 5425 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>; 5426 reg = <0x17d00000 0x1000>; 5427 status = "disabled"; 5428 }; 5429 5430 frame@17d10000 { 5431 frame-number = <6>; 5432 interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>; 5433 reg = <0x17d10000 0x1000>; 5434 status = "disabled"; 5435 }; 5436 }; 5437 5438 osm_l3: interconnect@17d41000 { 5439 compatible = "qcom,sdm845-osm-l3", "qcom,osm-l3"; 5440 reg = <0 0x17d41000 0 0x1400>; 5441 5442 clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GPLL0>; 5443 clock-names = "xo", "alternate"; 5444 5445 #interconnect-cells = <1>; 5446 }; 5447 5448 cpufreq_hw: cpufreq@17d43000 { 5449 compatible = "qcom,sdm845-cpufreq-hw", "qcom,cpufreq-hw"; 5450 reg = <0 0x17d43000 0 0x1400>, <0 0x17d45800 0 0x1400>; 5451 reg-names = "freq-domain0", "freq-domain1"; 5452 5453 interrupts-extended = <&lmh_cluster0 0>, <&lmh_cluster1 0>; 5454 5455 clocks = <&rpmhcc RPMH_CXO_CLK>, <&gcc GPLL0>; 5456 clock-names = "xo", "alternate"; 5457 5458 #freq-domain-cells = <1>; 5459 #clock-cells = <1>; 5460 }; 5461 5462 wifi: wifi@18800000 { 5463 compatible = "qcom,wcn3990-wifi"; 5464 status = "disabled"; 5465 reg = <0 0x18800000 0 0x800000>; 5466 reg-names = "membase"; 5467 memory-region = <&wlan_msa_mem>; 5468 clock-names = "cxo_ref_clk_pin"; 5469 clocks = <&rpmhcc RPMH_RF_CLK2>; 5470 interrupts = 5471 <GIC_SPI 414 IRQ_TYPE_LEVEL_HIGH>, 5472 <GIC_SPI 415 IRQ_TYPE_LEVEL_HIGH>, 5473 <GIC_SPI 416 IRQ_TYPE_LEVEL_HIGH>, 5474 <GIC_SPI 417 IRQ_TYPE_LEVEL_HIGH>, 5475 <GIC_SPI 418 IRQ_TYPE_LEVEL_HIGH>, 5476 <GIC_SPI 419 IRQ_TYPE_LEVEL_HIGH>, 5477 <GIC_SPI 420 IRQ_TYPE_LEVEL_HIGH>, 5478 <GIC_SPI 421 IRQ_TYPE_LEVEL_HIGH>, 5479 <GIC_SPI 422 IRQ_TYPE_LEVEL_HIGH>, 5480 <GIC_SPI 423 IRQ_TYPE_LEVEL_HIGH>, 5481 <GIC_SPI 424 IRQ_TYPE_LEVEL_HIGH>, 5482 <GIC_SPI 425 IRQ_TYPE_LEVEL_HIGH>; 5483 iommus = <&apps_smmu 0x0040 0x1>; 5484 }; 5485 }; 5486 5487 sound: sound { 5488 }; 5489 5490 thermal-zones { 5491 cpu0-thermal { 5492 polling-delay-passive = <250>; 5493 5494 thermal-sensors = <&tsens0 1>; 5495 5496 trips { 5497 cpu0_alert0: trip-point0 { 5498 temperature = <90000>; 5499 hysteresis = <2000>; 5500 type = "passive"; 5501 }; 5502 5503 cpu0_alert1: trip-point1 { 5504 temperature = <95000>; 5505 hysteresis = <2000>; 5506 type = "passive"; 5507 }; 5508 5509 cpu0_crit: cpu-crit { 5510 temperature = <110000>; 5511 hysteresis = <1000>; 5512 type = "critical"; 5513 }; 5514 }; 5515 }; 5516 5517 cpu1-thermal { 5518 polling-delay-passive = <250>; 5519 5520 thermal-sensors = <&tsens0 2>; 5521 5522 trips { 5523 cpu1_alert0: trip-point0 { 5524 temperature = <90000>; 5525 hysteresis = <2000>; 5526 type = "passive"; 5527 }; 5528 5529 cpu1_alert1: trip-point1 { 5530 temperature = <95000>; 5531 hysteresis = <2000>; 5532 type = "passive"; 5533 }; 5534 5535 cpu1_crit: cpu-crit { 5536 temperature = <110000>; 5537 hysteresis = <1000>; 5538 type = "critical"; 5539 }; 5540 }; 5541 }; 5542 5543 cpu2-thermal { 5544 polling-delay-passive = <250>; 5545 5546 thermal-sensors = <&tsens0 3>; 5547 5548 trips { 5549 cpu2_alert0: trip-point0 { 5550 temperature = <90000>; 5551 hysteresis = <2000>; 5552 type = "passive"; 5553 }; 5554 5555 cpu2_alert1: trip-point1 { 5556 temperature = <95000>; 5557 hysteresis = <2000>; 5558 type = "passive"; 5559 }; 5560 5561 cpu2_crit: cpu-crit { 5562 temperature = <110000>; 5563 hysteresis = <1000>; 5564 type = "critical"; 5565 }; 5566 }; 5567 }; 5568 5569 cpu3-thermal { 5570 polling-delay-passive = <250>; 5571 5572 thermal-sensors = <&tsens0 4>; 5573 5574 trips { 5575 cpu3_alert0: trip-point0 { 5576 temperature = <90000>; 5577 hysteresis = <2000>; 5578 type = "passive"; 5579 }; 5580 5581 cpu3_alert1: trip-point1 { 5582 temperature = <95000>; 5583 hysteresis = <2000>; 5584 type = "passive"; 5585 }; 5586 5587 cpu3_crit: cpu-crit { 5588 temperature = <110000>; 5589 hysteresis = <1000>; 5590 type = "critical"; 5591 }; 5592 }; 5593 }; 5594 5595 cpu4-thermal { 5596 polling-delay-passive = <250>; 5597 5598 thermal-sensors = <&tsens0 7>; 5599 5600 trips { 5601 cpu4_alert0: trip-point0 { 5602 temperature = <90000>; 5603 hysteresis = <2000>; 5604 type = "passive"; 5605 }; 5606 5607 cpu4_alert1: trip-point1 { 5608 temperature = <95000>; 5609 hysteresis = <2000>; 5610 type = "passive"; 5611 }; 5612 5613 cpu4_crit: cpu-crit { 5614 temperature = <110000>; 5615 hysteresis = <1000>; 5616 type = "critical"; 5617 }; 5618 }; 5619 }; 5620 5621 cpu5-thermal { 5622 polling-delay-passive = <250>; 5623 5624 thermal-sensors = <&tsens0 8>; 5625 5626 trips { 5627 cpu5_alert0: trip-point0 { 5628 temperature = <90000>; 5629 hysteresis = <2000>; 5630 type = "passive"; 5631 }; 5632 5633 cpu5_alert1: trip-point1 { 5634 temperature = <95000>; 5635 hysteresis = <2000>; 5636 type = "passive"; 5637 }; 5638 5639 cpu5_crit: cpu-crit { 5640 temperature = <110000>; 5641 hysteresis = <1000>; 5642 type = "critical"; 5643 }; 5644 }; 5645 }; 5646 5647 cpu6-thermal { 5648 polling-delay-passive = <250>; 5649 5650 thermal-sensors = <&tsens0 9>; 5651 5652 trips { 5653 cpu6_alert0: trip-point0 { 5654 temperature = <90000>; 5655 hysteresis = <2000>; 5656 type = "passive"; 5657 }; 5658 5659 cpu6_alert1: trip-point1 { 5660 temperature = <95000>; 5661 hysteresis = <2000>; 5662 type = "passive"; 5663 }; 5664 5665 cpu6_crit: cpu-crit { 5666 temperature = <110000>; 5667 hysteresis = <1000>; 5668 type = "critical"; 5669 }; 5670 }; 5671 }; 5672 5673 cpu7-thermal { 5674 polling-delay-passive = <250>; 5675 5676 thermal-sensors = <&tsens0 10>; 5677 5678 trips { 5679 cpu7_alert0: trip-point0 { 5680 temperature = <90000>; 5681 hysteresis = <2000>; 5682 type = "passive"; 5683 }; 5684 5685 cpu7_alert1: trip-point1 { 5686 temperature = <95000>; 5687 hysteresis = <2000>; 5688 type = "passive"; 5689 }; 5690 5691 cpu7_crit: cpu-crit { 5692 temperature = <110000>; 5693 hysteresis = <1000>; 5694 type = "critical"; 5695 }; 5696 }; 5697 }; 5698 5699 aoss0-thermal { 5700 polling-delay-passive = <250>; 5701 5702 thermal-sensors = <&tsens0 0>; 5703 5704 trips { 5705 aoss0_alert0: trip-point0 { 5706 temperature = <90000>; 5707 hysteresis = <2000>; 5708 type = "hot"; 5709 }; 5710 }; 5711 }; 5712 5713 cluster0-thermal { 5714 polling-delay-passive = <250>; 5715 5716 thermal-sensors = <&tsens0 5>; 5717 5718 trips { 5719 cluster0_alert0: trip-point0 { 5720 temperature = <90000>; 5721 hysteresis = <2000>; 5722 type = "hot"; 5723 }; 5724 cluster0_crit: cluster0-crit { 5725 temperature = <110000>; 5726 hysteresis = <2000>; 5727 type = "critical"; 5728 }; 5729 }; 5730 }; 5731 5732 cluster1-thermal { 5733 polling-delay-passive = <250>; 5734 5735 thermal-sensors = <&tsens0 6>; 5736 5737 trips { 5738 cluster1_alert0: trip-point0 { 5739 temperature = <90000>; 5740 hysteresis = <2000>; 5741 type = "hot"; 5742 }; 5743 cluster1_crit: cluster1-crit { 5744 temperature = <110000>; 5745 hysteresis = <2000>; 5746 type = "critical"; 5747 }; 5748 }; 5749 }; 5750 5751 gpu-top-thermal { 5752 polling-delay-passive = <250>; 5753 5754 thermal-sensors = <&tsens0 11>; 5755 5756 cooling-maps { 5757 map0 { 5758 trip = <&gpu_top_alert0>; 5759 cooling-device = <&gpu THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; 5760 }; 5761 }; 5762 5763 trips { 5764 gpu_top_alert0: trip-point0 { 5765 temperature = <85000>; 5766 hysteresis = <1000>; 5767 type = "passive"; 5768 }; 5769 5770 trip-point1 { 5771 temperature = <90000>; 5772 hysteresis = <1000>; 5773 type = "hot"; 5774 }; 5775 5776 trip-point2 { 5777 temperature = <110000>; 5778 hysteresis = <1000>; 5779 type = "critical"; 5780 }; 5781 }; 5782 }; 5783 5784 gpu-bottom-thermal { 5785 polling-delay-passive = <250>; 5786 5787 thermal-sensors = <&tsens0 12>; 5788 5789 cooling-maps { 5790 map0 { 5791 trip = <&gpu_bottom_alert0>; 5792 cooling-device = <&gpu THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; 5793 }; 5794 }; 5795 5796 trips { 5797 gpu_bottom_alert0: trip-point0 { 5798 temperature = <85000>; 5799 hysteresis = <1000>; 5800 type = "passive"; 5801 }; 5802 5803 trip-point1 { 5804 temperature = <90000>; 5805 hysteresis = <1000>; 5806 type = "hot"; 5807 }; 5808 5809 trip-point2 { 5810 temperature = <110000>; 5811 hysteresis = <1000>; 5812 type = "critical"; 5813 }; 5814 }; 5815 }; 5816 5817 aoss1-thermal { 5818 polling-delay-passive = <250>; 5819 5820 thermal-sensors = <&tsens1 0>; 5821 5822 trips { 5823 aoss1_alert0: trip-point0 { 5824 temperature = <90000>; 5825 hysteresis = <2000>; 5826 type = "hot"; 5827 }; 5828 }; 5829 }; 5830 5831 q6-modem-thermal { 5832 polling-delay-passive = <250>; 5833 5834 thermal-sensors = <&tsens1 1>; 5835 5836 trips { 5837 q6_modem_alert0: trip-point0 { 5838 temperature = <90000>; 5839 hysteresis = <2000>; 5840 type = "hot"; 5841 }; 5842 }; 5843 }; 5844 5845 mem-thermal { 5846 polling-delay-passive = <250>; 5847 5848 thermal-sensors = <&tsens1 2>; 5849 5850 trips { 5851 mem_alert0: trip-point0 { 5852 temperature = <90000>; 5853 hysteresis = <2000>; 5854 type = "hot"; 5855 }; 5856 }; 5857 }; 5858 5859 wlan-thermal { 5860 polling-delay-passive = <250>; 5861 5862 thermal-sensors = <&tsens1 3>; 5863 5864 trips { 5865 wlan_alert0: trip-point0 { 5866 temperature = <90000>; 5867 hysteresis = <2000>; 5868 type = "hot"; 5869 }; 5870 }; 5871 }; 5872 5873 q6-hvx-thermal { 5874 polling-delay-passive = <250>; 5875 5876 thermal-sensors = <&tsens1 4>; 5877 5878 trips { 5879 q6_hvx_alert0: trip-point0 { 5880 temperature = <90000>; 5881 hysteresis = <2000>; 5882 type = "hot"; 5883 }; 5884 }; 5885 }; 5886 5887 camera-thermal { 5888 polling-delay-passive = <250>; 5889 5890 thermal-sensors = <&tsens1 5>; 5891 5892 trips { 5893 camera_alert0: trip-point0 { 5894 temperature = <90000>; 5895 hysteresis = <2000>; 5896 type = "hot"; 5897 }; 5898 }; 5899 }; 5900 5901 video-thermal { 5902 polling-delay-passive = <250>; 5903 5904 thermal-sensors = <&tsens1 6>; 5905 5906 trips { 5907 video_alert0: trip-point0 { 5908 temperature = <90000>; 5909 hysteresis = <2000>; 5910 type = "hot"; 5911 }; 5912 }; 5913 }; 5914 5915 modem-thermal { 5916 polling-delay-passive = <250>; 5917 5918 thermal-sensors = <&tsens1 7>; 5919 5920 trips { 5921 modem_alert0: trip-point0 { 5922 temperature = <90000>; 5923 hysteresis = <2000>; 5924 type = "hot"; 5925 }; 5926 }; 5927 }; 5928 }; 5929 5930 timer { 5931 compatible = "arm,armv8-timer"; 5932 interrupts = <GIC_PPI 1 IRQ_TYPE_LEVEL_LOW>, 5933 <GIC_PPI 2 IRQ_TYPE_LEVEL_LOW>, 5934 <GIC_PPI 3 IRQ_TYPE_LEVEL_LOW>, 5935 <GIC_PPI 0 IRQ_TYPE_LEVEL_LOW>; 5936 }; 5937}; 5938