blob: a961ead1d4db41807a606d0faf4e87d7251c0b24 [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>
Jean-Christophe PLAGNIOL-VILLARDb27a8e32009-01-11 16:35:16 +010013#include <asm/io.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090014#include <asm/processor.h>
Marek Vasut904d3d72012-09-14 22:40:08 +020015#include <serial.h>
16#include <linux/compiler.h>
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090017#include <dm/platform_data/serial_sh.h>
Simon Glassdbd79542020-05-10 11:40:11 -060018#include <linux/delay.h>
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090019#include "serial_sh.h"
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090020
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +090021DECLARE_GLOBAL_DATA_PTR;
22
Marek Vasut39df77a2019-05-07 22:31:23 +020023#if defined(CONFIG_CPU_SH7780)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090024static int scif_rxfill(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090025{
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090026 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) ||
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090032 (port->mapbase == 0xffe08000)) {
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090033 /* 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 Iwamatsu1b36beb2008-03-06 14:05:53 +090040#else
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090041static int scif_rxfill(struct uart_port *port)
42{
43 return sci_in(port, SCFDR) & SCIF_RFDC_MASK;
44}
Nobuhiro Iwamatsu1b36beb2008-03-06 14:05:53 +090045#endif
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090046
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090047static void sh_serial_init_generic(struct uart_port *port)
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +090048{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090049 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 Vasut2d2e3ff2019-05-01 18:20:00 +020056#if defined(CONFIG_RZA1)
57 sci_out(port, SCSPTR, 0x0003);
58#endif
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090059}
60
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090061static void
62sh_serial_setbrg_generic(struct uart_port *port, int clk, int baudrate)
Tetsuyuki Kobayashi5d2b5a22012-11-19 21:37:38 +000063{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090064 if (port->clk_mode == EXT_CLK) {
65 unsigned short dl = DL_VALUE(baudrate, clk);
66 sci_out(port, DL, dl);
Nobuhiro Iwamatsu17861752014-12-10 14:42:05 +090067 /* Need wait: Clock * 1/dl * 1/16 */
Nobuhiro Iwamatsu6d020352015-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 }
Tetsuyuki Kobayashi5d2b5a22012-11-19 21:37:38 +000072}
73
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090074static void handle_error(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090075{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090076 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;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090087
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090088 sci_out(port, SCxTDR, c);
89 sci_out(port, SCxSR, sci_in(port, SCxSR) & ~SCxSR_TEND(port));
90
91 return 0;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090092}
93
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090094static int serial_rx_fifo_level(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090095{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090096 return scif_rxfill(port);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090097}
98
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +090099static int sh_serial_tstc_generic(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900100{
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900101 if (sci_in(port, SCxSR) & SCIF_ERRORS) {
102 handle_error(port);
Tetsuyuki Kobayashi5d2b5a22012-11-19 21:37:38 +0000103 return 0;
104 }
105
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900106 return serial_rx_fifo_level(port) ? 1 : 0;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900107}
108
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900109static int serial_getc_check(struct uart_port *port)
Nobuhiro Iwamatsu6564b1a2008-06-06 16:16:08 +0900110{
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900111 unsigned short status;
112
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900113 status = sci_in(port, SCxSR);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900114
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900115 if (status & SCIF_ERRORS)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900116 handle_error(port);
117 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
118 handle_error(port);
Marek Vasutd88686b2020-05-09 22:30:05 +0200119 status &= (SCIF_DR | SCxSR_RDxF(port));
120 if (status)
121 return status;
122 return scif_rxfill(port);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900123}
124
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900125static int sh_serial_getc_generic(struct uart_port *port)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900126{
Nobuhiro Iwamatsu6564b1a2008-06-06 16:16:08 +0900127 unsigned short status;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900128 char ch;
Nobuhiro Iwamatsufcabccc2008-08-22 17:48:51 +0900129
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900130 if (!serial_getc_check(port))
131 return -EAGAIN;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900132
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900133 ch = sci_in(port, SCxRDR);
134 status = sci_in(port, SCxSR);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900135
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900136 sci_out(port, SCxSR, SCxSR_RDxF_CLEAR(port));
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900137
Nobuhiro Iwamatsua5579ca2010-10-26 03:55:15 +0900138 if (status & SCIF_ERRORS)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900139 handle_error(port);
140
141 if (sci_in(port, SCLSR) & SCxSR_ORER(port))
142 handle_error(port);
143
144 return ch;
145}
146
Marek Vasut0dfa9912018-02-16 01:33:27 +0100147#if CONFIG_IS_ENABLED(DM_SERIAL)
Nobuhiro Iwamatsu6d020352015-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{
Simon Glassfa20e932020-12-03 16:55:20 -0700172 struct sh_serial_platdata *plat = dev_get_plat(dev);
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900173 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{
Simon Glassfa20e932020-12-03 16:55:20 -0700182 struct sh_serial_platdata *plat = dev_get_plat(dev);
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900183 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 Vasut0dfa9912018-02-16 01:33:27 +0100202#if CONFIG_IS_ENABLED(OF_CONTROL)
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900203static const struct udevice_id sh_serial_id[] ={
Yoshinori Satoe5669a32016-04-18 16:51:05 +0900204 {.compatible = "renesas,sci", .data = PORT_SCI},
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900205 {.compatible = "renesas,scif", .data = PORT_SCIF},
206 {.compatible = "renesas,scifa", .data = PORT_SCIFA},
207 {}
208};
209
Simon Glassaad29ae2020-12-03 16:55:21 -0700210static int sh_serial_of_to_plat(struct udevice *dev)
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900211{
Simon Glassfa20e932020-12-03 16:55:20 -0700212 struct sh_serial_platdata *plat = dev_get_plat(dev);
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200213 struct clk sh_serial_clk;
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900214 fdt_addr_t addr;
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200215 int ret;
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900216
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900217 addr = dev_read_addr(dev);
Marek Vasut48db7762018-01-17 22:36:37 +0100218 if (!addr)
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900219 return -EINVAL;
220
221 plat->base = addr;
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200222
223 ret = clk_get_by_name(dev, "fck", &sh_serial_clk);
Marek Vasutfd6a4a72017-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 Vasut8fe2ffc2017-07-21 23:19:18 +0200229 plat->clk = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
230 "clock", 1);
Marek Vasutfd6a4a72017-09-15 21:11:27 +0200231 }
Marek Vasut8fe2ffc2017-07-21 23:19:18 +0200232
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900233 plat->type = dev_get_driver_data(dev);
234 return 0;
235}
236#endif
237
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900238U_BOOT_DRIVER(serial_sh) = {
239 .name = "serial_sh",
240 .id = UCLASS_SERIAL,
Yoshinori Satoa6eed2b2016-04-18 16:51:04 +0900241 .of_match = of_match_ptr(sh_serial_id),
Simon Glassaad29ae2020-12-03 16:55:21 -0700242 .of_to_plat = of_match_ptr(sh_serial_of_to_plat),
Simon Glass71fa5b42020-12-03 16:55:18 -0700243 .plat_auto = sizeof(struct sh_serial_platdata),
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900244 .probe = sh_serial_probe,
245 .ops = &sh_serial_ops,
Bin Mengbdb33d82018-10-24 06:36:36 -0700246#if !CONFIG_IS_ENABLED(OF_CONTROL)
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900247 .flags = DM_FLAG_PRE_RELOC,
Bin Mengbdb33d82018-10-24 06:36:36 -0700248#endif
Simon Glass8a2b47f2020-12-03 16:55:17 -0700249 .priv_auto = sizeof(struct uart_port),
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900250};
251
252#else /* CONFIG_DM_SERIAL */
253
254#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
266#elif defined(CONFIG_CONS_SCIF6)
267# define SCIF_BASE SCIF6_BASE
268#elif defined(CONFIG_CONS_SCIF7)
269# define SCIF_BASE SCIF7_BASE
Marek Vasut1d9756b2018-04-12 15:23:46 +0200270#elif defined(CONFIG_CONS_SCIFA0)
271# define SCIF_BASE SCIFA0_BASE
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900272#else
273# error "Default SCIF doesn't set....."
274#endif
275
276#if defined(CONFIG_SCIF_A)
277 #define SCIF_BASE_PORT PORT_SCIFA
Yoshinori Satoe5669a32016-04-18 16:51:05 +0900278#elif defined(CONFIG_SCI)
279 #define SCIF_BASE_PORT PORT_SCI
Nobuhiro Iwamatsu6d020352015-02-12 13:48:04 +0900280#else
281 #define SCIF_BASE_PORT PORT_SCIF
282#endif
283
284static struct uart_port sh_sci = {
285 .membase = (unsigned char *)SCIF_BASE,
286 .mapbase = SCIF_BASE,
287 .type = SCIF_BASE_PORT,
288#ifdef CONFIG_SCIF_USE_EXT_CLK
289 .clk_mode = EXT_CLK,
290#endif
291};
292
293static void sh_serial_setbrg(void)
294{
295 DECLARE_GLOBAL_DATA_PTR;
296 struct uart_port *port = &sh_sci;
297
298 sh_serial_setbrg_generic(port, CONFIG_SH_SCIF_CLK_FREQ, gd->baudrate);
299}
300
301static int sh_serial_init(void)
302{
303 struct uart_port *port = &sh_sci;
304
305 sh_serial_init_generic(port);
306 serial_setbrg();
307
308 return 0;
309}
310
311static void sh_serial_putc(const char c)
312{
313 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 }
325}
326
327static int sh_serial_tstc(void)
328{
329 struct uart_port *port = &sh_sci;
330
331 return sh_serial_tstc_generic(port);
332}
333
334static int sh_serial_getc(void)
335{
336 struct uart_port *port = &sh_sci;
337 int ch;
338
339 while (1) {
340 ch = sh_serial_getc_generic(port);
341 if (ch != -EAGAIN)
342 break;
343 }
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900344
Nobuhiro Iwamatsu6564b1a2008-06-06 16:16:08 +0900345 return ch;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900346}
Marek Vasut904d3d72012-09-14 22:40:08 +0200347
Marek Vasut904d3d72012-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 Vasutd9c64492012-10-06 14:07:02 +0000354 .puts = default_serial_puts,
Marek Vasut904d3d72012-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 Iwamatsu6d020352015-02-12 13:48:04 +0900368#endif /* CONFIG_DM_SERIAL */