[PATCH] libpayload: rename config.h to libpayload-config.h
[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-config.h>
31 #include <libpayload.h>
32 #include <usb/usb.h>
33
34 struct console_output_driver *console_out;
35 struct console_input_driver *console_in;
36
37 void console_add_output_driver(struct console_output_driver *out)
38 {
39         out->next = console_out;
40         console_out = out;
41 }
42
43 void console_add_input_driver(struct console_input_driver *in)
44 {
45         in->next = console_in;
46         console_in = in;
47 }
48
49 void console_init(void)
50 {
51 #ifdef CONFIG_VIDEO_CONSOLE
52         video_console_init();
53 #endif
54 #ifdef CONFIG_SERIAL_CONSOLE
55         serial_init();
56 #endif
57 #ifdef CONFIG_PC_KEYBOARD
58         keyboard_init();
59 #endif
60 }
61
62 static void device_putchar(unsigned char c)
63 {
64         struct console_output_driver *out;
65         for (out = console_out; out != 0; out = out->next)
66                 out->putchar(c);
67 }
68
69 int putchar(unsigned int c)
70 {
71         c &= 0xff;
72         if (c == '\n')
73                 device_putchar('\r');
74         device_putchar(c);
75         return c;
76 }
77
78 int puts(const char *s)
79 {
80         int n = 0;
81
82         while (*s) {
83                 putchar(*s++);
84                 n++;
85         }
86
87         putchar('\n');
88         return n + 1;
89 }
90
91 int havekey(void)
92 {
93 #ifdef CONFIG_USB
94         usb_poll();
95 #endif
96         struct console_input_driver *in;
97         for (in = console_in; in != 0; in = in->next)
98                 if (in->havekey())
99                         return 1;
100         return 0;
101 }
102
103 /**
104  * This returns an ASCII value - the two getchar functions
105  * cook the respective input from the device.
106  */
107 int getchar(void)
108 {
109         while (1) {
110 #ifdef CONFIG_USB
111                 usb_poll();
112 #endif
113                 struct console_input_driver *in = console_in;
114                 for (in = console_in; in != 0; in = in->next)
115                         if (in->havechar())
116                                 return in->getchar();
117         }
118 }
119
120 int getchar_timeout(int *ms)
121 {
122         while (*ms > 0) {
123                 if (havekey())
124                         return getchar();
125
126                 mdelay(100);
127                 *ms -= 100;
128         }
129
130         if (*ms < 0)
131                 *ms = 0;
132
133         return 0;
134 }