summaryrefslogtreecommitdiffstats
path: root/src/drivers/intel/fsp2_0/util.c
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2016-07-31 16:49:28 -0700
committerLee Leahy <leroy.p.leahy@intel.com>2016-08-03 06:20:18 +0200
commitb20d4ba57a04f878815a1355faa6a93d6f14e494 (patch)
tree275b971ecef40e31cab2bf7d1e119d069df8f975 /src/drivers/intel/fsp2_0/util.c
parent94e502be7aa19d2375e186cceaa771a77818bf9e (diff)
downloadcoreboot-b20d4ba57a04f878815a1355faa6a93d6f14e494.tar.gz
coreboot-b20d4ba57a04f878815a1355faa6a93d6f14e494.tar.bz2
coreboot-b20d4ba57a04f878815a1355faa6a93d6f14e494.zip
drivers/intel/fsp2_0: Update the debug levels
Choose appropriate debug levels for the various messages in the FSP driver. Change: * BIOS_DEBUG --> BIOS_SPEW: Normal FSP driver output level, allows builder to disable FSP driver output by selecting CONFIG_DEFAULT_CONSOLE_LOGLEVEL_7 * BIOS_ERROR --> BIOS_CRIT: These errors will prevent coreboot and the payload from successfully booting TEST=Build and run on Galileo Gen2 Change-Id: Ic3352de2022e16482bf47fc953aedeef8f0c2880 Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com> Reviewed-on: https://review.coreboot.org/16003 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/drivers/intel/fsp2_0/util.c')
-rw-r--r--src/drivers/intel/fsp2_0/util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/intel/fsp2_0/util.c b/src/drivers/intel/fsp2_0/util.c
index bab060159d70..aaa239eec1c2 100644
--- a/src/drivers/intel/fsp2_0/util.c
+++ b/src/drivers/intel/fsp2_0/util.c
@@ -68,13 +68,13 @@ enum cb_err fsp_validate_component(struct fsp_header *hdr,
membase = rdev_mmap(rdev, FSP_HDR_OFFSET, FSP_HDR_LEN);
if (membase == NULL) {
- printk(BIOS_ERR, "Could not mmap() FSP header.\n");
+ printk(BIOS_CRIT, "Could not mmap() FSP header.\n");
return CB_ERR;
}
if (fsp_identify(hdr, membase) != CB_SUCCESS) {
rdev_munmap(rdev, membase);
- printk(BIOS_ERR, "No valid FSP header\n");
+ printk(BIOS_CRIT, "No valid FSP header\n");
return CB_ERR;
}
@@ -85,7 +85,7 @@ enum cb_err fsp_validate_component(struct fsp_header *hdr,
/* Check if size specified in the header matches the cbfs file size */
if (region_device_sz(rdev) < hdr->image_size) {
- printk(BIOS_ERR, "Component size bigger than cbfs file.\n");
+ printk(BIOS_CRIT, "Component size bigger than cbfs file.\n");
return CB_ERR;
}
@@ -103,7 +103,7 @@ void fsp_handle_reset(enum fsp_status status)
if (!fsp_reset_requested(status))
return;
- printk(BIOS_DEBUG, "FSP: handling reset type %x\n", status);
+ printk(BIOS_SPEW, "FSP: handling reset type %x\n", status);
switch(status) {
case FSP_STATUS_RESET_REQUIRED_COLD: