blob: 20cda5dbe272cad2c7e8d02571e95a7925e51b56 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09002/*
3 * SuperH SCIF device driver.
Nobuhiro Iwamatsu788b73f2013-07-23 13:58:20 +09004 * Copyright (C) 2013 Renesas Electronics Corporation
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +09005 * Copyright (C) 2007,2008,2010, 2014 Nobuhiro Iwamatsu
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +09006 * Copyright (C) 2002 - 2008 Paul Mundt
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09007 */
8
9#include <common.h>
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090010#include <errno.h>
Marek Vasut8fe2ffc2017-07-21 23:19:18 +020011#include <clk.h>
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090012#include <dm.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Jean-Christophe PLAGNIOL-VILLARDb27a8e32009-01-11 16:35:16 +010014#include <asm/io.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090015#include <asm/processor.h>
Marek Vasut904d3d72012-09-14 22:40:08 +020016#include <serial.h>
17#include <linux/compiler.h>
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090018#include <dm/platform_data/serial_sh.h>
Simon Glassdbd79542020-05-10 11:40:11 -060019#include <linux/delay.h>
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090020#include "serial_sh.h"
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090021
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +090022DECLARE_GLOBAL_DATA_PTR;
23
Marek Vasut39df77a2019-05-07 22:31:23 +020024#if defined(CONFIG_CPU_SH7780)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090025static int scif_rxfill(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090026{
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090027 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) ||
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090033 (port->mapbase == 0xffe08000)) {
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090034 /* 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 Iwamatsu1b36beb2008-03-06 14:05:53 +090041#else
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090042static int scif_rxfill(struct uart_port *port)
43{
44 return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
45}
Nobuhiro Iwamatsu1b36beb2008-03-06 14:05:53 +090046#endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090047
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090048static void sh_serial_init_generic(struct uart_port *port)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090049{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090050 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 Vasut2d2e3ff2019-05-01 18:20:00 +020057#if defined(CONFIG_RZA1)
58 sci_out(port, SCSPTR, 0x0003);
59#endif
Hai Pham19923d82023-02-28 22:29:19 +010060
61 if (port->type == PORT_HSCIF)
62 sci_out(port, HSSRR, HSSRR_SRE | HSSRR_SRCYC8);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090063}
64
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090065static void
66sh_serial_setbrg_generic(struct uart_port *port, int clk, int baudrate)
Tetsuyuki Kobayashi5d2b5a22012-11-19 21:37:38 +000067{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090068 if (port->clk_mode == EXT_CLK) {
69 unsigned short dl = DL_VALUE(baudrate, clk);
70 sci_out(port, DL, dl);
Nobuhiro Iwamatsu17861752014-12-10 14:42:05 +090071 /* Need wait: Clock * 1/dl * 1/16 */
Nobuhiro Iwamatsu6d020352015-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 }
Tetsuyuki Kobayashi5d2b5a22012-11-19 21:37:38 +000076}
77
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090078static void handle_error(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090079{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090080 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;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090091
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090092 sci_out(port, SCxTDR, c);
93 sci_out(port, SCxSR, sci_in(port, SCxSR) & ~SCxSR_TEND(port));
94
95 return 0;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090096}
97
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090098static int serial_rx_fifo_level(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090099{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900100 return scif_rxfill(port);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900101}
102
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900103static int sh_serial_tstc_generic(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900104{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900105 if (sci_in(port, SCxSR) & SCIF_ERRORS) {
106 handle_error(port);
Tetsuyuki Kobayashi5d2b5a22012-11-19 21:37:38 +0000107 return 0;
108 }
109
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900110 return serial_rx_fifo_level(port) ? 1 : 0;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900111}
112
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900113static int serial_getc_check(struct uart_port *port)
Nobuhiro Iwamatsu6564b1a2008-06-06 16:16:08 +0900114{
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900115 unsigned short status;
116
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900117 status = sci_in(port, SCxSR);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900118
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900119 if (status & SCIF_ERRORS)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900120 handle_error(port);
121 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
122 handle_error(port);
Marek Vasutd88686b2020-05-09 22:30:05 +0200123 status &= (SCIF_DR | SCxSR_RDxF(port));
124 if (status)
125 return status;
126 return scif_rxfill(port);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900127}
128
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900129static int sh_serial_getc_generic(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900130{
Nobuhiro Iwamatsu6564b1a2008-06-06 16:16:08 +0900131 unsigned short status;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900132 char ch;
Nobuhiro Iwamatsufcabccc2008-08-22 17:48:51 +0900133
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900134 if (!serial_getc_check(port))
135 return -EAGAIN;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900136
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900137 ch = sci_in(port, SCxRDR);
138 status = sci_in(port, SCxSR);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900139
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900140 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900141
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900142 if (status & SCIF_ERRORS)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900143 handle_error(port);
144
145 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
146 handle_error(port);
147
148 return ch;
149}
150
Marek Vasut0dfa9912018-02-16 01:33:27 +0100151#if CONFIG_IS_ENABLED(DM_SERIAL)
Nobuhiro Iwamatsu6d020352015-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 Glassb75b15b2020-12-03 16:55:23 -0700176 struct sh_serial_plat *plat = dev_get_plat(dev);
Nobuhiro Iwamatsu6d020352015-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 Glassb75b15b2020-12-03 16:55:23 -0700186 struct sh_serial_plat *plat = dev_get_plat(dev);
Nobuhiro Iwamatsu6d020352015-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 Vasut0dfa9912018-02-16 01:33:27 +0100206#if CONFIG_IS_ENABLED(OF_CONTROL)
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900207static const struct udevice_id sh_serial_id[] ={
Yoshinori Satoe5669a32016-04-18 16:51:05 +0900208 {.compatible = "renesas,sci", .data = PORT_SCI},
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900209 {.compatible = "renesas,scif", .data = PORT_SCIF},
210 {.compatible = "renesas,scifa", .data = PORT_SCIFA},
Hai Pham19923d82023-02-28 22:29:19 +0100211 {.compatible = "renesas,hscif", .data = PORT_HSCIF},
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900212 {}
213};
214
Simon Glassaad29ae2020-12-03 16:55:21 -0700215static int sh_serial_of_to_plat(struct udevice *dev)
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900216{
Simon Glassb75b15b2020-12-03 16:55:23 -0700217 struct sh_serial_plat *plat = dev_get_plat(dev);
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200218 struct clk sh_serial_clk;
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900219 fdt_addr_t addr;
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200220 int ret;
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900221
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900222 addr = dev_read_addr(dev);
Marek Vasut48db7762018-01-17 22:36:37 +0100223 if (!addr)
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900224 return -EINVAL;
225
226 plat->base = addr;
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200227
228 ret = clk_get_by_name(dev, "fck", &sh_serial_clk);
Marek Vasutfd6a4a72017-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 Vasut8fe2ffc2017-07-21 23:19:18 +0200234 plat->clk = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
235 "clock", 1);
Marek Vasutfd6a4a72017-09-15 21:11:27 +0200236 }
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200237
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900238 plat->type = dev_get_driver_data(dev);
239 return 0;
240}
241#endif
242
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900243U_BOOT_DRIVER(serial_sh) = {
244 .name = "serial_sh",
245 .id = UCLASS_SERIAL,
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900246 .of_match = of_match_ptr(sh_serial_id),
Simon Glassaad29ae2020-12-03 16:55:21 -0700247 .of_to_plat = of_match_ptr(sh_serial_of_to_plat),
Simon Glassb75b15b2020-12-03 16:55:23 -0700248 .plat_auto = sizeof(struct sh_serial_plat),
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900249 .probe = sh_serial_probe,
250 .ops = &sh_serial_ops,
Bin Mengbdb33d82018-10-24 06:36:36 -0700251#if !CONFIG_IS_ENABLED(OF_CONTROL)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900252 .flags = DM_FLAG_PRE_RELOC,
Bin Mengbdb33d82018-10-24 06:36:36 -0700253#endif
Simon Glass8a2b47f2020-12-03 16:55:17 -0700254 .priv_auto = sizeof(struct uart_port),
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900255};
Marek Vasut98ae2812023-02-28 22:17:22 +0100256#endif
257
258#if !CONFIG_IS_ENABLED(DM_SERIAL) || IS_ENABLED(CONFIG_DEBUG_UART_SCIF)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900259
Marek Vasut98ae2812023-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 Pham19923d82023-02-28 22:29:19 +0100264#elif defined(CFG_HSCIF)
265 #define SCIF_BASE_PORT PORT_HSCIF
Marek Vasut98ae2812023-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
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900290
Marek Vasut98ae2812023-02-28 22:17:22 +0100291#if !CONFIG_IS_ENABLED(DM_SERIAL)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +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
304#elif defined(CONFIG_CONS_SCIF6)
305# define SCIF_BASE SCIF6_BASE
306#elif defined(CONFIG_CONS_SCIF7)
307# define SCIF_BASE SCIF7_BASE
Marek Vasut1d9756b2018-04-12 15:23:46 +0200308#elif defined(CONFIG_CONS_SCIFA0)
309# define SCIF_BASE SCIFA0_BASE
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900310#else
311# error "Default SCIF doesn't set....."
312#endif
313
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900314static struct uart_port sh_sci = {
315 .membase = (unsigned char *)SCIF_BASE,
316 .mapbase = SCIF_BASE,
317 .type = SCIF_BASE_PORT,
Marek Vasutb811f9b2023-02-28 22:17:21 +0100318#ifdef CFG_SCIF_USE_EXT_CLK
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900319 .clk_mode = EXT_CLK,
320#endif
321};
322
323static void sh_serial_setbrg(void)
324{
325 DECLARE_GLOBAL_DATA_PTR;
326 struct uart_port *port = &sh_sci;
327
328 sh_serial_setbrg_generic(port, CONFIG_SH_SCIF_CLK_FREQ, gd->baudrate);
329}
330
331static int sh_serial_init(void)
332{
Marek Vasut98ae2812023-02-28 22:17:22 +0100333 sh_serial_init_nodm(&sh_sci);
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900334
335 return 0;
336}
337
338static void sh_serial_putc(const char c)
339{
Marek Vasut98ae2812023-02-28 22:17:22 +0100340 sh_serial_putc_nondm(&sh_sci, c);
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900341}
342
343static int sh_serial_tstc(void)
344{
345 struct uart_port *port = &sh_sci;
346
347 return sh_serial_tstc_generic(port);
348}
349
350static int sh_serial_getc(void)
351{
352 struct uart_port *port = &sh_sci;
353 int ch;
354
355 while (1) {
356 ch = sh_serial_getc_generic(port);
357 if (ch != -EAGAIN)
358 break;
359 }
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900360
Nobuhiro Iwamatsu6564b1a2008-06-06 16:16:08 +0900361 return ch;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900362}
Marek Vasut904d3d72012-09-14 22:40:08 +0200363
Marek Vasut904d3d72012-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 Vasutd9c64492012-10-06 14:07:02 +0000370 .puts = default_serial_puts,
Marek Vasut904d3d72012-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 Iwamatsu6d020352015-02-12 13:48:04 +0900384#endif /* CONFIG_DM_SERIAL */
Marek Vasut98ae2812023-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