From 522a1b526b31c66aed2d75e99dd810dc5a136bbf Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Thu, 10 Jan 2019 12:19:01 +0100 Subject: mb/lenovo/[xtz]60: Introduce and use RCBA64 macro Change-Id: I85ca631dfb01acb92dd1ac38dff07215114cab8c Signed-off-by: Peter Lemenkov Reviewed-on: https://review.coreboot.org/c/30802 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans --- src/southbridge/intel/common/rcba.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/southbridge') diff --git a/src/southbridge/intel/common/rcba.h b/src/southbridge/intel/common/rcba.h index e7482f9bdb..225cd26086 100644 --- a/src/southbridge/intel/common/rcba.h +++ b/src/southbridge/intel/common/rcba.h @@ -28,6 +28,7 @@ #define RCBA8(x) (*((volatile u8 *)(DEFAULT_RCBA + x))) #define RCBA16(x) (*((volatile u16 *)(DEFAULT_RCBA + x))) #define RCBA32(x) (*((volatile u32 *)(DEFAULT_RCBA + x))) +#define RCBA64(x) (*((volatile u64 *)(DEFAULT_RCBA + x))) #define RCBA_AND_OR(bits, x, and, or) \ (RCBA##bits(x) = ((RCBA##bits(x) & (and)) | (or))) -- cgit v1.2.3