From d657446884858ff11b08efbe35921c0b2b49f066 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 24 Oct 2015 14:09:49 -0500 Subject: cpu/amd/car: remove PRINTK_IN_CAR #define that was hardcoded to 1 Change-Id: I5139ee222a0dca7f8e62612a39d30cad7976b505 Signed-off-by: Timothy Pearson Reviewed-on: http://review.coreboot.org/12184 Reviewed-by: Alexandru Gagniuc Tested-by: build bot (Jenkins) Reviewed-by: Peter Stuge --- src/cpu/amd/car/post_cache_as_ram.c | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/src/cpu/amd/car/post_cache_as_ram.c b/src/cpu/amd/car/post_cache_as_ram.c index 230d1aa65ed0..116167b418a3 100644 --- a/src/cpu/amd/car/post_cache_as_ram.c +++ b/src/cpu/amd/car/post_cache_as_ram.c @@ -16,12 +16,10 @@ #error "You need to set CONFIG_RAMTOP greater than 1M" #endif -#define PRINTK_IN_CAR 1 - -#if PRINTK_IN_CAR -#define print_car_debug(x) printk(BIOS_DEBUG, x) +#if IS_ENABLED(CONFIG_DEBUG_CAR) +#define print_car_debug(format, arg...) printk(BIOS_DEBUG, "%s: " format, __func__, ##arg) #else -#define print_car_debug(x) +#define print_car_debug(format, arg...) #endif 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) { -#if PRINTK_IN_CAR - printk(BIOS_SPEW, " Copy [%08x-%08x] to [%08x - %08x] ... ", + print_car_debug(" Copy [%08x-%08x] to [%08x - %08x] ... ", (u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1)); -#endif memcpy(d, s, len); } static void memset_(void *d, int val, size_t len) { -#if PRINTK_IN_CAR - printk(BIOS_SPEW, " Fill [%08x-%08x] ... ", (u32) d, (u32) (d + len - 1)); -#endif + print_car_debug(" Fill [%08x-%08x] ... ", (u32) d, (u32) (d + len - 1)); memset(d, val, len); } static int memcmp_(void *d, const void *s, size_t len) { -#if PRINTK_IN_CAR - printk(BIOS_SPEW, " Compare [%08x-%08x] with [%08x - %08x] ... ", + print_car_debug(" Compare [%08x-%08x] with [%08x - %08x] ... ", (u32) s, (u32) (s + len - 1), (u32) d, (u32) (d + len - 1)); -#endif return memcmp(d, s, len); } @@ -137,9 +129,7 @@ void cache_as_ram_new_stack (void) { void *resume_backup_memory = NULL; -#if PRINTK_IN_CAR - printk(BIOS_DEBUG, "Top about %08x ... Done\n", (u32) &resume_backup_memory); -#endif + print_car_debug("Top about %08x ... Done\n", (u32) &resume_backup_memory); print_car_debug("Disabling cache as ram now\n"); disable_cache_as_ram_bsp(); -- cgit v1.2.3