blob: b9da49efd039eeaa0d72b664d3857b0ccb40326f [file] [log] [blame]
Jordan Crouse7249f792008-03-20 00:11:05 +00001/*
2 * This file is part of the coreinfo project.
3 *
4 * Copyright (C) 2008 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include "coreinfo.h"
21
Jordan Crouse9b1c7c12008-05-20 20:16:03 +000022#define SCREEN_Y 25
Jordan Crouse7249f792008-03-20 00:11:05 +000023#define SCREEN_X 80
24
Uwe Hermann29413c72008-05-21 13:49:03 +000025#define KEY_ESC 27
26
Jordan Crouse7249f792008-03-20 00:11:05 +000027extern struct coreinfo_module cpuinfo_module;
28extern struct coreinfo_module pci_module;
29extern struct coreinfo_module coreboot_module;
Uwe Hermannab5b3e02008-03-31 20:30:18 +000030extern struct coreinfo_module nvram_module;
Uwe Hermann0ab8cdd2008-04-22 20:19:53 +000031extern struct coreinfo_module bootlog_module;
Uwe Hermann2fbbb292008-07-08 16:18:38 +000032extern struct coreinfo_module ramdump_module;
Jordan Crouseaa6e3782008-05-07 20:43:15 +000033extern struct coreinfo_module lar_module;
Jordan Crouse7249f792008-03-20 00:11:05 +000034
Jordan Crousede7fc552008-05-06 22:03:16 +000035struct coreinfo_module *system_modules[] = {
Uwe Hermannab5b3e02008-03-31 20:30:18 +000036#ifdef CONFIG_MODULE_CPUINFO
Jordan Crouse7249f792008-03-20 00:11:05 +000037 &cpuinfo_module,
Uwe Hermannab5b3e02008-03-31 20:30:18 +000038#endif
39#ifdef CONFIG_MODULE_PCI
Jordan Crouse7249f792008-03-20 00:11:05 +000040 &pci_module,
Uwe Hermannab5b3e02008-03-31 20:30:18 +000041#endif
Jordan Crouse7ce26662008-05-06 22:00:55 +000042#ifdef CONFIG_MODULE_NVRAM
43 &nvram_module,
44#endif
Uwe Hermann2fbbb292008-07-08 16:18:38 +000045#ifdef CONFIG_MODULE_RAMDUMP
46 &ramdump_module,
47#endif
Jordan Crousede7fc552008-05-06 22:03:16 +000048};
49
50struct coreinfo_module *coreboot_modules[] = {
51#ifdef CONFIG_MODULE_COREBOOT
52 &coreboot_module,
53#endif
Uwe Hermann0ab8cdd2008-04-22 20:19:53 +000054#ifdef CONFIG_MODULE_BOOTLOG
55 &bootlog_module,
56#endif
Jordan Crouseaa6e3782008-05-07 20:43:15 +000057#ifdef CONFIG_MODULE_LAR
58 &lar_module
59#endif
Jordan Crouse7249f792008-03-20 00:11:05 +000060};
61
Jordan Crousede7fc552008-05-06 22:03:16 +000062struct coreinfo_cat {
63 char name[15];
64 int cur;
65 int count;
66 struct coreinfo_module **modules;
67} categories[] = {
68 {
69 .name = "System",
70 .modules = system_modules,
71 .count = ARRAY_SIZE(system_modules),
72 },
73 {
74 .name = "Coreboot",
75 .modules = coreboot_modules,
76 .count = ARRAY_SIZE(coreboot_modules),
77 }
78};
79
Uwe Hermann695cff32008-08-07 14:35:39 +000080static WINDOW *modwin, *menuwin;
Jordan Crouse7249f792008-03-20 00:11:05 +000081static int curwin;
82
83void print_module_title(WINDOW *win, const char *title)
84{
85 int i;
86
87 wattrset(win, COLOR_PAIR(2));
88 mvwprintw(win, 0, 1, title);
89
90 wmove(win, 1, 1);
Uwe Hermann3a406fe2008-03-20 01:11:28 +000091 for (i = 0; i < 78; i++)
Ulf Jordand133d9a2008-08-11 20:35:32 +000092 waddch(win, ACS_HLINE);
Jordan Crouse7249f792008-03-20 00:11:05 +000093}
94
Jordan Crousede7fc552008-05-06 22:03:16 +000095static void print_submenu(struct coreinfo_cat *cat)
96{
97 int i, j;
98 char menu[80];
99 char *ptr = menu;
100
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000101 wmove(menuwin, 0, 0);
Jordan Crousede7fc552008-05-06 22:03:16 +0000102
103 for (j = 0; j < SCREEN_X; j++)
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000104 waddch(menuwin, ' ');
Jordan Crousede7fc552008-05-06 22:03:16 +0000105
106 if (!cat->count)
107 return;
108
109 for (i = 0; i < cat->count; i++)
Uwe Hermann695cff32008-08-07 14:35:39 +0000110 ptr += sprintf(ptr, "[%c: %s] ", 'A' + i,
111 cat->modules[i]->name);
Jordan Crousede7fc552008-05-06 22:03:16 +0000112
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000113 mvwprintw(menuwin, 0, 0, menu);
Jordan Crousede7fc552008-05-06 22:03:16 +0000114}
115
Jordan Crouse19337862008-05-06 22:15:31 +0000116#ifdef CONFIG_SHOW_DATE_TIME
117static void print_time_and_date(void)
118{
119 struct tm tm;
120
Uwe Hermann941aaee2008-07-18 14:08:18 +0000121 while (nvram_updating())
Jordan Crouse19337862008-05-06 22:15:31 +0000122 mdelay(10);
123
124 rtc_read_clock(&tm);
125
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000126 mvwprintw(menuwin, 0, 57, "%02d/%02d/%04d - %02d:%02d:%02d",
Uwe Hermann695cff32008-08-07 14:35:39 +0000127 tm.tm_mon, tm.tm_mday, 1900 + tm.tm_year, tm.tm_hour,
Uwe Hermann941aaee2008-07-18 14:08:18 +0000128 tm.tm_min, tm.tm_sec);
Jordan Crouse19337862008-05-06 22:15:31 +0000129}
130#endif
131
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000132static void print_menu(void)
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000133{
Uwe Hermann35845a22008-03-20 20:05:22 +0000134 int i, j;
Jordan Crouse7249f792008-03-20 00:11:05 +0000135 char menu[80];
136 char *ptr = menu;
Jordan Crouse7249f792008-03-20 00:11:05 +0000137
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000138 wmove(menuwin, 1, 0);
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000139 for (j = 0; j < SCREEN_X; j++)
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000140 waddch(menuwin, ' ');
Jordan Crouse7249f792008-03-20 00:11:05 +0000141
Jordan Crousede7fc552008-05-06 22:03:16 +0000142 for (i = 0; i < ARRAY_SIZE(categories); i++) {
143 if (categories[i].count == 0)
144 continue;
Jordan Crouse7249f792008-03-20 00:11:05 +0000145
Jordan Crousede7fc552008-05-06 22:03:16 +0000146 ptr += sprintf(ptr, "F%d: %s ", i + 1, categories[i].name);
147 }
148
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000149 mvwprintw(menuwin, 1, 0, menu);
Uwe Hermannab5b3e02008-03-31 20:30:18 +0000150
151#ifdef CONFIG_SHOW_DATE_TIME
Jordan Crouse19337862008-05-06 22:15:31 +0000152 print_time_and_date();
Uwe Hermannab5b3e02008-03-31 20:30:18 +0000153#endif
Jordan Crouse7249f792008-03-20 00:11:05 +0000154}
155
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000156static void center(int row, const char *str)
Jordan Crouse7249f792008-03-20 00:11:05 +0000157{
Uwe Hermann695cff32008-08-07 14:35:39 +0000158 int j, len = strlen(str);
Jordan Crouse7249f792008-03-20 00:11:05 +0000159
160 wmove(stdscr, row, 0);
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000161 for (j = 0; j < SCREEN_X; j++)
Jordan Crouse7249f792008-03-20 00:11:05 +0000162 waddch(stdscr, ' ');
163
164 mvprintw(row, (SCREEN_X - len) / 2, str);
165}
166
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000167/* FIXME: Currently unused. */
168#if 0
169static void header(int row, const char *str)
Jordan Crouse7249f792008-03-20 00:11:05 +0000170{
171 char buf[SCREEN_X];
172 char *ptr = buf;
173 int i;
174 int len = strlen(str) + 4;
175
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000176 for (i = 0; i < (SCREEN_X - len) / 2; i++)
Jordan Crouse7249f792008-03-20 00:11:05 +0000177 ptr += sprintf(ptr, "=");
178
179 ptr += sprintf(ptr, "[ %s ]", str);
180
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000181 for (i = ((SCREEN_X - len) / 2) + len; i < SCREEN_X; i++)
Jordan Crouse7249f792008-03-20 00:11:05 +0000182 ptr += sprintf(ptr, "=");
183
184 mvprintw(row, 0, buf);
185}
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000186#endif
Jordan Crouse7249f792008-03-20 00:11:05 +0000187
Jordan Crousede7fc552008-05-06 22:03:16 +0000188static void redraw_module(struct coreinfo_cat *cat)
Jordan Crouse7249f792008-03-20 00:11:05 +0000189{
Jordan Crousede7fc552008-05-06 22:03:16 +0000190 if (cat->count == 0)
Uwe Hermann6c44dfb2008-04-04 16:49:09 +0000191 return;
192
Jordan Crouse7249f792008-03-20 00:11:05 +0000193 wclear(modwin);
Jordan Crousede7fc552008-05-06 22:03:16 +0000194 cat->modules[cat->cur]->redraw(modwin);
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000195 wrefresh(modwin);
Jordan Crouse7249f792008-03-20 00:11:05 +0000196}
197
Jordan Crousede7fc552008-05-06 22:03:16 +0000198static void handle_category_key(struct coreinfo_cat *cat, int key)
199{
200 if (key >= 'a' && key <= 'z') {
201 int index = key - 'a';
Jordan Crousede7fc552008-05-06 22:03:16 +0000202 if (index < cat->count) {
Uwe Hermann941aaee2008-07-18 14:08:18 +0000203 cat->cur = index;
Jordan Crousede7fc552008-05-06 22:03:16 +0000204 redraw_module(cat);
205 return;
206 }
207 }
208
209 if (cat->count && cat->modules[cat->cur]->handle) {
210 if (cat->modules[cat->cur]->handle(key))
211 redraw_module(cat);
212 }
213}
214
Uwe Hermann0bfb5c42008-03-23 15:34:04 +0000215static void loop(void)
Jordan Crouse7249f792008-03-20 00:11:05 +0000216{
217 int key;
218
Uwe Hermanna70872cf2008-08-05 14:36:20 +0000219 center(0, CONFIG_PAYLOAD_INFO_NAME " " CONFIG_PAYLOAD_INFO_VERSION);
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000220 refresh();
Jordan Crouse7249f792008-03-20 00:11:05 +0000221
222 print_menu();
Jordan Crousede7fc552008-05-06 22:03:16 +0000223 print_submenu(&categories[curwin]);
224 redraw_module(&categories[curwin]);
Jordan Crouse7249f792008-03-20 00:11:05 +0000225
Jordan Crouse19337862008-05-06 22:15:31 +0000226 halfdelay(10);
227
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000228 while (1) {
Jordan Crouse19337862008-05-06 22:15:31 +0000229#ifdef CONFIG_SHOW_DATE_TIME
230 print_time_and_date();
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000231 wrefresh(menuwin);
Jordan Crouse19337862008-05-06 22:15:31 +0000232#endif
233
Jordan Crouse7249f792008-03-20 00:11:05 +0000234 key = getch();
235
236 if (key == ERR)
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000237 continue;
Jordan Crouse7249f792008-03-20 00:11:05 +0000238
239 if (key >= KEY_F(1) && key <= KEY_F(9)) {
240 unsigned char ch = key - KEY_F(1);
241
Jordan Crousede7fc552008-05-06 22:03:16 +0000242 if (ch <= ARRAY_SIZE(categories)) {
243 if (ch == ARRAY_SIZE(categories))
Uwe Hermann6c44dfb2008-04-04 16:49:09 +0000244 continue;
Jordan Crousede7fc552008-05-06 22:03:16 +0000245 if (categories[ch].count == 0)
246 continue;
247
Jordan Crouse7249f792008-03-20 00:11:05 +0000248 curwin = ch;
Jordan Crousede7fc552008-05-06 22:03:16 +0000249 print_submenu(&categories[curwin]);
250 redraw_module(&categories[curwin]);
Jordan Crouse7249f792008-03-20 00:11:05 +0000251 continue;
252 }
253 }
254
Uwe Hermann29413c72008-05-21 13:49:03 +0000255 if (key == KEY_ESC)
Jordan Crouse98cc0562008-05-20 20:16:34 +0000256 return;
Jordan Crousede7fc552008-05-06 22:03:16 +0000257
258 handle_category_key(&categories[curwin], key);
Jordan Crouse7249f792008-03-20 00:11:05 +0000259 }
260}
261
262int main(void)
263{
264 int i, j;
265
Jordan Crouse7249f792008-03-20 00:11:05 +0000266 initscr();
267
268 init_pair(1, COLOR_WHITE, COLOR_GREEN);
269 init_pair(2, COLOR_BLACK, COLOR_WHITE);
270 init_pair(3, COLOR_WHITE, COLOR_WHITE);
271
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000272 modwin = newwin(SCREEN_Y - 3, SCREEN_X, 1, 0);
273 menuwin = newwin(2, SCREEN_X, SCREEN_Y - 2, 0);
Jordan Crouse7249f792008-03-20 00:11:05 +0000274
275 wattrset(stdscr, COLOR_PAIR(1) | A_BOLD);
276 wattrset(modwin, COLOR_PAIR(2));
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000277 wattrset(menuwin, COLOR_PAIR(1) | A_BOLD);
Jordan Crouse7249f792008-03-20 00:11:05 +0000278
Jordan Crouseaa6e3782008-05-07 20:43:15 +0000279 for (i = 0; i < SCREEN_Y - 1; i++) {
Jordan Crouse7249f792008-03-20 00:11:05 +0000280 wmove(modwin, i - 1, 0);
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000281 for (j = 0; j < SCREEN_X; j++)
Jordan Crouse7249f792008-03-20 00:11:05 +0000282 waddch(modwin, ' ');
283 }
284
Jordan Crouse9b1c7c12008-05-20 20:16:03 +0000285 wrefresh(modwin);
Jordan Crouse7249f792008-03-20 00:11:05 +0000286
Jordan Crousede7fc552008-05-06 22:03:16 +0000287 for (i = 0; i < ARRAY_SIZE(categories); i++) {
Uwe Hermann941aaee2008-07-18 14:08:18 +0000288 for (j = 0; j < categories[i].count; j++)
Jordan Crousede7fc552008-05-06 22:03:16 +0000289 categories[i].modules[j]->init();
Jordan Crousede7fc552008-05-06 22:03:16 +0000290 }
Uwe Hermann3a406fe2008-03-20 01:11:28 +0000291
Jordan Crouse7249f792008-03-20 00:11:05 +0000292 loop();
Uwe Hermann35845a22008-03-20 20:05:22 +0000293
294 return 0;
Jordan Crouse7249f792008-03-20 00:11:05 +0000295}
Jordan Crouse50838112008-05-27 20:07:47 +0000296
Uwe Hermanna70872cf2008-08-05 14:36:20 +0000297PAYLOAD_INFO(name, CONFIG_PAYLOAD_INFO_NAME);
298PAYLOAD_INFO(listname, CONFIG_PAYLOAD_INFO_LISTNAME);
299PAYLOAD_INFO(desc, CONFIG_PAYLOAD_INFO_DESC);