cpu/amd/car: remove PRINTK_IN_CAR #define that was hardcoded to 1

Change-Id: I5139ee222a0dca7f8e62612a39d30cad7976b505
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/12184
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
Timothy Pearson 2015-10-24 14:09:49 -05:00 committed by Peter Stuge
parent 1c4508e77c
commit d657446884
1 changed files with 7 additions and 17 deletions

View File

@ -16,12 +16,10 @@
#error "You need to set CONFIG_RAMTOP greater than 1M" #error "You need to set CONFIG_RAMTOP greater than 1M"
#endif #endif
#define PRINTK_IN_CAR 1 #if IS_ENABLED(CONFIG_DEBUG_CAR)
#define print_car_debug(format, arg...) printk(BIOS_DEBUG, "%s: " format, __func__, ##arg)
#if PRINTK_IN_CAR
#define print_car_debug(x) printk(BIOS_DEBUG, x)
#else #else
#define print_car_debug(x) #define print_car_debug(format, arg...)
#endif #endif
static size_t backup_size(void) static size_t backup_size(void)
@ -32,27 +30,21 @@ static size_t backup_size(void)
static void memcpy_(void *d, const void *s, size_t len) static void memcpy_(void *d, const void *s, size_t len)
{ {
#if PRINTK_IN_CAR print_car_debug(" Copy [%08x-%08x] to [%08x - %08x] ... ",
printk(BIOS_SPEW, " Copy [%08x-%08x] to [%08x - %08x] ... ",
(u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1)); (u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1));
#endif
memcpy(d, s, len); memcpy(d, s, len);
} }
static void memset_(void *d, int val, size_t len) static void memset_(void *d, int val, size_t len)
{ {
#if PRINTK_IN_CAR print_car_debug(" Fill [%08x-%08x] ... ", (u32) d, (u32) (d + len - 1));
printk(BIOS_SPEW, " Fill [%08x-%08x] ... ", (u32) d, (u32) (d + len - 1));
#endif
memset(d, val, len); memset(d, val, len);
} }
static int memcmp_(void *d, const void *s, size_t len) static int memcmp_(void *d, const void *s, size_t len)
{ {
#if PRINTK_IN_CAR print_car_debug(" Compare [%08x-%08x] with [%08x - %08x] ... ",
printk(BIOS_SPEW, " Compare [%08x-%08x] with [%08x - %08x] ... ",
(u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1)); (u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1));
#endif
return memcmp(d, s, len); return memcmp(d, s, len);
} }
@ -137,9 +129,7 @@ void cache_as_ram_new_stack (void)
{ {
void *resume_backup_memory = NULL; void *resume_backup_memory = NULL;
#if PRINTK_IN_CAR print_car_debug("Top about %08x ... Done\n", (u32) &resume_backup_memory);
printk(BIOS_DEBUG, "Top about %08x ... Done\n", (u32) &resume_backup_memory);
#endif
print_car_debug("Disabling cache as ram now\n"); print_car_debug("Disabling cache as ram now\n");
disable_cache_as_ram_bsp(); disable_cache_as_ram_bsp();