summaryrefslogtreecommitdiffstats
path: root/payloads/coreinfo/bootlog_module.c
blob: ca5b0401cd3cda4c1e3ce71107508051540fcb10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 * 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.
 */

#include "coreinfo.h"

#ifdef CONFIG_MODULE_BOOTLOG

#define CONFIG_COREBOOT_PRINTK_BUFFER_ADDR 0x90000
#define CONFIG_COREBOOT_PRINTK_BUFFER_SIZE 65536

static char *buf;
static s32 cursor = 0;
static s32 cursor_max;

static int bootlog_module_init(void)
{
	int i;
	volatile unsigned long *ptr =
		(void *)(CONFIG_COREBOOT_PRINTK_BUFFER_ADDR + 16); /* FIXME */

	buf = malloc(CONFIG_COREBOOT_PRINTK_BUFFER_SIZE);
	if (!buf) {
		/* TODO */
	}

	memcpy(buf, (char *)ptr, CONFIG_COREBOOT_PRINTK_BUFFER_SIZE);

	cursor_max = CONFIG_COREBOOT_PRINTK_BUFFER_SIZE;
	for (i = 0; i < 20; i++) {
		do {
			cursor_max--;
		} while (*(buf + cursor_max) != '\n');
	}
	cursor_max++;	/* Stay _behind_ the newline. */

	/* TODO: Maybe a _cleanup hook where we call free()? */

	return 0;
}

static int bootlog_module_redraw(WINDOW *win)
{
	int x = 0, y = 0;
	char *tmp = buf + cursor;

	print_module_title(win, "Coreboot Bootlog");

	/* FIXME: Handle lines longer than 80 characters. */
	while (y <= 18) {
		mvwaddch(win, y + 2, x, isprint(*tmp) ? *tmp : ' ');
		x++;
		tmp++;
		if (*tmp == '\n') {
			y++;
			x = 0;
			tmp++;		/* Skip the newline. */
		}
	}

	return 0;
}

/* TODO: Simplify code. */
static int bootlog_module_handle(int key)
{
	int i;

	switch (key) {
	case KEY_DOWN:
		if (cursor == cursor_max)
			return 0;
		while (*(buf + cursor) != '\n')
			cursor++;
		cursor++;	/* Skip the newline. */
		break;
	case KEY_UP:
		if (cursor == 0)
			return 0;
		cursor--;	/* Skip the newline. */
		do {
			cursor--;
		} while (*(buf + cursor) != '\n');
		cursor++;	/* Stay _behind_ the newline. */
		break;
	case KEY_NPAGE:
		if (cursor == cursor_max)
			return 0;
		for (i = 0; i < 20; i++) {
			while (*(buf + cursor) != '\n')
				cursor++;
			cursor++;	/* Skip the newline. */
		}
		break;
	case KEY_PPAGE:
		if (cursor == 0)
			return 0;
		for (i = 0; i < 20; i++) {
			do {
				cursor--;
			} while (*(buf + cursor) != '\n');
		}
		cursor++;	/* Stay _behind_ the newline. */
		break;
	}

	if (cursor > cursor_max)
		cursor = cursor_max;

	if (cursor < 0)
		cursor = 0;

	return 1;
}

struct coreinfo_module bootlog_module = {
	.name = "Bootlog",
	.init = bootlog_module_init,
	.redraw = bootlog_module_redraw,
	.handle = bootlog_module_handle,
};

#else

struct coreinfo_module bootlog_module = {
};

#endif
OpenPOWER on IntegriCloud