blob: 20cda5dbe272cad2c7e8d02571e95a7925e51b56 [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>
Simon Glass401d1c42020-10-30 21:38:53 -060013#include <asm/global_data.h>
Jean-Christophe PLAGNIOL-VILLARDfc83c922009-01-11 16:35:16 +010014#include <asm/io.h>
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090015#include <asm/processor.h>
Marek Vasut8bdd7ef2012-09-14 22:40:08 +020016#include <serial.h>
17#include <linux/compiler.h>
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090018#include <dm/platform_data/serial_sh.h>
Simon Glassc05ed002020-05-10 11:40:11 -060019#include <linux/delay.h>
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090020#include "serial_sh.h"
21
Yoshinori Sato359787c2016-04-18 16:51:04 +090022DECLARE_GLOBAL_DATA_PTR;
23
Marek Vasut10e91cf2019-05-07 22:31:23 +020024#if defined(CONFIG_CPU_SH7780)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090025static int scif_rxfill(struct uart_port *port)
26{
27 return sci_in(port, SCRFDR) & 0xff;
28}
29#elif defined(CONFIG_CPU_SH7763)
30static int scif_rxfill(struct uart_port *port)
31{
32 if ((port->mapbase == 0xffe00000) ||
33 (port->mapbase == 0xffe08000)) {
34 /* SCIF0/1*/
35 return sci_in(port, SCRFDR) & 0xff;
36 } else {
37 /* SCIF2 */
38 return sci_in(port, SCFDR) & SCIF2_RFDC_MASK;
39 }
40}
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090041#else
42static int scif_rxfill(struct uart_port *port)
43{
44 return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
45}
46#endif
47
48static void sh_serial_init_generic(struct uart_port *port)
49{
50 sci_out(port, SCSCR , SCSCR_INIT(port));
51 sci_out(port, SCSCR , SCSCR_INIT(port));
52 sci_out(port, SCSMR, 0);
53 sci_out(port, SCSMR, 0);
54 sci_out(port, SCFCR, SCFCR_RFRST|SCFCR_TFRST);
55 sci_in(port, SCFCR);
56 sci_out(port, SCFCR, 0);
Marek Vasut67180fe2019-05-01 18:20:00 +020057#if defined(CONFIG_RZA1)
58 sci_out(port, SCSPTR, 0x0003);
59#endif
Hai Phambbe36e22023-02-28 22:29:19 +010060
61 if (port->type == PORT_HSCIF)
62 sci_out(port, HSSRR, HSSRR_SRE | HSSRR_SRCYC8);
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090063}
64
65static void
66sh_serial_setbrg_generic(struct uart_port *port, int clk, int baudrate)
67{
68 if (port->clk_mode == EXT_CLK) {
69 unsigned short dl = DL_VALUE(baudrate, clk);
70 sci_out(port, DL, dl);
Nobuhiro Iwamatsu89f99a62014-12-10 14:42:05 +090071 /* Need wait: Clock * 1/dl * 1/16 */
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +090072 udelay((1000000 * dl * 16 / clk) * 1000 + 1);
73 } else {
74 sci_out(port, SCBRR, SCBRR_VALUE(baudrate, clk));
75 }
76}
77
78static void handle_error(struct uart_port *port)
79{
80 sci_in(port, SCxSR);
81 sci_out(port, SCxSR, SCxSR_ERROR_CLEAR(port));
82 sci_in(port, SCLSR);
83 sci_out(port, SCLSR, 0x00);
84}
85
86static int serial_raw_putc(struct uart_port *port, const char c)
87{
88 /* Tx fifo is empty */
89 if (!(sci_in(port, SCxSR) & SCxSR_TEND(port)))
90 return -EAGAIN;
91
92 sci_out(port, SCxTDR, c);
93 sci_out(port, SCxSR, sci_in(port, SCxSR) & ~SCxSR_TEND(port));
94
95 return 0;
96}
97
98static int serial_rx_fifo_level(struct uart_port *port)
99{
100 return scif_rxfill(port);
101}
102
103static int sh_serial_tstc_generic(struct uart_port *port)
104{
105 if (sci_in(port, SCxSR) & SCIF_ERRORS) {
106 handle_error(port);
107 return 0;
108 }
109
110 return serial_rx_fifo_level(port) ? 1 : 0;
111}
112
113static int serial_getc_check(struct uart_port *port)
114{
115 unsigned short status;
116
117 status = sci_in(port, SCxSR);
118
119 if (status & SCIF_ERRORS)
120 handle_error(port);
121 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
122 handle_error(port);
Marek Vasutf5ba5c92020-05-09 22:30:05 +0200123 status &= (SCIF_DR | SCxSR_RDxF(port));
124 if (status)
125 return status;
126 return scif_rxfill(port);
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900127}
128
129static int sh_serial_getc_generic(struct uart_port *port)
130{
131 unsigned short status;
132 char ch;
133
134 if (!serial_getc_check(port))
135 return -EAGAIN;
136
137 ch = sci_in(port, SCxRDR);
138 status = sci_in(port, SCxSR);
139
140 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
141
142 if (status & SCIF_ERRORS)
143 handle_error(port);
144
145 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
146 handle_error(port);
147
148 return ch;
149}
150
Marek Vasut5c44ddc2018-02-16 01:33:27 +0100151#if CONFIG_IS_ENABLED(DM_SERIAL)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900152
153static int sh_serial_pending(struct udevice *dev, bool input)
154{
155 struct uart_port *priv = dev_get_priv(dev);
156
157 return sh_serial_tstc_generic(priv);
158}
159
160static int sh_serial_putc(struct udevice *dev, const char ch)
161{
162 struct uart_port *priv = dev_get_priv(dev);
163
164 return serial_raw_putc(priv, ch);
165}
166
167static int sh_serial_getc(struct udevice *dev)
168{
169 struct uart_port *priv = dev_get_priv(dev);
170
171 return sh_serial_getc_generic(priv);
172}
173
174static int sh_serial_setbrg(struct udevice *dev, int baudrate)
175{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700176 struct sh_serial_plat *plat = dev_get_plat(dev);
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900177 struct uart_port *priv = dev_get_priv(dev);
178
179 sh_serial_setbrg_generic(priv, plat->clk, baudrate);
180
181 return 0;
182}
183
184static int sh_serial_probe(struct udevice *dev)
185{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700186 struct sh_serial_plat *plat = dev_get_plat(dev);
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900187 struct uart_port *priv = dev_get_priv(dev);
188
189 priv->membase = (unsigned char *)plat->base;
190 priv->mapbase = plat->base;
191 priv->type = plat->type;
192 priv->clk_mode = plat->clk_mode;
193
194 sh_serial_init_generic(priv);
195
196 return 0;
197}
198
199static const struct dm_serial_ops sh_serial_ops = {
200 .putc = sh_serial_putc,
201 .pending = sh_serial_pending,
202 .getc = sh_serial_getc,
203 .setbrg = sh_serial_setbrg,
204};
205
Marek Vasut5c44ddc2018-02-16 01:33:27 +0100206#if CONFIG_IS_ENABLED(OF_CONTROL)
Yoshinori Sato359787c2016-04-18 16:51:04 +0900207static const struct udevice_id sh_serial_id[] ={
Yoshinori Sato747431b2016-04-18 16:51:05 +0900208 {.compatible = "renesas,sci", .data = PORT_SCI},
Yoshinori Sato359787c2016-04-18 16:51:04 +0900209 {.compatible = "renesas,scif", .data = PORT_SCIF},
210 {.compatible = "renesas,scifa", .data = PORT_SCIFA},
Hai Phambbe36e22023-02-28 22:29:19 +0100211 {.compatible = "renesas,hscif", .data = PORT_HSCIF},
Yoshinori Sato359787c2016-04-18 16:51:04 +0900212 {}
213};
214
Simon Glassd1998a92020-12-03 16:55:21 -0700215static int sh_serial_of_to_plat(struct udevice *dev)
Yoshinori Sato359787c2016-04-18 16:51:04 +0900216{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700217 struct sh_serial_plat *plat = dev_get_plat(dev);
Marek Vasut81714992017-07-21 23:19:18 +0200218 struct clk sh_serial_clk;
Yoshinori Sato359787c2016-04-18 16:51:04 +0900219 fdt_addr_t addr;
Marek Vasut81714992017-07-21 23:19:18 +0200220 int ret;
Yoshinori Sato359787c2016-04-18 16:51:04 +0900221
Masahiro Yamada25484932020-07-17 14:36:48 +0900222 addr = dev_read_addr(dev);
Marek Vasutc4937562018-01-17 22:36:37 +0100223 if (!addr)
Yoshinori Sato359787c2016-04-18 16:51:04 +0900224 return -EINVAL;
225
226 plat->base = addr;
Marek Vasut81714992017-07-21 23:19:18 +0200227
228 ret = clk_get_by_name(dev, "fck", &sh_serial_clk);
Marek Vasut791c1742017-09-15 21:11:27 +0200229 if (!ret) {
230 ret = clk_enable(&sh_serial_clk);
231 if (!ret)
232 plat->clk = clk_get_rate(&sh_serial_clk);
233 } else {
Marek Vasut81714992017-07-21 23:19:18 +0200234 plat->clk = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
235 "clock", 1);
Marek Vasut791c1742017-09-15 21:11:27 +0200236 }
Marek Vasut81714992017-07-21 23:19:18 +0200237
Yoshinori Sato359787c2016-04-18 16:51:04 +0900238 plat->type = dev_get_driver_data(dev);
239 return 0;
240}
241#endif
242
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900243U_BOOT_DRIVER(serial_sh) = {
244 .name = "serial_sh",
245 .id = UCLASS_SERIAL,
Yoshinori Sato359787c2016-04-18 16:51:04 +0900246 .of_match = of_match_ptr(sh_serial_id),
Simon Glassd1998a92020-12-03 16:55:21 -0700247 .of_to_plat = of_match_ptr(sh_serial_of_to_plat),
Simon Glass8a8d24b2020-12-03 16:55:23 -0700248 .plat_auto = sizeof(struct sh_serial_plat),
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900249 .probe = sh_serial_probe,
250 .ops = &sh_serial_ops,
Bin Meng46879192018-10-24 06:36:36 -0700251#if !CONFIG_IS_ENABLED(OF_CONTROL)
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900252 .flags = DM_FLAG_PRE_RELOC,
Bin Meng46879192018-10-24 06:36:36 -0700253#endif
Simon Glass41575d82020-12-03 16:55:17 -0700254 .priv_auto = sizeof(struct uart_port),
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900255};
Marek Vasut836d1bf2023-02-28 22:17:22 +0100256#endif
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900257
Marek Vasut836d1bf2023-02-28 22:17:22 +0100258#if !CONFIG_IS_ENABLED(DM_SERIAL) || IS_ENABLED(CONFIG_DEBUG_UART_SCIF)
John Rigby29565322010-12-20 18:27:51 -0700259
Marek Vasut836d1bf2023-02-28 22:17:22 +0100260#if defined(CFG_SCIF_A)
261 #define SCIF_BASE_PORT PORT_SCIFA
262#elif defined(CFG_SCI)
263 #define SCIF_BASE_PORT PORT_SCI
Hai Phambbe36e22023-02-28 22:29:19 +0100264#elif defined(CFG_HSCIF)
265 #define SCIF_BASE_PORT PORT_HSCIF
Marek Vasut836d1bf2023-02-28 22:17:22 +0100266#else
267 #define SCIF_BASE_PORT PORT_SCIF
268#endif
269
270static void sh_serial_init_nodm(struct uart_port *port)
271{
272 sh_serial_init_generic(port);
273 serial_setbrg();
274}
275
276static void sh_serial_putc_nondm(struct uart_port *port, const char c)
277{
278 if (c == '\n') {
279 while (1) {
280 if (serial_raw_putc(port, '\r') != -EAGAIN)
281 break;
282 }
283 }
284 while (1) {
285 if (serial_raw_putc(port, c) != -EAGAIN)
286 break;
287 }
288}
289#endif
290
291#if !CONFIG_IS_ENABLED(DM_SERIAL)
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900292#if defined(CONFIG_CONS_SCIF0)
293# define SCIF_BASE SCIF0_BASE
294#elif defined(CONFIG_CONS_SCIF1)
295# define SCIF_BASE SCIF1_BASE
296#elif defined(CONFIG_CONS_SCIF2)
297# define SCIF_BASE SCIF2_BASE
298#elif defined(CONFIG_CONS_SCIF3)
299# define SCIF_BASE SCIF3_BASE
300#elif defined(CONFIG_CONS_SCIF4)
301# define SCIF_BASE SCIF4_BASE
302#elif defined(CONFIG_CONS_SCIF5)
303# define SCIF_BASE SCIF5_BASE
Phil Edworthy99744b72012-05-15 22:15:51 +0000304#elif defined(CONFIG_CONS_SCIF6)
305# define SCIF_BASE SCIF6_BASE
306#elif defined(CONFIG_CONS_SCIF7)
307# define SCIF_BASE SCIF7_BASE
Marek Vasut451e22f2018-04-12 15:23:46 +0200308#elif defined(CONFIG_CONS_SCIFA0)
309# define SCIF_BASE SCIFA0_BASE
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900310#else
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900311# error "Default SCIF doesn't set....."
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900312#endif
313
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900314static struct uart_port sh_sci = {
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900315 .membase = (unsigned char *)SCIF_BASE,
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900316 .mapbase = SCIF_BASE,
317 .type = SCIF_BASE_PORT,
Marek Vasut5e12d7d2023-02-28 22:17:21 +0100318#ifdef CFG_SCIF_USE_EXT_CLK
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900319 .clk_mode = EXT_CLK,
320#endif
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900321};
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900322
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200323static void sh_serial_setbrg(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900324{
Nobuhiro Iwamatsu3f6c8e32010-10-26 03:55:15 +0900325 DECLARE_GLOBAL_DATA_PTR;
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900326 struct uart_port *port = &sh_sci;
327
328 sh_serial_setbrg_generic(port, CONFIG_SH_SCIF_CLK_FREQ, gd->baudrate);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900329}
330
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200331static int sh_serial_init(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900332{
Marek Vasut836d1bf2023-02-28 22:17:22 +0100333 sh_serial_init_nodm(&sh_sci);
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900334
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900335 return 0;
336}
337
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200338static void sh_serial_putc(const char c)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900339{
Marek Vasut836d1bf2023-02-28 22:17:22 +0100340 sh_serial_putc_nondm(&sh_sci, c);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900341}
342
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200343static int sh_serial_tstc(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900344{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900345 struct uart_port *port = &sh_sci;
Tetsuyuki Kobayashi7c791b32012-11-19 21:37:38 +0000346
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900347 return sh_serial_tstc_generic(port);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900348}
349
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200350static int sh_serial_getc(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900351{
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900352 struct uart_port *port = &sh_sci;
353 int ch;
Nobuhiro Iwamatsuab09f432008-08-22 17:48:51 +0900354
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900355 while (1) {
356 ch = sh_serial_getc_generic(port);
357 if (ch != -EAGAIN)
358 break;
359 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900360
Nobuhiro Iwamatsu08c5fab2008-06-06 16:16:08 +0900361 return ch;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900362}
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200363
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200364static struct serial_device sh_serial_drv = {
365 .name = "sh_serial",
366 .start = sh_serial_init,
367 .stop = NULL,
368 .setbrg = sh_serial_setbrg,
369 .putc = sh_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000370 .puts = default_serial_puts,
Marek Vasut8bdd7ef2012-09-14 22:40:08 +0200371 .getc = sh_serial_getc,
372 .tstc = sh_serial_tstc,
373};
374
375void sh_serial_initialize(void)
376{
377 serial_register(&sh_serial_drv);
378}
379
380__weak struct serial_device *default_serial_console(void)
381{
382 return &sh_serial_drv;
383}
Nobuhiro Iwamatsu59088e42015-02-12 13:48:04 +0900384#endif /* CONFIG_DM_SERIAL */
Marek Vasut836d1bf2023-02-28 22:17:22 +0100385
386#ifdef CONFIG_DEBUG_UART_SCIF
387#include <debug_uart.h>
388
389static struct uart_port debug_uart_sci = {
390 .membase = (unsigned char *)CONFIG_DEBUG_UART_BASE,
391 .mapbase = CONFIG_DEBUG_UART_BASE,
392 .type = SCIF_BASE_PORT,
393#ifdef CFG_SCIF_USE_EXT_CLK
394 .clk_mode = EXT_CLK,
395#endif
396};
397
398static inline void _debug_uart_init(void)
399{
400 sh_serial_init_nodm(&debug_uart_sci);
401}
402
403static inline void _debug_uart_putc(int c)
404{
405 sh_serial_putc_nondm(&debug_uart_sci, c);
406}
407
408DEBUG_UART_FUNCS
409
410#endif