Blackfin: add check for anomaly 05000362
[oweals/u-boot.git] / cpu / blackfin / serial.c
1 /*
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>,
7  *                      BuyWays B.V. (www.buyways.nl)
8  *
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
27 #include <common.h>
28 #include <watchdog.h>
29 #include <asm/blackfin.h>
30 #include <asm/mach-common/bits/uart.h>
31
32 #ifdef CONFIG_UART_CONSOLE
33
34 #if defined(UART_LSR) && (CONFIG_UART_CONSOLE != 0)
35 # error CONFIG_UART_CONSOLE must be 0 on parts with only one UART
36 #endif
37
38 #include "serial.h"
39
40 #ifdef CONFIG_DEBUG_SERIAL
41 uint16_t cached_lsr[256];
42 uint16_t cached_rbr[256];
43 size_t cache_count;
44
45 /* The LSR is read-to-clear on some parts, so we have to make sure status
46  * bits aren't inadvertently lost when doing various tests.
47  */
48 static uint16_t uart_lsr_save;
49 static uint16_t uart_lsr_read(void)
50 {
51         uint16_t lsr = *pUART_LSR;
52         uart_lsr_save |= (lsr & (OE|PE|FE|BI));
53         return lsr | uart_lsr_save;
54 }
55 /* Just do the clear for everyone since it can't hurt. */
56 static void uart_lsr_clear(void)
57 {
58         uart_lsr_save = 0;
59         *pUART_LSR |= -1;
60 }
61 #else
62 static inline uint16_t uart_lsr_read(void) { return *pUART_LSR; }
63 static inline void uart_lsr_clear(void) { *pUART_LSR = -1; }
64 #endif
65
66 /* Symbol for our assembly to call. */
67 void serial_set_baud(uint32_t baud)
68 {
69         serial_early_set_baud(baud);
70 }
71
72 /* Symbol for common u-boot code to call.
73  * Setup the baudrate (brg: baudrate generator).
74  */
75 void serial_setbrg(void)
76 {
77         DECLARE_GLOBAL_DATA_PTR;
78         serial_set_baud(gd->baudrate);
79 }
80
81 /* Symbol for our assembly to call. */
82 void serial_initialize(void)
83 {
84         serial_early_init();
85 }
86
87 /* Symbol for common u-boot code to call. */
88 int serial_init(void)
89 {
90         serial_initialize();
91         serial_setbrg();
92         uart_lsr_clear();
93 #ifdef CONFIG_DEBUG_SERIAL
94         cache_count = 0;
95         memset(cached_lsr, 0x00, sizeof(cached_lsr));
96         memset(cached_rbr, 0x00, sizeof(cached_rbr));
97 #endif
98         return 0;
99 }
100
101 void serial_putc(const char c)
102 {
103         /* send a \r for compatibility */
104         if (c == '\n')
105                 serial_putc('\r');
106
107         WATCHDOG_RESET();
108
109         /* wait for the hardware fifo to clear up */
110         while (!(uart_lsr_read() & THRE))
111                 continue;
112
113         /* queue the character for transmission */
114         *pUART_THR = c;
115         SSYNC();
116
117         WATCHDOG_RESET();
118 }
119
120 int serial_tstc(void)
121 {
122         WATCHDOG_RESET();
123         return (uart_lsr_read() & DR) ? 1 : 0;
124 }
125
126 int serial_getc(void)
127 {
128         uint16_t uart_rbr_val;
129
130         /* wait for data ! */
131         while (!serial_tstc())
132                 continue;
133
134         /* grab the new byte */
135         uart_rbr_val = *pUART_RBR;
136
137 #ifdef CONFIG_DEBUG_SERIAL
138         /* grab & clear the LSR */
139         uint16_t uart_lsr_val = uart_lsr_read();
140
141         cached_lsr[cache_count] = uart_lsr_val;
142         cached_rbr[cache_count] = uart_rbr_val;
143         cache_count = (cache_count + 1) % ARRAY_SIZE(cached_lsr);
144
145         if (uart_lsr_val & (OE|PE|FE|BI)) {
146                 uint16_t dll, dlh;
147                 printf("\n[SERIAL ERROR]\n");
148                 ACCESS_LATCH();
149                 dll = *pUART_DLL;
150                 dlh = *pUART_DLH;
151                 ACCESS_PORT_IER();
152                 printf("\tDLL=0x%x DLH=0x%x\n", dll, dlh);
153                 do {
154                         --cache_count;
155                         printf("\t%3i: RBR=0x%02x LSR=0x%02x\n", cache_count,
156                                 cached_rbr[cache_count], cached_lsr[cache_count]);
157                 } while (cache_count > 0);
158                 return -1;
159         }
160 #endif
161         uart_lsr_clear();
162
163         return uart_rbr_val;
164 }
165
166 void serial_puts(const char *s)
167 {
168         while (*s)
169                 serial_putc(*s++);
170 }
171
172 #endif