diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-15 06:15:46 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2016-06-17 00:22:10 +0200 |
commit | d72cc4111b81497356b0cb5d4c305ae9e460a9b5 (patch) | |
tree | f27426f4bb9067d29426997089968b283c09d90a /src/include | |
parent | a969ed34dbaebc595e298f60810669f0e8a3bcd2 (diff) |
intel/model_206ax: Move platform specific defines
Change-Id: I3c517fc55dd333b1a457324f1d69aeb6f70acec2
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/15197
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/cbmem.h | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/include/cbmem.h b/src/include/cbmem.h index 2182ce7a46..5b75db0342 100644 --- a/src/include/cbmem.h +++ b/src/include/cbmem.h @@ -19,18 +19,12 @@ #include <commonlib/cbmem_id.h> #include <rules.h> -/* Delegation of resume backup memory so we don't have to - * (slowly) handle backing up OS memory in romstage.c - */ -#define CBMEM_BOOT_MODE 0x610 -#define CBMEM_RESUME_BACKUP 0x614 -#define CBMEM_FSP_HOB_PTR 0x614 - -#ifndef __ASSEMBLER__ #include <stddef.h> #include <stdint.h> #include <boot/coreboot_tables.h> +#define CBMEM_FSP_HOB_PTR 0x614 + struct cbmem_entry; /* @@ -151,7 +145,4 @@ void set_top_of_ram(uint64_t ramtop); void backup_top_of_ram(uint64_t ramtop); #endif -#endif /* __ASSEMBLER__ */ - - #endif /* _CBMEM_H_ */ |