aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel
diff options
context:
space:
mode:
authorSrinidhi N Kaushik <srinidhi.n.kaushik@intel.com>2022-08-08 20:38:19 -0700
committerSubrata Banik <subratabanik@google.com>2022-08-11 07:35:41 +0000
commit9f6e25d6b0d53e23c8abf27ac0bc41d6f15f1e49 (patch)
tree0933b00d14996197a8015844456025709a365628 /src/soc/intel
parent7a0eff6b8e423ab87403869cda92142baa3de869 (diff)
src/soc/intel/mtl: Add VPU support
This change adds support for enabling VPU on MTL SoC. BUG=b:240665069 TEST=build coreboot mtlrvp Signed-off-by: Srinidhi N Kaushik <srinidhi.n.kaushik@intel.com> Change-Id: Ie79b45f34a669b9ff777599cb85217abac6cb74e Reviewed-on: https://review.coreboot.org/c/coreboot/+/66566 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Wonkyu Kim <wonkyu.kim@intel.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/meteorlake/fsp_params.c1
-rw-r--r--src/soc/intel/meteorlake/include/soc/pci_devs.h4
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)