b0bfe241c058a6a8787364a28dc495853bf5ad09
[coreboot.git] / payloads / libpayload / libc / console.c
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <libpayload.h>
31
32 void console_init(void)
33 {
34 #ifdef CONFIG_VIDEO_CONSOLE
35         video_console_init();
36 #endif
37 #ifdef CONFIG_SERIAL_CONSOLE
38         serial_init();
39 #endif
40 }
41
42 static void device_putchar(unsigned char c)
43 {
44 #ifdef CONFIG_VIDEO_CONSOLE
45         video_console_putchar(0x700| c);
46 #endif
47 #ifdef CONFIG_SERIAL_CONSOLE
48         serial_putchar(c);
49 #endif
50 }
51
52 int putchar(int c)
53 {
54         c &= 0xff;
55         if (c == '\n')
56                 device_putchar('\r');
57         device_putchar(c);
58         return c;
59 }
60
61 int puts(const char *s)
62 {
63         int n = 0;
64
65         while (*s) {
66                 putchar(*s++);
67                 n++;
68         }
69
70         putchar('\n');
71         return n + 1;
72 }
73
74 int havekey(void)
75 {
76 #ifdef CONFIG_SERIAL_CONSOLE
77         if (serial_havechar())
78                 return 1;
79 #endif
80 #ifdef CONFIG_PC_KEYBOARD
81         if (keyboard_havechar())
82                 return 1;
83 #endif
84         return 0;
85 }
86
87 /**
88  * This returns an ASCII value - the two getchar functions
89  * cook the respective input from the device.
90  */
91 int getchar(void)
92 {
93         while (1) {
94 #ifdef CONFIG_SERIAL_CONSOLE
95                 if (serial_havechar())
96                         return serial_getchar();
97 #endif
98 #ifdef CONFIG_PC_KEYBOARD
99                 if (keyboard_havechar())
100                         return keyboard_getchar();
101 #endif
102         }
103 }
104
105 int getchar_timeout(int *ms)
106 {
107         while (*ms > 0) {
108                 if (havekey())
109                         return getchar();
110
111                 mdelay(100);
112                 *ms -= 100;
113         }
114
115         if (*ms < 0)
116                 *ms = 0;
117
118         return 0;
119 }