2 * Serial Port stuff - taken from Linux
5 * MAZeT GmbH <www.mazet.de>
6 * Stephan Linz <linz@mazet.de>, <linz@li-pro.net>
9 * IMMS gGmbH <www.imms.de>
10 * Thomas Elste <info@elste.org>
12 * See file CREDITS for list of people who contributed to this
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include <asm/hardware.h>
34 DECLARE_GLOBAL_DATA_PTR;
36 #define PORTA (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_PORTA))
37 #if !defined(CONFIG_NETARM_NS7520)
38 #define PORTB (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_PORTB))
40 #define PORTC (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_PORTC))
43 /* wait until transmitter is ready for another character */
44 #define TXWAITRDY(registers) \
46 ulong tmo = get_timer(0) + 1 * CONFIG_SYS_HZ; \
47 while (((registers)->status_a & NETARM_SER_STATA_TX_RDY) == 0 ) { \
48 if (get_timer(0) > tmo) \
54 volatile netarm_serial_channel_t *serial_reg_ch1 = get_serial_channel(0);
55 volatile netarm_serial_channel_t *serial_reg_ch2 = get_serial_channel(1);
57 extern void _netarm_led_FAIL1(void);
60 * Setup both serial i/f with given baudrate
62 static void netarm_serial_setbrg(void)
64 /* set 0 ... make sure pins are configured for serial */
65 #if !defined(CONFIG_NETARM_NS7520)
67 NETARM_GEN_PORT_MODE (0xef) | NETARM_GEN_PORT_DIR (0xe0);
69 PORTA = NETARM_GEN_PORT_MODE (0xef) | NETARM_GEN_PORT_DIR (0xe0);
70 PORTC = NETARM_GEN_PORT_CSF (0xef) | NETARM_GEN_PORT_MODE (0xef) | NETARM_GEN_PORT_DIR (0xe0);
73 /* first turn em off */
74 serial_reg_ch1->ctrl_a = serial_reg_ch2->ctrl_a = 0;
76 /* clear match register, we don't need it */
77 serial_reg_ch1->rx_match = serial_reg_ch2->rx_match = 0;
79 /* setup bit rate generator and rx buffer gap timer (1 byte only) */
80 if ((gd->baudrate >= MIN_BAUD_RATE)
81 && (gd->baudrate <= MAX_BAUD_RATE)) {
82 serial_reg_ch1->bitrate = serial_reg_ch2->bitrate =
83 NETARM_SER_BR_X16 (gd->baudrate);
84 serial_reg_ch1->rx_buf_timer = serial_reg_ch2->rx_buf_timer =
86 serial_reg_ch1->rx_char_timer = serial_reg_ch2->rx_char_timer =
87 NETARM_SER_RXGAP (gd->baudrate);
93 serial_reg_ch1->ctrl_b = serial_reg_ch2->ctrl_b =
94 ( NETARM_SER_CTLB_RCGT_EN |
95 NETARM_SER_CTLB_UART_MODE);
96 serial_reg_ch1->ctrl_a = serial_reg_ch2->ctrl_a =
97 ( NETARM_SER_CTLA_ENABLE |
98 NETARM_SER_CTLA_P_NONE |
100 NETARM_SER_CTLA_2STOP |
101 NETARM_SER_CTLA_8BITS |
102 NETARM_SER_CTLA_DTR_EN |
103 NETARM_SER_CTLA_RTS_EN);
108 * Initialise the serial port with the given baudrate. The settings
109 * are always 8 data bits, no parity, 1 stop bit, no start bits.
111 static int netarm_serial_init(void)
119 * Output a single byte to the serial port.
121 static void netarm_serial_putc(const char c)
123 volatile unsigned char *fifo;
125 /* If \n, also do \r */
129 fifo = (volatile unsigned char *) &(serial_reg_ch1->fifo);
130 TXWAITRDY (serial_reg_ch1);
135 * Test of a single byte from the serial port. Returns 1 on success, 0
138 static int netarm_serial_tstc(void)
140 return serial_reg_ch1->status_a & NETARM_SER_STATA_RX_RDY;
144 * Read a single byte from the serial port. Returns 1 on success, 0
147 static int netarm_serial_getc(void)
149 unsigned int ch_uint;
150 volatile unsigned int *fifo;
151 volatile unsigned char *fifo_char = NULL;
154 while (!(serial_reg_ch1->status_a & NETARM_SER_STATA_RX_RDY))
157 fifo = (volatile unsigned int *) &(serial_reg_ch1->fifo);
158 fifo_char = (unsigned char *) &ch_uint;
161 buf_count = NETARM_SER_STATA_RXFDB (serial_reg_ch1->status_a);
163 case NETARM_SER_STATA_RXFDB_4BYTES:
166 case NETARM_SER_STATA_RXFDB_3BYTES:
169 case NETARM_SER_STATA_RXFDB_2BYTES:
172 case NETARM_SER_STATA_RXFDB_1BYTES:
176 /* panic, be never here */
180 serial_reg_ch1->status_a |= NETARM_SER_STATA_RX_CLOSED;
182 return ch_uint & 0xff;
185 static struct serial_device netarm_serial_drv = {
186 .name = "netarm_serial",
187 .start = netarm_serial_init,
189 .setbrg = netarm_serial_setbrg,
190 .putc = netarm_serial_putc,
191 .puts = default_serial_puts,
192 .getc = netarm_serial_getc,
193 .tstc = netarm_serial_tstc,
196 void netarm_serial_initialize(void)
198 serial_register(&netarm_serial_drv);
201 __weak struct serial_device *default_serial_console(void)
203 return &netarm_serial_drv;