blob: 9d64ffc8aa58e73aff3c884216f610b9bb7c6d0f [file] [log] [blame]
Brian Swetlanddfdb4612009-01-01 11:44:36 -08001/*
2 * Copyright (c) 2008, Google Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google, Inc. nor the names of its contributors
15 * may be used to endorse or promote products derived from this
16 * software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
21 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
28 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32#include <debug.h>
33#include <printf.h>
34#include <arch/arm/dcc.h>
Dima Zavine35e75b2009-01-15 18:09:26 -080035#include <dev/fbcon.h>
Brian Swetlanddfdb4612009-01-01 11:44:36 -080036#include <dev/uart.h>
37
Brian Swetland31016c42009-01-29 17:25:16 -080038#ifndef WITH_DEBUG_UART3
39#define WITH_DEBUG_UART3 1
40#define DEBUG_UART 2
41#endif
42
43#ifndef WITH_DEBUG_DCC
44#define WITH_DEBUG_DCC 0
45#endif
Brian Swetlanddfdb4612009-01-01 11:44:36 -080046
47void _dputc(char c)
48{
Brian Swetland31016c42009-01-29 17:25:16 -080049#if WITH_DEBUG_DCC
Brian Swetlanddfdb4612009-01-01 11:44:36 -080050 if (c == '\n') {
51 while (dcc_putc('\r') < 0);
52 }
53 while (dcc_putc(c) < 0);
Brian Swetland31016c42009-01-29 17:25:16 -080054#endif
55#if WITH_DEBUG_UART3
Brian Swetlanddfdb4612009-01-01 11:44:36 -080056 uart_putc(DEBUG_UART, c);
57#endif
Dima Zavine35e75b2009-01-15 18:09:26 -080058#if WITH_DEV_FBCON
59 fbcon_putc(c);
60#endif
Brian Swetlanddfdb4612009-01-01 11:44:36 -080061}
62
63int dgetc(char *c)
64{
Brian Swetlandc82fda92009-01-02 01:53:42 -080065 int n;
Brian Swetland31016c42009-01-29 17:25:16 -080066#if WITH_DEBUG_DCC
Brian Swetlandc82fda92009-01-02 01:53:42 -080067 n = dcc_getc();
Brian Swetland31016c42009-01-29 17:25:16 -080068#elif WITH_DEBUG_UART3
Brian Swetlandc82fda92009-01-02 01:53:42 -080069 n = uart_getc(DEBUG_UART, 0);
Brian Swetland31016c42009-01-29 17:25:16 -080070#else
71 n = -1;
Brian Swetlandc82fda92009-01-02 01:53:42 -080072#endif
Brian Swetlanddfdb4612009-01-01 11:44:36 -080073 if (n < 0) {
74 return -1;
75 } else {
76 *c = n;
77 return 0;
78 }
Brian Swetlanddfdb4612009-01-01 11:44:36 -080079}
80
81void platform_halt(void)
82{
83 dprintf(INFO, "HALT: spinning forever...\n");
84 for(;;);
85}
86
87uint32_t debug_cycle_count(void)
88{
Brian Swetlandc82fda92009-01-02 01:53:42 -080089 return 0;
Brian Swetlanddfdb4612009-01-01 11:44:36 -080090}