blob: 9d5419a185486aa0a9e1c6ee0347b5e039f8c3f0 [file] [log] [blame]
Vadim Bendebury32da8be2011-09-29 17:27:15 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
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 <console/console.h>
Kyösti Mälkki1d7541f2014-02-17 21:34:42 +020021#include <console/cbmem_console.h>
Vadim Bendebury32da8be2011-09-29 17:27:15 -070022#include <cbmem.h>
Stefan Reinauerfd4f4132013-06-19 12:25:44 -070023#include <arch/early_variables.h>
Vadim Bendebury32da8be2011-09-29 17:27:15 -070024#include <string.h>
25
26/*
27 * Structure describing console buffer. It is overlaid on a flat memory area,
Martin Rothcbf2bd72013-07-09 21:51:14 -060028 * with buffer_body covering the extent of the memory. Once the buffer is
Vadim Bendebury32da8be2011-09-29 17:27:15 -070029 * full, the cursor keeps going but the data is dropped on the floor. This
30 * allows to tell how much data was lost in the process.
31 */
32struct cbmem_console {
33 u32 buffer_size;
34 u32 buffer_cursor;
35 u8 buffer_body[0];
36} __attribute__ ((__packed__));
37
Aaron Durbin2ad6bd22013-05-10 00:45:37 -050038static struct cbmem_console *cbmem_console_p CAR_GLOBAL;
39
Vadim Bendebury32da8be2011-09-29 17:27:15 -070040#ifdef __PRE_RAM__
41/*
42 * While running from ROM, before DRAM is initialized, some area in cache as
43 * ram space is used for the console buffer storage. The size and location of
44 * the area are defined in the config.
45 */
Gabe Black19e7e7d2011-10-01 04:27:32 -070046
47static struct cbmem_console car_cbmem_console CAR_CBMEM;
Vadim Bendebury32da8be2011-09-29 17:27:15 -070048
Vadim Bendebury32da8be2011-09-29 17:27:15 -070049#else
50
51/*
52 * When running from RAM, a lot of console output is generated before CBMEM is
53 * reinitialized. This static buffer is used to store that output temporarily,
54 * to be concatenated with the CBMEM console buffer contents accumulated
55 * during the ROM stage, once CBMEM becomes available at RAM stage.
56 */
Stefan Reinauer19d06b22013-09-09 11:22:18 -070057
58#if CONFIG_DYNAMIC_CBMEM
59#define STATIC_CONSOLE_SIZE 1024
60#else
Kyösti Mälkki44c0e4e2013-11-27 22:54:11 +020061#define STATIC_CONSOLE_SIZE CONFIG_CONSOLE_CBMEM_BUFFER_SIZE
Stefan Reinauer19d06b22013-09-09 11:22:18 -070062#endif
63static u8 static_console[STATIC_CONSOLE_SIZE];
Vadim Bendebury32da8be2011-09-29 17:27:15 -070064#endif
65
Aaron Durbin2ad6bd22013-05-10 00:45:37 -050066static inline struct cbmem_console *current_console(void)
Vadim Bendebury32da8be2011-09-29 17:27:15 -070067{
Aaron Durbin2ad6bd22013-05-10 00:45:37 -050068 return car_get_var(cbmem_console_p);
Aaron Durbin2ad6bd22013-05-10 00:45:37 -050069}
70
71static inline void current_console_set(struct cbmem_console *new_console_p)
72{
Aaron Durbin2ad6bd22013-05-10 00:45:37 -050073 car_set_var(cbmem_console_p, new_console_p);
Aaron Durbin2ad6bd22013-05-10 00:45:37 -050074}
75
76static inline void init_console_ptr(void *storage, u32 total_space)
77{
78 struct cbmem_console *cbm_cons_p = storage;
79
80 /* Initialize the cache-as-ram pointer and underlying structure. */
81 car_set_var(cbmem_console_p, cbm_cons_p);
82 cbm_cons_p->buffer_size = total_space - sizeof(struct cbmem_console);
83 cbm_cons_p->buffer_cursor = 0;
84}
85
86void cbmemc_init(void)
87{
88#ifdef __PRE_RAM__
89 init_console_ptr(&car_cbmem_console, CONFIG_CONSOLE_CAR_BUFFER_SIZE);
90#else
91 /*
92 * Initializing before CBMEM is available, use static buffer to store
93 * the log.
94 */
95 init_console_ptr(static_console, sizeof(static_console));
96#endif
97}
98
99void cbmemc_tx_byte(unsigned char data)
100{
101 struct cbmem_console *cbm_cons_p = current_console();
102 u32 cursor;
103
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700104 if (!cbm_cons_p)
105 return;
106
107 cursor = cbm_cons_p->buffer_cursor++;
108 if (cursor < cbm_cons_p->buffer_size)
109 cbm_cons_p->buffer_body[cursor] = data;
110}
111
112/*
113 * Copy the current console buffer (either from the cache as RAM area, or from
114 * the static buffer, pointed at by cbmem_console_p) into the CBMEM console
115 * buffer space (pointed at by new_cons_p), concatenating the copied data with
116 * the CBMEM console buffer contents.
117 *
118 * If there is overflow - add to the destination area a string, reporting the
Martin Rothcbf2bd72013-07-09 21:51:14 -0600119 * overflow and the number of dropped characters.
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700120 */
121static void copy_console_buffer(struct cbmem_console *new_cons_p)
122{
Kyösti Mälkkia3c5ba32013-11-27 17:51:31 +0200123 u32 copy_size, dropped_chars;
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700124 u32 cursor = new_cons_p->buffer_cursor;
Aaron Durbin2ad6bd22013-05-10 00:45:37 -0500125 struct cbmem_console *old_cons_p;
Aaron Durbin2ad6bd22013-05-10 00:45:37 -0500126
127 old_cons_p = current_console();
128
Kyösti Mälkkia3c5ba32013-11-27 17:51:31 +0200129 if (old_cons_p->buffer_cursor < old_cons_p->buffer_size)
130 copy_size = old_cons_p->buffer_cursor;
131 else
132 copy_size = old_cons_p->buffer_size;
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700133
Kyösti Mälkkia3c5ba32013-11-27 17:51:31 +0200134 if (cursor > new_cons_p->buffer_size)
135 copy_size = 0;
136 else if (cursor + copy_size > new_cons_p->buffer_size)
137 copy_size = new_cons_p->buffer_size - cursor;
138
139 dropped_chars = old_cons_p->buffer_cursor - copy_size;
140 if (dropped_chars) {
141 /* Reserve 80 chars to report overflow, if possible. */
142 if (copy_size < 80)
143 return;
144 copy_size -= 80;
145 dropped_chars += 80;
146 }
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700147
Aaron Durbin2ad6bd22013-05-10 00:45:37 -0500148 memcpy(new_cons_p->buffer_body + cursor, old_cons_p->buffer_body,
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700149 copy_size);
150
151 cursor += copy_size;
152
Kyösti Mälkkia3c5ba32013-11-27 17:51:31 +0200153 if (dropped_chars) {
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700154 const char loss_str1[] = "\n\n*** Log truncated, ";
155 const char loss_str2[] = " characters dropped. ***\n\n";
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700156
157 /*
158 * When running from ROM sprintf is not available, a simple
159 * itoa implementation is used instead.
160 */
161 int got_first_digit = 0;
162
163 /* Way more than possible number of dropped characters. */
164 u32 mult = 100000;
165
166 strcpy((char *)new_cons_p->buffer_body + cursor, loss_str1);
167 cursor += sizeof(loss_str1) - 1;
168
169 while (mult) {
170 int digit = dropped_chars / mult;
171 if (got_first_digit || digit) {
172 new_cons_p->buffer_body[cursor++] = digit + '0';
173 dropped_chars %= mult;
174 /* Excessive, but keeps it simple */
175 got_first_digit = 1;
176 }
177 mult /= 10;
178 }
179
180 strcpy((char *)new_cons_p->buffer_body + cursor, loss_str2);
181 cursor += sizeof(loss_str2) - 1;
182 }
183 new_cons_p->buffer_cursor = cursor;
184}
185
Kyösti Mälkkicbf5bdf2013-09-10 00:07:21 +0300186void cbmemc_reinit(void)
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700187{
Kyösti Mälkki52a27222013-09-09 01:31:22 +0300188 struct cbmem_console *cbm_cons_p = NULL;
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700189
Kyösti Mälkki52a27222013-09-09 01:31:22 +0300190#ifndef __PRE_RAM__
191 cbm_cons_p = cbmem_find(CBMEM_ID_CONSOLE);
192#endif
193
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700194 if (!cbm_cons_p) {
Kyösti Mälkki52a27222013-09-09 01:31:22 +0300195 cbm_cons_p = cbmem_add(CBMEM_ID_CONSOLE,
196 CONFIG_CONSOLE_CBMEM_BUFFER_SIZE);
197
198 if (!cbm_cons_p) {
199 current_console_set(NULL);
200 return;
201 }
202
203 cbm_cons_p->buffer_size = CONFIG_CONSOLE_CBMEM_BUFFER_SIZE -
204 sizeof(struct cbmem_console);
205
206 cbm_cons_p->buffer_cursor = 0;
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700207 }
208
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700209 copy_console_buffer(cbm_cons_p);
210
Aaron Durbin2ad6bd22013-05-10 00:45:37 -0500211 current_console_set(cbm_cons_p);
Vadim Bendebury32da8be2011-09-29 17:27:15 -0700212}
Aaron Durbin2ad6bd22013-05-10 00:45:37 -0500213
Kyösti Mälkkicbf5bdf2013-09-10 00:07:21 +0300214/* Call cbmemc_reinit() at CAR migration time. */
215CAR_MIGRATE(cbmemc_reinit)