blob: 64340ec67d552c62211aa4ca18b152d6284a5985 [file] [log] [blame]
Mike Frysinger9171fc82008-03-30 15:46:13 -04001/*
2 * U-boot - serial.c Blackfin Serial Driver
3 *
4 * Copyright (c) 2005-2008 Analog Devices Inc.
5 *
6 * Copyright (c) 2003 Bas Vermeulen <bas@buyways.nl>,
Wolfgang Denk53677ef2008-05-20 16:00:29 +02007 * BuyWays B.V. (www.buyways.nl)
Mike Frysinger9171fc82008-03-30 15:46:13 -04008 *
9 * Based heavily on:
10 * blkfinserial.c: Serial driver for BlackFin DSP internal USRTs.
11 * Copyright(c) 2003 Metrowerks <mwaddel@metrowerks.com>
12 * Copyright(c) 2001 Tony Z. Kou <tonyko@arcturusnetworks.com>
13 * Copyright(c) 2001-2002 Arcturus Networks Inc. <www.arcturusnetworks.com>
14 *
15 * Based on code from 68328 version serial driver imlpementation which was:
16 * Copyright (C) 1995 David S. Miller <davem@caip.rutgers.edu>
17 * Copyright (C) 1998 Kenneth Albanowski <kjahds@kjahds.com>
18 * Copyright (C) 1998, 1999 D. Jeff Dionne <jeff@uclinux.org>
19 * Copyright (C) 1999 Vladimir Gurevich <vgurevic@cisco.com>
20 *
21 * (C) Copyright 2000-2004
22 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
23 *
24 * Licensed under the GPL-2 or later.
25 */
26
Mike Frysingeraad4eca2009-04-04 09:10:27 -040027/* Anomaly notes:
28 * 05000086 - we don't support autobaud
29 * 05000099 - we only use DR bit, so losing others is not a problem
30 * 05000100 - we don't use the UART_IIR register
31 * 05000215 - we poll the uart (no dma/interrupts)
32 * 05000225 - no workaround possible, but this shouldnt cause errors ...
33 * 05000230 - we tweak the baud rate calculation slightly
34 * 05000231 - we always use 1 stop bit
35 * 05000309 - we always enable the uart before we modify it in anyway
36 * 05000350 - we always enable the uart regardless of boot mode
37 * 05000363 - we don't support break signals, so don't generate one
38 */
39
Mike Frysinger9171fc82008-03-30 15:46:13 -040040#include <common.h>
Mike Frysinger90a75b02011-05-14 12:17:46 -040041#include <post.h>
Mike Frysinger9171fc82008-03-30 15:46:13 -040042#include <watchdog.h>
Mike Frysinger635f3302011-04-29 23:23:28 -040043#include <serial.h>
44#include <linux/compiler.h>
Mike Frysinger9171fc82008-03-30 15:46:13 -040045#include <asm/blackfin.h>
46#include <asm/mach-common/bits/uart.h>
47
John Rigby29565322010-12-20 18:27:51 -070048DECLARE_GLOBAL_DATA_PTR;
49
Mike Frysinger76339032008-10-11 21:52:17 -040050#ifdef CONFIG_UART_CONSOLE
51
Mike Frysinger9171fc82008-03-30 15:46:13 -040052#include "serial.h"
53
Mike Frysingerf177f422008-04-09 02:02:07 -040054#ifdef CONFIG_DEBUG_SERIAL
Mike Frysinger34a6d0b82011-04-29 23:10:54 -040055static uint16_t cached_lsr[256];
56static uint16_t cached_rbr[256];
57static size_t cache_count;
Mike Frysingerf177f422008-04-09 02:02:07 -040058
59/* The LSR is read-to-clear on some parts, so we have to make sure status
Mike Frysingeraad4eca2009-04-04 09:10:27 -040060 * bits aren't inadvertently lost when doing various tests. This also
61 * works around anomaly 05000099 at the same time by keeping a cumulative
62 * tally of all the status bits.
Mike Frysingerf177f422008-04-09 02:02:07 -040063 */
64static uint16_t uart_lsr_save;
Mike Frysinger635f3302011-04-29 23:23:28 -040065static uint16_t uart_lsr_read(uint32_t uart_base)
Mike Frysingerf177f422008-04-09 02:02:07 -040066{
Mike Frysingerb1e574d2011-06-06 16:47:31 -040067 uint16_t lsr = bfin_read(&pUART->lsr);
Mike Frysingerf177f422008-04-09 02:02:07 -040068 uart_lsr_save |= (lsr & (OE|PE|FE|BI));
69 return lsr | uart_lsr_save;
70}
71/* Just do the clear for everyone since it can't hurt. */
Mike Frysinger635f3302011-04-29 23:23:28 -040072static void uart_lsr_clear(uint32_t uart_base)
Mike Frysingerf177f422008-04-09 02:02:07 -040073{
74 uart_lsr_save = 0;
Mike Frysingerb1e574d2011-06-06 16:47:31 -040075 bfin_write(&pUART->lsr, bfin_read(&pUART->lsr) | -1);
Mike Frysingerf177f422008-04-09 02:02:07 -040076}
77#else
Mike Frysingeraad4eca2009-04-04 09:10:27 -040078/* When debugging is disabled, we only care about the DR bit, so if other
79 * bits get set/cleared, we don't really care since we don't read them
80 * anyways (and thus anomaly 05000099 is irrelevant).
81 */
Mike Frysinger635f3302011-04-29 23:23:28 -040082static inline uint16_t uart_lsr_read(uint32_t uart_base)
Mike Frysingerf9481582009-11-12 18:42:53 -050083{
Mike Frysingerb1e574d2011-06-06 16:47:31 -040084 return bfin_read(&pUART->lsr);
Mike Frysingerf9481582009-11-12 18:42:53 -050085}
Mike Frysinger635f3302011-04-29 23:23:28 -040086static void uart_lsr_clear(uint32_t uart_base)
Mike Frysingerf9481582009-11-12 18:42:53 -050087{
Mike Frysingerb1e574d2011-06-06 16:47:31 -040088 bfin_write(&pUART->lsr, bfin_read(&pUART->lsr) | -1);
Mike Frysingerf9481582009-11-12 18:42:53 -050089}
Mike Frysingerf177f422008-04-09 02:02:07 -040090#endif
91
Mike Frysinger635f3302011-04-29 23:23:28 -040092static void uart_putc(uint32_t uart_base, const char c)
Mike Frysinger9171fc82008-03-30 15:46:13 -040093{
94 /* send a \r for compatibility */
95 if (c == '\n')
96 serial_putc('\r');
97
98 WATCHDOG_RESET();
99
100 /* wait for the hardware fifo to clear up */
Mike Frysinger635f3302011-04-29 23:23:28 -0400101 while (!(uart_lsr_read(uart_base) & THRE))
Mike Frysinger9171fc82008-03-30 15:46:13 -0400102 continue;
103
104 /* queue the character for transmission */
Mike Frysingerb1e574d2011-06-06 16:47:31 -0400105 bfin_write(&pUART->thr, c);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400106 SSYNC();
107
108 WATCHDOG_RESET();
Mike Frysinger9171fc82008-03-30 15:46:13 -0400109}
110
Mike Frysinger635f3302011-04-29 23:23:28 -0400111static int uart_tstc(uint32_t uart_base)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400112{
113 WATCHDOG_RESET();
Mike Frysinger635f3302011-04-29 23:23:28 -0400114 return (uart_lsr_read(uart_base) & DR) ? 1 : 0;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400115}
116
Mike Frysinger635f3302011-04-29 23:23:28 -0400117static int uart_getc(uint32_t uart_base)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400118{
Mike Frysingerf177f422008-04-09 02:02:07 -0400119 uint16_t uart_rbr_val;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400120
121 /* wait for data ! */
Mike Frysinger635f3302011-04-29 23:23:28 -0400122 while (!uart_tstc(uart_base))
Mike Frysinger9171fc82008-03-30 15:46:13 -0400123 continue;
124
Mike Frysingerf177f422008-04-09 02:02:07 -0400125 /* grab the new byte */
Mike Frysingerb1e574d2011-06-06 16:47:31 -0400126 uart_rbr_val = bfin_read(&pUART->rbr);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400127
Mike Frysingerf177f422008-04-09 02:02:07 -0400128#ifdef CONFIG_DEBUG_SERIAL
129 /* grab & clear the LSR */
Mike Frysinger635f3302011-04-29 23:23:28 -0400130 uint16_t uart_lsr_val = uart_lsr_read(uart_base);
Mike Frysingerf177f422008-04-09 02:02:07 -0400131
132 cached_lsr[cache_count] = uart_lsr_val;
133 cached_rbr[cache_count] = uart_rbr_val;
134 cache_count = (cache_count + 1) % ARRAY_SIZE(cached_lsr);
135
Mike Frysinger9171fc82008-03-30 15:46:13 -0400136 if (uart_lsr_val & (OE|PE|FE|BI)) {
Mike Frysingerf177f422008-04-09 02:02:07 -0400137 uint16_t dll, dlh;
138 printf("\n[SERIAL ERROR]\n");
139 ACCESS_LATCH();
Mike Frysingerb1e574d2011-06-06 16:47:31 -0400140 dll = bfin_read(&pUART->dll);
141 dlh = bfin_read(&pUART->dlh);
Mike Frysingerf177f422008-04-09 02:02:07 -0400142 ACCESS_PORT_IER();
143 printf("\tDLL=0x%x DLH=0x%x\n", dll, dlh);
144 do {
145 --cache_count;
Mike Frysingerf9aee4b2011-05-09 14:56:38 -0400146 printf("\t%3zu: RBR=0x%02x LSR=0x%02x\n", cache_count,
Mike Frysingerf177f422008-04-09 02:02:07 -0400147 cached_rbr[cache_count], cached_lsr[cache_count]);
148 } while (cache_count > 0);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400149 return -1;
150 }
Mike Frysingerf177f422008-04-09 02:02:07 -0400151#endif
Mike Frysinger635f3302011-04-29 23:23:28 -0400152 uart_lsr_clear(uart_base);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400153
Mike Frysingerf177f422008-04-09 02:02:07 -0400154 return uart_rbr_val;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400155}
156
Mike Frysinger90a75b02011-05-14 12:17:46 -0400157#if CONFIG_POST & CONFIG_SYS_POST_UART
158# define LOOP(x) x
159#else
160# define LOOP(x)
161#endif
162
163LOOP(
164static void uart_loop(uint32_t uart_base, int state)
165{
166 u16 mcr;
167
168 /* Drain the TX fifo first so bytes don't come back */
169 while (!(uart_lsr_read(uart_base) & TEMT))
170 continue;
171
172 mcr = bfin_read(&pUART->mcr);
173 if (state)
174 mcr |= LOOP_ENA | MRTS;
175 else
176 mcr &= ~(LOOP_ENA | MRTS);
177 bfin_write(&pUART->mcr, mcr);
178}
179)
180
Mike Frysinger635f3302011-04-29 23:23:28 -0400181#ifdef CONFIG_SYS_BFIN_UART
182
183static void uart_puts(uint32_t uart_base, const char *s)
184{
185 while (*s)
186 uart_putc(uart_base, *s++);
187}
188
189#define DECL_BFIN_UART(n) \
190static int uart##n##_init(void) \
191{ \
192 const unsigned short pins[] = { _P_UART(n, RX), _P_UART(n, TX), 0, }; \
193 peripheral_request_list(pins, "bfin-uart"); \
194 uart_init(MMR_UART(n)); \
195 serial_early_set_baud(MMR_UART(n), gd->baudrate); \
196 uart_lsr_clear(MMR_UART(n)); \
197 return 0; \
198} \
199\
200static int uart##n##_uninit(void) \
201{ \
202 return serial_early_uninit(MMR_UART(n)); \
203} \
204\
205static void uart##n##_setbrg(void) \
206{ \
207 serial_early_set_baud(MMR_UART(n), gd->baudrate); \
208} \
209\
210static int uart##n##_getc(void) \
211{ \
212 return uart_getc(MMR_UART(n)); \
213} \
214\
215static int uart##n##_tstc(void) \
216{ \
217 return uart_tstc(MMR_UART(n)); \
218} \
219\
220static void uart##n##_putc(const char c) \
221{ \
222 uart_putc(MMR_UART(n), c); \
223} \
224\
225static void uart##n##_puts(const char *s) \
226{ \
227 uart_puts(MMR_UART(n), s); \
228} \
229\
Mike Frysinger90a75b02011-05-14 12:17:46 -0400230LOOP( \
231static void uart##n##_loop(int state) \
232{ \
233 uart_loop(MMR_UART(n), state); \
234} \
235) \
236\
Mike Frysinger635f3302011-04-29 23:23:28 -0400237struct serial_device bfin_serial##n##_device = { \
238 .name = "bfin_uart"#n, \
Marek Vasut89143fb2012-09-07 14:35:31 +0200239 .start = uart##n##_init, \
240 .stop = uart##n##_uninit, \
Mike Frysinger635f3302011-04-29 23:23:28 -0400241 .setbrg = uart##n##_setbrg, \
242 .getc = uart##n##_getc, \
243 .tstc = uart##n##_tstc, \
244 .putc = uart##n##_putc, \
245 .puts = uart##n##_puts, \
Mike Frysinger90a75b02011-05-14 12:17:46 -0400246 LOOP(.loop = uart##n##_loop) \
Mike Frysinger635f3302011-04-29 23:23:28 -0400247};
248
249#ifdef UART0_DLL
250DECL_BFIN_UART(0)
251#endif
252#ifdef UART1_DLL
253DECL_BFIN_UART(1)
254#endif
255#ifdef UART2_DLL
256DECL_BFIN_UART(2)
257#endif
258#ifdef UART3_DLL
259DECL_BFIN_UART(3)
260#endif
261
262__weak struct serial_device *default_serial_console(void)
263{
264#if CONFIG_UART_CONSOLE == 0
265 return &bfin_serial0_device;
266#elif CONFIG_UART_CONSOLE == 1
267 return &bfin_serial1_device;
268#elif CONFIG_UART_CONSOLE == 2
269 return &bfin_serial2_device;
270#elif CONFIG_UART_CONSOLE == 3
271 return &bfin_serial3_device;
272#endif
273}
274
Marek Vasut5ae1de02012-09-12 20:07:54 +0200275void bfin_serial_initialize(void)
Mike Frysinger635f3302011-04-29 23:23:28 -0400276{
277#ifdef UART0_DLL
278 serial_register(&bfin_serial0_device);
279#endif
280#ifdef UART1_DLL
281 serial_register(&bfin_serial1_device);
282#endif
283#ifdef UART2_DLL
284 serial_register(&bfin_serial2_device);
285#endif
286#ifdef UART3_DLL
287 serial_register(&bfin_serial3_device);
288#endif
289}
290
291#else
292
293/* Symbol for our assembly to call. */
294void serial_set_baud(uint32_t baud)
295{
296 serial_early_set_baud(UART_DLL, baud);
297}
298
299/* Symbol for common u-boot code to call.
300 * Setup the baudrate (brg: baudrate generator).
301 */
302void serial_setbrg(void)
303{
304 serial_set_baud(gd->baudrate);
305}
306
307/* Symbol for our assembly to call. */
308void serial_initialize(void)
309{
310 serial_early_init(UART_DLL);
311}
312
313/* Symbol for common u-boot code to call. */
314int serial_init(void)
315{
316 serial_initialize();
317 serial_setbrg();
318 uart_lsr_clear(UART_DLL);
319 return 0;
320}
321
322int serial_tstc(void)
323{
324 return uart_tstc(UART_DLL);
325}
326
327int serial_getc(void)
328{
329 return uart_getc(UART_DLL);
330}
331
332void serial_putc(const char c)
333{
334 uart_putc(UART_DLL, c);
335}
336
Mike Frysinger9171fc82008-03-30 15:46:13 -0400337void serial_puts(const char *s)
338{
339 while (*s)
340 serial_putc(*s++);
341}
Mike Frysinger76339032008-10-11 21:52:17 -0400342
Mike Frysinger90a75b02011-05-14 12:17:46 -0400343LOOP(
344void serial_loop(int state)
345{
346 uart_loop(UART_DLL, state);
347}
348)
349
Mike Frysinger76339032008-10-11 21:52:17 -0400350#endif
Mike Frysinger635f3302011-04-29 23:23:28 -0400351
352#endif