From c8fa130a1a0ff0070b6ad57b2e8cf1b6aa282076 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Thu, 30 Jan 2025 21:53:56 +0000 Subject: [PATCH] mb/starlabs/starbook/mtl: Show ASPM related options in CFR Meteor Lake uses the same helper functon as Alder Lake, so it can be configured via the opton API. Change-Id: I6d1dc802e672431aa643e318a7cb045f7d6eaa06 Signed-off-by: Sean Rhodes Reviewed-on: https://review.coreboot.org/c/coreboot/+/86239 Reviewed-by: Matt DeVillier Tested-by: build bot (Jenkins) --- src/mainboard/starlabs/starbook/cfr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mainboard/starlabs/starbook/cfr.c b/src/mainboard/starlabs/starbook/cfr.c index 7316f2a931..82488fe660 100644 --- a/src/mainboard/starlabs/starbook/cfr.c +++ b/src/mainboard/starlabs/starbook/cfr.c @@ -200,7 +200,7 @@ static const struct sm_object pci_hot_plug = SM_DECLARE_BOOL({ }); #endif -#if CONFIG(SOC_INTEL_ALDERLAKE) +#if CONFIG(SOC_INTEL_ALDERLAKE) || CONFIG(SOC_INTEL_METEORLAKE) static const struct sm_object pciexp_aspm = SM_DECLARE_ENUM({ .opt_name = "pciexp_aspm", .ui_name = "PCI ASPM", @@ -351,7 +351,7 @@ static struct sm_obj_form pci = { #if CONFIG(BOARD_STARLABS_STARBOOK_ADL) &pci_hot_plug, #endif - #if CONFIG(SOC_INTEL_ALDERLAKE) + #if CONFIG(SOC_INTEL_ALDERLAKE) || CONFIG(SOC_INTEL_METEORLAKE) &pciexp_clk_pm, &pciexp_aspm, &pciexp_l1ss,