blob: b1d70ee0ded0560ba1b0170fc5053ca98da1788f [file] [log] [blame]
Corey Tabaka84697242009-03-26 02:32:01 -04001/*
2 * Copyright (c) 2009 Corey Tabaka
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 <arch/x86.h>
Corey Tabakab3f6cac2009-04-01 17:35:12 -040028#include <platform/pc/memmap.h>
Corey Tabaka84697242009-03-26 02:32:01 -040029#include <platform/console.h>
30#include <platform/keyboard.h>
31#include <platform/debug.h>
32
33void _dputc(char c)
34{
35 cputc(c);
36}
37
Ajay Dudanica0b6a22011-05-18 19:48:32 -070038int dgetc(char *c, bool wait)
Corey Tabaka84697242009-03-26 02:32:01 -040039{
Corey Tabakaad21b8d2009-04-03 15:34:38 -040040 int ret = platform_read_key(c);
Corey Tabaka42353ca2010-07-21 15:59:46 -070041 //if (ret < 0)
42 // arch_idle();
Corey Tabakaad21b8d2009-04-03 15:34:38 -040043
44 return ret;
Corey Tabaka84697242009-03-26 02:32:01 -040045}
46
47void debug_dump_regs(void)
48{
49}
50
51void platform_halt(void)
52{
53 for(;;) {
54 x86_cli();
55 x86_hlt();
56 }
57}
58
59void debug_dump_memory_bytes(void *mem, int len)
60{
61}
62
63void debug_dump_memory_halfwords(void *mem, int len)
64{
65}
66
67void debug_dump_memory_words(void *mem, int len)
68{
69}
70
71void debug_set_trace_level(int trace_type, int level)
72{
73}
74