hip04.dtsi 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * HiSilicon Ltd. HiP04 SoC
  4. *
  5. * Copyright (C) 2013-2014 HiSilicon Ltd.
  6. * Copyright (C) 2013-2014 Linaro Ltd.
  7. *
  8. * Author: Haojian Zhuang <[email protected]>
  9. */
  10. / {
  11. /* memory bus is 64-bit */
  12. #address-cells = <2>;
  13. #size-cells = <2>;
  14. aliases {
  15. serial0 = &uart0;
  16. };
  17. bootwrapper {
  18. compatible = "hisilicon,hip04-bootwrapper";
  19. boot-method = <0x10c00000 0x10000>, <0xe0000100 0x1000>;
  20. };
  21. cpus {
  22. #address-cells = <1>;
  23. #size-cells = <0>;
  24. cpu-map {
  25. cluster0 {
  26. core0 {
  27. cpu = <&CPU0>;
  28. };
  29. core1 {
  30. cpu = <&CPU1>;
  31. };
  32. core2 {
  33. cpu = <&CPU2>;
  34. };
  35. core3 {
  36. cpu = <&CPU3>;
  37. };
  38. };
  39. cluster1 {
  40. core0 {
  41. cpu = <&CPU4>;
  42. };
  43. core1 {
  44. cpu = <&CPU5>;
  45. };
  46. core2 {
  47. cpu = <&CPU6>;
  48. };
  49. core3 {
  50. cpu = <&CPU7>;
  51. };
  52. };
  53. cluster2 {
  54. core0 {
  55. cpu = <&CPU8>;
  56. };
  57. core1 {
  58. cpu = <&CPU9>;
  59. };
  60. core2 {
  61. cpu = <&CPU10>;
  62. };
  63. core3 {
  64. cpu = <&CPU11>;
  65. };
  66. };
  67. cluster3 {
  68. core0 {
  69. cpu = <&CPU12>;
  70. };
  71. core1 {
  72. cpu = <&CPU13>;
  73. };
  74. core2 {
  75. cpu = <&CPU14>;
  76. };
  77. core3 {
  78. cpu = <&CPU15>;
  79. };
  80. };
  81. };
  82. CPU0: cpu@0 {
  83. device_type = "cpu";
  84. compatible = "arm,cortex-a15";
  85. reg = <0>;
  86. };
  87. CPU1: cpu@1 {
  88. device_type = "cpu";
  89. compatible = "arm,cortex-a15";
  90. reg = <1>;
  91. };
  92. CPU2: cpu@2 {
  93. device_type = "cpu";
  94. compatible = "arm,cortex-a15";
  95. reg = <2>;
  96. };
  97. CPU3: cpu@3 {
  98. device_type = "cpu";
  99. compatible = "arm,cortex-a15";
  100. reg = <3>;
  101. };
  102. CPU4: cpu@100 {
  103. device_type = "cpu";
  104. compatible = "arm,cortex-a15";
  105. reg = <0x100>;
  106. };
  107. CPU5: cpu@101 {
  108. device_type = "cpu";
  109. compatible = "arm,cortex-a15";
  110. reg = <0x101>;
  111. };
  112. CPU6: cpu@102 {
  113. device_type = "cpu";
  114. compatible = "arm,cortex-a15";
  115. reg = <0x102>;
  116. };
  117. CPU7: cpu@103 {
  118. device_type = "cpu";
  119. compatible = "arm,cortex-a15";
  120. reg = <0x103>;
  121. };
  122. CPU8: cpu@200 {
  123. device_type = "cpu";
  124. compatible = "arm,cortex-a15";
  125. reg = <0x200>;
  126. };
  127. CPU9: cpu@201 {
  128. device_type = "cpu";
  129. compatible = "arm,cortex-a15";
  130. reg = <0x201>;
  131. };
  132. CPU10: cpu@202 {
  133. device_type = "cpu";
  134. compatible = "arm,cortex-a15";
  135. reg = <0x202>;
  136. };
  137. CPU11: cpu@203 {
  138. device_type = "cpu";
  139. compatible = "arm,cortex-a15";
  140. reg = <0x203>;
  141. };
  142. CPU12: cpu@300 {
  143. device_type = "cpu";
  144. compatible = "arm,cortex-a15";
  145. reg = <0x300>;
  146. };
  147. CPU13: cpu@301 {
  148. device_type = "cpu";
  149. compatible = "arm,cortex-a15";
  150. reg = <0x301>;
  151. };
  152. CPU14: cpu@302 {
  153. device_type = "cpu";
  154. compatible = "arm,cortex-a15";
  155. reg = <0x302>;
  156. };
  157. CPU15: cpu@303 {
  158. device_type = "cpu";
  159. compatible = "arm,cortex-a15";
  160. reg = <0x303>;
  161. };
  162. };
  163. timer {
  164. compatible = "arm,armv7-timer";
  165. interrupt-parent = <&gic>;
  166. interrupts = <1 13 0xf08>,
  167. <1 14 0xf08>,
  168. <1 11 0xf08>,
  169. <1 10 0xf08>;
  170. };
  171. clk_50m: clk_50m {
  172. #clock-cells = <0>;
  173. compatible = "fixed-clock";
  174. clock-frequency = <50000000>;
  175. };
  176. clk_168m: clk_168m {
  177. #clock-cells = <0>;
  178. compatible = "fixed-clock";
  179. clock-frequency = <168000000>;
  180. };
  181. clk_375m: clk_375m {
  182. #clock-cells = <0>;
  183. compatible = "fixed-clock";
  184. clock-frequency = <375000000>;
  185. };
  186. soc {
  187. /* It's a 32-bit SoC. */
  188. #address-cells = <1>;
  189. #size-cells = <1>;
  190. compatible = "simple-bus";
  191. interrupt-parent = <&gic>;
  192. ranges = <0 0 0xe0000000 0x10000000>;
  193. gic: interrupt-controller@c01000 {
  194. compatible = "hisilicon,hip04-intc";
  195. #interrupt-cells = <3>;
  196. #address-cells = <0>;
  197. interrupt-controller;
  198. interrupts = <1 9 0xf04>;
  199. reg = <0xc01000 0x1000>, <0xc02000 0x1000>,
  200. <0xc04000 0x2000>, <0xc06000 0x2000>;
  201. };
  202. sysctrl: sysctrl {
  203. compatible = "hisilicon,sysctrl", "syscon";
  204. reg = <0x3e00000 0x00100000>;
  205. };
  206. fabric: fabric {
  207. compatible = "hisilicon,hip04-fabric";
  208. reg = <0x302a000 0x1000>;
  209. };
  210. dual_timer0: dual_timer@3000000 {
  211. compatible = "arm,sp804", "arm,primecell";
  212. reg = <0x3000000 0x1000>;
  213. interrupts = <0 224 4>;
  214. clocks = <&clk_50m>, <&clk_50m>, <&clk_50m>;
  215. clock-names = "timer0clk", "timer1clk", "apb_pclk";
  216. };
  217. arm-pmu {
  218. compatible = "arm,cortex-a15-pmu";
  219. interrupts = <0 64 4>,
  220. <0 65 4>,
  221. <0 66 4>,
  222. <0 67 4>,
  223. <0 68 4>,
  224. <0 69 4>,
  225. <0 70 4>,
  226. <0 71 4>,
  227. <0 72 4>,
  228. <0 73 4>,
  229. <0 74 4>,
  230. <0 75 4>,
  231. <0 76 4>,
  232. <0 77 4>,
  233. <0 78 4>,
  234. <0 79 4>;
  235. };
  236. uart0: serial@4007000 {
  237. compatible = "snps,dw-apb-uart";
  238. reg = <0x4007000 0x1000>;
  239. interrupts = <0 381 4>;
  240. clocks = <&clk_168m>, <&clk_168m>;
  241. clock-names = "baudclk", "apb_pclk";
  242. reg-shift = <2>;
  243. status = "disabled";
  244. };
  245. sata0: sata@a000000 {
  246. compatible = "hisilicon,hisi-ahci";
  247. reg = <0xa000000 0x1000000>;
  248. interrupts = <0 372 4>;
  249. };
  250. };
  251. etb@0,e3c42000 {
  252. compatible = "arm,coresight-etb10", "arm,primecell";
  253. reg = <0 0xe3c42000 0 0x1000>;
  254. clocks = <&clk_375m>;
  255. clock-names = "apb_pclk";
  256. in-ports {
  257. port {
  258. etb0_in_port: endpoint@0 {
  259. remote-endpoint = <&replicator0_out_port0>;
  260. };
  261. };
  262. };
  263. };
  264. etb@0,e3c82000 {
  265. compatible = "arm,coresight-etb10", "arm,primecell";
  266. reg = <0 0xe3c82000 0 0x1000>;
  267. clocks = <&clk_375m>;
  268. clock-names = "apb_pclk";
  269. in-ports {
  270. port {
  271. etb1_in_port: endpoint@0 {
  272. remote-endpoint = <&replicator1_out_port0>;
  273. };
  274. };
  275. };
  276. };
  277. etb@0,e3cc2000 {
  278. compatible = "arm,coresight-etb10", "arm,primecell";
  279. reg = <0 0xe3cc2000 0 0x1000>;
  280. clocks = <&clk_375m>;
  281. clock-names = "apb_pclk";
  282. in-ports {
  283. port {
  284. etb2_in_port: endpoint@0 {
  285. remote-endpoint = <&replicator2_out_port0>;
  286. };
  287. };
  288. };
  289. };
  290. etb@0,e3d02000 {
  291. compatible = "arm,coresight-etb10", "arm,primecell";
  292. reg = <0 0xe3d02000 0 0x1000>;
  293. clocks = <&clk_375m>;
  294. clock-names = "apb_pclk";
  295. in-ports {
  296. port {
  297. etb3_in_port: endpoint@0 {
  298. remote-endpoint = <&replicator3_out_port0>;
  299. };
  300. };
  301. };
  302. };
  303. tpiu@0,e3c05000 {
  304. compatible = "arm,coresight-tpiu", "arm,primecell";
  305. reg = <0 0xe3c05000 0 0x1000>;
  306. clocks = <&clk_375m>;
  307. clock-names = "apb_pclk";
  308. in-ports {
  309. port {
  310. tpiu_in_port: endpoint@0 {
  311. remote-endpoint = <&funnel4_out_port0>;
  312. };
  313. };
  314. };
  315. };
  316. replicator0 {
  317. /* non-configurable replicators don't show up on the
  318. * AMBA bus. As such no need to add "arm,primecell".
  319. */
  320. compatible = "arm,coresight-static-replicator";
  321. out-ports {
  322. #address-cells = <1>;
  323. #size-cells = <0>;
  324. /* replicator output ports */
  325. port@0 {
  326. reg = <0>;
  327. replicator0_out_port0: endpoint {
  328. remote-endpoint = <&etb0_in_port>;
  329. };
  330. };
  331. port@1 {
  332. reg = <1>;
  333. replicator0_out_port1: endpoint {
  334. remote-endpoint = <&funnel4_in_port0>;
  335. };
  336. };
  337. };
  338. in-ports {
  339. port {
  340. replicator0_in_port0: endpoint {
  341. remote-endpoint = <&funnel0_out_port0>;
  342. };
  343. };
  344. };
  345. };
  346. replicator1 {
  347. /* non-configurable replicators don't show up on the
  348. * AMBA bus. As such no need to add "arm,primecell".
  349. */
  350. compatible = "arm,coresight-static-replicator";
  351. out-ports {
  352. #address-cells = <1>;
  353. #size-cells = <0>;
  354. /* replicator output ports */
  355. port@0 {
  356. reg = <0>;
  357. replicator1_out_port0: endpoint {
  358. remote-endpoint = <&etb1_in_port>;
  359. };
  360. };
  361. port@1 {
  362. reg = <1>;
  363. replicator1_out_port1: endpoint {
  364. remote-endpoint = <&funnel4_in_port1>;
  365. };
  366. };
  367. };
  368. in-ports {
  369. port {
  370. replicator1_in_port0: endpoint {
  371. remote-endpoint = <&funnel1_out_port0>;
  372. };
  373. };
  374. };
  375. };
  376. replicator2 {
  377. /* non-configurable replicators don't show up on the
  378. * AMBA bus. As such no need to add "arm,primecell".
  379. */
  380. compatible = "arm,coresight-static-replicator";
  381. out-ports {
  382. #address-cells = <1>;
  383. #size-cells = <0>;
  384. port@0 {
  385. reg = <0>;
  386. replicator2_out_port0: endpoint {
  387. remote-endpoint = <&etb2_in_port>;
  388. };
  389. };
  390. port@1 {
  391. reg = <1>;
  392. replicator2_out_port1: endpoint {
  393. remote-endpoint = <&funnel4_in_port2>;
  394. };
  395. };
  396. };
  397. in-ports {
  398. port {
  399. replicator2_in_port0: endpoint {
  400. remote-endpoint = <&funnel2_out_port0>;
  401. };
  402. };
  403. };
  404. };
  405. replicator3 {
  406. /* non-configurable replicators don't show up on the
  407. * AMBA bus. As such no need to add "arm,primecell".
  408. */
  409. compatible = "arm,coresight-static-replicator";
  410. out-ports {
  411. #address-cells = <1>;
  412. #size-cells = <0>;
  413. port@0 {
  414. reg = <0>;
  415. replicator3_out_port0: endpoint {
  416. remote-endpoint = <&etb3_in_port>;
  417. };
  418. };
  419. port@1 {
  420. reg = <1>;
  421. replicator3_out_port1: endpoint {
  422. remote-endpoint = <&funnel4_in_port3>;
  423. };
  424. };
  425. };
  426. in-ports {
  427. port {
  428. replicator3_in_port0: endpoint {
  429. remote-endpoint = <&funnel3_out_port0>;
  430. };
  431. };
  432. };
  433. };
  434. funnel@0,e3c41000 {
  435. compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
  436. reg = <0 0xe3c41000 0 0x1000>;
  437. clocks = <&clk_375m>;
  438. clock-names = "apb_pclk";
  439. out-ports {
  440. port {
  441. funnel0_out_port0: endpoint {
  442. remote-endpoint =
  443. <&replicator0_in_port0>;
  444. };
  445. };
  446. };
  447. in-ports {
  448. #address-cells = <1>;
  449. #size-cells = <0>;
  450. port@0 {
  451. reg = <0>;
  452. funnel0_in_port0: endpoint {
  453. remote-endpoint = <&ptm0_out_port>;
  454. };
  455. };
  456. port@1 {
  457. reg = <1>;
  458. funnel0_in_port1: endpoint {
  459. remote-endpoint = <&ptm1_out_port>;
  460. };
  461. };
  462. port@2 {
  463. reg = <2>;
  464. funnel0_in_port2: endpoint {
  465. remote-endpoint = <&ptm2_out_port>;
  466. };
  467. };
  468. port@3 {
  469. reg = <3>;
  470. funnel0_in_port3: endpoint {
  471. remote-endpoint = <&ptm3_out_port>;
  472. };
  473. };
  474. };
  475. };
  476. funnel@0,e3c81000 {
  477. compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
  478. reg = <0 0xe3c81000 0 0x1000>;
  479. clocks = <&clk_375m>;
  480. clock-names = "apb_pclk";
  481. out-ports {
  482. port {
  483. funnel1_out_port0: endpoint {
  484. remote-endpoint =
  485. <&replicator1_in_port0>;
  486. };
  487. };
  488. };
  489. in-ports {
  490. #address-cells = <1>;
  491. #size-cells = <0>;
  492. port@0 {
  493. reg = <0>;
  494. funnel1_in_port0: endpoint {
  495. remote-endpoint = <&ptm4_out_port>;
  496. };
  497. };
  498. port@1 {
  499. reg = <1>;
  500. funnel1_in_port1: endpoint {
  501. remote-endpoint = <&ptm5_out_port>;
  502. };
  503. };
  504. port@2 {
  505. reg = <2>;
  506. funnel1_in_port2: endpoint {
  507. remote-endpoint = <&ptm6_out_port>;
  508. };
  509. };
  510. port@3 {
  511. reg = <3>;
  512. funnel1_in_port3: endpoint {
  513. remote-endpoint = <&ptm7_out_port>;
  514. };
  515. };
  516. };
  517. };
  518. funnel@0,e3cc1000 {
  519. compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
  520. reg = <0 0xe3cc1000 0 0x1000>;
  521. clocks = <&clk_375m>;
  522. clock-names = "apb_pclk";
  523. out-ports {
  524. port {
  525. funnel2_out_port0: endpoint {
  526. remote-endpoint =
  527. <&replicator2_in_port0>;
  528. };
  529. };
  530. };
  531. in-ports {
  532. #address-cells = <1>;
  533. #size-cells = <0>;
  534. port@0 {
  535. reg = <0>;
  536. funnel2_in_port0: endpoint {
  537. remote-endpoint = <&ptm8_out_port>;
  538. };
  539. };
  540. port@1 {
  541. reg = <1>;
  542. funnel2_in_port1: endpoint {
  543. remote-endpoint = <&ptm9_out_port>;
  544. };
  545. };
  546. port@2 {
  547. reg = <2>;
  548. funnel2_in_port2: endpoint {
  549. remote-endpoint = <&ptm10_out_port>;
  550. };
  551. };
  552. port@3 {
  553. reg = <3>;
  554. funnel2_in_port3: endpoint {
  555. remote-endpoint = <&ptm11_out_port>;
  556. };
  557. };
  558. };
  559. };
  560. funnel@0,e3d01000 {
  561. compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
  562. reg = <0 0xe3d01000 0 0x1000>;
  563. clocks = <&clk_375m>;
  564. clock-names = "apb_pclk";
  565. out-ports {
  566. port {
  567. funnel3_out_port0: endpoint {
  568. remote-endpoint =
  569. <&replicator3_in_port0>;
  570. };
  571. };
  572. };
  573. in-ports {
  574. #address-cells = <1>;
  575. #size-cells = <0>;
  576. port@0 {
  577. reg = <0>;
  578. funnel3_in_port0: endpoint {
  579. remote-endpoint = <&ptm12_out_port>;
  580. };
  581. };
  582. port@1 {
  583. reg = <1>;
  584. funnel3_in_port1: endpoint {
  585. remote-endpoint = <&ptm13_out_port>;
  586. };
  587. };
  588. port@2 {
  589. reg = <2>;
  590. funnel3_in_port2: endpoint {
  591. remote-endpoint = <&ptm14_out_port>;
  592. };
  593. };
  594. port@3 {
  595. reg = <3>;
  596. funnel3_in_port3: endpoint {
  597. remote-endpoint = <&ptm15_out_port>;
  598. };
  599. };
  600. };
  601. };
  602. funnel@0,e3c04000 {
  603. compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
  604. reg = <0 0xe3c04000 0 0x1000>;
  605. clocks = <&clk_375m>;
  606. clock-names = "apb_pclk";
  607. out-ports {
  608. port {
  609. funnel4_out_port0: endpoint {
  610. remote-endpoint = <&tpiu_in_port>;
  611. };
  612. };
  613. };
  614. in-ports {
  615. #address-cells = <1>;
  616. #size-cells = <0>;
  617. port@0 {
  618. reg = <0>;
  619. funnel4_in_port0: endpoint {
  620. remote-endpoint =
  621. <&replicator0_out_port1>;
  622. };
  623. };
  624. port@1 {
  625. reg = <1>;
  626. funnel4_in_port1: endpoint {
  627. remote-endpoint =
  628. <&replicator1_out_port1>;
  629. };
  630. };
  631. port@2 {
  632. reg = <2>;
  633. funnel4_in_port2: endpoint {
  634. remote-endpoint =
  635. <&replicator2_out_port1>;
  636. };
  637. };
  638. port@3 {
  639. reg = <3>;
  640. funnel4_in_port3: endpoint {
  641. remote-endpoint =
  642. <&replicator3_out_port1>;
  643. };
  644. };
  645. };
  646. };
  647. ptm@0,e3c7c000 {
  648. compatible = "arm,coresight-etm3x", "arm,primecell";
  649. reg = <0 0xe3c7c000 0 0x1000>;
  650. clocks = <&clk_375m>;
  651. clock-names = "apb_pclk";
  652. cpu = <&CPU0>;
  653. out-ports {
  654. port {
  655. ptm0_out_port: endpoint {
  656. remote-endpoint = <&funnel0_in_port0>;
  657. };
  658. };
  659. };
  660. };
  661. ptm@0,e3c7d000 {
  662. compatible = "arm,coresight-etm3x", "arm,primecell";
  663. reg = <0 0xe3c7d000 0 0x1000>;
  664. clocks = <&clk_375m>;
  665. clock-names = "apb_pclk";
  666. cpu = <&CPU1>;
  667. out-ports {
  668. port {
  669. ptm1_out_port: endpoint {
  670. remote-endpoint = <&funnel0_in_port1>;
  671. };
  672. };
  673. };
  674. };
  675. ptm@0,e3c7e000 {
  676. compatible = "arm,coresight-etm3x", "arm,primecell";
  677. reg = <0 0xe3c7e000 0 0x1000>;
  678. clocks = <&clk_375m>;
  679. clock-names = "apb_pclk";
  680. cpu = <&CPU2>;
  681. out-ports {
  682. port {
  683. ptm2_out_port: endpoint {
  684. remote-endpoint = <&funnel0_in_port2>;
  685. };
  686. };
  687. };
  688. };
  689. ptm@0,e3c7f000 {
  690. compatible = "arm,coresight-etm3x", "arm,primecell";
  691. reg = <0 0xe3c7f000 0 0x1000>;
  692. clocks = <&clk_375m>;
  693. clock-names = "apb_pclk";
  694. cpu = <&CPU3>;
  695. out-ports {
  696. port {
  697. ptm3_out_port: endpoint {
  698. remote-endpoint = <&funnel0_in_port3>;
  699. };
  700. };
  701. };
  702. };
  703. ptm@0,e3cbc000 {
  704. compatible = "arm,coresight-etm3x", "arm,primecell";
  705. reg = <0 0xe3cbc000 0 0x1000>;
  706. clocks = <&clk_375m>;
  707. clock-names = "apb_pclk";
  708. cpu = <&CPU4>;
  709. out-ports {
  710. port {
  711. ptm4_out_port: endpoint {
  712. remote-endpoint = <&funnel1_in_port0>;
  713. };
  714. };
  715. };
  716. };
  717. ptm@0,e3cbd000 {
  718. compatible = "arm,coresight-etm3x", "arm,primecell";
  719. reg = <0 0xe3cbd000 0 0x1000>;
  720. clocks = <&clk_375m>;
  721. clock-names = "apb_pclk";
  722. cpu = <&CPU5>;
  723. out-ports {
  724. port {
  725. ptm5_out_port: endpoint {
  726. remote-endpoint = <&funnel1_in_port1>;
  727. };
  728. };
  729. };
  730. };
  731. ptm@0,e3cbe000 {
  732. compatible = "arm,coresight-etm3x", "arm,primecell";
  733. reg = <0 0xe3cbe000 0 0x1000>;
  734. clocks = <&clk_375m>;
  735. clock-names = "apb_pclk";
  736. cpu = <&CPU6>;
  737. out-ports {
  738. port {
  739. ptm6_out_port: endpoint {
  740. remote-endpoint = <&funnel1_in_port2>;
  741. };
  742. };
  743. };
  744. };
  745. ptm@0,e3cbf000 {
  746. compatible = "arm,coresight-etm3x", "arm,primecell";
  747. reg = <0 0xe3cbf000 0 0x1000>;
  748. clocks = <&clk_375m>;
  749. clock-names = "apb_pclk";
  750. cpu = <&CPU7>;
  751. out-ports {
  752. port {
  753. ptm7_out_port: endpoint {
  754. remote-endpoint = <&funnel1_in_port3>;
  755. };
  756. };
  757. };
  758. };
  759. ptm@0,e3cfc000 {
  760. compatible = "arm,coresight-etm3x", "arm,primecell";
  761. reg = <0 0xe3cfc000 0 0x1000>;
  762. clocks = <&clk_375m>;
  763. clock-names = "apb_pclk";
  764. cpu = <&CPU8>;
  765. out-ports {
  766. port {
  767. ptm8_out_port: endpoint {
  768. remote-endpoint = <&funnel2_in_port0>;
  769. };
  770. };
  771. };
  772. };
  773. ptm@0,e3cfd000 {
  774. compatible = "arm,coresight-etm3x", "arm,primecell";
  775. reg = <0 0xe3cfd000 0 0x1000>;
  776. clocks = <&clk_375m>;
  777. clock-names = "apb_pclk";
  778. cpu = <&CPU9>;
  779. out-ports {
  780. port {
  781. ptm9_out_port: endpoint {
  782. remote-endpoint = <&funnel2_in_port1>;
  783. };
  784. };
  785. };
  786. };
  787. ptm@0,e3cfe000 {
  788. compatible = "arm,coresight-etm3x", "arm,primecell";
  789. reg = <0 0xe3cfe000 0 0x1000>;
  790. clocks = <&clk_375m>;
  791. clock-names = "apb_pclk";
  792. cpu = <&CPU10>;
  793. out-ports {
  794. port {
  795. ptm10_out_port: endpoint {
  796. remote-endpoint = <&funnel2_in_port2>;
  797. };
  798. };
  799. };
  800. };
  801. ptm@0,e3cff000 {
  802. compatible = "arm,coresight-etm3x", "arm,primecell";
  803. reg = <0 0xe3cff000 0 0x1000>;
  804. clocks = <&clk_375m>;
  805. clock-names = "apb_pclk";
  806. cpu = <&CPU11>;
  807. out-ports {
  808. port {
  809. ptm11_out_port: endpoint {
  810. remote-endpoint = <&funnel2_in_port3>;
  811. };
  812. };
  813. };
  814. };
  815. ptm@0,e3d3c000 {
  816. compatible = "arm,coresight-etm3x", "arm,primecell";
  817. reg = <0 0xe3d3c000 0 0x1000>;
  818. clocks = <&clk_375m>;
  819. clock-names = "apb_pclk";
  820. cpu = <&CPU12>;
  821. out-ports {
  822. port {
  823. ptm12_out_port: endpoint {
  824. remote-endpoint = <&funnel3_in_port0>;
  825. };
  826. };
  827. };
  828. };
  829. ptm@0,e3d3d000 {
  830. compatible = "arm,coresight-etm3x", "arm,primecell";
  831. reg = <0 0xe3d3d000 0 0x1000>;
  832. clocks = <&clk_375m>;
  833. clock-names = "apb_pclk";
  834. cpu = <&CPU13>;
  835. out-ports {
  836. port {
  837. ptm13_out_port: endpoint {
  838. remote-endpoint = <&funnel3_in_port1>;
  839. };
  840. };
  841. };
  842. };
  843. ptm@0,e3d3e000 {
  844. compatible = "arm,coresight-etm3x", "arm,primecell";
  845. reg = <0 0xe3d3e000 0 0x1000>;
  846. clocks = <&clk_375m>;
  847. clock-names = "apb_pclk";
  848. cpu = <&CPU14>;
  849. out-ports {
  850. port {
  851. ptm14_out_port: endpoint {
  852. remote-endpoint = <&funnel3_in_port2>;
  853. };
  854. };
  855. };
  856. };
  857. ptm@0,e3d3f000 {
  858. compatible = "arm,coresight-etm3x", "arm,primecell";
  859. reg = <0 0xe3d3f000 0 0x1000>;
  860. clocks = <&clk_375m>;
  861. clock-names = "apb_pclk";
  862. cpu = <&CPU15>;
  863. out-ports {
  864. port {
  865. ptm15_out_port: endpoint {
  866. remote-endpoint = <&funnel3_in_port3>;
  867. };
  868. };
  869. };
  870. };
  871. };