diff --git a/src/soc/intel/alderlake/chip.c b/src/soc/intel/alderlake/chip.c index 3f5c36597a..b42322684f 100644 --- a/src/soc/intel/alderlake/chip.c +++ b/src/soc/intel/alderlake/chip.c @@ -110,6 +110,9 @@ const char *soc_acpi_name(const struct device *dev) case PCH_DEVFN_HDA: return "HDAS"; case PCH_DEVFN_SMBUS: return "SBUS"; case PCH_DEVFN_GBE: return "GLAN"; +#if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N) + case PCH_DEVFN_EMMC: return "EMMC"; +#endif } return NULL; diff --git a/src/soc/intel/alderlake/chip.h b/src/soc/intel/alderlake/chip.h index a5543d6364..aad45df3cf 100644 --- a/src/soc/intel/alderlake/chip.h +++ b/src/soc/intel/alderlake/chip.h @@ -419,6 +419,11 @@ struct soc_intel_alderlake_config { * accordingly */ uint8_t HybridStorageMode; +#if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N) + /* eMMC HS400 mode */ + uint8_t emmc_enable_hs400_mode; +#endif + /* * Override CPU flex ratio value: * CPU ratio value controls the maximum processor non-turbo ratio. diff --git a/src/soc/intel/alderlake/fsp_params.c b/src/soc/intel/alderlake/fsp_params.c index 8aa20a8dc6..90e6ab25f5 100644 --- a/src/soc/intel/alderlake/fsp_params.c +++ b/src/soc/intel/alderlake/fsp_params.c @@ -183,6 +183,14 @@ static const struct slot_irq_constraints irq_constraints[] = { DIRECT_IRQ(PCH_DEVFN_UART2), }, }, +#if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N) + { + .slot = PCH_DEV_SLOT_EMMC, + .fns = { + ANY_PIRQ(PCH_DEVFN_EMMC), + }, + }, +#endif { .slot = PCH_DEV_SLOT_PCIE, .fns = { @@ -596,6 +604,12 @@ static void fill_fsps_pm_timer_params(FSP_S_CONFIG *s_cfg, static void fill_fsps_storage_params(FSP_S_CONFIG *s_cfg, const struct soc_intel_alderlake_config *config) { +#if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N) + /* eMMC Configuration */ + s_cfg->ScsEmmcEnabled = is_devfn_enabled(PCH_DEVFN_EMMC); + if (s_cfg->ScsEmmcEnabled) + s_cfg->ScsEmmcHs400Enabled = config->emmc_enable_hs400_mode; +#endif /* Enable Hybrid storage auto detection */ s_cfg->HybridStorageMode = config->HybridStorageMode; } diff --git a/src/soc/intel/alderlake/include/soc/pci_devs.h b/src/soc/intel/alderlake/include/soc/pci_devs.h index 956a021b68..b7196df0c3 100644 --- a/src/soc/intel/alderlake/include/soc/pci_devs.h +++ b/src/soc/intel/alderlake/include/soc/pci_devs.h @@ -166,6 +166,12 @@ #define PCH_DEV_I2C5 _PCH_DEV(SIO4, 1) #define PCH_DEV_UART2 _PCH_DEV(SIO4, 2) +#if CONFIG(SOC_INTEL_ALDERLAKE_PCH_N) +#define PCH_DEV_SLOT_EMMC 0x1a +#define PCH_DEVFN_EMMC _PCH_DEVFN(EMMC, 0) +#define PCH_DEV_EMMC _PCH_DEV(EMMC, 0) +#endif + #define PCH_DEV_SLOT_PCIE 0x1c #define PCH_DEVFN_PCIE1 _PCH_DEVFN(PCIE, 0) #define PCH_DEVFN_PCIE2 _PCH_DEVFN(PCIE, 1)