xref: /openbmc/linux/drivers/gpu/drm/amd/amdkfd/kfd_topology.c (revision 06ff634c0dae791c17ceeeb60c74e14470d76898)
1 /*
2  * Copyright 2014 Advanced Micro Devices, Inc.
3  *
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:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
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.
21  */
22 
23 #include <linux/types.h>
24 #include <linux/kernel.h>
25 #include <linux/pci.h>
26 #include <linux/errno.h>
27 #include <linux/acpi.h>
28 #include <linux/hash.h>
29 #include <linux/cpufreq.h>
30 #include <linux/log2.h>
31 #include <linux/dmi.h>
32 #include <linux/atomic.h>
33 
34 #include "kfd_priv.h"
35 #include "kfd_crat.h"
36 #include "kfd_topology.h"
37 #include "kfd_device_queue_manager.h"
38 #include "kfd_iommu.h"
39 #include "amdgpu_amdkfd.h"
40 #include "amdgpu_ras.h"
41 
42 /* topology_device_list - Master list of all topology devices */
43 static struct list_head topology_device_list;
44 static struct kfd_system_properties sys_props;
45 
46 static DECLARE_RWSEM(topology_lock);
47 static atomic_t topology_crat_proximity_domain;
48 
49 struct kfd_topology_device *kfd_topology_device_by_proximity_domain(
50 						uint32_t proximity_domain)
51 {
52 	struct kfd_topology_device *top_dev;
53 	struct kfd_topology_device *device = NULL;
54 
55 	down_read(&topology_lock);
56 
57 	list_for_each_entry(top_dev, &topology_device_list, list)
58 		if (top_dev->proximity_domain == proximity_domain) {
59 			device = top_dev;
60 			break;
61 		}
62 
63 	up_read(&topology_lock);
64 
65 	return device;
66 }
67 
68 struct kfd_topology_device *kfd_topology_device_by_id(uint32_t gpu_id)
69 {
70 	struct kfd_topology_device *top_dev = NULL;
71 	struct kfd_topology_device *ret = NULL;
72 
73 	down_read(&topology_lock);
74 
75 	list_for_each_entry(top_dev, &topology_device_list, list)
76 		if (top_dev->gpu_id == gpu_id) {
77 			ret = top_dev;
78 			break;
79 		}
80 
81 	up_read(&topology_lock);
82 
83 	return ret;
84 }
85 
86 struct kfd_dev *kfd_device_by_id(uint32_t gpu_id)
87 {
88 	struct kfd_topology_device *top_dev;
89 
90 	top_dev = kfd_topology_device_by_id(gpu_id);
91 	if (!top_dev)
92 		return NULL;
93 
94 	return top_dev->gpu;
95 }
96 
97 struct kfd_dev *kfd_device_by_pci_dev(const struct pci_dev *pdev)
98 {
99 	struct kfd_topology_device *top_dev;
100 	struct kfd_dev *device = NULL;
101 
102 	down_read(&topology_lock);
103 
104 	list_for_each_entry(top_dev, &topology_device_list, list)
105 		if (top_dev->gpu && top_dev->gpu->pdev == pdev) {
106 			device = top_dev->gpu;
107 			break;
108 		}
109 
110 	up_read(&topology_lock);
111 
112 	return device;
113 }
114 
115 struct kfd_dev *kfd_device_by_kgd(const struct kgd_dev *kgd)
116 {
117 	struct kfd_topology_device *top_dev;
118 	struct kfd_dev *device = NULL;
119 
120 	down_read(&topology_lock);
121 
122 	list_for_each_entry(top_dev, &topology_device_list, list)
123 		if (top_dev->gpu && top_dev->gpu->kgd == kgd) {
124 			device = top_dev->gpu;
125 			break;
126 		}
127 
128 	up_read(&topology_lock);
129 
130 	return device;
131 }
132 
133 /* Called with write topology_lock acquired */
134 static void kfd_release_topology_device(struct kfd_topology_device *dev)
135 {
136 	struct kfd_mem_properties *mem;
137 	struct kfd_cache_properties *cache;
138 	struct kfd_iolink_properties *iolink;
139 	struct kfd_perf_properties *perf;
140 
141 	list_del(&dev->list);
142 
143 	while (dev->mem_props.next != &dev->mem_props) {
144 		mem = container_of(dev->mem_props.next,
145 				struct kfd_mem_properties, list);
146 		list_del(&mem->list);
147 		kfree(mem);
148 	}
149 
150 	while (dev->cache_props.next != &dev->cache_props) {
151 		cache = container_of(dev->cache_props.next,
152 				struct kfd_cache_properties, list);
153 		list_del(&cache->list);
154 		kfree(cache);
155 	}
156 
157 	while (dev->io_link_props.next != &dev->io_link_props) {
158 		iolink = container_of(dev->io_link_props.next,
159 				struct kfd_iolink_properties, list);
160 		list_del(&iolink->list);
161 		kfree(iolink);
162 	}
163 
164 	while (dev->perf_props.next != &dev->perf_props) {
165 		perf = container_of(dev->perf_props.next,
166 				struct kfd_perf_properties, list);
167 		list_del(&perf->list);
168 		kfree(perf);
169 	}
170 
171 	kfree(dev);
172 }
173 
174 void kfd_release_topology_device_list(struct list_head *device_list)
175 {
176 	struct kfd_topology_device *dev;
177 
178 	while (!list_empty(device_list)) {
179 		dev = list_first_entry(device_list,
180 				       struct kfd_topology_device, list);
181 		kfd_release_topology_device(dev);
182 	}
183 }
184 
185 static void kfd_release_live_view(void)
186 {
187 	kfd_release_topology_device_list(&topology_device_list);
188 	memset(&sys_props, 0, sizeof(sys_props));
189 }
190 
191 struct kfd_topology_device *kfd_create_topology_device(
192 				struct list_head *device_list)
193 {
194 	struct kfd_topology_device *dev;
195 
196 	dev = kfd_alloc_struct(dev);
197 	if (!dev) {
198 		pr_err("No memory to allocate a topology device");
199 		return NULL;
200 	}
201 
202 	INIT_LIST_HEAD(&dev->mem_props);
203 	INIT_LIST_HEAD(&dev->cache_props);
204 	INIT_LIST_HEAD(&dev->io_link_props);
205 	INIT_LIST_HEAD(&dev->perf_props);
206 
207 	list_add_tail(&dev->list, device_list);
208 
209 	return dev;
210 }
211 
212 
213 #define sysfs_show_gen_prop(buffer, offs, fmt, ...)		\
214 		(offs += snprintf(buffer+offs, PAGE_SIZE-offs,	\
215 				  fmt, __VA_ARGS__))
216 #define sysfs_show_32bit_prop(buffer, offs, name, value) \
217 		sysfs_show_gen_prop(buffer, offs, "%s %u\n", name, value)
218 #define sysfs_show_64bit_prop(buffer, offs, name, value) \
219 		sysfs_show_gen_prop(buffer, offs, "%s %llu\n", name, value)
220 #define sysfs_show_32bit_val(buffer, offs, value) \
221 		sysfs_show_gen_prop(buffer, offs, "%u\n", value)
222 #define sysfs_show_str_val(buffer, offs, value) \
223 		sysfs_show_gen_prop(buffer, offs, "%s\n", value)
224 
225 static ssize_t sysprops_show(struct kobject *kobj, struct attribute *attr,
226 		char *buffer)
227 {
228 	int offs = 0;
229 
230 	/* Making sure that the buffer is an empty string */
231 	buffer[0] = 0;
232 
233 	if (attr == &sys_props.attr_genid) {
234 		sysfs_show_32bit_val(buffer, offs,
235 				     sys_props.generation_count);
236 	} else if (attr == &sys_props.attr_props) {
237 		sysfs_show_64bit_prop(buffer, offs, "platform_oem",
238 				      sys_props.platform_oem);
239 		sysfs_show_64bit_prop(buffer, offs, "platform_id",
240 				      sys_props.platform_id);
241 		sysfs_show_64bit_prop(buffer, offs, "platform_rev",
242 				      sys_props.platform_rev);
243 	} else {
244 		offs = -EINVAL;
245 	}
246 
247 	return offs;
248 }
249 
250 static void kfd_topology_kobj_release(struct kobject *kobj)
251 {
252 	kfree(kobj);
253 }
254 
255 static const struct sysfs_ops sysprops_ops = {
256 	.show = sysprops_show,
257 };
258 
259 static struct kobj_type sysprops_type = {
260 	.release = kfd_topology_kobj_release,
261 	.sysfs_ops = &sysprops_ops,
262 };
263 
264 static ssize_t iolink_show(struct kobject *kobj, struct attribute *attr,
265 		char *buffer)
266 {
267 	int offs = 0;
268 	struct kfd_iolink_properties *iolink;
269 
270 	/* Making sure that the buffer is an empty string */
271 	buffer[0] = 0;
272 
273 	iolink = container_of(attr, struct kfd_iolink_properties, attr);
274 	if (iolink->gpu && kfd_devcgroup_check_permission(iolink->gpu))
275 		return -EPERM;
276 	sysfs_show_32bit_prop(buffer, offs, "type", iolink->iolink_type);
277 	sysfs_show_32bit_prop(buffer, offs, "version_major", iolink->ver_maj);
278 	sysfs_show_32bit_prop(buffer, offs, "version_minor", iolink->ver_min);
279 	sysfs_show_32bit_prop(buffer, offs, "node_from", iolink->node_from);
280 	sysfs_show_32bit_prop(buffer, offs, "node_to", iolink->node_to);
281 	sysfs_show_32bit_prop(buffer, offs, "weight", iolink->weight);
282 	sysfs_show_32bit_prop(buffer, offs, "min_latency", iolink->min_latency);
283 	sysfs_show_32bit_prop(buffer, offs, "max_latency", iolink->max_latency);
284 	sysfs_show_32bit_prop(buffer, offs, "min_bandwidth",
285 			      iolink->min_bandwidth);
286 	sysfs_show_32bit_prop(buffer, offs, "max_bandwidth",
287 			      iolink->max_bandwidth);
288 	sysfs_show_32bit_prop(buffer, offs, "recommended_transfer_size",
289 			      iolink->rec_transfer_size);
290 	sysfs_show_32bit_prop(buffer, offs, "flags", iolink->flags);
291 
292 	return offs;
293 }
294 
295 static const struct sysfs_ops iolink_ops = {
296 	.show = iolink_show,
297 };
298 
299 static struct kobj_type iolink_type = {
300 	.release = kfd_topology_kobj_release,
301 	.sysfs_ops = &iolink_ops,
302 };
303 
304 static ssize_t mem_show(struct kobject *kobj, struct attribute *attr,
305 		char *buffer)
306 {
307 	int offs = 0;
308 	struct kfd_mem_properties *mem;
309 
310 	/* Making sure that the buffer is an empty string */
311 	buffer[0] = 0;
312 
313 	mem = container_of(attr, struct kfd_mem_properties, attr);
314 	if (mem->gpu && kfd_devcgroup_check_permission(mem->gpu))
315 		return -EPERM;
316 	sysfs_show_32bit_prop(buffer, offs, "heap_type", mem->heap_type);
317 	sysfs_show_64bit_prop(buffer, offs, "size_in_bytes",
318 			      mem->size_in_bytes);
319 	sysfs_show_32bit_prop(buffer, offs, "flags", mem->flags);
320 	sysfs_show_32bit_prop(buffer, offs, "width", mem->width);
321 	sysfs_show_32bit_prop(buffer, offs, "mem_clk_max",
322 			      mem->mem_clk_max);
323 
324 	return offs;
325 }
326 
327 static const struct sysfs_ops mem_ops = {
328 	.show = mem_show,
329 };
330 
331 static struct kobj_type mem_type = {
332 	.release = kfd_topology_kobj_release,
333 	.sysfs_ops = &mem_ops,
334 };
335 
336 static ssize_t kfd_cache_show(struct kobject *kobj, struct attribute *attr,
337 		char *buffer)
338 {
339 	int offs = 0;
340 	uint32_t i, j;
341 	struct kfd_cache_properties *cache;
342 
343 	/* Making sure that the buffer is an empty string */
344 	buffer[0] = 0;
345 
346 	cache = container_of(attr, struct kfd_cache_properties, attr);
347 	if (cache->gpu && kfd_devcgroup_check_permission(cache->gpu))
348 		return -EPERM;
349 	sysfs_show_32bit_prop(buffer, offs, "processor_id_low",
350 			cache->processor_id_low);
351 	sysfs_show_32bit_prop(buffer, offs, "level", cache->cache_level);
352 	sysfs_show_32bit_prop(buffer, offs, "size", cache->cache_size);
353 	sysfs_show_32bit_prop(buffer, offs, "cache_line_size",
354 			      cache->cacheline_size);
355 	sysfs_show_32bit_prop(buffer, offs, "cache_lines_per_tag",
356 			      cache->cachelines_per_tag);
357 	sysfs_show_32bit_prop(buffer, offs, "association", cache->cache_assoc);
358 	sysfs_show_32bit_prop(buffer, offs, "latency", cache->cache_latency);
359 	sysfs_show_32bit_prop(buffer, offs, "type", cache->cache_type);
360 	offs += snprintf(buffer+offs, PAGE_SIZE-offs, "sibling_map ");
361 	for (i = 0; i < CRAT_SIBLINGMAP_SIZE; i++)
362 		for (j = 0; j < sizeof(cache->sibling_map[0])*8; j++)
363 			/* Check each bit */
364 			offs += snprintf(buffer+offs, PAGE_SIZE-offs, "%d,",
365 					 (cache->sibling_map[i] >> j) & 1);
366 
367 	/* Replace the last "," with end of line */
368 	buffer[offs-1] = '\n';
369 	return offs;
370 }
371 
372 static const struct sysfs_ops cache_ops = {
373 	.show = kfd_cache_show,
374 };
375 
376 static struct kobj_type cache_type = {
377 	.release = kfd_topology_kobj_release,
378 	.sysfs_ops = &cache_ops,
379 };
380 
381 /****** Sysfs of Performance Counters ******/
382 
383 struct kfd_perf_attr {
384 	struct kobj_attribute attr;
385 	uint32_t data;
386 };
387 
388 static ssize_t perf_show(struct kobject *kobj, struct kobj_attribute *attrs,
389 			char *buf)
390 {
391 	int offs = 0;
392 	struct kfd_perf_attr *attr;
393 
394 	buf[0] = 0;
395 	attr = container_of(attrs, struct kfd_perf_attr, attr);
396 	if (!attr->data) /* invalid data for PMC */
397 		return 0;
398 	else
399 		return sysfs_show_32bit_val(buf, offs, attr->data);
400 }
401 
402 #define KFD_PERF_DESC(_name, _data)			\
403 {							\
404 	.attr  = __ATTR(_name, 0444, perf_show, NULL),	\
405 	.data = _data,					\
406 }
407 
408 static struct kfd_perf_attr perf_attr_iommu[] = {
409 	KFD_PERF_DESC(max_concurrent, 0),
410 	KFD_PERF_DESC(num_counters, 0),
411 	KFD_PERF_DESC(counter_ids, 0),
412 };
413 /****************************************/
414 
415 static ssize_t node_show(struct kobject *kobj, struct attribute *attr,
416 		char *buffer)
417 {
418 	int offs = 0;
419 	struct kfd_topology_device *dev;
420 	uint32_t log_max_watch_addr;
421 
422 	/* Making sure that the buffer is an empty string */
423 	buffer[0] = 0;
424 
425 	if (strcmp(attr->name, "gpu_id") == 0) {
426 		dev = container_of(attr, struct kfd_topology_device,
427 				attr_gpuid);
428 		if (dev->gpu && kfd_devcgroup_check_permission(dev->gpu))
429 			return -EPERM;
430 		return sysfs_show_32bit_val(buffer, offs, dev->gpu_id);
431 	}
432 
433 	if (strcmp(attr->name, "name") == 0) {
434 		dev = container_of(attr, struct kfd_topology_device,
435 				attr_name);
436 
437 		if (dev->gpu && kfd_devcgroup_check_permission(dev->gpu))
438 			return -EPERM;
439 		return sysfs_show_str_val(buffer, offs, dev->node_props.name);
440 	}
441 
442 	dev = container_of(attr, struct kfd_topology_device,
443 			attr_props);
444 	if (dev->gpu && kfd_devcgroup_check_permission(dev->gpu))
445 		return -EPERM;
446 	sysfs_show_32bit_prop(buffer, offs, "cpu_cores_count",
447 			      dev->node_props.cpu_cores_count);
448 	sysfs_show_32bit_prop(buffer, offs, "simd_count",
449 			      dev->node_props.simd_count);
450 	sysfs_show_32bit_prop(buffer, offs, "mem_banks_count",
451 			      dev->node_props.mem_banks_count);
452 	sysfs_show_32bit_prop(buffer, offs, "caches_count",
453 			      dev->node_props.caches_count);
454 	sysfs_show_32bit_prop(buffer, offs, "io_links_count",
455 			      dev->node_props.io_links_count);
456 	sysfs_show_32bit_prop(buffer, offs, "cpu_core_id_base",
457 			      dev->node_props.cpu_core_id_base);
458 	sysfs_show_32bit_prop(buffer, offs, "simd_id_base",
459 			      dev->node_props.simd_id_base);
460 	sysfs_show_32bit_prop(buffer, offs, "max_waves_per_simd",
461 			      dev->node_props.max_waves_per_simd);
462 	sysfs_show_32bit_prop(buffer, offs, "lds_size_in_kb",
463 			      dev->node_props.lds_size_in_kb);
464 	sysfs_show_32bit_prop(buffer, offs, "gds_size_in_kb",
465 			      dev->node_props.gds_size_in_kb);
466 	sysfs_show_32bit_prop(buffer, offs, "num_gws",
467 			      dev->node_props.num_gws);
468 	sysfs_show_32bit_prop(buffer, offs, "wave_front_size",
469 			      dev->node_props.wave_front_size);
470 	sysfs_show_32bit_prop(buffer, offs, "array_count",
471 			      dev->node_props.array_count);
472 	sysfs_show_32bit_prop(buffer, offs, "simd_arrays_per_engine",
473 			      dev->node_props.simd_arrays_per_engine);
474 	sysfs_show_32bit_prop(buffer, offs, "cu_per_simd_array",
475 			      dev->node_props.cu_per_simd_array);
476 	sysfs_show_32bit_prop(buffer, offs, "simd_per_cu",
477 			      dev->node_props.simd_per_cu);
478 	sysfs_show_32bit_prop(buffer, offs, "max_slots_scratch_cu",
479 			      dev->node_props.max_slots_scratch_cu);
480 	sysfs_show_32bit_prop(buffer, offs, "vendor_id",
481 			      dev->node_props.vendor_id);
482 	sysfs_show_32bit_prop(buffer, offs, "device_id",
483 			      dev->node_props.device_id);
484 	sysfs_show_32bit_prop(buffer, offs, "location_id",
485 			      dev->node_props.location_id);
486 	sysfs_show_32bit_prop(buffer, offs, "domain",
487 			      dev->node_props.domain);
488 	sysfs_show_32bit_prop(buffer, offs, "drm_render_minor",
489 			      dev->node_props.drm_render_minor);
490 	sysfs_show_64bit_prop(buffer, offs, "hive_id",
491 			      dev->node_props.hive_id);
492 	sysfs_show_32bit_prop(buffer, offs, "num_sdma_engines",
493 			      dev->node_props.num_sdma_engines);
494 	sysfs_show_32bit_prop(buffer, offs, "num_sdma_xgmi_engines",
495 			      dev->node_props.num_sdma_xgmi_engines);
496 	sysfs_show_32bit_prop(buffer, offs, "num_sdma_queues_per_engine",
497 			      dev->node_props.num_sdma_queues_per_engine);
498 	sysfs_show_32bit_prop(buffer, offs, "num_cp_queues",
499 			      dev->node_props.num_cp_queues);
500 	sysfs_show_64bit_prop(buffer, offs, "unique_id",
501 			      dev->node_props.unique_id);
502 
503 	if (dev->gpu) {
504 		log_max_watch_addr =
505 			__ilog2_u32(dev->gpu->device_info->num_of_watch_points);
506 
507 		if (log_max_watch_addr) {
508 			dev->node_props.capability |=
509 					HSA_CAP_WATCH_POINTS_SUPPORTED;
510 
511 			dev->node_props.capability |=
512 				((log_max_watch_addr <<
513 					HSA_CAP_WATCH_POINTS_TOTALBITS_SHIFT) &
514 				HSA_CAP_WATCH_POINTS_TOTALBITS_MASK);
515 		}
516 
517 		if (dev->gpu->device_info->asic_family == CHIP_TONGA)
518 			dev->node_props.capability |=
519 					HSA_CAP_AQL_QUEUE_DOUBLE_MAP;
520 
521 		sysfs_show_32bit_prop(buffer, offs, "max_engine_clk_fcompute",
522 			dev->node_props.max_engine_clk_fcompute);
523 
524 		sysfs_show_64bit_prop(buffer, offs, "local_mem_size", 0ULL);
525 
526 		sysfs_show_32bit_prop(buffer, offs, "fw_version",
527 				      dev->gpu->mec_fw_version);
528 		sysfs_show_32bit_prop(buffer, offs, "capability",
529 				      dev->node_props.capability);
530 		sysfs_show_32bit_prop(buffer, offs, "sdma_fw_version",
531 				      dev->gpu->sdma_fw_version);
532 	}
533 
534 	return sysfs_show_32bit_prop(buffer, offs, "max_engine_clk_ccompute",
535 				     cpufreq_quick_get_max(0)/1000);
536 }
537 
538 static const struct sysfs_ops node_ops = {
539 	.show = node_show,
540 };
541 
542 static struct kobj_type node_type = {
543 	.release = kfd_topology_kobj_release,
544 	.sysfs_ops = &node_ops,
545 };
546 
547 static void kfd_remove_sysfs_file(struct kobject *kobj, struct attribute *attr)
548 {
549 	sysfs_remove_file(kobj, attr);
550 	kobject_del(kobj);
551 	kobject_put(kobj);
552 }
553 
554 static void kfd_remove_sysfs_node_entry(struct kfd_topology_device *dev)
555 {
556 	struct kfd_iolink_properties *iolink;
557 	struct kfd_cache_properties *cache;
558 	struct kfd_mem_properties *mem;
559 	struct kfd_perf_properties *perf;
560 
561 	if (dev->kobj_iolink) {
562 		list_for_each_entry(iolink, &dev->io_link_props, list)
563 			if (iolink->kobj) {
564 				kfd_remove_sysfs_file(iolink->kobj,
565 							&iolink->attr);
566 				iolink->kobj = NULL;
567 			}
568 		kobject_del(dev->kobj_iolink);
569 		kobject_put(dev->kobj_iolink);
570 		dev->kobj_iolink = NULL;
571 	}
572 
573 	if (dev->kobj_cache) {
574 		list_for_each_entry(cache, &dev->cache_props, list)
575 			if (cache->kobj) {
576 				kfd_remove_sysfs_file(cache->kobj,
577 							&cache->attr);
578 				cache->kobj = NULL;
579 			}
580 		kobject_del(dev->kobj_cache);
581 		kobject_put(dev->kobj_cache);
582 		dev->kobj_cache = NULL;
583 	}
584 
585 	if (dev->kobj_mem) {
586 		list_for_each_entry(mem, &dev->mem_props, list)
587 			if (mem->kobj) {
588 				kfd_remove_sysfs_file(mem->kobj, &mem->attr);
589 				mem->kobj = NULL;
590 			}
591 		kobject_del(dev->kobj_mem);
592 		kobject_put(dev->kobj_mem);
593 		dev->kobj_mem = NULL;
594 	}
595 
596 	if (dev->kobj_perf) {
597 		list_for_each_entry(perf, &dev->perf_props, list) {
598 			kfree(perf->attr_group);
599 			perf->attr_group = NULL;
600 		}
601 		kobject_del(dev->kobj_perf);
602 		kobject_put(dev->kobj_perf);
603 		dev->kobj_perf = NULL;
604 	}
605 
606 	if (dev->kobj_node) {
607 		sysfs_remove_file(dev->kobj_node, &dev->attr_gpuid);
608 		sysfs_remove_file(dev->kobj_node, &dev->attr_name);
609 		sysfs_remove_file(dev->kobj_node, &dev->attr_props);
610 		kobject_del(dev->kobj_node);
611 		kobject_put(dev->kobj_node);
612 		dev->kobj_node = NULL;
613 	}
614 }
615 
616 static int kfd_build_sysfs_node_entry(struct kfd_topology_device *dev,
617 		uint32_t id)
618 {
619 	struct kfd_iolink_properties *iolink;
620 	struct kfd_cache_properties *cache;
621 	struct kfd_mem_properties *mem;
622 	struct kfd_perf_properties *perf;
623 	int ret;
624 	uint32_t i, num_attrs;
625 	struct attribute **attrs;
626 
627 	if (WARN_ON(dev->kobj_node))
628 		return -EEXIST;
629 
630 	/*
631 	 * Creating the sysfs folders
632 	 */
633 	dev->kobj_node = kfd_alloc_struct(dev->kobj_node);
634 	if (!dev->kobj_node)
635 		return -ENOMEM;
636 
637 	ret = kobject_init_and_add(dev->kobj_node, &node_type,
638 			sys_props.kobj_nodes, "%d", id);
639 	if (ret < 0)
640 		return ret;
641 
642 	dev->kobj_mem = kobject_create_and_add("mem_banks", dev->kobj_node);
643 	if (!dev->kobj_mem)
644 		return -ENOMEM;
645 
646 	dev->kobj_cache = kobject_create_and_add("caches", dev->kobj_node);
647 	if (!dev->kobj_cache)
648 		return -ENOMEM;
649 
650 	dev->kobj_iolink = kobject_create_and_add("io_links", dev->kobj_node);
651 	if (!dev->kobj_iolink)
652 		return -ENOMEM;
653 
654 	dev->kobj_perf = kobject_create_and_add("perf", dev->kobj_node);
655 	if (!dev->kobj_perf)
656 		return -ENOMEM;
657 
658 	/*
659 	 * Creating sysfs files for node properties
660 	 */
661 	dev->attr_gpuid.name = "gpu_id";
662 	dev->attr_gpuid.mode = KFD_SYSFS_FILE_MODE;
663 	sysfs_attr_init(&dev->attr_gpuid);
664 	dev->attr_name.name = "name";
665 	dev->attr_name.mode = KFD_SYSFS_FILE_MODE;
666 	sysfs_attr_init(&dev->attr_name);
667 	dev->attr_props.name = "properties";
668 	dev->attr_props.mode = KFD_SYSFS_FILE_MODE;
669 	sysfs_attr_init(&dev->attr_props);
670 	ret = sysfs_create_file(dev->kobj_node, &dev->attr_gpuid);
671 	if (ret < 0)
672 		return ret;
673 	ret = sysfs_create_file(dev->kobj_node, &dev->attr_name);
674 	if (ret < 0)
675 		return ret;
676 	ret = sysfs_create_file(dev->kobj_node, &dev->attr_props);
677 	if (ret < 0)
678 		return ret;
679 
680 	i = 0;
681 	list_for_each_entry(mem, &dev->mem_props, list) {
682 		mem->kobj = kzalloc(sizeof(struct kobject), GFP_KERNEL);
683 		if (!mem->kobj)
684 			return -ENOMEM;
685 		ret = kobject_init_and_add(mem->kobj, &mem_type,
686 				dev->kobj_mem, "%d", i);
687 		if (ret < 0)
688 			return ret;
689 
690 		mem->attr.name = "properties";
691 		mem->attr.mode = KFD_SYSFS_FILE_MODE;
692 		sysfs_attr_init(&mem->attr);
693 		ret = sysfs_create_file(mem->kobj, &mem->attr);
694 		if (ret < 0)
695 			return ret;
696 		i++;
697 	}
698 
699 	i = 0;
700 	list_for_each_entry(cache, &dev->cache_props, list) {
701 		cache->kobj = kzalloc(sizeof(struct kobject), GFP_KERNEL);
702 		if (!cache->kobj)
703 			return -ENOMEM;
704 		ret = kobject_init_and_add(cache->kobj, &cache_type,
705 				dev->kobj_cache, "%d", i);
706 		if (ret < 0)
707 			return ret;
708 
709 		cache->attr.name = "properties";
710 		cache->attr.mode = KFD_SYSFS_FILE_MODE;
711 		sysfs_attr_init(&cache->attr);
712 		ret = sysfs_create_file(cache->kobj, &cache->attr);
713 		if (ret < 0)
714 			return ret;
715 		i++;
716 	}
717 
718 	i = 0;
719 	list_for_each_entry(iolink, &dev->io_link_props, list) {
720 		iolink->kobj = kzalloc(sizeof(struct kobject), GFP_KERNEL);
721 		if (!iolink->kobj)
722 			return -ENOMEM;
723 		ret = kobject_init_and_add(iolink->kobj, &iolink_type,
724 				dev->kobj_iolink, "%d", i);
725 		if (ret < 0)
726 			return ret;
727 
728 		iolink->attr.name = "properties";
729 		iolink->attr.mode = KFD_SYSFS_FILE_MODE;
730 		sysfs_attr_init(&iolink->attr);
731 		ret = sysfs_create_file(iolink->kobj, &iolink->attr);
732 		if (ret < 0)
733 			return ret;
734 		i++;
735 	}
736 
737 	/* All hardware blocks have the same number of attributes. */
738 	num_attrs = ARRAY_SIZE(perf_attr_iommu);
739 	list_for_each_entry(perf, &dev->perf_props, list) {
740 		perf->attr_group = kzalloc(sizeof(struct kfd_perf_attr)
741 			* num_attrs + sizeof(struct attribute_group),
742 			GFP_KERNEL);
743 		if (!perf->attr_group)
744 			return -ENOMEM;
745 
746 		attrs = (struct attribute **)(perf->attr_group + 1);
747 		if (!strcmp(perf->block_name, "iommu")) {
748 		/* Information of IOMMU's num_counters and counter_ids is shown
749 		 * under /sys/bus/event_source/devices/amd_iommu. We don't
750 		 * duplicate here.
751 		 */
752 			perf_attr_iommu[0].data = perf->max_concurrent;
753 			for (i = 0; i < num_attrs; i++)
754 				attrs[i] = &perf_attr_iommu[i].attr.attr;
755 		}
756 		perf->attr_group->name = perf->block_name;
757 		perf->attr_group->attrs = attrs;
758 		ret = sysfs_create_group(dev->kobj_perf, perf->attr_group);
759 		if (ret < 0)
760 			return ret;
761 	}
762 
763 	return 0;
764 }
765 
766 /* Called with write topology lock acquired */
767 static int kfd_build_sysfs_node_tree(void)
768 {
769 	struct kfd_topology_device *dev;
770 	int ret;
771 	uint32_t i = 0;
772 
773 	list_for_each_entry(dev, &topology_device_list, list) {
774 		ret = kfd_build_sysfs_node_entry(dev, i);
775 		if (ret < 0)
776 			return ret;
777 		i++;
778 	}
779 
780 	return 0;
781 }
782 
783 /* Called with write topology lock acquired */
784 static void kfd_remove_sysfs_node_tree(void)
785 {
786 	struct kfd_topology_device *dev;
787 
788 	list_for_each_entry(dev, &topology_device_list, list)
789 		kfd_remove_sysfs_node_entry(dev);
790 }
791 
792 static int kfd_topology_update_sysfs(void)
793 {
794 	int ret;
795 
796 	if (!sys_props.kobj_topology) {
797 		sys_props.kobj_topology =
798 				kfd_alloc_struct(sys_props.kobj_topology);
799 		if (!sys_props.kobj_topology)
800 			return -ENOMEM;
801 
802 		ret = kobject_init_and_add(sys_props.kobj_topology,
803 				&sysprops_type,  &kfd_device->kobj,
804 				"topology");
805 		if (ret < 0)
806 			return ret;
807 
808 		sys_props.kobj_nodes = kobject_create_and_add("nodes",
809 				sys_props.kobj_topology);
810 		if (!sys_props.kobj_nodes)
811 			return -ENOMEM;
812 
813 		sys_props.attr_genid.name = "generation_id";
814 		sys_props.attr_genid.mode = KFD_SYSFS_FILE_MODE;
815 		sysfs_attr_init(&sys_props.attr_genid);
816 		ret = sysfs_create_file(sys_props.kobj_topology,
817 				&sys_props.attr_genid);
818 		if (ret < 0)
819 			return ret;
820 
821 		sys_props.attr_props.name = "system_properties";
822 		sys_props.attr_props.mode = KFD_SYSFS_FILE_MODE;
823 		sysfs_attr_init(&sys_props.attr_props);
824 		ret = sysfs_create_file(sys_props.kobj_topology,
825 				&sys_props.attr_props);
826 		if (ret < 0)
827 			return ret;
828 	}
829 
830 	kfd_remove_sysfs_node_tree();
831 
832 	return kfd_build_sysfs_node_tree();
833 }
834 
835 static void kfd_topology_release_sysfs(void)
836 {
837 	kfd_remove_sysfs_node_tree();
838 	if (sys_props.kobj_topology) {
839 		sysfs_remove_file(sys_props.kobj_topology,
840 				&sys_props.attr_genid);
841 		sysfs_remove_file(sys_props.kobj_topology,
842 				&sys_props.attr_props);
843 		if (sys_props.kobj_nodes) {
844 			kobject_del(sys_props.kobj_nodes);
845 			kobject_put(sys_props.kobj_nodes);
846 			sys_props.kobj_nodes = NULL;
847 		}
848 		kobject_del(sys_props.kobj_topology);
849 		kobject_put(sys_props.kobj_topology);
850 		sys_props.kobj_topology = NULL;
851 	}
852 }
853 
854 /* Called with write topology_lock acquired */
855 static void kfd_topology_update_device_list(struct list_head *temp_list,
856 					struct list_head *master_list)
857 {
858 	while (!list_empty(temp_list)) {
859 		list_move_tail(temp_list->next, master_list);
860 		sys_props.num_devices++;
861 	}
862 }
863 
864 static void kfd_debug_print_topology(void)
865 {
866 	struct kfd_topology_device *dev;
867 
868 	down_read(&topology_lock);
869 
870 	dev = list_last_entry(&topology_device_list,
871 			struct kfd_topology_device, list);
872 	if (dev) {
873 		if (dev->node_props.cpu_cores_count &&
874 				dev->node_props.simd_count) {
875 			pr_info("Topology: Add APU node [0x%0x:0x%0x]\n",
876 				dev->node_props.device_id,
877 				dev->node_props.vendor_id);
878 		} else if (dev->node_props.cpu_cores_count)
879 			pr_info("Topology: Add CPU node\n");
880 		else if (dev->node_props.simd_count)
881 			pr_info("Topology: Add dGPU node [0x%0x:0x%0x]\n",
882 				dev->node_props.device_id,
883 				dev->node_props.vendor_id);
884 	}
885 	up_read(&topology_lock);
886 }
887 
888 /* Helper function for intializing platform_xx members of
889  * kfd_system_properties. Uses OEM info from the last CPU/APU node.
890  */
891 static void kfd_update_system_properties(void)
892 {
893 	struct kfd_topology_device *dev;
894 
895 	down_read(&topology_lock);
896 	dev = list_last_entry(&topology_device_list,
897 			struct kfd_topology_device, list);
898 	if (dev) {
899 		sys_props.platform_id =
900 			(*((uint64_t *)dev->oem_id)) & CRAT_OEMID_64BIT_MASK;
901 		sys_props.platform_oem = *((uint64_t *)dev->oem_table_id);
902 		sys_props.platform_rev = dev->oem_revision;
903 	}
904 	up_read(&topology_lock);
905 }
906 
907 static void find_system_memory(const struct dmi_header *dm,
908 	void *private)
909 {
910 	struct kfd_mem_properties *mem;
911 	u16 mem_width, mem_clock;
912 	struct kfd_topology_device *kdev =
913 		(struct kfd_topology_device *)private;
914 	const u8 *dmi_data = (const u8 *)(dm + 1);
915 
916 	if (dm->type == DMI_ENTRY_MEM_DEVICE && dm->length >= 0x15) {
917 		mem_width = (u16)(*(const u16 *)(dmi_data + 0x6));
918 		mem_clock = (u16)(*(const u16 *)(dmi_data + 0x11));
919 		list_for_each_entry(mem, &kdev->mem_props, list) {
920 			if (mem_width != 0xFFFF && mem_width != 0)
921 				mem->width = mem_width;
922 			if (mem_clock != 0)
923 				mem->mem_clk_max = mem_clock;
924 		}
925 	}
926 }
927 
928 /*
929  * Performance counters information is not part of CRAT but we would like to
930  * put them in the sysfs under topology directory for Thunk to get the data.
931  * This function is called before updating the sysfs.
932  */
933 static int kfd_add_perf_to_topology(struct kfd_topology_device *kdev)
934 {
935 	/* These are the only counters supported so far */
936 	return kfd_iommu_add_perf_counters(kdev);
937 }
938 
939 /* kfd_add_non_crat_information - Add information that is not currently
940  *	defined in CRAT but is necessary for KFD topology
941  * @dev - topology device to which addition info is added
942  */
943 static void kfd_add_non_crat_information(struct kfd_topology_device *kdev)
944 {
945 	/* Check if CPU only node. */
946 	if (!kdev->gpu) {
947 		/* Add system memory information */
948 		dmi_walk(find_system_memory, kdev);
949 	}
950 	/* TODO: For GPU node, rearrange code from kfd_topology_add_device */
951 }
952 
953 /* kfd_is_acpi_crat_invalid - CRAT from ACPI is valid only for AMD APU devices.
954  *	Ignore CRAT for all other devices. AMD APU is identified if both CPU
955  *	and GPU cores are present.
956  * @device_list - topology device list created by parsing ACPI CRAT table.
957  * @return - TRUE if invalid, FALSE is valid.
958  */
959 static bool kfd_is_acpi_crat_invalid(struct list_head *device_list)
960 {
961 	struct kfd_topology_device *dev;
962 
963 	list_for_each_entry(dev, device_list, list) {
964 		if (dev->node_props.cpu_cores_count &&
965 			dev->node_props.simd_count)
966 			return false;
967 	}
968 	pr_info("Ignoring ACPI CRAT on non-APU system\n");
969 	return true;
970 }
971 
972 int kfd_topology_init(void)
973 {
974 	void *crat_image = NULL;
975 	size_t image_size = 0;
976 	int ret;
977 	struct list_head temp_topology_device_list;
978 	int cpu_only_node = 0;
979 	struct kfd_topology_device *kdev;
980 	int proximity_domain;
981 
982 	/* topology_device_list - Master list of all topology devices
983 	 * temp_topology_device_list - temporary list created while parsing CRAT
984 	 * or VCRAT. Once parsing is complete the contents of list is moved to
985 	 * topology_device_list
986 	 */
987 
988 	/* Initialize the head for the both the lists */
989 	INIT_LIST_HEAD(&topology_device_list);
990 	INIT_LIST_HEAD(&temp_topology_device_list);
991 	init_rwsem(&topology_lock);
992 
993 	memset(&sys_props, 0, sizeof(sys_props));
994 
995 	/* Proximity domains in ACPI CRAT tables start counting at
996 	 * 0. The same should be true for virtual CRAT tables created
997 	 * at this stage. GPUs added later in kfd_topology_add_device
998 	 * use a counter.
999 	 */
1000 	proximity_domain = 0;
1001 
1002 	/*
1003 	 * Get the CRAT image from the ACPI. If ACPI doesn't have one
1004 	 * or if ACPI CRAT is invalid create a virtual CRAT.
1005 	 * NOTE: The current implementation expects all AMD APUs to have
1006 	 *	CRAT. If no CRAT is available, it is assumed to be a CPU
1007 	 */
1008 	ret = kfd_create_crat_image_acpi(&crat_image, &image_size);
1009 	if (!ret) {
1010 		ret = kfd_parse_crat_table(crat_image,
1011 					   &temp_topology_device_list,
1012 					   proximity_domain);
1013 		if (ret ||
1014 		    kfd_is_acpi_crat_invalid(&temp_topology_device_list)) {
1015 			kfd_release_topology_device_list(
1016 				&temp_topology_device_list);
1017 			kfd_destroy_crat_image(crat_image);
1018 			crat_image = NULL;
1019 		}
1020 	}
1021 
1022 	if (!crat_image) {
1023 		ret = kfd_create_crat_image_virtual(&crat_image, &image_size,
1024 						    COMPUTE_UNIT_CPU, NULL,
1025 						    proximity_domain);
1026 		cpu_only_node = 1;
1027 		if (ret) {
1028 			pr_err("Error creating VCRAT table for CPU\n");
1029 			return ret;
1030 		}
1031 
1032 		ret = kfd_parse_crat_table(crat_image,
1033 					   &temp_topology_device_list,
1034 					   proximity_domain);
1035 		if (ret) {
1036 			pr_err("Error parsing VCRAT table for CPU\n");
1037 			goto err;
1038 		}
1039 	}
1040 
1041 	kdev = list_first_entry(&temp_topology_device_list,
1042 				struct kfd_topology_device, list);
1043 	kfd_add_perf_to_topology(kdev);
1044 
1045 	down_write(&topology_lock);
1046 	kfd_topology_update_device_list(&temp_topology_device_list,
1047 					&topology_device_list);
1048 	atomic_set(&topology_crat_proximity_domain, sys_props.num_devices-1);
1049 	ret = kfd_topology_update_sysfs();
1050 	up_write(&topology_lock);
1051 
1052 	if (!ret) {
1053 		sys_props.generation_count++;
1054 		kfd_update_system_properties();
1055 		kfd_debug_print_topology();
1056 	} else
1057 		pr_err("Failed to update topology in sysfs ret=%d\n", ret);
1058 
1059 	/* For nodes with GPU, this information gets added
1060 	 * when GPU is detected (kfd_topology_add_device).
1061 	 */
1062 	if (cpu_only_node) {
1063 		/* Add additional information to CPU only node created above */
1064 		down_write(&topology_lock);
1065 		kdev = list_first_entry(&topology_device_list,
1066 				struct kfd_topology_device, list);
1067 		up_write(&topology_lock);
1068 		kfd_add_non_crat_information(kdev);
1069 	}
1070 
1071 err:
1072 	kfd_destroy_crat_image(crat_image);
1073 	return ret;
1074 }
1075 
1076 void kfd_topology_shutdown(void)
1077 {
1078 	down_write(&topology_lock);
1079 	kfd_topology_release_sysfs();
1080 	kfd_release_live_view();
1081 	up_write(&topology_lock);
1082 }
1083 
1084 static uint32_t kfd_generate_gpu_id(struct kfd_dev *gpu)
1085 {
1086 	uint32_t hashout;
1087 	uint32_t buf[7];
1088 	uint64_t local_mem_size;
1089 	int i;
1090 	struct kfd_local_mem_info local_mem_info;
1091 
1092 	if (!gpu)
1093 		return 0;
1094 
1095 	amdgpu_amdkfd_get_local_mem_info(gpu->kgd, &local_mem_info);
1096 
1097 	local_mem_size = local_mem_info.local_mem_size_private +
1098 			local_mem_info.local_mem_size_public;
1099 
1100 	buf[0] = gpu->pdev->devfn;
1101 	buf[1] = gpu->pdev->subsystem_vendor |
1102 		(gpu->pdev->subsystem_device << 16);
1103 	buf[2] = pci_domain_nr(gpu->pdev->bus);
1104 	buf[3] = gpu->pdev->device;
1105 	buf[4] = gpu->pdev->bus->number;
1106 	buf[5] = lower_32_bits(local_mem_size);
1107 	buf[6] = upper_32_bits(local_mem_size);
1108 
1109 	for (i = 0, hashout = 0; i < 7; i++)
1110 		hashout ^= hash_32(buf[i], KFD_GPU_ID_HASH_WIDTH);
1111 
1112 	return hashout;
1113 }
1114 /* kfd_assign_gpu - Attach @gpu to the correct kfd topology device. If
1115  *		the GPU device is not already present in the topology device
1116  *		list then return NULL. This means a new topology device has to
1117  *		be created for this GPU.
1118  */
1119 static struct kfd_topology_device *kfd_assign_gpu(struct kfd_dev *gpu)
1120 {
1121 	struct kfd_topology_device *dev;
1122 	struct kfd_topology_device *out_dev = NULL;
1123 	struct kfd_mem_properties *mem;
1124 	struct kfd_cache_properties *cache;
1125 	struct kfd_iolink_properties *iolink;
1126 
1127 	down_write(&topology_lock);
1128 	list_for_each_entry(dev, &topology_device_list, list) {
1129 		/* Discrete GPUs need their own topology device list
1130 		 * entries. Don't assign them to CPU/APU nodes.
1131 		 */
1132 		if (!gpu->device_info->needs_iommu_device &&
1133 		    dev->node_props.cpu_cores_count)
1134 			continue;
1135 
1136 		if (!dev->gpu && (dev->node_props.simd_count > 0)) {
1137 			dev->gpu = gpu;
1138 			out_dev = dev;
1139 
1140 			list_for_each_entry(mem, &dev->mem_props, list)
1141 				mem->gpu = dev->gpu;
1142 			list_for_each_entry(cache, &dev->cache_props, list)
1143 				cache->gpu = dev->gpu;
1144 			list_for_each_entry(iolink, &dev->io_link_props, list)
1145 				iolink->gpu = dev->gpu;
1146 			break;
1147 		}
1148 	}
1149 	up_write(&topology_lock);
1150 	return out_dev;
1151 }
1152 
1153 static void kfd_notify_gpu_change(uint32_t gpu_id, int arrival)
1154 {
1155 	/*
1156 	 * TODO: Generate an event for thunk about the arrival/removal
1157 	 * of the GPU
1158 	 */
1159 }
1160 
1161 /* kfd_fill_mem_clk_max_info - Since CRAT doesn't have memory clock info,
1162  *		patch this after CRAT parsing.
1163  */
1164 static void kfd_fill_mem_clk_max_info(struct kfd_topology_device *dev)
1165 {
1166 	struct kfd_mem_properties *mem;
1167 	struct kfd_local_mem_info local_mem_info;
1168 
1169 	if (!dev)
1170 		return;
1171 
1172 	/* Currently, amdgpu driver (amdgpu_mc) deals only with GPUs with
1173 	 * single bank of VRAM local memory.
1174 	 * for dGPUs - VCRAT reports only one bank of Local Memory
1175 	 * for APUs - If CRAT from ACPI reports more than one bank, then
1176 	 *	all the banks will report the same mem_clk_max information
1177 	 */
1178 	amdgpu_amdkfd_get_local_mem_info(dev->gpu->kgd, &local_mem_info);
1179 
1180 	list_for_each_entry(mem, &dev->mem_props, list)
1181 		mem->mem_clk_max = local_mem_info.mem_clk_max;
1182 }
1183 
1184 static void kfd_fill_iolink_non_crat_info(struct kfd_topology_device *dev)
1185 {
1186 	struct kfd_iolink_properties *link, *cpu_link;
1187 	struct kfd_topology_device *cpu_dev;
1188 	uint32_t cap;
1189 	uint32_t cpu_flag = CRAT_IOLINK_FLAGS_ENABLED;
1190 	uint32_t flag = CRAT_IOLINK_FLAGS_ENABLED;
1191 
1192 	if (!dev || !dev->gpu)
1193 		return;
1194 
1195 	pcie_capability_read_dword(dev->gpu->pdev,
1196 			PCI_EXP_DEVCAP2, &cap);
1197 
1198 	if (!(cap & (PCI_EXP_DEVCAP2_ATOMIC_COMP32 |
1199 		     PCI_EXP_DEVCAP2_ATOMIC_COMP64)))
1200 		cpu_flag |= CRAT_IOLINK_FLAGS_NO_ATOMICS_32_BIT |
1201 			CRAT_IOLINK_FLAGS_NO_ATOMICS_64_BIT;
1202 
1203 	if (!dev->gpu->pci_atomic_requested ||
1204 	    dev->gpu->device_info->asic_family == CHIP_HAWAII)
1205 		flag |= CRAT_IOLINK_FLAGS_NO_ATOMICS_32_BIT |
1206 			CRAT_IOLINK_FLAGS_NO_ATOMICS_64_BIT;
1207 
1208 	/* GPU only creates direct links so apply flags setting to all */
1209 	list_for_each_entry(link, &dev->io_link_props, list) {
1210 		link->flags = flag;
1211 		cpu_dev = kfd_topology_device_by_proximity_domain(
1212 				link->node_to);
1213 		if (cpu_dev) {
1214 			list_for_each_entry(cpu_link,
1215 					    &cpu_dev->io_link_props, list)
1216 				if (cpu_link->node_to == link->node_from)
1217 					cpu_link->flags = cpu_flag;
1218 		}
1219 	}
1220 }
1221 
1222 int kfd_topology_add_device(struct kfd_dev *gpu)
1223 {
1224 	uint32_t gpu_id;
1225 	struct kfd_topology_device *dev;
1226 	struct kfd_cu_info cu_info;
1227 	int res = 0;
1228 	struct list_head temp_topology_device_list;
1229 	void *crat_image = NULL;
1230 	size_t image_size = 0;
1231 	int proximity_domain;
1232 	struct amdgpu_ras *ctx;
1233 
1234 	INIT_LIST_HEAD(&temp_topology_device_list);
1235 
1236 	gpu_id = kfd_generate_gpu_id(gpu);
1237 
1238 	pr_debug("Adding new GPU (ID: 0x%x) to topology\n", gpu_id);
1239 
1240 	proximity_domain = atomic_inc_return(&topology_crat_proximity_domain);
1241 
1242 	/* Check to see if this gpu device exists in the topology_device_list.
1243 	 * If so, assign the gpu to that device,
1244 	 * else create a Virtual CRAT for this gpu device and then parse that
1245 	 * CRAT to create a new topology device. Once created assign the gpu to
1246 	 * that topology device
1247 	 */
1248 	dev = kfd_assign_gpu(gpu);
1249 	if (!dev) {
1250 		res = kfd_create_crat_image_virtual(&crat_image, &image_size,
1251 						    COMPUTE_UNIT_GPU, gpu,
1252 						    proximity_domain);
1253 		if (res) {
1254 			pr_err("Error creating VCRAT for GPU (ID: 0x%x)\n",
1255 			       gpu_id);
1256 			return res;
1257 		}
1258 		res = kfd_parse_crat_table(crat_image,
1259 					   &temp_topology_device_list,
1260 					   proximity_domain);
1261 		if (res) {
1262 			pr_err("Error parsing VCRAT for GPU (ID: 0x%x)\n",
1263 			       gpu_id);
1264 			goto err;
1265 		}
1266 
1267 		down_write(&topology_lock);
1268 		kfd_topology_update_device_list(&temp_topology_device_list,
1269 			&topology_device_list);
1270 
1271 		/* Update the SYSFS tree, since we added another topology
1272 		 * device
1273 		 */
1274 		res = kfd_topology_update_sysfs();
1275 		up_write(&topology_lock);
1276 
1277 		if (!res)
1278 			sys_props.generation_count++;
1279 		else
1280 			pr_err("Failed to update GPU (ID: 0x%x) to sysfs topology. res=%d\n",
1281 						gpu_id, res);
1282 		dev = kfd_assign_gpu(gpu);
1283 		if (WARN_ON(!dev)) {
1284 			res = -ENODEV;
1285 			goto err;
1286 		}
1287 	}
1288 
1289 	dev->gpu_id = gpu_id;
1290 	gpu->id = gpu_id;
1291 
1292 	/* TODO: Move the following lines to function
1293 	 *	kfd_add_non_crat_information
1294 	 */
1295 
1296 	/* Fill-in additional information that is not available in CRAT but
1297 	 * needed for the topology
1298 	 */
1299 
1300 	amdgpu_amdkfd_get_cu_info(dev->gpu->kgd, &cu_info);
1301 
1302 	strncpy(dev->node_props.name, gpu->device_info->asic_name,
1303 			KFD_TOPOLOGY_PUBLIC_NAME_SIZE);
1304 
1305 	dev->node_props.simd_arrays_per_engine =
1306 		cu_info.num_shader_arrays_per_engine;
1307 
1308 	dev->node_props.vendor_id = gpu->pdev->vendor;
1309 	dev->node_props.device_id = gpu->pdev->device;
1310 	dev->node_props.capability |=
1311 		((amdgpu_amdkfd_get_asic_rev_id(dev->gpu->kgd) <<
1312 			HSA_CAP_ASIC_REVISION_SHIFT) &
1313 			HSA_CAP_ASIC_REVISION_MASK);
1314 	dev->node_props.location_id = pci_dev_id(gpu->pdev);
1315 	dev->node_props.domain = pci_domain_nr(gpu->pdev->bus);
1316 	dev->node_props.max_engine_clk_fcompute =
1317 		amdgpu_amdkfd_get_max_engine_clock_in_mhz(dev->gpu->kgd);
1318 	dev->node_props.max_engine_clk_ccompute =
1319 		cpufreq_quick_get_max(0) / 1000;
1320 	dev->node_props.drm_render_minor =
1321 		gpu->shared_resources.drm_render_minor;
1322 
1323 	dev->node_props.hive_id = gpu->hive_id;
1324 	dev->node_props.num_sdma_engines = gpu->device_info->num_sdma_engines;
1325 	dev->node_props.num_sdma_xgmi_engines =
1326 				gpu->device_info->num_xgmi_sdma_engines;
1327 	dev->node_props.num_sdma_queues_per_engine =
1328 				gpu->device_info->num_sdma_queues_per_engine;
1329 	dev->node_props.num_gws = (dev->gpu->gws &&
1330 		dev->gpu->dqm->sched_policy != KFD_SCHED_POLICY_NO_HWS) ?
1331 		amdgpu_amdkfd_get_num_gws(dev->gpu->kgd) : 0;
1332 	dev->node_props.num_cp_queues = get_cp_queues_num(dev->gpu->dqm);
1333 	dev->node_props.unique_id = gpu->unique_id;
1334 
1335 	kfd_fill_mem_clk_max_info(dev);
1336 	kfd_fill_iolink_non_crat_info(dev);
1337 
1338 	switch (dev->gpu->device_info->asic_family) {
1339 	case CHIP_KAVERI:
1340 	case CHIP_HAWAII:
1341 	case CHIP_TONGA:
1342 		dev->node_props.capability |= ((HSA_CAP_DOORBELL_TYPE_PRE_1_0 <<
1343 			HSA_CAP_DOORBELL_TYPE_TOTALBITS_SHIFT) &
1344 			HSA_CAP_DOORBELL_TYPE_TOTALBITS_MASK);
1345 		break;
1346 	case CHIP_CARRIZO:
1347 	case CHIP_FIJI:
1348 	case CHIP_POLARIS10:
1349 	case CHIP_POLARIS11:
1350 	case CHIP_POLARIS12:
1351 	case CHIP_VEGAM:
1352 		pr_debug("Adding doorbell packet type capability\n");
1353 		dev->node_props.capability |= ((HSA_CAP_DOORBELL_TYPE_1_0 <<
1354 			HSA_CAP_DOORBELL_TYPE_TOTALBITS_SHIFT) &
1355 			HSA_CAP_DOORBELL_TYPE_TOTALBITS_MASK);
1356 		break;
1357 	case CHIP_VEGA10:
1358 	case CHIP_VEGA12:
1359 	case CHIP_VEGA20:
1360 	case CHIP_RAVEN:
1361 	case CHIP_RENOIR:
1362 	case CHIP_ARCTURUS:
1363 	case CHIP_NAVI10:
1364 	case CHIP_NAVI12:
1365 	case CHIP_NAVI14:
1366 		dev->node_props.capability |= ((HSA_CAP_DOORBELL_TYPE_2_0 <<
1367 			HSA_CAP_DOORBELL_TYPE_TOTALBITS_SHIFT) &
1368 			HSA_CAP_DOORBELL_TYPE_TOTALBITS_MASK);
1369 		break;
1370 	default:
1371 		WARN(1, "Unexpected ASIC family %u",
1372 		     dev->gpu->device_info->asic_family);
1373 	}
1374 
1375 	/*
1376 	* Overwrite ATS capability according to needs_iommu_device to fix
1377 	* potential missing corresponding bit in CRAT of BIOS.
1378 	*/
1379 	if (dev->gpu->device_info->needs_iommu_device)
1380 		dev->node_props.capability |= HSA_CAP_ATS_PRESENT;
1381 	else
1382 		dev->node_props.capability &= ~HSA_CAP_ATS_PRESENT;
1383 
1384 	/* Fix errors in CZ CRAT.
1385 	 * simd_count: Carrizo CRAT reports wrong simd_count, probably
1386 	 *		because it doesn't consider masked out CUs
1387 	 * max_waves_per_simd: Carrizo reports wrong max_waves_per_simd
1388 	 */
1389 	if (dev->gpu->device_info->asic_family == CHIP_CARRIZO) {
1390 		dev->node_props.simd_count =
1391 			cu_info.simd_per_cu * cu_info.cu_active_number;
1392 		dev->node_props.max_waves_per_simd = 10;
1393 	}
1394 
1395 	ctx = amdgpu_ras_get_context((struct amdgpu_device *)(dev->gpu->kgd));
1396 	if (ctx) {
1397 		/* kfd only concerns sram ecc on GFX/SDMA and HBM ecc on UMC */
1398 		dev->node_props.capability |=
1399 			(((ctx->features & BIT(AMDGPU_RAS_BLOCK__SDMA)) != 0) ||
1400 			 ((ctx->features & BIT(AMDGPU_RAS_BLOCK__GFX)) != 0)) ?
1401 			HSA_CAP_SRAM_EDCSUPPORTED : 0;
1402 		dev->node_props.capability |= ((ctx->features & BIT(AMDGPU_RAS_BLOCK__UMC)) != 0) ?
1403 			HSA_CAP_MEM_EDCSUPPORTED : 0;
1404 
1405 		dev->node_props.capability |= (ctx->features != 0) ?
1406 			HSA_CAP_RASEVENTNOTIFY : 0;
1407 	}
1408 
1409 	kfd_debug_print_topology();
1410 
1411 	if (!res)
1412 		kfd_notify_gpu_change(gpu_id, 1);
1413 err:
1414 	kfd_destroy_crat_image(crat_image);
1415 	return res;
1416 }
1417 
1418 int kfd_topology_remove_device(struct kfd_dev *gpu)
1419 {
1420 	struct kfd_topology_device *dev, *tmp;
1421 	uint32_t gpu_id;
1422 	int res = -ENODEV;
1423 
1424 	down_write(&topology_lock);
1425 
1426 	list_for_each_entry_safe(dev, tmp, &topology_device_list, list)
1427 		if (dev->gpu == gpu) {
1428 			gpu_id = dev->gpu_id;
1429 			kfd_remove_sysfs_node_entry(dev);
1430 			kfd_release_topology_device(dev);
1431 			sys_props.num_devices--;
1432 			res = 0;
1433 			if (kfd_topology_update_sysfs() < 0)
1434 				kfd_topology_release_sysfs();
1435 			break;
1436 		}
1437 
1438 	up_write(&topology_lock);
1439 
1440 	if (!res)
1441 		kfd_notify_gpu_change(gpu_id, 0);
1442 
1443 	return res;
1444 }
1445 
1446 /* kfd_topology_enum_kfd_devices - Enumerate through all devices in KFD
1447  *	topology. If GPU device is found @idx, then valid kfd_dev pointer is
1448  *	returned through @kdev
1449  * Return -	0: On success (@kdev will be NULL for non GPU nodes)
1450  *		-1: If end of list
1451  */
1452 int kfd_topology_enum_kfd_devices(uint8_t idx, struct kfd_dev **kdev)
1453 {
1454 
1455 	struct kfd_topology_device *top_dev;
1456 	uint8_t device_idx = 0;
1457 
1458 	*kdev = NULL;
1459 	down_read(&topology_lock);
1460 
1461 	list_for_each_entry(top_dev, &topology_device_list, list) {
1462 		if (device_idx == idx) {
1463 			*kdev = top_dev->gpu;
1464 			up_read(&topology_lock);
1465 			return 0;
1466 		}
1467 
1468 		device_idx++;
1469 	}
1470 
1471 	up_read(&topology_lock);
1472 
1473 	return -1;
1474 
1475 }
1476 
1477 static int kfd_cpumask_to_apic_id(const struct cpumask *cpumask)
1478 {
1479 	int first_cpu_of_numa_node;
1480 
1481 	if (!cpumask || cpumask == cpu_none_mask)
1482 		return -1;
1483 	first_cpu_of_numa_node = cpumask_first(cpumask);
1484 	if (first_cpu_of_numa_node >= nr_cpu_ids)
1485 		return -1;
1486 #ifdef CONFIG_X86_64
1487 	return cpu_data(first_cpu_of_numa_node).apicid;
1488 #else
1489 	return first_cpu_of_numa_node;
1490 #endif
1491 }
1492 
1493 /* kfd_numa_node_to_apic_id - Returns the APIC ID of the first logical processor
1494  *	of the given NUMA node (numa_node_id)
1495  * Return -1 on failure
1496  */
1497 int kfd_numa_node_to_apic_id(int numa_node_id)
1498 {
1499 	if (numa_node_id == -1) {
1500 		pr_warn("Invalid NUMA Node. Use online CPU mask\n");
1501 		return kfd_cpumask_to_apic_id(cpu_online_mask);
1502 	}
1503 	return kfd_cpumask_to_apic_id(cpumask_of_node(numa_node_id));
1504 }
1505 
1506 #if defined(CONFIG_DEBUG_FS)
1507 
1508 int kfd_debugfs_hqds_by_device(struct seq_file *m, void *data)
1509 {
1510 	struct kfd_topology_device *dev;
1511 	unsigned int i = 0;
1512 	int r = 0;
1513 
1514 	down_read(&topology_lock);
1515 
1516 	list_for_each_entry(dev, &topology_device_list, list) {
1517 		if (!dev->gpu) {
1518 			i++;
1519 			continue;
1520 		}
1521 
1522 		seq_printf(m, "Node %u, gpu_id %x:\n", i++, dev->gpu->id);
1523 		r = dqm_debugfs_hqds(m, dev->gpu->dqm);
1524 		if (r)
1525 			break;
1526 	}
1527 
1528 	up_read(&topology_lock);
1529 
1530 	return r;
1531 }
1532 
1533 int kfd_debugfs_rls_by_device(struct seq_file *m, void *data)
1534 {
1535 	struct kfd_topology_device *dev;
1536 	unsigned int i = 0;
1537 	int r = 0;
1538 
1539 	down_read(&topology_lock);
1540 
1541 	list_for_each_entry(dev, &topology_device_list, list) {
1542 		if (!dev->gpu) {
1543 			i++;
1544 			continue;
1545 		}
1546 
1547 		seq_printf(m, "Node %u, gpu_id %x:\n", i++, dev->gpu->id);
1548 		r = pm_debugfs_runlist(m, &dev->gpu->dqm->packets);
1549 		if (r)
1550 			break;
1551 	}
1552 
1553 	up_read(&topology_lock);
1554 
1555 	return r;
1556 }
1557 
1558 #endif
1559