]> Git Repo - J-u-boot.git/blame - drivers/serial/serial.c
common: Move testdram() into init.h
[J-u-boot.git] / drivers / serial / serial.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
281e00a3
WD
2/*
3 * (C) Copyright 2004
4 * Wolfgang Denk, DENX Software Engineering, [email protected].
281e00a3
WD
5 */
6
7#include <common.h>
f3998fdc 8#include <env_internal.h>
281e00a3 9#include <serial.h>
52cb4d4f 10#include <stdio_dev.h>
7b826c2f
MF
11#include <post.h>
12#include <linux/compiler.h>
6d93e258 13#include <errno.h>
281e00a3 14
d87080b7
WD
15DECLARE_GLOBAL_DATA_PTR;
16
a6e6f7f4
GF
17static struct serial_device *serial_devices;
18static struct serial_device *serial_current;
32057717
JH
19/*
20 * Table with supported baudrates (defined in config_xyz.h)
21 */
22static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
281e00a3 23
9cd2b9e4
MV
24/**
25 * serial_null() - Void registration routine of a serial driver
26 *
27 * This routine implements a void registration routine of a serial
28 * driver. The registration routine of a particular driver is aliased
29 * to this empty function in case the driver is not compiled into
30 * U-Boot.
31 */
2a333aeb
MV
32static void serial_null(void)
33{
34}
35
32057717
JH
36/**
37 * on_baudrate() - Update the actual baudrate when the env var changes
38 *
938b05a5
HS
39 * @name: changed environment variable
40 * @value: new value of the environment variable
41 * @op: operation (create, overwrite, or delete)
42 * @flags: attributes of environment variable change,
43 * see flags H_* in include/search.h
44 *
32057717 45 * This will check for a valid baudrate and only apply it if valid.
938b05a5
HS
46 *
47 * Return: 0 on success, 1 on error
32057717
JH
48 */
49static int on_baudrate(const char *name, const char *value, enum env_op op,
50 int flags)
51{
52 int i;
53 int baudrate;
54
55 switch (op) {
56 case env_op_create:
57 case env_op_overwrite:
58 /*
59 * Switch to new baudrate if new baudrate is supported
60 */
61 baudrate = simple_strtoul(value, NULL, 10);
62
63 /* Not actually changing */
64 if (gd->baudrate == baudrate)
65 return 0;
66
9935175f 67 for (i = 0; i < ARRAY_SIZE(baudrate_table); ++i) {
32057717
JH
68 if (baudrate == baudrate_table[i])
69 break;
70 }
9935175f 71 if (i == ARRAY_SIZE(baudrate_table)) {
32057717
JH
72 if ((flags & H_FORCE) == 0)
73 printf("## Baudrate %d bps not supported\n",
74 baudrate);
75 return 1;
76 }
77 if ((flags & H_INTERACTIVE) != 0) {
78 printf("## Switch baudrate to %d"
79 " bps and press ENTER ...\n", baudrate);
80 udelay(50000);
81 }
82
83 gd->baudrate = baudrate;
32057717
JH
84
85 serial_setbrg();
86
87 udelay(50000);
88
89 if ((flags & H_INTERACTIVE) != 0)
90 while (1) {
91 if (getc() == '\r')
92 break;
93 }
94
95 return 0;
96 case env_op_delete:
97 printf("## Baudrate may not be deleted\n");
98 return 1;
99 default:
100 return 0;
101 }
102}
103U_BOOT_ENV_CALLBACK(baudrate, on_baudrate);
104
9cd2b9e4
MV
105/**
106 * serial_initfunc() - Forward declare of driver registration routine
107 * @name: Name of the real driver registration routine.
108 *
109 * This macro expands onto forward declaration of a driver registration
110 * routine, which is then used below in serial_initialize() function.
111 * The declaration is made weak and aliases to serial_null() so in case
112 * the driver is not compiled in, the function is still declared and can
113 * be used, but aliases to serial_null() and thus is optimized away.
114 */
2a333aeb
MV
115#define serial_initfunc(name) \
116 void name(void) \
117 __attribute__((weak, alias("serial_null")));
118
94a255df 119serial_initfunc(atmel_serial_initialize);
94a255df 120serial_initfunc(mcf_serial_initialize);
94a255df 121serial_initfunc(mpc85xx_serial_initialize);
a943472c 122serial_initfunc(mxc_serial_initialize);
94a255df 123serial_initfunc(ns16550_serial_initialize);
39f61477 124serial_initfunc(pl01x_serial_initialize);
94a255df 125serial_initfunc(pxa_serial_initialize);
8bdd7efa 126serial_initfunc(sh_serial_initialize);
44fa676e 127serial_initfunc(mtk_serial_initialize);
f0eb1f61 128
9cd2b9e4
MV
129/**
130 * serial_register() - Register serial driver with serial driver core
131 * @dev: Pointer to the serial driver structure
132 *
133 * This function registers the serial driver supplied via @dev with
134 * serial driver core, thus making U-Boot aware of it and making it
135 * available for U-Boot to use. On platforms that still require manual
136 * relocation of constant variables, relocation of the supplied structure
137 * is performed.
138 */
c52b4f79 139void serial_register(struct serial_device *dev)
281e00a3 140{
2e5167cc 141#ifdef CONFIG_NEEDS_MANUAL_RELOC
f2760c4a
MV
142 if (dev->start)
143 dev->start += gd->reloc_off;
144 if (dev->stop)
145 dev->stop += gd->reloc_off;
146 if (dev->setbrg)
147 dev->setbrg += gd->reloc_off;
148 if (dev->getc)
149 dev->getc += gd->reloc_off;
150 if (dev->tstc)
151 dev->tstc += gd->reloc_off;
152 if (dev->putc)
153 dev->putc += gd->reloc_off;
154 if (dev->puts)
155 dev->puts += gd->reloc_off;
521af04d 156#endif
281e00a3
WD
157
158 dev->next = serial_devices;
159 serial_devices = dev;
281e00a3
WD
160}
161
9cd2b9e4
MV
162/**
163 * serial_initialize() - Register all compiled-in serial port drivers
164 *
165 * This function registers all serial port drivers that are compiled
166 * into the U-Boot binary with the serial core, thus making them
167 * available to U-Boot to use. Lastly, this function assigns a default
168 * serial port to the serial core. That serial port is then used as a
169 * default output.
170 */
a6e6f7f4 171void serial_initialize(void)
281e00a3 172{
94a255df 173 atmel_serial_initialize();
94a255df 174 mcf_serial_initialize();
94a255df 175 mpc85xx_serial_initialize();
a943472c 176 mxc_serial_initialize();
94a255df 177 ns16550_serial_initialize();
39f61477 178 pl01x_serial_initialize();
94a255df 179 pxa_serial_initialize();
8bdd7efa 180 sh_serial_initialize();
44fa676e 181 mtk_serial_initialize();
7b953c51 182
a6e6f7f4 183 serial_assign(default_serial_console()->name);
281e00a3
WD
184}
185
654f8d0f 186static int serial_stub_start(struct stdio_dev *sdev)
709ea543
SG
187{
188 struct serial_device *dev = sdev->priv;
189
190 return dev->start();
191}
192
654f8d0f 193static int serial_stub_stop(struct stdio_dev *sdev)
709ea543
SG
194{
195 struct serial_device *dev = sdev->priv;
196
197 return dev->stop();
198}
199
654f8d0f 200static void serial_stub_putc(struct stdio_dev *sdev, const char ch)
709ea543
SG
201{
202 struct serial_device *dev = sdev->priv;
203
204 dev->putc(ch);
205}
206
654f8d0f 207static void serial_stub_puts(struct stdio_dev *sdev, const char *str)
709ea543
SG
208{
209 struct serial_device *dev = sdev->priv;
210
211 dev->puts(str);
212}
213
49ddcf3e 214static int serial_stub_getc(struct stdio_dev *sdev)
709ea543
SG
215{
216 struct serial_device *dev = sdev->priv;
217
218 return dev->getc();
219}
220
49ddcf3e 221static int serial_stub_tstc(struct stdio_dev *sdev)
709ea543
SG
222{
223 struct serial_device *dev = sdev->priv;
224
225 return dev->tstc();
226}
227
9cd2b9e4
MV
228/**
229 * serial_stdio_init() - Register serial ports with STDIO core
230 *
231 * This function generates a proxy driver for each serial port driver.
232 * These proxy drivers then register with the STDIO core, making the
233 * serial drivers available as STDIO devices.
234 */
a6e6f7f4 235void serial_stdio_init(void)
281e00a3 236{
52cb4d4f 237 struct stdio_dev dev;
281e00a3
WD
238 struct serial_device *s = serial_devices;
239
2ee66533 240 while (s) {
a6e6f7f4 241 memset(&dev, 0, sizeof(dev));
281e00a3 242
a6e6f7f4 243 strcpy(dev.name, s->name);
281e00a3
WD
244 dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
245
709ea543
SG
246 dev.start = serial_stub_start;
247 dev.stop = serial_stub_stop;
248 dev.putc = serial_stub_putc;
249 dev.puts = serial_stub_puts;
250 dev.getc = serial_stub_getc;
251 dev.tstc = serial_stub_tstc;
addf9513 252 dev.priv = s;
281e00a3 253
a6e6f7f4 254 stdio_register(&dev);
281e00a3
WD
255
256 s = s->next;
257 }
258}
259
9cd2b9e4
MV
260/**
261 * serial_assign() - Select the serial output device by name
262 * @name: Name of the serial driver to be used as default output
263 *
264 * This function configures the serial output multiplexing by
265 * selecting which serial device will be used as default. In case
266 * the STDIO "serial" device is selected as stdin/stdout/stderr,
267 * the serial device previously configured by this function will be
268 * used for the particular operation.
269 *
270 * Returns 0 on success, negative on error.
271 */
7813ca9b 272int serial_assign(const char *name)
281e00a3
WD
273{
274 struct serial_device *s;
275
2ee66533 276 for (s = serial_devices; s; s = s->next) {
6d93e258
MV
277 if (strcmp(s->name, name))
278 continue;
279 serial_current = s;
280 return 0;
281e00a3
WD
281 }
282
6d93e258 283 return -EINVAL;
281e00a3
WD
284}
285
9cd2b9e4
MV
286/**
287 * serial_reinit_all() - Reinitialize all compiled-in serial ports
288 *
289 * This function reinitializes all serial ports that are compiled
290 * into U-Boot by calling their serial_start() functions.
291 */
a6e6f7f4 292void serial_reinit_all(void)
281e00a3
WD
293{
294 struct serial_device *s;
295
a6e6f7f4 296 for (s = serial_devices; s; s = s->next)
89143fb3 297 s->start();
281e00a3
WD
298}
299
9cd2b9e4
MV
300/**
301 * get_current() - Return pointer to currently selected serial port
302 *
303 * This function returns a pointer to currently selected serial port.
304 * The currently selected serial port is altered by serial_assign()
305 * function.
306 *
307 * In case this function is called before relocation or before any serial
308 * port is configured, this function calls default_serial_console() to
309 * determine the serial port. Otherwise, the configured serial port is
310 * returned.
311 *
312 * Returns pointer to the currently selected serial port on success,
313 * NULL on error.
314 */
857c283e 315static struct serial_device *get_current(void)
281e00a3 316{
857c283e 317 struct serial_device *dev;
2ee66533 318
dee19416 319 if (!(gd->flags & GD_FLG_RELOC))
857c283e 320 dev = default_serial_console();
dee19416
MV
321 else if (!serial_current)
322 dev = default_serial_console();
323 else
324 dev = serial_current;
857c283e 325
dee19416
MV
326 /* We must have a console device */
327 if (!dev) {
f1f1e9cb 328#ifdef CONFIG_SPL_BUILD
dee19416
MV
329 puts("Cannot find console\n");
330 hang();
f1f1e9cb 331#else
dee19416 332 panic("Cannot find console\n");
f1f1e9cb 333#endif
dee19416
MV
334 }
335
857c283e
SG
336 return dev;
337}
281e00a3 338
9cd2b9e4
MV
339/**
340 * serial_init() - Initialize currently selected serial port
341 *
342 * This function initializes the currently selected serial port. This
343 * usually involves setting up the registers of that particular port,
344 * enabling clock and such. This function uses the get_current() call
345 * to determine which port is selected.
346 *
347 * Returns 0 on success, negative on error.
348 */
857c283e
SG
349int serial_init(void)
350{
093f79ab 351 gd->flags |= GD_FLG_SERIAL_READY;
89143fb3 352 return get_current()->start();
281e00a3
WD
353}
354
9cd2b9e4
MV
355/**
356 * serial_setbrg() - Configure baud-rate of currently selected serial port
357 *
358 * This function configures the baud-rate of the currently selected
359 * serial port. The baud-rate is retrieved from global data within
360 * the serial port driver. This function uses the get_current() call
361 * to determine which port is selected.
362 *
363 * Returns 0 on success, negative on error.
364 */
a6e6f7f4 365void serial_setbrg(void)
281e00a3 366{
857c283e 367 get_current()->setbrg();
281e00a3
WD
368}
369
9cd2b9e4
MV
370/**
371 * serial_getc() - Read character from currently selected serial port
372 *
373 * This function retrieves a character from currently selected serial
374 * port. In case there is no character waiting on the serial port,
375 * this function will block and wait for the character to appear. This
376 * function uses the get_current() call to determine which port is
377 * selected.
378 *
379 * Returns the character on success, negative on error.
380 */
a6e6f7f4 381int serial_getc(void)
281e00a3 382{
857c283e 383 return get_current()->getc();
281e00a3
WD
384}
385
9cd2b9e4
MV
386/**
387 * serial_tstc() - Test if data is available on currently selected serial port
388 *
389 * This function tests if one or more characters are available on
390 * currently selected serial port. This function never blocks. This
391 * function uses the get_current() call to determine which port is
392 * selected.
393 *
394 * Returns positive if character is available, zero otherwise.
395 */
a6e6f7f4 396int serial_tstc(void)
281e00a3 397{
857c283e 398 return get_current()->tstc();
281e00a3
WD
399}
400
9cd2b9e4
MV
401/**
402 * serial_putc() - Output character via currently selected serial port
403 * @c: Single character to be output from the serial port.
404 *
405 * This function outputs a character via currently selected serial
406 * port. This character is passed to the serial port driver responsible
407 * for controlling the hardware. The hardware may still be in process
408 * of transmitting another character, therefore this function may block
409 * for a short amount of time. This function uses the get_current()
410 * call to determine which port is selected.
411 */
a6e6f7f4 412void serial_putc(const char c)
281e00a3 413{
857c283e 414 get_current()->putc(c);
281e00a3
WD
415}
416
9cd2b9e4
MV
417/**
418 * serial_puts() - Output string via currently selected serial port
419 * @s: Zero-terminated string to be output from the serial port.
420 *
421 * This function outputs a zero-terminated string via currently
422 * selected serial port. This function behaves as an accelerator
423 * in case the hardware can queue multiple characters for transfer.
424 * The whole string that is to be output is available to the function
425 * implementing the hardware manipulation. Transmitting the whole
426 * string may take some time, thus this function may block for some
427 * amount of time. This function uses the get_current() call to
428 * determine which port is selected.
429 */
a6e6f7f4 430void serial_puts(const char *s)
281e00a3 431{
857c283e 432 get_current()->puts(s);
281e00a3 433}
7b826c2f 434
9cd2b9e4
MV
435/**
436 * default_serial_puts() - Output string by calling serial_putc() in loop
437 * @s: Zero-terminated string to be output from the serial port.
438 *
439 * This function outputs a zero-terminated string by calling serial_putc()
440 * in a loop. Most drivers do not support queueing more than one byte for
441 * transfer, thus this function precisely implements their serial_puts().
442 *
443 * To optimize the number of get_current() calls, this function only
444 * calls get_current() once and then directly accesses the putc() call
445 * of the &struct serial_device .
446 */
bfb7d7a3
MV
447void default_serial_puts(const char *s)
448{
449 struct serial_device *dev = get_current();
450 while (*s)
451 dev->putc(*s++);
452}
453
7b826c2f
MF
454#if CONFIG_POST & CONFIG_SYS_POST_UART
455static const int bauds[] = CONFIG_SYS_BAUDRATE_TABLE;
456
9cd2b9e4
MV
457/**
458 * uart_post_test() - Test the currently selected serial port using POST
459 * @flags: POST framework flags
460 *
461 * Do a loopback test of the currently selected serial port. This
462 * function is only useful in the context of the POST testing framwork.
1b25e586 463 * The serial port is first configured into loopback mode and then
9cd2b9e4
MV
464 * characters are sent through it.
465 *
466 * Returns 0 on success, value otherwise.
467 */
7b826c2f
MF
468/* Mark weak until post/cpu/.../uart.c migrate over */
469__weak
470int uart_post_test(int flags)
471{
472 unsigned char c;
473 int ret, saved_baud, b;
474 struct serial_device *saved_dev, *s;
7b826c2f
MF
475
476 /* Save current serial state */
477 ret = 0;
478 saved_dev = serial_current;
8e261575 479 saved_baud = gd->baudrate;
7b826c2f
MF
480
481 for (s = serial_devices; s; s = s->next) {
482 /* If this driver doesn't support loop back, skip it */
483 if (!s->loop)
484 continue;
485
486 /* Test the next device */
487 serial_current = s;
488
489 ret = serial_init();
490 if (ret)
491 goto done;
492
493 /* Consume anything that happens to be queued */
494 while (serial_tstc())
495 serial_getc();
496
497 /* Enable loop back */
498 s->loop(1);
499
500 /* Test every available baud rate */
501 for (b = 0; b < ARRAY_SIZE(bauds); ++b) {
8e261575 502 gd->baudrate = bauds[b];
7b826c2f
MF
503 serial_setbrg();
504
505 /*
506 * Stick to printable chars to avoid issues:
507 * - terminal corruption
508 * - serial program reacting to sequences and sending
509 * back random extra data
510 * - most serial drivers add in extra chars (like \r\n)
511 */
512 for (c = 0x20; c < 0x7f; ++c) {
513 /* Send it out */
514 serial_putc(c);
515
516 /* Make sure it's the same one */
517 ret = (c != serial_getc());
518 if (ret) {
519 s->loop(0);
520 goto done;
521 }
522
523 /* Clean up the output in case it was sent */
524 serial_putc('\b');
525 ret = ('\b' != serial_getc());
526 if (ret) {
527 s->loop(0);
528 goto done;
529 }
530 }
531 }
532
533 /* Disable loop back */
534 s->loop(0);
535
89143fb3
MV
536 /* XXX: There is no serial_stop() !? */
537 if (s->stop)
538 s->stop();
7b826c2f
MF
539 }
540
541 done:
542 /* Restore previous serial state */
543 serial_current = saved_dev;
8e261575 544 gd->baudrate = saved_baud;
7b826c2f
MF
545 serial_reinit_all();
546 serial_setbrg();
547
548 return ret;
549}
550#endif
This page took 0.603167 seconds and 4 git commands to generate.