Add support for an "NVRAM Dump" screen in coreinfo (optional), as well as for
authorUwe Hermann <uwe@hermann-uwe.de>
Mon, 31 Mar 2008 20:30:18 +0000 (20:30 +0000)
committerUwe Hermann <uwe@hermann-uwe.de>
Mon, 31 Mar 2008 20:30:18 +0000 (20:30 +0000)
displaying the current date/time in the lower-right corner (optional).

Also, only build/use coreinfo modules which were selected in kconfig. This
makes coreinfo truly modular, and you can save quite a bit of ROM space
by disabling unwanted parts of coreinfo.

Finally, simplify the Makefile a bit by getting rid of MODULES (and only
using OBJECTS).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Jordan Crouse <jordan.crouse@amd.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3203 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

payloads/coreinfo/Kconfig
payloads/coreinfo/Makefile
payloads/coreinfo/coreboot_module.c
payloads/coreinfo/coreinfo.c
payloads/coreinfo/coreinfo.h
payloads/coreinfo/cpuinfo_module.c
payloads/coreinfo/nvram_module.c [new file with mode: 0644]
payloads/coreinfo/pci_module.c

index 014d6d22b0073172856e17fef3d1119205b428a1..1f4a597a32f6897e4e4effef5d236754fb0a577d 100644 (file)
 
 mainmenu "coreinfo Configuration"
 
-menu "Modules"
+menu "General settings"
+
+# TODO: Needs changes in coreinfo, won't update without keypress currently.
+config SHOW_DATE_TIME
+       bool "Show current date/time in the menu"
+       default y
+       help
+         Show the current date and time in the lower-right corner of
+         the coreinfo menu.
+
+endmenu
 
-# TODO: Currently none of these options has any effect.
+menu "Modules"
 
 config MODULE_COREBOOT
        bool "Enable the coreboot module"
@@ -40,5 +50,9 @@ config MODULE_PCI
        bool "Enable the PCI info module"
        default y
 
+config MODULE_NVRAM
+       bool "Enable the NVRAM dump module"
+       default y
+
 endmenu
 
index f22170946cb2326e2a28f4bdf7f503bfa0eabeb8..a05edbc051a459bdbd5986686215a6e16594e036 100644 (file)
@@ -46,15 +46,15 @@ HOSTCXXFLAGS := -I$(srck) -I$(objk)
 
 CC = gcc
 CROSS_CFLAGS = -m32
-INCLUDES = -I../libpayload/include \
+INCLUDES = -I../libpayload/include -Ibuild \
           -I$(shell $(CC) $(CROSS_CFLAGS) -print-search-dirs | \
           head -n 1 | cut -d' ' -f2)include
 LIBPAYLOAD = ../libpayload/libpayload.a
 LIBGCC := $(shell $(CC) $(CROSS_CFLAGS) -print-libgcc-file-name)
 CFLAGS := -Wall -Werror -Os -fno-stack-protector -nostdinc $(INCLUDES)
-MODULES = cpuinfo_module.o cpuid.S.o pci_module.o coreboot_module.o
-OBJECTS = coreinfo.o
-OBJS    = $(patsubst %,$(obj)/%,$(OBJECTS)) $(patsubst %,$(obj)/%,$(MODULES))
+OBJECTS = cpuinfo_module.o cpuid.S.o pci_module.o coreboot_module.o \
+         nvram_module.o coreinfo.o
+OBJS    = $(patsubst %,$(obj)/%,$(OBJECTS))
 TARGET  = $(obj)/coreinfo.elf
 
 ifeq ($(strip $(HAVE_DOTCONFIG)),)
index e5615b332231aa89c3743a14a4201401ebc11246..16a63c544df74ee975b075459ba716cdd2004ee8 100644 (file)
@@ -20,6 +20,8 @@
 #include <coreboot_tables.h>
 #include "coreinfo.h"
 
