blob: 75599165781f1d48d216f118bffa8166d2d71c51 [file] [log] [blame]
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +00001/*
2 * Copyright (C) 2011 Vladimir Zapolskiy <vz@mleia.com>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 * MA 02110-1301, USA.
18 */
19
20#include <common.h>
21#include <asm/arch/cpu.h>
22#include <asm/arch/clk.h>
23#include <asm/arch/uart.h>
24#include <asm/io.h>
Marek Vasute503f902012-09-13 16:51:02 +020025#include <serial.h>
26#include <linux/compiler.h>
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000027
28DECLARE_GLOBAL_DATA_PTR;
29
30static struct hsuart_regs *hsuart = (struct hsuart_regs *)HS_UART_BASE;
31
Marek Vasute503f902012-09-13 16:51:02 +020032static void lpc32xx_serial_setbrg(void)
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000033{
34 u32 div;
35
36 /* UART rate = PERIPH_CLK / ((HSU_RATE + 1) x 14) */
37 div = (get_serial_clock() / 14 + gd->baudrate / 2) / gd->baudrate - 1;
38 if (div > 255)
39 div = 255;
40
41 writel(div, &hsuart->rate);
42}
43
Marek Vasute503f902012-09-13 16:51:02 +020044static int lpc32xx_serial_getc(void)
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000045{
46 while (!(readl(&hsuart->level) & HSUART_LEVEL_RX))
47 /* NOP */;
48
49 return readl(&hsuart->rx) & HSUART_RX_DATA;
50}
51
Marek Vasute503f902012-09-13 16:51:02 +020052static void lpc32xx_serial_putc(const char c)
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000053{
54 writel(c, &hsuart->tx);
55
56 /* Wait for character to be sent */
57 while (readl(&hsuart->level) & HSUART_LEVEL_TX)
58 /* NOP */;
59}
60
Marek Vasute503f902012-09-13 16:51:02 +020061static int lpc32xx_serial_tstc(void)
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000062{
63 if (readl(&hsuart->level) & HSUART_LEVEL_RX)
64 return 1;
65
66 return 0;
67}
68
Marek Vasute503f902012-09-13 16:51:02 +020069static int lpc32xx_serial_init(void)
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000070{
Marek Vasute503f902012-09-13 16:51:02 +020071 lpc32xx_serial_setbrg();
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000072
73 /* Disable hardware RTS and CTS flow control, set up RX and TX FIFO */
74 writel(HSUART_CTRL_TMO_16 | HSUART_CTRL_HSU_OFFSET(20) |
75 HSUART_CTRL_HSU_RX_TRIG_32 | HSUART_CTRL_HSU_TX_TRIG_0,
76 &hsuart->ctrl);
Marek Vasute503f902012-09-13 16:51:02 +020077 return 0;
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000078}
79
Marek Vasute503f902012-09-13 16:51:02 +020080static struct serial_device lpc32xx_serial_drv = {
81 .name = "lpc32xx_serial",
82 .start = lpc32xx_serial_init,
83 .stop = NULL,
84 .setbrg = lpc32xx_serial_setbrg,
85 .putc = lpc32xx_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +000086 .puts = default_serial_puts,
Marek Vasute503f902012-09-13 16:51:02 +020087 .getc = lpc32xx_serial_getc,
88 .tstc = lpc32xx_serial_tstc,
89};
90
91void lpc32xx_serial_initialize(void)
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000092{
Marek Vasute503f902012-09-13 16:51:02 +020093 serial_register(&lpc32xx_serial_drv);
Vladimir Zapolskiycc35fdb2012-04-19 04:33:09 +000094}
95
Marek Vasute503f902012-09-13 16:51:02 +020096__weak struct serial_device *default_serial_console(void)
97{
98 return &lpc32xx_serial_drv;
99}