Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 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 | |
Jordan Crouse | db8c0ab | 2008-11-24 17:54:46 +0000 | [diff] [blame] | 30 | #include <libpayload-config.h> |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 31 | #include <libpayload.h> |
Patrick Georgi | 4727c07 | 2008-10-16 19:20:51 +0000 | [diff] [blame] | 32 | #include <usb/usb.h> |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 33 | |
Patrick Georgi | 657a6dc | 2008-10-21 15:08:18 +0000 | [diff] [blame] | 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 | |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 49 | void console_init(void) |
| 50 | { |
Jordan Crouse | 30939bd | 2008-04-10 22:49:02 +0000 | [diff] [blame] | 51 | #ifdef CONFIG_VIDEO_CONSOLE |
| 52 | video_console_init(); |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 53 | #endif |
| 54 | #ifdef CONFIG_SERIAL_CONSOLE |
| 55 | serial_init(); |
| 56 | #endif |
Jordan Crouse | 63f181f | 2008-04-25 23:09:39 +0000 | [diff] [blame] | 57 | #ifdef CONFIG_PC_KEYBOARD |
| 58 | keyboard_init(); |
| 59 | #endif |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static void device_putchar(unsigned char c) |
| 63 | { |
Patrick Georgi | 657a6dc | 2008-10-21 15:08:18 +0000 | [diff] [blame] | 64 | struct console_output_driver *out; |
| 65 | for (out = console_out; out != 0; out = out->next) |
| 66 | out->putchar(c); |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Patrick Georgi | 657a6dc | 2008-10-21 15:08:18 +0000 | [diff] [blame] | 69 | int putchar(unsigned int c) |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 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++; |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 87 | putchar('\n'); |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 88 | return n + 1; |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | int havekey(void) |
| 92 | { |
Patrick Georgi | 657a6dc | 2008-10-21 15:08:18 +0000 | [diff] [blame] | 93 | #ifdef CONFIG_USB |
Patrick Georgi | 4727c07 | 2008-10-16 19:20:51 +0000 | [diff] [blame] | 94 | usb_poll(); |
Patrick Georgi | 4727c07 | 2008-10-16 19:20:51 +0000 | [diff] [blame] | 95 | #endif |
Patrick Georgi | 657a6dc | 2008-10-21 15:08:18 +0000 | [diff] [blame] | 96 | struct console_input_driver *in; |
| 97 | for (in = console_in; in != 0; in = in->next) |
| 98 | if (in->havekey()) |
| 99 | return 1; |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 100 | return 0; |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 101 | } |
| 102 | |
Uwe Hermann | 6a441bf | 2008-03-20 19:54:59 +0000 | [diff] [blame] | 103 | /** |
| 104 | * This returns an ASCII value - the two getchar functions |
| 105 | * cook the respective input from the device. |
| 106 | */ |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 107 | int getchar(void) |
| 108 | { |
| 109 | while (1) { |
Patrick Georgi | 657a6dc | 2008-10-21 15:08:18 +0000 | [diff] [blame] | 110 | #ifdef CONFIG_USB |
Patrick Georgi | 4727c07 | 2008-10-16 19:20:51 +0000 | [diff] [blame] | 111 | usb_poll(); |
Patrick Georgi | 4727c07 | 2008-10-16 19:20:51 +0000 | [diff] [blame] | 112 | #endif |
Patrick Georgi | 657a6dc | 2008-10-21 15:08:18 +0000 | [diff] [blame] | 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(); |
Jordan Crouse | f6145c3 | 2008-03-19 23:56:58 +0000 | [diff] [blame] | 117 | } |
| 118 | } |
Jordan Crouse | 672d0ae | 2008-04-08 23:21:33 +0000 | [diff] [blame] | 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 | } |