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 <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
This commit is contained in:
@ -24,9 +24,19 @@
|
|||||||
|
|
||||||
mainmenu "coreinfo Configuration"
|
mainmenu "coreinfo Configuration"
|
||||||
|
|
||||||
menu "Modules"
|
menu "General settings"
|
||||||
|
|
||||||
# TODO: Currently none of these options has any effect.
|
# 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
|
||||||
|
|
||||||
|
menu "Modules"
|
||||||
|
|
||||||
config MODULE_COREBOOT
|
config MODULE_COREBOOT
|
||||||
bool "Enable the coreboot module"
|
bool "Enable the coreboot module"
|
||||||
@ -40,5 +50,9 @@ config MODULE_PCI
|
|||||||
bool "Enable the PCI info module"
|
bool "Enable the PCI info module"
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
config MODULE_NVRAM
|
||||||
|
bool "Enable the NVRAM dump module"
|
||||||
|
default y
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
@ -46,15 +46,15 @@ HOSTCXXFLAGS := -I$(srck) -I$(objk)
|
|||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CROSS_CFLAGS = -m32
|
CROSS_CFLAGS = -m32
|
||||||
INCLUDES = -I../libpayload/include \
|
INCLUDES = -I../libpayload/include -Ibuild \
|
||||||
-I$(shell $(CC) $(CROSS_CFLAGS) -print-search-dirs | \
|
-I$(shell $(CC) $(CROSS_CFLAGS) -print-search-dirs | \
|
||||||
head -n 1 | cut -d' ' -f2)include
|
head -n 1 | cut -d' ' -f2)include
|
||||||
LIBPAYLOAD = ../libpayload/libpayload.a
|
LIBPAYLOAD = ../libpayload/libpayload.a
|
||||||
LIBGCC := $(shell $(CC) $(CROSS_CFLAGS) -print-libgcc-file-name)
|
LIBGCC := $(shell $(CC) $(CROSS_CFLAGS) -print-libgcc-file-name)
|
||||||
CFLAGS := -Wall -Werror -Os -fno-stack-protector -nostdinc $(INCLUDES)
|
CFLAGS := -Wall -Werror -Os -fno-stack-protector -nostdinc $(INCLUDES)
|
||||||
MODULES = cpuinfo_module.o cpuid.S.o pci_module.o coreboot_module.o
|
OBJECTS = cpuinfo_module.o cpuid.S.o pci_module.o coreboot_module.o \
|
||||||
OBJECTS = coreinfo.o
|
nvram_module.o coreinfo.o
|
||||||
OBJS = $(patsubst %,$(obj)/%,$(OBJECTS)) $(patsubst %,$(obj)/%,$(MODULES))
|
OBJS = $(patsubst %,$(obj)/%,$(OBJECTS))
|
||||||
TARGET = $(obj)/coreinfo.elf
|
TARGET = $(obj)/coreinfo.elf
|
||||||
|
|
||||||
ifeq ($(strip $(HAVE_DOTCONFIG)),)
|
ifeq ($(strip $(HAVE_DOTCONFIG)),)
|
||||||
|
@ -20,6 +20,8 @@
|
|||||||
#include <coreboot_tables.h>
|
#include <coreboot_tables.h>
|
||||||
#include "coreinfo.h"
|
#include "coreinfo.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_MODULE_COREBOOT
|
||||||
|
|
||||||
#define MAX_MEMORY_COUNT 5
|
#define MAX_MEMORY_COUNT 5
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
@ -252,3 +254,10 @@ struct coreinfo_module coreboot_module = {
|
|||||||
.init = coreboot_module_init,
|
.init = coreboot_module_init,
|
||||||
.redraw = coreboot_module_redraw,
|
.redraw = coreboot_module_redraw,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
struct coreinfo_module coreboot_module = {
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
@ -25,11 +25,21 @@
|
|||||||
extern struct coreinfo_module cpuinfo_module;
|
extern struct coreinfo_module cpuinfo_module;
|
||||||
extern struct coreinfo_module pci_module;
|
extern struct coreinfo_module pci_module;
|
||||||
extern struct coreinfo_module coreboot_module;
|
extern struct coreinfo_module coreboot_module;
|
||||||
|
extern struct coreinfo_module nvram_module;
|
||||||
|
|
||||||
struct coreinfo_module *modules[] = {
|
struct coreinfo_module *modules[] = {
|
||||||
|
#ifdef CONFIG_MODULE_CPUINFO
|
||||||
&cpuinfo_module,
|
&cpuinfo_module,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_MODULE_PCI
|
||||||
&pci_module,
|
&pci_module,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_MODULE_COREBOOT
|
||||||
&coreboot_module,
|
&coreboot_module,
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_MODULE_NVRAM
|
||||||
|
&nvram_module,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static WINDOW *modwin;
|
static WINDOW *modwin;
|
||||||
@ -63,6 +73,16 @@ static void print_menu(void)
|
|||||||
ptr += sprintf(ptr, "F%d: %s ", i + 1, modules[i]->name);
|
ptr += sprintf(ptr, "F%d: %s ", i + 1, modules[i]->name);
|
||||||
|
|
||||||
mvprintw(23, 0, menu);
|
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)
|
static void center(int row, const char *str)
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#define COREINFO_H_
|
#define COREINFO_H_
|
||||||
|
|
||||||
#include <libpayload.h>
|
#include <libpayload.h>
|
||||||
|
#include <config.h>
|
||||||
#include <curses.h>
|
#include <curses.h>
|
||||||
|
|
||||||
struct coreinfo_module {
|
struct coreinfo_module {
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#include "coreinfo.h"
|
#include "coreinfo.h"
|
||||||
#include <arch/rdtsc.h>
|
#include <arch/rdtsc.h>
|
||||||
|
|
||||||
|
#ifdef CONFIG_MODULE_CPUINFO
|
||||||
|
|
||||||
#define VENDOR_INTEL 0x756e6547
|
#define VENDOR_INTEL 0x756e6547
|
||||||
#define VENDOR_AMD 0x68747541
|
#define VENDOR_AMD 0x68747541
|
||||||
#define VENDOR_CYRIX 0x69727943
|
#define VENDOR_CYRIX 0x69727943
|
||||||
@ -267,5 +269,11 @@ struct coreinfo_module cpuinfo_module = {
|
|||||||
.name = "CPU Info",
|
.name = "CPU Info",
|
||||||
.init = cpuinfo_module_init,
|
.init = cpuinfo_module_init,
|
||||||
.redraw = cpuinfo_module_redraw,
|
.redraw = cpuinfo_module_redraw,
|
||||||
.handle = NULL,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
struct coreinfo_module cpuinfo_module = {
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
68
payloads/coreinfo/nvram_module.c
Normal file
68
payloads/coreinfo/nvram_module.c
Normal file
@ -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
|
@ -20,6 +20,8 @@
|
|||||||
#include <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include "coreinfo.h"
|
#include "coreinfo.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_MODULE_PCI
|
||||||
|
|
||||||
struct pci_devices {
|
struct pci_devices {
|
||||||
unsigned short device;
|
unsigned short device;
|
||||||
unsigned int id;
|
unsigned int id;
|
||||||
@ -282,3 +284,10 @@ struct coreinfo_module pci_module = {
|
|||||||
.redraw = pci_module_redraw,
|
.redraw = pci_module_redraw,
|
||||||
.handle = pci_module_handle,
|
.handle = pci_module_handle,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
struct coreinfo_module pci_module = {
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Reference in New Issue
Block a user