libpayload: Enable keyboard translation so that we can use scancode set 1
[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 #ifdef CONFIG_PC_KEYBOARD
41         keyboard_init();
42 #endif
43 }
44
45 static void device_putchar(unsigned char c)
46 {
47 #ifdef CONFIG_VIDEO_CONSOLE
48         video_console_putchar(0x700| c);
49 #endif
50 #ifdef CONFIG_SERIAL_CONSOLE
51         serial_putchar(c);
52 #endif
53 }
54
55 int putchar(int c)
56 {
57         c &= 0xff;
58         if (c == '\n')
59                 device_putchar('\r');
60         device_putchar(c);
61         return c;
62 }
63
64 int puts(const char *s)
65 {
66         int n = 0;
67
68         while (*s) {
69                 putchar(*s++);
70                 n++;
71         }
72
73         putchar('\n');
74         return n + 1;
75 }
76
77 int havekey(void)
78 {
79 #ifdef CONFIG_SERIAL_CONSOLE
80         if (serial_havechar())
81                 return 1;
82 #endif
83 #ifdef CONFIG_PC_KEYBOARD
84         if (keyboard_havechar())
85                 return 1;
86 #endif
87         return 0;
88 }
89
90 /**
91  * This returns an ASCII value - the two getchar functions
92  * cook the respective input from the device.
93  */
94 int getchar(void)
95 {
96         while (1) {
97 #ifdef CONFIG_SERIAL_CONSOLE
98                 if (serial_havechar())
99                         return serial_getchar();
100 #endif
101 #ifdef CONFIG_PC_KEYBOARD
102                 if (keyboard_havechar())
103                         return keyboard_getchar();
104 #endif
105         }
106 }
107
108 int getchar_timeout(int *ms)
109 {
110         while (*ms > 0) {
111                 if (havekey())
112                         return getchar();
113
114                 mdelay(100);
115                 *ms -= 100;
116         }
117
118         if (*ms < 0)
119                 *ms = 0;
120
121         return 0;
122 }