k3-am654.dtsi 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Device Tree Source for AM6 SoC family in Quad core configuration
  4. *
  5. * Copyright (C) 2016-2018 Texas Instruments Incorporated - http://www.ti.com/
  6. */
  7. #include "k3-am65.dtsi"
  8. / {
  9. cpus {
  10. #address-cells = <1>;
  11. #size-cells = <0>;
  12. cpu-map {
  13. cluster0: cluster0 {
  14. core0 {
  15. cpu = <&cpu0>;
  16. };
  17. core1 {
  18. cpu = <&cpu1>;
  19. };
  20. };
  21. cluster1: cluster1 {
  22. core0 {
  23. cpu = <&cpu2>;
  24. };
  25. core1 {
  26. cpu = <&cpu3>;
  27. };
  28. };
  29. };
  30. cpu0: cpu@0 {
  31. compatible = "arm,cortex-a53", "arm,armv8";
  32. reg = <0x000>;
  33. device_type = "cpu";
  34. enable-method = "psci";
  35. i-cache-size = <0x8000>;
  36. i-cache-line-size = <64>;
  37. i-cache-sets = <256>;
  38. d-cache-size = <0x8000>;
  39. d-cache-line-size = <64>;
  40. d-cache-sets = <128>;
  41. next-level-cache = <&L2_0>;
  42. };
  43. cpu1: cpu@1 {
  44. compatible = "arm,cortex-a53", "arm,armv8";
  45. reg = <0x001>;
  46. device_type = "cpu";
  47. enable-method = "psci";
  48. i-cache-size = <0x8000>;
  49. i-cache-line-size = <64>;
  50. i-cache-sets = <256>;
  51. d-cache-size = <0x8000>;
  52. d-cache-line-size = <64>;
  53. d-cache-sets = <128>;
  54. next-level-cache = <&L2_0>;
  55. };
  56. cpu2: cpu@100 {
  57. compatible = "arm,cortex-a53", "arm,armv8";
  58. reg = <0x100>;
  59. device_type = "cpu";
  60. enable-method = "psci";
  61. i-cache-size = <0x8000>;
  62. i-cache-line-size = <64>;
  63. i-cache-sets = <256>;
  64. d-cache-size = <0x8000>;
  65. d-cache-line-size = <64>;
  66. d-cache-sets = <128>;
  67. next-level-cache = <&L2_1>;
  68. };
  69. cpu3: cpu@101 {
  70. compatible = "arm,cortex-a53", "arm,armv8";
  71. reg = <0x101>;
  72. device_type = "cpu";
  73. enable-method = "psci";
  74. i-cache-size = <0x8000>;
  75. i-cache-line-size = <64>;
  76. i-cache-sets = <256>;
  77. d-cache-size = <0x8000>;
  78. d-cache-line-size = <64>;
  79. d-cache-sets = <128>;
  80. next-level-cache = <&L2_1>;
  81. };
  82. };
  83. L2_0: l2-cache0 {
  84. compatible = "cache";
  85. cache-level = <2>;
  86. cache-size = <0x80000>;
  87. cache-line-size = <64>;
  88. cache-sets = <512>;
  89. next-level-cache = <&msmc_l3>;
  90. };
  91. L2_1: l2-cache1 {
  92. compatible = "cache";
  93. cache-level = <2>;
  94. cache-size = <0x80000>;
  95. cache-line-size = <64>;
  96. cache-sets = <512>;
  97. next-level-cache = <&msmc_l3>;
  98. };
  99. msmc_l3: l3-cache0 {
  100. compatible = "cache";
  101. cache-level = <3>;
  102. };
  103. };