]> git.sur5r.net Git - u-boot/blob - cpu/nios/serial.c
Patch by Scott McNutt, 25 Apr 2004:
[u-boot] / cpu / nios / serial.c
1 /*
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>
26 #include <watchdog.h>
27 #include <nios-io.h>
28
29 /*------------------------------------------------------------------
30  * JTAG acts as the serial port
31  *-----------------------------------------------------------------*/
32 #if defined(CONFIG_CONSOLE_JTAG)
33
34 static nios_jtag_t *jtag = (nios_jtag_t *)CFG_NIOS_CONSOLE;
35
36 void serial_setbrg( void ){ return; }
37 int serial_init( void ) { return(0);}
38
39 void 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
46 void serial_puts (const char *s)
47 {
48         while (*s != 0)
49                 serial_putc (*s++);
50 }
51
52 int serial_tstc (void)
53 {
54         return (jtag->rxcntl & NIOS_JTAG_RRDY);
55 }
56
57 int 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
71
72 static 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  */
79 void serial_setbrg (void){ return; }
80 int serial_init (void) { return (0);}
81
82 #else
83
84 void serial_setbrg (void)
85 {
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
94 int serial_init (void)
95 {
96         serial_setbrg ();
97         return (0);
98 }
99
100 #endif /* CFG_NIOS_FIXEDBAUD */
101
102
103 /*-----------------------------------------------------------------------
104  * UART CONSOLE
105  *---------------------------------------------------------------------*/
106 void serial_putc (char c)
107 {
108         if (c == '\n')
109                 serial_putc ('\r');
110         while ((uart->status & NIOS_UART_TRDY) == 0)
111                 WATCHDOG_RESET ();
112         uart->txdata = (unsigned char)c;
113 }
114
115 void serial_puts (const char *s)
116 {
117         while (*s != 0) {
118                 serial_putc (*s++);
119         }
120 }
121
122 int serial_tstc (void)
123 {
124         return (uart->status & NIOS_UART_RRDY);
125 }
126
127 int serial_getc (void)
128 {
129         while (serial_tstc () == 0)
130                 WATCHDOG_RESET ();
131         return( uart->rxdata & 0x00ff );
132 }
133
134 #endif /* CONFIG_JTAG_CONSOLE */