From a3544e47fba2fc4e9e9547bd57bcd08aa10b9442 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 9 Feb 2021 01:11:09 +0100 Subject: soc/amd: Move southbridge_smi_set_eos to common/blocks/smi/smi_util MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kyösti Mälkki Signed-off-by: Felix Held Change-Id: I69466143315c1c9870a97c9ef8f68ed85f38e779 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50415 Reviewed-by: Marshall Dawson Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- src/soc/amd/common/block/smi/smi_util.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/soc/amd/common/block/smi') diff --git a/src/soc/amd/common/block/smi/smi_util.c b/src/soc/amd/common/block/smi/smi_util.c index 1e4561d7a5..e3379f35fd 100644 --- a/src/soc/amd/common/block/smi/smi_util.c +++ b/src/soc/amd/common/block/smi/smi_util.c @@ -65,6 +65,13 @@ void global_smi_enable(void) smi_write32(SMI_REG_SMITRIG0, reg); } +void southbridge_smi_set_eos(void) +{ + uint32_t reg = smi_read32(SMI_REG_SMITRIG0); + reg |= SMITRG0_EOS; + smi_write32(SMI_REG_SMITRIG0, reg); +} + void soc_route_sci(uint8_t event) { smi_write8(SMI_SCI_MAP(event), event); -- cgit v1.2.3