blob: e27d256574f01a08dd7211baab005542a71caa7d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09002/*
3 * SuperH SCIF device driver.
Nobuhiro Iwamatsu48ca8822013-07-23 13:58:20 +09004 * Copyright (C) 2013 Renesas Electronics Corporation
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +09005 * Copyright (C) 2007,2008,2010, 2014 Nobuhiro Iwamatsu
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +09006 * Copyright (C) 2002 - 2008 Paul Mundt
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09007 */
8
9#include <common.h>
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090010#include <errno.h>
Marek Vasut81714992017-07-21 23:19:18 +020011#include <clk.h>
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090012#include <dm.h>
Jean-Christophe PLAGNIOL-VILLARDfc83c922009-01-11 16:35:16 +010013#include <asm/io.h>
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090014#include <asm/processor.h>
Marek Vasut8bdd7ef2012-09-14 22:40:08 +020015#include <serial.h>
16#include <linux/compiler.h>
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090017#include <dm/platform_data/serial_sh.h>
Simon Glassc05ed002020-05-10 11:40:11 -060018#include <linux/delay.h>
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090019#include "serial_sh.h"
20
Yoshinori Sato359787c2016-04-18 16:51:04 +090021DECLARE_GLOBAL_DATA_PTR;
22
Marek Vasut10e91cf2019-05-07 22:31:23 +020023#if defined(CONFIG_CPU_SH7780)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090024static int scif_rxfill(struct uart_port *port)
25{
26 return sci_in(port, SCRFDR) & 0xff;
27}
28#elif defined(CONFIG_CPU_SH7763)
29static int scif_rxfill(struct uart_port *port)
30{
31 if ((port->mapbase == 0xffe00000) ||
32 (port->mapbase == 0xffe08000)) {
33 /* SCIF0/1*/
34 return sci_in(port, SCRFDR) & 0xff;
35 } else {
36 /* SCIF2 */
37 return sci_in(port, SCFDR) & SCIF2_RFDC_MASK;
38 }
39}
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090040#else
41static int scif_rxfill(struct uart_port *port)
42{
43 return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
44}
45#endif
46
47static void sh_serial_init_generic(struct uart_port *port)
48{
49 sci_out(port, SCSCR , SCSCR_INIT(port));
50 sci_out(port, SCSCR , SCSCR_INIT(port));
51 sci_out(port, SCSMR, 0);
52 sci_out(port, SCSMR, 0);
53 sci_out(port, SCFCR, SCFCR_RFRST|SCFCR_TFRST);
54 sci_in(port, SCFCR);
55 sci_out(port, SCFCR, 0);
Marek Vasut67180fe2019-05-01 18:20:00 +020056#if defined(CONFIG_RZA1)
57 sci_out(port, SCSPTR, 0x0003);
58#endif
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090059}
60
61static void
62sh_serial_setbrg_generic(struct uart_port *port, int clk, int baudrate)
63{
64 if (port->clk_mode == EXT_CLK) {
65 unsigned short dl = DL_VALUE(baudrate, clk);
66 sci_out(port, DL, dl);
Nobuhiro Iwamatsu89f99a62014-12-10 14:42:05 +090067 /* Need wait: Clock * 1/dl * 1/16 */
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090068 udelay((1000000 * dl * 16 / clk) * 1000 + 1);
69 } else {
70 sci_out(port, SCBRR, SCBRR_VALUE(baudrate, clk));
71 }
72}
73
74static void handle_error(struct uart_port *port)
75{
76 sci_in(port, SCxSR);
77 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
78 sci_in(port, SCLSR);
79 sci_out(port, SCLSR, 0x00);
80}
81
82static int serial_raw_putc(struct uart_port *port, const char c)
83{
84 /* Tx fifo is empty */
85 if (!(sci_in(port, SCxSR) & SCxSR_TEND(port)))
86 return -EAGAIN;
87
88 sci_out(port, SCxTDR, c);
89 sci_out(port, SCxSR, sci_in(port, SCxSR) & ~SCxSR_TEND(port));
90
91 return 0;
92}
93
94static int serial_rx_fifo_level(struct uart_port *port)
95{
96 return scif_rxfill(port);
97}
98
99static int sh_serial_tstc_generic(struct uart_port *port)
100{
101 if (sci_in(port, SCxSR) & SCIF_ERRORS) {
102 handle_error(port);
103 return 0;
104 }
105
106 return serial_rx_fifo_level(port) ? 1 : 0;
107}
108
109static int serial_getc_check(struct uart_port *port)
110{
111 unsigned short status;
112
113 status = sci_in(port, SCxSR);
114
115 if (status & SCIF_ERRORS)
116 handle_error(port);
117 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
118 handle_error(port);
Marek Vasutf5ba5c92020-05-09 22:30:05 +0200119 status &= (SCIF_DR | SCxSR_RDxF(port));
120 if (status)
121 return status;
122 return scif_rxfill(port);
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900123}
124
125static int sh_serial_getc_generic(struct uart_port *port)
126{
127 unsigned short status;
128 char ch;
129
130 if (!serial_getc_check(port))
131 return -EAGAIN;
132
133 ch = sci_in(port, SCxRDR);
134 status = sci_in(port, SCxSR);
135
136 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
137
138 if (status & SCIF_ERRORS)
139 handle_error(port);
140
141 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
142 handle_error(port);
143
144 return ch;
145}
146
Marek Vasut5c44ddc2018-02-16 01:33:27 +0100147#if CONFIG_IS_ENABLED(DM_SERIAL)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900148
149static int sh_serial_pending(struct udevice *dev, bool input)
150{
151 struct uart_port *priv = dev_get_priv(dev);
152
153 return sh_serial_tstc_generic(priv);
154}
155
156static int sh_serial_putc(struct udevice *dev, const char ch)
157{
158 struct uart_port *priv = dev_get_priv(dev);
159
160 return serial_raw_putc(priv, ch);
161}
162
163static int sh_serial_getc(struct udevice *dev)
164{
165 struct uart_port *priv = dev_get_priv(dev);
166
167 return sh_serial_getc_generic(priv);
168}
169
170static int sh_serial_setbrg(struct udevice *dev, int baudrate)
171{
172 struct sh_serial_platdata *plat = dev_get_platdata(dev);
173 struct uart_port *priv = dev_get_priv(dev);
174
175 sh_serial_setbrg_generic(priv, plat->clk, baudrate);
176
177 return 0;
178}
179
180static int sh_serial_probe(struct udevice *dev)
181{
182 struct sh_serial_platdata *plat = dev_get_platdata(dev);
183 struct uart_port *priv = dev_get_priv(dev);
184
185 priv->membase = (unsigned char *)plat->base;
186 priv->mapbase = plat->base;
187 priv->type = plat->type;
188 priv->clk_mode = plat->clk_mode;
189
190 sh_serial_init_generic(priv);
191
192 return 0;
193}
194
195static const struct dm_serial_ops sh_serial_ops = {
196 .putc = sh_serial_putc,
197 .pending = sh_serial_pending,
198 .getc = sh_serial_getc,
199 .setbrg = sh_serial_setbrg,
200};
201
Marek Vasut5c44ddc2018-02-16 01:33:27 +0100202#if CONFIG_IS_ENABLED(OF_CONTROL)
Yoshinori Sato359787c2016-04-18 16:51:04 +0900203static const struct udevice_id sh_serial_id[] ={
Yoshinori Sato747431b2016-04-18 16:51:05 +0900204 {.compatible = "renesas,sci", .data = PORT_SCI},
Yoshinori Sato359787c2016-04-18 16:51:04 +0900205 {.compatible = "renesas,scif", .data = PORT_SCIF},
206 {.compatible = "renesas,scifa", .data = PORT_SCIFA},
207 {}
208};
209
210static int sh_serial_ofdata_to_platdata(struct udevice *dev)
211{
212 struct sh_serial_platdata *plat = dev_get_platdata(dev);
Marek Vasut81714992017-07-21 23:19:18 +0200213 struct clk sh_serial_clk;
Yoshinori Sato359787c2016-04-18 16:51:04 +0900214 fdt_addr_t addr;
Marek Vasut81714992017-07-21 23:19:18 +0200215 int ret;
Yoshinori Sato359787c2016-04-18 16:51:04 +0900216
Masahiro Yamada25484932020-07-17 14:36:48 +0900217 addr = dev_read_addr(dev);
Marek Vasutc4937562018-01-17 22:36:37 +0100218 if (!addr)
Yoshinori Sato359787c2016-04-18 16:51:04 +0900219 return -EINVAL;
220
221 plat->base = addr;
Marek Vasut81714992017-07-21 23:19:18 +0200222
223 ret = clk_get_by_name(dev, "fck", &sh_serial_clk);
Marek Vasut791c1742017-09-15 21:11:27 +0200224 if (!ret) {
225 ret = clk_enable(&sh_serial_clk);
226 if (!ret)
227 plat->clk = clk_get_rate(&sh_serial_clk);
228 } else {
Marek Vasut81714992017-07-21 23:19:18 +0200229 plat->clk = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
230 "clock", 1);
Marek Vasut791c1742017-09-15 21:11:27 +0200231 }
Marek Vasut81714992017-07-21 23:19:18 +0200232
Yoshinori Sato359787c2016-04-18 16:51:04 +0900233 plat->type = dev_get_driver_data(dev);
234 return 0;
235}
236#endif
237
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900238U_BOOT_DRIVER(serial_sh) = {
239 .name = "serial_sh",
240 .id = UCLASS_SERIAL,
Yoshinori Sato359787c2016-04-18 16:51:04 +0900241 .of_match = of_match_ptr(sh_serial_id),
242 .ofdata_to_platdata = of_match_ptr(sh_serial_ofdata_to_platdata),
243 .platdata_auto_alloc_size = sizeof(struct sh_serial_platdata),
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900244 .probe = sh_serial_probe,
245 .ops = &sh_serial_ops,
Bin Meng46879192018-10-24 06:36:36 -0700246#if !CONFIG_IS_ENABLED(OF_CONTROL)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900247 .flags = DM_FLAG_PRE_RELOC,
Bin Meng46879192018-10-24 06:36:36 -0700248#endif
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900249 .priv_auto_alloc_size = sizeof(struct uart_port),
250};
251
252#else /* CONFIG_DM_SERIAL */
John Rigby29565322010-12-20 18:27:51 -0700253
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900254#if defined(CONFIG_CONS_SCIF0)
255# define SCIF_BASE SCIF0_BASE
256#elif defined(CONFIG_CONS_SCIF1)
257# define SCIF_BASE SCIF1_BASE
258#elif defined(CONFIG_CONS_SCIF2)
259# define SCIF_BASE SCIF2_BASE
260#elif defined(CONFIG_CONS_SCIF3)
261# define SCIF_BASE SCIF3_BASE
262#elif defined(CONFIG_CONS_SCIF4)
263# define SCIF_BASE SCIF4_BASE
264#elif defined(CONFIG_CONS_SCIF5)
265# define SCIF_BASE SCIF5_BASE
Phil Edworthy99744b72012-05-15 22:15:51 +0000266#elif defined(CONFIG_CONS_SCIF6)
267# define SCIF_BASE SCIF6_BASE
268#elif defined(CONFIG_CONS_SCIF7)
269# define SCIF_BASE SCIF7_BASE
Marek Vasut451e22f2018-04-12 15:23:46 +0200270#elif defined(CONFIG_CONS_SCIFA0)
271# define SCIF_BASE SCIFA0_BASE
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900272#else
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900273# error "Default SCIF doesn't set....."
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900274#endif
275
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900276#if defined(CONFIG_SCIF_A)
277 #define SCIF_BASE_PORT PORT_SCIFA
Yoshinori Sato747431b2016-04-18 16:51:05 +0900278#elif defined(CONFIG_SCI)
279 #define SCIF_BASE_PORT PORT_SCI
Yoshihiro Shimoda7c10c572008-01-09 14:30:02 +0900280#else
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900281 #define SCIF_BASE_PORT PORT_SCIF
Yoshihiro Shimoda7c10c572008-01-09 14:30:02 +0900282#endif
283
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900284static struct uart_port sh_sci = {
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900285 .membase = (unsigned char *)SCIF_BASE,
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900286 .mapbase = SCIF_BASE,
287 .type = SCIF_BASE_PORT,
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900288#ifdef CONFIG_SCIF_USE_EXT_CLK
289 .clk_mode = EXT_CLK,
290#endif
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900291};
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900292
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200293static void sh_serial_setbrg(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900294{
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900295 DECLARE_GLOBAL_DATA_PTR;
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900296 struct uart_port *port = &sh_sci;
297
298 sh_serial_setbrg_generic(port, CONFIG_SH_SCIF_CLK_FREQ, gd->baudrate);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900299}
300
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200301static int sh_serial_init(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900302{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900303 struct uart_port *port = &sh_sci;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900304
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900305 sh_serial_init_generic(port);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900306 serial_setbrg();
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900307
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900308 return 0;
309}
310
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200311static void sh_serial_putc(const char c)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900312{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900313 struct uart_port *port = &sh_sci;
314
315 if (c == '\n') {
316 while (1) {
317 if (serial_raw_putc(port, '\r') != -EAGAIN)
318 break;
319 }
320 }
321 while (1) {
322 if (serial_raw_putc(port, c) != -EAGAIN)
323 break;
324 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900325}
326
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200327static int sh_serial_tstc(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900328{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900329 struct uart_port *port = &sh_sci;
Tetsuyuki Kobayashi7c791b32012-11-19 21:37:38 +0000330
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900331 return sh_serial_tstc_generic(port);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900332}
333
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200334static int sh_serial_getc(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900335{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900336 struct uart_port *port = &sh_sci;
337 int ch;
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900338
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900339 while (1) {
340 ch = sh_serial_getc_generic(port);
341 if (ch != -EAGAIN)
342 break;
343 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900344
Nobuhiro Iwamatsu08c5fab2008-06-06 16:16:08 +0900345 return ch;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900346}
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200347
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200348static struct serial_device sh_serial_drv = {
349 .name = "sh_serial",
350 .start = sh_serial_init,
351 .stop = NULL,
352 .setbrg = sh_serial_setbrg,
353 .putc = sh_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000354 .puts = default_serial_puts,
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200355 .getc = sh_serial_getc,
356 .tstc = sh_serial_tstc,
357};
358
359void sh_serial_initialize(void)
360{
361 serial_register(&sh_serial_drv);
362}
363
364__weak struct serial_device *default_serial_console(void)
365{
366 return &sh_serial_drv;
367}
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900368#endif /* CONFIG_DM_SERIAL */