diff options
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/meteorlake/fsp_params.c | 1 | ||||
-rw-r--r-- | src/soc/intel/meteorlake/include/soc/pci_devs.h | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/fsp_params.c b/src/soc/intel/meteorlake/fsp_params.c index f918763844..3ca6c52da6 100644 --- a/src/soc/intel/meteorlake/fsp_params.c +++ b/src/soc/intel/meteorlake/fsp_params.c @@ -419,6 +419,7 @@ static void fill_fsps_ai_params(FSP_S_CONFIG *s_cfg, const struct soc_intel_meteorlake_config *config) { s_cfg->GnaEnable = is_devfn_enabled(PCI_DEVFN_GNA); + s_cfg->VpuEnable = is_devfn_enabled(PCI_DEVFN_VPU); } static void arch_silicon_init_params(FSPS_ARCH_UPD *s_arch_cfg) diff --git a/src/soc/intel/meteorlake/include/soc/pci_devs.h b/src/soc/intel/meteorlake/include/soc/pci_devs.h index 701faf9d62..9cea98ef65 100644 --- a/src/soc/intel/meteorlake/include/soc/pci_devs.h +++ b/src/soc/intel/meteorlake/include/soc/pci_devs.h @@ -72,6 +72,10 @@ #define PCI_DEV_TCSS_DMA0 _PCI_DEV(TCSS, 2) #define PCI_DEV_TCSS_DMA1 _PCI_DEV(TCSS, 3) +#define PCI_DEV_SLOT_VPU 0x0b +#define PCI_DEVFN_VPU _PCI_DEVFN(VPU, 0) +#define PCI_DEV_VPU _PCI_DEV(VPU, 0) + #define PCI_DEV_SLOT_VMD 0x0e #define PCI_DEVFN_VMD _PCI_DEVFN(VMD, 0) #define PCI_DEV_VMD _PCI_DEV(VMD, 0) |