diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-06-08 15:48:14 +0300 |
---|---|---|
committer | Nico Huber <nico.huber@secunet.com> | 2013-06-14 18:18:56 +0200 |
commit | e49679d5a1e6a6225980a9ae8455fef47e56ab12 (patch) | |
tree | 644843da8a036163ef3948b89b71fadfe3a902eb /src/cpu/amd/model_fxx | |
parent | f55a54257a28d4d0444baa03b5699f73fc6cd05e (diff) |
usbdebug: Drop temporary disables of log output
With this patch, output on usbdebug also includes the section of
MTRR setups for every CPU. This makes usbdebug output almost identical
with that of serial port and CBMEM console.
Tested with model_206ax. Also tested previously on model_f2x which does
not have these disable/enable calls in model_f2x_init() without detected issues.
Change-Id: Idfd0e93439907b17255633658195d698feab3895
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/3423
Reviewed-by: Aaron Durbin <adurbin@google.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/cpu/amd/model_fxx')
-rw-r--r-- | src/cpu/amd/model_fxx/model_fxx_init.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/cpu/amd/model_fxx/model_fxx_init.c b/src/cpu/amd/model_fxx/model_fxx_init.c index d053894d68..a18b982bdb 100644 --- a/src/cpu/amd/model_fxx/model_fxx_init.c +++ b/src/cpu/amd/model_fxx/model_fxx_init.c @@ -456,31 +456,17 @@ static inline void k8_errata(void) } -#if CONFIG_USBDEBUG -static unsigned ehci_debug_addr; -#endif - static void model_fxx_init(device_t dev) { unsigned long i; msr_t msr; struct node_core_id id; -#if CONFIG_USBDEBUG - if (!ehci_debug_addr) - ehci_debug_addr = get_ehci_debug(); - set_ehci_debug(0); -#endif - /* Turn on caching if we haven't already */ x86_enable_cache(); amd_setup_mtrrs(); x86_mtrr_check(); -#if CONFIG_USBDEBUG - set_ehci_debug(ehci_debug_addr); -#endif - /* Update the microcode */ model_fxx_update_microcode(dev->device); |