Files
compute-runtime/shared/source/os_interface/linux/xe/drm_version_xe.cpp
Mateusz Hoppe e8afccd071 fix: use IoctlHelperXe::create method
- create ioctl helper with dedicated method

Related-To: NEO-11160

Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
2024-05-07 21:05:04 +02:00

29 lines
831 B
C++

/*
* Copyright (C) 2023-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/os_interface/linux/drm_neo.h"
#include "shared/source/os_interface/linux/xe/ioctl_helper_xe.h"
namespace NEO {
bool Drm::isDrmSupported(int fileDescriptor) {
auto drmVersion = Drm::getDrmVersion(fileDescriptor);
return "i915" == drmVersion || "xe" == drmVersion;
}
bool Drm::queryDeviceIdAndRevision() {
auto drmVersion = Drm::getDrmVersion(getFileDescriptor());
if ("xe" == drmVersion) {
this->ioctlHelper = IoctlHelperXe::create(*this);
auto xeIoctlHelperPtr = static_cast<IoctlHelperXe *>(this->ioctlHelper.get());
this->setPerContextVMRequired(false);
return xeIoctlHelperPtr->initialize();
}
return queryI915DeviceIdAndRevision();
}
} // namespace NEO