256 lines
9.3 KiB
C++
256 lines
9.3 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/device/device.h"
|
|
#include "hw_cmds.h"
|
|
#include "runtime/built_ins/built_ins.h"
|
|
#include "runtime/built_ins/sip.h"
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
#include "runtime/command_stream/device_command_stream.h"
|
|
#include "runtime/command_stream/experimental_command_buffer.h"
|
|
#include "runtime/command_stream/preemption.h"
|
|
#include "runtime/compiler_interface/compiler_interface.h"
|
|
#include "runtime/device/device_vector.h"
|
|
#include "runtime/device/driver_info.h"
|
|
#include "runtime/execution_environment/execution_environment.h"
|
|
#include "runtime/helpers/built_ins_helper.h"
|
|
#include "runtime/helpers/debug_helpers.h"
|
|
#include "runtime/helpers/options.h"
|
|
#include "runtime/memory_manager/memory_manager.h"
|
|
#include "runtime/os_interface/os_context.h"
|
|
#include "runtime/os_interface/os_interface.h"
|
|
#include "runtime/os_interface/os_time.h"
|
|
#include "runtime/source_level_debugger/source_level_debugger.h"
|
|
#include <cstring>
|
|
#include <map>
|
|
|
|
namespace OCLRT {
|
|
|
|
decltype(&PerformanceCounters::create) Device::createPerformanceCountersFunc = PerformanceCounters::create;
|
|
|
|
DeviceVector::DeviceVector(const cl_device_id *devices,
|
|
cl_uint numDevices) {
|
|
for (cl_uint i = 0; i < numDevices; i++) {
|
|
this->push_back(castToObject<Device>(devices[i]));
|
|
}
|
|
}
|
|
|
|
void DeviceVector::toDeviceIDs(std::vector<cl_device_id> &devIDs) {
|
|
int i = 0;
|
|
devIDs.resize(this->size());
|
|
|
|
for (auto &it : *this) {
|
|
devIDs[i] = it;
|
|
i++;
|
|
}
|
|
}
|
|
|
|
CommandStreamReceiver *createCommandStream(const HardwareInfo *pHwInfo, ExecutionEnvironment &executionEnvironment);
|
|
|
|
// Global table of hardware prefixes
|
|
const char *hardwarePrefix[IGFX_MAX_PRODUCT] = {
|
|
nullptr,
|
|
};
|
|
// Global table of family names
|
|
const char *familyName[IGFX_MAX_CORE] = {
|
|
nullptr,
|
|
};
|
|
// Global table of family names
|
|
bool familyEnabled[IGFX_MAX_CORE] = {
|
|
false,
|
|
};
|
|
|
|
Device::Device(const HardwareInfo &hwInfo, ExecutionEnvironment *executionEnvironment, uint32_t deviceIndex)
|
|
: hwInfo(hwInfo), executionEnvironment(executionEnvironment), deviceIndex(deviceIndex) {
|
|
memset(&deviceInfo, 0, sizeof(deviceInfo));
|
|
deviceExtensions.reserve(1000);
|
|
name.reserve(100);
|
|
preemptionMode = PreemptionHelper::getDefaultPreemptionMode(hwInfo);
|
|
engineType = DebugManager.flags.NodeOrdinal.get() == -1
|
|
? hwInfo.capabilityTable.defaultEngineType
|
|
: static_cast<EngineType>(DebugManager.flags.NodeOrdinal.get());
|
|
if (!getSourceLevelDebugger()) {
|
|
this->executionEnvironment->initSourceLevelDebugger(hwInfo);
|
|
}
|
|
this->executionEnvironment->incRefInternal();
|
|
auto &hwHelper = HwHelper::get(hwInfo.pPlatform->eRenderCoreFamily);
|
|
hwHelper.setupHardwareCapabilities(&this->hardwareCapabilities, hwInfo);
|
|
}
|
|
|
|
Device::~Device() {
|
|
CompilerInterface::shutdown();
|
|
DEBUG_BREAK_IF(nullptr == executionEnvironment->memoryManager.get());
|
|
if (performanceCounters) {
|
|
performanceCounters->shutdown();
|
|
}
|
|
|
|
if (commandStreamReceiver) {
|
|
commandStreamReceiver->flushBatchedSubmissions();
|
|
}
|
|
|
|
if (deviceInfo.sourceLevelDebuggerActive && executionEnvironment->sourceLevelDebugger) {
|
|
executionEnvironment->sourceLevelDebugger->notifyDeviceDestruction();
|
|
}
|
|
|
|
if (executionEnvironment->memoryManager) {
|
|
if (preemptionAllocation) {
|
|
executionEnvironment->memoryManager->freeGraphicsMemory(preemptionAllocation);
|
|
preemptionAllocation = nullptr;
|
|
}
|
|
executionEnvironment->memoryManager->waitForDeletions();
|
|
|
|
alignedFree(this->slmWindowStartAddress);
|
|
}
|
|
executionEnvironment->decRefInternal();
|
|
}
|
|
|
|
bool Device::createDeviceImpl(const HardwareInfo *pHwInfo, Device &outDevice) {
|
|
auto executionEnvironment = outDevice.executionEnvironment;
|
|
executionEnvironment->initGmm(pHwInfo);
|
|
if (!executionEnvironment->initializeCommandStreamReceiver(pHwInfo, outDevice.getDeviceIndex())) {
|
|
return false;
|
|
}
|
|
executionEnvironment->initializeMemoryManager(outDevice.getEnabled64kbPages(), outDevice.getHardwareCapabilities().localMemorySupported, outDevice.getDeviceIndex());
|
|
|
|
outDevice.osContext = new OsContext(executionEnvironment->osInterface.get(), outDevice.getDeviceIndex());
|
|
executionEnvironment->memoryManager->registerOsContext(outDevice.osContext);
|
|
|
|
outDevice.commandStreamReceiver = executionEnvironment->commandStreamReceivers[outDevice.getDeviceIndex()].get();
|
|
if (!outDevice.commandStreamReceiver->initializeTagAllocation()) {
|
|
return false;
|
|
}
|
|
|
|
executionEnvironment->memoryManager->csr = outDevice.commandStreamReceiver;
|
|
|
|
auto pDevice = &outDevice;
|
|
if (!pDevice->osTime) {
|
|
pDevice->osTime = OSTime::create(outDevice.commandStreamReceiver->getOSInterface());
|
|
}
|
|
pDevice->driverInfo.reset(DriverInfo::create(outDevice.commandStreamReceiver->getOSInterface()));
|
|
pDevice->tagAddress = reinterpret_cast<uint32_t *>(outDevice.commandStreamReceiver->getTagAllocation()->getUnderlyingBuffer());
|
|
|
|
pDevice->initializeCaps();
|
|
|
|
if (pDevice->osTime->getOSInterface()) {
|
|
if (pHwInfo->capabilityTable.instrumentationEnabled) {
|
|
pDevice->performanceCounters = createPerformanceCountersFunc(pDevice->osTime.get());
|
|
pDevice->performanceCounters->initialize(pHwInfo);
|
|
}
|
|
}
|
|
|
|
uint32_t deviceHandle = 0;
|
|
if (outDevice.commandStreamReceiver->getOSInterface()) {
|
|
deviceHandle = outDevice.commandStreamReceiver->getOSInterface()->getDeviceHandle();
|
|
}
|
|
|
|
if (pDevice->deviceInfo.sourceLevelDebuggerActive) {
|
|
pDevice->executionEnvironment->sourceLevelDebugger->notifyNewDevice(deviceHandle);
|
|
}
|
|
|
|
outDevice.executionEnvironment->memoryManager->setForce32BitAllocations(pDevice->getDeviceInfo().force32BitAddressess);
|
|
|
|
if (pDevice->preemptionMode == PreemptionMode::MidThread || pDevice->isSourceLevelDebuggerActive()) {
|
|
size_t requiredSize = pHwInfo->capabilityTable.requiredPreemptionSurfaceSize;
|
|
size_t alignment = 256 * MemoryConstants::kiloByte;
|
|
bool uncacheable = pDevice->getWaTable()->waCSRUncachable;
|
|
pDevice->preemptionAllocation = outDevice.executionEnvironment->memoryManager->allocateGraphicsMemory(requiredSize, alignment, false, uncacheable);
|
|
if (!pDevice->preemptionAllocation) {
|
|
return false;
|
|
}
|
|
outDevice.commandStreamReceiver->setPreemptionCsrAllocation(pDevice->preemptionAllocation);
|
|
auto sipType = SipKernel::getSipKernelType(pHwInfo->pPlatform->eRenderCoreFamily, pDevice->isSourceLevelDebuggerActive());
|
|
initSipKernel(sipType, *pDevice);
|
|
}
|
|
|
|
if (DebugManager.flags.EnableExperimentalCommandBuffer.get() > 0) {
|
|
outDevice.commandStreamReceiver->setExperimentalCmdBuffer(
|
|
std::unique_ptr<ExperimentalCommandBuffer>(new ExperimentalCommandBuffer(outDevice.commandStreamReceiver, pDevice->getDeviceInfo().profilingTimerResolution)));
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
const HardwareInfo *Device::getDeviceInitHwInfo(const HardwareInfo *pHwInfoIn) {
|
|
return pHwInfoIn ? pHwInfoIn : platformDevices[0];
|
|
}
|
|
|
|
const HardwareInfo &Device::getHardwareInfo() const { return hwInfo; }
|
|
|
|
const WorkaroundTable *Device::getWaTable() const { return hwInfo.pWaTable; }
|
|
|
|
const DeviceInfo &Device::getDeviceInfo() const {
|
|
return deviceInfo;
|
|
}
|
|
|
|
DeviceInfo *Device::getMutableDeviceInfo() {
|
|
return &deviceInfo;
|
|
}
|
|
|
|
void *Device::getSLMWindowStartAddress() {
|
|
prepareSLMWindow();
|
|
return this->slmWindowStartAddress;
|
|
}
|
|
|
|
void Device::prepareSLMWindow() {
|
|
if (this->slmWindowStartAddress == nullptr) {
|
|
this->slmWindowStartAddress = executionEnvironment->memoryManager->allocateSystemMemory(MemoryConstants::slmWindowSize, MemoryConstants::slmWindowAlignment);
|
|
}
|
|
}
|
|
|
|
const char *Device::getProductAbbrev() const {
|
|
return hardwarePrefix[hwInfo.pPlatform->eProductFamily];
|
|
}
|
|
|
|
const std::string Device::getFamilyNameWithType() const {
|
|
std::string platformName = familyName[hwInfo.pPlatform->eRenderCoreFamily];
|
|
platformName.append(getPlatformType(hwInfo));
|
|
return platformName;
|
|
}
|
|
|
|
double Device::getProfilingTimerResolution() {
|
|
return osTime->getDynamicDeviceTimerResolution(hwInfo);
|
|
}
|
|
|
|
unsigned int Device::getSupportedClVersion() const {
|
|
return hwInfo.capabilityTable.clVersionSupport;
|
|
}
|
|
|
|
/* We hide the retain and release function of BaseObject. */
|
|
void Device::retain() {
|
|
DEBUG_BREAK_IF(!isValid());
|
|
}
|
|
|
|
unique_ptr_if_unused<Device> Device::release() {
|
|
DEBUG_BREAK_IF(!isValid());
|
|
return unique_ptr_if_unused<Device>(this, false);
|
|
}
|
|
|
|
bool Device::isSimulation() const {
|
|
bool simulation = hwInfo.capabilityTable.isSimulation(hwInfo.pPlatform->usDeviceID);
|
|
if (commandStreamReceiver->getType() != CommandStreamReceiverType::CSR_HW) {
|
|
simulation = true;
|
|
}
|
|
if (hwInfo.pSkuTable->ftrSimulationMode) {
|
|
simulation = true;
|
|
}
|
|
return simulation;
|
|
}
|
|
|
|
double Device::getPlatformHostTimerResolution() const {
|
|
if (osTime.get())
|
|
return osTime->getHostTimerResolution();
|
|
return 0.0;
|
|
}
|
|
GFXCORE_FAMILY Device::getRenderCoreFamily() const {
|
|
return this->getHardwareInfo().pPlatform->eRenderCoreFamily;
|
|
}
|
|
|
|
bool Device::isSourceLevelDebuggerActive() const {
|
|
return deviceInfo.sourceLevelDebuggerActive;
|
|
}
|
|
} // namespace OCLRT
|