soc/intel: Fix compilation on x86_64
Change-Id: I18a0c18fe1c64611f95bc423916447c89585db9f Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49080 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Subrata Banik <subrata.banik@intel.com>
This commit is contained in:
parent
1254e370cc
commit
4d4953b261
|
@ -18,10 +18,10 @@
|
|||
#define TOLUD 0xbc /* Top of Low Used Memory */
|
||||
|
||||
/* MCHBAR */
|
||||
#define MCHBAR8(x) (*(volatile u8 *)(MCH_BASE_ADDRESS + x))
|
||||
#define MCHBAR16(x) (*(volatile u16 *)(MCH_BASE_ADDRESS + x))
|
||||
#define MCHBAR32(x) (*(volatile u32 *)(MCH_BASE_ADDRESS + x))
|
||||
#define MCHBAR64(x) (*(volatile u64 *)(MCH_BASE_ADDRESS + x))
|
||||
#define MCHBAR8(x) (*(volatile u8 *)(uintptr_t)(MCH_BASE_ADDRESS + x))
|
||||
#define MCHBAR16(x) (*(volatile u16 *)(uintptr_t)(MCH_BASE_ADDRESS + x))
|
||||
#define MCHBAR32(x) (*(volatile u32 *)(uintptr_t)(MCH_BASE_ADDRESS + x))
|
||||
#define MCHBAR64(x) (*(volatile u64 *)(uintptr_t)(MCH_BASE_ADDRESS + x))
|
||||
|
||||
/* Perform System Agent Initialization during Bootblock phase */
|
||||
void bootblock_systemagent_early_init(void);
|
||||
|
|
Loading…
Reference in New Issue