/* * Copyright (C) 2018-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "runtime/os_interface/linux/os_context_linux.h" #include "runtime/os_interface/linux/drm_neo.h" #include "runtime/os_interface/linux/os_interface.h" #include "runtime/os_interface/os_context.h" namespace NEO { OsContext *OsContext::create(OSInterface *osInterface, uint32_t contextId, DeviceBitfield deviceBitfield, aub_stream::EngineType engineType, PreemptionMode preemptionMode, bool lowPriority) { if (osInterface) { return new OsContextLinux(*osInterface->get()->getDrm(), contextId, deviceBitfield, engineType, preemptionMode, lowPriority); } return new OsContext(contextId, deviceBitfield, engineType, preemptionMode, lowPriority); } OsContextLinux::OsContextLinux(Drm &drm, uint32_t contextId, DeviceBitfield deviceBitfield, aub_stream::EngineType engineType, PreemptionMode preemptionMode, bool lowPriority) : OsContext(contextId, deviceBitfield, engineType, preemptionMode, lowPriority), drm(drm) { this->drmContextId = drm.createDrmContext(); if (drm.isPreemptionSupported() && lowPriority) { drm.setLowPriorityContextParam(this->drmContextId); } this->engineFlag = drm.bindDrmContext(this->drmContextId, deviceBitfield, engineType); } OsContextLinux::~OsContextLinux() { drm.destroyDrmContext(drmContextId); } } // namespace NEO