Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/83429?usp=email )
Change subject: mb/emulation/qemu-q35/memmap: Remove redefine macros ......................................................................
mb/emulation/qemu-q35/memmap: Remove redefine macros
SMRAMC, C_BASE_SEG, G_SMRAME, D_LCK, D_CLS, D_OPEN, ESMRAMC, T_EN, TSEG_SZ_MASK and H_SMRAME are already defined in included "q35.h" file.
Change-Id: Ic3c01cca14749f77adecc327a78ac011ba3f4c0b Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/mainboard/emulation/qemu-q35/memmap.c 1 file changed, 0 insertions(+), 9 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/29/83429/1
diff --git a/src/mainboard/emulation/qemu-q35/memmap.c b/src/mainboard/emulation/qemu-q35/memmap.c index 150ea11..9b391d6 100644 --- a/src/mainboard/emulation/qemu-q35/memmap.c +++ b/src/mainboard/emulation/qemu-q35/memmap.c @@ -36,16 +36,7 @@
/* QEMU-specific register */ #define EXT_TSEG_MBYTES 0x50 -#define SMRAMC 0x9d #define C_BASE_SEG ((0 << 2) | (1 << 1) | (0 << 0)) -#define G_SMRAME (1 << 3) -#define D_LCK (1 << 4) -#define D_CLS (1 << 5) -#define D_OPEN (1 << 6) -#define ESMRAMC 0x9e -#define T_EN (1 << 0) -#define TSEG_SZ_MASK (3 << 1) -#define H_SMRAME (1 << 7)
/* Decodes TSEG region size to bytes. */ static size_t decode_tseg_size(u8 esmramc)