]> git.ipfire.org Git - u-boot.git/blame - cpu/mpc5xx/serial.c
* Code cleanup:
[u-boot.git] / cpu / mpc5xx / serial.c
CommitLineData
0db5bca8
WD
1/*
2 * (C) Copyright 2003
3 * Martin Winistoerfer, martinwinistoerfer@gmx.ch.
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
8bde7f77 20 * Foundation,
0db5bca8
WD
21 */
22
23/*
24 * File: serial.c
8bde7f77
WD
25 *
26 * Discription: Serial interface driver for SCI1 and SCI2.
0db5bca8
WD
27 * Since this code will be called from ROM use
28 * only non-static local variables.
29 *
30 */
31
32#include <common.h>
33#include <watchdog.h>
34#include <command.h>
35#include <mpc5xx.h>
36
37
38/*
8bde7f77 39 * Local function prototypes
0db5bca8
WD
40 */
41
42static int ready_to_send(void);
43
44/*
45 * Minimal global serial functions needed to use one of the SCI modules.
46 */
47
48int serial_init (void)
49{
50 volatile immap_t *immr = (immap_t *)CFG_IMMR;
51
52 serial_setbrg();
53
54#if defined(CONFIG_5xx_CONS_SCI1)
55 /* 10-Bit, 1 start bit, 8 data bit, no parity, 1 stop bit */
56 immr->im_qsmcm.qsmcm_scc1r1 = SCI_M_10;
8bde7f77 57 immr->im_qsmcm.qsmcm_scc1r1 = SCI_TE | SCI_RE;
0db5bca8 58#else
8bde7f77 59 immr->im_qsmcm.qsmcm_scc2r1 = SCI_M_10;
0db5bca8
WD
60 immr->im_qsmcm.qsmcm_scc2r1 = SCI_TE | SCI_RE;
61#endif
62 return 0;
63}
64
65void serial_putc(const char c)
8bde7f77 66{
0db5bca8 67 volatile immap_t *immr = (immap_t *)CFG_IMMR;
8bde7f77 68
0db5bca8
WD
69 /* Test for completition */
70 if(ready_to_send()) {
71#if defined(CONFIG_5xx_CONS_SCI1)
8bde7f77 72 immr->im_qsmcm.qsmcm_sc1dr = (short)c;
0db5bca8
WD
73#else
74 immr->im_qsmcm.qsmcm_sc2dr = (short)c;
8bde7f77 75#endif
0db5bca8
WD
76 if(c == '\n') {
77 if(ready_to_send());
78#if defined(CONFIG_5xx_CONS_SCI1)
79 immr->im_qsmcm.qsmcm_sc1dr = (short)'\r';
80#else
81 immr->im_qsmcm.qsmcm_sc2dr = (short)'\r';
82#endif
83 }
84 }
85}
86
87int serial_getc(void)
8bde7f77 88{
0db5bca8
WD
89 volatile immap_t *immr = (immap_t *)CFG_IMMR;
90 volatile short status;
91 unsigned char tmp;
8bde7f77 92
0db5bca8
WD
93 /* New data ? */
94 do {
95#if defined(CONFIG_5xx_CONS_SCI1)
8bde7f77 96 status = immr->im_qsmcm.qsmcm_sc1sr;
0db5bca8
WD
97#else
98 status = immr->im_qsmcm.qsmcm_sc2sr;
99#endif
100
101#if defined(CONFIG_WATCHDOG)
8bde7f77 102 reset_5xx_watchdog (immr);
0db5bca8 103#endif
8bde7f77
WD
104 } while ((status & SCI_RDRF) == 0);
105
0db5bca8
WD
106 /* Read data */
107#if defined(CONFIG_5xx_CONS_SCI1)
8bde7f77 108 tmp = (unsigned char)(immr->im_qsmcm.qsmcm_sc1dr & SCI_SCXDR_MK);
0db5bca8
WD
109#else
110 tmp = (unsigned char)( immr->im_qsmcm.qsmcm_sc2dr & SCI_SCXDR_MK);
111#endif
112 return tmp;
113}
114
115int serial_tstc()
116{
117 volatile immap_t *immr = (immap_t *)CFG_IMMR;
8bde7f77 118 short status;
0db5bca8
WD
119
120 /* New data character ? */
121#if defined(CONFIG_5xx_CONS_SCI1)
8bde7f77 122 status = immr->im_qsmcm.qsmcm_sc1sr;
0db5bca8
WD
123#else
124 status = immr->im_qsmcm.qsmcm_sc2sr;
125#endif
8bde7f77 126 return (status & SCI_RDRF);
0db5bca8
WD
127}
128
129void serial_setbrg (void)
130{
131 DECLARE_GLOBAL_DATA_PTR;
8bde7f77 132 volatile immap_t *immr = (immap_t *)CFG_IMMR;
0db5bca8
WD
133 short scxbr;
134
135 /* Set baudrate */
136 scxbr = (gd->cpu_clk / (32 * gd->baudrate));
137#if defined(CONFIG_5xx_CONS_SCI1)
8bde7f77 138 immr->im_qsmcm.qsmcm_scc1r0 = (scxbr & SCI_SCXBR_MK);
0db5bca8
WD
139#else
140 immr->im_qsmcm.qsmcm_scc2r0 = (scxbr & SCI_SCXBR_MK);
141#endif
142}
143
144void serial_puts (const char *s)
145{
146 while (*s) {
147 serial_putc(*s);
148 ++s;
149 }
150}
151
152int ready_to_send(void)
153{
154 volatile immap_t *immr = (immap_t *)CFG_IMMR;
155 volatile short status;
156
8bde7f77 157 do {
0db5bca8 158#if defined(CONFIG_5xx_CONS_SCI1)
8bde7f77 159 status = immr->im_qsmcm.qsmcm_sc1sr;
0db5bca8
WD
160#else
161 status = immr->im_qsmcm.qsmcm_sc2sr;
162#endif
163
164#if defined(CONFIG_WATCHDOG)
8bde7f77 165 reset_5xx_watchdog (immr);
0db5bca8 166#endif
8bde7f77
WD
167 } while ((status & SCI_TDRE) == 0);
168 return 1;
0db5bca8
WD
169
170}