blob: 0443b8427a93d70b8e1a852726d05f283339c1f7 [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>
Sonic Zhang9d803fc2013-04-07 19:04:14 +080046#include <asm/serial.h>
Mike Frysinger9171fc82008-03-30 15:46:13 -040047
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 Frysingerf177f422008-04-09 02:02:07 -040052#ifdef CONFIG_DEBUG_SERIAL
Sonic Zhanga12c51f2012-08-16 11:16:02 +080053static uart_lsr_t cached_lsr[256];
54static uart_lsr_t cached_rbr[256];
Mike Frysinger34a6d0b82011-04-29 23:10:54 -040055static size_t cache_count;
Mike Frysingerf177f422008-04-09 02:02:07 -040056
57/* The LSR is read-to-clear on some parts, so we have to make sure status
Mike Frysingeraad4eca2009-04-04 09:10:27 -040058 * bits aren't inadvertently lost when doing various tests. This also
59 * works around anomaly 05000099 at the same time by keeping a cumulative
60 * tally of all the status bits.
Mike Frysingerf177f422008-04-09 02:02:07 -040061 */
Sonic Zhanga12c51f2012-08-16 11:16:02 +080062static uart_lsr_t uart_lsr_save;
63static uart_lsr_t uart_lsr_read(uint32_t uart_base)
Mike Frysingerf177f422008-04-09 02:02:07 -040064{
Sonic Zhanga12c51f2012-08-16 11:16:02 +080065 uart_lsr_t lsr = _lsr_read(pUART);
Mike Frysingerf177f422008-04-09 02:02:07 -040066 uart_lsr_save |= (lsr & (OE|PE|FE|BI));
67 return lsr | uart_lsr_save;
68}
69/* Just do the clear for everyone since it can't hurt. */
Mike Frysinger635f3302011-04-29 23:23:28 -040070static void uart_lsr_clear(uint32_t uart_base)
Mike Frysingerf177f422008-04-09 02:02:07 -040071{
72 uart_lsr_save = 0;
Sonic Zhanga12c51f2012-08-16 11:16:02 +080073 _lsr_write(pUART, -1);
Mike Frysingerf177f422008-04-09 02:02:07 -040074}
75#else
Mike Frysingeraad4eca2009-04-04 09:10:27 -040076/* When debugging is disabled, we only care about the DR bit, so if other
77 * bits get set/cleared, we don't really care since we don't read them
78 * anyways (and thus anomaly 05000099 is irrelevant).
79 */
Sonic Zhanga12c51f2012-08-16 11:16:02 +080080static inline uart_lsr_t uart_lsr_read(uint32_t uart_base)
Mike Frysingerf9481582009-11-12 18:42:53 -050081{
Sonic Zhanga12c51f2012-08-16 11:16:02 +080082 return _lsr_read(pUART);
Mike Frysingerf9481582009-11-12 18:42:53 -050083}
Mike Frysinger635f3302011-04-29 23:23:28 -040084static void uart_lsr_clear(uint32_t uart_base)
Mike Frysingerf9481582009-11-12 18:42:53 -050085{
Sonic Zhanga12c51f2012-08-16 11:16:02 +080086 _lsr_write(pUART, -1);
Mike Frysingerf9481582009-11-12 18:42:53 -050087}
Mike Frysingerf177f422008-04-09 02:02:07 -040088#endif
89
Mike Frysinger635f3302011-04-29 23:23:28 -040090static void uart_putc(uint32_t uart_base, const char c)
Mike Frysinger9171fc82008-03-30 15:46:13 -040091{
92 /* send a \r for compatibility */
93 if (c == '\n')
94 serial_putc('\r');
95
96 WATCHDOG_RESET();
97
98 /* wait for the hardware fifo to clear up */
Mike Frysinger635f3302011-04-29 23:23:28 -040099 while (!(uart_lsr_read(uart_base) & THRE))
Mike Frysinger9171fc82008-03-30 15:46:13 -0400100 continue;
101
102 /* queue the character for transmission */
Mike Frysingerb1e574d2011-06-06 16:47:31 -0400103 bfin_write(&pUART->thr, c);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400104 SSYNC();
105
106 WATCHDOG_RESET();
Mike Frysinger9171fc82008-03-30 15:46:13 -0400107}
108
Mike Frysinger635f3302011-04-29 23:23:28 -0400109static int uart_tstc(uint32_t uart_base)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400110{
111 WATCHDOG_RESET();
Mike Frysinger635f3302011-04-29 23:23:28 -0400112 return (uart_lsr_read(uart_base) & DR) ? 1 : 0;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400113}
114
Mike Frysinger635f3302011-04-29 23:23:28 -0400115static int uart_getc(uint32_t uart_base)
Mike Frysinger9171fc82008-03-30 15:46:13 -0400116{
Mike Frysingerf177f422008-04-09 02:02:07 -0400117 uint16_t uart_rbr_val;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400118
119 /* wait for data ! */
Mike Frysinger635f3302011-04-29 23:23:28 -0400120 while (!uart_tstc(uart_base))
Mike Frysinger9171fc82008-03-30 15:46:13 -0400121 continue;
122
Mike Frysingerf177f422008-04-09 02:02:07 -0400123 /* grab the new byte */
Mike Frysingerb1e574d2011-06-06 16:47:31 -0400124 uart_rbr_val = bfin_read(&pUART->rbr);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400125
Mike Frysingerf177f422008-04-09 02:02:07 -0400126#ifdef CONFIG_DEBUG_SERIAL
127 /* grab & clear the LSR */
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800128 uart_lsr_t uart_lsr_val = uart_lsr_read(uart_base);
Mike Frysingerf177f422008-04-09 02:02:07 -0400129
130 cached_lsr[cache_count] = uart_lsr_val;
131 cached_rbr[cache_count] = uart_rbr_val;
132 cache_count = (cache_count + 1) % ARRAY_SIZE(cached_lsr);
133
Mike Frysinger9171fc82008-03-30 15:46:13 -0400134 if (uart_lsr_val & (OE|PE|FE|BI)) {
Mike Frysingerf177f422008-04-09 02:02:07 -0400135 printf("\n[SERIAL ERROR]\n");
Mike Frysingerf177f422008-04-09 02:02:07 -0400136 do {
137 --cache_count;
Mike Frysingerf9aee4b2011-05-09 14:56:38 -0400138 printf("\t%3zu: RBR=0x%02x LSR=0x%02x\n", cache_count,
Mike Frysingerf177f422008-04-09 02:02:07 -0400139 cached_rbr[cache_count], cached_lsr[cache_count]);
140 } while (cache_count > 0);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400141 return -1;
142 }
Mike Frysingerf177f422008-04-09 02:02:07 -0400143#endif
Mike Frysinger635f3302011-04-29 23:23:28 -0400144 uart_lsr_clear(uart_base);
Mike Frysinger9171fc82008-03-30 15:46:13 -0400145
Mike Frysingerf177f422008-04-09 02:02:07 -0400146 return uart_rbr_val;
Mike Frysinger9171fc82008-03-30 15:46:13 -0400147}
148
Mike Frysinger90a75b02011-05-14 12:17:46 -0400149#if CONFIG_POST & CONFIG_SYS_POST_UART
150# define LOOP(x) x
151#else
152# define LOOP(x)
153#endif
154
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800155#if BFIN_UART_HW_VER < 4
156
Mike Frysinger90a75b02011-05-14 12:17:46 -0400157LOOP(
158static void uart_loop(uint32_t uart_base, int state)
159{
160 u16 mcr;
161
162 /* Drain the TX fifo first so bytes don't come back */
163 while (!(uart_lsr_read(uart_base) & TEMT))
164 continue;
165
166 mcr = bfin_read(&pUART->mcr);
167 if (state)
168 mcr |= LOOP_ENA | MRTS;
169 else
170 mcr &= ~(LOOP_ENA | MRTS);
171 bfin_write(&pUART->mcr, mcr);
172}
173)
174
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800175#else
176
177LOOP(
178static void uart_loop(uint32_t uart_base, int state)
179{
180 u32 control;
181
182 /* Drain the TX fifo first so bytes don't come back */
183 while (!(uart_lsr_read(uart_base) & TEMT))
184 continue;
185
186 control = bfin_read(&pUART->control);
187 if (state)
188 control |= LOOP_ENA | MRTS;
189 else
190 control &= ~(LOOP_ENA | MRTS);
191 bfin_write(&pUART->control, control);
192}
193)
194
195#endif
196
Sonic Zhang79f2b392013-02-05 19:10:34 +0800197static inline void __serial_set_baud(uint32_t uart_base, uint32_t baud)
198{
Sonic Zhang50aadcc2013-03-13 19:06:16 +0800199#ifdef CONFIG_DEBUG_EARLY_SERIAL
200 serial_early_set_baud(uart_base, baud);
201#else
Sonic Zhang79f2b392013-02-05 19:10:34 +0800202 uint16_t divisor = (get_uart_clk() + (baud * 8)) / (baud * 16)
203 - ANOMALY_05000230;
204
205 /* Program the divisor to get the baud rate we want */
206 serial_set_divisor(uart_base, divisor);
Sonic Zhang50aadcc2013-03-13 19:06:16 +0800207#endif
Sonic Zhang79f2b392013-02-05 19:10:34 +0800208}
Mike Frysinger635f3302011-04-29 23:23:28 -0400209
210static void uart_puts(uint32_t uart_base, const char *s)
211{
212 while (*s)
213 uart_putc(uart_base, *s++);
214}
215
216#define DECL_BFIN_UART(n) \
217static int uart##n##_init(void) \
218{ \
219 const unsigned short pins[] = { _P_UART(n, RX), _P_UART(n, TX), 0, }; \
220 peripheral_request_list(pins, "bfin-uart"); \
221 uart_init(MMR_UART(n)); \
Sonic Zhang79f2b392013-02-05 19:10:34 +0800222 __serial_set_baud(MMR_UART(n), gd->baudrate); \
Mike Frysinger635f3302011-04-29 23:23:28 -0400223 uart_lsr_clear(MMR_UART(n)); \
224 return 0; \
225} \
226\
227static int uart##n##_uninit(void) \
228{ \
229 return serial_early_uninit(MMR_UART(n)); \
230} \
231\
232static void uart##n##_setbrg(void) \
233{ \
Sonic Zhang79f2b392013-02-05 19:10:34 +0800234 __serial_set_baud(MMR_UART(n), gd->baudrate); \
Mike Frysinger635f3302011-04-29 23:23:28 -0400235} \
236\
237static int uart##n##_getc(void) \
238{ \
239 return uart_getc(MMR_UART(n)); \
240} \
241\
242static int uart##n##_tstc(void) \
243{ \
244 return uart_tstc(MMR_UART(n)); \
245} \
246\
247static void uart##n##_putc(const char c) \
248{ \
249 uart_putc(MMR_UART(n), c); \
250} \
251\
252static void uart##n##_puts(const char *s) \
253{ \
254 uart_puts(MMR_UART(n), s); \
255} \
256\
Mike Frysinger90a75b02011-05-14 12:17:46 -0400257LOOP( \
258static void uart##n##_loop(int state) \
259{ \
260 uart_loop(MMR_UART(n), state); \
261} \
262) \
263\
Mike Frysinger635f3302011-04-29 23:23:28 -0400264struct serial_device bfin_serial##n##_device = { \
265 .name = "bfin_uart"#n, \
Marek Vasut89143fb2012-09-07 14:35:31 +0200266 .start = uart##n##_init, \
267 .stop = uart##n##_uninit, \
Mike Frysinger635f3302011-04-29 23:23:28 -0400268 .setbrg = uart##n##_setbrg, \
269 .getc = uart##n##_getc, \
270 .tstc = uart##n##_tstc, \
271 .putc = uart##n##_putc, \
272 .puts = uart##n##_puts, \
Mike Frysinger90a75b02011-05-14 12:17:46 -0400273 LOOP(.loop = uart##n##_loop) \
Mike Frysinger635f3302011-04-29 23:23:28 -0400274};
275
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800276#ifdef UART0_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400277DECL_BFIN_UART(0)
278#endif
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800279#ifdef UART1_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400280DECL_BFIN_UART(1)
281#endif
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800282#ifdef UART2_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400283DECL_BFIN_UART(2)
284#endif
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800285#ifdef UART3_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400286DECL_BFIN_UART(3)
287#endif
288
289__weak struct serial_device *default_serial_console(void)
290{
291#if CONFIG_UART_CONSOLE == 0
292 return &bfin_serial0_device;
293#elif CONFIG_UART_CONSOLE == 1
294 return &bfin_serial1_device;
295#elif CONFIG_UART_CONSOLE == 2
296 return &bfin_serial2_device;
297#elif CONFIG_UART_CONSOLE == 3
298 return &bfin_serial3_device;
299#endif
300}
301
Marek Vasut5ae1de02012-09-12 20:07:54 +0200302void bfin_serial_initialize(void)
Mike Frysinger635f3302011-04-29 23:23:28 -0400303{
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800304#ifdef UART0_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400305 serial_register(&bfin_serial0_device);
306#endif
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800307#ifdef UART1_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400308 serial_register(&bfin_serial1_device);
309#endif
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800310#ifdef UART2_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400311 serial_register(&bfin_serial2_device);
312#endif
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800313#ifdef UART3_RBR
Mike Frysinger635f3302011-04-29 23:23:28 -0400314 serial_register(&bfin_serial3_device);
315#endif
316}
317
Sonic Zhang50aadcc2013-03-13 19:06:16 +0800318#ifdef CONFIG_DEBUG_EARLY_SERIAL
319inline void uart_early_putc(uint32_t uart_base, const char c)
320{
321 /* send a \r for compatibility */
322 if (c == '\n')
323 uart_early_putc(uart_base, '\r');
324
325 /* wait for the hardware fifo to clear up */
326 while (!(_lsr_read(pUART) & THRE))
327 continue;
328
329 /* queue the character for transmission */
330 bfin_write(&pUART->thr, c);
331 SSYNC();
332}
333
334void uart_early_puts(const char *s)
335{
336 while (*s)
337 uart_early_putc(UART_BASE, *s++);
338}
Mike Frysinger635f3302011-04-29 23:23:28 -0400339
340/* Symbol for our assembly to call. */
Sonic Zhang50aadcc2013-03-13 19:06:16 +0800341void _serial_early_set_baud(uint32_t baud)
Mike Frysinger635f3302011-04-29 23:23:28 -0400342{
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800343 serial_early_set_baud(UART_BASE, baud);
Mike Frysinger635f3302011-04-29 23:23:28 -0400344}
345
Mike Frysinger635f3302011-04-29 23:23:28 -0400346/* Symbol for our assembly to call. */
Sonic Zhang50aadcc2013-03-13 19:06:16 +0800347void _serial_early_init(void)
Mike Frysinger635f3302011-04-29 23:23:28 -0400348{
Sonic Zhanga12c51f2012-08-16 11:16:02 +0800349 serial_early_init(UART_BASE);
Mike Frysinger635f3302011-04-29 23:23:28 -0400350}
Mike Frysinger76339032008-10-11 21:52:17 -0400351#endif
Mike Frysinger635f3302011-04-29 23:23:28 -0400352
Sonic Zhangd68e7fa2013-03-14 15:13:30 +0800353#elif defined(CONFIG_UART_MEM)
354
355char serial_logbuf[CONFIG_UART_MEM];
356char *serial_logbuf_head = serial_logbuf;
357
358int serial_mem_init(void)
359{
360 serial_logbuf_head = serial_logbuf;
361 return 0;
362}
363
364void serial_mem_setbrg(void)
365{
366}
367
368int serial_mem_tstc(void)
369{
370 return 0;
371}
372
373int serial_mem_getc(void)
374{
375 return 0;
376}
377
378void serial_mem_putc(const char c)
379{
380 *serial_logbuf_head = c;
381 if (++serial_logbuf_head == serial_logbuf + CONFIG_UART_MEM)
382 serial_logbuf_head = serial_logbuf;
383}
384
385void serial_mem_puts(const char *s)
386{
387 while (*s)
388 serial_putc(*s++);
389}
390
391struct serial_device bfin_serial_mem_device = {
392 .name = "bfin_uart_mem",
393 .start = serial_mem_init,
394 .setbrg = serial_mem_setbrg,
395 .getc = serial_mem_getc,
396 .tstc = serial_mem_tstc,
397 .putc = serial_mem_putc,
398 .puts = serial_mem_puts,
399};
400
401
402__weak struct serial_device *default_serial_console(void)
403{
404 return &bfin_serial_mem_device;
405}
406
407void bfin_serial_initialize(void)
408{
409 serial_register(&bfin_serial_mem_device);
410}
411#endif /* CONFIG_UART_MEM */