Files
rocm-systems/projects/rocr-runtime/src/openclose.c
T

200 lines
4.9 KiB
C
Raw Normal View History

/*
* 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.
*/
#include "libhsakmt.h"
2017-06-26 15:23:32 -04:00
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <unistd.h>
2016-01-14 17:07:28 -05:00
#include <stdio.h>
2017-04-28 16:55:52 -04:00
#include <strings.h>
2014-07-29 11:21:10 +03:00
#include "fmm.h"
static const char kfd_device_name[] = "/dev/kfd";
2017-01-10 14:34:47 -05:00
static pid_t parent_pid = -1;
2017-06-26 15:23:32 -04:00
int hsakmt_debug_level;
/* zfb is mainly used during emulation */
int zfb_support;
static bool is_forked_child(void)
{
2017-01-10 14:34:47 -05:00
pid_t cur_pid = getpid();
2017-01-10 14:34:47 -05:00
if (parent_pid == -1) {
parent_pid = cur_pid;
return false;
}
2017-01-10 14:34:47 -05:00
if (parent_pid != cur_pid)
return true;
return false;
}
2017-01-10 14:34:47 -05:00
/* Call this from the child process after fork. This will clear all
* data that is duplicated from the parent process, that is not valid
* in the child.
* The topology information is duplicated from the parent is valid
* in the child process so it is not cleared
*/
static void clear_after_fork(void)
{
clear_process_doorbells();
clear_events_page();
fmm_clear_all_mem();
destroy_device_debugging_memory();
if (kfd_fd) {
close(kfd_fd);
kfd_fd = 0;
}
2017-01-10 14:34:47 -05:00
kfd_open_count = 0;
}
2017-04-28 16:55:52 -04:00
static inline void init_page_size(void)
{
PAGE_SIZE = sysconf(_SC_PAGESIZE);
PAGE_SHIFT = ffs(PAGE_SIZE) - 1;
}
static void init_vars_from_env(void)
2017-06-26 15:23:32 -04:00
{
char *envvar;
int debug_level;
/* Normally libraries don't print messages. For debugging purpose, we'll
* print messages if an environment variable, HSAKMT_DEBUG_LEVEL, is set.
*/
2017-06-26 15:23:32 -04:00
hsakmt_debug_level = HSAKMT_DEBUG_LEVEL_DEFAULT;
envvar = getenv("HSAKMT_DEBUG_LEVEL");
if (envvar) {
debug_level = atoi(envvar);
if (debug_level >= HSAKMT_DEBUG_LEVEL_ERR &&
debug_level <= HSAKMT_DEBUG_LEVEL_DEBUG)
hsakmt_debug_level = debug_level;
}
/* Check whether to support Zero frame buffer */
envvar = getenv("HSA_ZFB");
if (envvar)
zfb_support = atoi(envvar);
2017-06-26 15:23:32 -04:00
}
2017-04-20 08:25:00 -04:00
HSAKMT_STATUS HSAKMTAPI hsaKmtOpenKFD(void)
{
HSAKMT_STATUS result;
2016-01-13 17:27:31 -05:00
int fd;
2016-01-14 17:07:28 -05:00
HsaSystemProperties sys_props;
pthread_mutex_lock(&hsakmt_mutex);
/* If the process has forked, the child process must re-initialize
* it's connection to KFD. Any references tracked by kfd_open_count
* belong to the parent
*/
if (is_forked_child())
2017-01-10 14:34:47 -05:00
clear_after_fork();
2017-04-20 08:25:00 -04:00
if (kfd_open_count == 0) {
init_vars_from_env();
2017-04-20 08:25:00 -04:00
2016-01-13 17:27:31 -05:00
fd = open(kfd_device_name, O_RDWR | O_CLOEXEC);
2016-01-13 17:27:31 -05:00
if (fd != -1) {
kfd_fd = fd;
kfd_open_count = 1;
2016-01-13 17:27:31 -05:00
} else {
result = HSAKMT_STATUS_KERNEL_IO_CHANNEL_NOT_OPENED;
2016-01-13 17:27:31 -05:00
goto open_failed;
}
2014-12-08 17:05:56 +02:00
2017-04-28 16:55:52 -04:00
init_page_size();
2016-01-14 17:07:28 -05:00
result = topology_sysfs_get_system_props(&sys_props);
if (result != HSAKMT_STATUS_SUCCESS)
goto topology_sysfs_failed;
result = fmm_init_process_apertures(sys_props.NumNodes);
2016-01-13 17:27:31 -05:00
if (result != HSAKMT_STATUS_SUCCESS)
goto init_process_aperture_failed;
2016-01-14 17:07:28 -05:00
result = init_process_doorbells(sys_props.NumNodes);
2016-01-13 17:27:31 -05:00
if (result != HSAKMT_STATUS_SUCCESS)
goto init_doorbell_failed;
2016-01-14 17:07:28 -05:00
if (init_device_debugging_memory(sys_props.NumNodes) != HSAKMT_STATUS_SUCCESS)
2017-06-27 16:42:18 -04:00
pr_warn("Insufficient Memory. Debugging unavailable\n");
2016-01-14 17:07:28 -05:00
2017-07-04 11:51:17 -04:00
init_counter_props(sys_props.NumNodes);
2017-04-20 08:25:00 -04:00
} else {
kfd_open_count++;
result = HSAKMT_STATUS_KERNEL_ALREADY_OPENED;
}
2016-01-13 17:27:31 -05:00
pthread_mutex_unlock(&hsakmt_mutex);
return result;
init_doorbell_failed:
fmm_destroy_process_apertures();
init_process_aperture_failed:
2016-01-14 17:07:28 -05:00
topology_sysfs_failed:
2016-01-13 17:27:31 -05:00
close(fd);
open_failed:
pthread_mutex_unlock(&hsakmt_mutex);
return result;
}
2017-04-20 08:25:00 -04:00
HSAKMT_STATUS HSAKMTAPI hsaKmtCloseKFD(void)
{
HSAKMT_STATUS result;
pthread_mutex_lock(&hsakmt_mutex);
2017-04-20 08:25:00 -04:00
if (kfd_open_count > 0) {
if (--kfd_open_count == 0) {
2016-01-14 17:07:28 -05:00
destroy_counter_props();
destroy_device_debugging_memory();
2016-01-13 17:27:31 -05:00
destroy_process_doorbells();
fmm_destroy_process_apertures();
if (kfd_fd) {
close(kfd_fd);
kfd_fd = 0;
}
}
result = HSAKMT_STATUS_SUCCESS;
2017-04-20 08:25:00 -04:00
} else
result = HSAKMT_STATUS_KERNEL_IO_CHANNEL_NOT_OPENED;
pthread_mutex_unlock(&hsakmt_mutex);
return result;
}