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