1 /***********************************************************************
3 * Copyright (C) 2004 by FS Forth-Systeme GmbH.
6 * $Id: ns9750_serial.c,v 1.1 2004/02/16 10:37:20 mpietrek Exp $
7 * @Author: Markus Pietrek
8 * @Descr: Serial driver for the NS9750. Only one UART is supported yet.
9 * @References: [1] NS9750 Hardware Reference/December 2003
10 * @TODO: Implement Character GAP Timer when chip is fixed for PLL bypass
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 ***********************************************************************/
31 #ifdef CFG_NS9750_UART
33 #include "ns9750_bbus.h" /* for GPIOs */
34 #include "ns9750_ser.h" /* for serial configuration */
36 DECLARE_GLOBAL_DATA_PTR;
38 #define CONSOLE CONFIG_CONS_INDEX
40 static unsigned int calcBitrateRegister( void );
41 static unsigned int calcRxCharGapRegister( void );
43 static char cCharsAvailable; /* Numbers of chars in unCharCache */
44 static unsigned int unCharCache; /* unCharCache is only valid if
45 * cCharsAvailable > 0 */
47 /***********************************************************************
48 * @Function: serial_init
50 * @Descr: configures GPIOs and UART. Requires BBUS Master Reset turned off
51 ***********************************************************************/
53 int serial_init( void )
55 unsigned int aunGPIOTxD[] = { 0, 8, 40, 44 };
56 unsigned int aunGPIORxD[] = { 1, 9, 41, 45 };
60 /* configure TxD and RxD pins for their special function */
61 set_gpio_cfg_reg_val( aunGPIOTxD[ CONSOLE ],
62 NS9750_GPIO_CFG_FUNC_0 | NS9750_GPIO_CFG_OUTPUT );
63 set_gpio_cfg_reg_val( aunGPIORxD[ CONSOLE ],
64 NS9750_GPIO_CFG_FUNC_0 | NS9750_GPIO_CFG_INPUT );
66 /* configure serial engine */
67 *get_ser_reg_addr_channel( NS9750_SER_CTRL_A, CONSOLE ) =
68 NS9750_SER_CTRL_A_CE |
69 NS9750_SER_CTRL_A_STOP |
70 NS9750_SER_CTRL_A_WLS_8;
74 *get_ser_reg_addr_channel( NS9750_SER_CTRL_B, CONSOLE ) =
75 NS9750_SER_CTRL_B_RCGT;
80 /***********************************************************************
81 * @Function: serial_putc
83 * @Descr: writes one character to the FIFO. Blocks until FIFO is not full
84 ***********************************************************************/
86 void serial_putc( const char c )
91 while (!(*get_ser_reg_addr_channel( NS9750_SER_STAT_A, CONSOLE) &
92 NS9750_SER_STAT_A_TRDY ) ) {
93 /* do nothing, wait for characters in FIFO sent */
96 *(volatile char*) get_ser_reg_addr_channel( NS9750_SER_FIFO,
100 /***********************************************************************
101 * @Function: serial_puts
103 * @Descr: writes non-zero string to the FIFO.
104 ***********************************************************************/
106 void serial_puts( const char *s )
113 /***********************************************************************
114 * @Function: serial_getc
115 * @Return: the character read
116 * @Descr: performs only 8bit accesses to the FIFO. No error handling
117 ***********************************************************************/
119 int serial_getc( void )
123 while (!serial_tstc() ) {
124 /* do nothing, wait for incoming characters */
127 /* at least one character in unCharCache */
128 i = (int) (unCharCache & 0xff);
136 /***********************************************************************
137 * @Function: serial_tstc
138 * @Return: 0 if no input available, otherwise != 0
139 * @Descr: checks for incoming FIFO not empty. Stores the incoming chars in
140 * unCharCache and the numbers of characters in cCharsAvailable
141 ***********************************************************************/
143 int serial_tstc( void )
145 unsigned int unRegCache;
147 if ( cCharsAvailable )
150 unRegCache = *get_ser_reg_addr_channel( NS9750_SER_STAT_A,CONSOLE );
151 if( unRegCache & NS9750_SER_STAT_A_RBC ) {
152 *get_ser_reg_addr_channel( NS9750_SER_STAT_A, CONSOLE ) =
153 NS9750_SER_STAT_A_RBC;
154 unRegCache = *get_ser_reg_addr_channel( NS9750_SER_STAT_A,
158 if ( unRegCache & NS9750_SER_STAT_A_RRDY ) {
159 cCharsAvailable = (unRegCache & NS9750_SER_STAT_A_RXFDB_MA)>>20;
160 if ( !cCharsAvailable )
163 unCharCache = *get_ser_reg_addr_channel( NS9750_SER_FIFO,
168 /* no chars available */
172 void serial_setbrg( void )
174 *get_ser_reg_addr_channel( NS9750_SER_BITRATE, CONSOLE ) =
175 calcBitrateRegister();
176 *get_ser_reg_addr_channel( NS9750_SER_RX_CHAR_TIMER, CONSOLE ) =
177 calcRxCharGapRegister();
180 /***********************************************************************
181 * @Function: calcBitrateRegister
182 * @Return: value for the serial bitrate register
183 * @Descr: register value depends on clock frequency and baudrate
184 ***********************************************************************/
186 static unsigned int calcBitrateRegister( void )
188 return ( NS9750_SER_BITRATE_EBIT |
189 NS9750_SER_BITRATE_CLKMUX_BCLK |
190 NS9750_SER_BITRATE_TMODE |
191 NS9750_SER_BITRATE_TCDR_16 |
192 NS9750_SER_BITRATE_RCDR_16 |
193 ( ( ( ( CONFIG_SYS_CLK_FREQ / 8 ) / /* BBUS clock,[1] Fig. 38 */
194 ( gd->baudrate * 16 ) ) - 1 ) &
195 NS9750_SER_BITRATE_N_MA ) );
198 /***********************************************************************
199 * @Function: calcRxCharGapRegister
200 * @Return: value for the character gap timer register
201 * @Descr: register value depends on clock frequency and baudrate. Currently 0
202 * is used as there is a bug with the gap timer in PLL bypass mode.
203 ***********************************************************************/
205 static unsigned int calcRxCharGapRegister( void )
207 return NS9750_SER_RX_CHAR_TIMER_TRUN;
210 #endif /* CFG_NS9750_UART */