2
0

hmat.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /*
  2. * HMAT ACPI Implementation
  3. *
  4. * Copyright(C) 2019 Intel Corporation.
  5. *
  6. * Author:
  7. * Liu jingqi <jingqi.liu@linux.intel.com>
  8. * Tao Xu <tao3.xu@intel.com>
  9. *
  10. * HMAT is defined in ACPI 6.3: 5.2.27 Heterogeneous Memory Attribute Table
  11. * (HMAT)
  12. *
  13. * This library is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU Lesser General Public
  15. * License as published by the Free Software Foundation; either
  16. * version 2.1 of the License, or (at your option) any later version.
  17. *
  18. * This library is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  21. * Lesser General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Lesser General Public
  24. * License along with this library; if not, see <http://www.gnu.org/licenses/>
  25. */
  26. #include "qemu/osdep.h"
  27. #include "qemu/units.h"
  28. #include "system/numa.h"
  29. #include "hw/acpi/aml-build.h"
  30. #include "hw/acpi/hmat.h"
  31. /*
  32. * ACPI 6.3:
  33. * 5.2.27.3 Memory Proximity Domain Attributes Structure: Table 5-145
  34. */
  35. static void build_hmat_mpda(GArray *table_data, uint16_t flags,
  36. uint32_t initiator, uint32_t mem_node)
  37. {
  38. /* Memory Proximity Domain Attributes Structure */
  39. /* Type */
  40. build_append_int_noprefix(table_data, 0, 2);
  41. /* Reserved */
  42. build_append_int_noprefix(table_data, 0, 2);
  43. /* Length */
  44. build_append_int_noprefix(table_data, 40, 4);
  45. /* Flags */
  46. build_append_int_noprefix(table_data, flags, 2);
  47. /* Reserved */
  48. build_append_int_noprefix(table_data, 0, 2);
  49. /* Proximity Domain for the Attached Initiator */
  50. build_append_int_noprefix(table_data, initiator, 4);
  51. /* Proximity Domain for the Memory */
  52. build_append_int_noprefix(table_data, mem_node, 4);
  53. /* Reserved */
  54. build_append_int_noprefix(table_data, 0, 4);
  55. /*
  56. * Reserved:
  57. * Previously defined as the Start Address of the System Physical
  58. * Address Range. Deprecated since ACPI Spec 6.3.
  59. */
  60. build_append_int_noprefix(table_data, 0, 8);
  61. /*
  62. * Reserved:
  63. * Previously defined as the Range Length of the region in bytes.
  64. * Deprecated since ACPI Spec 6.3.
  65. */
  66. build_append_int_noprefix(table_data, 0, 8);
  67. }
  68. /*
  69. * ACPI 6.3: 5.2.27.4 System Locality Latency and Bandwidth Information
  70. * Structure: Table 5-146
  71. */
  72. static void build_hmat_lb(GArray *table_data, HMAT_LB_Info *hmat_lb,
  73. uint32_t num_initiator, uint32_t num_target,
  74. uint32_t *initiator_list)
  75. {
  76. int i, index;
  77. uint32_t initiator_to_index[MAX_NODES] = {};
  78. HMAT_LB_Data *lb_data;
  79. uint16_t *entry_list;
  80. uint32_t base;
  81. /* Length in bytes for entire structure */
  82. uint32_t lb_length
  83. = 32 /* Table length up to and including Entry Base Unit */
  84. + 4 * num_initiator /* Initiator Proximity Domain List */
  85. + 4 * num_target /* Target Proximity Domain List */
  86. + 2 * num_initiator * num_target; /* Latency or Bandwidth Entries */
  87. /* Type */
  88. build_append_int_noprefix(table_data, 1, 2);
  89. /* Reserved */
  90. build_append_int_noprefix(table_data, 0, 2);
  91. /* Length */
  92. build_append_int_noprefix(table_data, lb_length, 4);
  93. /* Flags: Bits [3:0] Memory Hierarchy, Bits[7:4] Reserved */
  94. assert(!(hmat_lb->hierarchy >> 4));
  95. build_append_int_noprefix(table_data, hmat_lb->hierarchy, 1);
  96. /* Data Type */
  97. build_append_int_noprefix(table_data, hmat_lb->data_type, 1);
  98. /* Reserved */
  99. build_append_int_noprefix(table_data, 0, 2);
  100. /* Number of Initiator Proximity Domains (s) */
  101. build_append_int_noprefix(table_data, num_initiator, 4);
  102. /* Number of Target Proximity Domains (t) */
  103. build_append_int_noprefix(table_data, num_target, 4);
  104. /* Reserved */
  105. build_append_int_noprefix(table_data, 0, 4);
  106. /* Entry Base Unit */
  107. if (hmat_lb->data_type <= HMAT_LB_DATA_WRITE_LATENCY) {
  108. /* Convert latency base from nanoseconds to picosecond */
  109. base = hmat_lb->base * 1000;
  110. } else {
  111. /* Convert bandwidth base from Byte to Megabyte */
  112. base = hmat_lb->base / MiB;
  113. }
  114. build_append_int_noprefix(table_data, base, 8);
  115. /* Initiator Proximity Domain List */
  116. for (i = 0; i < num_initiator; i++) {
  117. build_append_int_noprefix(table_data, initiator_list[i], 4);
  118. /* Reverse mapping for array possitions */
  119. initiator_to_index[initiator_list[i]] = i;
  120. }
  121. /* Target Proximity Domain List */
  122. for (i = 0; i < num_target; i++) {
  123. build_append_int_noprefix(table_data, i, 4);
  124. }
  125. /* Latency or Bandwidth Entries */
  126. entry_list = g_new0(uint16_t, num_initiator * num_target);
  127. for (i = 0; i < hmat_lb->list->len; i++) {
  128. lb_data = &g_array_index(hmat_lb->list, HMAT_LB_Data, i);
  129. index = initiator_to_index[lb_data->initiator] * num_target +
  130. lb_data->target;
  131. entry_list[index] = (uint16_t)(lb_data->data / hmat_lb->base);
  132. }
  133. for (i = 0; i < num_initiator * num_target; i++) {
  134. build_append_int_noprefix(table_data, entry_list[i], 2);
  135. }
  136. g_free(entry_list);
  137. }
  138. /* ACPI 6.3: 5.2.27.5 Memory Side Cache Information Structure: Table 5-147 */
  139. static void build_hmat_cache(GArray *table_data, uint8_t total_levels,
  140. NumaHmatCacheOptions *hmat_cache)
  141. {
  142. /*
  143. * Cache Attributes: Bits [3:0] – Total Cache Levels
  144. * for this Memory Proximity Domain
  145. */
  146. uint32_t cache_attr = total_levels;
  147. /* Bits [7:4] : Cache Level described in this structure */
  148. cache_attr |= (uint32_t) hmat_cache->level << 4;
  149. /* Bits [11:8] - Cache Associativity */
  150. cache_attr |= (uint32_t) hmat_cache->associativity << 8;
  151. /* Bits [15:12] - Write Policy */
  152. cache_attr |= (uint32_t) hmat_cache->policy << 12;
  153. /* Bits [31:16] - Cache Line size in bytes */
  154. cache_attr |= (uint32_t) hmat_cache->line << 16;
  155. /* Type */
  156. build_append_int_noprefix(table_data, 2, 2);
  157. /* Reserved */
  158. build_append_int_noprefix(table_data, 0, 2);
  159. /* Length */
  160. build_append_int_noprefix(table_data, 32, 4);
  161. /* Proximity Domain for the Memory */
  162. build_append_int_noprefix(table_data, hmat_cache->node_id, 4);
  163. /* Reserved */
  164. build_append_int_noprefix(table_data, 0, 4);
  165. /* Memory Side Cache Size */
  166. build_append_int_noprefix(table_data, hmat_cache->size, 8);
  167. /* Cache Attributes */
  168. build_append_int_noprefix(table_data, cache_attr, 4);
  169. /* Reserved */
  170. build_append_int_noprefix(table_data, 0, 2);
  171. /*
  172. * Number of SMBIOS handles (n)
  173. * Linux kernel uses Memory Side Cache Information Structure
  174. * without SMBIOS entries for now, so set Number of SMBIOS handles
  175. * as 0.
  176. */
  177. build_append_int_noprefix(table_data, 0, 2);
  178. }
  179. /* Build HMAT sub table structures */
  180. static void hmat_build_table_structs(GArray *table_data, NumaState *numa_state)
  181. {
  182. uint16_t flags;
  183. uint32_t num_initiator = 0;
  184. uint32_t initiator_list[MAX_NODES];
  185. int i, hierarchy, type, cache_level, total_levels;
  186. HMAT_LB_Info *hmat_lb;
  187. NumaHmatCacheOptions *hmat_cache;
  188. build_append_int_noprefix(table_data, 0, 4); /* Reserved */
  189. for (i = 0; i < numa_state->num_nodes; i++) {
  190. /*
  191. * Linux rejects whole HMAT table if a node with no memory
  192. * has one of these structures listing it as a target.
  193. */
  194. if (!numa_state->nodes[i].node_mem) {
  195. continue;
  196. }
  197. flags = 0;
  198. if (numa_state->nodes[i].initiator < MAX_NODES) {
  199. flags |= HMAT_PROXIMITY_INITIATOR_VALID;
  200. }
  201. build_hmat_mpda(table_data, flags, numa_state->nodes[i].initiator, i);
  202. }
  203. for (i = 0; i < numa_state->num_nodes; i++) {
  204. if (numa_state->nodes[i].has_cpu || numa_state->nodes[i].has_gi) {
  205. initiator_list[num_initiator++] = i;
  206. }
  207. }
  208. /*
  209. * ACPI 6.3: 5.2.27.4 System Locality Latency and Bandwidth Information
  210. * Structure: Table 5-146
  211. */
  212. for (hierarchy = HMAT_LB_MEM_MEMORY;
  213. hierarchy <= HMAT_LB_MEM_CACHE_3RD_LEVEL; hierarchy++) {
  214. for (type = HMAT_LB_DATA_ACCESS_LATENCY;
  215. type <= HMAT_LB_DATA_WRITE_BANDWIDTH; type++) {
  216. hmat_lb = numa_state->hmat_lb[hierarchy][type];
  217. if (hmat_lb && hmat_lb->list->len) {
  218. build_hmat_lb(table_data, hmat_lb, num_initiator,
  219. numa_state->num_nodes, initiator_list);
  220. }
  221. }
  222. }
  223. /*
  224. * ACPI 6.3: 5.2.27.5 Memory Side Cache Information Structure:
  225. * Table 5-147
  226. */
  227. for (i = 0; i < numa_state->num_nodes; i++) {
  228. total_levels = 0;
  229. for (cache_level = 1; cache_level < HMAT_LB_LEVELS; cache_level++) {
  230. if (numa_state->hmat_cache[i][cache_level]) {
  231. total_levels++;
  232. }
  233. }
  234. for (cache_level = 0; cache_level <= total_levels; cache_level++) {
  235. hmat_cache = numa_state->hmat_cache[i][cache_level];
  236. if (hmat_cache) {
  237. build_hmat_cache(table_data, total_levels, hmat_cache);
  238. }
  239. }
  240. }
  241. }
  242. void build_hmat(GArray *table_data, BIOSLinker *linker, NumaState *numa_state,
  243. const char *oem_id, const char *oem_table_id)
  244. {
  245. AcpiTable table = { .sig = "HMAT", .rev = 2,
  246. .oem_id = oem_id, .oem_table_id = oem_table_id };
  247. acpi_table_begin(&table, table_data);
  248. hmat_build_table_structs(table_data, numa_state);
  249. acpi_table_end(linker, &table);
  250. }