Eric Biederman | 8ca8d76 | 2003-04-22 19:02:15 +0000 | [diff] [blame] | 1 | /* |
Stefan Reinauer | 2a8ad41 | 2010-09-27 18:49:46 +0000 | [diff] [blame] | 2 | * This file is part of the coreboot project. |
| 3 | * |
| 4 | * Copyright (C) 2003 Eric Biederman |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
Eric Biederman | 8ca8d76 | 2003-04-22 19:02:15 +0000 | [diff] [blame] | 14 | */ |
| 15 | |
Kyösti Mälkki | 1d7541f | 2014-02-17 21:34:42 +0200 | [diff] [blame] | 16 | #include <console/cbmem_console.h> |
Edward O'Callaghan | 0ddb826 | 2014-06-17 18:37:08 +1000 | [diff] [blame] | 17 | #include <console/ne2k.h> |
| 18 | #include <console/qemu_debugcon.h> |
| 19 | #include <console/spkmodem.h> |
| 20 | #include <console/streams.h> |
Kyösti Mälkki | 1d7541f | 2014-02-17 21:34:42 +0200 | [diff] [blame] | 21 | #include <console/uart.h> |
| 22 | #include <console/usb.h> |
Martin Roth | 3a54318 | 2015-09-28 15:27:24 -0600 | [diff] [blame] | 23 | #include <console/spi.h> |
Youness Alaoui | c4b4ff3 | 2017-05-11 10:36:29 -0400 | [diff] [blame] | 24 | #include <console/flash.h> |
Edward O'Callaghan | 0ddb826 | 2014-06-17 18:37:08 +1000 | [diff] [blame] | 25 | #include <rules.h> |
Kyösti Mälkki | 1d7541f | 2014-02-17 21:34:42 +0200 | [diff] [blame] | 26 | |
Kyösti Mälkki | 21333f9 | 2014-02-14 10:04:31 +0200 | [diff] [blame] | 27 | void console_hw_init(void) |
Stefan Reinauer | 5a1f597 | 2010-03-31 14:34:40 +0000 | [diff] [blame] | 28 | { |
Kyösti Mälkki | f339086 | 2014-02-26 15:19:04 +0200 | [diff] [blame] | 29 | __cbmemc_init(); |
| 30 | __spkmodem_init(); |
| 31 | __qemu_debugcon_init(); |
| 32 | |
| 33 | __uart_init(); |
| 34 | __ne2k_init(); |
| 35 | __usbdebug_init(); |
Martin Roth | 3a54318 | 2015-09-28 15:27:24 -0600 | [diff] [blame] | 36 | __spiconsole_init(); |
Youness Alaoui | c4b4ff3 | 2017-05-11 10:36:29 -0400 | [diff] [blame] | 37 | __flashconsole_init(); |
Stefan Reinauer | 5a1f597 | 2010-03-31 14:34:40 +0000 | [diff] [blame] | 38 | } |
Kyösti Mälkki | fd95624 | 2014-02-03 17:04:22 +0200 | [diff] [blame] | 39 | |
Kyösti Mälkki | fd95624 | 2014-02-03 17:04:22 +0200 | [diff] [blame] | 40 | void console_tx_byte(unsigned char byte) |
| 41 | { |
Kyösti Mälkki | f339086 | 2014-02-26 15:19:04 +0200 | [diff] [blame] | 42 | __cbmemc_tx_byte(byte); |
| 43 | __spkmodem_tx_byte(byte); |
| 44 | __qemu_debugcon_tx_byte(byte); |
| 45 | |
Kyösti Mälkki | d4a72f7 | 2015-05-13 20:20:00 +0300 | [diff] [blame] | 46 | /* Some consoles want newline conversion |
| 47 | * to keep terminals happy. |
| 48 | */ |
| 49 | if (byte == '\n') { |
| 50 | __uart_tx_byte('\r'); |
| 51 | __usb_tx_byte('\r'); |
| 52 | } |
| 53 | |
Kyösti Mälkki | f339086 | 2014-02-26 15:19:04 +0200 | [diff] [blame] | 54 | __uart_tx_byte(byte); |
| 55 | __ne2k_tx_byte(byte); |
| 56 | __usb_tx_byte(byte); |
Martin Roth | 3a54318 | 2015-09-28 15:27:24 -0600 | [diff] [blame] | 57 | __spiconsole_tx_byte(byte); |
Youness Alaoui | c4b4ff3 | 2017-05-11 10:36:29 -0400 | [diff] [blame] | 58 | __flashconsole_tx_byte(byte); |
Kyösti Mälkki | fd95624 | 2014-02-03 17:04:22 +0200 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | void console_tx_flush(void) |
| 62 | { |
Kyösti Mälkki | f339086 | 2014-02-26 15:19:04 +0200 | [diff] [blame] | 63 | __uart_tx_flush(); |
| 64 | __ne2k_tx_flush(); |
| 65 | __usb_tx_flush(); |
Youness Alaoui | c4b4ff3 | 2017-05-11 10:36:29 -0400 | [diff] [blame] | 66 | __flashconsole_tx_flush(); |
Kyösti Mälkki | 4076072 | 2014-02-27 19:30:18 +0200 | [diff] [blame] | 67 | } |
Kyösti Mälkki | f2f7f03 | 2014-04-04 15:05:28 +0300 | [diff] [blame] | 68 | |
Lee Leahy | 219c332 | 2016-08-09 08:59:30 -0700 | [diff] [blame] | 69 | void console_write_line(uint8_t *buffer, size_t number_of_bytes) |
| 70 | { |
| 71 | /* Finish displaying all of the console data if requested */ |
| 72 | if (number_of_bytes == 0) { |
| 73 | console_tx_flush(); |
| 74 | return; |
| 75 | } |
| 76 | |
| 77 | /* Output the console data */ |
| 78 | while (number_of_bytes--) |
| 79 | console_tx_byte(*buffer++); |
| 80 | } |
| 81 | |
Kyösti Mälkki | f2f7f03 | 2014-04-04 15:05:28 +0300 | [diff] [blame] | 82 | |
Martin Roth | 53de6cd | 2017-06-09 09:27:08 -0600 | [diff] [blame] | 83 | #if IS_ENABLED(CONFIG_GDB_STUB) && (ENV_ROMSTAGE || ENV_RAMSTAGE) |
Kyösti Mälkki | f2f7f03 | 2014-04-04 15:05:28 +0300 | [diff] [blame] | 84 | void gdb_hw_init(void) |
| 85 | { |
| 86 | __gdb_hw_init(); |
| 87 | } |
| 88 | |
| 89 | void gdb_tx_byte(unsigned char byte) |
| 90 | { |
| 91 | __gdb_tx_byte(byte); |
| 92 | } |
| 93 | |
| 94 | void gdb_tx_flush(void) |
| 95 | { |
| 96 | __gdb_tx_flush(); |
| 97 | } |
| 98 | |
| 99 | unsigned char gdb_rx_byte(void) |
| 100 | { |
| 101 | return __gdb_rx_byte(); |
| 102 | } |
| 103 | #endif |