OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [cygmon/] [v2_0/] [misc/] [bsp/] [common/] [debug-io.c] - Blame information for rev 586

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//==========================================================================
2
//
3
//      debug-io.c
4
//
5
//      BSP Debug Channel Interfaces.
6
//
7
//==========================================================================
8
//####ECOSGPLCOPYRIGHTBEGIN####
9
// -------------------------------------------
10
// This file is part of eCos, the Embedded Configurable Operating System.
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under
14
// the terms of the GNU General Public License as published by the Free
15
// Software Foundation; either version 2 or (at your option) any later version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//==========================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):    
44
// Contributors: gthomas
45
// Date:         1999-10-20
46
// Purpose:      BSP Debug Channel Interfaces.
47
// Description:  
48
//               
49
//
50
//####DESCRIPTIONEND####
51
//
52
//=========================================================================
53
 
54
 
55
#include <stdlib.h>
56
#include <bsp/bsp.h>
57
#include "bsp_if.h"
58
 
59
static unsigned char __debug_ungetc;
60
 
61
extern int stub_is_active;
62
extern int __output_gdb_string (const char *str, int string_len);
63
void
64
bsp_debug_write(const char *p, int len)
65
{
66
    struct bsp_comm_procs *com = bsp_shared_data->__debug_procs;
67
    if (stub_is_active) {
68
        // We are running in 'GDB' mode
69
        __output_gdb_string(p, len);
70
    } else {
71
        com->__write(com->ch_data, p, len);
72
    }
73
}
74
 
75
 
76
int
77
bsp_debug_read(char *p, int len)
78
{
79
    struct bsp_comm_procs *com = bsp_shared_data->__debug_procs;
80
 
81
    if (len <= 0)
82
        return 0;
83
 
84
    if (__debug_ungetc) {
85
        *p = __debug_ungetc;
86
        __debug_ungetc = 0;
87
        return 1;
88
    }
89
 
90
    return com->__read(com->ch_data, p, len);
91
}
92
 
93
 
94
void
95
bsp_debug_putc(char ch)
96
{
97
    struct bsp_comm_procs *com = bsp_shared_data->__debug_procs;
98
 
99
    com->__putc(com->ch_data, ch);
100
}
101
 
102
int
103
bsp_debug_getc(void)
104
{
105
    struct bsp_comm_procs *com = bsp_shared_data->__debug_procs;
106
    int  ch;
107
 
108
    if (__debug_ungetc) {
109
        ch = __debug_ungetc;
110
        __debug_ungetc = 0;
111
    } else
112
        ch = com->__getc(com->ch_data);
113
 
114
    return ch;
115
}
116
 
117
 
118
void
119
bsp_debug_ungetc(char ch)
120
{
121
    __debug_ungetc = (unsigned char)ch;
122
}
123
 
124
 
125
int
126
bsp_debug_irq_disable(void)
127
{
128
    struct bsp_comm_procs *com = bsp_shared_data->__debug_procs;
129
 
130
    return com->__control(com->ch_data, COMMCTL_IRQ_DISABLE);
131
}
132
 
133
 
134
void
135
bsp_debug_irq_enable(void)
136
{
137
    struct bsp_comm_procs *com = bsp_shared_data->__debug_procs;
138
 
139
    com->__control(com->ch_data, COMMCTL_IRQ_ENABLE);
140
}
141
 
142
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.