blob: db13008ba5b4adf5220576dfde94ee6e97ede36f [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
3 * Daniel Engström, Omicron Ceti AB, daniel@omicron.se
wdenk8bde7f72003-06-27 21:31:46 +00004 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * (C) Copyright 2000
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26/*------------------------------------------------------------------------------+ */
wdenk7a8e9bed2003-05-31 18:35:21 +000027
wdenk2262cfe2002-11-18 00:14:45 +000028/*
29 * This source code has been made available to you by IBM on an AS-IS
30 * basis. Anyone receiving this source is licensed under IBM
31 * copyrights to use it in any way he or she deems fit, including
32 * copying it, modifying it, compiling it, and redistributing it either
33 * with or without modifications. No license under IBM patents or
34 * patent applications is to be implied by the copyright license.
35 *
36 * Any user of this software should understand that IBM cannot provide
37 * technical support for this software and will not be responsible for
38 * any consequences resulting from the use of this software.
39 *
40 * Any person who transfers this source code or any derivative work
41 * must include the IBM copyright notice, this paragraph, and the
42 * preceding two paragraphs in the transferred software.
43 *
44 * COPYRIGHT I B M CORPORATION 1995
45 * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M
46 */
47/*------------------------------------------------------------------------------- */
48
49#include <common.h>
50#include <watchdog.h>
51#include <asm/io.h>
52#include <asm/ibmpc.h>
53
wdenk42dfe7a2004-03-14 22:25:36 +000054#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenk2262cfe2002-11-18 00:14:45 +000055#include <malloc.h>
56#endif
57
58#define UART_RBR 0x00
59#define UART_THR 0x00
60#define UART_IER 0x01
61#define UART_IIR 0x02
62#define UART_FCR 0x02
63#define UART_LCR 0x03
64#define UART_MCR 0x04
65#define UART_LSR 0x05
66#define UART_MSR 0x06
67#define UART_SCR 0x07
68#define UART_DLL 0x00
69#define UART_DLM 0x01
70
71/*-----------------------------------------------------------------------------+
72 | Line Status Register.
73 +-----------------------------------------------------------------------------*/
74#define asyncLSRDataReady1 0x01
75#define asyncLSROverrunError1 0x02
76#define asyncLSRParityError1 0x04
77#define asyncLSRFramingError1 0x08
78#define asyncLSRBreakInterrupt1 0x10
79#define asyncLSRTxHoldEmpty1 0x20
80#define asyncLSRTxShiftEmpty1 0x40
81#define asyncLSRRxFifoError1 0x80
82
83
wdenk42dfe7a2004-03-14 22:25:36 +000084#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenk2262cfe2002-11-18 00:14:45 +000085/*-----------------------------------------------------------------------------+
86 | Fifo
87 +-----------------------------------------------------------------------------*/
88typedef struct {
89 char *rx_buffer;
90 ulong rx_put;
91 ulong rx_get;
wdenk7a8e9bed2003-05-31 18:35:21 +000092 int cts;
wdenk2262cfe2002-11-18 00:14:45 +000093} serial_buffer_t;
94
wdenk7a8e9bed2003-05-31 18:35:21 +000095volatile serial_buffer_t buf_info;
96static int serial_buffer_active=0;
wdenk2262cfe2002-11-18 00:14:45 +000097#endif
98
99
wdenk7a8e9bed2003-05-31 18:35:21 +0000100static int serial_div(int baudrate)
wdenk2262cfe2002-11-18 00:14:45 +0000101{
wdenk8bde7f72003-06-27 21:31:46 +0000102
wdenk2262cfe2002-11-18 00:14:45 +0000103 switch (baudrate) {
104 case 1200:
105 return 96;
106 case 9600:
107 return 12;
108 case 19200:
109 return 6;
110 case 38400:
111 return 3;
112 case 57600:
113 return 2;
114 case 115200:
wdenk8bde7f72003-06-27 21:31:46 +0000115 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000116 }
wdenk8bde7f72003-06-27 21:31:46 +0000117
wdenk7a8e9bed2003-05-31 18:35:21 +0000118 return 12;
wdenk2262cfe2002-11-18 00:14:45 +0000119}
120
121
122/*
123 * Minimal serial functions needed to use one of the SMC ports
124 * as serial console interface.
125 */
126
wdenk7a8e9bed2003-05-31 18:35:21 +0000127int serial_init(void)
wdenk2262cfe2002-11-18 00:14:45 +0000128{
129 DECLARE_GLOBAL_DATA_PTR;
130
131 volatile char val;
132
133 int bdiv = serial_div(gd->baudrate);
wdenk8bde7f72003-06-27 21:31:46 +0000134
wdenk2262cfe2002-11-18 00:14:45 +0000135
136 outb(0x80, UART0_BASE + UART_LCR); /* set DLAB bit */
137 outb(bdiv, UART0_BASE + UART_DLL); /* set baudrate divisor */
138 outb(bdiv >> 8, UART0_BASE + UART_DLM);/* set baudrate divisor */
139 outb(0x03, UART0_BASE + UART_LCR); /* clear DLAB; set 8 bits, no parity */
wdenk7a8e9bed2003-05-31 18:35:21 +0000140 outb(0x01, UART0_BASE + UART_FCR); /* enable FIFO */
141 outb(0x0b, UART0_BASE + UART_MCR); /* Set DTR and RTS active */
wdenk2262cfe2002-11-18 00:14:45 +0000142 val = inb(UART0_BASE + UART_LSR); /* clear line status */
143 val = inb(UART0_BASE + UART_RBR); /* read receive buffer */
144 outb(0x00, UART0_BASE + UART_SCR); /* set scratchpad */
145 outb(0x00, UART0_BASE + UART_IER); /* set interrupt enable reg */
146
wdenk7a8e9bed2003-05-31 18:35:21 +0000147 return 0;
wdenk2262cfe2002-11-18 00:14:45 +0000148}
149
150
wdenk7a8e9bed2003-05-31 18:35:21 +0000151void serial_setbrg(void)
wdenk2262cfe2002-11-18 00:14:45 +0000152{
153 DECLARE_GLOBAL_DATA_PTR;
154
155 unsigned short bdiv;
wdenk8bde7f72003-06-27 21:31:46 +0000156
wdenk7a8e9bed2003-05-31 18:35:21 +0000157 bdiv = serial_div(gd->baudrate);
wdenk2262cfe2002-11-18 00:14:45 +0000158
159 outb(0x80, UART0_BASE + UART_LCR); /* set DLAB bit */
160 outb(bdiv&0xff, UART0_BASE + UART_DLL); /* set baudrate divisor */
161 outb(bdiv >> 8, UART0_BASE + UART_DLM);/* set baudrate divisor */
162 outb(0x03, UART0_BASE + UART_LCR); /* clear DLAB; set 8 bits, no parity */
163}
164
165
wdenk7a8e9bed2003-05-31 18:35:21 +0000166void serial_putc(const char c)
wdenk2262cfe2002-11-18 00:14:45 +0000167{
168 int i;
169
170 if (c == '\n')
171 serial_putc ('\r');
172
173 /* check THRE bit, wait for transmiter available */
174 for (i = 1; i < 3500; i++) {
wdenk7a8e9bed2003-05-31 18:35:21 +0000175 if ((inb (UART0_BASE + UART_LSR) & 0x20) == 0x20) {
wdenk2262cfe2002-11-18 00:14:45 +0000176 break;
wdenk7a8e9bed2003-05-31 18:35:21 +0000177 }
178 udelay(100);
wdenk2262cfe2002-11-18 00:14:45 +0000179 }
180 outb(c, UART0_BASE + UART_THR); /* put character out */
181}
182
183
wdenk7a8e9bed2003-05-31 18:35:21 +0000184void serial_puts(const char *s)
wdenk2262cfe2002-11-18 00:14:45 +0000185{
186 while (*s) {
wdenk7a8e9bed2003-05-31 18:35:21 +0000187 serial_putc(*s++);
wdenk2262cfe2002-11-18 00:14:45 +0000188 }
189}
190
191
wdenk7a8e9bed2003-05-31 18:35:21 +0000192int serial_getc(void)
wdenk2262cfe2002-11-18 00:14:45 +0000193{
194 unsigned char status = 0;
195
wdenk42dfe7a2004-03-14 22:25:36 +0000196#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenk7a8e9bed2003-05-31 18:35:21 +0000197 if (serial_buffer_active) {
198 return serial_buffered_getc();
199 }
200#endif
wdenk8bde7f72003-06-27 21:31:46 +0000201
wdenk2262cfe2002-11-18 00:14:45 +0000202 while (1) {
203#if defined(CONFIG_HW_WATCHDOG)
wdenk7a8e9bed2003-05-31 18:35:21 +0000204 WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
wdenk2262cfe2002-11-18 00:14:45 +0000205#endif /* CONFIG_HW_WATCHDOG */
wdenk7a8e9bed2003-05-31 18:35:21 +0000206 status = inb(UART0_BASE + UART_LSR);
wdenk2262cfe2002-11-18 00:14:45 +0000207 if ((status & asyncLSRDataReady1) != 0x0) {
208 break;
209 }
210 if ((status & ( asyncLSRFramingError1 |
211 asyncLSROverrunError1 |
212 asyncLSRParityError1 |
213 asyncLSRBreakInterrupt1 )) != 0) {
214 outb(asyncLSRFramingError1 |
215 asyncLSROverrunError1 |
216 asyncLSRParityError1 |
217 asyncLSRBreakInterrupt1, UART0_BASE + UART_LSR);
218 }
219 }
220 return (0x000000ff & (int) inb (UART0_BASE));
221}
222
223
wdenk7a8e9bed2003-05-31 18:35:21 +0000224int serial_tstc(void)
wdenk2262cfe2002-11-18 00:14:45 +0000225{
226 unsigned char status;
227
wdenk42dfe7a2004-03-14 22:25:36 +0000228#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenk7a8e9bed2003-05-31 18:35:21 +0000229 if (serial_buffer_active) {
230 return serial_buffered_tstc();
231 }
232#endif
233
234 status = inb(UART0_BASE + UART_LSR);
wdenk2262cfe2002-11-18 00:14:45 +0000235 if ((status & asyncLSRDataReady1) != 0x0) {
236 return (1);
237 }
238 if ((status & ( asyncLSRFramingError1 |
239 asyncLSROverrunError1 |
240 asyncLSRParityError1 |
241 asyncLSRBreakInterrupt1 )) != 0) {
242 outb(asyncLSRFramingError1 |
243 asyncLSROverrunError1 |
244 asyncLSRParityError1 |
245 asyncLSRBreakInterrupt1, UART0_BASE + UART_LSR);
246 }
247 return 0;
248}
249
250
wdenk42dfe7a2004-03-14 22:25:36 +0000251#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenk2262cfe2002-11-18 00:14:45 +0000252
wdenk7a8e9bed2003-05-31 18:35:21 +0000253void serial_isr(void *arg)
wdenk2262cfe2002-11-18 00:14:45 +0000254{
255 int space;
256 int c;
wdenk2262cfe2002-11-18 00:14:45 +0000257 int rx_put = buf_info.rx_put;
258
wdenk7a8e9bed2003-05-31 18:35:21 +0000259 if (buf_info.rx_get <= rx_put) {
260 space = CONFIG_SERIAL_SOFTWARE_FIFO - (rx_put - buf_info.rx_get);
wdenk2262cfe2002-11-18 00:14:45 +0000261 } else {
wdenk7a8e9bed2003-05-31 18:35:21 +0000262 space = buf_info.rx_get - rx_put;
wdenk2262cfe2002-11-18 00:14:45 +0000263 }
wdenk8bde7f72003-06-27 21:31:46 +0000264
wdenk7a8e9bed2003-05-31 18:35:21 +0000265 while (inb(UART0_BASE + UART_LSR) & 1) {
266 c = inb(UART0_BASE);
wdenk2262cfe2002-11-18 00:14:45 +0000267 if (space) {
268 buf_info.rx_buffer[rx_put++] = c;
269 space--;
wdenk8bde7f72003-06-27 21:31:46 +0000270
wdenk7a8e9bed2003-05-31 18:35:21 +0000271 if (rx_put == buf_info.rx_get) {
272 buf_info.rx_get++;
273 if (rx_put == CONFIG_SERIAL_SOFTWARE_FIFO) {
274 buf_info.rx_get = 0;
275 }
276 }
wdenk8bde7f72003-06-27 21:31:46 +0000277
wdenk7a8e9bed2003-05-31 18:35:21 +0000278 if (rx_put == CONFIG_SERIAL_SOFTWARE_FIFO) {
279 rx_put = 0;
280 if (0 == buf_info.rx_get) {
281 buf_info.rx_get = 1;
282 }
wdenk8bde7f72003-06-27 21:31:46 +0000283
wdenk7a8e9bed2003-05-31 18:35:21 +0000284 }
wdenk8bde7f72003-06-27 21:31:46 +0000285
wdenk2262cfe2002-11-18 00:14:45 +0000286 }
wdenk2262cfe2002-11-18 00:14:45 +0000287 if (space < CONFIG_SERIAL_SOFTWARE_FIFO / 4) {
288 /* Stop flow by setting RTS inactive */
wdenk7a8e9bed2003-05-31 18:35:21 +0000289 outb(inb(UART0_BASE + UART_MCR) & (0xFF ^ 0x02),
wdenk2262cfe2002-11-18 00:14:45 +0000290 UART0_BASE + UART_MCR);
291 }
292 }
293 buf_info.rx_put = rx_put;
294}
295
wdenk7a8e9bed2003-05-31 18:35:21 +0000296void serial_buffered_init(void)
wdenk2262cfe2002-11-18 00:14:45 +0000297{
298 serial_puts ("Switching to interrupt driven serial input mode.\n");
299 buf_info.rx_buffer = malloc (CONFIG_SERIAL_SOFTWARE_FIFO);
300 buf_info.rx_put = 0;
301 buf_info.rx_get = 0;
302
303 if (inb (UART0_BASE + UART_MSR) & 0x10) {
304 serial_puts ("Check CTS signal present on serial port: OK.\n");
wdenk7a8e9bed2003-05-31 18:35:21 +0000305 buf_info.cts = 1;
wdenk2262cfe2002-11-18 00:14:45 +0000306 } else {
307 serial_puts ("WARNING: CTS signal not present on serial port.\n");
wdenk7a8e9bed2003-05-31 18:35:21 +0000308 buf_info.cts = 0;
wdenk2262cfe2002-11-18 00:14:45 +0000309 }
310
wdenk8bde7f72003-06-27 21:31:46 +0000311 irq_install_handler ( VECNUM_U0 /*UART0 */ /*int vec */ ,
wdenk2262cfe2002-11-18 00:14:45 +0000312 serial_isr /*interrupt_handler_t *handler */ ,
313 (void *) &buf_info /*void *arg */ );
314
315 /* Enable "RX Data Available" Interrupt on UART */
316 /* outb(inb(UART0_BASE + UART_IER) |0x01, UART0_BASE + UART_IER); */
317 outb(0x01, UART0_BASE + UART_IER);
wdenk8bde7f72003-06-27 21:31:46 +0000318
wdenk7a8e9bed2003-05-31 18:35:21 +0000319 /* Set DTR and RTS active, enable interrupts */
320 outb(inb (UART0_BASE + UART_MCR) | 0x0b, UART0_BASE + UART_MCR);
wdenk8bde7f72003-06-27 21:31:46 +0000321
wdenk7a8e9bed2003-05-31 18:35:21 +0000322 /* Setup UART FIFO: RX trigger level: 1 byte, Enable FIFO */
323 outb( /*(1 << 6) |*/ 1, UART0_BASE + UART_FCR);
wdenk8bde7f72003-06-27 21:31:46 +0000324
wdenk7a8e9bed2003-05-31 18:35:21 +0000325 serial_buffer_active = 1;
wdenk2262cfe2002-11-18 00:14:45 +0000326}
327
328void serial_buffered_putc (const char c)
329{
wdenk7a8e9bed2003-05-31 18:35:21 +0000330 int i;
wdenk2262cfe2002-11-18 00:14:45 +0000331 /* Wait for CTS */
332#if defined(CONFIG_HW_WATCHDOG)
333 while (!(inb (UART0_BASE + UART_MSR) & 0x10))
334 WATCHDOG_RESET ();
335#else
wdenk7a8e9bed2003-05-31 18:35:21 +0000336 if (buf_info.cts) {
337 for (i=0;i<1000;i++) {
338 if ((inb (UART0_BASE + UART_MSR) & 0x10)) {
339 break;
340 }
341 }
342 if (i!=1000) {
343 buf_info.cts = 0;
344 }
345 } else {
346 if ((inb (UART0_BASE + UART_MSR) & 0x10)) {
347 buf_info.cts = 1;
348 }
349 }
wdenk8bde7f72003-06-27 21:31:46 +0000350
wdenk2262cfe2002-11-18 00:14:45 +0000351#endif
352 serial_putc (c);
353}
354
wdenk7a8e9bed2003-05-31 18:35:21 +0000355void serial_buffered_puts(const char *s)
wdenk2262cfe2002-11-18 00:14:45 +0000356{
357 serial_puts (s);
358}
359
wdenk7a8e9bed2003-05-31 18:35:21 +0000360int serial_buffered_getc(void)
wdenk2262cfe2002-11-18 00:14:45 +0000361{
362 int space;
363 int c;
364 int rx_get = buf_info.rx_get;
365 int rx_put;
366
367#if defined(CONFIG_HW_WATCHDOG)
368 while (rx_get == buf_info.rx_put)
369 WATCHDOG_RESET ();
370#else
371 while (rx_get == buf_info.rx_put);
372#endif
373 c = buf_info.rx_buffer[rx_get++];
wdenk7a8e9bed2003-05-31 18:35:21 +0000374 if (rx_get == CONFIG_SERIAL_SOFTWARE_FIFO) {
wdenk2262cfe2002-11-18 00:14:45 +0000375 rx_get = 0;
wdenk7a8e9bed2003-05-31 18:35:21 +0000376 }
wdenk2262cfe2002-11-18 00:14:45 +0000377 buf_info.rx_get = rx_get;
378
379 rx_put = buf_info.rx_put;
380 if (rx_get <= rx_put) {
381 space = CONFIG_SERIAL_SOFTWARE_FIFO - (rx_put - rx_get);
382 } else {
383 space = rx_get - rx_put;
384 }
385 if (space > CONFIG_SERIAL_SOFTWARE_FIFO / 2) {
386 /* Start flow by setting RTS active */
387 outb(inb (UART0_BASE + UART_MCR) | 0x02, UART0_BASE + UART_MCR);
388 }
389
390 return c;
391}
392
wdenk7a8e9bed2003-05-31 18:35:21 +0000393int serial_buffered_tstc(void)
wdenk2262cfe2002-11-18 00:14:45 +0000394{
395 return (buf_info.rx_get != buf_info.rx_put) ? 1 : 0;
396}
397
398#endif /* CONFIG_SERIAL_SOFTWARE_FIFO */
399
400
401#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
402/*
403 AS HARNOIS : according to CONFIG_KGDB_SER_INDEX kgdb uses serial port
404 number 0 or number 1
405 - if CONFIG_KGDB_SER_INDEX = 1 => serial port number 0 :
406 configuration has been already done
407 - if CONFIG_KGDB_SER_INDEX = 2 => serial port number 1 :
408 configure port 1 for serial I/O with rate = CONFIG_KGDB_BAUDRATE
409*/
410#if (CONFIG_KGDB_SER_INDEX & 2)
wdenk7a8e9bed2003-05-31 18:35:21 +0000411void kgdb_serial_init(void)
wdenk2262cfe2002-11-18 00:14:45 +0000412{
413 DECLARE_GLOBAL_DATA_PTR;
414
415 volatile char val;
416 bdiv = serial_div (CONFIG_KGDB_BAUDRATE);
417
418 /*
419 * Init onboard 16550 UART
420 */
421 outb(0x80, UART1_BASE + UART_LCR); /* set DLAB bit */
422 outb(bdiv & 0xff), UART1_BASE + UART_DLL); /* set divisor for 9600 baud */
423 outb(bdiv >> 8), UART1_BASE + UART_DLM); /* set divisor for 9600 baud */
424 outb(0x03, UART1_BASE + UART_LCR); /* line control 8 bits no parity */
425 outb(0x00, UART1_BASE + UART_FCR); /* disable FIFO */
426 outb(0x00, UART1_BASE + UART_MCR); /* no modem control DTR RTS */
427 val = inb(UART1_BASE + UART_LSR); /* clear line status */
428 val = inb(UART1_BASE + UART_RBR); /* read receive buffer */
429 outb(0x00, UART1_BASE + UART_SCR); /* set scratchpad */
430 outb(0x00, UART1_BASE + UART_IER); /* set interrupt enable reg */
431}
432
433
wdenk7a8e9bed2003-05-31 18:35:21 +0000434void putDebugChar(const char c)
wdenk2262cfe2002-11-18 00:14:45 +0000435{
436 if (c == '\n')
437 serial_putc ('\r');
438
439 outb(c, UART1_BASE + UART_THR); /* put character out */
440
441 /* check THRE bit, wait for transfer done */
442 while ((inb(UART1_BASE + UART_LSR) & 0x20) != 0x20);
443}
444
445
wdenk7a8e9bed2003-05-31 18:35:21 +0000446void putDebugStr(const char *s)
wdenk2262cfe2002-11-18 00:14:45 +0000447{
448 while (*s) {
449 serial_putc(*s++);
450 }
451}
452
453
wdenk7a8e9bed2003-05-31 18:35:21 +0000454int getDebugChar(void)
wdenk2262cfe2002-11-18 00:14:45 +0000455{
456 unsigned char status = 0;
457
458 while (1) {
459 status = inb(UART1_BASE + UART_LSR);
460 if ((status & asyncLSRDataReady1) != 0x0) {
461 break;
462 }
463 if ((status & ( asyncLSRFramingError1 |
464 asyncLSROverrunError1 |
465 asyncLSRParityError1 |
466 asyncLSRBreakInterrupt1 )) != 0) {
467 outb(asyncLSRFramingError1 |
468 asyncLSROverrunError1 |
469 asyncLSRParityError1 |
470 asyncLSRBreakInterrupt1, UART1_BASE + UART_LSR);
471 }
472 }
473 return (0x000000ff & (int) inb(UART1_BASE));
474}
475
476
wdenk7a8e9bed2003-05-31 18:35:21 +0000477void kgdb_interruptible(int yes)
wdenk2262cfe2002-11-18 00:14:45 +0000478{
479 return;
480}
481
482#else /* ! (CONFIG_KGDB_SER_INDEX & 2) */
483
wdenk7a8e9bed2003-05-31 18:35:21 +0000484void kgdb_serial_init(void)
wdenk2262cfe2002-11-18 00:14:45 +0000485{
486 serial_printf ("[on serial] ");
487}
488
wdenk7a8e9bed2003-05-31 18:35:21 +0000489void putDebugChar(int c)
wdenk2262cfe2002-11-18 00:14:45 +0000490{
491 serial_putc (c);
492}
493
wdenk7a8e9bed2003-05-31 18:35:21 +0000494void putDebugStr(const char *str)
wdenk2262cfe2002-11-18 00:14:45 +0000495{
496 serial_puts (str);
497}
498
wdenk7a8e9bed2003-05-31 18:35:21 +0000499int getDebugChar(void)
wdenk2262cfe2002-11-18 00:14:45 +0000500{
501 return serial_getc ();
502}
503
wdenk7a8e9bed2003-05-31 18:35:21 +0000504void kgdb_interruptible(int yes)
wdenk2262cfe2002-11-18 00:14:45 +0000505{
506 return;
507}
508#endif /* (CONFIG_KGDB_SER_INDEX & 2) */
509#endif /* CFG_CMD_KGDB */