diff options
author | Subrata Banik <subratabanik@google.com> | 2023-02-28 06:15:02 +0000 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-03-09 13:38:07 +0000 |
commit | fe514552dd72af2e855cf37eecd1ed59dd41ba61 (patch) | |
tree | 2553263ca9d1ec98337abe99b1c8e8105df2ba4c /src/soc/intel/common/block/include | |
parent | 8fd957b4b82a5ca36258c580bb34518a3e81dd1c (diff) |
soc/intel: Update API name `pmc_send_bios_reset_pci_enum_done`
This patch updates PMC API name from `pmc_send_pci_enum_done` to
`pmc_send_bios_reset_pci_enum_done` to inform PMC IPC about BIOS done
is also set along with PMC enumeration being done.
BUG=b:270942083
TEST=Able to build and boot google/rex.
Change-Id: I1cf8cb1ecadeb68c109be6b0e751a3f2c448ae4f
Signed-off-by: Subrata Banik <subratabanik@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73332
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sukumar Ghorai <sukumar.ghorai@intel.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Diffstat (limited to 'src/soc/intel/common/block/include')
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/pmclib.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/pmclib.h b/src/soc/intel/common/block/include/intelblocks/pmclib.h index 11ab86d47a..d3485a5998 100644 --- a/src/soc/intel/common/block/include/intelblocks/pmclib.h +++ b/src/soc/intel/common/block/include/intelblocks/pmclib.h @@ -28,8 +28,11 @@ enum pch_pmc_xtal { */ enum pch_pmc_xtal pmc_get_xtal_freq(void); -/* pmc_send_pci_enum_done() - send PMC IPC to inform PCI enumeration is done. */ -void pmc_send_pci_enum_done(void); +/* + * pmc_send_pci_enum_done() - send PMC IPC to inform both BIOS Reset + * and PCI enumeration is done. + */ +void pmc_send_bios_reset_pci_enum_done(void); /* Forward declare the power state struct here */ struct chipset_power_state; |