blob: 0c4b536b48e7a09bdce55741abf20ba20b339a5a [file] [log] [blame]
wdenk983fda82004-10-28 00:09:35 +00001/*
2 * (C) Copyright 2004, Freescale, Inc
3 * TsiChung Liew, Tsi-Chung.Liew@freescale.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/*
26 * Minimal serial functions needed to use one of the PSC ports
27 * as serial console interface.
28 */
29
30#include <common.h>
31#include <mpc8220.h>
32
Wolfgang Denkd87080b2006-03-31 18:32:53 +020033DECLARE_GLOBAL_DATA_PTR;
34
wdenk983fda82004-10-28 00:09:35 +000035#define PSC_BASE MMAP_PSC1
36
37#if defined(CONFIG_PSC_CONSOLE)
wdenk7680c142005-05-16 15:23:22 +000038int serial_init (void)
wdenk983fda82004-10-28 00:09:35 +000039{
wdenk983fda82004-10-28 00:09:35 +000040 volatile psc8220_t *psc = (psc8220_t *) PSC_BASE;
41 u32 counter;
42
43 /* write to SICR: SIM2 = uart mode,dcd does not affect rx */
44 psc->cr = 0;
45 psc->ipcr_acr = 0;
46 psc->isr_imr = 0;
47
48 /* write to CSR: RX/TX baud rate from timers */
49 psc->sr_csr = 0xdd000000;
50
wdenk3c2b3d42005-04-05 23:32:21 +000051 psc->mr1_2 = PSC_MR1_BITS_CHAR_8 | PSC_MR1_NO_PARITY | PSC_MR2_STOP_BITS_1;
wdenk983fda82004-10-28 00:09:35 +000052
53 /* Setting up BaudRate */
54 counter = ((gd->bus_clk / gd->baudrate)) >> 5;
55 counter++;
56
57 /* write to CTUR: divide counter upper byte */
58 psc->ctur = ((counter & 0xff00) << 16);
59 /* write to CTLR: divide counter lower byte */
60 psc->ctlr = ((counter & 0x00ff) << 24);
61
62 psc->cr = PSC_CR_RST_RX_CMD;
63 psc->cr = PSC_CR_RST_TX_CMD;
64 psc->cr = PSC_CR_RST_ERR_STS_CMD;
65 psc->cr = PSC_CR_RST_BRK_INT_CMD;
66 psc->cr = PSC_CR_RST_MR_PTR_CMD;
67
68 psc->cr = PSC_CR_RX_ENABLE | PSC_CR_TX_ENABLE;
69 return (0);
70}
71
wdenk7680c142005-05-16 15:23:22 +000072void serial_putc (const char c)
wdenk983fda82004-10-28 00:09:35 +000073{
74 volatile psc8220_t *psc = (psc8220_t *) PSC_BASE;
75
76 if (c == '\n')
77 serial_putc ('\r');
78
79 /* Wait for last character to go. */
wdenk12b43d52005-04-05 21:57:18 +000080 while (!(psc->sr_csr & PSC_SR_TXRDY));
wdenk983fda82004-10-28 00:09:35 +000081
82 psc->xmitbuf[0] = c;
83}
84
wdenk7680c142005-05-16 15:23:22 +000085void serial_puts (const char *s)
wdenk983fda82004-10-28 00:09:35 +000086{
87 while (*s) {
88 serial_putc (*s++);
89 }
90}
91
wdenk7680c142005-05-16 15:23:22 +000092int serial_getc (void)
wdenk983fda82004-10-28 00:09:35 +000093{
94 volatile psc8220_t *psc = (psc8220_t *) PSC_BASE;
95
96 /* Wait for a character to arrive. */
97 while (!(psc->sr_csr & PSC_SR_RXRDY));
98 return psc->xmitbuf[2];
99}
100
wdenk7680c142005-05-16 15:23:22 +0000101int serial_tstc (void)
wdenk983fda82004-10-28 00:09:35 +0000102{
103 volatile psc8220_t *psc = (psc8220_t *) PSC_BASE;
104
105 return (psc->sr_csr & PSC_SR_RXRDY);
106}
107
wdenk7680c142005-05-16 15:23:22 +0000108void serial_setbrg (void)
wdenk983fda82004-10-28 00:09:35 +0000109{
wdenk983fda82004-10-28 00:09:35 +0000110 volatile psc8220_t *psc = (psc8220_t *) PSC_BASE;
111 u32 counter;
112
113 counter = ((gd->bus_clk / gd->baudrate)) >> 5;
114 counter++;
115
116 /* write to CTUR: divide counter upper byte */
117 psc->ctur = ((counter & 0xff00) << 16);
118 /* write to CTLR: divide counter lower byte */
119 psc->ctlr = ((counter & 0x00ff) << 24);
120
121 psc->cr = PSC_CR_RST_RX_CMD;
122 psc->cr = PSC_CR_RST_TX_CMD;
123
124 psc->cr = PSC_CR_RX_ENABLE | PSC_CR_TX_ENABLE;
125}
126#endif /* CONFIG_PSC_CONSOLE */