blob: 6292eb136b0d86590d7508d6b26260afe41bfbca [file] [log] [blame]
Alexey Brodkinc51eb112013-12-13 10:35:11 +04001/*
2 * Copyright (C) 2013 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 */
9
10#include <common.h>
Alexey Brodkine458cc12015-03-17 14:55:14 +030011#include <dm.h>
Alexey Brodkinc51eb112013-12-13 10:35:11 +040012#include <serial.h>
13
14DECLARE_GLOBAL_DATA_PTR;
15
16struct arc_serial_regs {
17 unsigned int id0;
18 unsigned int id1;
19 unsigned int id2;
20 unsigned int id3;
21 unsigned int data;
22 unsigned int status;
23 unsigned int baudl;
24 unsigned int baudh;
25};
26
Alexey Brodkine458cc12015-03-17 14:55:14 +030027
28struct arc_serial_platdata {
29 struct arc_serial_regs *reg;
30 unsigned int uartclk;
31};
32
Alexey Brodkinc51eb112013-12-13 10:35:11 +040033/* Bit definitions of STATUS register */
34#define UART_RXEMPTY (1 << 5)
35#define UART_OVERFLOW_ERR (1 << 1)
36#define UART_TXEMPTY (1 << 7)
37
Alexey Brodkine458cc12015-03-17 14:55:14 +030038static int arc_serial_setbrg(struct udevice *dev, int baudrate)
Alexey Brodkinc51eb112013-12-13 10:35:11 +040039{
Alexey Brodkine458cc12015-03-17 14:55:14 +030040 struct arc_serial_platdata *plat = dev->platdata;
41 struct arc_serial_regs *const regs = plat->reg;
42 int arc_console_baud = gd->cpu_clk / (baudrate * 4) - 1;
Alexey Brodkinc51eb112013-12-13 10:35:11 +040043
Alexey Brodkin326d8372014-02-08 10:10:02 +040044 writeb(arc_console_baud & 0xff, &regs->baudl);
Alexey Brodkin0c126202014-02-08 10:10:01 +040045
46#ifdef CONFIG_ARC
47 /*
48 * UART ISS(Instruction Set simulator) emulation has a subtle bug:
49 * A existing value of Baudh = 0 is used as a indication to startup
50 * it's internal state machine.
51 * Thus if baudh is set to 0, 2 times, it chokes.
52 * This happens with BAUD=115200 and the formaula above
53 * Until that is fixed, when running on ISS, we will set baudh to !0
54 */
55 if (gd->arch.running_on_hw)
Alexey Brodkin326d8372014-02-08 10:10:02 +040056 writeb((arc_console_baud & 0xff00) >> 8, &regs->baudh);
Alexey Brodkin0c126202014-02-08 10:10:01 +040057 else
Alexey Brodkin326d8372014-02-08 10:10:02 +040058 writeb(1, &regs->baudh);
Alexey Brodkin0c126202014-02-08 10:10:01 +040059#else
Alexey Brodkin326d8372014-02-08 10:10:02 +040060 writeb((arc_console_baud & 0xff00) >> 8, &regs->baudh);
Alexey Brodkin0c126202014-02-08 10:10:01 +040061#endif
Alexey Brodkinc51eb112013-12-13 10:35:11 +040062
Alexey Brodkinc51eb112013-12-13 10:35:11 +040063 return 0;
64}
65
Alexey Brodkine458cc12015-03-17 14:55:14 +030066static int arc_serial_putc(struct udevice *dev, const char c)
Alexey Brodkinc51eb112013-12-13 10:35:11 +040067{
Alexey Brodkine458cc12015-03-17 14:55:14 +030068 struct arc_serial_platdata *plat = dev->platdata;
69 struct arc_serial_regs *const regs = plat->reg;
70
Alexey Brodkin326d8372014-02-08 10:10:02 +040071 while (!(readb(&regs->status) & UART_TXEMPTY))
Alexey Brodkinc51eb112013-12-13 10:35:11 +040072 ;
73
Alexey Brodkin326d8372014-02-08 10:10:02 +040074 writeb(c, &regs->data);
Alexey Brodkine458cc12015-03-17 14:55:14 +030075
76 return 0;
Alexey Brodkinc51eb112013-12-13 10:35:11 +040077}
78
Alexey Brodkine458cc12015-03-17 14:55:14 +030079static int arc_serial_tstc(struct arc_serial_regs *const regs)
Alexey Brodkinc51eb112013-12-13 10:35:11 +040080{
Alexey Brodkin326d8372014-02-08 10:10:02 +040081 return !(readb(&regs->status) & UART_RXEMPTY);
Alexey Brodkinc51eb112013-12-13 10:35:11 +040082}
83
Alexey Brodkine458cc12015-03-17 14:55:14 +030084static int arc_serial_pending(struct udevice *dev, bool input)
85{
86 struct arc_serial_platdata *plat = dev->platdata;
87 struct arc_serial_regs *const regs = plat->reg;
88 uint32_t status = readb(&regs->status);
89
90 if (input)
91 return status & UART_RXEMPTY ? 0 : 1;
92 else
93 return status & UART_TXEMPTY ? 0 : 1;
94}
95
96static int arc_serial_getc(struct udevice *dev)
Alexey Brodkinc51eb112013-12-13 10:35:11 +040097{
Alexey Brodkine458cc12015-03-17 14:55:14 +030098 struct arc_serial_platdata *plat = dev->platdata;
99 struct arc_serial_regs *const regs = plat->reg;
100
101 while (!arc_serial_tstc(regs))
Alexey Brodkinc51eb112013-12-13 10:35:11 +0400102 ;
103
104 /* Check for overflow errors */
Alexey Brodkin326d8372014-02-08 10:10:02 +0400105 if (readb(&regs->status) & UART_OVERFLOW_ERR)
Alexey Brodkinc51eb112013-12-13 10:35:11 +0400106 return 0;
107
Alexey Brodkin326d8372014-02-08 10:10:02 +0400108 return readb(&regs->data) & 0xFF;
Alexey Brodkinc51eb112013-12-13 10:35:11 +0400109}
110
Alexey Brodkine458cc12015-03-17 14:55:14 +0300111static int arc_serial_probe(struct udevice *dev)
Alexey Brodkinc51eb112013-12-13 10:35:11 +0400112{
Alexey Brodkine458cc12015-03-17 14:55:14 +0300113 return 0;
Alexey Brodkinc51eb112013-12-13 10:35:11 +0400114}
115
Alexey Brodkine458cc12015-03-17 14:55:14 +0300116static const struct dm_serial_ops arc_serial_ops = {
117 .putc = arc_serial_putc,
118 .pending = arc_serial_pending,
119 .getc = arc_serial_getc,
120 .setbrg = arc_serial_setbrg,
121};
122
123static const struct udevice_id arc_serial_ids[] = {
124 { .compatible = "snps,arc-uart" },
125 { }
126};
127
128static int arc_serial_ofdata_to_platdata(struct udevice *dev)
Alexey Brodkinc51eb112013-12-13 10:35:11 +0400129{
Alexey Brodkine458cc12015-03-17 14:55:14 +0300130 struct arc_serial_platdata *plat = dev_get_platdata(dev);
131 DECLARE_GLOBAL_DATA_PTR;
132
Simon Glass09717782015-08-11 08:33:29 -0600133 plat->reg = (struct arc_serial_regs *)dev_get_addr(dev);
Alexey Brodkine458cc12015-03-17 14:55:14 +0300134 plat->uartclk = fdtdec_get_int(gd->fdt_blob, dev->of_offset,
135 "clock-frequency", 0);
136
137 return 0;
Alexey Brodkinc51eb112013-12-13 10:35:11 +0400138}
Alexey Brodkine458cc12015-03-17 14:55:14 +0300139
140U_BOOT_DRIVER(serial_arc) = {
141 .name = "serial_arc",
142 .id = UCLASS_SERIAL,
143 .of_match = arc_serial_ids,
144 .ofdata_to_platdata = arc_serial_ofdata_to_platdata,
145 .probe = arc_serial_probe,
146 .ops = &arc_serial_ops,
147 .flags = DM_FLAG_PRE_RELOC,
148};