xref: /aosp_15_r20/external/intel-media-driver/media_softlet/linux/xe2_hpm/ddi/media_sysinfo_bmg.cpp (revision ba62d9d3abf0e404f2022b4cd7a85e107f48596f)
1 /*===================== begin_copyright_notice ==================================
2 
3 Copyright (c) 2024, Intel Corporation
4 
5 Permission is hereby granted, free of charge, to any person obtaining a
6 copy of this software and associated documentation files (the "Software"),
7 to deal in the Software without restriction, including without limitation
8 the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 and/or sell copies of the Software, and to permit persons to whom the
10 Software is furnished to do so, subject to the following conditions:
11 
12 The above copyright notice and this permission notice shall be included
13 in all copies or substantial portions of the Software.
14 
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 OTHER DEALINGS IN THE SOFTWARE.
22 
23 ======================= end_copyright_notice ==================================*/
24 //!
25 //! \file     media_sysinfo_bmg.cpp
26 //!
27 
28 #include "igfxfmid.h"
29 #include "linux_system_info.h"
30 #include "skuwa_factory.h"
31 #include "linux_skuwa_debug.h"
32 #include "linux_media_skuwa.h"
33 #include "linux_shadow_skuwa.h"
34 #include "media_user_setting_specific.h"
35 
36 //extern template class DeviceInfoFactory<GfxDeviceInfo>;
37 typedef DeviceInfoFactory<GfxDeviceInfo> base_fact;
38 
39 #define THREADS_NUMBER_PER_EU 7
40 
InitBmgMediaSysInfo(struct GfxDeviceInfo * devInfo,MEDIA_GT_SYSTEM_INFO * sysInfo)41 static bool InitBmgMediaSysInfo(struct GfxDeviceInfo *devInfo, MEDIA_GT_SYSTEM_INFO *sysInfo)
42 {
43     if ((devInfo == nullptr) || (sysInfo == nullptr))
44     {
45         DEVINFO_ERROR("null ptr is passed\n");
46         return false;
47     }
48 
49     if (!sysInfo->SliceCount)
50     {
51         sysInfo->SliceCount    = devInfo->SliceCount;
52     }
53 
54     if (!sysInfo->SubSliceCount)
55     {
56         sysInfo->SubSliceCount = devInfo->SubSliceCount;
57     }
58 
59     if (!sysInfo->EUCount)
60     {
61         sysInfo->EUCount       = devInfo->EUCount;
62     }
63 
64     sysInfo->L3BankCount                            = devInfo->L3BankCount;
65     sysInfo->VEBoxInfo.Instances.Bits.VEBox0Enabled = 1;
66     sysInfo->MaxEuPerSubSlice = devInfo->MaxEuPerSubSlice;
67     sysInfo->MaxSlicesSupported = sysInfo->SliceCount;
68     sysInfo->MaxSubSlicesSupported = sysInfo->SubSliceCount;
69 
70     sysInfo->VEBoxInfo.NumberOfVEBoxEnabled = 0; /*Query the VEBox engine info from KMD*/
71     sysInfo->VDBoxInfo.NumberOfVDBoxEnabled = 0; /*Query the VDBox engine info from KMD*/
72 
73     sysInfo->ThreadCount = sysInfo->EUCount * THREADS_NUMBER_PER_EU;
74 
75     sysInfo->VEBoxInfo.IsValid = true;
76     sysInfo->VDBoxInfo.IsValid = true;
77 
78     //Media driver does not set the other gtsysinfo fileds such as L3CacheSizeInKb, EdramSizeInKb and LLCCacheSizeInKb now.
79     //If needed in the future, query them from KMD.
80 
81     return true;
82 }
83 
InitBmgShadowSku(struct GfxDeviceInfo * devInfo,SHADOW_MEDIA_FEATURE_TABLE * skuTable,struct LinuxDriverInfo * drvInfo)84 static bool InitBmgShadowSku(struct GfxDeviceInfo *devInfo,
85                              SHADOW_MEDIA_FEATURE_TABLE *skuTable,
86                              struct LinuxDriverInfo *drvInfo)
87 {
88     if ((devInfo == nullptr) || (skuTable == nullptr) || (drvInfo == nullptr))
89     {
90         DEVINFO_ERROR("null ptr is passed\n");
91         return false;
92     }
93 
94     skuTable->FtrVERing = 0;
95     if (drvInfo->hasVebox)
96     {
97        skuTable->FtrVERing = 1;
98     }
99 
100     skuTable->FtrVcs2 = 0;
101 
102     skuTable->FtrULT = 0;
103 
104     skuTable->FtrPPGTT = 1;
105     skuTable->FtrIA32eGfxPTEs = 1;
106 
107     skuTable->FtrDisplayYTiling = 1;
108     skuTable->FtrEDram = devInfo->hasERAM;
109 
110     bool disableMMC     = false;
111     skuTable->FtrE2ECompression = 1;
112     // Disable MMC for all components if set reg key
113     MOS_USER_FEATURE_VALUE_DATA userFeatureData;
114     MOS_ZeroMemory(&userFeatureData, sizeof(userFeatureData));
115     MOS_UserFeature_ReadValue_ID(
116         nullptr,
117         __MEDIA_USER_FEATURE_VALUE_DISABLE_MMC_ID,
118         &userFeatureData,
119         (MOS_CONTEXT_HANDLE)nullptr);
120     if (userFeatureData.bData)
121     {
122         disableMMC = true;
123     }
124 
125     if (disableMMC)
126     {
127         skuTable->FtrE2ECompression = 0;
128     }
129 
130     skuTable->FtrLinearCCS = 1;
131     skuTable->FtrTileY = 0;
132 
133     skuTable->FtrLocalMemory = 1;
134     skuTable->FtrFlatPhysCCS = 1;
135 
136     return true;
137 }
138 
InitBmgShadowWa(struct GfxDeviceInfo * devInfo,SHADOW_MEDIA_WA_TABLE * waTable,struct LinuxDriverInfo * drvInfo)139 static bool InitBmgShadowWa(struct GfxDeviceInfo *devInfo,
140                              SHADOW_MEDIA_WA_TABLE *waTable,
141                              struct LinuxDriverInfo *drvInfo)
142 {
143     if ((devInfo == nullptr) || (waTable == nullptr) || (drvInfo == nullptr))
144     {
145         DEVINFO_ERROR("null ptr is passed\n");
146         return false;
147     }
148 
149     /* by default PPGTT is enabled */
150     waTable->WaForceGlobalGTT = 0;
151     if (drvInfo->hasPpgtt == 0)
152     {
153         waTable->WaForceGlobalGTT = 1;
154     }
155 
156     waTable->WaDisregardPlatformChecks          = 1;
157     waTable->Wa4kAlignUVOffsetNV12LinearSurface = 1;
158 
159     //source and recon surfaces need to be aligned to the LCU size
160     waTable->WaAlignYUVResourceToLCU = 1;
161 
162     return true;
163 }
164 
165 
166 static struct GfxDeviceInfo bmgInfo = {
167     .platformType  = PLATFORM_MOBILE,
168     .productFamily = IGFX_BMG,
169     .displayFamily = IGFX_UNKNOWN_CORE,
170     .renderFamily  = IGFX_XE2_HPG_CORE,
171     .mediaFamily   = IGFX_UNKNOWN_CORE,
172     .eGTType       = GTTYPE_GT2,
173     .L3CacheSizeInKb = 0,
174     .L3BankCount   = 0,
175     .EUCount       = 0,
176     .SliceCount    = 0,
177     .SubSliceCount = 0,
178     .MaxEuPerSubSlice = 0,
179     .isLCIA        = 0,
180     .hasLLC        = 0,
181     .hasERAM       = 0,
182     .InitMediaSysInfo = InitBmgMediaSysInfo,
183     .InitShadowSku    = InitBmgShadowSku,
184     .InitShadowWa     = InitBmgShadowWa,
185 };
186 
187 static bool bmgDevicee202 = DeviceInfoFactory<GfxDeviceInfo>::
188     RegisterDevice(0xe202, &bmgInfo);
189 
190 static bool bmgDevicee20B = DeviceInfoFactory<GfxDeviceInfo>::
191     RegisterDevice(0xe20B, &bmgInfo);
192 
193 static bool bmgDevicee20C = DeviceInfoFactory<GfxDeviceInfo>::
194     RegisterDevice(0xe20C, &bmgInfo);
195 
196 static bool bmgDevicee20D = DeviceInfoFactory<GfxDeviceInfo>::
197     RegisterDevice(0xe20D, &bmgInfo);
198 
199 static bool bmgDevicee212 = DeviceInfoFactory<GfxDeviceInfo>::
200     RegisterDevice(0xe212, &bmgInfo);