diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-12-06 21:50:55 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2013-12-23 10:35:39 +0100 |
commit | 50ecb9c11131a31bc6f0d0e0b5fcbd5aab36e5e0 (patch) | |
tree | 0a5ae0f9b4dadebe761bf8865e69fae2372a2d3a /src/console | |
parent | d26da9c8f0794f473f476a69821abffb52996237 (diff) |
usbdebug: Add option to disable console for romstage
If there is trouble setting up usbdebug, it may be useful to delay
usbdebug init to run in ramstage.
Change-Id: I31de5a06d3f9ce19f71c422cce0c8cb0fd50f396
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/4488
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@google.com>
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/Kconfig | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/console/Kconfig b/src/console/Kconfig index cd923ae5b8..40903c1c16 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -173,12 +173,18 @@ config USBDEBUG If unsure, say N. +if USBDEBUG + config USBDEBUG_IN_ROMSTAGE - bool - default y if USBDEBUG && EARLY_CBMEM_INIT && EARLY_CONSOLE - default n + bool "Enable early (pre-RAM) usbdebug console output." + default y + depends on EARLY_CBMEM_INIT && EARLY_CONSOLE + help + Configuring USB controllers in system-agent binary may cause + problems to usbdebug. Disabling this option delays usbdebug to + be setup on entry to ramstage. -if USBDEBUG + If unsure, say Y. config USBDEBUG_HCD_INDEX int |