blob: aca3931ca8fe913020dc08488f23a2c2f52b096b [file] [log] [blame]
Travis Geiselbrecht1d0df692008-09-01 02:26:09 -07001/*
2 * Copyright (c) 2008 Travis Geiselbrecht
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files
6 * (the "Software"), to deal in the Software without restriction,
7 * including without limitation the rights to use, copy, modify, merge,
8 * publish, distribute, sublicense, and/or sell copies of the Software,
9 * and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23#include <stdarg.h>
24#include <reg.h>
25#include <printf.h>
26#include <kernel/thread.h>
27#include <platform/armemu/memmap.h>
28#include <platform/debug.h>
29
30void dputc(char c)
31{
32 *REG8(DEBUG_STDOUT) = c;
33}
34
35int dgetc(char *c)
36{
37 int8_t result = (int8_t)*REG8(DEBUG_STDIN);
38
39 if (result == -1)
40 return -1;
41
42 *c = (char)result;
43 return 0;
44}
45
46void debug_dump_regs(void)
47{
48 *REG32(DEBUG_REGDUMP) = 1;
49}
50
51void debug_halt(void)
52{
53 *REG32(DEBUG_HALT) = 1;
54 for(;;);
55}
56
57void debug_dump_memory_bytes(void *mem, int len)
58{
59 *REG32(DEBUG_MEMDUMPADDR) = (unsigned int)mem;
60 *REG32(DEBUG_MEMDUMPLEN) = len;
61 *REG32(DEBUG_MEMDUMP_BYTE) = 1;
62}
63
64void debug_dump_memory_halfwords(void *mem, int len)
65{
66 len /= 2;
67
68 *REG32(DEBUG_MEMDUMPADDR) = (unsigned int)mem;
69 *REG32(DEBUG_MEMDUMPLEN) = len;
70 *REG32(DEBUG_MEMDUMP_HALFWORD) = 1;
71}
72
73void debug_dump_memory_words(void *mem, int len)
74{
75 len /= 4;
76
77 *REG32(DEBUG_MEMDUMPADDR) = (unsigned int)mem;
78 *REG32(DEBUG_MEMDUMPLEN) = len;
79 *REG32(DEBUG_MEMDUMP_WORD) = 1;
80}
81
82void debug_set_trace_level(int trace_type, int level)
83{
84 if(trace_type < 0 || trace_type >= 4)
85 return;
86
87 *REG32(DEBUG_SET_TRACELEVEL_CPU + trace_type * 4) = level;
88}
89
90uint32_t debug_cycle_count()
91{
92 return *REG32(DEBUG_CYCLE_COUNT);
93}