2 * (C) Copyright 2000 - 2007
5 * See file CREDITS for list of people who contributed to this
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,
23 * Based ont the MPC5200 PSC driver.
28 * Minimal serial functions needed to use one of the PSC ports
29 * as serial console interface.
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 *) CONFIG_SYS_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 */
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");
63 volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
64 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
65 unsigned long baseclk;
70 /* set MR register to point to MR1 */
71 psc->command = PSC_SEL_MODE_REG_1;
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 */
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;
94 psc->ctlr = div & 0xff;
96 /* disable all interrupts */
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;
107 void serial_putc (const char c)
109 volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
110 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
115 /* Wait for last character to go. */
116 while (!(psc->psc_status & PSC_SR_TXEMP))
122 void serial_putc_raw (const char c)
124 volatile immap_t *im = (immap_t *) CONFIG_SYS_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))
135 void serial_puts (const char *s)
142 int serial_getc (void)
144 volatile immap_t *im = (immap_t *) CONFIG_SYS_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 *) CONFIG_SYS_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 *) CONFIG_SYS_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 *) CONFIG_SYS_IMMR;
178 volatile psc512x_t *psc = (psc512x_t *) &im->psc[CONFIG_PSC_CONSOLE];
181 /* Assert RTS (become LOW) */
185 /* Negate RTS (become HIGH) */
190 int serial_getcts(void)
192 volatile immap_t *im = (immap_t *) CONFIG_SYS_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 */