]> git.ipfire.org Git - people/ms/u-boot.git/blob - drivers/serial/serial_pl01x.c
pl01x: use C structs and readl/writel
[people/ms/u-boot.git] / drivers / serial / serial_pl01x.c
1 /*
2 * (C) Copyright 2000
3 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
4 *
5 * (C) Copyright 2004
6 * ARM Ltd.
7 * Philippe Robin, <philippe.robin@arm.com>
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
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.
16 *
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.
21 *
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,
25 * MA 02111-1307 USA
26 */
27
28 /* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */
29
30 #include <common.h>
31 #include <watchdog.h>
32 #include <asm/io.h>
33 #include "serial_pl01x.h"
34
35 /*
36 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
37 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
38 * Versatile PB has four UARTs.
39 */
40 #define CONSOLE_PORT CONFIG_CONS_INDEX
41 static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
42 #define NUM_PORTS (sizeof(port)/sizeof(port[0]))
43
44 static void pl01x_putc (int portnum, char c);
45 static int pl01x_getc (int portnum);
46 static int pl01x_tstc (int portnum);
47 unsigned int baudrate = CONFIG_BAUDRATE;
48 DECLARE_GLOBAL_DATA_PTR;
49
50 static struct pl01x_regs *pl01x_get_regs(int portnum)
51 {
52 return (struct pl01x_regs *) port[portnum];
53 }
54
55 #ifdef CONFIG_PL010_SERIAL
56
57 int serial_init (void)
58 {
59 struct pl01x_regs *regs = pl01x_get_regs(CONSOLE_PORT);
60 unsigned int divisor;
61
62 /* First, disable everything */
63 writel(0, &regs->pl010_cr);
64
65 /* Set baud rate */
66 switch (baudrate) {
67 case 9600:
68 divisor = UART_PL010_BAUD_9600;
69 break;
70
71 case 19200:
72 divisor = UART_PL010_BAUD_9600;
73 break;
74
75 case 38400:
76 divisor = UART_PL010_BAUD_38400;
77 break;
78
79 case 57600:
80 divisor = UART_PL010_BAUD_57600;
81 break;
82
83 case 115200:
84 divisor = UART_PL010_BAUD_115200;
85 break;
86
87 default:
88 divisor = UART_PL010_BAUD_38400;
89 }
90
91 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
92 writel(divisor & 0xff, &regs->pl010_lcrl);
93
94 /* Set the UART to be 8 bits, 1 stop bit, no parity, fifo enabled */
95 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN, &regs->pl010_lcrh);
96
97 /* Finally, enable the UART */
98 writel(UART_PL010_CR_UARTEN, &regs->pl010_cr);
99
100 return 0;
101 }
102
103 #endif /* CONFIG_PL010_SERIAL */
104
105 #ifdef CONFIG_PL011_SERIAL
106
107 int serial_init (void)
108 {
109 struct pl01x_regs *regs = pl01x_get_regs(CONSOLE_PORT);
110 unsigned int temp;
111 unsigned int divider;
112 unsigned int remainder;
113 unsigned int fraction;
114
115 /* First, disable everything */
116 writel(0, &regs->pl011_cr);
117
118 /*
119 * Set baud rate
120 *
121 * IBRD = UART_CLK / (16 * BAUD_RATE)
122 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE))) / (16 * BAUD_RATE))
123 */
124 temp = 16 * baudrate;
125 divider = CONFIG_PL011_CLOCK / temp;
126 remainder = CONFIG_PL011_CLOCK % temp;
127 temp = (8 * remainder) / baudrate;
128 fraction = (temp >> 1) + (temp & 1);
129
130 writel(divider, &regs->pl011_ibrd);
131 writel(fraction, &regs->pl011_fbrd);
132
133 /* Set the UART to be 8 bits, 1 stop bit, no parity, fifo enabled */
134 writel(UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN,
135 &regs->pl011_lcrh);
136
137 /* Finally, enable the UART */
138 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE | UART_PL011_CR_RXE,
139 &regs->pl011_cr);
140
141 return 0;
142 }
143
144 #endif /* CONFIG_PL011_SERIAL */
145
146 void serial_putc (const char c)
147 {
148 if (c == '\n')
149 pl01x_putc (CONSOLE_PORT, '\r');
150
151 pl01x_putc (CONSOLE_PORT, c);
152 }
153
154 void serial_puts (const char *s)
155 {
156 while (*s) {
157 serial_putc (*s++);
158 }
159 }
160
161 int serial_getc (void)
162 {
163 return pl01x_getc (CONSOLE_PORT);
164 }
165
166 int serial_tstc (void)
167 {
168 return pl01x_tstc (CONSOLE_PORT);
169 }
170
171 void serial_setbrg (void)
172 {
173 baudrate = gd->baudrate;
174 serial_init();
175 }
176
177 static void pl01x_putc (int portnum, char c)
178 {
179 struct pl01x_regs *regs = pl01x_get_regs(portnum);
180
181 /* Wait until there is space in the FIFO */
182 while (readl(&regs->fr) & UART_PL01x_FR_TXFF)
183 WATCHDOG_RESET();
184
185 /* Send the character */
186 writel(c, &regs->dr);
187 }
188
189 static int pl01x_getc (int portnum)
190 {
191 struct pl01x_regs *regs = pl01x_get_regs(portnum);
192 unsigned int data;
193
194 /* Wait until there is data in the FIFO */
195 while (readl(&regs->fr) & UART_PL01x_FR_RXFE)
196 WATCHDOG_RESET();
197
198 data = readl(&regs->dr);
199
200 /* Check for an error flag */
201 if (data & 0xFFFFFF00) {
202 /* Clear the error */
203 writel(0xFFFFFFFF, &regs->ecr);
204 return -1;
205 }
206
207 return (int) data;
208 }
209
210 static int pl01x_tstc (int portnum)
211 {
212 struct pl01x_regs *regs = pl01x_get_regs(portnum);
213
214 WATCHDOG_RESET();
215 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
216 }