aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/ocp/deltalake/loglevel_vpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/ocp/deltalake/loglevel_vpd.c')
-rw-r--r--src/mainboard/ocp/deltalake/loglevel_vpd.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mainboard/ocp/deltalake/loglevel_vpd.c b/src/mainboard/ocp/deltalake/loglevel_vpd.c
new file mode 100644
index 0000000000..3faf37a0ea
--- /dev/null
+++ b/src/mainboard/ocp/deltalake/loglevel_vpd.c
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <console/console.h>
+#include <drivers/vpd/vpd.h>
+#include <string.h>
+
+#include "vpd.h"
+
+int get_console_loglevel(void)
+{
+ int log_level = COREBOOT_LOG_LEVEL_DEFAULT;
+ char val_str[VPD_LEN];
+
+ if (vpd_gets(COREBOOT_LOG_LEVEL, val_str, VPD_LEN, VPD_RW_THEN_RO)) {
+ log_level = (int)atol(val_str);
+ if (log_level < 0 || log_level >= BIOS_NEVER)
+ log_level = COREBOOT_LOG_LEVEL_DEFAULT;
+ }
+ return log_level;
+}