2 * U-boot - stub functions for common kgdb code,
3 * can be overridden in board specific files
5 * Copyright 2009 Analog Devices Inc.
7 * Licensed under the GPL-2 or later.
13 int (*debugger_exception_handler)(struct pt_regs *);
16 void kgdb_serial_init(void)
22 void putDebugChar(int c)
28 void putDebugStr(const char *str)
36 int getDebugChar(void)
42 void kgdb_interruptible(int yes)
48 void kgdb_flush_cache_range(void *from, void *to)
50 flush_cache((unsigned long)from, (unsigned long)(to - from));
54 void kgdb_flush_cache_all(void)
56 if (dcache_status()) {
60 if (icache_status()) {