diff options
Diffstat (limited to 'src/southbridge/amd/cimx')
-rw-r--r-- | src/southbridge/amd/cimx/sb700/lpc.c | 3 | ||||
-rw-r--r-- | src/southbridge/amd/cimx/sb800/ramtop.c | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/southbridge/amd/cimx/sb700/lpc.c b/src/southbridge/amd/cimx/sb700/lpc.c index 75a3fb97da..f730e286cc 100644 --- a/src/southbridge/amd/cimx/sb700/lpc.c +++ b/src/southbridge/amd/cimx/sb700/lpc.c @@ -24,6 +24,8 @@ #include <console/console.h> /* printk */ #include <cbmem.h> +#if IS_ENABLED(CONFIG_LATE_CBMEM_INIT) + #define BIOSRAM_INDEX 0xcd4 #define BIOSRAM_DATA 0xcd5 @@ -37,6 +39,7 @@ void backup_top_of_ram(uint64_t ramtop) nvram_pos++; } } +#endif void lpc_read_resources(device_t dev) { diff --git a/src/southbridge/amd/cimx/sb800/ramtop.c b/src/southbridge/amd/cimx/sb800/ramtop.c index 7e9abaeced..0d811ab72c 100644 --- a/src/southbridge/amd/cimx/sb800/ramtop.c +++ b/src/southbridge/amd/cimx/sb800/ramtop.c @@ -30,6 +30,8 @@ int acpi_get_sleep_type(void) return (int)tmp; } +#if IS_ENABLED(CONFIG_LATE_CBMEM_INIT) + #ifndef __PRE_RAM__ void backup_top_of_ram(uint64_t ramtop) { @@ -57,3 +59,5 @@ unsigned long get_top_of_ram(void) } return (unsigned long) xdata; } + +#endif |