Fixed tools/env utilities
[u-boot-openmoko/mini2440.git] / cpu / mpc512x / serial.c
blob8a214041ad8cef18b52e2a570cb8517f17927e26
1 /*
2 * (C) Copyright 2000 - 2007
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
6 * project.
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.
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.
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
23 * Based ont the MPC5200 PSC driver.
24 * Adapted for MPC512x by Jan Wrobel <wrr@semihalf.com>
28 * Minimal serial functions needed to use one of the PSC ports
29 * as serial console interface.
32 #include <common.h>
34 DECLARE_GLOBAL_DATA_PTR;
36 #if defined(CONFIG_PSC_CONSOLE)
38 static void fifo_init (volatile psc512x_t *psc)
40 volatile immap_t *im = (immap_t *) CFG_IMMR;
42 /* reset Rx & Tx fifo slice */
43 psc->rfcmd = PSC_FIFO_RESET_SLICE;
44 psc->tfcmd = PSC_FIFO_RESET_SLICE;
46 /* disable Tx & Rx FIFO interrupts */
47 psc->rfintmask = 0;
48 psc->tfintmask = 0;
50 psc->tfsize = CONSOLE_FIFO_TX_SIZE | (CONSOLE_FIFO_TX_ADDR << 16);
51 psc->rfsize = CONSOLE_FIFO_RX_SIZE | (CONSOLE_FIFO_RX_ADDR << 16);
53 /* enable Tx & Rx FIFO slice */
54 psc->rfcmd = PSC_FIFO_ENABLE_SLICE;
55 psc->tfcmd = PSC_FIFO_ENABLE_SLICE;
57 im->fifoc.fifoc_cmd = FIFOC_DISABLE_CLOCK_GATE;
58 __asm__ volatile ("sync");
61 int serial_init(void)
63 volatile immap_t *im = (immap_t *) CFG_IMMR;
64 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
65 unsigned long baseclk;
66 int div;
68 fifo_init (psc);
70 /* set MR register to point to MR1 */
71 psc->command = PSC_SEL_MODE_REG_1;
73 /* disable Tx/Rx */
74 psc->command = PSC_TX_DISABLE | PSC_RX_DISABLE;
76 /* choose the prescaler by 16 for the Tx/Rx clock generation */
77 psc->psc_clock_select = 0xdd00;
79 /* switch to UART mode */
80 psc->sicr = 0;
82 /* mode register points to mr1 */
83 /* configure parity, bit length and so on in mode register 1*/
84 psc->mode = PSC_MODE_8_BITS | PSC_MODE_PARNONE;
85 /* now, mode register points to mr2 */
86 psc->mode = PSC_MODE_1_STOPBIT;
88 /* calculate dividor for setting PSC CTUR and CTLR registers */
89 baseclk = (gd->ips_clk + 8) / 16;
90 div = (baseclk + (gd->baudrate / 2)) / gd->baudrate;
92 psc->ctur = (div >> 8) & 0xff;
93 /* set baudrate */
94 psc->ctlr = div & 0xff;
96 /* disable all interrupts */
97 psc->psc_imr = 0;
99 /* reset and enable Rx/Tx */
100 psc->command = PSC_RST_RX;
101 psc->command = PSC_RST_TX;
102 psc->command = PSC_RX_ENABLE | PSC_TX_ENABLE;
104 return 0;
107 void serial_putc (const char c)
109 volatile immap_t *im = (immap_t *)CFG_IMMR;
110 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
112 if (c == '\n')
113 serial_putc ('\r');
115 /* Wait for last character to go. */
116 while (!(psc->psc_status & PSC_SR_TXEMP))
119 psc->tfdata_8 = c;
122 void serial_putc_raw (const char c)
124 volatile immap_t *im = (immap_t *) CFG_IMMR;
125 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
127 /* Wait for last character to go. */
128 while (!(psc->psc_status & PSC_SR_TXEMP))
131 psc->tfdata_8 = c;
135 void serial_puts (const char *s)
137 while (*s) {
138 serial_putc (*s++);
142 int serial_getc (void)
144 volatile immap_t *im = (immap_t *) CFG_IMMR;
145 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
147 /* Wait for a character to arrive. */
148 while (psc->rfstat & PSC_FIFO_EMPTY)
151 return psc->rfdata_8;
154 int serial_tstc (void)
156 volatile immap_t *im = (immap_t *) CFG_IMMR;
157 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
159 return !(psc->rfstat & PSC_FIFO_EMPTY);
162 void serial_setbrg (void)
164 volatile immap_t *im = (immap_t *) CFG_IMMR;
165 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
166 unsigned long baseclk, div;
168 baseclk = (gd->csb_clk + 8) / 16;
169 div = (baseclk + (gd->baudrate / 2)) / gd->baudrate;
171 psc->ctur = (div >> 8) & 0xFF;
172 psc->ctlr = div & 0xff; /* set baudrate */
175 void serial_setrts(int s)
177 volatile immap_t *im = (immap_t *) CFG_IMMR;
178 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
180 if (s) {
181 /* Assert RTS (become LOW) */
182 psc->op1 = 0x1;
184 else {
185 /* Negate RTS (become HIGH) */
186 psc->op0 = 0x1;
190 int serial_getcts(void)
192 volatile immap_t *im = (immap_t *) CFG_IMMR;
193 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
195 return (psc->ip & 0x1) ? 0 : 1;
197 #endif /* CONFIG_PSC_CONSOLE */