2 * Copyright 2015-2017 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
23 #include <linux/pci.h>
24 #include <linux/acpi.h>
27 #include "kfd_topology.h"
28 #include "kfd_iommu.h"
29 #include "amdgpu_amdkfd.h"
31 /* GPU Processor ID base for dGPUs for which VCRAT needs to be created.
32 * GPU processor ID are expressed with Bit[31]=1.
33 * The base is set to 0x8000_0000 + 0x1000 to avoid collision with GPU IDs
36 static uint32_t gpu_processor_id_low
= 0x80001000;
38 /* Return the next available gpu_processor_id and increment it for next GPU
39 * @total_cu_count - Total CUs present in the GPU including ones
42 static inline unsigned int get_and_inc_gpu_processor_id(
43 unsigned int total_cu_count
)
45 int current_id
= gpu_processor_id_low
;
47 gpu_processor_id_low
+= total_cu_count
;
51 /* Static table to describe GPU Cache information */
52 struct kfd_gpu_cache_info
{
56 /* Indicates how many Compute Units share this cache
57 * Value = 1 indicates the cache is not shared
59 uint32_t num_cu_shared
;
62 static struct kfd_gpu_cache_info kaveri_cache_info
[] = {
64 /* TCP L1 Cache per CU */
67 .flags
= (CRAT_CACHE_FLAGS_ENABLED
|
68 CRAT_CACHE_FLAGS_DATA_CACHE
|
69 CRAT_CACHE_FLAGS_SIMD_CACHE
),
74 /* Scalar L1 Instruction Cache (in SQC module) per bank */
77 .flags
= (CRAT_CACHE_FLAGS_ENABLED
|
78 CRAT_CACHE_FLAGS_INST_CACHE
|
79 CRAT_CACHE_FLAGS_SIMD_CACHE
),
83 /* Scalar L1 Data Cache (in SQC module) per bank */
86 .flags
= (CRAT_CACHE_FLAGS_ENABLED
|
87 CRAT_CACHE_FLAGS_DATA_CACHE
|
88 CRAT_CACHE_FLAGS_SIMD_CACHE
),
92 /* TODO: Add L2 Cache information */
96 static struct kfd_gpu_cache_info carrizo_cache_info
[] = {
98 /* TCP L1 Cache per CU */
101 .flags
= (CRAT_CACHE_FLAGS_ENABLED
|
102 CRAT_CACHE_FLAGS_DATA_CACHE
|
103 CRAT_CACHE_FLAGS_SIMD_CACHE
),
107 /* Scalar L1 Instruction Cache (in SQC module) per bank */
110 .flags
= (CRAT_CACHE_FLAGS_ENABLED
|
111 CRAT_CACHE_FLAGS_INST_CACHE
|
112 CRAT_CACHE_FLAGS_SIMD_CACHE
),
116 /* Scalar L1 Data Cache (in SQC module) per bank. */
119 .flags
= (CRAT_CACHE_FLAGS_ENABLED
|
120 CRAT_CACHE_FLAGS_DATA_CACHE
|
121 CRAT_CACHE_FLAGS_SIMD_CACHE
),
125 /* TODO: Add L2 Cache information */
128 /* NOTE: In future if more information is added to struct kfd_gpu_cache_info
129 * the following ASICs may need a separate table.
131 #define hawaii_cache_info kaveri_cache_info
132 #define tonga_cache_info carrizo_cache_info
133 #define fiji_cache_info carrizo_cache_info
134 #define polaris10_cache_info carrizo_cache_info
135 #define polaris11_cache_info carrizo_cache_info
136 #define polaris12_cache_info carrizo_cache_info
137 /* TODO - check & update Vega10 cache details */
138 #define vega10_cache_info carrizo_cache_info
139 #define raven_cache_info carrizo_cache_info
141 static void kfd_populated_cu_info_cpu(struct kfd_topology_device
*dev
,
142 struct crat_subtype_computeunit
*cu
)
144 dev
->node_props
.cpu_cores_count
= cu
->num_cpu_cores
;
145 dev
->node_props
.cpu_core_id_base
= cu
->processor_id_low
;
146 if (cu
->hsa_capability
& CRAT_CU_FLAGS_IOMMU_PRESENT
)
147 dev
->node_props
.capability
|= HSA_CAP_ATS_PRESENT
;
149 pr_debug("CU CPU: cores=%d id_base=%d\n", cu
->num_cpu_cores
,
150 cu
->processor_id_low
);
153 static void kfd_populated_cu_info_gpu(struct kfd_topology_device
*dev
,
154 struct crat_subtype_computeunit
*cu
)
156 dev
->node_props
.simd_id_base
= cu
->processor_id_low
;
157 dev
->node_props
.simd_count
= cu
->num_simd_cores
;
158 dev
->node_props
.lds_size_in_kb
= cu
->lds_size_in_kb
;
159 dev
->node_props
.max_waves_per_simd
= cu
->max_waves_simd
;
160 dev
->node_props
.wave_front_size
= cu
->wave_front_size
;
161 dev
->node_props
.array_count
= cu
->array_count
;
162 dev
->node_props
.cu_per_simd_array
= cu
->num_cu_per_array
;
163 dev
->node_props
.simd_per_cu
= cu
->num_simd_per_cu
;
164 dev
->node_props
.max_slots_scratch_cu
= cu
->max_slots_scatch_cu
;
165 if (cu
->hsa_capability
& CRAT_CU_FLAGS_HOT_PLUGGABLE
)
166 dev
->node_props
.capability
|= HSA_CAP_HOT_PLUGGABLE
;
167 pr_debug("CU GPU: id_base=%d\n", cu
->processor_id_low
);
170 /* kfd_parse_subtype_cu - parse compute unit subtypes and attach it to correct
171 * topology device present in the device_list
173 static int kfd_parse_subtype_cu(struct crat_subtype_computeunit
*cu
,
174 struct list_head
*device_list
)
176 struct kfd_topology_device
*dev
;
178 pr_debug("Found CU entry in CRAT table with proximity_domain=%d caps=%x\n",
179 cu
->proximity_domain
, cu
->hsa_capability
);
180 list_for_each_entry(dev
, device_list
, list
) {
181 if (cu
->proximity_domain
== dev
->proximity_domain
) {
182 if (cu
->flags
& CRAT_CU_FLAGS_CPU_PRESENT
)
183 kfd_populated_cu_info_cpu(dev
, cu
);
185 if (cu
->flags
& CRAT_CU_FLAGS_GPU_PRESENT
)
186 kfd_populated_cu_info_gpu(dev
, cu
);
194 static struct kfd_mem_properties
*
195 find_subtype_mem(uint32_t heap_type
, uint32_t flags
, uint32_t width
,
196 struct kfd_topology_device
*dev
)
198 struct kfd_mem_properties
*props
;
200 list_for_each_entry(props
, &dev
->mem_props
, list
) {
201 if (props
->heap_type
== heap_type
202 && props
->flags
== flags
203 && props
->width
== width
)
209 /* kfd_parse_subtype_mem - parse memory subtypes and attach it to correct
210 * topology device present in the device_list
212 static int kfd_parse_subtype_mem(struct crat_subtype_memory
*mem
,
213 struct list_head
*device_list
)
215 struct kfd_mem_properties
*props
;
216 struct kfd_topology_device
*dev
;
218 uint64_t size_in_bytes
;
222 pr_debug("Found memory entry in CRAT table with proximity_domain=%d\n",
223 mem
->proximity_domain
);
224 list_for_each_entry(dev
, device_list
, list
) {
225 if (mem
->proximity_domain
== dev
->proximity_domain
) {
226 /* We're on GPU node */
227 if (dev
->node_props
.cpu_cores_count
== 0) {
229 if (mem
->visibility_type
== 0)
231 HSA_MEM_HEAP_TYPE_FB_PRIVATE
;
234 heap_type
= mem
->visibility_type
;
236 heap_type
= HSA_MEM_HEAP_TYPE_SYSTEM
;
238 if (mem
->flags
& CRAT_MEM_FLAGS_HOT_PLUGGABLE
)
239 flags
|= HSA_MEM_FLAGS_HOT_PLUGGABLE
;
240 if (mem
->flags
& CRAT_MEM_FLAGS_NON_VOLATILE
)
241 flags
|= HSA_MEM_FLAGS_NON_VOLATILE
;
244 ((uint64_t)mem
->length_high
<< 32) +
248 /* Multiple banks of the same type are aggregated into
249 * one. User mode doesn't care about multiple physical
250 * memory segments. It's managed as a single virtual
251 * heap for user mode.
253 props
= find_subtype_mem(heap_type
, flags
, width
, dev
);
255 props
->size_in_bytes
+= size_in_bytes
;
259 props
= kfd_alloc_struct(props
);
263 props
->heap_type
= heap_type
;
264 props
->flags
= flags
;
265 props
->size_in_bytes
= size_in_bytes
;
266 props
->width
= width
;
268 dev
->node_props
.mem_banks_count
++;
269 list_add_tail(&props
->list
, &dev
->mem_props
);
278 /* kfd_parse_subtype_cache - parse cache subtypes and attach it to correct
279 * topology device present in the device_list
281 static int kfd_parse_subtype_cache(struct crat_subtype_cache
*cache
,
282 struct list_head
*device_list
)
284 struct kfd_cache_properties
*props
;
285 struct kfd_topology_device
*dev
;
287 uint32_t total_num_of_cu
;
289 id
= cache
->processor_id_low
;
291 pr_debug("Found cache entry in CRAT table with processor_id=%d\n", id
);
292 list_for_each_entry(dev
, device_list
, list
) {
293 total_num_of_cu
= (dev
->node_props
.array_count
*
294 dev
->node_props
.cu_per_simd_array
);
296 /* Cache infomration in CRAT doesn't have proximity_domain
297 * information as it is associated with a CPU core or GPU
298 * Compute Unit. So map the cache using CPU core Id or SIMD
300 * TODO: This works because currently we can safely assume that
301 * Compute Units are parsed before caches are parsed. In
302 * future, remove this dependency
304 if ((id
>= dev
->node_props
.cpu_core_id_base
&&
305 id
<= dev
->node_props
.cpu_core_id_base
+
306 dev
->node_props
.cpu_cores_count
) ||
307 (id
>= dev
->node_props
.simd_id_base
&&
308 id
< dev
->node_props
.simd_id_base
+
310 props
= kfd_alloc_struct(props
);
314 props
->processor_id_low
= id
;
315 props
->cache_level
= cache
->cache_level
;
316 props
->cache_size
= cache
->cache_size
;
317 props
->cacheline_size
= cache
->cache_line_size
;
318 props
->cachelines_per_tag
= cache
->lines_per_tag
;
319 props
->cache_assoc
= cache
->associativity
;
320 props
->cache_latency
= cache
->cache_latency
;
321 memcpy(props
->sibling_map
, cache
->sibling_map
,
322 sizeof(props
->sibling_map
));
324 if (cache
->flags
& CRAT_CACHE_FLAGS_DATA_CACHE
)
325 props
->cache_type
|= HSA_CACHE_TYPE_DATA
;
326 if (cache
->flags
& CRAT_CACHE_FLAGS_INST_CACHE
)
327 props
->cache_type
|= HSA_CACHE_TYPE_INSTRUCTION
;
328 if (cache
->flags
& CRAT_CACHE_FLAGS_CPU_CACHE
)
329 props
->cache_type
|= HSA_CACHE_TYPE_CPU
;
330 if (cache
->flags
& CRAT_CACHE_FLAGS_SIMD_CACHE
)
331 props
->cache_type
|= HSA_CACHE_TYPE_HSACU
;
334 dev
->node_props
.caches_count
++;
335 list_add_tail(&props
->list
, &dev
->cache_props
);
344 /* kfd_parse_subtype_iolink - parse iolink subtypes and attach it to correct
345 * topology device present in the device_list
347 static int kfd_parse_subtype_iolink(struct crat_subtype_iolink
*iolink
,
348 struct list_head
*device_list
)
350 struct kfd_iolink_properties
*props
= NULL
, *props2
;
351 struct kfd_topology_device
*dev
, *to_dev
;
355 id_from
= iolink
->proximity_domain_from
;
356 id_to
= iolink
->proximity_domain_to
;
358 pr_debug("Found IO link entry in CRAT table with id_from=%d, id_to %d\n",
360 list_for_each_entry(dev
, device_list
, list
) {
361 if (id_from
== dev
->proximity_domain
) {
362 props
= kfd_alloc_struct(props
);
366 props
->node_from
= id_from
;
367 props
->node_to
= id_to
;
368 props
->ver_maj
= iolink
->version_major
;
369 props
->ver_min
= iolink
->version_minor
;
370 props
->iolink_type
= iolink
->io_interface_type
;
372 if (props
->iolink_type
== CRAT_IOLINK_TYPE_PCIEXPRESS
)
374 else if (props
->iolink_type
== CRAT_IOLINK_TYPE_XGMI
)
377 props
->weight
= node_distance(id_from
, id_to
);
379 props
->min_latency
= iolink
->minimum_latency
;
380 props
->max_latency
= iolink
->maximum_latency
;
381 props
->min_bandwidth
= iolink
->minimum_bandwidth_mbs
;
382 props
->max_bandwidth
= iolink
->maximum_bandwidth_mbs
;
383 props
->rec_transfer_size
=
384 iolink
->recommended_transfer_size
;
386 dev
->io_link_count
++;
387 dev
->node_props
.io_links_count
++;
388 list_add_tail(&props
->list
, &dev
->io_link_props
);
393 /* CPU topology is created before GPUs are detected, so CPU->GPU
394 * links are not built at that time. If a PCIe type is discovered, it
395 * means a GPU is detected and we are adding GPU->CPU to the topology.
396 * At this time, also add the corresponded CPU->GPU link if GPU
398 * For xGMI, we only added the link with one direction in the crat
399 * table, add corresponded reversed direction link now.
401 if (props
&& (iolink
->flags
& CRAT_IOLINK_FLAGS_BI_DIRECTIONAL
)) {
402 to_dev
= kfd_topology_device_by_proximity_domain(id_to
);
405 /* same everything but the other direction */
406 props2
= kmemdup(props
, sizeof(*props2
), GFP_KERNEL
);
407 props2
->node_from
= id_to
;
408 props2
->node_to
= id_from
;
410 to_dev
->io_link_count
++;
411 to_dev
->node_props
.io_links_count
++;
412 list_add_tail(&props2
->list
, &to_dev
->io_link_props
);
418 /* kfd_parse_subtype - parse subtypes and attach it to correct topology device
419 * present in the device_list
420 * @sub_type_hdr - subtype section of crat_image
421 * @device_list - list of topology devices present in this crat_image
423 static int kfd_parse_subtype(struct crat_subtype_generic
*sub_type_hdr
,
424 struct list_head
*device_list
)
426 struct crat_subtype_computeunit
*cu
;
427 struct crat_subtype_memory
*mem
;
428 struct crat_subtype_cache
*cache
;
429 struct crat_subtype_iolink
*iolink
;
432 switch (sub_type_hdr
->type
) {
433 case CRAT_SUBTYPE_COMPUTEUNIT_AFFINITY
:
434 cu
= (struct crat_subtype_computeunit
*)sub_type_hdr
;
435 ret
= kfd_parse_subtype_cu(cu
, device_list
);
437 case CRAT_SUBTYPE_MEMORY_AFFINITY
:
438 mem
= (struct crat_subtype_memory
*)sub_type_hdr
;
439 ret
= kfd_parse_subtype_mem(mem
, device_list
);
441 case CRAT_SUBTYPE_CACHE_AFFINITY
:
442 cache
= (struct crat_subtype_cache
*)sub_type_hdr
;
443 ret
= kfd_parse_subtype_cache(cache
, device_list
);
445 case CRAT_SUBTYPE_TLB_AFFINITY
:
447 * For now, nothing to do here
449 pr_debug("Found TLB entry in CRAT table (not processing)\n");
451 case CRAT_SUBTYPE_CCOMPUTE_AFFINITY
:
453 * For now, nothing to do here
455 pr_debug("Found CCOMPUTE entry in CRAT table (not processing)\n");
457 case CRAT_SUBTYPE_IOLINK_AFFINITY
:
458 iolink
= (struct crat_subtype_iolink
*)sub_type_hdr
;
459 ret
= kfd_parse_subtype_iolink(iolink
, device_list
);
462 pr_warn("Unknown subtype %d in CRAT\n",
469 /* kfd_parse_crat_table - parse CRAT table. For each node present in CRAT
470 * create a kfd_topology_device and add in to device_list. Also parse
471 * CRAT subtypes and attach it to appropriate kfd_topology_device
472 * @crat_image - input image containing CRAT
473 * @device_list - [OUT] list of kfd_topology_device generated after
475 * @proximity_domain - Proximity domain of the first device in the table
477 * Return - 0 if successful else -ve value
479 int kfd_parse_crat_table(void *crat_image
, struct list_head
*device_list
,
480 uint32_t proximity_domain
)
482 struct kfd_topology_device
*top_dev
= NULL
;
483 struct crat_subtype_generic
*sub_type_hdr
;
486 struct crat_header
*crat_table
= (struct crat_header
*)crat_image
;
493 if (!list_empty(device_list
)) {
494 pr_warn("Error device list should be empty\n");
498 num_nodes
= crat_table
->num_domains
;
499 image_len
= crat_table
->length
;
501 pr_info("Parsing CRAT table with %d nodes\n", num_nodes
);
503 for (node_id
= 0; node_id
< num_nodes
; node_id
++) {
504 top_dev
= kfd_create_topology_device(device_list
);
507 top_dev
->proximity_domain
= proximity_domain
++;
515 memcpy(top_dev
->oem_id
, crat_table
->oem_id
, CRAT_OEMID_LENGTH
);
516 memcpy(top_dev
->oem_table_id
, crat_table
->oem_table_id
,
517 CRAT_OEMTABLEID_LENGTH
);
518 top_dev
->oem_revision
= crat_table
->oem_revision
;
520 sub_type_hdr
= (struct crat_subtype_generic
*)(crat_table
+1);
521 while ((char *)sub_type_hdr
+ sizeof(struct crat_subtype_generic
) <
522 ((char *)crat_image
) + image_len
) {
523 if (sub_type_hdr
->flags
& CRAT_SUBTYPE_FLAGS_ENABLED
) {
524 ret
= kfd_parse_subtype(sub_type_hdr
, device_list
);
529 sub_type_hdr
= (typeof(sub_type_hdr
))((char *)sub_type_hdr
+
530 sub_type_hdr
->length
);
535 kfd_release_topology_device_list(device_list
);
540 /* Helper function. See kfd_fill_gpu_cache_info for parameter description */
541 static int fill_in_pcache(struct crat_subtype_cache
*pcache
,
542 struct kfd_gpu_cache_info
*pcache_info
,
543 struct kfd_cu_info
*cu_info
,
546 int cache_type
, unsigned int cu_processor_id
,
549 unsigned int cu_sibling_map_mask
;
552 /* First check if enough memory is available */
553 if (sizeof(struct crat_subtype_cache
) > mem_available
)
556 cu_sibling_map_mask
= cu_bitmask
;
557 cu_sibling_map_mask
>>= cu_block
;
558 cu_sibling_map_mask
&=
559 ((1 << pcache_info
[cache_type
].num_cu_shared
) - 1);
560 first_active_cu
= ffs(cu_sibling_map_mask
);
562 /* CU could be inactive. In case of shared cache find the first active
563 * CU. and incase of non-shared cache check if the CU is inactive. If
564 * inactive active skip it
566 if (first_active_cu
) {
567 memset(pcache
, 0, sizeof(struct crat_subtype_cache
));
568 pcache
->type
= CRAT_SUBTYPE_CACHE_AFFINITY
;
569 pcache
->length
= sizeof(struct crat_subtype_cache
);
570 pcache
->flags
= pcache_info
[cache_type
].flags
;
571 pcache
->processor_id_low
= cu_processor_id
572 + (first_active_cu
- 1);
573 pcache
->cache_level
= pcache_info
[cache_type
].cache_level
;
574 pcache
->cache_size
= pcache_info
[cache_type
].cache_size
;
576 /* Sibling map is w.r.t processor_id_low, so shift out
579 cu_sibling_map_mask
=
580 cu_sibling_map_mask
>> (first_active_cu
- 1);
582 pcache
->sibling_map
[0] = (uint8_t)(cu_sibling_map_mask
& 0xFF);
583 pcache
->sibling_map
[1] =
584 (uint8_t)((cu_sibling_map_mask
>> 8) & 0xFF);
585 pcache
->sibling_map
[2] =
586 (uint8_t)((cu_sibling_map_mask
>> 16) & 0xFF);
587 pcache
->sibling_map
[3] =
588 (uint8_t)((cu_sibling_map_mask
>> 24) & 0xFF);
594 /* kfd_fill_gpu_cache_info - Fill GPU cache info using kfd_gpu_cache_info
597 * @kdev - [IN] GPU device
598 * @gpu_processor_id - [IN] GPU processor ID to which these caches
600 * @available_size - [IN] Amount of memory available in pcache
601 * @cu_info - [IN] Compute Unit info obtained from KGD
602 * @pcache - [OUT] memory into which cache data is to be filled in.
603 * @size_filled - [OUT] amount of data used up in pcache.
604 * @num_of_entries - [OUT] number of caches added
606 static int kfd_fill_gpu_cache_info(struct kfd_dev
*kdev
,
607 int gpu_processor_id
,
609 struct kfd_cu_info
*cu_info
,
610 struct crat_subtype_cache
*pcache
,
614 struct kfd_gpu_cache_info
*pcache_info
;
615 int num_of_cache_types
= 0;
618 int mem_available
= available_size
;
619 unsigned int cu_processor_id
;
622 switch (kdev
->device_info
->asic_family
) {
624 pcache_info
= kaveri_cache_info
;
625 num_of_cache_types
= ARRAY_SIZE(kaveri_cache_info
);
628 pcache_info
= hawaii_cache_info
;
629 num_of_cache_types
= ARRAY_SIZE(hawaii_cache_info
);
632 pcache_info
= carrizo_cache_info
;
633 num_of_cache_types
= ARRAY_SIZE(carrizo_cache_info
);
636 pcache_info
= tonga_cache_info
;
637 num_of_cache_types
= ARRAY_SIZE(tonga_cache_info
);
640 pcache_info
= fiji_cache_info
;
641 num_of_cache_types
= ARRAY_SIZE(fiji_cache_info
);
644 pcache_info
= polaris10_cache_info
;
645 num_of_cache_types
= ARRAY_SIZE(polaris10_cache_info
);
648 pcache_info
= polaris11_cache_info
;
649 num_of_cache_types
= ARRAY_SIZE(polaris11_cache_info
);
652 pcache_info
= polaris12_cache_info
;
653 num_of_cache_types
= ARRAY_SIZE(polaris12_cache_info
);
658 pcache_info
= vega10_cache_info
;
659 num_of_cache_types
= ARRAY_SIZE(vega10_cache_info
);
662 pcache_info
= raven_cache_info
;
663 num_of_cache_types
= ARRAY_SIZE(raven_cache_info
);
672 /* For each type of cache listed in the kfd_gpu_cache_info table,
673 * go through all available Compute Units.
674 * The [i,j,k] loop will
675 * if kfd_gpu_cache_info.num_cu_shared = 1
676 * will parse through all available CU
677 * If (kfd_gpu_cache_info.num_cu_shared != 1)
678 * then it will consider only one CU from
682 for (ct
= 0; ct
< num_of_cache_types
; ct
++) {
683 cu_processor_id
= gpu_processor_id
;
684 for (i
= 0; i
< cu_info
->num_shader_engines
; i
++) {
685 for (j
= 0; j
< cu_info
->num_shader_arrays_per_engine
;
687 for (k
= 0; k
< cu_info
->num_cu_per_sh
;
688 k
+= pcache_info
[ct
].num_cu_shared
) {
690 ret
= fill_in_pcache(pcache
,
694 cu_info
->cu_bitmap
[i
][j
],
711 /* Move to next CU block */
713 pcache_info
[ct
].num_cu_shared
;
719 pr_debug("Added [%d] GPU cache entries\n", *num_of_entries
);
725 * kfd_create_crat_image_acpi - Allocates memory for CRAT image and
726 * copies CRAT from ACPI (if available).
727 * NOTE: Call kfd_destroy_crat_image to free CRAT image memory
729 * @crat_image: CRAT read from ACPI. If no CRAT in ACPI then
730 * crat_image will be NULL
731 * @size: [OUT] size of crat_image
733 * Return 0 if successful else return error code
735 int kfd_create_crat_image_acpi(void **crat_image
, size_t *size
)
737 struct acpi_table_header
*crat_table
;
746 /* Fetch the CRAT table from ACPI */
747 status
= acpi_get_table(CRAT_SIGNATURE
, 0, &crat_table
);
748 if (status
== AE_NOT_FOUND
) {
749 pr_warn("CRAT table not found\n");
751 } else if (ACPI_FAILURE(status
)) {
752 const char *err
= acpi_format_exception(status
);
754 pr_err("CRAT table error: %s\n", err
);
759 pr_info("CRAT table disabled by module option\n");
763 pcrat_image
= kmemdup(crat_table
, crat_table
->length
, GFP_KERNEL
);
767 *crat_image
= pcrat_image
;
768 *size
= crat_table
->length
;
773 /* Memory required to create Virtual CRAT.
774 * Since there is no easy way to predict the amount of memory required, the
775 * following amount are allocated for CPU and GPU Virtual CRAT. This is
776 * expected to cover all known conditions. But to be safe additional check
777 * is put in the code to ensure we don't overwrite.
779 #define VCRAT_SIZE_FOR_CPU (2 * PAGE_SIZE)
780 #define VCRAT_SIZE_FOR_GPU (3 * PAGE_SIZE)
782 /* kfd_fill_cu_for_cpu - Fill in Compute info for the given CPU NUMA node
784 * @numa_node_id: CPU NUMA node id
785 * @avail_size: Available size in the memory
786 * @sub_type_hdr: Memory into which compute info will be filled in
788 * Return 0 if successful else return -ve value
790 static int kfd_fill_cu_for_cpu(int numa_node_id
, int *avail_size
,
791 int proximity_domain
,
792 struct crat_subtype_computeunit
*sub_type_hdr
)
794 const struct cpumask
*cpumask
;
796 *avail_size
-= sizeof(struct crat_subtype_computeunit
);
800 memset(sub_type_hdr
, 0, sizeof(struct crat_subtype_computeunit
));
802 /* Fill in subtype header data */
803 sub_type_hdr
->type
= CRAT_SUBTYPE_COMPUTEUNIT_AFFINITY
;
804 sub_type_hdr
->length
= sizeof(struct crat_subtype_computeunit
);
805 sub_type_hdr
->flags
= CRAT_SUBTYPE_FLAGS_ENABLED
;
807 cpumask
= cpumask_of_node(numa_node_id
);
809 /* Fill in CU data */
810 sub_type_hdr
->flags
|= CRAT_CU_FLAGS_CPU_PRESENT
;
811 sub_type_hdr
->proximity_domain
= proximity_domain
;
812 sub_type_hdr
->processor_id_low
= kfd_numa_node_to_apic_id(numa_node_id
);
813 if (sub_type_hdr
->processor_id_low
== -1)
816 sub_type_hdr
->num_cpu_cores
= cpumask_weight(cpumask
);
821 /* kfd_fill_mem_info_for_cpu - Fill in Memory info for the given CPU NUMA node
823 * @numa_node_id: CPU NUMA node id
824 * @avail_size: Available size in the memory
825 * @sub_type_hdr: Memory into which compute info will be filled in
827 * Return 0 if successful else return -ve value
829 static int kfd_fill_mem_info_for_cpu(int numa_node_id
, int *avail_size
,
830 int proximity_domain
,
831 struct crat_subtype_memory
*sub_type_hdr
)
833 uint64_t mem_in_bytes
= 0;
837 *avail_size
-= sizeof(struct crat_subtype_memory
);
841 memset(sub_type_hdr
, 0, sizeof(struct crat_subtype_memory
));
843 /* Fill in subtype header data */
844 sub_type_hdr
->type
= CRAT_SUBTYPE_MEMORY_AFFINITY
;
845 sub_type_hdr
->length
= sizeof(struct crat_subtype_memory
);
846 sub_type_hdr
->flags
= CRAT_SUBTYPE_FLAGS_ENABLED
;
848 /* Fill in Memory Subunit data */
850 /* Unlike si_meminfo, si_meminfo_node is not exported. So
851 * the following lines are duplicated from si_meminfo_node
854 pgdat
= NODE_DATA(numa_node_id
);
855 for (zone_type
= 0; zone_type
< MAX_NR_ZONES
; zone_type
++)
856 mem_in_bytes
+= zone_managed_pages(&pgdat
->node_zones
[zone_type
]);
857 mem_in_bytes
<<= PAGE_SHIFT
;
859 sub_type_hdr
->length_low
= lower_32_bits(mem_in_bytes
);
860 sub_type_hdr
->length_high
= upper_32_bits(mem_in_bytes
);
861 sub_type_hdr
->proximity_domain
= proximity_domain
;
867 static int kfd_fill_iolink_info_for_cpu(int numa_node_id
, int *avail_size
,
868 uint32_t *num_entries
,
869 struct crat_subtype_iolink
*sub_type_hdr
)
872 struct cpuinfo_x86
*c
= &cpu_data(0);
875 if (c
->x86_vendor
== X86_VENDOR_AMD
)
876 link_type
= CRAT_IOLINK_TYPE_HYPERTRANSPORT
;
878 link_type
= CRAT_IOLINK_TYPE_QPI_1_1
;
882 /* Create IO links from this node to other CPU nodes */
883 for_each_online_node(nid
) {
884 if (nid
== numa_node_id
) /* node itself */
887 *avail_size
-= sizeof(struct crat_subtype_iolink
);
891 memset(sub_type_hdr
, 0, sizeof(struct crat_subtype_iolink
));
893 /* Fill in subtype header data */
894 sub_type_hdr
->type
= CRAT_SUBTYPE_IOLINK_AFFINITY
;
895 sub_type_hdr
->length
= sizeof(struct crat_subtype_iolink
);
896 sub_type_hdr
->flags
= CRAT_SUBTYPE_FLAGS_ENABLED
;
898 /* Fill in IO link data */
899 sub_type_hdr
->proximity_domain_from
= numa_node_id
;
900 sub_type_hdr
->proximity_domain_to
= nid
;
901 sub_type_hdr
->io_interface_type
= link_type
;
911 /* kfd_create_vcrat_image_cpu - Create Virtual CRAT for CPU
913 * @pcrat_image: Fill in VCRAT for CPU
914 * @size: [IN] allocated size of crat_image.
915 * [OUT] actual size of data filled in crat_image
917 static int kfd_create_vcrat_image_cpu(void *pcrat_image
, size_t *size
)
919 struct crat_header
*crat_table
= (struct crat_header
*)pcrat_image
;
920 struct acpi_table_header
*acpi_table
;
922 struct crat_subtype_generic
*sub_type_hdr
;
923 int avail_size
= *size
;
926 uint32_t entries
= 0;
930 if (!pcrat_image
|| avail_size
< VCRAT_SIZE_FOR_CPU
)
933 /* Fill in CRAT Header.
934 * Modify length and total_entries as subunits are added.
936 avail_size
-= sizeof(struct crat_header
);
940 memset(crat_table
, 0, sizeof(struct crat_header
));
941 memcpy(&crat_table
->signature
, CRAT_SIGNATURE
,
942 sizeof(crat_table
->signature
));
943 crat_table
->length
= sizeof(struct crat_header
);
945 status
= acpi_get_table("DSDT", 0, &acpi_table
);
947 pr_warn("DSDT table not found for OEM information\n");
949 crat_table
->oem_revision
= acpi_table
->revision
;
950 memcpy(crat_table
->oem_id
, acpi_table
->oem_id
,
952 memcpy(crat_table
->oem_table_id
, acpi_table
->oem_table_id
,
953 CRAT_OEMTABLEID_LENGTH
);
955 crat_table
->total_entries
= 0;
956 crat_table
->num_domains
= 0;
958 sub_type_hdr
= (struct crat_subtype_generic
*)(crat_table
+1);
960 for_each_online_node(numa_node_id
) {
961 if (kfd_numa_node_to_apic_id(numa_node_id
) == -1)
964 /* Fill in Subtype: Compute Unit */
965 ret
= kfd_fill_cu_for_cpu(numa_node_id
, &avail_size
,
966 crat_table
->num_domains
,
967 (struct crat_subtype_computeunit
*)sub_type_hdr
);
970 crat_table
->length
+= sub_type_hdr
->length
;
971 crat_table
->total_entries
++;
973 sub_type_hdr
= (typeof(sub_type_hdr
))((char *)sub_type_hdr
+
974 sub_type_hdr
->length
);
976 /* Fill in Subtype: Memory */
977 ret
= kfd_fill_mem_info_for_cpu(numa_node_id
, &avail_size
,
978 crat_table
->num_domains
,
979 (struct crat_subtype_memory
*)sub_type_hdr
);
982 crat_table
->length
+= sub_type_hdr
->length
;
983 crat_table
->total_entries
++;
985 sub_type_hdr
= (typeof(sub_type_hdr
))((char *)sub_type_hdr
+
986 sub_type_hdr
->length
);
988 /* Fill in Subtype: IO Link */
990 ret
= kfd_fill_iolink_info_for_cpu(numa_node_id
, &avail_size
,
992 (struct crat_subtype_iolink
*)sub_type_hdr
);
995 crat_table
->length
+= (sub_type_hdr
->length
* entries
);
996 crat_table
->total_entries
+= entries
;
998 sub_type_hdr
= (typeof(sub_type_hdr
))((char *)sub_type_hdr
+
999 sub_type_hdr
->length
* entries
);
1001 pr_info("IO link not available for non x86 platforms\n");
1004 crat_table
->num_domains
++;
1007 /* TODO: Add cache Subtype for CPU.
1008 * Currently, CPU cache information is available in function
1009 * detect_cache_attributes(cpu) defined in the file
1010 * ./arch/x86/kernel/cpu/intel_cacheinfo.c. This function is not
1011 * exported and to get the same information the code needs to be
1015 *size
= crat_table
->length
;
1016 pr_info("Virtual CRAT table created for CPU\n");
1021 static int kfd_fill_gpu_memory_affinity(int *avail_size
,
1022 struct kfd_dev
*kdev
, uint8_t type
, uint64_t size
,
1023 struct crat_subtype_memory
*sub_type_hdr
,
1024 uint32_t proximity_domain
,
1025 const struct kfd_local_mem_info
*local_mem_info
)
1027 *avail_size
-= sizeof(struct crat_subtype_memory
);
1028 if (*avail_size
< 0)
1031 memset((void *)sub_type_hdr
, 0, sizeof(struct crat_subtype_memory
));
1032 sub_type_hdr
->type
= CRAT_SUBTYPE_MEMORY_AFFINITY
;
1033 sub_type_hdr
->length
= sizeof(struct crat_subtype_memory
);
1034 sub_type_hdr
->flags
|= CRAT_SUBTYPE_FLAGS_ENABLED
;
1036 sub_type_hdr
->proximity_domain
= proximity_domain
;
1038 pr_debug("Fill gpu memory affinity - type 0x%x size 0x%llx\n",
1041 sub_type_hdr
->length_low
= lower_32_bits(size
);
1042 sub_type_hdr
->length_high
= upper_32_bits(size
);
1044 sub_type_hdr
->width
= local_mem_info
->vram_width
;
1045 sub_type_hdr
->visibility_type
= type
;
1050 /* kfd_fill_gpu_direct_io_link - Fill in direct io link from GPU
1052 * @avail_size: Available size in the memory
1053 * @kdev - [IN] GPU device
1054 * @sub_type_hdr: Memory into which io link info will be filled in
1055 * @proximity_domain - proximity domain of the GPU node
1057 * Return 0 if successful else return -ve value
1059 static int kfd_fill_gpu_direct_io_link_to_cpu(int *avail_size
,
1060 struct kfd_dev
*kdev
,
1061 struct crat_subtype_iolink
*sub_type_hdr
,
1062 uint32_t proximity_domain
)
1064 *avail_size
-= sizeof(struct crat_subtype_iolink
);
1065 if (*avail_size
< 0)
1068 memset((void *)sub_type_hdr
, 0, sizeof(struct crat_subtype_iolink
));
1070 /* Fill in subtype header data */
1071 sub_type_hdr
->type
= CRAT_SUBTYPE_IOLINK_AFFINITY
;
1072 sub_type_hdr
->length
= sizeof(struct crat_subtype_iolink
);
1073 sub_type_hdr
->flags
|= CRAT_SUBTYPE_FLAGS_ENABLED
;
1074 if (kfd_dev_is_large_bar(kdev
))
1075 sub_type_hdr
->flags
|= CRAT_IOLINK_FLAGS_BI_DIRECTIONAL
;
1077 /* Fill in IOLINK subtype.
1078 * TODO: Fill-in other fields of iolink subtype
1080 sub_type_hdr
->io_interface_type
= CRAT_IOLINK_TYPE_PCIEXPRESS
;
1081 sub_type_hdr
->proximity_domain_from
= proximity_domain
;
1083 if (kdev
->pdev
->dev
.numa_node
== NUMA_NO_NODE
)
1084 sub_type_hdr
->proximity_domain_to
= 0;
1086 sub_type_hdr
->proximity_domain_to
= kdev
->pdev
->dev
.numa_node
;
1088 sub_type_hdr
->proximity_domain_to
= 0;
1093 static int kfd_fill_gpu_xgmi_link_to_gpu(int *avail_size
,
1094 struct kfd_dev
*kdev
,
1095 struct crat_subtype_iolink
*sub_type_hdr
,
1096 uint32_t proximity_domain_from
,
1097 uint32_t proximity_domain_to
)
1099 *avail_size
-= sizeof(struct crat_subtype_iolink
);
1100 if (*avail_size
< 0)
1103 memset((void *)sub_type_hdr
, 0, sizeof(struct crat_subtype_iolink
));
1105 sub_type_hdr
->type
= CRAT_SUBTYPE_IOLINK_AFFINITY
;
1106 sub_type_hdr
->length
= sizeof(struct crat_subtype_iolink
);
1107 sub_type_hdr
->flags
|= CRAT_SUBTYPE_FLAGS_ENABLED
|
1108 CRAT_IOLINK_FLAGS_BI_DIRECTIONAL
;
1110 sub_type_hdr
->io_interface_type
= CRAT_IOLINK_TYPE_XGMI
;
1111 sub_type_hdr
->proximity_domain_from
= proximity_domain_from
;
1112 sub_type_hdr
->proximity_domain_to
= proximity_domain_to
;
1116 /* kfd_create_vcrat_image_gpu - Create Virtual CRAT for CPU
1118 * @pcrat_image: Fill in VCRAT for GPU
1119 * @size: [IN] allocated size of crat_image.
1120 * [OUT] actual size of data filled in crat_image
1122 static int kfd_create_vcrat_image_gpu(void *pcrat_image
,
1123 size_t *size
, struct kfd_dev
*kdev
,
1124 uint32_t proximity_domain
)
1126 struct crat_header
*crat_table
= (struct crat_header
*)pcrat_image
;
1127 struct crat_subtype_generic
*sub_type_hdr
;
1128 struct kfd_local_mem_info local_mem_info
;
1129 struct kfd_topology_device
*peer_dev
;
1130 struct crat_subtype_computeunit
*cu
;
1131 struct kfd_cu_info cu_info
;
1132 int avail_size
= *size
;
1133 uint32_t total_num_of_cu
;
1134 int num_of_cache_entries
= 0;
1135 int cache_mem_filled
= 0;
1139 if (!pcrat_image
|| avail_size
< VCRAT_SIZE_FOR_GPU
)
1142 /* Fill the CRAT Header.
1143 * Modify length and total_entries as subunits are added.
1145 avail_size
-= sizeof(struct crat_header
);
1149 memset(crat_table
, 0, sizeof(struct crat_header
));
1151 memcpy(&crat_table
->signature
, CRAT_SIGNATURE
,
1152 sizeof(crat_table
->signature
));
1153 /* Change length as we add more subtypes*/
1154 crat_table
->length
= sizeof(struct crat_header
);
1155 crat_table
->num_domains
= 1;
1156 crat_table
->total_entries
= 0;
1158 /* Fill in Subtype: Compute Unit
1159 * First fill in the sub type header and then sub type data
1161 avail_size
-= sizeof(struct crat_subtype_computeunit
);
1165 sub_type_hdr
= (struct crat_subtype_generic
*)(crat_table
+ 1);
1166 memset(sub_type_hdr
, 0, sizeof(struct crat_subtype_computeunit
));
1168 sub_type_hdr
->type
= CRAT_SUBTYPE_COMPUTEUNIT_AFFINITY
;
1169 sub_type_hdr
->length
= sizeof(struct crat_subtype_computeunit
);
1170 sub_type_hdr
->flags
= CRAT_SUBTYPE_FLAGS_ENABLED
;
1172 /* Fill CU subtype data */
1173 cu
= (struct crat_subtype_computeunit
*)sub_type_hdr
;
1174 cu
->flags
|= CRAT_CU_FLAGS_GPU_PRESENT
;
1175 cu
->proximity_domain
= proximity_domain
;
1177 amdgpu_amdkfd_get_cu_info(kdev
->kgd
, &cu_info
);
1178 cu
->num_simd_per_cu
= cu_info
.simd_per_cu
;
1179 cu
->num_simd_cores
= cu_info
.simd_per_cu
* cu_info
.cu_active_number
;
1180 cu
->max_waves_simd
= cu_info
.max_waves_per_simd
;
1182 cu
->wave_front_size
= cu_info
.wave_front_size
;
1183 cu
->array_count
= cu_info
.num_shader_arrays_per_engine
*
1184 cu_info
.num_shader_engines
;
1185 total_num_of_cu
= (cu
->array_count
* cu_info
.num_cu_per_sh
);
1186 cu
->processor_id_low
= get_and_inc_gpu_processor_id(total_num_of_cu
);
1187 cu
->num_cu_per_array
= cu_info
.num_cu_per_sh
;
1188 cu
->max_slots_scatch_cu
= cu_info
.max_scratch_slots_per_cu
;
1189 cu
->num_banks
= cu_info
.num_shader_engines
;
1190 cu
->lds_size_in_kb
= cu_info
.lds_size
;
1192 cu
->hsa_capability
= 0;
1194 /* Check if this node supports IOMMU. During parsing this flag will
1195 * translate to HSA_CAP_ATS_PRESENT
1197 if (!kfd_iommu_check_device(kdev
))
1198 cu
->hsa_capability
|= CRAT_CU_FLAGS_IOMMU_PRESENT
;
1200 crat_table
->length
+= sub_type_hdr
->length
;
1201 crat_table
->total_entries
++;
1203 /* Fill in Subtype: Memory. Only on systems with large BAR (no
1204 * private FB), report memory as public. On other systems
1205 * report the total FB size (public+private) as a single
1208 amdgpu_amdkfd_get_local_mem_info(kdev
->kgd
, &local_mem_info
);
1209 sub_type_hdr
= (typeof(sub_type_hdr
))((char *)sub_type_hdr
+
1210 sub_type_hdr
->length
);
1213 local_mem_info
.local_mem_size_private
= 0;
1215 if (local_mem_info
.local_mem_size_private
== 0)
1216 ret
= kfd_fill_gpu_memory_affinity(&avail_size
,
1217 kdev
, HSA_MEM_HEAP_TYPE_FB_PUBLIC
,
1218 local_mem_info
.local_mem_size_public
,
1219 (struct crat_subtype_memory
*)sub_type_hdr
,
1223 ret
= kfd_fill_gpu_memory_affinity(&avail_size
,
1224 kdev
, HSA_MEM_HEAP_TYPE_FB_PRIVATE
,
1225 local_mem_info
.local_mem_size_public
+
1226 local_mem_info
.local_mem_size_private
,
1227 (struct crat_subtype_memory
*)sub_type_hdr
,
1233 crat_table
->length
+= sizeof(struct crat_subtype_memory
);
1234 crat_table
->total_entries
++;
1236 /* TODO: Fill in cache information. This information is NOT readily
1239 sub_type_hdr
= (typeof(sub_type_hdr
))((char *)sub_type_hdr
+
1240 sub_type_hdr
->length
);
1241 ret
= kfd_fill_gpu_cache_info(kdev
, cu
->processor_id_low
,
1244 (struct crat_subtype_cache
*)sub_type_hdr
,
1246 &num_of_cache_entries
);
1251 crat_table
->length
+= cache_mem_filled
;
1252 crat_table
->total_entries
+= num_of_cache_entries
;
1253 avail_size
-= cache_mem_filled
;
1255 /* Fill in Subtype: IO_LINKS
1256 * Only direct links are added here which is Link from GPU to
1257 * to its NUMA node. Indirect links are added by userspace.
1259 sub_type_hdr
= (typeof(sub_type_hdr
))((char *)sub_type_hdr
+
1261 ret
= kfd_fill_gpu_direct_io_link_to_cpu(&avail_size
, kdev
,
1262 (struct crat_subtype_iolink
*)sub_type_hdr
, proximity_domain
);
1267 crat_table
->length
+= sub_type_hdr
->length
;
1268 crat_table
->total_entries
++;
1271 /* Fill in Subtype: IO_LINKS
1272 * Direct links from GPU to other GPUs through xGMI.
1273 * We will loop GPUs that already be processed (with lower value
1274 * of proximity_domain), add the link for the GPUs with same
1275 * hive id (from this GPU to other GPU) . The reversed iolink
1276 * (from other GPU to this GPU) will be added
1277 * in kfd_parse_subtype_iolink.
1279 if (kdev
->hive_id
) {
1280 for (nid
= 0; nid
< proximity_domain
; ++nid
) {
1281 peer_dev
= kfd_topology_device_by_proximity_domain(nid
);
1284 if (peer_dev
->gpu
->hive_id
!= kdev
->hive_id
)
1286 sub_type_hdr
= (typeof(sub_type_hdr
))(
1287 (char *)sub_type_hdr
+
1288 sizeof(struct crat_subtype_iolink
));
1289 ret
= kfd_fill_gpu_xgmi_link_to_gpu(
1291 (struct crat_subtype_iolink
*)sub_type_hdr
,
1292 proximity_domain
, nid
);
1295 crat_table
->length
+= sub_type_hdr
->length
;
1296 crat_table
->total_entries
++;
1299 *size
= crat_table
->length
;
1300 pr_info("Virtual CRAT table created for GPU\n");
1305 /* kfd_create_crat_image_virtual - Allocates memory for CRAT image and
1306 * creates a Virtual CRAT (VCRAT) image
1308 * NOTE: Call kfd_destroy_crat_image to free CRAT image memory
1310 * @crat_image: VCRAT image created because ACPI does not have a
1311 * CRAT for this device
1312 * @size: [OUT] size of virtual crat_image
1313 * @flags: COMPUTE_UNIT_CPU - Create VCRAT for CPU device
1314 * COMPUTE_UNIT_GPU - Create VCRAT for GPU
1315 * (COMPUTE_UNIT_CPU | COMPUTE_UNIT_GPU) - Create VCRAT for APU
1316 * -- this option is not currently implemented.
1317 * The assumption is that all AMD APUs will have CRAT
1318 * @kdev: Valid kfd_device required if flags contain COMPUTE_UNIT_GPU
1320 * Return 0 if successful else return -ve value
1322 int kfd_create_crat_image_virtual(void **crat_image
, size_t *size
,
1323 int flags
, struct kfd_dev
*kdev
,
1324 uint32_t proximity_domain
)
1326 void *pcrat_image
= NULL
;
1334 /* Allocate one VCRAT_SIZE_FOR_CPU for CPU virtual CRAT image and
1335 * VCRAT_SIZE_FOR_GPU for GPU virtual CRAT image. This should cover
1336 * all the current conditions. A check is put not to overwrite beyond
1340 case COMPUTE_UNIT_CPU
:
1341 pcrat_image
= kmalloc(VCRAT_SIZE_FOR_CPU
, GFP_KERNEL
);
1344 *size
= VCRAT_SIZE_FOR_CPU
;
1345 ret
= kfd_create_vcrat_image_cpu(pcrat_image
, size
);
1347 case COMPUTE_UNIT_GPU
:
1350 pcrat_image
= kmalloc(VCRAT_SIZE_FOR_GPU
, GFP_KERNEL
);
1353 *size
= VCRAT_SIZE_FOR_GPU
;
1354 ret
= kfd_create_vcrat_image_gpu(pcrat_image
, size
, kdev
,
1357 case (COMPUTE_UNIT_CPU
| COMPUTE_UNIT_GPU
):
1360 pr_err("VCRAT not implemented for APU\n");
1367 *crat_image
= pcrat_image
;
1375 /* kfd_destroy_crat_image
1377 * @crat_image: [IN] - crat_image from kfd_create_crat_image_xxx(..)
1380 void kfd_destroy_crat_image(void *crat_image
)