+#ifdef CONFIG_MODULE_COREBOOT
+
 #define MAX_MEMORY_COUNT 5
 
 static struct {
@@ -252,3 +254,10 @@ struct coreinfo_module coreboot_module = {
        .init = coreboot_module_init,
        .redraw = coreboot_module_redraw,
 };
+
+#else
+
+struct coreinfo_module coreboot_module = {
+};
+
+#endif
index 09a405d83b06d6757a0f891d1a6948170e371552..a683c8796ae0d25901bbbfa0868718bf1d77f4d4 100644 (file)
 extern struct coreinfo_module cpuinfo_module;
 extern struct coreinfo_module pci_module;
 extern struct coreinfo_module coreboot_module;
+extern struct coreinfo_module nvram_module;
 
 struct coreinfo_module *modules[] = {
+#ifdef CONFIG_MODULE_CPUINFO
        &cpuinfo_module,
+#endif
+#ifdef CONFIG_MODULE_PCI
        &pci_module,
+#endif
+#ifdef CONFIG_MODULE_COREBOOT
        &coreboot_module,
+#endif
+#ifdef CONFIG_MODULE_NVRAM
+       &nvram_module,
+#endif
 };
 
 static WINDOW *modwin;
@@ -63,6 +73,16 @@ static void print_menu(void)
                ptr += sprintf(ptr, "F%d: %s ", i + 1, modules[i]->name);
 
        mvprintw(23, 0, menu);
+
+#ifdef CONFIG_SHOW_DATE_TIME
+       mvprintw(23, 59, "%02d/%02d/20%02d - %02d:%02d:%02d",
+                bcd2dec(nvram_read(NVRAM_RTC_MONTH)),
+                bcd2dec(nvram_read(NVRAM_RTC_DAY)),
+                bcd2dec(nvram_read(NVRAM_RTC_YEAR)),
+                bcd2dec(nvram_read(NVRAM_RTC_HOURS)),
+                bcd2dec(nvram_read(NVRAM_RTC_MINUTES)),
+                bcd2dec(nvram_read(NVRAM_RTC_SECONDS)));
+#endif
 }
 
 static void center(int row, const char *str)
index 4995d7fa36d6a307570b582ac865695ae4c0e50b..90a66d0ac50c3d5acb9bc04388848b2e21f12fe5 100644 (file)
@@ -21,6 +21,7 @@
 #define COREINFO_H_
 
 #include <libpayload.h>
+#include <config.h>
 #include <curses.h>
 
 struct coreinfo_module {
index ace87fec4556bed9f535be4cc77521bc177a79e3..8548a250692aed3b3fdf39ed68daa2d074267872 100644 (file)
@@ -23,6 +23,8 @@
 #include "coreinfo.h"
 #include <arch/rdtsc.h>
 
+#ifdef CONFIG_MODULE_CPUINFO
+
 #define VENDOR_INTEL 0x756e6547
 #define VENDOR_AMD   0x68747541
 #define VENDOR_CYRIX 0x69727943
@@ -267,5 +269,11 @@ struct coreinfo_module cpuinfo_module = {
        .name = "CPU Info",
        .init = cpuinfo_module_init,
        .redraw = cpuinfo_module_redraw,
-       .handle = NULL,
 };
+
+#else
+
+struct coreinfo_module cpuinfo_module = {
+};
+
+#endif
diff --git a/payloads/coreinfo/nvram_module.c b/payloads/coreinfo/nvram_module.c
new file mode 100644 (file)
index 0000000..d6af390
--- /dev/null
@@ -0,0 +1,68 @@
+/*
+ * This file is part of the coreinfo project.
+ *
+ * Copyright (C) 2008 Uwe Hermann <uwe@hermann-uwe.de>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#include "coreinfo.h"
+
+#ifdef CONFIG_MODULE_NVRAM
+
+/**
+ * Dump 256 bytes of NVRAM.
+ */
+static void dump_nvram(WINDOW *win, int row, int col)
+{
+       int i, x = 0, y = 0;
+
+       for (i = 1; i < 257; i++) {
+               mvwprintw(win, row + y, col + x, "%02x ", nvram_read(i - 1));
+               x += 3;
+               if (i % 16 == 0) {
+                       y++;    /* Start a newline after 16 bytes. */
+                       x = 0;
+               }
+               if (i % 64 == 0) {
+                       y++;    /* Add an empty line after 64 bytes. */
+                       x = 0;
+               }
+       }
+}
+
+static int nvram_module_redraw(WINDOW *win)
+{
+       print_module_title(win, "NVRAM Dump");
+       dump_nvram(win, 2, 1);
+       return 0;
+}
+
+static int nvram_module_init(void)
+{
+       return 0;
+}
+
+struct coreinfo_module nvram_module = {
+       .name = "NVRAM",
+       .init = nvram_module_init,
+       .redraw = nvram_module_redraw,
+};
+
+#else
+
+struct coreinfo_module nvram_module = {
+};
+
+#endif
index aa853b5988c58e9ab999060e6bf779db4902f52b..49523f55bc3c7aa7df7e3bbf1b4d9106d3a5c1d8 100644 (file)
@@ -20,6 +20,8 @@
 #include <arch/io.h>
 #include "coreinfo.h"
 
+#ifdef CONFIG_MODULE_PCI
+
 struct pci_devices {
        unsigned short device;
        unsigned int id;
@@ -282,3 +284,10 @@ struct coreinfo_module pci_module = {
        .redraw = pci_module_redraw,
        .handle = pci_module_handle,
 };
+
+#else
+
+struct coreinfo_module pci_module = {
+};
+
+#endif