diff options
| author | David E. Box <[email protected]> | 2025-07-03 02:28:27 +0000 |
|---|---|---|
| committer | Ilpo Järvinen <[email protected]> | 2025-07-03 08:09:38 +0000 |
| commit | c9699057521834862616ce159a47bd33920f0d9f (patch) | |
| tree | 89bb385bda5902a8db74cadbbb6906b9769a9336 /drivers/platform/x86/intel/vsec.c | |
| parent | platform/x86/intel/vsec: Set OOBMSM to CPU mapping (diff) | |
| download | kernel-c9699057521834862616ce159a47bd33920f0d9f.tar.gz kernel-c9699057521834862616ce159a47bd33920f0d9f.zip | |
platform/x86/intel/tpmi: Get OOBMSM CPU mapping from TPMI
Copy TPMI’s OOBMSM platform info into a common area within VSEC private
data via intel_vsec_set_mapping(). This enables other Intel VSEC features
to access the CPU mapping without additional queries.
Additionally, designate the TPMI driver as a supplier for the Telemetry
driver, ensuring it can obtain the necessary platform information for
future feature extensions.
Signed-off-by: David E. Box <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Ilpo Järvinen <[email protected]>
Signed-off-by: Ilpo Järvinen <[email protected]>
Diffstat (limited to 'drivers/platform/x86/intel/vsec.c')
| -rw-r--r-- | drivers/platform/x86/intel/vsec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel/vsec.c b/drivers/platform/x86/intel/vsec.c index 711ff4edfe21..f66f0ce8559b 100644 --- a/drivers/platform/x86/intel/vsec.c +++ b/drivers/platform/x86/intel/vsec.c @@ -725,7 +725,7 @@ static const struct intel_vsec_platform_info mtl_info = { static const struct vsec_feature_dependency oobmsm_deps[] = { { .feature = VSEC_CAP_TELEMETRY, - .supplier_bitmap = VSEC_CAP_DISCOVERY, + .supplier_bitmap = VSEC_CAP_DISCOVERY | VSEC_CAP_TPMI, }, }; |
