blob: 4bdda25007aa92f20e506e2f97b709603ad0eb6c [file] [log] [blame]
wdenk4a551702003-10-08 23:26:14 +00001/*
2 * (C) Copyright 2003, Psyent Corporation <www.psyent.com>
3 * Scott McNutt <smcnutt@psyent.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24
25#include <common.h>
wdenk028ab6b2004-02-23 23:54:43 +000026#include <watchdog.h>
wdenk4a551702003-10-08 23:26:14 +000027#include <nios-io.h>
28
wdenke4cc71a2004-05-19 21:33:14 +000029/*------------------------------------------------------------------
30 * JTAG acts as the serial port
31 *-----------------------------------------------------------------*/
32#if defined(CONFIG_CONSOLE_JTAG)
33
34static nios_jtag_t *jtag = (nios_jtag_t *)CFG_NIOS_CONSOLE;
35
36void serial_setbrg( void ){ return; }
37int serial_init( void ) { return(0);}
38
39void serial_putc (char c)
40{
41 while ((jtag->txcntl & NIOS_JTAG_TRDY) != 0)
42 WATCHDOG_RESET ();
43 jtag->txcntl = NIOS_JTAG_TRDY | (unsigned char)c;
44}
45
46void serial_puts (const char *s)
47{
48 while (*s != 0)
49 serial_putc (*s++);
50}
51
52int serial_tstc (void)
53{
54 return (jtag->rxcntl & NIOS_JTAG_RRDY);
55}
56
57int serial_getc (void)
58{
59 int c;
60 while (serial_tstc() == 0)
61 WATCHDOG_RESET ();
62 c = jtag->rxcntl & 0x0ff;
63 jtag->rxcntl = 0;
64 return (c);
65}
66
67/*------------------------------------------------------------------
68 * UART the serial port
69 *-----------------------------------------------------------------*/
70#else
wdenk4a551702003-10-08 23:26:14 +000071
72static nios_uart_t *uart = (nios_uart_t *)CFG_NIOS_CONSOLE;
73
74#if defined(CFG_NIOS_FIXEDBAUD)
75
76/* Everything's already setup for fixed-baud PTF
77 * assignment
78 */
wdenke4cc71a2004-05-19 21:33:14 +000079void serial_setbrg (void){ return; }
80int serial_init (void) { return (0);}
wdenk4a551702003-10-08 23:26:14 +000081
82#else
83
wdenke4cc71a2004-05-19 21:33:14 +000084void serial_setbrg (void)
wdenk4a551702003-10-08 23:26:14 +000085{
86 DECLARE_GLOBAL_DATA_PTR;
87 unsigned div;
88
89 div = (CONFIG_SYS_CLK_FREQ/gd->baudrate)-1;
90 uart->divisor = div;
91 return;
92}
93
wdenke4cc71a2004-05-19 21:33:14 +000094int serial_init (void)
wdenk4a551702003-10-08 23:26:14 +000095{
wdenke4cc71a2004-05-19 21:33:14 +000096 serial_setbrg ();
97 return (0);
wdenk4a551702003-10-08 23:26:14 +000098}
99
100#endif /* CFG_NIOS_FIXEDBAUD */
101
102
wdenke4cc71a2004-05-19 21:33:14 +0000103/*-----------------------------------------------------------------------
104 * UART CONSOLE
105 *---------------------------------------------------------------------*/
106void serial_putc (char c)
wdenk4a551702003-10-08 23:26:14 +0000107{
108 if (c == '\n')
wdenke4cc71a2004-05-19 21:33:14 +0000109 serial_putc ('\r');
110 while ((uart->status & NIOS_UART_TRDY) == 0)
wdenk028ab6b2004-02-23 23:54:43 +0000111 WATCHDOG_RESET ();
wdenk4a551702003-10-08 23:26:14 +0000112 uart->txdata = (unsigned char)c;
113}
114
wdenke4cc71a2004-05-19 21:33:14 +0000115void serial_puts (const char *s)
wdenk4a551702003-10-08 23:26:14 +0000116{
wdenke4cc71a2004-05-19 21:33:14 +0000117 while (*s != 0) {
118 serial_putc (*s++);
wdenk4a551702003-10-08 23:26:14 +0000119 }
120}
121
wdenke4cc71a2004-05-19 21:33:14 +0000122int serial_tstc (void)
wdenk4a551702003-10-08 23:26:14 +0000123{
wdenke4cc71a2004-05-19 21:33:14 +0000124 return (uart->status & NIOS_UART_RRDY);
wdenk4a551702003-10-08 23:26:14 +0000125}
126
wdenke4cc71a2004-05-19 21:33:14 +0000127int serial_getc (void)
wdenk4a551702003-10-08 23:26:14 +0000128{
wdenke4cc71a2004-05-19 21:33:14 +0000129 while (serial_tstc () == 0)
wdenk028ab6b2004-02-23 23:54:43 +0000130 WATCHDOG_RESET ();
wdenk4a551702003-10-08 23:26:14 +0000131 return( uart->rxdata & 0x00ff );
132}
wdenke4cc71a2004-05-19 21:33:14 +0000133
134#endif /* CONFIG_JTAG_CONSOLE */