2021-10-13 21:30:46 +08:00
/*
2022-01-03 22:16:00 +08:00
* Copyright ( C ) 2021 - 2022 Intel Corporation
2021-10-13 21:30:46 +08:00
*
* SPDX - License - Identifier : MIT
*
*/
# include "shared/source/debug_settings/debug_settings_manager.h"
2022-04-12 01:13:44 +08:00
# include "shared/source/helpers/common_types.h"
2021-12-10 20:55:55 +08:00
# include "shared/source/os_interface/linux/cache_info.h"
2022-05-18 05:40:34 +08:00
# include "shared/source/os_interface/linux/drm_wrappers.h"
2022-07-15 19:12:14 +08:00
# include "shared/source/os_interface/linux/i915_upstream.h"
2021-12-01 19:45:29 +08:00
# include "shared/source/os_interface/linux/ioctl_helper.h"
2021-10-13 21:30:46 +08:00
namespace NEO {
2022-09-12 20:50:07 +08:00
bool IoctlHelperUpstream : : initialize ( ) {
return true ;
}
2022-09-20 15:07:59 +08:00
bool IoctlHelperUpstream : : isSetPairAvailable ( ) {
return false ;
}
2022-06-30 00:49:29 +08:00
bool IoctlHelperUpstream : : isVmBindAvailable ( ) {
2022-02-15 17:33:27 +08:00
return false ;
}
2022-09-20 15:07:59 +08:00
uint32_t IoctlHelperUpstream : : createGemExt ( const MemRegionsVec & memClassInstances , size_t allocSize , uint32_t & handle , std : : optional < uint32_t > vmId , int32_t pairHandle ) {
2021-12-22 22:25:53 +08:00
uint32_t regionsSize = static_cast < uint32_t > ( memClassInstances . size ( ) ) ;
2021-12-28 21:19:45 +08:00
std : : vector < drm_i915_gem_memory_class_instance > regions ( regionsSize ) ;
2021-12-22 22:25:53 +08:00
for ( uint32_t i = 0 ; i < regionsSize ; i + + ) {
2021-12-28 21:19:45 +08:00
regions [ i ] . memory_class = memClassInstances [ i ] . memoryClass ;
regions [ i ] . memory_instance = memClassInstances [ i ] . memoryInstance ;
2021-12-22 22:25:53 +08:00
}
2021-12-14 17:46:01 +08:00
drm_i915_gem_create_ext_memory_regions memRegions { } ;
2021-12-22 22:25:53 +08:00
memRegions . num_regions = regionsSize ;
2021-12-28 21:19:45 +08:00
memRegions . regions = reinterpret_cast < uintptr_t > ( regions . data ( ) ) ;
2021-10-13 21:30:46 +08:00
memRegions . base . name = I915_GEM_CREATE_EXT_MEMORY_REGIONS ;
drm_i915_gem_create_ext createExt { } ;
createExt . size = allocSize ;
createExt . extensions = reinterpret_cast < uintptr_t > ( & memRegions ) ;
printDebugString ( DebugManager . flags . PrintBOCreateDestroyResult . get ( ) , stdout , " Performing GEM_CREATE_EXT with { size: %lu " ,
allocSize ) ;
if ( DebugManager . flags . PrintBOCreateDestroyResult . get ( ) ) {
2021-12-22 22:25:53 +08:00
for ( uint32_t i = 0 ; i < regionsSize ; i + + ) {
2021-12-28 21:19:45 +08:00
auto region = regions [ i ] ;
2021-10-13 21:30:46 +08:00
printDebugString ( DebugManager . flags . PrintBOCreateDestroyResult . get ( ) , stdout , " , memory class: %d, memory instance: %d " ,
region . memory_class , region . memory_instance ) ;
}
printDebugString ( DebugManager . flags . PrintBOCreateDestroyResult . get ( ) , stdout , " %s " , " } \n " ) ;
}
2022-06-30 00:49:29 +08:00
auto ret = ioctl ( DrmIoctl : : GemCreateExt , & createExt ) ;
2021-10-13 21:30:46 +08:00
printDebugString ( DebugManager . flags . PrintBOCreateDestroyResult . get ( ) , stdout , " GEM_CREATE_EXT with EXT_MEMORY_REGIONS has returned: %d BO-%u with size: %lu \n " , ret , createExt . handle , createExt . size ) ;
handle = createExt . handle ;
return ret ;
}
2022-06-30 00:49:29 +08:00
CacheRegion IoctlHelperUpstream : : closAlloc ( ) {
2021-12-10 20:55:55 +08:00
return CacheRegion : : None ;
}
2022-06-30 00:49:29 +08:00
uint16_t IoctlHelperUpstream : : closAllocWays ( CacheRegion closIndex , uint16_t cacheLevel , uint16_t numWays ) {
2021-12-10 20:55:55 +08:00
return 0 ;
}
2022-06-30 00:49:29 +08:00
CacheRegion IoctlHelperUpstream : : closFree ( CacheRegion closIndex ) {
2021-12-10 20:55:55 +08:00
return CacheRegion : : None ;
}
2022-06-30 00:49:29 +08:00
int IoctlHelperUpstream : : waitUserFence ( uint32_t ctxId , uint64_t address ,
2021-12-14 17:46:01 +08:00
uint64_t value , uint32_t dataWidth , int64_t timeout , uint16_t flags ) {
return 0 ;
}
2021-12-14 22:09:19 +08:00
uint32_t IoctlHelperUpstream : : getAtomicAdvise ( bool isNonAtomic ) {
return 0 ;
}
uint32_t IoctlHelperUpstream : : getPreferredLocationAdvise ( ) {
return 0 ;
}
2022-06-30 00:49:29 +08:00
bool IoctlHelperUpstream : : setVmBoAdvise ( int32_t handle , uint32_t attribute , void * region ) {
2021-12-14 22:09:19 +08:00
return true ;
}
2022-11-15 20:15:28 +08:00
bool IoctlHelperUpstream : : setVmPrefetch ( uint64_t start , uint64_t length , uint32_t region , uint32_t vmId ) {
2022-03-02 21:38:28 +08:00
return true ;
}
2021-12-14 20:41:38 +08:00
uint32_t IoctlHelperUpstream : : getDirectSubmissionFlag ( ) {
return 0u ;
}
2022-02-15 03:34:50 +08:00
std : : unique_ptr < uint8_t [ ] > IoctlHelperUpstream : : prepareVmBindExt ( const StackVec < uint32_t , 2 > & bindExtHandles ) {
return { } ;
}
2022-02-28 21:56:41 +08:00
2022-02-15 03:34:50 +08:00
uint64_t IoctlHelperUpstream : : getFlagsForVmBind ( bool bindCapture , bool bindImmediate , bool bindMakeResident ) {
return 0u ;
}
2022-06-30 00:49:29 +08:00
uint32_t IoctlHelperUpstream : : queryDistances ( std : : vector < QueryItem > & queryItems , std : : vector < DistanceInfo > & distanceInfos ) {
2022-01-03 22:16:00 +08:00
for ( auto & query : queryItems ) {
query . length = - EINVAL ;
}
return 0 ;
}
2022-02-11 23:03:58 +08:00
uint16_t IoctlHelperUpstream : : getWaitUserFenceSoftFlag ( ) {
return 0 ;
2022-02-28 21:56:41 +08:00
}
2022-02-11 23:03:58 +08:00
2022-11-22 21:53:59 +08:00
int IoctlHelperUpstream : : execBuffer ( ExecBuffer * execBuffer , uint64_t completionGpuAddress , TaskCountType counterValue ) {
2022-06-30 00:49:29 +08:00
return ioctl ( DrmIoctl : : GemExecbuffer2 , execBuffer ) ;
2022-01-20 02:14:10 +08:00
}
2022-05-27 19:01:46 +08:00
bool IoctlHelperUpstream : : completionFenceExtensionSupported ( const bool isVmBindAvailable ) {
2022-01-21 02:13:07 +08:00
return false ;
}
2022-06-06 23:48:31 +08:00
std : : optional < DrmParam > IoctlHelperUpstream : : getHasPageFaultParamId ( ) {
2022-02-11 00:16:37 +08:00
return std : : nullopt ;
2022-02-13 01:53:38 +08:00
} ;
2022-02-28 21:56:41 +08:00
2022-05-26 23:00:06 +08:00
bool IoctlHelperUpstream : : getEuStallProperties ( std : : array < uint64_t , 12u > & properties , uint64_t dssBufferSize ,
uint64_t samplingRate , uint64_t pollPeriod , uint64_t engineInstance ,
uint64_t notifyNReports ) {
2022-02-03 21:26:53 +08:00
return false ;
}
uint32_t IoctlHelperUpstream : : getEuStallFdParameter ( ) {
return 0u ;
}
2022-02-11 00:16:37 +08:00
2022-02-16 00:46:35 +08:00
std : : unique_ptr < uint8_t [ ] > IoctlHelperUpstream : : createVmControlExtRegion ( const std : : optional < MemoryClassInstance > & regionInstanceClass ) {
return { } ;
}
2022-04-22 00:59:48 +08:00
uint32_t IoctlHelperUpstream : : getFlagsForVmCreate ( bool disableScratch , bool enablePageFault , bool useVmBind ) {
2022-02-16 00:46:35 +08:00
return 0u ;
}
2022-06-30 00:49:29 +08:00
uint32_t IoctlHelperUpstream : : createContextWithAccessCounters ( GemContextCreateExt & gcc ) {
2022-02-15 00:26:25 +08:00
return EINVAL ;
}
2022-02-28 21:56:41 +08:00
2022-06-30 00:49:29 +08:00
uint32_t IoctlHelperUpstream : : createCooperativeContext ( GemContextCreateExt & gcc ) {
2022-02-15 00:26:25 +08:00
return EINVAL ;
}
2022-02-15 20:56:31 +08:00
2022-04-05 23:04:53 +08:00
void IoctlHelperUpstream : : fillVmBindExtSetPat ( VmBindExtSetPatT & vmBindExtSetPat , uint64_t patIndex , uint64_t nextExtension ) { }
2022-02-28 21:56:41 +08:00
2022-04-05 23:04:53 +08:00
void IoctlHelperUpstream : : fillVmBindExtUserFence ( VmBindExtUserFenceT & vmBindExtUserFence , uint64_t fenceAddress , uint64_t fenceValue , uint64_t nextExtension ) { }
2022-02-15 20:56:31 +08:00
std : : optional < uint64_t > IoctlHelperUpstream : : getCopyClassSaturatePCIECapability ( ) {
return std : : nullopt ;
}
std : : optional < uint64_t > IoctlHelperUpstream : : getCopyClassSaturateLinkCapability ( ) {
return std : : nullopt ;
}
2022-03-22 00:02:12 +08:00
uint32_t IoctlHelperUpstream : : getVmAdviseAtomicAttribute ( ) {
return 0 ;
}
2022-06-30 00:49:29 +08:00
int IoctlHelperUpstream : : vmBind ( const VmBindParams & vmBindParams ) {
2022-02-15 22:54:16 +08:00
return 0 ;
}
2022-02-28 21:56:41 +08:00
2022-06-30 00:49:29 +08:00
int IoctlHelperUpstream : : vmUnbind ( const VmBindParams & vmBindParams ) {
2022-02-15 22:54:16 +08:00
return 0 ;
}
2022-02-28 21:56:41 +08:00
2022-06-30 00:49:29 +08:00
UuidRegisterResult IoctlHelperUpstream : : registerUuid ( const std : : string & uuid , uint32_t uuidClass , uint64_t ptr , uint64_t size ) {
2022-02-28 21:56:41 +08:00
return { 0 , 0 } ;
}
2022-06-30 00:49:29 +08:00
UuidRegisterResult IoctlHelperUpstream : : registerStringClassUuid ( const std : : string & uuid , uint64_t ptr , uint64_t size ) {
2022-02-28 21:56:41 +08:00
return { 0 , 0 } ;
}
2022-06-30 00:49:29 +08:00
int IoctlHelperUpstream : : unregisterUuid ( uint32_t handle ) {
2022-02-28 21:56:41 +08:00
return 0 ;
}
2022-06-30 00:49:29 +08:00
bool IoctlHelperUpstream : : isContextDebugSupported ( ) {
2022-02-28 21:56:41 +08:00
return false ;
}
2022-06-30 00:49:29 +08:00
int IoctlHelperUpstream : : setContextDebugFlag ( uint32_t drmContextId ) {
2022-02-28 21:56:41 +08:00
return 0 ;
}
2022-03-26 02:51:25 +08:00
bool IoctlHelperUpstream : : isDebugAttachAvailable ( ) {
return false ;
}
2022-06-03 21:57:42 +08:00
unsigned int IoctlHelperUpstream : : getIoctlRequestValue ( DrmIoctl ioctlRequest ) const {
2022-06-01 02:11:40 +08:00
switch ( ioctlRequest ) {
case DrmIoctl : : GemCreateExt :
2022-05-26 01:05:52 +08:00
return DRM_IOCTL_I915_GEM_CREATE_EXT ;
2022-06-01 02:11:40 +08:00
default :
2022-06-02 02:53:00 +08:00
return getIoctlRequestValueBase ( ioctlRequest ) ;
2022-05-26 01:05:52 +08:00
}
}
2022-06-01 21:04:38 +08:00
int IoctlHelperUpstream : : getDrmParamValue ( DrmParam drmParam ) const {
switch ( drmParam ) {
case DrmParam : : EngineClassCompute :
return 4 ;
2022-06-02 00:03:01 +08:00
case DrmParam : : QueryHwconfigTable :
return DRM_I915_QUERY_HWCONFIG_TABLE ;
2022-06-02 02:35:56 +08:00
case DrmParam : : QueryComputeSlices :
return 0 ;
2022-06-01 21:04:38 +08:00
default :
return getDrmParamValueBase ( drmParam ) ;
}
}
2022-07-14 23:32:26 +08:00
std : : string IoctlHelperUpstream : : getDrmParamString ( DrmParam param ) const {
return getDrmParamStringBase ( param ) ;
}
std : : string IoctlHelperUpstream : : getIoctlString ( DrmIoctl ioctlRequest ) const {
switch ( ioctlRequest ) {
case DrmIoctl : : GemCreateExt :
return " DRM_IOCTL_I915_GEM_CREATE_EXT " ;
default :
return getIoctlStringBase ( ioctlRequest ) ;
}
}
2022-09-30 20:57:38 +08:00
2022-10-25 15:21:48 +08:00
bool IoctlHelperUpstream : : getFabricLatency ( uint32_t fabricId , uint32_t & latency , uint32_t & bandwidth ) {
2022-09-30 20:57:38 +08:00
return false ;
}
2021-10-13 21:30:46 +08:00
} // namespace NEO