soc/amd/psp_smm_gen2.c: Fix 64bit mode integer conversion

Explicitly cast integers to fix building for long mode.

Change-Id: I9f56e183563c943d1c2bd0478c41a80512b47c5e
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69507
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Arthur Heymans 2022-11-12 18:06:15 +01:00 committed by Felix Held
parent 62eb94c9d3
commit 17e68572ca
1 changed files with 3 additions and 2 deletions

View File

@ -4,6 +4,7 @@
#include <amdblocks/acpimmio.h>
#include <amdblocks/psp.h>
#include <amdblocks/smi.h>
#include <stdint.h>
void soc_fill_smm_trig_info(struct smm_trigger_info *trig)
{
@ -13,8 +14,8 @@ void soc_fill_smm_trig_info(struct smm_trigger_info *trig)
trig->address = (uintptr_t)acpimmio_smi + SMI_REG_SMITRIG0;
trig->address_type = SMM_TRIGGER_MEM;
trig->value_width = SMM_TRIGGER_DWORD;
trig->value_and_mask = ~SMITRIG0_PSP;
trig->value_or_mask = SMITRIG0_PSP;
trig->value_and_mask = (uint32_t)~SMITRIG0_PSP;
trig->value_or_mask = (uint32_t)SMITRIG0_PSP;
}
void soc_fill_smm_reg_info(struct smm_register_info *reg)