blob: 8adb6ce1e7e4c7dbe012300b5ecd0271813575cf [file] [log] [blame]
Brian Swetland2500aa12009-01-01 04:33:55 -08001/*
Brian Swetlandddf61a22009-01-29 20:46:14 -08002 * Copyright (c) 2009, Google Inc.
Brian Swetland2500aa12009-01-01 04:33:55 -08003 * All rights reserved.
Duy Truongf3ac7b32013-02-13 01:07:28 -08004 * Copyright (c) 2009, The Linux Foundation. All rights reserved.
Brian Swetland2500aa12009-01-01 04:33:55 -08005 *
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 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * * Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
13 * the documentation and/or other materials provided with the
14 * distribution.
15 * * Neither the name of Google, Inc. nor the names of its contributors
16 * may be used to endorse or promote products derived from this
17 * software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
25 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
26 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
29 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33#include <debug.h>
34#include <printf.h>
35#include <arch/arm/dcc.h>
Dima Zavin6e274c22009-01-28 17:28:41 -080036#include <dev/fbcon.h>
Brian Swetland2500aa12009-01-01 04:33:55 -080037#include <dev/uart.h>
38
Brian Swetland2500aa12009-01-01 04:33:55 -080039void _dputc(char c)
40{
Brian Swetlandddf61a22009-01-29 20:46:14 -080041#if WITH_DEBUG_DCC
Brian Swetland2500aa12009-01-01 04:33:55 -080042 if (c == '\n') {
Ajay Dudanib01e5062011-12-03 23:23:42 -080043 while (dcc_putc('\r') < 0) ;
Brian Swetland2500aa12009-01-01 04:33:55 -080044 }
Ajay Dudanib01e5062011-12-03 23:23:42 -080045 while (dcc_putc(c) < 0) ;
Brian Swetland2500aa12009-01-01 04:33:55 -080046#endif
Brian Swetlandddf61a22009-01-29 20:46:14 -080047#if WITH_DEBUG_UART
48 uart_putc(0, c);
49#endif
50#if WITH_DEBUG_FBCON && WITH_DEV_FBCON
Dima Zavin6e274c22009-01-28 17:28:41 -080051 fbcon_putc(c);
52#endif
Ajay Dudani168f6cb2009-12-07 19:04:02 -080053#if WITH_DEBUG_JTAG
54 jtag_dputc(c);
55#endif
Brian Swetland2500aa12009-01-01 04:33:55 -080056}
57
Travis Geiselbrechtdbc2c682009-06-28 12:18:39 -070058int dgetc(char *c, bool wait)
Brian Swetland2500aa12009-01-01 04:33:55 -080059{
Brian Swetlandc82fda92009-01-02 01:53:42 -080060 int n;
Brian Swetlandddf61a22009-01-29 20:46:14 -080061#if WITH_DEBUG_DCC
Brian Swetlandc82fda92009-01-02 01:53:42 -080062 n = dcc_getc();
Brian Swetlandddf61a22009-01-29 20:46:14 -080063#elif WITH_DEBUG_UART
64 n = uart_getc(0, 0);
Brian Swetlandc82fda92009-01-02 01:53:42 -080065#else
Brian Swetlandddf61a22009-01-29 20:46:14 -080066 n = -1;
Brian Swetlandc82fda92009-01-02 01:53:42 -080067#endif
Brian Swetland2500aa12009-01-01 04:33:55 -080068 if (n < 0) {
69 return -1;
70 } else {
71 *c = n;
72 return 0;
73 }
Brian Swetland2500aa12009-01-01 04:33:55 -080074}
75
76void platform_halt(void)
77{
78 dprintf(INFO, "HALT: spinning forever...\n");
Ajay Dudanib01e5062011-12-03 23:23:42 -080079 for (;;) ;
Brian Swetland2500aa12009-01-01 04:33:55 -080080}