1fddfd316a
/proc/cpuinfo are opened, read, and closed multiple times. Once for vendor name and multiple times for model name -- each node opens once. For example in a 2 CPUs + 4 GPUs system, it'll be opened 7 times. This patch reads it one time and stores it in a cpuinfo buffer. This cpuinfo buffer is freed when the snapshot is done. Also replace returns with gotos inside the snapshot to avoid possible memory leak. Change-Id: Iaf26a6c7e7323a8651d137c3706179449b9e3c80 Signed-off-by: Amber Lin <Amber.Lin@amd.com>
2339 строки
68 KiB
C
2339 строки
68 KiB
C
/*
|
|
* Copyright © 2014 Advanced Micro Devices, Inc.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without
|
|
* restriction, including without limitation the rights to use, copy,
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
* of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including
|
|
* the next paragraph) shall be included in all copies or substantial
|
|
* portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#define _GNU_SOURCE
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <dirent.h>
|
|
#include <malloc.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <ctype.h>
|
|
#include <sched.h>
|
|
#include <pci/pci.h>
|
|
#include <errno.h>
|
|
#include <sys/sysinfo.h>
|
|
|
|
#include "libhsakmt.h"
|
|
#include "fmm.h"
|
|
|
|
/* Number of memory banks added by thunk on top of topology
|
|
* This only includes static heaps like LDS, scratch and SVM,
|
|
* not for MMIO_REMAP heap. MMIO_REMAP memory bank is reported
|
|
* dynamically based on whether mmio aperture was mapped
|
|
* successfully on this node.
|
|
*/
|
|
#define NUM_OF_IGPU_HEAPS 3
|
|
#define NUM_OF_DGPU_HEAPS 3
|
|
/* SYSFS related */
|
|
#define KFD_SYSFS_PATH_GENERATION_ID "/sys/devices/virtual/kfd/kfd/topology/generation_id"
|
|
#define KFD_SYSFS_PATH_SYSTEM_PROPERTIES "/sys/devices/virtual/kfd/kfd/topology/system_properties"
|
|
#define KFD_SYSFS_PATH_NODES "/sys/devices/virtual/kfd/kfd/topology/nodes"
|
|
|
|
typedef struct {
|
|
uint32_t gpu_id;
|
|
HsaNodeProperties node;
|
|
HsaMemoryProperties *mem; /* node->NumBanks elements */
|
|
HsaCacheProperties *cache;
|
|
HsaIoLinkProperties *link;
|
|
} node_props_t;
|
|
|
|
static HsaSystemProperties *g_system;
|
|
static node_props_t *g_props;
|
|
static int is_valgrind;
|
|
|
|
/* This array caches sysfs based node IDs of CPU nodes + all supported GPU nodes.
|
|
* It will be used to map user-node IDs to sysfs-node IDs.
|
|
*/
|
|
static uint32_t *map_user_to_sysfs_node_id;
|
|
static uint32_t map_user_to_sysfs_node_id_size;
|
|
static uint32_t num_sysfs_nodes;
|
|
|
|
static int processor_vendor = -1;
|
|
/* Supported System Vendors */
|
|
enum SUPPORTED_PROCESSOR_VENDORS {
|
|
GENUINE_INTEL = 0,
|
|
AUTHENTIC_AMD
|
|
};
|
|
/* Adding newline to make the search easier */
|
|
static const char *supported_processor_vendor_name[] = {
|
|
"GenuineIntel\n",
|
|
"AuthenticAMD\n"
|
|
};
|
|
|
|
static HSAKMT_STATUS topology_take_snapshot(void);
|
|
static HSAKMT_STATUS topology_drop_snapshot(void);
|
|
|
|
static struct hsa_gfxip_table {
|
|
uint16_t device_id; // Device ID
|
|
unsigned char major; // GFXIP Major engine version
|
|
unsigned char minor; // GFXIP Minor engine version
|
|
unsigned char stepping; // GFXIP Stepping info
|
|
unsigned char is_dgpu; // Predicate for dGPU devices
|
|
const char *amd_name; // CALName of the device
|
|
enum asic_family_type asic_family;
|
|
} gfxip_lookup_table[] = {
|
|
/* Kaveri Family */
|
|
{ 0x1304, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1305, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1306, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1307, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1309, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x130A, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x130B, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x130C, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x130D, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x130E, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x130F, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1310, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1311, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1312, 7, 0, 0, 0, "Spooky", CHIP_KAVERI },
|
|
{ 0x1313, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1315, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x1316, 7, 0, 0, 0, "Spooky", CHIP_KAVERI },
|
|
{ 0x1317, 7, 0, 0, 0, "Spooky", CHIP_KAVERI },
|
|
{ 0x1318, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x131B, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x131C, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
{ 0x131D, 7, 0, 0, 0, "Spectre", CHIP_KAVERI },
|
|
/* Hawaii Family */
|
|
{ 0x67A0, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67A1, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67A2, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67A8, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67A9, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67AA, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67B0, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67B1, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67B8, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67B9, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67BA, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
{ 0x67BE, 7, 0, 1, 1, "Hawaii", CHIP_HAWAII },
|
|
/* Carrizo Family */
|
|
{ 0x9870, 8, 0, 1, 0, "Carrizo", CHIP_CARRIZO },
|
|
{ 0x9874, 8, 0, 1, 0, "Carrizo", CHIP_CARRIZO },
|
|
{ 0x9875, 8, 0, 1, 0, "Carrizo", CHIP_CARRIZO },
|
|
{ 0x9876, 8, 0, 1, 0, "Carrizo", CHIP_CARRIZO },
|
|
{ 0x9877, 8, 0, 1, 0, "Carrizo", CHIP_CARRIZO },
|
|
/* Tonga Family */
|
|
{ 0x6920, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x6921, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x6928, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x6929, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x692B, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x692F, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x6930, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x6938, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
{ 0x6939, 8, 0, 2, 1, "Tonga", CHIP_TONGA },
|
|
/* Fiji */
|
|
{ 0x7300, 8, 0, 3, 1, "Fiji", CHIP_FIJI },
|
|
{ 0x730F, 8, 0, 3, 1, "Fiji", CHIP_FIJI },
|
|
/* Polaris10 */
|
|
{ 0x67C0, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67C1, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67C2, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67C4, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67C7, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67C8, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67C9, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67CA, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67CC, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67CF, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67D0, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x67DF, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
{ 0x6FDF, 8, 0, 3, 1, "Polaris10", CHIP_POLARIS10 },
|
|
/* Polaris11 */
|
|
{ 0x67E0, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67E1, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67E3, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67E7, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67E8, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67E9, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67EB, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67EF, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
{ 0x67FF, 8, 0, 3, 1, "Polaris11", CHIP_POLARIS11 },
|
|
/* Polaris12 */
|
|
{ 0x6980, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
{ 0x6981, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
{ 0x6985, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
{ 0x6986, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
{ 0x6987, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
{ 0x6995, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
{ 0x6997, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
{ 0x699F, 8, 0, 3, 1, "Polaris12", CHIP_POLARIS12 },
|
|
/* VegaM */
|
|
{ 0x694C, 8, 0, 3, 1, "VegaM", CHIP_VEGAM },
|
|
{ 0x694E, 8, 0, 3, 1, "VegaM", CHIP_VEGAM },
|
|
{ 0x694F, 8, 0, 3, 1, "VegaM", CHIP_VEGAM },
|
|
/* Vega10 */
|
|
{ 0x6860, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x6861, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x6862, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x6863, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x6864, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x6867, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x6868, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x6869, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x686A, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x686B, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x686C, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x686D, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x686E, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
{ 0x687F, 9, 0, 0, 1, "Vega10", CHIP_VEGA10 },
|
|
/* Vega12 */
|
|
{ 0x69A0, 9, 0, 4, 1, "Vega12", CHIP_VEGA12 },
|
|
{ 0x69A1, 9, 0, 4, 1, "Vega12", CHIP_VEGA12 },
|
|
{ 0x69A2, 9, 0, 4, 1, "Vega12", CHIP_VEGA12 },
|
|
{ 0x69A3, 9, 0, 4, 1, "Vega12", CHIP_VEGA12 },
|
|
{ 0x69Af, 9, 0, 4, 1, "Vega12", CHIP_VEGA12 },
|
|
/* Raven */
|
|
{ 0x15DD, 9, 0, 2, 0, "Raven", CHIP_RAVEN },
|
|
{ 0x15D8, 9, 0, 2, 0, "Raven", CHIP_RAVEN },
|
|
/* Vega20 */
|
|
{ 0x66A0, 9, 0, 6, 1, "Vega20", CHIP_VEGA20 },
|
|
{ 0x66A1, 9, 0, 6, 1, "Vega20", CHIP_VEGA20 },
|
|
{ 0x66A2, 9, 0, 6, 1, "Vega20", CHIP_VEGA20 },
|
|
{ 0x66A3, 9, 0, 6, 1, "Vega20", CHIP_VEGA20 },
|
|
{ 0x66A4, 9, 0, 6, 1, "Vega20", CHIP_VEGA20 },
|
|
{ 0x66A7, 9, 0, 6, 1, "Vega20", CHIP_VEGA20 },
|
|
{ 0x66AF, 9, 0, 6, 1, "Vega20", CHIP_VEGA20 },
|
|
/* Arcturus */
|
|
{ 0x7388, 9, 0, 8, 1, "Arcturus", CHIP_ARCTURUS },
|
|
{ 0x738C, 9, 0, 8, 1, "Arcturus", CHIP_ARCTURUS },
|
|
{ 0x738E, 9, 0, 8, 1, "Arcturus", CHIP_ARCTURUS },
|
|
/* Navi10 */
|
|
{ 0x7310, 10, 1, 0, 1, "Navi10", CHIP_NAVI10 },
|
|
{ 0x7312, 10, 1, 0, 1, "Navi10", CHIP_NAVI10 },
|
|
{ 0x7318, 10, 1, 0, 1, "Navi10", CHIP_NAVI10 },
|
|
{ 0x731A, 10, 1, 0, 1, "Navi10", CHIP_NAVI10 },
|
|
{ 0x731F, 10, 1, 0, 1, "Navi10", CHIP_NAVI10 },
|
|
};
|
|
|
|
struct proc_cpuinfo {
|
|
uint32_t apicid;
|
|
char model_name[HSA_PUBLIC_NAME_SIZE];
|
|
};
|
|
|
|
enum cache_type {
|
|
CACHE_TYPE_NULL = 0,
|
|
CACHE_TYPE_DATA = 1,
|
|
CACHE_TYPE_INST = 2,
|
|
CACHE_TYPE_UNIFIED = 3
|
|
};
|
|
|
|
typedef struct cacheinfo {
|
|
HsaCacheProperties hsa_cache_prop;
|
|
uint32_t num_threads_sharing; /* how many CPUs share this cache */
|
|
} cacheinfo_t;
|
|
|
|
/* CPU cache table for all CPUs on the system. Each entry has the relative CPU
|
|
* info and caches connected to that CPU.
|
|
*/
|
|
typedef struct cpu_cacheinfo {
|
|
uint32_t len; /* length of the table -> number of online procs */
|
|
uint32_t num_caches; /* number of caches connected to this cpu */
|
|
uint32_t num_duplicated_caches; /* to count caches being shared */
|
|
uint32_t apicid; /* this cpu's apic id */
|
|
uint32_t max_num_apicid; /* max number of addressable IDs */
|
|
cacheinfo_t *cache_info; /* an array for cache information */
|
|
} cpu_cacheinfo_t;
|
|
|
|
/* Deterministic Cache Parameters Leaf in cpuid */
|
|
union _cpuid_leaf_eax { /* Register EAX */
|
|
struct {
|
|
enum cache_type type:5;
|
|
uint32_t level:3;
|
|
uint32_t is_self_initializing:1;
|
|
uint32_t is_fully_associative:1;
|
|
uint32_t reserved:4;
|
|
uint32_t num_threads_sharing:12;
|
|
uint32_t num_cores_on_die:6;
|
|
} split;
|
|
uint32_t full;
|
|
};
|
|
|
|
union _cpuid_leaf_ebx { /* Register EBX */
|
|
struct {
|
|
uint32_t coherency_line_size:12;
|
|
uint32_t physical_line_partition:10;
|
|
uint32_t ways_of_associativity:10;
|
|
} split;
|
|
uint32_t full;
|
|
};
|
|
|
|
static void free_properties(node_props_t *props, int size)
|
|
{
|
|
if (props) {
|
|
int i;
|
|
for (i = 0; i < size; i++) {
|
|
free(props[i].mem);
|
|
free(props[i].cache);
|
|
free(props[i].link);
|
|
}
|
|
|
|
free(props);
|
|
}
|
|
}
|
|
|
|
/* num_subdirs - find the number of sub-directories in the specified path
|
|
* @dirpath - directory path to find sub-directories underneath
|
|
* @prefix - only count sub-directory names starting with prefix.
|
|
* Use blank string, "", to count all.
|
|
* Return - number of sub-directories
|
|
*/
|
|
static int num_subdirs(char *dirpath, char *prefix)
|
|
{
|
|
int count = 0;
|
|
DIR *dirp;
|
|
struct dirent *dir;
|
|
int prefix_len = strlen(prefix);
|
|
|
|
dirp = opendir(dirpath);
|
|
if (dirp) {
|
|
while ((dir = readdir(dirp)) != 0) {
|
|
if ((strcmp(dir->d_name, ".") == 0) ||
|
|
(strcmp(dir->d_name, "..") == 0))
|
|
continue;
|
|
if (prefix_len &&
|
|
strncmp(dir->d_name, prefix, prefix_len))
|
|
continue;
|
|
count++;
|
|
}
|
|
closedir(dirp);
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
#if defined(__x86_64__) || defined(__i386__)
|
|
/* cpuid instruction returns processor identification and feature information
|
|
* to the EAX, EBX, ECX, and EDX registers, as determined by input entered in
|
|
* EAX (in some cases, ECX as well).
|
|
*/
|
|
static inline void cpuid(uint32_t *eax, uint32_t *ebx, uint32_t *ecx,
|
|
uint32_t *edx)
|
|
{
|
|
__asm__ __volatile__(
|
|
"cpuid;"
|
|
: "=a" (*eax),
|
|
"=b" (*ebx),
|
|
"=c" (*ecx),
|
|
"=d" (*edx)
|
|
: "0" (*eax), "2" (*ecx)
|
|
: "memory"
|
|
);
|
|
}
|
|
|
|
/* In cases ECX is also used as an input for cpuid, i.e. cache leaf */
|
|
static void cpuid_count(uint32_t op, int count, uint32_t *eax, uint32_t *ebx,
|
|
uint32_t *ecx, uint32_t *edx)
|
|
{
|
|
*eax = op;
|
|
*ecx = count;
|
|
cpuid(eax, ebx, ecx, edx);
|
|
}
|
|
|
|
/* Lock current process to the specified processor */
|
|
static int lock_to_processor(int processor)
|
|
{
|
|
cpu_set_t cpuset;
|
|
|
|
memset(&cpuset, 0, sizeof(cpu_set_t));
|
|
CPU_SET(processor, &cpuset);
|
|
/* 0: this process */
|
|
return sched_setaffinity(0, sizeof(cpu_set_t), &cpuset);
|
|
}
|
|
|
|
/* Get count's order of 2. In other words, 2^rtn_value = count
|
|
* When count is not an order of 2, round it up to the closest.
|
|
*/
|
|
static int get_count_order(unsigned int count)
|
|
{
|
|
int bit;
|
|
uint32_t num;
|
|
|
|
for (bit = 31; bit >= 0; bit--) {
|
|
num = 1 << bit;
|
|
if (count >= num)
|
|
break;
|
|
}
|
|
if (count & (count - 1))
|
|
++bit;
|
|
|
|
return bit;
|
|
}
|
|
|
|
/* cpuid_find_num_cache_leaves - Use cpuid instruction to find out how many
|
|
* cache leaves the CPU has.
|
|
* @op - cpuid opcode to get cache information
|
|
* Return - the number of cache leaves
|
|
*/
|
|
static int cpuid_find_num_cache_leaves(uint32_t op)
|
|
{
|
|
union _cpuid_leaf_eax eax;
|
|
union _cpuid_leaf_ebx ebx;
|
|
unsigned int ecx;
|
|
unsigned int edx;
|
|
int idx = -1;
|
|
|
|
do {
|
|
++idx;
|
|
cpuid_count(op, idx, &eax.full, &ebx.full, &ecx, &edx);
|
|
/* Modern systems have cache levels up to 3. */
|
|
} while (eax.split.type != CACHE_TYPE_NULL && idx < 4);
|
|
return idx;
|
|
}
|
|
|
|
/* cpuid_get_cpu_cache_info - Use cpuid instruction to get cache information
|
|
* @op - cpuid opcode to get cache information
|
|
* @cpu_ci - this parameter is an input and also an output.
|
|
* [IN] cpu_ci->num_caches: the number of caches of this cpu
|
|
* [OUT] cpu_ci->cache_info: to store cache info collected
|
|
*/
|
|
static void cpuid_get_cpu_cache_info(uint32_t op, cpu_cacheinfo_t *cpu_ci)
|
|
{
|
|
union _cpuid_leaf_eax eax;
|
|
union _cpuid_leaf_ebx ebx;
|
|
uint32_t ecx;
|
|
uint32_t edx;
|
|
uint32_t index;
|
|
cacheinfo_t *this_leaf;
|
|
|
|
for (index = 0; index < cpu_ci->num_caches; index++) {
|
|
cpuid_count(op, index, &eax.full, &ebx.full, &ecx, &edx);
|
|
this_leaf = cpu_ci->cache_info + index;
|
|
this_leaf->hsa_cache_prop.ProcessorIdLow = cpu_ci->apicid;
|
|
this_leaf->num_threads_sharing =
|
|
eax.split.num_threads_sharing + 1;
|
|
this_leaf->hsa_cache_prop.CacheLevel = eax.split.level;
|
|
this_leaf->hsa_cache_prop.CacheType.ui32.CPU = 1;
|
|
if (eax.split.type & CACHE_TYPE_DATA)
|
|
this_leaf->hsa_cache_prop.CacheType.ui32.Data = 1;
|
|
if (eax.split.type & CACHE_TYPE_INST)
|
|
this_leaf->hsa_cache_prop.CacheType.ui32.Instruction = 1;
|
|
this_leaf->hsa_cache_prop.CacheLineSize =
|
|
ebx.split.coherency_line_size + 1;
|
|
this_leaf->hsa_cache_prop.CacheAssociativity =
|
|
ebx.split.ways_of_associativity + 1;
|
|
this_leaf->hsa_cache_prop.CacheLinesPerTag =
|
|
ebx.split.physical_line_partition + 1;
|
|
this_leaf->hsa_cache_prop.CacheSize = (ecx + 1) *
|
|
(ebx.split.coherency_line_size + 1) *
|
|
(ebx.split.physical_line_partition + 1) *
|
|
(ebx.split.ways_of_associativity + 1);
|
|
}
|
|
}
|
|
|
|
/* find_cpu_cache_siblings - In the cache list, some caches may be listed more
|
|
* than once if they are shared by multiple CPUs. Identify the cache's CPU
|
|
* siblings, record it to SiblingMap[], then remove the duplicated cache by
|
|
* changing the cache size to 0.
|
|
*/
|
|
static void find_cpu_cache_siblings(cpu_cacheinfo_t *cpu_ci_list)
|
|
{
|
|
cacheinfo_t *this_leaf, *leaf2;
|
|
uint32_t n, j, idx_msb, apicid1, apicid2;
|
|
cpu_cacheinfo_t *this_cpu, *cpu2;
|
|
uint32_t index;
|
|
|
|
/* FixMe: cpuid under Valgrind doesn't return data from the processor we set
|
|
* affinity to. We can't use that data to calculate siblings.
|
|
*/
|
|
if (is_valgrind)
|
|
return;
|
|
|
|
for (n = 0; n < cpu_ci_list->len; n++) {
|
|
this_cpu = cpu_ci_list + n;
|
|
for (index = 0; index < this_cpu->num_caches; index++) {
|
|
this_leaf = this_cpu->cache_info + index;
|
|
/* CacheSize 0 means an invalid cache */
|
|
if (!this_leaf->hsa_cache_prop.CacheSize)
|
|
continue;
|
|
if (this_leaf->num_threads_sharing == 1) // no siblings
|
|
continue;
|
|
idx_msb = get_count_order(this_leaf->num_threads_sharing);
|
|
for (j = n + 1; j < cpu_ci_list->len; j++) {
|
|
cpu2 = cpu_ci_list + j;
|
|
leaf2 = cpu2->cache_info + index;
|
|
apicid1 = this_leaf->hsa_cache_prop.ProcessorIdLow;
|
|
apicid2 = leaf2->hsa_cache_prop.ProcessorIdLow;
|
|
if ((apicid2 >> idx_msb) != (apicid1 >> idx_msb))
|
|
continue;
|
|
/* A sibling leaf is found. Cache properties
|
|
* use ProcIdLow as offset to represent siblings
|
|
* in SiblingMap, so keep the lower apicid and
|
|
* delete the other by changing CacheSize to 0.
|
|
*/
|
|
if (apicid1 < apicid2) {
|
|
this_leaf->hsa_cache_prop.SiblingMap[0] = 1;
|
|
this_leaf->hsa_cache_prop.SiblingMap[apicid2 - apicid1] = 1;
|
|
leaf2->hsa_cache_prop.CacheSize = 0;
|
|
cpu2->num_duplicated_caches++;
|
|
} else {
|
|
leaf2->hsa_cache_prop.SiblingMap[0] = 1;
|
|
leaf2->hsa_cache_prop.SiblingMap[apicid1 - apicid2] = 1;
|
|
this_leaf->hsa_cache_prop.CacheSize = 0;
|
|
this_cpu->num_duplicated_caches++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endif /* X86 platform */
|
|
|
|
static HSAKMT_STATUS topology_sysfs_get_generation(uint32_t *gen)
|
|
{
|
|
FILE *fd;
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
|
|
assert(gen);
|
|
fd = fopen(KFD_SYSFS_PATH_GENERATION_ID, "r");
|
|
if (!fd)
|
|
return HSAKMT_STATUS_ERROR;
|
|
if (fscanf(fd, "%ul", gen) != 1) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err;
|
|
}
|
|
|
|
err:
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
static HSAKMT_STATUS topology_sysfs_map_node_id(uint32_t node_id, uint32_t *sys_node_id)
|
|
{
|
|
if ((!map_user_to_sysfs_node_id) || (node_id >= map_user_to_sysfs_node_id_size))
|
|
return HSAKMT_STATUS_NOT_SUPPORTED;
|
|
|
|
*sys_node_id = map_user_to_sysfs_node_id[node_id];
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
static HSAKMT_STATUS topology_sysfs_get_gpu_id(uint32_t sysfs_node_id, uint32_t *gpu_id)
|
|
{
|
|
FILE *fd;
|
|
char path[256];
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
|
|
assert(gpu_id);
|
|
snprintf(path, 256, "%s/%d/gpu_id", KFD_SYSFS_PATH_NODES, sysfs_node_id);
|
|
fd = fopen(path, "r");
|
|
if (!fd)
|
|
return HSAKMT_STATUS_ERROR;
|
|
if (fscanf(fd, "%ul", gpu_id) != 1)
|
|
ret = (errno == EPERM) ? HSAKMT_STATUS_NOT_SUPPORTED :
|
|
HSAKMT_STATUS_ERROR;
|
|
fclose(fd);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* Check if the @sysfs_node_id is supported. This function will be passed with sysfs node id.
|
|
* This function can not use topology_* help functions, because those functions are
|
|
* using user node id.
|
|
* A sysfs node is not supported
|
|
* - if corresponding drm render node is not available.
|
|
* - if node information is not accessible (EPERM)
|
|
*/
|
|
static HSAKMT_STATUS topology_sysfs_check_node_supported(uint32_t sysfs_node_id, bool *is_node_supported)
|
|
{
|
|
uint32_t gpu_id;
|
|
FILE *fd;
|
|
char *read_buf, *p;
|
|
int read_size;
|
|
char prop_name[256];
|
|
char path[256];
|
|
unsigned long long prop_val;
|
|
uint32_t prog;
|
|
uint32_t drm_render_minor = 0;
|
|
int ret_value;
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
|
|
*is_node_supported = false;
|
|
|
|
/* Retrieve the GPU ID */
|
|
ret = topology_sysfs_get_gpu_id(sysfs_node_id, &gpu_id);
|
|
if (ret == HSAKMT_STATUS_NOT_SUPPORTED)
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
|
|
if (gpu_id == 0) {
|
|
*is_node_supported = true;
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
read_buf = malloc(PAGE_SIZE);
|
|
if (!read_buf)
|
|
return HSAKMT_STATUS_NO_MEMORY;
|
|
|
|
/* Retrieve the node properties */
|
|
snprintf(path, 256, "%s/%d/properties", KFD_SYSFS_PATH_NODES, sysfs_node_id);
|
|
fd = fopen(path, "r");
|
|
if (!fd) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err;
|
|
}
|
|
|
|
read_size = fread(read_buf, 1, PAGE_SIZE, fd);
|
|
if (read_size <= 0) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err;
|
|
}
|
|
|
|
/* Since we're using the buffer as a string, we make sure the string terminates */
|
|
if (read_size >= PAGE_SIZE)
|
|
read_size = PAGE_SIZE - 1;
|
|
read_buf[read_size] = 0;
|
|
|
|
/* Read the node properties */
|
|
prog = 0;
|
|
p = read_buf;
|
|
while (sscanf(p += prog, "%s %llu\n%n", prop_name, &prop_val, &prog) == 2) {
|
|
if (strcmp(prop_name, "drm_render_minor") == 0) {
|
|
drm_render_minor = (int32_t)prop_val;
|
|
break;
|
|
}
|
|
}
|
|
if (!drm_render_minor) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err;
|
|
}
|
|
|
|
/* Open DRM Render device */
|
|
ret_value = open_drm_render_device(drm_render_minor);
|
|
if (ret_value > 0)
|
|
*is_node_supported = true;
|
|
else if (ret_value != -ENOENT && ret_value != -EPERM)
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
|
|
err:
|
|
free(read_buf);
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
HSAKMT_STATUS topology_sysfs_get_system_props(HsaSystemProperties *props)
|
|
{
|
|
FILE *fd;
|
|
char *read_buf, *p;
|
|
char prop_name[256];
|
|
unsigned long long prop_val;
|
|
uint32_t prog;
|
|
int read_size;
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
bool is_node_supported = true;
|
|
uint32_t num_supported_nodes = 0;
|
|
|
|
|
|
assert(props);
|
|
fd = fopen(KFD_SYSFS_PATH_SYSTEM_PROPERTIES, "r");
|
|
if (!fd)
|
|
return HSAKMT_STATUS_ERROR;
|
|
|
|
read_buf = malloc(PAGE_SIZE);
|
|
if (!read_buf) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err1;
|
|
}
|
|
|
|
read_size = fread(read_buf, 1, PAGE_SIZE, fd);
|
|
if (read_size <= 0) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err2;
|
|
}
|
|
|
|
/* Since we're using the buffer as a string, we make sure the string terminates */
|
|
if (read_size >= PAGE_SIZE)
|
|
read_size = PAGE_SIZE - 1;
|
|
read_buf[read_size] = 0;
|
|
|
|
/* Read the system properties */
|
|
prog = 0;
|
|
p = read_buf;
|
|
while (sscanf(p += prog, "%s %llu\n%n", prop_name, &prop_val, &prog) == 2) {
|
|
if (strcmp(prop_name, "platform_oem") == 0)
|
|
props->PlatformOem = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "platform_id") == 0)
|
|
props->PlatformId = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "platform_rev") == 0)
|
|
props->PlatformRev = (uint32_t)prop_val;
|
|
}
|
|
|
|
/*
|
|
* Discover the number of sysfs nodes:
|
|
* Assuming that inside nodes folder there are only folders
|
|
* which represent the node numbers
|
|
*/
|
|
num_sysfs_nodes = num_subdirs(KFD_SYSFS_PATH_NODES, "");
|
|
|
|
if (map_user_to_sysfs_node_id == NULL) {
|
|
/* Trade off - num_sysfs_nodes includes all CPU and GPU nodes.
|
|
* Slightly more memory is allocated than necessary.
|
|
*/
|
|
map_user_to_sysfs_node_id = calloc(num_sysfs_nodes, sizeof(uint32_t));
|
|
if (map_user_to_sysfs_node_id == NULL) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err2;
|
|
}
|
|
map_user_to_sysfs_node_id_size = num_sysfs_nodes;
|
|
} else if (num_sysfs_nodes > map_user_to_sysfs_node_id_size) {
|
|
free(map_user_to_sysfs_node_id);
|
|
map_user_to_sysfs_node_id = calloc(num_sysfs_nodes, sizeof(uint32_t));
|
|
if (map_user_to_sysfs_node_id == NULL) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err2;
|
|
}
|
|
map_user_to_sysfs_node_id_size = num_sysfs_nodes;
|
|
}
|
|
|
|
for (uint32_t i = 0; i < num_sysfs_nodes; i++) {
|
|
ret = topology_sysfs_check_node_supported(i, &is_node_supported);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
goto sysfs_parse_failed;
|
|
if (is_node_supported)
|
|
map_user_to_sysfs_node_id[num_supported_nodes++] = i;
|
|
}
|
|
props->NumNodes = num_supported_nodes;
|
|
|
|
free(read_buf);
|
|
fclose(fd);
|
|
return ret;
|
|
|
|
sysfs_parse_failed:
|
|
free(map_user_to_sysfs_node_id);
|
|
map_user_to_sysfs_node_id = NULL;
|
|
err2:
|
|
free(read_buf);
|
|
err1:
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
static const struct hsa_gfxip_table *find_hsa_gfxip_device(uint16_t device_id)
|
|
{
|
|
uint32_t i, table_size;
|
|
|
|
table_size = sizeof(gfxip_lookup_table)/sizeof(struct hsa_gfxip_table);
|
|
for (i = 0; i < table_size; i++) {
|
|
if (gfxip_lookup_table[i].device_id == device_id)
|
|
return &gfxip_lookup_table[i];
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
HSAKMT_STATUS topology_get_asic_family(uint16_t device_id,
|
|
enum asic_family_type *asic)
|
|
{
|
|
const struct hsa_gfxip_table *hsa_gfxip =
|
|
find_hsa_gfxip_device(device_id);
|
|
|
|
if (!hsa_gfxip)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
*asic = hsa_gfxip->asic_family;
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
bool topology_is_dgpu(uint16_t device_id)
|
|
{
|
|
const struct hsa_gfxip_table *hsa_gfxip =
|
|
find_hsa_gfxip_device(device_id);
|
|
|
|
if (hsa_gfxip && hsa_gfxip->is_dgpu) {
|
|
is_dgpu = true;
|
|
return true;
|
|
}
|
|
is_dgpu = false;
|
|
return false;
|
|
}
|
|
|
|
bool topology_is_svm_needed(uint16_t device_id)
|
|
{
|
|
const struct hsa_gfxip_table *hsa_gfxip;
|
|
|
|
if (topology_is_dgpu(device_id))
|
|
return true;
|
|
|
|
hsa_gfxip = find_hsa_gfxip_device(device_id);
|
|
|
|
if (hsa_gfxip && hsa_gfxip->asic_family >= CHIP_VEGA10)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
static HSAKMT_STATUS topology_get_cpu_model_name(HsaNodeProperties *props,
|
|
struct proc_cpuinfo *cpuinfo, int num_procs)
|
|
{
|
|
int i, j;
|
|
|
|
if (!props) {
|
|
pr_err("Invalid props to get cpu model name\n");
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
for (i = 0; i < num_procs; i++, cpuinfo++) {
|
|
if (props->CComputeIdLo == cpuinfo->apicid) {
|
|
if (!props->DeviceId) /* CPU-only node */
|
|
strncpy((char *)props->AMDName, cpuinfo->model_name, sizeof(props->AMDName));
|
|
/* Convert from UTF8 to UTF16 */
|
|
for (j = 0; cpuinfo->model_name[j] != '\0' && j < HSA_PUBLIC_NAME_SIZE - 1; j++)
|
|
props->MarketingName[j] = cpuinfo->model_name[j];
|
|
props->MarketingName[j] = '\0';
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
}
|
|
|
|
return HSAKMT_STATUS_ERROR;
|
|
}
|
|
|
|
static int topology_search_processor_vendor(const char *processor_name)
|
|
{
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < ARRAY_LEN(supported_processor_vendor_name); i++) {
|
|
if (!strcmp(processor_name, supported_processor_vendor_name[i]))
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
/* topology_parse_cpuinfo - Parse /proc/cpuinfo and fill up required
|
|
* topology information
|
|
* cpuinfo [OUT]: output buffer to hold cpu information
|
|
* num_procs: number of processors the output buffer can hold
|
|
*/
|
|
static HSAKMT_STATUS topology_parse_cpuinfo(struct proc_cpuinfo *cpuinfo,
|
|
uint32_t num_procs)
|
|
{
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
FILE *fd;
|
|
char read_buf[256];
|
|
char *p;
|
|
uint32_t proc = 0;
|
|
const char *proc_cpuinfo_path = "/proc/cpuinfo";
|
|
|
|
if (!cpuinfo) {
|
|
pr_err("CPU information will be missing\n");
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
fd = fopen(proc_cpuinfo_path, "r");
|
|
if (!fd) {
|
|
pr_err("Failed to open [%s]. Unable to get CPU information",
|
|
proc_cpuinfo_path);
|
|
return HSAKMT_STATUS_ERROR;
|
|
}
|
|
|
|
/* Each line in /proc/cpuinfo that read_buf is constructed, the format
|
|
* is like this:
|
|
* "token : value\n"
|
|
* where token is our target like vendor_id, model name, apicid ...
|
|
* and value is the answer
|
|
*/
|
|
while (fgets(read_buf, sizeof(read_buf), fd)) {
|
|
/* processor number */
|
|
if (!strncmp("processor", read_buf, sizeof("processor") - 1)) {
|
|
p = strchr(read_buf, ':');
|
|
p += 2; /* remove ": " */
|
|
proc = atoi(p);
|
|
if (proc >= num_procs) {
|
|
pr_warn("cpuinfo contains processor %d lager than %u\n",
|
|
proc, num_procs);
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto exit;
|
|
}
|
|
continue;
|
|
}
|
|
|
|
/* vendor name */
|
|
if (!strncmp("vendor_id", read_buf, sizeof("vendor_id") - 1) &&
|
|
(processor_vendor == -1)) {
|
|
p = strchr(read_buf, ':');
|
|
p += 2; /* remove ": " */
|
|
processor_vendor = topology_search_processor_vendor(p);
|
|
continue;
|
|
}
|
|
|
|
/* model name */
|
|
if (!strncmp("model name", read_buf, sizeof("model name") - 1)) {
|
|
p = strchr(read_buf, ':');
|
|
p += 2; /* remove ": " */
|
|
if (strlen(p) < HSA_PUBLIC_NAME_SIZE) {
|
|
/* -1 to remove \n from p */
|
|
strncpy(cpuinfo[proc].model_name, p, strlen(p) - 1);
|
|
cpuinfo[proc].model_name[strlen(p) - 1] = '\0';
|
|
} else
|
|
strncpy(cpuinfo[proc].model_name, p, HSA_PUBLIC_NAME_SIZE);
|
|
continue;
|
|
}
|
|
|
|
/* apicid */
|
|
if (!strncmp("apicid", read_buf, sizeof("apicid") - 1)) {
|
|
p = strchr(read_buf, ':');
|
|
p += 2; /* remove ": " */
|
|
cpuinfo[proc].apicid = atoi(p);
|
|
}
|
|
}
|
|
|
|
if (processor_vendor < 0) {
|
|
pr_err("Failed to get Processor Vendor. Setting to %s",
|
|
supported_processor_vendor_name[GENUINE_INTEL]);
|
|
processor_vendor = GENUINE_INTEL;
|
|
}
|
|
|
|
exit:
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
HSAKMT_STATUS topology_sysfs_get_node_props(uint32_t node_id,
|
|
HsaNodeProperties *props,
|
|
uint32_t *gpu_id,
|
|
struct pci_access *pacc)
|
|
{
|
|
FILE *fd;
|
|
char *read_buf, *p, *envvar, dummy;
|
|
char prop_name[256];
|
|
char path[256];
|
|
unsigned long long prop_val;
|
|
uint32_t i, prog, major, minor, step;
|
|
int read_size;
|
|
const struct hsa_gfxip_table *hsa_gfxip;
|
|
char namebuf[HSA_PUBLIC_NAME_SIZE];
|
|
const char *name;
|
|
uint32_t sys_node_id;
|
|
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
|
|
assert(props);
|
|
assert(gpu_id);
|
|
ret = topology_sysfs_map_node_id(node_id, &sys_node_id);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
|
|
/* Retrieve the GPU ID */
|
|
ret = topology_sysfs_get_gpu_id(sys_node_id, gpu_id);
|
|
|
|
read_buf = malloc(PAGE_SIZE);
|
|
if (!read_buf)
|
|
return HSAKMT_STATUS_NO_MEMORY;
|
|
|
|
/* Retrieve the node properties */
|
|
snprintf(path, 256, "%s/%d/properties", KFD_SYSFS_PATH_NODES, sys_node_id);
|
|
fd = fopen(path, "r");
|
|
if (!fd) {
|
|
free(read_buf);
|
|
return HSAKMT_STATUS_ERROR;
|
|
}
|
|
|
|
read_size = fread(read_buf, 1, PAGE_SIZE, fd);
|
|
if (read_size <= 0) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err;
|
|
}
|
|
|
|
/* Since we're using the buffer as a string, we make sure the string terminates */
|
|
if (read_size >= PAGE_SIZE)
|
|
read_size = PAGE_SIZE - 1;
|
|
read_buf[read_size] = 0;
|
|
|
|
/* Read the node properties */
|
|
prog = 0;
|
|
p = read_buf;
|
|
while (sscanf(p += prog, "%s %llu\n%n", prop_name, &prop_val, &prog) == 2) {
|
|
if (strcmp(prop_name, "cpu_cores_count") == 0)
|
|
props->NumCPUCores = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "simd_count") == 0)
|
|
props->NumFComputeCores = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "mem_banks_count") == 0)
|
|
props->NumMemoryBanks = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "caches_count") == 0)
|
|
props->NumCaches = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "io_links_count") == 0)
|
|
props->NumIOLinks = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "cpu_core_id_base") == 0)
|
|
props->CComputeIdLo = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "simd_id_base") == 0)
|
|
props->FComputeIdLo = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "capability") == 0)
|
|
props->Capability.Value = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "debug_prop") == 0)
|
|
props->DebugProperties.Value = (uint64_t)prop_val;
|
|
else if (strcmp(prop_name, "max_waves_per_simd") == 0)
|
|
props->MaxWavesPerSIMD = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "lds_size_in_kb") == 0)
|
|
props->LDSSizeInKB = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "gds_size_in_kb") == 0)
|
|
props->GDSSizeInKB = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "wave_front_size") == 0)
|
|
props->WaveFrontSize = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "array_count") == 0)
|
|
props->NumShaderBanks = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "simd_arrays_per_engine") == 0)
|
|
props->NumArrays = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "cu_per_simd_array") == 0)
|
|
props->NumCUPerArray = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "simd_per_cu") == 0)
|
|
props->NumSIMDPerCU = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "max_slots_scratch_cu") == 0)
|
|
props->MaxSlotsScratchCU = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "fw_version") == 0)
|
|
props->EngineId.Value = (uint32_t)prop_val & 0x3ff;
|
|
else if (strcmp(prop_name, "vendor_id") == 0)
|
|
props->VendorId = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "device_id") == 0)
|
|
props->DeviceId = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "location_id") == 0)
|
|
props->LocationId = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "max_engine_clk_fcompute") == 0)
|
|
props->MaxEngineClockMhzFCompute = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "max_engine_clk_ccompute") == 0)
|
|
props->MaxEngineClockMhzCCompute = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "local_mem_size") == 0)
|
|
props->LocalMemSize = prop_val;
|
|
else if (strcmp(prop_name, "drm_render_minor") == 0)
|
|
props->DrmRenderMinor = (int32_t)prop_val;
|
|
else if (strcmp(prop_name, "sdma_fw_version") == 0)
|
|
props->uCodeEngineVersions.Value = (uint32_t)prop_val & 0x3ff;
|
|
else if (strcmp(prop_name, "hive_id") == 0)
|
|
props->HiveID = prop_val;
|
|
else if (strcmp(prop_name, "num_sdma_engines") == 0)
|
|
props->NumSdmaEngines = prop_val;
|
|
else if (strcmp(prop_name, "num_sdma_xgmi_engines") == 0)
|
|
props->NumSdmaXgmiEngines = prop_val;
|
|
else if (strcmp(prop_name, "num_gws") == 0)
|
|
props->NumGws = prop_val;
|
|
}
|
|
|
|
hsa_gfxip = find_hsa_gfxip_device(props->DeviceId);
|
|
if (hsa_gfxip) {
|
|
envvar = getenv("HSA_OVERRIDE_GFX_VERSION");
|
|
if (envvar) {
|
|
/* HSA_OVERRIDE_GFX_VERSION=major.minor.stepping */
|
|
if ((sscanf(envvar, "%u.%u.%u%c",
|
|
&major, &minor, &step, &dummy) != 3) ||
|
|
(major > 63 || minor > 255 || step > 255)) {
|
|
pr_err("HSA_OVERRIDE_GFX_VERSION %s is invalid\n",
|
|
envvar);
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err;
|
|
}
|
|
props->EngineId.ui32.Major = major & 0x3f;
|
|
props->EngineId.ui32.Minor = minor & 0xff;
|
|
props->EngineId.ui32.Stepping = step & 0xff;
|
|
} else {
|
|
props->EngineId.ui32.Major = hsa_gfxip->major & 0x3f;
|
|
props->EngineId.ui32.Minor = hsa_gfxip->minor;
|
|
props->EngineId.ui32.Stepping = hsa_gfxip->stepping;
|
|
}
|
|
|
|
if (!hsa_gfxip->amd_name) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err;
|
|
}
|
|
|
|
/* Retrieve the CAL name of the node */
|
|
strncpy((char *)props->AMDName, hsa_gfxip->amd_name, sizeof(props->AMDName)-1);
|
|
if (!props->NumCPUCores) {
|
|
/* Is dGPU Node, not APU
|
|
* Retrieve the marketing name of the node using pcilib,
|
|
* convert UTF8 to UTF16
|
|
*/
|
|
name = pci_lookup_name(pacc, namebuf, sizeof(namebuf), PCI_LOOKUP_DEVICE,
|
|
props->VendorId, props->DeviceId);
|
|
for (i = 0; name[i] != 0 && i < HSA_PUBLIC_NAME_SIZE - 1; i++)
|
|
props->MarketingName[i] = name[i];
|
|
props->MarketingName[i] = '\0';
|
|
}
|
|
}
|
|
if (props->NumFComputeCores)
|
|
assert(props->EngineId.ui32.Major);
|
|
|
|
err:
|
|
free(read_buf);
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
static HSAKMT_STATUS topology_sysfs_get_mem_props(uint32_t node_id,
|
|
uint32_t mem_id,
|
|
HsaMemoryProperties *props)
|
|
{
|
|
FILE *fd;
|
|
char *read_buf, *p;
|
|
char prop_name[256];
|
|
char path[256];
|
|
unsigned long long prop_val;
|
|
uint32_t prog;
|
|
int read_size;
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
uint32_t sys_node_id;
|
|
|
|
assert(props);
|
|
ret = topology_sysfs_map_node_id(node_id, &sys_node_id);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
|
|
snprintf(path, 256, "%s/%d/mem_banks/%d/properties", KFD_SYSFS_PATH_NODES, sys_node_id, mem_id);
|
|
fd = fopen(path, "r");
|
|
if (!fd)
|
|
return HSAKMT_STATUS_ERROR;
|
|
read_buf = malloc(PAGE_SIZE);
|
|
if (!read_buf) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err1;
|
|
}
|
|
|
|
read_size = fread(read_buf, 1, PAGE_SIZE, fd);
|
|
if (read_size <= 0) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err2;
|
|
}
|
|
|
|
/* Since we're using the buffer as a string, we make sure the string terminates */
|
|
if (read_size >= PAGE_SIZE)
|
|
read_size = PAGE_SIZE - 1;
|
|
read_buf[read_size] = 0;
|
|
|
|
prog = 0;
|
|
p = read_buf;
|
|
while (sscanf(p += prog, "%s %llu\n%n", prop_name, &prop_val, &prog) == 2) {
|
|
if (strcmp(prop_name, "heap_type") == 0)
|
|
props->HeapType = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "size_in_bytes") == 0)
|
|
props->SizeInBytes = (uint64_t)prop_val;
|
|
else if (strcmp(prop_name, "flags") == 0)
|
|
props->Flags.MemoryProperty = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "width") == 0)
|
|
props->Width = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "mem_clk_max") == 0)
|
|
props->MemoryClockMax = (uint32_t)prop_val;
|
|
}
|
|
|
|
err2:
|
|
free(read_buf);
|
|
err1:
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
#if defined(__x86_64__) || defined(__i386__)
|
|
/* topology_destroy_temp_cpu_cache_list - Free the memory allocated in
|
|
* topology_create_temp_cpu_cache_list().
|
|
*/
|
|
static void topology_destroy_temp_cpu_cache_list(void *temp_cpu_ci_list)
|
|
{
|
|
uint32_t n;
|
|
cpu_cacheinfo_t *p_temp_cpu_ci_list = (cpu_cacheinfo_t *)temp_cpu_ci_list;
|
|
cpu_cacheinfo_t *this_cpu;
|
|
|
|
if (p_temp_cpu_ci_list) {
|
|
for (n = 0; n < p_temp_cpu_ci_list->len; n++) {
|
|
this_cpu = p_temp_cpu_ci_list + n;
|
|
if (this_cpu->cache_info)
|
|
free(this_cpu->cache_info);
|
|
}
|
|
free(p_temp_cpu_ci_list);
|
|
}
|
|
|
|
p_temp_cpu_ci_list = NULL;
|
|
}
|
|
|
|
/* topology_create_temp_cpu_cache_list - Create a temporary cpu-cache list to
|
|
* store cpu cache information. This list will be used to copy
|
|
* cache information to each CPU node. Must call
|
|
* topology_destroy_temp_cpu_cache_list to free the memory after
|
|
* the information is copied.
|
|
* @temp_cpu_ci_list - [OUT] temporary cpu-cache-info list to store data
|
|
* Return - HSAKMT_STATUS_SUCCESS in success or error number in failure
|
|
*/
|
|
static HSAKMT_STATUS topology_create_temp_cpu_cache_list(void **temp_cpu_ci_list)
|
|
{
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
void *p_temp_cpu_ci_list;
|
|
int procs_online;
|
|
cpu_set_t orig_cpuset;
|
|
int i, j = 0;
|
|
uint32_t cpuid_op_cache;
|
|
uint32_t eax, ebx, ecx = 0, edx; /* cpuid registers */
|
|
cpu_cacheinfo_t *cpu_ci_list, *this_cpu;
|
|
bool x2apic = false;
|
|
|
|
if (!temp_cpu_ci_list) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto exit;
|
|
}
|
|
*temp_cpu_ci_list = NULL;
|
|
|
|
/* Find the number of processors available to the current process, based
|
|
* on a system call that returns the "affinity" between the current process
|
|
* and each CPU. For getting each CPU cache information the process affinity
|
|
* is modified. Save the original affinity mask so that it can be restored
|
|
* after finding the cache information.
|
|
*/
|
|
CPU_ZERO(&orig_cpuset);
|
|
if (sched_getaffinity(0, sizeof(cpu_set_t), &orig_cpuset)) {
|
|
pr_warn("Failed to get CPU affinity %s\n", strerror(errno));
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto exit;
|
|
}
|
|
procs_online = CPU_COUNT(&orig_cpuset);
|
|
if (procs_online <= 0) {
|
|
pr_warn("Invalid number of online processors %d\n", procs_online);
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto exit;
|
|
}
|
|
|
|
p_temp_cpu_ci_list = calloc(sizeof(cpu_cacheinfo_t) * procs_online, 1);
|
|
if (!p_temp_cpu_ci_list) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto exit;
|
|
}
|
|
|
|
cpu_ci_list = (cpu_cacheinfo_t *)p_temp_cpu_ci_list;
|
|
cpu_ci_list->len = procs_online;
|
|
|
|
if (processor_vendor == AUTHENTIC_AMD)
|
|
cpuid_op_cache = 0x8000001d;
|
|
else
|
|
cpuid_op_cache = 0x4;
|
|
|
|
for (i = 0; i < CPU_SETSIZE && j < procs_online; i++) {
|
|
/* Ignore the CPUs that is not available for the current process */
|
|
if (!CPU_ISSET(i, &orig_cpuset))
|
|
continue;
|
|
|
|
this_cpu = cpu_ci_list + j++;
|
|
/* so cpuid is executed in correct cpu */
|
|
if (lock_to_processor(i)) {
|
|
pr_err("Failed to set CPU affinity %s\n", strerror(errno));
|
|
free(p_temp_cpu_ci_list);
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto exit;
|
|
}
|
|
|
|
/* Detect the availability of the extended topology leaf */
|
|
eax = 0x0;
|
|
cpuid(&eax, &ebx, &ecx, &edx);
|
|
if (eax >= 11) {
|
|
eax = 0xb;
|
|
ecx = 0x0;
|
|
cpuid(&eax, &ebx, &ecx, &edx);
|
|
if (ebx)
|
|
x2apic = true;
|
|
}
|
|
|
|
if (x2apic) {
|
|
eax = 0xb;
|
|
cpuid(&eax, &ebx, &ecx, &edx);
|
|
this_cpu->apicid = edx;
|
|
cpuid_count(4, 0, &eax, &ebx, &ecx, &edx);
|
|
this_cpu->max_num_apicid = (eax >> 26) + 1;
|
|
} else {
|
|
eax = 0x1;
|
|
cpuid(&eax, &ebx, &ecx, &edx);
|
|
this_cpu->apicid = (ebx >> 24) & 0xff;
|
|
this_cpu->max_num_apicid = (ebx >> 16) & 0x0FF;
|
|
}
|
|
this_cpu->num_caches = cpuid_find_num_cache_leaves(cpuid_op_cache);
|
|
this_cpu->num_duplicated_caches = 0;
|
|
this_cpu->cache_info = calloc(
|
|
sizeof(cacheinfo_t) * this_cpu->num_caches, 1);
|
|
if (!this_cpu->cache_info) {
|
|
free(p_temp_cpu_ci_list);
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err;
|
|
}
|
|
cpuid_get_cpu_cache_info(cpuid_op_cache, this_cpu);
|
|
}
|
|
|
|
if (j < procs_online) {
|
|
pr_warn("CPU cache information missing\n");
|
|
cpu_ci_list->len = j;
|
|
}
|
|
|
|
find_cpu_cache_siblings(cpu_ci_list);
|
|
*temp_cpu_ci_list = p_temp_cpu_ci_list;
|
|
|
|
err:
|
|
/* restore affinity to original */
|
|
sched_setaffinity(0, sizeof(cpu_set_t), &orig_cpuset);
|
|
exit:
|
|
if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
pr_warn("Topology fails to create cpu cache list\n");
|
|
topology_destroy_temp_cpu_cache_list(*temp_cpu_ci_list);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
/* topology_get_cpu_cache_props - Read CPU cache information from the temporary
|
|
* cache list and put them to the node's cache properties entry.
|
|
* @tbl - the node table to fill up
|
|
* @cpu_ci_list - the cpu cache information list to look up cache info
|
|
* Return - HSAKMT_STATUS_SUCCESS in success or error number in failure
|
|
*/
|
|
static HSAKMT_STATUS topology_get_cpu_cache_props(node_props_t *tbl,
|
|
cpu_cacheinfo_t *cpu_ci_list)
|
|
{
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
uint32_t apicid_low = tbl->node.CComputeIdLo, apicid_max = 0;
|
|
uint32_t n, cache_cnt, idx;
|
|
cpu_cacheinfo_t *this_cpu;
|
|
cacheinfo_t *this_leaf;
|
|
|
|
/* CPU cache info list contains all CPUs. Find out CPUs belonging to
|
|
* this node and number of caches under, so we can allocate the cache
|
|
* properties in the node.
|
|
*/
|
|
tbl->node.NumCaches = 0;
|
|
for (n = 0; n < cpu_ci_list->len; n++) {
|
|
this_cpu = cpu_ci_list + n;
|
|
if (this_cpu->apicid == apicid_low)
|
|
/* found the first cpu in the node */
|
|
apicid_max = apicid_low + this_cpu->max_num_apicid - 1;
|
|
|
|
if ((this_cpu->apicid < apicid_low) ||
|
|
(this_cpu->apicid > apicid_max))
|
|
continue; /* this cpu doesn't belong to the node */
|
|
tbl->node.NumCaches +=
|
|
this_cpu->num_caches - this_cpu->num_duplicated_caches;
|
|
}
|
|
|
|
/* FixMe: cpuid under Valgrind doesn't return data from the processor we set
|
|
* affinity to. All the data come from one specific processor. We'll report
|
|
* this one processor's cache and ignore others.
|
|
*/
|
|
if (is_valgrind) {
|
|
this_cpu = cpu_ci_list;
|
|
tbl->node.NumCaches = this_cpu->num_caches;
|
|
apicid_low = apicid_max = this_cpu->apicid;
|
|
}
|
|
|
|
tbl->cache = calloc(
|
|
sizeof(HsaCacheProperties) * tbl->node.NumCaches, 1);
|
|
if (!tbl->cache) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto exit;
|
|
}
|
|
|
|
/* Now fill in the information to cache properties. */
|
|
cache_cnt = 0;
|
|
for (n = 0; n < cpu_ci_list->len; n++) {
|
|
this_cpu = cpu_ci_list + n;
|
|
if ((this_cpu->apicid < apicid_low) || this_cpu->apicid > apicid_max)
|
|
continue; /* this cpu doesn't belong to the node */
|
|
for (idx = 0; idx < this_cpu->num_caches; idx++) {
|
|
this_leaf = this_cpu->cache_info + idx;
|
|
if (this_leaf->hsa_cache_prop.CacheSize > 0)
|
|
memcpy(&tbl->cache[cache_cnt++], &this_leaf->hsa_cache_prop, sizeof(HsaCacheProperties));
|
|
if (cache_cnt >= tbl->node.NumCaches)
|
|
goto exit;
|
|
}
|
|
}
|
|
|
|
exit:
|
|
return ret;
|
|
}
|
|
#else /* not X86 */
|
|
static void topology_destroy_temp_cpu_cache_list(void *temp_cpu_ci_list)
|
|
{
|
|
}
|
|
|
|
static HSAKMT_STATUS topology_create_temp_cpu_cache_list(void **temp_cpu_ci_list)
|
|
{
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
static HSAKMT_STATUS topology_get_cpu_cache_props(node_props_t *tbl,
|
|
cpu_cacheinfo_t *cpu_ci_list)
|
|
{
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
#endif
|
|
|
|
static HSAKMT_STATUS topology_sysfs_get_cache_props(uint32_t node_id,
|
|
uint32_t cache_id,
|
|
HsaCacheProperties *props)
|
|
{
|
|
FILE *fd;
|
|
char *read_buf, *p;
|
|
char prop_name[256];
|
|
char path[256];
|
|
unsigned long long prop_val;
|
|
uint32_t i, prog;
|
|
int read_size;
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
uint32_t sys_node_id;
|
|
|
|
assert(props);
|
|
ret = topology_sysfs_map_node_id(node_id, &sys_node_id);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
|
|
snprintf(path, 256, "%s/%d/caches/%d/properties", KFD_SYSFS_PATH_NODES, sys_node_id, cache_id);
|
|
fd = fopen(path, "r");
|
|
if (!fd)
|
|
return HSAKMT_STATUS_ERROR;
|
|
read_buf = malloc(PAGE_SIZE);
|
|
if (!read_buf) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err1;
|
|
}
|
|
|
|
read_size = fread(read_buf, 1, PAGE_SIZE, fd);
|
|
if (read_size <= 0) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err2;
|
|
}
|
|
|
|
/* Since we're using the buffer as a string, we make sure the string terminates */
|
|
if (read_size >= PAGE_SIZE)
|
|
read_size = PAGE_SIZE - 1;
|
|
read_buf[read_size] = 0;
|
|
|
|
prog = 0;
|
|
p = read_buf;
|
|
while (sscanf(p += prog, "%s %llu\n%n", prop_name, &prop_val, &prog) == 2) {
|
|
if (strcmp(prop_name, "processor_id_low") == 0)
|
|
props->ProcessorIdLow = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "level") == 0)
|
|
props->CacheLevel = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "size") == 0)
|
|
props->CacheSize = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "cache_line_size") == 0)
|
|
props->CacheLineSize = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "cache_lines_per_tag") == 0)
|
|
props->CacheLinesPerTag = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "association") == 0)
|
|
props->CacheAssociativity = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "latency") == 0)
|
|
props->CacheLatency = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "type") == 0)
|
|
props->CacheType.Value = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "sibling_map") == 0)
|
|
break;
|
|
}
|
|
|
|
prog = 0;
|
|
if ((sscanf(p, "sibling_map %n", &prog)) == 0 && prog) {
|
|
i = 0;
|
|
while ((i < HSA_CPU_SIBLINGS) &&
|
|
(sscanf(p += prog, "%u%*[,\n]%n", &props->SiblingMap[i++], &prog) == 1))
|
|
continue;
|
|
}
|
|
|
|
err2:
|
|
free(read_buf);
|
|
err1:
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
static HSAKMT_STATUS topology_map_sysfs_to_user_node_id(uint32_t sys_node_id, uint32_t *user_node_id)
|
|
{
|
|
uint32_t node_id;
|
|
|
|
for (node_id = 0; node_id < map_user_to_sysfs_node_id_size; node_id++)
|
|
if (map_user_to_sysfs_node_id[node_id] == sys_node_id) {
|
|
*user_node_id = node_id;
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
return HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
}
|
|
|
|
|
|
/* For a give Node @node_id the function gets @iolink_id information i.e. parses sysfs the following sysfs entry
|
|
* ./nodes/@node_id/io_links/@iolink_id/properties. @node_id has to be valid accessible node.
|
|
*
|
|
* If node_to specified by the @iolink_id is not accessible the function returns HSAKMT_STATUS_NOT_SUPPORTED.
|
|
* If node_to is accessible, then node_to is mapped from sysfs_node to user_node and returns HSAKMT_STATUS_SUCCESS.
|
|
*/
|
|
static HSAKMT_STATUS topology_sysfs_get_iolink_props(uint32_t node_id,
|
|
uint32_t iolink_id,
|
|
HsaIoLinkProperties *props)
|
|
{
|
|
FILE *fd;
|
|
char *read_buf, *p;
|
|
char prop_name[256];
|
|
char path[256];
|
|
unsigned long long prop_val;
|
|
uint32_t prog;
|
|
int read_size;
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
uint32_t sys_node_id;
|
|
|
|
assert(props);
|
|
ret = topology_sysfs_map_node_id(node_id, &sys_node_id);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
|
|
snprintf(path, 256, "%s/%d/io_links/%d/properties", KFD_SYSFS_PATH_NODES, sys_node_id, iolink_id);
|
|
fd = fopen(path, "r");
|
|
if (!fd)
|
|
return HSAKMT_STATUS_ERROR;
|
|
read_buf = malloc(PAGE_SIZE);
|
|
if (!read_buf) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err1;
|
|
}
|
|
|
|
read_size = fread(read_buf, 1, PAGE_SIZE, fd);
|
|
if (read_size <= 0) {
|
|
ret = HSAKMT_STATUS_ERROR;
|
|
goto err2;
|
|
}
|
|
|
|
/* Since we're using the buffer as a string, we make sure the string terminates */
|
|
if (read_size >= PAGE_SIZE)
|
|
read_size = PAGE_SIZE - 1;
|
|
read_buf[read_size] = 0;
|
|
|
|
prog = 0;
|
|
p = read_buf;
|
|
while (sscanf(p += prog, "%s %llu\n%n", prop_name, &prop_val, &prog) == 2) {
|
|
if (strcmp(prop_name, "type") == 0)
|
|
props->IoLinkType = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "version_major") == 0)
|
|
props->VersionMajor = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "version_minor") == 0)
|
|
props->VersionMinor = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "node_from") == 0) {
|
|
if (sys_node_id != (uint32_t)prop_val) {
|
|
ret = HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
goto err2;
|
|
}
|
|
props->NodeFrom = node_id;
|
|
} else if (strcmp(prop_name, "node_to") == 0) {
|
|
bool is_node_supported;
|
|
uint32_t sysfs_node_id;
|
|
|
|
sysfs_node_id = (uint32_t)prop_val;
|
|
ret = topology_sysfs_check_node_supported(sysfs_node_id, &is_node_supported);
|
|
if (!is_node_supported) {
|
|
ret = HSAKMT_STATUS_NOT_SUPPORTED;
|
|
memset(props, 0, sizeof(*props));
|
|
goto err2;
|
|
}
|
|
ret = topology_map_sysfs_to_user_node_id(sysfs_node_id, &props->NodeTo);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
goto err2;
|
|
} else if (strcmp(prop_name, "weight") == 0)
|
|
props->Weight = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "min_latency") == 0)
|
|
props->MinimumLatency = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "max_latency") == 0)
|
|
props->MaximumLatency = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "min_bandwidth") == 0)
|
|
props->MinimumBandwidth = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "max_bandwidth") == 0)
|
|
props->MaximumBandwidth = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "recommended_transfer_size") == 0)
|
|
props->RecTransferSize = (uint32_t)prop_val;
|
|
else if (strcmp(prop_name, "flags") == 0)
|
|
props->Flags.LinkProperty = (uint32_t)prop_val;
|
|
}
|
|
|
|
|
|
err2:
|
|
free(read_buf);
|
|
err1:
|
|
fclose(fd);
|
|
return ret;
|
|
}
|
|
|
|
/* topology_get_free_io_link_slot_for_node - For the given node_id, find the
|
|
* next available free slot to add an io_link
|
|
*/
|
|
static HsaIoLinkProperties *topology_get_free_io_link_slot_for_node(uint32_t node_id,
|
|
const HsaSystemProperties *sys_props,
|
|
node_props_t *node_props)
|
|
{
|
|
HsaIoLinkProperties *props;
|
|
|
|
if (node_id >= sys_props->NumNodes) {
|
|
pr_err("Invalid node [%d]\n", node_id);
|
|
return NULL;
|
|
}
|
|
|
|
props = node_props[node_id].link;
|
|
if (!props) {
|
|
pr_err("No io_link reported for Node [%d]\n", node_id);
|
|
return NULL;
|
|
}
|
|
|
|
if (node_props[node_id].node.NumIOLinks >= sys_props->NumNodes - 1) {
|
|
pr_err("No more space for io_link for Node [%d]\n", node_id);
|
|
return NULL;
|
|
}
|
|
|
|
return &props[node_props[node_id].node.NumIOLinks];
|
|
}
|
|
|
|
/* topology_add_io_link_for_node - If a free slot is available,
|
|
* add io_link for the given Node.
|
|
* TODO: Add other members of HsaIoLinkProperties
|
|
*/
|
|
static HSAKMT_STATUS topology_add_io_link_for_node(uint32_t node_from,
|
|
const HsaSystemProperties *sys_props,
|
|
node_props_t *node_props,
|
|
HSA_IOLINKTYPE IoLinkType,
|
|
uint32_t node_to,
|
|
uint32_t Weight)
|
|
{
|
|
HsaIoLinkProperties *props;
|
|
|
|
props = topology_get_free_io_link_slot_for_node(node_from,
|
|
sys_props, node_props);
|
|
if (!props)
|
|
return HSAKMT_STATUS_NO_MEMORY;
|
|
|
|
props->IoLinkType = IoLinkType;
|
|
props->NodeFrom = node_from;
|
|
props->NodeTo = node_to;
|
|
props->Weight = Weight;
|
|
node_props[node_from].node.NumIOLinks++;
|
|
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
/* Find the CPU that this GPU (gpu_node) directly connects to */
|
|
static int32_t gpu_get_direct_link_cpu(uint32_t gpu_node, node_props_t *node_props)
|
|
{
|
|
HsaIoLinkProperties *props = node_props[gpu_node].link;
|
|
uint32_t i;
|
|
|
|
if (!node_props[gpu_node].gpu_id || !props ||
|
|
node_props[gpu_node].node.NumIOLinks == 0)
|
|
return -1;
|
|
|
|
for (i = 0; i < node_props[gpu_node].node.NumIOLinks; i++)
|
|
if (props[i].IoLinkType == HSA_IOLINKTYPE_PCIEXPRESS &&
|
|
props[i].Weight <= 20) /* >20 is GPU->CPU->GPU */
|
|
return props[i].NodeTo;
|
|
|
|
return -1;
|
|
}
|
|
|
|
/* Get node1->node2 IO link information. This should be a direct link that has
|
|
* been created in the kernel.
|
|
*/
|
|
static HSAKMT_STATUS get_direct_iolink_info(uint32_t node1, uint32_t node2,
|
|
node_props_t *node_props, HSAuint32 *weight,
|
|
HSA_IOLINKTYPE *type)
|
|
{
|
|
HsaIoLinkProperties *props = node_props[node1].link;
|
|
uint32_t i;
|
|
|
|
if (!props)
|
|
return HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
|
|
for (i = 0; i < node_props[node1].node.NumIOLinks; i++)
|
|
if (props[i].NodeTo == node2) {
|
|
if (weight)
|
|
*weight = props[i].Weight;
|
|
if (type)
|
|
*type = props[i].IoLinkType;
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
static HSAKMT_STATUS get_indirect_iolink_info(uint32_t node1, uint32_t node2,
|
|
node_props_t *node_props, HSAuint32 *weight,
|
|
HSA_IOLINKTYPE *type)
|
|
{
|
|
int32_t dir_cpu1 = -1, dir_cpu2 = -1;
|
|
HSAuint32 weight1 = 0, weight2 = 0, weight3 = 0;
|
|
HSAKMT_STATUS ret;
|
|
uint32_t i;
|
|
|
|
*weight = 0;
|
|
*type = HSA_IOLINKTYPE_UNDEFINED;
|
|
|
|
if (node1 == node2)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
/* CPU->CPU is not an indirect link */
|
|
if (!node_props[node1].gpu_id && !node_props[node2].gpu_id)
|
|
return HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
|
|
if (node_props[node1].node.HiveID &&
|
|
node_props[node2].node.HiveID &&
|
|
node_props[node1].node.HiveID == node_props[node2].node.HiveID)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
if (node_props[node1].gpu_id)
|
|
dir_cpu1 = gpu_get_direct_link_cpu(node1, node_props);
|
|
if (node_props[node2].gpu_id)
|
|
dir_cpu2 = gpu_get_direct_link_cpu(node2, node_props);
|
|
|
|
if (dir_cpu1 < 0 && dir_cpu2 < 0)
|
|
return HSAKMT_STATUS_ERROR;
|
|
|
|
/* if the node2(dst) is GPU , it need to be large bar for host access*/
|
|
if (node_props[node2].gpu_id) {
|
|
for (i = 0; i < node_props[node2].node.NumMemoryBanks; ++i)
|
|
if (node_props[node2].mem[i].HeapType ==
|
|
HSA_HEAPTYPE_FRAME_BUFFER_PUBLIC)
|
|
break;
|
|
if (i >= node_props[node2].node.NumMemoryBanks)
|
|
return HSAKMT_STATUS_ERROR;
|
|
}
|
|
/* Possible topology:
|
|
* GPU --(weight1) -- CPU -- (weight2) -- GPU
|
|
* GPU --(weight1) -- CPU -- (weight2) -- CPU -- (weight3) -- GPU
|
|
* GPU --(weight1) -- CPU -- (weight2) -- CPU
|
|
* CPU -- (weight2) -- CPU -- (weight3) -- GPU
|
|
*/
|
|
if (dir_cpu1 >= 0) { /* GPU->CPU ... */
|
|
if (dir_cpu2 >= 0) {
|
|
if (dir_cpu1 == dir_cpu2) /* GPU->CPU->GPU*/ {
|
|
ret = get_direct_iolink_info(node1, dir_cpu1,
|
|
node_props, &weight1, NULL);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
ret = get_direct_iolink_info(dir_cpu1, node2,
|
|
node_props, &weight2, type);
|
|
} else /* GPU->CPU->CPU->GPU*/ {
|
|
ret = get_direct_iolink_info(node1, dir_cpu1,
|
|
node_props, &weight1, NULL);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
ret = get_direct_iolink_info(dir_cpu1, dir_cpu2,
|
|
node_props, &weight2, type);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
/* On QPI interconnection, GPUs can't access
|
|
* each other if they are attached to different
|
|
* CPU sockets. CPU<->CPU weight larger than 20
|
|
* means the two CPUs are in different sockets.
|
|
*/
|
|
if (*type == HSA_IOLINK_TYPE_QPI_1_1
|
|
&& weight2 > 20)
|
|
return HSAKMT_STATUS_NOT_SUPPORTED;
|
|
ret = get_direct_iolink_info(dir_cpu2, node2,
|
|
node_props, &weight3, NULL);
|
|
}
|
|
} else /* GPU->CPU->CPU */ {
|
|
ret = get_direct_iolink_info(node1, dir_cpu1, node_props,
|
|
&weight1, NULL);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
ret = get_direct_iolink_info(dir_cpu1, node2, node_props,
|
|
&weight2, type);
|
|
}
|
|
} else { /* CPU->CPU->GPU */
|
|
ret = get_direct_iolink_info(node1, dir_cpu2, node_props, &weight2,
|
|
type);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
ret = get_direct_iolink_info(dir_cpu2, node2, node_props, &weight3,
|
|
NULL);
|
|
}
|
|
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
return ret;
|
|
|
|
*weight = weight1 + weight2 + weight3;
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
static void topology_create_indirect_gpu_links(const HsaSystemProperties *sys_props,
|
|
node_props_t *node_props)
|
|
{
|
|
|
|
uint32_t i, j;
|
|
HSAuint32 weight;
|
|
HSA_IOLINKTYPE type;
|
|
|
|
for (i = 0; i < sys_props->NumNodes - 1; i++) {
|
|
for (j = i + 1; j < sys_props->NumNodes; j++) {
|
|
get_indirect_iolink_info(i, j, node_props, &weight, &type);
|
|
if (!weight)
|
|
goto try_alt_dir;
|
|
if (topology_add_io_link_for_node(i, sys_props, node_props,
|
|
type, j, weight) != HSAKMT_STATUS_SUCCESS)
|
|
pr_err("Fail to add IO link %d->%d\n", i, j);
|
|
try_alt_dir:
|
|
get_indirect_iolink_info(j, i, node_props, &weight, &type);
|
|
if (!weight)
|
|
continue;
|
|
if (topology_add_io_link_for_node(j, sys_props, node_props,
|
|
type, i, weight) != HSAKMT_STATUS_SUCCESS)
|
|
pr_err("Fail to add IO link %d->%d\n", j, i);
|
|
}
|
|
}
|
|
}
|
|
|
|
HSAKMT_STATUS topology_take_snapshot(void)
|
|
{
|
|
uint32_t gen_start, gen_end, i, mem_id, cache_id;
|
|
HsaSystemProperties sys_props;
|
|
node_props_t *temp_props = 0;
|
|
void *cpu_ci_list = NULL;
|
|
HSAKMT_STATUS ret = HSAKMT_STATUS_SUCCESS;
|
|
struct pci_access *pacc;
|
|
char *envvar;
|
|
struct proc_cpuinfo *cpuinfo;
|
|
const uint32_t num_procs = get_nprocs();
|
|
|
|
cpuinfo = calloc(num_procs, sizeof(struct proc_cpuinfo));
|
|
if (!cpuinfo) {
|
|
pr_err("Fail to allocate memory for CPU info\n");
|
|
return HSAKMT_STATUS_NO_MEMORY;
|
|
}
|
|
topology_parse_cpuinfo(cpuinfo, num_procs);
|
|
|
|
envvar = getenv("HSA_RUNNING_UNDER_VALGRIND");
|
|
if (envvar && !strcmp(envvar, "1"))
|
|
is_valgrind = 1;
|
|
else
|
|
is_valgrind = 0;
|
|
|
|
retry:
|
|
ret = topology_sysfs_get_generation(&gen_start);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
goto err;
|
|
ret = topology_sysfs_get_system_props(&sys_props);
|
|
if (ret != HSAKMT_STATUS_SUCCESS)
|
|
goto err;
|
|
if (sys_props.NumNodes > 0) {
|
|
topology_create_temp_cpu_cache_list(&cpu_ci_list);
|
|
temp_props = calloc(sys_props.NumNodes * sizeof(node_props_t), 1);
|
|
if (!temp_props) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err;
|
|
}
|
|
pacc = pci_alloc();
|
|
pci_init(pacc);
|
|
for (i = 0; i < sys_props.NumNodes; i++) {
|
|
ret = topology_sysfs_get_node_props(i,
|
|
&temp_props[i].node,
|
|
&temp_props[i].gpu_id, pacc);
|
|
if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
free_properties(temp_props, i);
|
|
goto err;
|
|
}
|
|
|
|
if (temp_props[i].node.NumCPUCores)
|
|
topology_get_cpu_model_name(&temp_props[i].node,
|
|
cpuinfo, num_procs);
|
|
|
|
if (temp_props[i].node.NumMemoryBanks) {
|
|
temp_props[i].mem = calloc(temp_props[i].node.NumMemoryBanks * sizeof(HsaMemoryProperties), 1);
|
|
if (!temp_props[i].mem) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
free_properties(temp_props, i + 1);
|
|
goto err;
|
|
}
|
|
for (mem_id = 0; mem_id < temp_props[i].node.NumMemoryBanks; mem_id++) {
|
|
ret = topology_sysfs_get_mem_props(i, mem_id, &temp_props[i].mem[mem_id]);
|
|
if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
free_properties(temp_props, i + 1);
|
|
goto err;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (temp_props[i].node.NumCaches) {
|
|
temp_props[i].cache = calloc(temp_props[i].node.NumCaches * sizeof(HsaCacheProperties), 1);
|
|
if (!temp_props[i].cache) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
free_properties(temp_props, i + 1);
|
|
goto err;
|
|
}
|
|
for (cache_id = 0; cache_id < temp_props[i].node.NumCaches; cache_id++) {
|
|
ret = topology_sysfs_get_cache_props(i, cache_id, &temp_props[i].cache[cache_id]);
|
|
if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
free_properties(temp_props, i + 1);
|
|
goto err;
|
|
}
|
|
}
|
|
} else if (!temp_props[i].gpu_id) { /* a CPU node */
|
|
ret = topology_get_cpu_cache_props(
|
|
&temp_props[i], cpu_ci_list);
|
|
if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
free_properties(temp_props, i + 1);
|
|
goto err;
|
|
}
|
|
}
|
|
|
|
/* To simplify, allocate maximum needed memory for io_links for each node. This
|
|
* removes the need for realloc when indirect and QPI links are added later
|
|
*/
|
|
temp_props[i].link = calloc(sys_props.NumNodes - 1, sizeof(HsaIoLinkProperties));
|
|
if (!temp_props[i].link) {
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
free_properties(temp_props, i + 1);
|
|
goto err;
|
|
}
|
|
|
|
if (temp_props[i].node.NumIOLinks) {
|
|
uint32_t sys_link_id = 0, link_id = 0;
|
|
|
|
/* Parse all the sysfs specified io links. Skip the ones where the
|
|
* remote node (node_to) is not accessible
|
|
*/
|
|
while (sys_link_id < temp_props[i].node.NumIOLinks &&
|
|
link_id < sys_props.NumNodes - 1) {
|
|
ret = topology_sysfs_get_iolink_props(i, sys_link_id++,
|
|
&temp_props[i].link[link_id]);
|
|
if (ret == HSAKMT_STATUS_NOT_SUPPORTED) {
|
|
ret = HSAKMT_STATUS_SUCCESS;
|
|
continue;
|
|
} else if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
free_properties(temp_props, i + 1);
|
|
goto err;
|
|
}
|
|
link_id++;
|
|
}
|
|
/* sysfs specifies all the io links. Limit the number to valid ones */
|
|
temp_props[i].node.NumIOLinks = link_id;
|
|
}
|
|
}
|
|
pci_cleanup(pacc);
|
|
}
|
|
|
|
/* All direct IO links are created in the kernel. Here we need to
|
|
* connect GPU<->GPU or GPU<->CPU indirect IO links.
|
|
*/
|
|
topology_create_indirect_gpu_links(&sys_props, temp_props);
|
|
|
|
ret = topology_sysfs_get_generation(&gen_end);
|
|
if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
free_properties(temp_props, sys_props.NumNodes);
|
|
goto err;
|
|
}
|
|
|
|
if (gen_start != gen_end) {
|
|
free_properties(temp_props, sys_props.NumNodes);
|
|
temp_props = 0;
|
|
goto retry;
|
|
}
|
|
|
|
if (!g_system) {
|
|
g_system = malloc(sizeof(HsaSystemProperties));
|
|
if (!g_system) {
|
|
free_properties(temp_props, sys_props.NumNodes);
|
|
ret = HSAKMT_STATUS_NO_MEMORY;
|
|
goto err;
|
|
}
|
|
}
|
|
|
|
*g_system = sys_props;
|
|
if (g_props)
|
|
free(g_props);
|
|
g_props = temp_props;
|
|
err:
|
|
free(cpuinfo);
|
|
topology_destroy_temp_cpu_cache_list(cpu_ci_list);
|
|
return ret;
|
|
}
|
|
|
|
/* Drop the Snashot of the HSA topology information. Assume lock is held. */
|
|
HSAKMT_STATUS topology_drop_snapshot(void)
|
|
{
|
|
HSAKMT_STATUS err;
|
|
|
|
if (!!g_system != !!g_props) {
|
|
pr_warn("Probably inconsistency?\n");
|
|
err = HSAKMT_STATUS_SUCCESS;
|
|
goto out;
|
|
}
|
|
|
|
if (g_props) {
|
|
/* Remove state */
|
|
free_properties(g_props, g_system->NumNodes);
|
|
g_props = NULL;
|
|
}
|
|
|
|
free(g_system);
|
|
g_system = NULL;
|
|
|
|
if (map_user_to_sysfs_node_id) {
|
|
free(map_user_to_sysfs_node_id);
|
|
map_user_to_sysfs_node_id = NULL;
|
|
map_user_to_sysfs_node_id_size = 0;
|
|
}
|
|
|
|
err = HSAKMT_STATUS_SUCCESS;
|
|
|
|
out:
|
|
return err;
|
|
}
|
|
|
|
HSAKMT_STATUS validate_nodeid(uint32_t nodeid, uint32_t *gpu_id)
|
|
{
|
|
if (!g_props || !g_system || g_system->NumNodes <= nodeid)
|
|
return HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
if (gpu_id)
|
|
*gpu_id = g_props[nodeid].gpu_id;
|
|
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
|
|
HSAKMT_STATUS gpuid_to_nodeid(uint32_t gpu_id, uint32_t *node_id)
|
|
{
|
|
uint64_t node_idx;
|
|
|
|
for (node_idx = 0; node_idx < g_system->NumNodes; node_idx++) {
|
|
if (g_props[node_idx].gpu_id == gpu_id) {
|
|
*node_id = node_idx;
|
|
return HSAKMT_STATUS_SUCCESS;
|
|
}
|
|
}
|
|
|
|
return HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
|
|
}
|
|
|
|
HSAKMT_STATUS HSAKMTAPI hsaKmtAcquireSystemProperties(HsaSystemProperties *SystemProperties)
|
|
{
|
|
HSAKMT_STATUS err;
|
|
|
|
CHECK_KFD_OPEN();
|
|
|
|
if (!SystemProperties)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
pthread_mutex_lock(&hsakmt_mutex);
|
|
|
|
err = topology_take_snapshot();
|
|
if (err != HSAKMT_STATUS_SUCCESS)
|
|
goto out;
|
|
|
|
assert(g_system);
|
|
|
|
*SystemProperties = *g_system;
|
|
err = HSAKMT_STATUS_SUCCESS;
|
|
|
|
out:
|
|
pthread_mutex_unlock(&hsakmt_mutex);
|
|
return err;
|
|
}
|
|
|
|
HSAKMT_STATUS HSAKMTAPI hsaKmtReleaseSystemProperties(void)
|
|
{
|
|
CHECK_KFD_OPEN();
|
|
|
|
HSAKMT_STATUS err;
|
|
|
|
pthread_mutex_lock(&hsakmt_mutex);
|
|
|
|
err = topology_drop_snapshot();
|
|
|
|
pthread_mutex_unlock(&hsakmt_mutex);
|
|
|
|
return err;
|
|
}
|
|
|
|
HSAKMT_STATUS HSAKMTAPI hsaKmtGetNodeProperties(HSAuint32 NodeId,
|
|
HsaNodeProperties *NodeProperties)
|
|
{
|
|
HSAKMT_STATUS err;
|
|
uint32_t gpu_id;
|
|
|
|
if (!NodeProperties)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
CHECK_KFD_OPEN();
|
|
pthread_mutex_lock(&hsakmt_mutex);
|
|
|
|
/* KFD ADD page 18, snapshot protocol violation */
|
|
if (!g_system) {
|
|
err = HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
assert(g_system);
|
|
goto out;
|
|
}
|
|
|
|
if (NodeId >= g_system->NumNodes) {
|
|
err = HSAKMT_STATUS_INVALID_PARAMETER;
|
|
goto out;
|
|
}
|
|
|
|
err = validate_nodeid(NodeId, &gpu_id);
|
|
if (err != HSAKMT_STATUS_SUCCESS)
|
|
return err;
|
|
|
|
*NodeProperties = g_props[NodeId].node;
|
|
/* For CPU only node don't add any additional GPU memory banks. */
|
|
if (gpu_id) {
|
|
uint64_t base, limit;
|
|
if (topology_is_dgpu(get_device_id_by_gpu_id(gpu_id)))
|
|
NodeProperties->NumMemoryBanks += NUM_OF_DGPU_HEAPS;
|
|
else
|
|
NodeProperties->NumMemoryBanks += NUM_OF_IGPU_HEAPS;
|
|
if (fmm_get_aperture_base_and_limit(FMM_MMIO, gpu_id, &base,
|
|
&limit) == HSAKMT_STATUS_SUCCESS)
|
|
NodeProperties->NumMemoryBanks += 1;
|
|
}
|
|
err = HSAKMT_STATUS_SUCCESS;
|
|
|
|
out:
|
|
pthread_mutex_unlock(&hsakmt_mutex);
|
|
return err;
|
|
}
|
|
|
|
HSAKMT_STATUS HSAKMTAPI hsaKmtGetNodeMemoryProperties(HSAuint32 NodeId,
|
|
HSAuint32 NumBanks,
|
|
HsaMemoryProperties *MemoryProperties)
|
|
{
|
|
HSAKMT_STATUS err = HSAKMT_STATUS_SUCCESS;
|
|
uint32_t i, gpu_id;
|
|
HSAuint64 aperture_limit;
|
|
|
|
if (!MemoryProperties)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
CHECK_KFD_OPEN();
|
|
pthread_mutex_lock(&hsakmt_mutex);
|
|
|
|
/* KFD ADD page 18, snapshot protocol violation */
|
|
if (!g_system) {
|
|
err = HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
assert(g_system);
|
|
goto out;
|
|
}
|
|
|
|
/* Check still necessary */
|
|
if (NodeId >= g_system->NumNodes) {
|
|
err = HSAKMT_STATUS_INVALID_PARAMETER;
|
|
goto out;
|
|
}
|
|
|
|
err = validate_nodeid(NodeId, &gpu_id);
|
|
if (err != HSAKMT_STATUS_SUCCESS)
|
|
goto out;
|
|
|
|
memset(MemoryProperties, 0, NumBanks * sizeof(HsaMemoryProperties));
|
|
|
|
for (i = 0; i < MIN(g_props[NodeId].node.NumMemoryBanks, NumBanks); i++) {
|
|
assert(g_props[NodeId].mem);
|
|
MemoryProperties[i] = g_props[NodeId].mem[i];
|
|
}
|
|
|
|
/* The following memory banks does not apply to CPU only node */
|
|
if (gpu_id == 0)
|
|
goto out;
|
|
|
|
/*Add LDS*/
|
|
if (i < NumBanks &&
|
|
fmm_get_aperture_base_and_limit(FMM_LDS, gpu_id,
|
|
&MemoryProperties[i].VirtualBaseAddress, &aperture_limit) == HSAKMT_STATUS_SUCCESS) {
|
|
MemoryProperties[i].HeapType = HSA_HEAPTYPE_GPU_LDS;
|
|
MemoryProperties[i].SizeInBytes = g_props[NodeId].node.LDSSizeInKB * 1024;
|
|
i++;
|
|
}
|
|
|
|
/* Add Local memory - HSA_HEAPTYPE_FRAME_BUFFER_PRIVATE.
|
|
* For dGPU the topology node contains Local Memory and it is added by
|
|
* the for loop above
|
|
*/
|
|
if (is_kaveri(NodeId) && i < NumBanks && g_props[NodeId].node.LocalMemSize > 0 &&
|
|
fmm_get_aperture_base_and_limit(FMM_GPUVM, gpu_id,
|
|
&MemoryProperties[i].VirtualBaseAddress, &aperture_limit) == HSAKMT_STATUS_SUCCESS) {
|
|
MemoryProperties[i].HeapType = HSA_HEAPTYPE_FRAME_BUFFER_PRIVATE;
|
|
MemoryProperties[i].SizeInBytes = g_props[NodeId].node.LocalMemSize;
|
|
i++;
|
|
}
|
|
|
|
/* Add SCRATCH */
|
|
if (i < NumBanks &&
|
|
fmm_get_aperture_base_and_limit(FMM_SCRATCH, gpu_id,
|
|
&MemoryProperties[i].VirtualBaseAddress, &aperture_limit) == HSAKMT_STATUS_SUCCESS) {
|
|
MemoryProperties[i].HeapType = HSA_HEAPTYPE_GPU_SCRATCH;
|
|
MemoryProperties[i].SizeInBytes = (aperture_limit - MemoryProperties[i].VirtualBaseAddress) + 1;
|
|
i++;
|
|
}
|
|
|
|
/* Add SVM aperture */
|
|
if (topology_is_svm_needed(get_device_id_by_gpu_id(gpu_id)) && i < NumBanks &&
|
|
fmm_get_aperture_base_and_limit(
|
|
FMM_SVM, gpu_id, &MemoryProperties[i].VirtualBaseAddress,
|
|
&aperture_limit) == HSAKMT_STATUS_SUCCESS) {
|
|
MemoryProperties[i].HeapType = HSA_HEAPTYPE_DEVICE_SVM;
|
|
MemoryProperties[i].SizeInBytes = (aperture_limit - MemoryProperties[i].VirtualBaseAddress) + 1;
|
|
i++;
|
|
}
|
|
|
|
/* Add mmio aperture */
|
|
if (i < NumBanks &&
|
|
fmm_get_aperture_base_and_limit(FMM_MMIO, gpu_id,
|
|
&MemoryProperties[i].VirtualBaseAddress, &aperture_limit) == HSAKMT_STATUS_SUCCESS) {
|
|
MemoryProperties[i].HeapType = HSA_HEAPTYPE_MMIO_REMAP;
|
|
MemoryProperties[i].SizeInBytes = (aperture_limit - MemoryProperties[i].VirtualBaseAddress) + 1;
|
|
i++;
|
|
}
|
|
|
|
out:
|
|
pthread_mutex_unlock(&hsakmt_mutex);
|
|
return err;
|
|
}
|
|
|
|
HSAKMT_STATUS HSAKMTAPI hsaKmtGetNodeCacheProperties(HSAuint32 NodeId,
|
|
HSAuint32 ProcessorId,
|
|
HSAuint32 NumCaches,
|
|
HsaCacheProperties *CacheProperties)
|
|
{
|
|
HSAKMT_STATUS err;
|
|
uint32_t i;
|
|
|
|
if (!CacheProperties)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
CHECK_KFD_OPEN();
|
|
pthread_mutex_lock(&hsakmt_mutex);
|
|
|
|
/* KFD ADD page 18, snapshot protocol violation */
|
|
if (!g_system) {
|
|
err = HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
assert(g_system);
|
|
goto out;
|
|
}
|
|
|
|
if (NodeId >= g_system->NumNodes || NumCaches > g_props[NodeId].node.NumCaches) {
|
|
err = HSAKMT_STATUS_INVALID_PARAMETER;
|
|
goto out;
|
|
}
|
|
|
|
for (i = 0; i < MIN(g_props[NodeId].node.NumCaches, NumCaches); i++) {
|
|
assert(g_props[NodeId].cache);
|
|
CacheProperties[i] = g_props[NodeId].cache[i];
|
|
}
|
|
|
|
err = HSAKMT_STATUS_SUCCESS;
|
|
|
|
out:
|
|
pthread_mutex_unlock(&hsakmt_mutex);
|
|
return err;
|
|
}
|
|
|
|
HSAKMT_STATUS HSAKMTAPI hsaKmtGetNodeIoLinkProperties(HSAuint32 NodeId,
|
|
HSAuint32 NumIoLinks,
|
|
HsaIoLinkProperties *IoLinkProperties)
|
|
{
|
|
HSAKMT_STATUS err;
|
|
uint32_t i;
|
|
|
|
if (!IoLinkProperties)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
CHECK_KFD_OPEN();
|
|
|
|
pthread_mutex_lock(&hsakmt_mutex);
|
|
|
|
/* KFD ADD page 18, snapshot protocol violation */
|
|
if (!g_system) {
|
|
err = HSAKMT_STATUS_INVALID_NODE_UNIT;
|
|
assert(g_system);
|
|
goto out;
|
|
}
|
|
|
|
if (NodeId >= g_system->NumNodes || NumIoLinks > g_props[NodeId].node.NumIOLinks) {
|
|
err = HSAKMT_STATUS_INVALID_PARAMETER;
|
|
goto out;
|
|
}
|
|
|
|
for (i = 0; i < MIN(g_props[NodeId].node.NumIOLinks, NumIoLinks); i++) {
|
|
assert(g_props[NodeId].link);
|
|
IoLinkProperties[i] = g_props[NodeId].link[i];
|
|
}
|
|
|
|
err = HSAKMT_STATUS_SUCCESS;
|
|
|
|
out:
|
|
pthread_mutex_unlock(&hsakmt_mutex);
|
|
return err;
|
|
}
|
|
|
|
uint16_t get_device_id_by_node_id(HSAuint32 node_id)
|
|
{
|
|
if (!g_props || !g_system || g_system->NumNodes <= node_id)
|
|
return 0;
|
|
|
|
return g_props[node_id].node.DeviceId;
|
|
}
|
|
|
|
bool prefer_ats(HSAuint32 node_id)
|
|
{
|
|
return g_props[node_id].node.Capability.ui32.HSAMMUPresent
|
|
&& g_props[node_id].node.NumCPUCores
|
|
&& g_props[node_id].node.NumFComputeCores;
|
|
}
|
|
|
|
bool is_kaveri(HSAuint32 node_id)
|
|
{
|
|
return g_props[node_id].node.EngineId.ui32.Major == 7
|
|
&& g_props[node_id].node.EngineId.ui32.Minor == 0;
|
|
}
|
|
|
|
uint16_t get_device_id_by_gpu_id(HSAuint32 gpu_id)
|
|
{
|
|
unsigned int i;
|
|
|
|
if (!g_props || !g_system)
|
|
return 0;
|
|
|
|
for (i = 0; i < g_system->NumNodes; i++) {
|
|
if (g_props[i].gpu_id == gpu_id)
|
|
return g_props[i].node.DeviceId;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
HSAKMT_STATUS validate_nodeid_array(uint32_t **gpu_id_array,
|
|
uint32_t NumberOfNodes, uint32_t *NodeArray)
|
|
{
|
|
HSAKMT_STATUS ret;
|
|
unsigned int i;
|
|
|
|
if (NumberOfNodes == 0 || !NodeArray || !gpu_id_array)
|
|
return HSAKMT_STATUS_INVALID_PARAMETER;
|
|
|
|
/* Translate Node IDs to gpu_ids */
|
|
*gpu_id_array = malloc(NumberOfNodes * sizeof(uint32_t));
|
|
if (!(*gpu_id_array))
|
|
return HSAKMT_STATUS_NO_MEMORY;
|
|
for (i = 0; i < NumberOfNodes; i++) {
|
|
ret = validate_nodeid(NodeArray[i], *gpu_id_array + i);
|
|
if (ret != HSAKMT_STATUS_SUCCESS) {
|
|
free(*gpu_id_array);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
inline uint32_t get_num_sysfs_nodes(void)
|
|
{
|
|
return num_sysfs_nodes;
|
|
}
|