mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-10 07:08:04 +08:00
add ioctl helper function for vm bind and vm unbind Related-To: NEO-6591 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/*
|
|
* Copyright (C) 2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
|
#include "shared/source/helpers/hw_info.h"
|
|
#include "shared/source/os_interface/linux/cache_info.h"
|
|
|
|
using namespace NEO;
|
|
|
|
struct DrmMockPrelimContext {
|
|
const HardwareInfo *hwInfo;
|
|
const RootDeviceEnvironment &rootDeviceEnvironment;
|
|
const CacheInfo *cacheInfo;
|
|
const bool &failRetTopology;
|
|
const BcsInfoMask &supportedCopyEnginesMask;
|
|
|
|
uint16_t closIndex{0};
|
|
uint16_t maxNumWays{32};
|
|
uint32_t allocNumWays{0};
|
|
|
|
size_t vmBindQueryCalled{0};
|
|
int vmBindQueryValue{0};
|
|
int vmBindQueryReturn{0};
|
|
|
|
size_t vmBindCalled{0};
|
|
int vmBindReturn{0};
|
|
|
|
size_t vmUnbindCalled{0};
|
|
int vmUnbindReturn{0};
|
|
|
|
int hasPageFaultQueryValue{0};
|
|
int hasPageFaultQueryReturn{0};
|
|
|
|
bool failDistanceInfoQuery{false};
|
|
bool disableCcsSupport{false};
|
|
|
|
int handlePrelimRequest(unsigned long request, void *arg);
|
|
bool handlePrelimQueryItem(void *arg);
|
|
};
|
|
|
|
namespace DrmPrelimHelper {
|
|
uint32_t getQueryComputeSlicesIoctl();
|
|
uint32_t getDistanceInfoQueryId();
|
|
uint32_t getComputeEngineClass();
|
|
}; // namespace DrmPrelimHelper
|