mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 21:42:53 +08:00
- create ioctl helper with dedicated method Related-To: NEO-11160 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
29 lines
831 B
C++
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
|