soc/intel/fsp_broadwell_de: Move FSP_DEBUG_LEVEL option here
It is not mentioned in the FSP spec and doesn't seem to be implemented for any other FSP than the Broadwell-DE one. Change-Id: I87c758204f1aabf13f47de19fd87c6e1ed67258e Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/31300 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
f14445c145
commit
0d25e5ac67
|
@ -34,17 +34,6 @@ config DCACHE_RAM_SIZE
|
||||||
hex
|
hex
|
||||||
default 0x4000
|
default 0x4000
|
||||||
|
|
||||||
config FSP_1_0_DEBUG_LEVEL
|
|
||||||
int "FSP debug level (0-3)"
|
|
||||||
default 0
|
|
||||||
range 0 3
|
|
||||||
help
|
|
||||||
Select the debug level, where:
|
|
||||||
0: DISABLED
|
|
||||||
1: MINIMUM
|
|
||||||
2: NORMAL
|
|
||||||
3: MAXIMUM
|
|
||||||
|
|
||||||
config FSP_HEADER_PATH
|
config FSP_HEADER_PATH
|
||||||
string "Location of FSP headers"
|
string "Location of FSP headers"
|
||||||
help
|
help
|
||||||
|
|
|
@ -127,3 +127,14 @@ config FSP_EHCI2_ENABLE
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
Enable EHCI controller 2
|
Enable EHCI controller 2
|
||||||
|
|
||||||
|
config FSP_DEBUG_LEVEL
|
||||||
|
int "FSP debug level (0-3)"
|
||||||
|
default 0
|
||||||
|
range 0 3
|
||||||
|
help
|
||||||
|
Select the debug level, where:
|
||||||
|
0: DISABLED
|
||||||
|
1: MINIMUM
|
||||||
|
2: NORMAL
|
||||||
|
3: MAXIMUM
|
||||||
|
|
|
@ -69,7 +69,7 @@ static void ConfigureDefaultUpdData(UPD_DATA_REGION *UpdData)
|
||||||
if (!IS_ENABLED(CONFIG_CONSOLE_SERIAL))
|
if (!IS_ENABLED(CONFIG_CONSOLE_SERIAL))
|
||||||
UpdData->SerialPortType = 0;
|
UpdData->SerialPortType = 0;
|
||||||
|
|
||||||
UpdData->DebugOutputLevel = CONFIG_FSP_1_0_DEBUG_LEVEL;
|
UpdData->DebugOutputLevel = CONFIG_FSP_DEBUG_LEVEL;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Memory Down
|
* Memory Down
|
||||||
|
|
Loading…
Reference in New Issue