diff --git a/src/soc/intel/alderlake/Makefile.inc b/src/soc/intel/alderlake/Makefile.inc index 3ab4d9dcbb..6962ab2695 100644 --- a/src/soc/intel/alderlake/Makefile.inc +++ b/src/soc/intel/alderlake/Makefile.inc @@ -22,6 +22,7 @@ romstage-y += gpio.c romstage-y += meminit.c romstage-y += pcie_rp.c romstage-y += reset.c +romstage-y += cpu.c ramstage-y += acpi.c ramstage-y += chip.c diff --git a/src/soc/intel/alderlake/cpu.c b/src/soc/intel/alderlake/cpu.c index be115274c2..41b69ef39a 100644 --- a/src/soc/intel/alderlake/cpu.c +++ b/src/soc/intel/alderlake/cpu.c @@ -34,7 +34,7 @@ static void configure_misc(void) { msr_t msr; - config_t *conf = config_of_soc(); + const config_t *conf = config_of_soc(); msr = rdmsr(IA32_MISC_ENABLE); msr.lo |= (1 << 0); /* Fast String enable */ diff --git a/src/soc/intel/alderlake/pcie_rp.c b/src/soc/intel/alderlake/pcie_rp.c index 4ec24c265c..dd0cfbc637 100644 --- a/src/soc/intel/alderlake/pcie_rp.c +++ b/src/soc/intel/alderlake/pcie_rp.c @@ -1,6 +1,8 @@ /* SPDX-License-Identifier: GPL-2.0-only */ +#include #include +#include #include #include @@ -10,9 +12,18 @@ static const struct pcie_rp_group pch_lp_rp_groups[] = { { 0 } }; +static const struct pcie_rp_group pch_m_rp_groups[] = { + { .slot = PCH_DEV_SLOT_PCIE, .count = 8 }, + { .slot = PCH_DEV_SLOT_PCIE_1, .count = 2 }, + { 0 } +}; + const struct pcie_rp_group *get_pch_pcie_rp_table(void) { - return pch_lp_rp_groups; + if (CONFIG(SOC_INTEL_ALDERLAKE_PCH_M)) + return pch_m_rp_groups; + + return pch_lp_rp_groups; /* Valid for PCH-P and PCH-N */ } /* @@ -28,7 +39,55 @@ static const struct pcie_rp_group cpu_rp_groups[] = { { 0 } }; +static const struct pcie_rp_group cpu_m_rp_groups[] = { + { .slot = SA_DEV_SLOT_CPU_6, .start = 0, .count = 1 }, + { 0 } +}; + +static const struct pcie_rp_group cpu_n_rp_groups[] = { + { 0 } +}; + const struct pcie_rp_group *get_cpu_pcie_rp_table(void) { + if (CONFIG(SOC_INTEL_ALDERLAKE_PCH_M)) + return cpu_m_rp_groups; + + if (CONFIG(SOC_INTEL_ALDERLAKE_PCH_N)) + return cpu_n_rp_groups; + return cpu_rp_groups; } + +static bool is_part_of_group(const struct device *dev, + const struct pcie_rp_group *groups) +{ + if (dev->path.type != DEVICE_PATH_PCI) + return false; + + const unsigned int slot_to_find = PCI_SLOT(dev->path.pci.devfn); + const unsigned int fn_to_find = PCI_FUNC(dev->path.pci.devfn); + const struct pcie_rp_group *group; + unsigned int i; + unsigned int fn; + + for (group = groups; group->count; ++group) { + for (i = 0, fn = rp_start_fn(group); i < group->count; i++, fn++) { + if (slot_to_find == group->slot && fn_to_find == fn) + return true; + } + } + + return false; +} + +enum pcie_rp_type soc_get_pcie_rp_type(const struct device *dev) +{ + if (is_part_of_group(dev, pch_lp_rp_groups)) + return PCIE_RP_PCH; + + if (CONFIG_MAX_CPU_ROOT_PORTS && is_part_of_group(dev, cpu_rp_groups)) + return PCIE_RP_CPU; + + return PCIE_RP_UNKNOWN; +}