2023-01-09 12:07:23 +00:00
|
|
|
/*
|
2024-05-07 19:09:49 +00:00
|
|
|
* Copyright (C) 2023-2024 Intel Corporation
|
2023-01-09 12:07:23 +00:00
|
|
|
*
|
|
|
|
|
* 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) {
|
2024-05-07 19:09:49 +00:00
|
|
|
this->ioctlHelper = IoctlHelperXe::create(*this);
|
2023-01-09 12:07:23 +00:00
|
|
|
auto xeIoctlHelperPtr = static_cast<IoctlHelperXe *>(this->ioctlHelper.get());
|
|
|
|
|
this->setPerContextVMRequired(false);
|
|
|
|
|
return xeIoctlHelperPtr->initialize();
|
|
|
|
|
}
|
|
|
|
|
return queryI915DeviceIdAndRevision();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace NEO
|