1 |
27 |
unneback |
/*=============================================================================
|
2 |
|
|
//
|
3 |
|
|
// hal_diag.c
|
4 |
|
|
//
|
5 |
|
|
// HAL diagnostic output code
|
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): nickg
|
44 |
|
|
// Contributors: nickg, dmoseley
|
45 |
|
|
// Date: 1998-03-02
|
46 |
|
|
// Purpose: HAL diagnostic output
|
47 |
|
|
// Description: Implementations of HAL diagnostic output support.
|
48 |
|
|
//
|
49 |
|
|
//####DESCRIPTIONEND####
|
50 |
|
|
//
|
51 |
|
|
//===========================================================================*/
|
52 |
|
|
|
53 |
|
|
#include <pkgconf/hal.h>
|
54 |
|
|
|
55 |
|
|
#include <cyg/infra/cyg_type.h> // base types
|
56 |
|
|
#include <cyg/infra/cyg_trac.h> // tracing macros
|
57 |
|
|
#include <cyg/infra/cyg_ass.h> // assertion macros
|
58 |
|
|
|
59 |
|
|
#include <cyg/hal/hal_arch.h>
|
60 |
|
|
#include <cyg/hal/hal_diag.h>
|
61 |
|
|
|
62 |
|
|
#include <cyg/hal/hal_intr.h>
|
63 |
|
|
|
64 |
|
|
#include <cyg/hal/hal_io.h>
|
65 |
|
|
|
66 |
|
|
//-----------------------------------------------------------------------------
|
67 |
|
|
// Select which diag channels to use
|
68 |
|
|
|
69 |
|
|
//#define CYG_KERNEL_DIAG_LCD
|
70 |
|
|
#define CYG_KERNEL_DIAG_SERIAL
|
71 |
|
|
|
72 |
|
|
/*---------------------------------------------------------------------------*/
|
73 |
|
|
|
74 |
|
|
void hal_diag_led(int x)
|
75 |
|
|
{
|
76 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_LEDBAR, x);
|
77 |
|
|
#if !defined(CYG_KERNEL_DIAG_LCD)
|
78 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIWORD, x);
|
79 |
|
|
#endif
|
80 |
|
|
}
|
81 |
|
|
|
82 |
|
|
externC void diag_write_string (const char*);
|
83 |
|
|
|
84 |
|
|
#ifdef CYG_KERNEL_DIAG_SERIAL
|
85 |
|
|
extern void cyg_hal_plf_comms_init(void);
|
86 |
|
|
extern void cyg_hal_plf_serial_putc(void*, cyg_uint8);
|
87 |
|
|
extern cyg_uint8 cyg_hal_plf_serial_getc(void*);
|
88 |
|
|
#endif
|
89 |
|
|
|
90 |
|
|
void hal_diag_init(void)
|
91 |
|
|
{
|
92 |
|
|
#if defined(CYGSEM_HAL_ROM_MONITOR) && !defined(CYG_KERNEL_DIAG_SERIAL)
|
93 |
|
|
// It's handy to have the LCD initialized at reset when using it
|
94 |
|
|
// for debugging output.
|
95 |
|
|
// The serial port likely doesn't work yet. Let's wait.
|
96 |
|
|
diag_write_string ("eCos ROM " __TIME__ "\n");
|
97 |
|
|
diag_write_string (__DATE__ "\n");
|
98 |
|
|
#endif
|
99 |
|
|
|
100 |
|
|
#if defined(CYG_KERNEL_DIAG_SERIAL)
|
101 |
|
|
cyg_hal_plf_comms_init();
|
102 |
|
|
#endif
|
103 |
|
|
}
|
104 |
|
|
|
105 |
|
|
#if defined(CYG_KERNEL_DIAG_LCD)
|
106 |
|
|
static void hal_diag_clear_lcd(void)
|
107 |
|
|
{
|
108 |
|
|
volatile int i = 0x20000;
|
109 |
|
|
while (--i) ;
|
110 |
|
|
|
111 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS0, ' ');
|
112 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS1, ' ');
|
113 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS2, ' ');
|
114 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS3, ' ');
|
115 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS4, ' ');
|
116 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS5, ' ');
|
117 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS6, ' ');
|
118 |
|
|
HAL_WRITE_UINT32(HAL_DISPLAY_ASCIIPOS7, ' ');
|
119 |
|
|
}
|
120 |
|
|
#endif /* defined(CYG_KERNEL_DIAG_LCD) */
|
121 |
|
|
|
122 |
|
|
void hal_diag_write_char(char c)
|
123 |
|
|
{
|
124 |
|
|
#if defined(CYG_KERNEL_DIAG_LCD)
|
125 |
|
|
static volatile CYG_WORD* reg = HAL_DISPLAY_ASCIIPOS0;
|
126 |
|
|
#endif
|
127 |
|
|
|
128 |
|
|
unsigned long __state;
|
129 |
|
|
|
130 |
|
|
HAL_DISABLE_INTERRUPTS(__state);
|
131 |
|
|
|
132 |
|
|
if(c == '\n')
|
133 |
|
|
{
|
134 |
|
|
#if defined(CYG_KERNEL_DIAG_LCD)
|
135 |
|
|
reg = HAL_DISPLAY_ASCIIPOS0;
|
136 |
|
|
hal_diag_clear_lcd();
|
137 |
|
|
#endif
|
138 |
|
|
#if defined (CYG_KERNEL_DIAG_SERIAL)
|
139 |
|
|
cyg_hal_plf_serial_putc(NULL, '\r');
|
140 |
|
|
cyg_hal_plf_serial_putc(NULL, '\n');
|
141 |
|
|
#endif
|
142 |
|
|
}
|
143 |
|
|
else if (c == '\r')
|
144 |
|
|
{
|
145 |
|
|
// Ignore '\r'
|
146 |
|
|
}
|
147 |
|
|
else
|
148 |
|
|
{
|
149 |
|
|
#if defined(CYG_KERNEL_DIAG_LCD)
|
150 |
|
|
if (reg == HAL_DISPLAY_ASCIIPOS0)
|
151 |
|
|
hal_diag_clear_lcd();
|
152 |
|
|
|
153 |
|
|
HAL_WRITE_UINT32(reg, c);
|
154 |
|
|
|
155 |
|
|
// Advance to next LED position.
|
156 |
|
|
if (reg == HAL_DISPLAY_ASCIIPOS0)
|
157 |
|
|
reg = HAL_DISPLAY_ASCIIPOS1;
|
158 |
|
|
else if (reg == HAL_DISPLAY_ASCIIPOS1)
|
159 |
|
|
reg = HAL_DISPLAY_ASCIIPOS2;
|
160 |
|
|
else if (reg == HAL_DISPLAY_ASCIIPOS2)
|
161 |
|
|
reg = HAL_DISPLAY_ASCIIPOS3;
|
162 |
|
|
else if (reg == HAL_DISPLAY_ASCIIPOS3)
|
163 |
|
|
reg = HAL_DISPLAY_ASCIIPOS4;
|
164 |
|
|
else if (reg == HAL_DISPLAY_ASCIIPOS4)
|
165 |
|
|
reg = HAL_DISPLAY_ASCIIPOS5;
|
166 |
|
|
else if (reg == HAL_DISPLAY_ASCIIPOS5)
|
167 |
|
|
reg = HAL_DISPLAY_ASCIIPOS6;
|
168 |
|
|
else if (reg == HAL_DISPLAY_ASCIIPOS6)
|
169 |
|
|
reg = HAL_DISPLAY_ASCIIPOS7;
|
170 |
|
|
else // reg == HAL_DISPLAY_ASCIIPOS7 or UNKNOWN
|
171 |
|
|
reg = HAL_DISPLAY_ASCIIPOS0;
|
172 |
|
|
#endif
|
173 |
|
|
#if defined(CYG_KERNEL_DIAG_SERIAL)
|
174 |
|
|
cyg_hal_plf_serial_putc(NULL, c);
|
175 |
|
|
#endif
|
176 |
|
|
}
|
177 |
|
|
|
178 |
|
|
HAL_RESTORE_INTERRUPTS(__state);
|
179 |
|
|
}
|
180 |
|
|
|
181 |
|
|
void hal_diag_read_char(char* c)
|
182 |
|
|
{
|
183 |
|
|
*c = cyg_hal_plf_serial_getc(NULL);
|
184 |
|
|
}
|
185 |
|
|
|
186 |
|
|
/*---------------------------------------------------------------------------*/
|
187 |
|
|
/* End of hal_diag.c */
|