blob: 13b179f03ded3a768e99b85181ae1fd2942e0b15 [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);
119 return status & (SCIF_DR | SCxSR_RDxF(port));
120}
121
122static int sh_serial_getc_generic(struct uart_port *port)
123{
124 unsigned short status;
125 char ch;
126
127 if (!serial_getc_check(port))
128 return -EAGAIN;
129
130 ch = sci_in(port, SCxRDR);
131 status = sci_in(port, SCxSR);
132
133 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
134
135 if (status & SCIF_ERRORS)
136 handle_error(port);
137
138 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
139 handle_error(port);
140
141 return ch;
142}
143
Marek Vasut5c44ddc2018-02-16 01:33:27 +0100144#if CONFIG_IS_ENABLED(DM_SERIAL)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900145
146static int sh_serial_pending(struct udevice *dev, bool input)
147{
148 struct uart_port *priv = dev_get_priv(dev);
149
150 return sh_serial_tstc_generic(priv);
151}
152
153static int sh_serial_putc(struct udevice *dev, const char ch)
154{
155 struct uart_port *priv = dev_get_priv(dev);
156
157 return serial_raw_putc(priv, ch);
158}
159
160static int sh_serial_getc(struct udevice *dev)
161{
162 struct uart_port *priv = dev_get_priv(dev);
163
164 return sh_serial_getc_generic(priv);
165}
166
167static int sh_serial_setbrg(struct udevice *dev, int baudrate)
168{
169 struct sh_serial_platdata *plat = dev_get_platdata(dev);
170 struct uart_port *priv = dev_get_priv(dev);
171
172 sh_serial_setbrg_generic(priv, plat->clk, baudrate);
173
174 return 0;
175}
176
177static int sh_serial_probe(struct udevice *dev)
178{
179 struct sh_serial_platdata *plat = dev_get_platdata(dev);
180 struct uart_port *priv = dev_get_priv(dev);
181
182 priv->membase = (unsigned char *)plat->base;
183 priv->mapbase = plat->base;
184 priv->type = plat->type;
185 priv->clk_mode = plat->clk_mode;
186
187 sh_serial_init_generic(priv);
188
189 return 0;
190}
191
192static const struct dm_serial_ops sh_serial_ops = {
193 .putc = sh_serial_putc,
194 .pending = sh_serial_pending,
195 .getc = sh_serial_getc,
196 .setbrg = sh_serial_setbrg,
197};
198
Marek Vasut5c44ddc2018-02-16 01:33:27 +0100199#if CONFIG_IS_ENABLED(OF_CONTROL)
Yoshinori Sato359787c2016-04-18 16:51:04 +0900200static const struct udevice_id sh_serial_id[] ={
Yoshinori Sato747431b2016-04-18 16:51:05 +0900201 {.compatible = "renesas,sci", .data = PORT_SCI},
Yoshinori Sato359787c2016-04-18 16:51:04 +0900202 {.compatible = "renesas,scif", .data = PORT_SCIF},
203 {.compatible = "renesas,scifa", .data = PORT_SCIFA},
204 {}
205};
206
207static int sh_serial_ofdata_to_platdata(struct udevice *dev)
208{
209 struct sh_serial_platdata *plat = dev_get_platdata(dev);
Marek Vasut81714992017-07-21 23:19:18 +0200210 struct clk sh_serial_clk;
Yoshinori Sato359787c2016-04-18 16:51:04 +0900211 fdt_addr_t addr;
Marek Vasut81714992017-07-21 23:19:18 +0200212 int ret;
Yoshinori Sato359787c2016-04-18 16:51:04 +0900213
Masahiro Yamada25484932020-07-17 14:36:48 +0900214 addr = dev_read_addr(dev);
Marek Vasutc4937562018-01-17 22:36:37 +0100215 if (!addr)
Yoshinori Sato359787c2016-04-18 16:51:04 +0900216 return -EINVAL;
217
218 plat->base = addr;
Marek Vasut81714992017-07-21 23:19:18 +0200219
220 ret = clk_get_by_name(dev, "fck", &sh_serial_clk);
Marek Vasut791c1742017-09-15 21:11:27 +0200221 if (!ret) {
222 ret = clk_enable(&sh_serial_clk);
223 if (!ret)
224 plat->clk = clk_get_rate(&sh_serial_clk);
225 } else {
Marek Vasut81714992017-07-21 23:19:18 +0200226 plat->clk = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
227 "clock", 1);
Marek Vasut791c1742017-09-15 21:11:27 +0200228 }
Marek Vasut81714992017-07-21 23:19:18 +0200229
Yoshinori Sato359787c2016-04-18 16:51:04 +0900230 plat->type = dev_get_driver_data(dev);
231 return 0;
232}
233#endif
234
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900235U_BOOT_DRIVER(serial_sh) = {
236 .name = "serial_sh",
237 .id = UCLASS_SERIAL,
Yoshinori Sato359787c2016-04-18 16:51:04 +0900238 .of_match = of_match_ptr(sh_serial_id),
239 .ofdata_to_platdata = of_match_ptr(sh_serial_ofdata_to_platdata),
240 .platdata_auto_alloc_size = sizeof(struct sh_serial_platdata),
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900241 .probe = sh_serial_probe,
242 .ops = &sh_serial_ops,
Bin Meng46879192018-10-24 06:36:36 -0700243#if !CONFIG_IS_ENABLED(OF_CONTROL)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900244 .flags = DM_FLAG_PRE_RELOC,
Bin Meng46879192018-10-24 06:36:36 -0700245#endif
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900246 .priv_auto_alloc_size = sizeof(struct uart_port),
247};
248
249#else /* CONFIG_DM_SERIAL */
John Rigby29565322010-12-20 18:27:51 -0700250
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900251#if defined(CONFIG_CONS_SCIF0)
252# define SCIF_BASE SCIF0_BASE
253#elif defined(CONFIG_CONS_SCIF1)
254# define SCIF_BASE SCIF1_BASE
255#elif defined(CONFIG_CONS_SCIF2)
256# define SCIF_BASE SCIF2_BASE
257#elif defined(CONFIG_CONS_SCIF3)
258# define SCIF_BASE SCIF3_BASE
259#elif defined(CONFIG_CONS_SCIF4)
260# define SCIF_BASE SCIF4_BASE
261#elif defined(CONFIG_CONS_SCIF5)
262# define SCIF_BASE SCIF5_BASE
Phil Edworthy99744b72012-05-15 22:15:51 +0000263#elif defined(CONFIG_CONS_SCIF6)
264# define SCIF_BASE SCIF6_BASE
265#elif defined(CONFIG_CONS_SCIF7)
266# define SCIF_BASE SCIF7_BASE
Marek Vasut451e22f2018-04-12 15:23:46 +0200267#elif defined(CONFIG_CONS_SCIFA0)
268# define SCIF_BASE SCIFA0_BASE
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900269#else
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900270# error "Default SCIF doesn't set....."
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900271#endif
272
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900273#if defined(CONFIG_SCIF_A)
274 #define SCIF_BASE_PORT PORT_SCIFA
Yoshinori Sato747431b2016-04-18 16:51:05 +0900275#elif defined(CONFIG_SCI)
276 #define SCIF_BASE_PORT PORT_SCI
Yoshihiro Shimoda7c10c572008-01-09 14:30:02 +0900277#else
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900278 #define SCIF_BASE_PORT PORT_SCIF
Yoshihiro Shimoda7c10c572008-01-09 14:30:02 +0900279#endif
280
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900281static struct uart_port sh_sci = {
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900282 .membase = (unsigned char *)SCIF_BASE,
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900283 .mapbase = SCIF_BASE,
284 .type = SCIF_BASE_PORT,
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900285#ifdef CONFIG_SCIF_USE_EXT_CLK
286 .clk_mode = EXT_CLK,
287#endif
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900288};
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900289
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200290static void sh_serial_setbrg(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900291{
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900292 DECLARE_GLOBAL_DATA_PTR;
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900293 struct uart_port *port = &sh_sci;
294
295 sh_serial_setbrg_generic(port, CONFIG_SH_SCIF_CLK_FREQ, gd->baudrate);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900296}
297
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200298static int sh_serial_init(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900299{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900300 struct uart_port *port = &sh_sci;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900301
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900302 sh_serial_init_generic(port);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900303 serial_setbrg();
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900304
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900305 return 0;
306}
307
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200308static void sh_serial_putc(const char c)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900309{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900310 struct uart_port *port = &sh_sci;
311
312 if (c == '\n') {
313 while (1) {
314 if (serial_raw_putc(port, '\r') != -EAGAIN)
315 break;
316 }
317 }
318 while (1) {
319 if (serial_raw_putc(port, c) != -EAGAIN)
320 break;
321 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900322}
323
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200324static int sh_serial_tstc(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900325{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900326 struct uart_port *port = &sh_sci;
Tetsuyuki Kobayashi7c791b32012-11-19 21:37:38 +0000327
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900328 return sh_serial_tstc_generic(port);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900329}
330
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200331static int sh_serial_getc(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900332{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900333 struct uart_port *port = &sh_sci;
334 int ch;
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900335
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900336 while (1) {
337 ch = sh_serial_getc_generic(port);
338 if (ch != -EAGAIN)
339 break;
340 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900341
Nobuhiro Iwamatsu08c5fab2008-06-06 16:16:08 +0900342 return ch;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900343}
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200344
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200345static struct serial_device sh_serial_drv = {
346 .name = "sh_serial",
347 .start = sh_serial_init,
348 .stop = NULL,
349 .setbrg = sh_serial_setbrg,
350 .putc = sh_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000351 .puts = default_serial_puts,
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200352 .getc = sh_serial_getc,
353 .tstc = sh_serial_tstc,
354};
355
356void sh_serial_initialize(void)
357{
358 serial_register(&sh_serial_drv);
359}
360
361__weak struct serial_device *default_serial_console(void)
362{
363 return &sh_serial_drv;
364}
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900365#endif /* CONFIG_DM_SERIAL */