2 * (C) Copyright 2002-2007
3 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
5 * Code used from linux/kernel/printk.c
6 * Copyright (C) 1991, 1992 Linus Torvalds
8 * See file CREDITS for list of people who contributed to this
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.
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.
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,
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.
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.
40 * Logbuffer handling routines
49 DECLARE_GLOBAL_DATA_PTR
;
51 /* Local prototypes */
52 static void logbuff_putc (const char c
);
53 static void logbuff_puts (const char *s
);
54 static int logbuff_printk(const char *line
);
56 static char buf
[1024];
58 /* This combination will not print messages with the default loglevel */
59 static unsigned console_loglevel
= 3;
60 static unsigned default_message_loglevel
= 4;
61 static unsigned log_version
= 1;
62 #ifdef CONFIG_ALT_LB_ADDR
63 static volatile logbuff_t
*log
;
65 static logbuff_t
*log
;
69 void logbuff_init_ptrs (void)
71 unsigned long tag
, post_word
;
74 #ifdef CONFIG_ALT_LB_ADDR
75 log
= (logbuff_t
*)CONFIG_ALT_LH_ADDR
;
76 lbuf
= (char *)CONFIG_ALT_LB_ADDR
;
78 log
= (logbuff_t
*)(gd
->bd
->bi_memsize
-LOGBUFF_LEN
) - 1;
82 /* Set up log version */
83 if ((s
= getenv ("logversion")) != NULL
)
84 log_version
= (int)simple_strtoul (s
, NULL
, 10);
90 post_word
= post_word_load();
92 /* The post routines have setup the word so we can simply test it */
93 if (tag
!= LOGBUFF_MAGIC
|| (post_word
& POST_COLDBOOT
)) {
97 /* No post routines, so we do our own checking */
98 if (tag
!= LOGBUFF_MAGIC
|| post_word
!= LOGBUFF_MAGIC
) {
100 post_word_store (LOGBUFF_MAGIC
);
103 if (log_version
== 2 && (long)log
->v2
.start
> (long)log
->v2
.con
)
104 log
->v2
.start
= log
->v2
.con
;
106 /* Initialize default loglevel if present */
107 if ((s
= getenv ("loglevel")) != NULL
)
108 console_loglevel
= (int)simple_strtoul (s
, NULL
, 10);
110 gd
->post_log_word
|= LOGBUFF_INITIALIZED
;
113 void logbuff_reset (void)
115 #ifndef CONFIG_ALT_LB_ADDR
116 memset (log
, 0, sizeof (logbuff_t
));
118 if (log_version
== 2) {
119 log
->v2
.tag
= LOGBUFF_MAGIC
;
120 #ifdef CONFIG_ALT_LB_ADDR
127 log
->v1
.tag
= LOGBUFF_MAGIC
;
128 #ifdef CONFIG_ALT_LB_ADDR
137 int drv_logbuff_init (void)
142 /* Device initialization */
143 memset (&logdev
, 0, sizeof (logdev
));
145 strcpy (logdev
.name
, "logbuff");
146 logdev
.ext
= 0; /* No extensions */
147 logdev
.flags
= DEV_FLAGS_OUTPUT
; /* Output only */
148 logdev
.putc
= logbuff_putc
; /* 'putc' function */
149 logdev
.puts
= logbuff_puts
; /* 'puts' function */
151 rc
= device_register (&logdev
);
153 return (rc
== 0) ? 1 : rc
;
156 static void logbuff_putc (const char c
)
161 logbuff_printk (buf
);
164 static void logbuff_puts (const char *s
)
169 void logbuff_log(char *msg
)
171 if ((gd
->post_log_word
& LOGBUFF_INITIALIZED
)) {
172 logbuff_printk (msg
);
174 /* Can happen only for pre-relocated errors as logging */
175 /* at that stage should be disabled */
183 * Description: Handler for 'log' command..
185 * Inputs: argv[1] contains the subcommand
190 int do_log (cmd_tbl_t
*cmdtp
, int flag
, int argc
, char *argv
[])
193 unsigned long i
, start
, size
;
195 if (strcmp(argv
[1],"append") == 0) {
196 /* Log concatenation of all arguments separated by spaces */
197 for (i
=2; i
<argc
; i
++) {
198 logbuff_printk (argv
[i
]);
199 logbuff_putc ((i
<argc
-1) ? ' ' : '\n');
207 if (strcmp(argv
[1],"show") == 0) {
208 if (log_version
== 2) {
209 start
= log
->v2
.start
;
210 size
= log
->v2
.end
- log
->v2
.start
;
213 start
= log
->v1
.start
;
216 for (i
=0; i
< (size
&LOGBUFF_MASK
); i
++) {
217 s
= lbuf
+((start
+i
)&LOGBUFF_MASK
);
221 } else if (strcmp(argv
[1],"reset") == 0) {
224 } else if (strcmp(argv
[1],"info") == 0) {
225 printf ("Logbuffer at %08lx\n", (unsigned long)lbuf
);
226 if (log_version
== 2) {
227 printf ("log_start = %08lx\n", log
->v2
.start
);
228 printf ("log_end = %08lx\n", log
->v2
.end
);
229 printf ("logged_chars = %08lx\n", log
->v2
.chars
);
232 printf ("log_start = %08lx\n", log
->v1
.start
);
233 printf ("log_size = %08lx\n", log
->v1
.size
);
234 printf ("logged_chars = %08lx\n", log
->v1
.chars
);
238 printf ("Usage:\n%s\n", cmdtp
->usage
);
242 printf ("Usage:\n%s\n", cmdtp
->usage
);
249 "log - manipulate logbuffer\n",
250 "info - show pointer details\n"
251 "log reset - clear contents\n"
252 "log show - show contents\n"
253 "log append <msg> - append <msg> to the logbuffer\n"
256 static int logbuff_printk(const char *line
)
259 char *msg
, *p
, *buf_end
;
261 static signed char msg_level
= -1;
263 strcpy (buf
+ 3, line
);
265 buf_end
= buf
+ 3 + i
;
266 for (p
= buf
+ 3; p
< buf_end
; p
++) {
277 p
[1] = default_message_loglevel
+ '0';
281 msg_level
= p
[1] - '0';
284 for (; p
< buf_end
; p
++) {
285 if (log_version
== 2) {
286 lbuf
[log
->v2
.end
& LOGBUFF_MASK
] = *p
;
288 if (log
->v2
.end
- log
->v2
.start
> LOGBUFF_LEN
)
293 lbuf
[(log
->v1
.start
+ log
->v1
.size
) &
295 if (log
->v1
.size
< LOGBUFF_LEN
)
306 if (msg_level
< console_loglevel
) {