From ab5b3e0d985cdfb0d882f52b73a77c6f551918f3 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Mon, 31 Mar 2008 20:30:18 +0000 Subject: Add support for an "NVRAM Dump" screen in coreinfo (optional), as well as for 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 Acked-by: Jordan Crouse git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3203 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- payloads/coreinfo/Kconfig | 18 ++++++++-- payloads/coreinfo/Makefile | 8 ++--- payloads/coreinfo/coreboot_module.c | 9 +++++ payloads/coreinfo/coreinfo.c | 20 +++++++++++ payloads/coreinfo/coreinfo.h | 1 + payloads/coreinfo/cpuinfo_module.c | 10 +++++- payloads/coreinfo/nvram_module.c | 68 +++++++++++++++++++++++++++++++++++++ payloads/coreinfo/pci_module.c | 9 +++++ 8 files changed, 136 insertions(+), 7 deletions(-) create mode 100644 payloads/coreinfo/nvram_module.c (limited to 'payloads/coreinfo') diff --git a/payloads/coreinfo/Kconfig b/payloads/coreinfo/Kconfig index 014d6d22b0..1f4a597a32 100644 --- a/payloads/coreinfo/Kconfig +++ b/payloads/coreinfo/Kconfig @@ -24,9 +24,19 @@ 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 diff --git a/payloads/coreinfo/Makefile b/payloads/coreinfo/Makefile index f22170946c..a05edbc051 100644 --- a/payloads/coreinfo/Makefile +++ b/payloads/coreinfo/Makefile @@ -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)),) diff --git a/payloads/coreinfo/coreboot_module.c b/payloads/coreinfo/coreboot_module.c index e5615b3322..16a63c544d 100644 --- a/payloads/coreinfo/coreboot_module.c +++ b/payloads/coreinfo/coreboot_module.c @@ -20,6 +20,8 @@ #include #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 diff --git a/payloads/coreinfo/coreinfo.c b/payloads/coreinfo/coreinfo.c index 09a405d83b..a683c8796a 100644 --- a/payloads/coreinfo/coreinfo.c +++ b/payloads/coreinfo/coreinfo.c @@ -25,11 +25,21 @@ 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) diff --git a/payloads/coreinfo/coreinfo.h b/payloads/coreinfo/coreinfo.h index 4995d7fa36..90a66d0ac5 100644 --- a/payloads/coreinfo/coreinfo.h +++ b/payloads/coreinfo/coreinfo.h @@ -21,6 +21,7 @@ #define COREINFO_H_ #include +#include #include struct coreinfo_module { diff --git a/payloads/coreinfo/cpuinfo_module.c b/payloads/coreinfo/cpuinfo_module.c index ace87fec45..8548a25069 100644 --- a/payloads/coreinfo/cpuinfo_module.c +++ b/payloads/coreinfo/cpuinfo_module.c @@ -23,6 +23,8 @@ #include "coreinfo.h" #include +#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 index 0000000000..d6af39016e --- /dev/null +++ b/payloads/coreinfo/nvram_module.c @@ -0,0 +1,68 @@ +/* + * This file is part of the coreinfo project. + * + * Copyright (C) 2008 Uwe Hermann + * + * 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 diff --git a/payloads/coreinfo/pci_module.c b/payloads/coreinfo/pci_module.c index aa853b5988..49523f55bc 100644 --- a/payloads/coreinfo/pci_module.c +++ b/payloads/coreinfo/pci_module.c @@ -20,6 +20,8 @@ #include #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 -- cgit v1.2.3