4 * This file is part of BeRTOS.
6 * Bertos 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; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * As a special exception, you may use this file as part of a free software
21 * library without restriction. Specifically, if other files instantiate
22 * templates or use macros or inline functions from this file, or you compile
23 * this file and link it with other files to produce an executable, this
24 * file does not by itself cause the resulting executable to be covered by
25 * the GNU General Public License. This exception does not however
26 * invalidate any other reasons why the executable file might be covered by
27 * the GNU General Public License.
29 * Copyright 2003, 2004, 2005, 2006, 2007 Develer S.r.l. (http://www.develer.com/)
30 * Copyright 2000, 2001, 2002 Bernardo Innocenti <bernie@codewiz.org>
34 * \brief General pourpose debug support for embedded systems (implementation).
37 * \author Bernardo Innocenti <bernie@develer.com>
38 * \author Stefano Fedrigo <aleph@develer.com>
43 #include <cpu/types.h>
45 #include <cfg/macros.h> /* for BV() */
46 #include <cfg/debug.h>
48 #include <appconfig.h>
50 #include <mware/formatwr.h> /* for _formatted_write() */
51 #include <mware/pgm.h>
55 #if CPU_HARVARD && !defined(_PROGMEM)
56 #error This module build correctly only in program memory!
62 #define KDBG_WAIT_READY() do { /*nop*/ } while(0)
63 #define KDBG_WRITE_CHAR(c) putc((c), stderr)
64 #define KDBG_MASK_IRQ(old) do { (void)(old); } while(0)
65 #define KDBG_RESTORE_IRQ(old) do { /*nop*/ } while(0)
66 typedef char kdbg_irqsave_t; /* unused */
68 #define kdbg_hw_init() do {} while (0) ///< Not needed
70 #if CONFIG_KDEBUG_PORT == 666
71 #error BITBANG debug console missing for this platform
74 #include CPU_CSOURCE(kdebug)
82 kputs("\n\n*** BeRTOS DBG START ***\n");
87 * Output one character to the debug console
89 static void __kputchar(char c, UNUSED_ARG(void *, unused))
91 /* Poll while serial buffer is still busy */
94 /* Send '\n' as '\r\n' for dumb terminals */
97 KDBG_WRITE_CHAR('\r');
105 void kputchar(char c)
107 /* Mask serial TX intr */
108 kdbg_irqsave_t irqsave;
109 KDBG_MASK_IRQ(irqsave);
113 /* Restore serial TX intr */
114 KDBG_RESTORE_IRQ(irqsave);
118 static void PGM_FUNC(kvprintf)(const char * PGM_ATTR fmt, va_list ap)
121 /* Mask serial TX intr */
122 kdbg_irqsave_t irqsave;
123 KDBG_MASK_IRQ(irqsave);
125 PGM_FUNC(_formatted_write)(fmt, __kputchar, 0, ap);
127 /* Restore serial TX intr */
128 KDBG_RESTORE_IRQ(irqsave);
130 /* A better than nothing printf() surrogate. */
131 PGM_FUNC(kputs)(fmt);
132 #endif /* CONFIG_PRINTF */
135 void PGM_FUNC(kprintf)(const char * PGM_ATTR fmt, ...)
140 PGM_FUNC(kvprintf)(fmt, ap);
144 void PGM_FUNC(kputs)(const char * PGM_ATTR str)
148 /* Mask serial TX intr */
149 kdbg_irqsave_t irqsave;
150 KDBG_MASK_IRQ(irqsave);
152 while ((c = PGM_READ_CHAR(str++)))
155 KDBG_RESTORE_IRQ(irqsave);
160 * Cheap function to print small integers without using printf().
170 digit = num / divisor;
173 if (digit || output_len || divisor == 1)
175 kputchar(digit + '0');
179 while (divisor /= 10);
185 static void klocation(const char * PGM_ATTR file, int line)
187 PGM_FUNC(kputs)(file);
190 PGM_FUNC(kputs)(PGM_STR(": "));
193 int PGM_FUNC(__assert)(const char * PGM_ATTR cond, const char * PGM_ATTR file, int line)
195 klocation(file, line);
196 PGM_FUNC(kputs)(PGM_STR("Assertion failed: "));
197 PGM_FUNC(kputs)(cond);
204 * Unfortunately, there's no way to get __func__ in
205 * program memory, so we waste quite a lot of RAM in
206 * AVR and other Harvard processors.
208 void PGM_FUNC(__trace)(const char *name)
210 PGM_FUNC(kprintf)(PGM_STR("%s()\n"), name);
213 void PGM_FUNC(__tracemsg)(const char *name, const char * PGM_ATTR fmt, ...)
217 PGM_FUNC(kprintf)(PGM_STR("%s(): "), name);
219 PGM_FUNC(kvprintf)(fmt, ap);
224 int PGM_FUNC(__invalid_ptr)(void *value, const char * PGM_ATTR name, const char * PGM_ATTR file, int line)
226 klocation(file, line);
227 PGM_FUNC(kputs)(PGM_STR("Invalid ptr: "));
228 PGM_FUNC(kputs)(name);
230 PGM_FUNC(kprintf)(PGM_STR(" = 0x%p\n"), value);
239 void __init_wall(long *wall, int size)
242 *wall++ = WALL_VALUE;
246 int PGM_FUNC(__check_wall)(long *wall, int size, const char * PGM_ATTR name, const char * PGM_ATTR file, int line)
250 for (i = 0; i < size; i++)
252 if (wall[i] != WALL_VALUE)
254 klocation(file, line);
255 PGM_FUNC(kputs)(PGM_STR("Wall broken: "));
256 PGM_FUNC(kputs)(name);
258 PGM_FUNC(kprintf)(PGM_STR("[%d] (0x%p) = 0x%lx\n"), i, wall + i, wall[i]);
273 * Dump binary data in hex
275 void kdump(const void *_buf, size_t len)
277 const unsigned char *buf = (const unsigned char *)_buf;
280 kprintf("%02X", *buf++);
284 #endif /* CONFIG_PRINTF */