blob: ee291c1b4da36633021b50b8daa6ef8fc24bf6e6 [file] [log] [blame]
wdenk56f94be2002-11-05 16:35:14 +00001/*
Igor Lisitsin2dc64452007-04-18 14:55:19 +04002 * (C) Copyright 2002-2007
wdenk56f94be2002-11-05 16:35:14 +00003 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
4 *
wdenk228f29a2002-12-08 09:53:23 +00005 * Code used from linux/kernel/printk.c
6 * Copyright (C) 1991, 1992 Linus Torvalds
7 *
wdenk56f94be2002-11-05 16:35:14 +00008 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
wdenk228f29a2002-12-08 09:53:23 +000025 *
26 * Comments:
27 *
28 * After relocating the code, the environment variable "loglevel" is
29 * copied to console_loglevel. The functionality is similar to the
30 * handling in the Linux kernel, i.e. messages logged with a priority
31 * less than console_loglevel are also output to stdout.
32 *
33 * If you want messages with the default level (e.g. POST messages) to
34 * appear on stdout also, make sure the environment variable
35 * "loglevel" is set at boot time to a number higher than
36 * default_message_loglevel below.
wdenk56f94be2002-11-05 16:35:14 +000037 */
38
39/*
40 * Logbuffer handling routines
41 */
42
43#include <common.h>
44#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020045#include <stdio_dev.h>
wdenk228f29a2002-12-08 09:53:23 +000046#include <post.h>
wdenk56f94be2002-11-05 16:35:14 +000047#include <logbuff.h>
48
Wolfgang Denkd87080b2006-03-31 18:32:53 +020049DECLARE_GLOBAL_DATA_PTR;
50
wdenk56f94be2002-11-05 16:35:14 +000051/* Local prototypes */
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +000052static void logbuff_putc(const char c);
53static void logbuff_puts(const char *s);
wdenk56f94be2002-11-05 16:35:14 +000054static int logbuff_printk(const char *line);
55
56static char buf[1024];
57
wdenk228f29a2002-12-08 09:53:23 +000058/* This combination will not print messages with the default loglevel */
wdenk56f94be2002-11-05 16:35:14 +000059static unsigned console_loglevel = 3;
60static unsigned default_message_loglevel = 4;
Igor Lisitsin2dc64452007-04-18 14:55:19 +040061static unsigned log_version = 1;
Yuri Tikhonov3d610182008-02-06 18:48:36 +010062#ifdef CONFIG_ALT_LB_ADDR
63static volatile logbuff_t *log;
64#else
Igor Lisitsin2dc64452007-04-18 14:55:19 +040065static logbuff_t *log;
Yuri Tikhonov3d610182008-02-06 18:48:36 +010066#endif
67static char *lbuf;
wdenk56f94be2002-11-05 16:35:14 +000068
Marian Balakowicz95d449a2008-05-13 15:53:29 +020069unsigned long __logbuffer_base(void)
70{
Heiko Schocheree4014b2011-10-12 01:13:38 +000071 return CONFIG_SYS_SDRAM_BASE + gd->ram_size - LOGBUFF_LEN;
Marian Balakowicz95d449a2008-05-13 15:53:29 +020072}
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +000073unsigned long logbuffer_base(void)
74__attribute__((weak, alias("__logbuffer_base")));
Marian Balakowicz95d449a2008-05-13 15:53:29 +020075
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +000076void logbuff_init_ptrs(void)
wdenk228f29a2002-12-08 09:53:23 +000077{
Igor Lisitsin2dc64452007-04-18 14:55:19 +040078 unsigned long tag, post_word;
wdenk228f29a2002-12-08 09:53:23 +000079 char *s;
80
Yuri Tikhonov3d610182008-02-06 18:48:36 +010081#ifdef CONFIG_ALT_LB_ADDR
82 log = (logbuff_t *)CONFIG_ALT_LH_ADDR;
83 lbuf = (char *)CONFIG_ALT_LB_ADDR;
84#else
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +000085 log = (logbuff_t *)(logbuffer_base()) - 1;
Jean-Christophe PLAGNIOL-VILLARDa253b382008-04-02 08:03:57 +020086 lbuf = (char *)log->buf;
Yuri Tikhonov3d610182008-02-06 18:48:36 +010087#endif
Igor Lisitsin2dc64452007-04-18 14:55:19 +040088
89 /* Set up log version */
90 if ((s = getenv ("logversion")) != NULL)
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +000091 log_version = (int)simple_strtoul(s, NULL, 10);
Igor Lisitsin2dc64452007-04-18 14:55:19 +040092
93 if (log_version == 2)
94 tag = log->v2.tag;
95 else
96 tag = log->v1.tag;
wdenk2960b652003-07-15 21:08:26 +000097 post_word = post_word_load();
wdenkd1cbe852003-06-28 17:24:46 +000098#ifdef CONFIG_POST
99 /* The post routines have setup the word so we can simply test it */
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000100 if (tag != LOGBUFF_MAGIC || (post_word & POST_COLDBOOT))
101 logbuff_reset();
wdenkd1cbe852003-06-28 17:24:46 +0000102#else
103 /* No post routines, so we do our own checking */
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400104 if (tag != LOGBUFF_MAGIC || post_word != LOGBUFF_MAGIC) {
105 logbuff_reset ();
wdenkd1cbe852003-06-28 17:24:46 +0000106 post_word_store (LOGBUFF_MAGIC);
Wolfgang Denk1636d1c2007-06-22 23:59:00 +0200107 }
wdenkd1cbe852003-06-28 17:24:46 +0000108#endif
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400109 if (log_version == 2 && (long)log->v2.start > (long)log->v2.con)
110 log->v2.start = log->v2.con;
111
wdenk228f29a2002-12-08 09:53:23 +0000112 /* Initialize default loglevel if present */
113 if ((s = getenv ("loglevel")) != NULL)
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000114 console_loglevel = (int)simple_strtoul(s, NULL, 10);
wdenk228f29a2002-12-08 09:53:23 +0000115
Yuri Tikhonov0e15ddd2008-05-08 15:46:42 +0200116 gd->flags |= GD_FLG_LOGINIT;
wdenk228f29a2002-12-08 09:53:23 +0000117}
118
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000119void logbuff_reset(void)
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400120{
Yuri Tikhonov3d610182008-02-06 18:48:36 +0100121#ifndef CONFIG_ALT_LB_ADDR
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000122 memset(log, 0, sizeof(logbuff_t));
Yuri Tikhonov3d610182008-02-06 18:48:36 +0100123#endif
124 if (log_version == 2) {
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400125 log->v2.tag = LOGBUFF_MAGIC;
Yuri Tikhonov3d610182008-02-06 18:48:36 +0100126#ifdef CONFIG_ALT_LB_ADDR
127 log->v2.start = 0;
128 log->v2.con = 0;
129 log->v2.end = 0;
130 log->v2.chars = 0;
131#endif
132 } else {
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400133 log->v1.tag = LOGBUFF_MAGIC;
Yuri Tikhonov3d610182008-02-06 18:48:36 +0100134#ifdef CONFIG_ALT_LB_ADDR
135 log->v1.dummy = 0;
136 log->v1.start = 0;
137 log->v1.size = 0;
138 log->v1.chars = 0;
139#endif
140 }
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400141}
142
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000143int drv_logbuff_init(void)
wdenk56f94be2002-11-05 16:35:14 +0000144{
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200145 struct stdio_dev logdev;
wdenk56f94be2002-11-05 16:35:14 +0000146 int rc;
147
148 /* Device initialization */
149 memset (&logdev, 0, sizeof (logdev));
150
151 strcpy (logdev.name, "logbuff");
152 logdev.ext = 0; /* No extensions */
153 logdev.flags = DEV_FLAGS_OUTPUT; /* Output only */
154 logdev.putc = logbuff_putc; /* 'putc' function */
155 logdev.puts = logbuff_puts; /* 'puts' function */
156
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000157 rc = stdio_register(&logdev);
wdenk56f94be2002-11-05 16:35:14 +0000158
159 return (rc == 0) ? 1 : rc;
160}
161
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000162static void logbuff_putc(const char c)
wdenk56f94be2002-11-05 16:35:14 +0000163{
164 char buf[2];
wdenk228f29a2002-12-08 09:53:23 +0000165 buf[0] = c;
166 buf[1] = '\0';
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000167 logbuff_printk(buf);
wdenk56f94be2002-11-05 16:35:14 +0000168}
169
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000170static void logbuff_puts(const char *s)
wdenk56f94be2002-11-05 16:35:14 +0000171{
wdenk228f29a2002-12-08 09:53:23 +0000172 logbuff_printk (s);
wdenk56f94be2002-11-05 16:35:14 +0000173}
174
175void logbuff_log(char *msg)
176{
Yuri Tikhonov0e15ddd2008-05-08 15:46:42 +0200177 if ((gd->flags & GD_FLG_LOGINIT)) {
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000178 logbuff_printk(msg);
wdenk56f94be2002-11-05 16:35:14 +0000179 } else {
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000180 /*
181 * Can happen only for pre-relocated errors as logging
182 * at that stage should be disabled
183 */
wdenk228f29a2002-12-08 09:53:23 +0000184 puts (msg);
wdenk56f94be2002-11-05 16:35:14 +0000185 }
186}
187
188/*
189 * Subroutine: do_log
190 *
191 * Description: Handler for 'log' command..
192 *
193 * Inputs: argv[1] contains the subcommand
194 *
195 * Return: None
196 *
197 */
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000198int do_log(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk56f94be2002-11-05 16:35:14 +0000199{
200 char *s;
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400201 unsigned long i, start, size;
wdenk56f94be2002-11-05 16:35:14 +0000202
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000203 if (strcmp(argv[1], "append") == 0) {
wdenk228f29a2002-12-08 09:53:23 +0000204 /* Log concatenation of all arguments separated by spaces */
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000205 for (i = 2; i < argc; i++) {
206 logbuff_printk(argv[i]);
207 logbuff_putc((i < argc - 1) ? ' ' : '\n');
wdenk228f29a2002-12-08 09:53:23 +0000208 }
209 return 0;
wdenk56f94be2002-11-05 16:35:14 +0000210 }
211
212 switch (argc) {
213
214 case 2:
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000215 if (strcmp(argv[1], "show") == 0) {
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400216 if (log_version == 2) {
217 start = log->v2.start;
218 size = log->v2.end - log->v2.start;
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000219 } else {
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400220 start = log->v1.start;
221 size = log->v1.size;
222 }
Heiko Schocherc16a1232012-02-16 01:02:21 +0000223 if (size > LOGBUFF_LEN)
224 size = LOGBUFF_LEN;
225 for (i = 0; i < size; i++) {
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000226 s = lbuf + ((start + i) & LOGBUFF_MASK);
227 putc(*s);
wdenk56f94be2002-11-05 16:35:14 +0000228 }
229 return 0;
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000230 } else if (strcmp(argv[1], "reset") == 0) {
231 logbuff_reset();
wdenk56f94be2002-11-05 16:35:14 +0000232 return 0;
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000233 } else if (strcmp(argv[1], "info") == 0) {
234 printf("Logbuffer at %08lx\n", (unsigned long)lbuf);
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400235 if (log_version == 2) {
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000236 printf("log_start = %08lx\n",
237 log->v2.start);
238 printf("log_end = %08lx\n", log->v2.end);
Heiko Schocherc0b77e02012-02-14 22:21:07 +0000239 printf("log_con = %08lx\n", log->v2.con);
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000240 printf("logged_chars = %08lx\n",
241 log->v2.chars);
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400242 }
243 else {
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000244 printf("log_start = %08lx\n",
245 log->v1.start);
246 printf("log_size = %08lx\n",
247 log->v1.size);
248 printf("logged_chars = %08lx\n",
249 log->v1.chars);
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400250 }
wdenk56f94be2002-11-05 16:35:14 +0000251 return 0;
wdenk56f94be2002-11-05 16:35:14 +0000252 }
Simon Glass4c12eeb2011-12-10 08:44:01 +0000253 return CMD_RET_USAGE;
wdenk56f94be2002-11-05 16:35:14 +0000254
255 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000256 return CMD_RET_USAGE;
wdenk56f94be2002-11-05 16:35:14 +0000257 }
258}
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400259
wdenk0d498392003-07-01 21:06:45 +0000260U_BOOT_CMD(
261 log, 255, 1, do_log,
Peter Tyser2fb26042009-01-27 18:03:12 -0600262 "manipulate logbuffer",
wdenkb37c7e52003-06-30 16:24:52 +0000263 "info - show pointer details\n"
wdenk8bde7f72003-06-27 21:31:46 +0000264 "log reset - clear contents\n"
265 "log show - show contents\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200266 "log append <msg> - append <msg> to the logbuffer"
wdenk8bde7f72003-06-27 21:31:46 +0000267);
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400268
wdenk56f94be2002-11-05 16:35:14 +0000269static int logbuff_printk(const char *line)
270{
271 int i;
272 char *msg, *p, *buf_end;
273 int line_feed;
274 static signed char msg_level = -1;
275
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000276 strcpy(buf + 3, line);
277 i = strlen(line);
wdenk56f94be2002-11-05 16:35:14 +0000278 buf_end = buf + 3 + i;
279 for (p = buf + 3; p < buf_end; p++) {
280 msg = p;
281 if (msg_level < 0) {
282 if (
283 p[0] != '<' ||
284 p[1] < '0' ||
285 p[1] > '7' ||
286 p[2] != '>'
287 ) {
288 p -= 3;
289 p[0] = '<';
290 p[1] = default_message_loglevel + '0';
291 p[2] = '>';
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000292 } else {
wdenk56f94be2002-11-05 16:35:14 +0000293 msg += 3;
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000294 }
wdenk56f94be2002-11-05 16:35:14 +0000295 msg_level = p[1] - '0';
296 }
297 line_feed = 0;
298 for (; p < buf_end; p++) {
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400299 if (log_version == 2) {
Yuri Tikhonov3d610182008-02-06 18:48:36 +0100300 lbuf[log->v2.end & LOGBUFF_MASK] = *p;
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400301 log->v2.end++;
302 if (log->v2.end - log->v2.start > LOGBUFF_LEN)
303 log->v2.start++;
304 log->v2.chars++;
Heiko Schocher1e8e7ae2012-02-14 22:21:06 +0000305 } else {
Yuri Tikhonov3d610182008-02-06 18:48:36 +0100306 lbuf[(log->v1.start + log->v1.size) &
Igor Lisitsin2dc64452007-04-18 14:55:19 +0400307 LOGBUFF_MASK] = *p;
308 if (log->v1.size < LOGBUFF_LEN)
309 log->v1.size++;
310 else
311 log->v1.start++;
312 log->v1.chars++;
313 }
wdenk56f94be2002-11-05 16:35:14 +0000314 if (*p == '\n') {
315 line_feed = 1;
316 break;
317 }
318 }
319 if (msg_level < console_loglevel) {
320 printf("%s", msg);
321 }
322 if (line_feed)
323 msg_level = -1;
324 }
325 return i;
326}