1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * Base port operations for 8250/16550-type serial ports 4 * 5 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o. 6 * Split from 8250_core.c, Copyright (C) 2001 Russell King. 7 * 8 * A note about mapbase / membase 9 * 10 * mapbase is the physical address of the IO port. 11 * membase is an 'ioremapped' cookie. 12 */ 13 14 #include <linux/module.h> 15 #include <linux/moduleparam.h> 16 #include <linux/ioport.h> 17 #include <linux/init.h> 18 #include <linux/console.h> 19 #include <linux/gpio/consumer.h> 20 #include <linux/sysrq.h> 21 #include <linux/delay.h> 22 #include <linux/platform_device.h> 23 #include <linux/tty.h> 24 #include <linux/ratelimit.h> 25 #include <linux/tty_flip.h> 26 #include <linux/serial.h> 27 #include <linux/serial_8250.h> 28 #include <linux/nmi.h> 29 #include <linux/mutex.h> 30 #include <linux/slab.h> 31 #include <linux/uaccess.h> 32 #include <linux/pm_runtime.h> 33 #include <linux/ktime.h> 34 35 #include <asm/io.h> 36 #include <asm/irq.h> 37 38 #include "8250.h" 39 40 /* Nuvoton NPCM timeout register */ 41 #define UART_NPCM_TOR 7 42 #define UART_NPCM_TOIE BIT(7) /* Timeout Interrupt Enable */ 43 44 /* 45 * Debugging. 46 */ 47 #if 0 48 #define DEBUG_AUTOCONF(fmt...) printk(fmt) 49 #else 50 #define DEBUG_AUTOCONF(fmt...) do { } while (0) 51 #endif 52 53 /* 54 * Here we define the default xmit fifo size used for each type of UART. 55 */ 56 static const struct serial8250_config uart_config[] = { 57 [PORT_UNKNOWN] = { 58 .name = "unknown", 59 .fifo_size = 1, 60 .tx_loadsz = 1, 61 }, 62 [PORT_8250] = { 63 .name = "8250", 64 .fifo_size = 1, 65 .tx_loadsz = 1, 66 }, 67 [PORT_16450] = { 68 .name = "16450", 69 .fifo_size = 1, 70 .tx_loadsz = 1, 71 }, 72 [PORT_16550] = { 73 .name = "16550", 74 .fifo_size = 1, 75 .tx_loadsz = 1, 76 }, 77 [PORT_16550A] = { 78 .name = "16550A", 79 .fifo_size = 16, 80 .tx_loadsz = 16, 81 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 82 .rxtrig_bytes = {1, 4, 8, 14}, 83 .flags = UART_CAP_FIFO, 84 }, 85 [PORT_CIRRUS] = { 86 .name = "Cirrus", 87 .fifo_size = 1, 88 .tx_loadsz = 1, 89 }, 90 [PORT_16650] = { 91 .name = "ST16650", 92 .fifo_size = 1, 93 .tx_loadsz = 1, 94 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP, 95 }, 96 [PORT_16650V2] = { 97 .name = "ST16650V2", 98 .fifo_size = 32, 99 .tx_loadsz = 16, 100 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 | 101 UART_FCR_T_TRIG_00, 102 .rxtrig_bytes = {8, 16, 24, 28}, 103 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP, 104 }, 105 [PORT_16750] = { 106 .name = "TI16750", 107 .fifo_size = 64, 108 .tx_loadsz = 64, 109 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 | 110 UART_FCR7_64BYTE, 111 .rxtrig_bytes = {1, 16, 32, 56}, 112 .flags = UART_CAP_FIFO | UART_CAP_SLEEP | UART_CAP_AFE, 113 }, 114 [PORT_STARTECH] = { 115 .name = "Startech", 116 .fifo_size = 1, 117 .tx_loadsz = 1, 118 }, 119 [PORT_16C950] = { 120 .name = "16C950/954", 121 .fifo_size = 128, 122 .tx_loadsz = 128, 123 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01, 124 .rxtrig_bytes = {16, 32, 112, 120}, 125 /* UART_CAP_EFR breaks billionon CF bluetooth card. */ 126 .flags = UART_CAP_FIFO | UART_CAP_SLEEP, 127 }, 128 [PORT_16654] = { 129 .name = "ST16654", 130 .fifo_size = 64, 131 .tx_loadsz = 32, 132 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 | 133 UART_FCR_T_TRIG_10, 134 .rxtrig_bytes = {8, 16, 56, 60}, 135 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP, 136 }, 137 [PORT_16850] = { 138 .name = "XR16850", 139 .fifo_size = 128, 140 .tx_loadsz = 128, 141 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 142 .flags = UART_CAP_FIFO | UART_CAP_EFR | UART_CAP_SLEEP, 143 }, 144 [PORT_RSA] = { 145 .name = "RSA", 146 .fifo_size = 2048, 147 .tx_loadsz = 2048, 148 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11, 149 .flags = UART_CAP_FIFO, 150 }, 151 [PORT_NS16550A] = { 152 .name = "NS16550A", 153 .fifo_size = 16, 154 .tx_loadsz = 16, 155 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 156 .flags = UART_CAP_FIFO | UART_NATSEMI, 157 }, 158 [PORT_XSCALE] = { 159 .name = "XScale", 160 .fifo_size = 32, 161 .tx_loadsz = 32, 162 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 163 .flags = UART_CAP_FIFO | UART_CAP_UUE | UART_CAP_RTOIE, 164 }, 165 [PORT_OCTEON] = { 166 .name = "OCTEON", 167 .fifo_size = 64, 168 .tx_loadsz = 64, 169 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 170 .flags = UART_CAP_FIFO, 171 }, 172 [PORT_AR7] = { 173 .name = "AR7", 174 .fifo_size = 16, 175 .tx_loadsz = 16, 176 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00, 177 .flags = UART_CAP_FIFO /* | UART_CAP_AFE */, 178 }, 179 [PORT_U6_16550A] = { 180 .name = "U6_16550A", 181 .fifo_size = 64, 182 .tx_loadsz = 64, 183 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 184 .flags = UART_CAP_FIFO | UART_CAP_AFE, 185 }, 186 [PORT_TEGRA] = { 187 .name = "Tegra", 188 .fifo_size = 32, 189 .tx_loadsz = 8, 190 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01 | 191 UART_FCR_T_TRIG_01, 192 .rxtrig_bytes = {1, 4, 8, 14}, 193 .flags = UART_CAP_FIFO | UART_CAP_RTOIE, 194 }, 195 [PORT_XR17D15X] = { 196 .name = "XR17D15X", 197 .fifo_size = 64, 198 .tx_loadsz = 64, 199 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 200 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR | 201 UART_CAP_SLEEP, 202 }, 203 [PORT_XR17V35X] = { 204 .name = "XR17V35X", 205 .fifo_size = 256, 206 .tx_loadsz = 256, 207 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_11 | 208 UART_FCR_T_TRIG_11, 209 .flags = UART_CAP_FIFO | UART_CAP_AFE | UART_CAP_EFR | 210 UART_CAP_SLEEP, 211 }, 212 [PORT_LPC3220] = { 213 .name = "LPC3220", 214 .fifo_size = 64, 215 .tx_loadsz = 32, 216 .fcr = UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO | 217 UART_FCR_R_TRIG_00 | UART_FCR_T_TRIG_00, 218 .flags = UART_CAP_FIFO, 219 }, 220 [PORT_BRCM_TRUMANAGE] = { 221 .name = "TruManage", 222 .fifo_size = 1, 223 .tx_loadsz = 1024, 224 .flags = UART_CAP_HFIFO, 225 }, 226 [PORT_8250_CIR] = { 227 .name = "CIR port" 228 }, 229 [PORT_ALTR_16550_F32] = { 230 .name = "Altera 16550 FIFO32", 231 .fifo_size = 32, 232 .tx_loadsz = 32, 233 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 234 .rxtrig_bytes = {1, 8, 16, 30}, 235 .flags = UART_CAP_FIFO | UART_CAP_AFE, 236 }, 237 [PORT_ALTR_16550_F64] = { 238 .name = "Altera 16550 FIFO64", 239 .fifo_size = 64, 240 .tx_loadsz = 64, 241 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 242 .rxtrig_bytes = {1, 16, 32, 62}, 243 .flags = UART_CAP_FIFO | UART_CAP_AFE, 244 }, 245 [PORT_ALTR_16550_F128] = { 246 .name = "Altera 16550 FIFO128", 247 .fifo_size = 128, 248 .tx_loadsz = 128, 249 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 250 .rxtrig_bytes = {1, 32, 64, 126}, 251 .flags = UART_CAP_FIFO | UART_CAP_AFE, 252 }, 253 /* 254 * tx_loadsz is set to 63-bytes instead of 64-bytes to implement 255 * workaround of errata A-008006 which states that tx_loadsz should 256 * be configured less than Maximum supported fifo bytes. 257 */ 258 [PORT_16550A_FSL64] = { 259 .name = "16550A_FSL64", 260 .fifo_size = 64, 261 .tx_loadsz = 63, 262 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 | 263 UART_FCR7_64BYTE, 264 .flags = UART_CAP_FIFO | UART_CAP_NOTEMT, 265 }, 266 [PORT_RT2880] = { 267 .name = "Palmchip BK-3103", 268 .fifo_size = 16, 269 .tx_loadsz = 16, 270 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 271 .rxtrig_bytes = {1, 4, 8, 14}, 272 .flags = UART_CAP_FIFO, 273 }, 274 [PORT_DA830] = { 275 .name = "TI DA8xx/66AK2x", 276 .fifo_size = 16, 277 .tx_loadsz = 16, 278 .fcr = UART_FCR_DMA_SELECT | UART_FCR_ENABLE_FIFO | 279 UART_FCR_R_TRIG_10, 280 .rxtrig_bytes = {1, 4, 8, 14}, 281 .flags = UART_CAP_FIFO | UART_CAP_AFE, 282 }, 283 [PORT_MTK_BTIF] = { 284 .name = "MediaTek BTIF", 285 .fifo_size = 16, 286 .tx_loadsz = 16, 287 .fcr = UART_FCR_ENABLE_FIFO | 288 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT, 289 .flags = UART_CAP_FIFO, 290 }, 291 [PORT_NPCM] = { 292 .name = "Nuvoton 16550", 293 .fifo_size = 16, 294 .tx_loadsz = 16, 295 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10 | 296 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT, 297 .rxtrig_bytes = {1, 4, 8, 14}, 298 .flags = UART_CAP_FIFO, 299 }, 300 [PORT_SUNIX] = { 301 .name = "Sunix", 302 .fifo_size = 128, 303 .tx_loadsz = 128, 304 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, 305 .rxtrig_bytes = {1, 32, 64, 112}, 306 .flags = UART_CAP_FIFO | UART_CAP_SLEEP, 307 }, 308 [PORT_ASPEED_VUART] = { 309 .name = "ASPEED VUART", 310 .fifo_size = 16, 311 .tx_loadsz = 16, 312 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_00, 313 .rxtrig_bytes = {1, 4, 8, 14}, 314 .flags = UART_CAP_FIFO, 315 }, 316 [PORT_MCHP16550A] = { 317 .name = "MCHP16550A", 318 .fifo_size = 256, 319 .tx_loadsz = 256, 320 .fcr = UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_01, 321 .rxtrig_bytes = {2, 66, 130, 194}, 322 .flags = UART_CAP_FIFO, 323 }, 324 }; 325 326 /* Uart divisor latch read */ 327 static int default_serial_dl_read(struct uart_8250_port *up) 328 { 329 /* Assign these in pieces to truncate any bits above 7. */ 330 unsigned char dll = serial_in(up, UART_DLL); 331 unsigned char dlm = serial_in(up, UART_DLM); 332 333 return dll | dlm << 8; 334 } 335 336 /* Uart divisor latch write */ 337 static void default_serial_dl_write(struct uart_8250_port *up, int value) 338 { 339 serial_out(up, UART_DLL, value & 0xff); 340 serial_out(up, UART_DLM, value >> 8 & 0xff); 341 } 342 343 #ifdef CONFIG_SERIAL_8250_RT288X 344 345 #define UART_REG_UNMAPPED -1 346 347 /* Au1x00/RT288x UART hardware has a weird register layout */ 348 static const s8 au_io_in_map[8] = { 349 [UART_RX] = 0, 350 [UART_IER] = 2, 351 [UART_IIR] = 3, 352 [UART_LCR] = 5, 353 [UART_MCR] = 6, 354 [UART_LSR] = 7, 355 [UART_MSR] = 8, 356 [UART_SCR] = UART_REG_UNMAPPED, 357 }; 358 359 static const s8 au_io_out_map[8] = { 360 [UART_TX] = 1, 361 [UART_IER] = 2, 362 [UART_FCR] = 4, 363 [UART_LCR] = 5, 364 [UART_MCR] = 6, 365 [UART_LSR] = UART_REG_UNMAPPED, 366 [UART_MSR] = UART_REG_UNMAPPED, 367 [UART_SCR] = UART_REG_UNMAPPED, 368 }; 369 370 unsigned int au_serial_in(struct uart_port *p, int offset) 371 { 372 if (offset >= ARRAY_SIZE(au_io_in_map)) 373 return UINT_MAX; 374 offset = au_io_in_map[offset]; 375 if (offset == UART_REG_UNMAPPED) 376 return UINT_MAX; 377 return __raw_readl(p->membase + (offset << p->regshift)); 378 } 379 380 void au_serial_out(struct uart_port *p, int offset, int value) 381 { 382 if (offset >= ARRAY_SIZE(au_io_out_map)) 383 return; 384 offset = au_io_out_map[offset]; 385 if (offset == UART_REG_UNMAPPED) 386 return; 387 __raw_writel(value, p->membase + (offset << p->regshift)); 388 } 389 390 /* Au1x00 haven't got a standard divisor latch */ 391 static int au_serial_dl_read(struct uart_8250_port *up) 392 { 393 return __raw_readl(up->port.membase + 0x28); 394 } 395 396 static void au_serial_dl_write(struct uart_8250_port *up, int value) 397 { 398 __raw_writel(value, up->port.membase + 0x28); 399 } 400 401 #endif 402 403 static unsigned int hub6_serial_in(struct uart_port *p, int offset) 404 { 405 offset = offset << p->regshift; 406 outb(p->hub6 - 1 + offset, p->iobase); 407 return inb(p->iobase + 1); 408 } 409 410 static void hub6_serial_out(struct uart_port *p, int offset, int value) 411 { 412 offset = offset << p->regshift; 413 outb(p->hub6 - 1 + offset, p->iobase); 414 outb(value, p->iobase + 1); 415 } 416 417 static unsigned int mem_serial_in(struct uart_port *p, int offset) 418 { 419 offset = offset << p->regshift; 420 return readb(p->membase + offset); 421 } 422 423 static void mem_serial_out(struct uart_port *p, int offset, int value) 424 { 425 offset = offset << p->regshift; 426 writeb(value, p->membase + offset); 427 } 428 429 static void mem16_serial_out(struct uart_port *p, int offset, int value) 430 { 431 offset = offset << p->regshift; 432 writew(value, p->membase + offset); 433 } 434 435 static unsigned int mem16_serial_in(struct uart_port *p, int offset) 436 { 437 offset = offset << p->regshift; 438 return readw(p->membase + offset); 439 } 440 441 static void mem32_serial_out(struct uart_port *p, int offset, int value) 442 { 443 offset = offset << p->regshift; 444 writel(value, p->membase + offset); 445 } 446 447 static unsigned int mem32_serial_in(struct uart_port *p, int offset) 448 { 449 offset = offset << p->regshift; 450 return readl(p->membase + offset); 451 } 452 453 static void mem32be_serial_out(struct uart_port *p, int offset, int value) 454 { 455 offset = offset << p->regshift; 456 iowrite32be(value, p->membase + offset); 457 } 458 459 static unsigned int mem32be_serial_in(struct uart_port *p, int offset) 460 { 461 offset = offset << p->regshift; 462 return ioread32be(p->membase + offset); 463 } 464 465 static unsigned int io_serial_in(struct uart_port *p, int offset) 466 { 467 offset = offset << p->regshift; 468 return inb(p->iobase + offset); 469 } 470 471 static void io_serial_out(struct uart_port *p, int offset, int value) 472 { 473 offset = offset << p->regshift; 474 outb(value, p->iobase + offset); 475 } 476 477 static int serial8250_default_handle_irq(struct uart_port *port); 478 479 static void set_io_from_upio(struct uart_port *p) 480 { 481 struct uart_8250_port *up = up_to_u8250p(p); 482 483 up->dl_read = default_serial_dl_read; 484 up->dl_write = default_serial_dl_write; 485 486 switch (p->iotype) { 487 case UPIO_HUB6: 488 p->serial_in = hub6_serial_in; 489 p->serial_out = hub6_serial_out; 490 break; 491 492 case UPIO_MEM: 493 p->serial_in = mem_serial_in; 494 p->serial_out = mem_serial_out; 495 break; 496 497 case UPIO_MEM16: 498 p->serial_in = mem16_serial_in; 499 p->serial_out = mem16_serial_out; 500 break; 501 502 case UPIO_MEM32: 503 p->serial_in = mem32_serial_in; 504 p->serial_out = mem32_serial_out; 505 break; 506 507 case UPIO_MEM32BE: 508 p->serial_in = mem32be_serial_in; 509 p->serial_out = mem32be_serial_out; 510 break; 511 512 #ifdef CONFIG_SERIAL_8250_RT288X 513 case UPIO_AU: 514 p->serial_in = au_serial_in; 515 p->serial_out = au_serial_out; 516 up->dl_read = au_serial_dl_read; 517 up->dl_write = au_serial_dl_write; 518 break; 519 #endif 520 521 default: 522 p->serial_in = io_serial_in; 523 p->serial_out = io_serial_out; 524 break; 525 } 526 /* Remember loaded iotype */ 527 up->cur_iotype = p->iotype; 528 p->handle_irq = serial8250_default_handle_irq; 529 } 530 531 static void 532 serial_port_out_sync(struct uart_port *p, int offset, int value) 533 { 534 switch (p->iotype) { 535 case UPIO_MEM: 536 case UPIO_MEM16: 537 case UPIO_MEM32: 538 case UPIO_MEM32BE: 539 case UPIO_AU: 540 p->serial_out(p, offset, value); 541 p->serial_in(p, UART_LCR); /* safe, no side-effects */ 542 break; 543 default: 544 p->serial_out(p, offset, value); 545 } 546 } 547 548 /* 549 * FIFO support. 550 */ 551 static void serial8250_clear_fifos(struct uart_8250_port *p) 552 { 553 if (p->capabilities & UART_CAP_FIFO) { 554 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO); 555 serial_out(p, UART_FCR, UART_FCR_ENABLE_FIFO | 556 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT); 557 serial_out(p, UART_FCR, 0); 558 } 559 } 560 561 static enum hrtimer_restart serial8250_em485_handle_start_tx(struct hrtimer *t); 562 static enum hrtimer_restart serial8250_em485_handle_stop_tx(struct hrtimer *t); 563 564 void serial8250_clear_and_reinit_fifos(struct uart_8250_port *p) 565 { 566 serial8250_clear_fifos(p); 567 serial_out(p, UART_FCR, p->fcr); 568 } 569 EXPORT_SYMBOL_GPL(serial8250_clear_and_reinit_fifos); 570 571 void serial8250_rpm_get(struct uart_8250_port *p) 572 { 573 if (!(p->capabilities & UART_CAP_RPM)) 574 return; 575 pm_runtime_get_sync(p->port.dev); 576 } 577 EXPORT_SYMBOL_GPL(serial8250_rpm_get); 578 579 void serial8250_rpm_put(struct uart_8250_port *p) 580 { 581 if (!(p->capabilities & UART_CAP_RPM)) 582 return; 583 pm_runtime_mark_last_busy(p->port.dev); 584 pm_runtime_put_autosuspend(p->port.dev); 585 } 586 EXPORT_SYMBOL_GPL(serial8250_rpm_put); 587 588 /** 589 * serial8250_em485_init() - put uart_8250_port into rs485 emulating 590 * @p: uart_8250_port port instance 591 * 592 * The function is used to start rs485 software emulating on the 593 * &struct uart_8250_port* @p. Namely, RTS is switched before/after 594 * transmission. The function is idempotent, so it is safe to call it 595 * multiple times. 596 * 597 * The caller MUST enable interrupt on empty shift register before 598 * calling serial8250_em485_init(). This interrupt is not a part of 599 * 8250 standard, but implementation defined. 600 * 601 * The function is supposed to be called from .rs485_config callback 602 * or from any other callback protected with p->port.lock spinlock. 603 * 604 * See also serial8250_em485_destroy() 605 * 606 * Return 0 - success, -errno - otherwise 607 */ 608 static int serial8250_em485_init(struct uart_8250_port *p) 609 { 610 if (p->em485) 611 goto deassert_rts; 612 613 p->em485 = kmalloc(sizeof(struct uart_8250_em485), GFP_ATOMIC); 614 if (!p->em485) 615 return -ENOMEM; 616 617 hrtimer_init(&p->em485->stop_tx_timer, CLOCK_MONOTONIC, 618 HRTIMER_MODE_REL); 619 hrtimer_init(&p->em485->start_tx_timer, CLOCK_MONOTONIC, 620 HRTIMER_MODE_REL); 621 p->em485->stop_tx_timer.function = &serial8250_em485_handle_stop_tx; 622 p->em485->start_tx_timer.function = &serial8250_em485_handle_start_tx; 623 p->em485->port = p; 624 p->em485->active_timer = NULL; 625 p->em485->tx_stopped = true; 626 627 deassert_rts: 628 if (p->em485->tx_stopped) 629 p->rs485_stop_tx(p); 630 631 return 0; 632 } 633 634 /** 635 * serial8250_em485_destroy() - put uart_8250_port into normal state 636 * @p: uart_8250_port port instance 637 * 638 * The function is used to stop rs485 software emulating on the 639 * &struct uart_8250_port* @p. The function is idempotent, so it is safe to 640 * call it multiple times. 641 * 642 * The function is supposed to be called from .rs485_config callback 643 * or from any other callback protected with p->port.lock spinlock. 644 * 645 * See also serial8250_em485_init() 646 */ 647 void serial8250_em485_destroy(struct uart_8250_port *p) 648 { 649 if (!p->em485) 650 return; 651 652 hrtimer_cancel(&p->em485->start_tx_timer); 653 hrtimer_cancel(&p->em485->stop_tx_timer); 654 655 kfree(p->em485); 656 p->em485 = NULL; 657 } 658 EXPORT_SYMBOL_GPL(serial8250_em485_destroy); 659 660 struct serial_rs485 serial8250_em485_supported = { 661 .flags = SER_RS485_ENABLED | SER_RS485_RTS_ON_SEND | SER_RS485_RTS_AFTER_SEND | 662 SER_RS485_TERMINATE_BUS | SER_RS485_RX_DURING_TX, 663 .delay_rts_before_send = 1, 664 .delay_rts_after_send = 1, 665 }; 666 EXPORT_SYMBOL_GPL(serial8250_em485_supported); 667 668 /** 669 * serial8250_em485_config() - generic ->rs485_config() callback 670 * @port: uart port 671 * @rs485: rs485 settings 672 * 673 * Generic callback usable by 8250 uart drivers to activate rs485 settings 674 * if the uart is incapable of driving RTS as a Transmit Enable signal in 675 * hardware, relying on software emulation instead. 676 */ 677 int serial8250_em485_config(struct uart_port *port, struct ktermios *termios, 678 struct serial_rs485 *rs485) 679 { 680 struct uart_8250_port *up = up_to_u8250p(port); 681 682 /* pick sane settings if the user hasn't */ 683 if (!!(rs485->flags & SER_RS485_RTS_ON_SEND) == 684 !!(rs485->flags & SER_RS485_RTS_AFTER_SEND)) { 685 rs485->flags |= SER_RS485_RTS_ON_SEND; 686 rs485->flags &= ~SER_RS485_RTS_AFTER_SEND; 687 } 688 689 /* 690 * Both serial8250_em485_init() and serial8250_em485_destroy() 691 * are idempotent. 692 */ 693 if (rs485->flags & SER_RS485_ENABLED) 694 return serial8250_em485_init(up); 695 696 serial8250_em485_destroy(up); 697 return 0; 698 } 699 EXPORT_SYMBOL_GPL(serial8250_em485_config); 700 701 /* 702 * These two wrappers ensure that enable_runtime_pm_tx() can be called more than 703 * once and disable_runtime_pm_tx() will still disable RPM because the fifo is 704 * empty and the HW can idle again. 705 */ 706 void serial8250_rpm_get_tx(struct uart_8250_port *p) 707 { 708 unsigned char rpm_active; 709 710 if (!(p->capabilities & UART_CAP_RPM)) 711 return; 712 713 rpm_active = xchg(&p->rpm_tx_active, 1); 714 if (rpm_active) 715 return; 716 pm_runtime_get_sync(p->port.dev); 717 } 718 EXPORT_SYMBOL_GPL(serial8250_rpm_get_tx); 719 720 void serial8250_rpm_put_tx(struct uart_8250_port *p) 721 { 722 unsigned char rpm_active; 723 724 if (!(p->capabilities & UART_CAP_RPM)) 725 return; 726 727 rpm_active = xchg(&p->rpm_tx_active, 0); 728 if (!rpm_active) 729 return; 730 pm_runtime_mark_last_busy(p->port.dev); 731 pm_runtime_put_autosuspend(p->port.dev); 732 } 733 EXPORT_SYMBOL_GPL(serial8250_rpm_put_tx); 734 735 /* 736 * IER sleep support. UARTs which have EFRs need the "extended 737 * capability" bit enabled. Note that on XR16C850s, we need to 738 * reset LCR to write to IER. 739 */ 740 static void serial8250_set_sleep(struct uart_8250_port *p, int sleep) 741 { 742 unsigned char lcr = 0, efr = 0; 743 744 serial8250_rpm_get(p); 745 746 if (p->capabilities & UART_CAP_SLEEP) { 747 if (p->capabilities & UART_CAP_EFR) { 748 lcr = serial_in(p, UART_LCR); 749 efr = serial_in(p, UART_EFR); 750 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B); 751 serial_out(p, UART_EFR, UART_EFR_ECB); 752 serial_out(p, UART_LCR, 0); 753 } 754 serial_out(p, UART_IER, sleep ? UART_IERX_SLEEP : 0); 755 if (p->capabilities & UART_CAP_EFR) { 756 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_B); 757 serial_out(p, UART_EFR, efr); 758 serial_out(p, UART_LCR, lcr); 759 } 760 } 761 762 serial8250_rpm_put(p); 763 } 764 765 static void serial8250_clear_IER(struct uart_8250_port *up) 766 { 767 if (up->capabilities & UART_CAP_UUE) 768 serial_out(up, UART_IER, UART_IER_UUE); 769 else 770 serial_out(up, UART_IER, 0); 771 } 772 773 #ifdef CONFIG_SERIAL_8250_RSA 774 /* 775 * Attempts to turn on the RSA FIFO. Returns zero on failure. 776 * We set the port uart clock rate if we succeed. 777 */ 778 static int __enable_rsa(struct uart_8250_port *up) 779 { 780 unsigned char mode; 781 int result; 782 783 mode = serial_in(up, UART_RSA_MSR); 784 result = mode & UART_RSA_MSR_FIFO; 785 786 if (!result) { 787 serial_out(up, UART_RSA_MSR, mode | UART_RSA_MSR_FIFO); 788 mode = serial_in(up, UART_RSA_MSR); 789 result = mode & UART_RSA_MSR_FIFO; 790 } 791 792 if (result) 793 up->port.uartclk = SERIAL_RSA_BAUD_BASE * 16; 794 795 return result; 796 } 797 798 static void enable_rsa(struct uart_8250_port *up) 799 { 800 if (up->port.type == PORT_RSA) { 801 if (up->port.uartclk != SERIAL_RSA_BAUD_BASE * 16) { 802 spin_lock_irq(&up->port.lock); 803 __enable_rsa(up); 804 spin_unlock_irq(&up->port.lock); 805 } 806 if (up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) 807 serial_out(up, UART_RSA_FRR, 0); 808 } 809 } 810 811 /* 812 * Attempts to turn off the RSA FIFO. Returns zero on failure. 813 * It is unknown why interrupts were disabled in here. However, 814 * the caller is expected to preserve this behaviour by grabbing 815 * the spinlock before calling this function. 816 */ 817 static void disable_rsa(struct uart_8250_port *up) 818 { 819 unsigned char mode; 820 int result; 821 822 if (up->port.type == PORT_RSA && 823 up->port.uartclk == SERIAL_RSA_BAUD_BASE * 16) { 824 spin_lock_irq(&up->port.lock); 825 826 mode = serial_in(up, UART_RSA_MSR); 827 result = !(mode & UART_RSA_MSR_FIFO); 828 829 if (!result) { 830 serial_out(up, UART_RSA_MSR, mode & ~UART_RSA_MSR_FIFO); 831 mode = serial_in(up, UART_RSA_MSR); 832 result = !(mode & UART_RSA_MSR_FIFO); 833 } 834 835 if (result) 836 up->port.uartclk = SERIAL_RSA_BAUD_BASE_LO * 16; 837 spin_unlock_irq(&up->port.lock); 838 } 839 } 840 #endif /* CONFIG_SERIAL_8250_RSA */ 841 842 /* 843 * This is a quickie test to see how big the FIFO is. 844 * It doesn't work at all the time, more's the pity. 845 */ 846 static int size_fifo(struct uart_8250_port *up) 847 { 848 unsigned char old_fcr, old_mcr, old_lcr; 849 unsigned short old_dl; 850 int count; 851 852 old_lcr = serial_in(up, UART_LCR); 853 serial_out(up, UART_LCR, 0); 854 old_fcr = serial_in(up, UART_FCR); 855 old_mcr = serial8250_in_MCR(up); 856 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | 857 UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT); 858 serial8250_out_MCR(up, UART_MCR_LOOP); 859 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A); 860 old_dl = serial_dl_read(up); 861 serial_dl_write(up, 0x0001); 862 serial_out(up, UART_LCR, UART_LCR_WLEN8); 863 for (count = 0; count < 256; count++) 864 serial_out(up, UART_TX, count); 865 mdelay(20);/* FIXME - schedule_timeout */ 866 for (count = 0; (serial_in(up, UART_LSR) & UART_LSR_DR) && 867 (count < 256); count++) 868 serial_in(up, UART_RX); 869 serial_out(up, UART_FCR, old_fcr); 870 serial8250_out_MCR(up, old_mcr); 871 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A); 872 serial_dl_write(up, old_dl); 873 serial_out(up, UART_LCR, old_lcr); 874 875 return count; 876 } 877 878 /* 879 * Read UART ID using the divisor method - set DLL and DLM to zero 880 * and the revision will be in DLL and device type in DLM. We 881 * preserve the device state across this. 882 */ 883 static unsigned int autoconfig_read_divisor_id(struct uart_8250_port *p) 884 { 885 unsigned char old_lcr; 886 unsigned int id, old_dl; 887 888 old_lcr = serial_in(p, UART_LCR); 889 serial_out(p, UART_LCR, UART_LCR_CONF_MODE_A); 890 old_dl = serial_dl_read(p); 891 serial_dl_write(p, 0); 892 id = serial_dl_read(p); 893 serial_dl_write(p, old_dl); 894 895 serial_out(p, UART_LCR, old_lcr); 896 897 return id; 898 } 899 900 /* 901 * This is a helper routine to autodetect StarTech/Exar/Oxsemi UART's. 902 * When this function is called we know it is at least a StarTech 903 * 16650 V2, but it might be one of several StarTech UARTs, or one of 904 * its clones. (We treat the broken original StarTech 16650 V1 as a 905 * 16550, and why not? Startech doesn't seem to even acknowledge its 906 * existence.) 907 * 908 * What evil have men's minds wrought... 909 */ 910 static void autoconfig_has_efr(struct uart_8250_port *up) 911 { 912 unsigned int id1, id2, id3, rev; 913 914 /* 915 * Everything with an EFR has SLEEP 916 */ 917 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP; 918 919 /* 920 * First we check to see if it's an Oxford Semiconductor UART. 921 * 922 * If we have to do this here because some non-National 923 * Semiconductor clone chips lock up if you try writing to the 924 * LSR register (which serial_icr_read does) 925 */ 926 927 /* 928 * Check for Oxford Semiconductor 16C950. 929 * 930 * EFR [4] must be set else this test fails. 931 * 932 * This shouldn't be necessary, but Mike Hudson (Exoray@isys.ca) 933 * claims that it's needed for 952 dual UART's (which are not 934 * recommended for new designs). 935 */ 936 up->acr = 0; 937 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); 938 serial_out(up, UART_EFR, UART_EFR_ECB); 939 serial_out(up, UART_LCR, 0x00); 940 id1 = serial_icr_read(up, UART_ID1); 941 id2 = serial_icr_read(up, UART_ID2); 942 id3 = serial_icr_read(up, UART_ID3); 943 rev = serial_icr_read(up, UART_REV); 944 945 DEBUG_AUTOCONF("950id=%02x:%02x:%02x:%02x ", id1, id2, id3, rev); 946 947 if (id1 == 0x16 && id2 == 0xC9 && 948 (id3 == 0x50 || id3 == 0x52 || id3 == 0x54)) { 949 up->port.type = PORT_16C950; 950 951 /* 952 * Enable work around for the Oxford Semiconductor 952 rev B 953 * chip which causes it to seriously miscalculate baud rates 954 * when DLL is 0. 955 */ 956 if (id3 == 0x52 && rev == 0x01) 957 up->bugs |= UART_BUG_QUOT; 958 return; 959 } 960 961 /* 962 * We check for a XR16C850 by setting DLL and DLM to 0, and then 963 * reading back DLL and DLM. The chip type depends on the DLM 964 * value read back: 965 * 0x10 - XR16C850 and the DLL contains the chip revision. 966 * 0x12 - XR16C2850. 967 * 0x14 - XR16C854. 968 */ 969 id1 = autoconfig_read_divisor_id(up); 970 DEBUG_AUTOCONF("850id=%04x ", id1); 971 972 id2 = id1 >> 8; 973 if (id2 == 0x10 || id2 == 0x12 || id2 == 0x14) { 974 up->port.type = PORT_16850; 975 return; 976 } 977 978 /* 979 * It wasn't an XR16C850. 980 * 981 * We distinguish between the '654 and the '650 by counting 982 * how many bytes are in the FIFO. I'm using this for now, 983 * since that's the technique that was sent to me in the 984 * serial driver update, but I'm not convinced this works. 985 * I've had problems doing this in the past. -TYT 986 */ 987 if (size_fifo(up) == 64) 988 up->port.type = PORT_16654; 989 else 990 up->port.type = PORT_16650V2; 991 } 992 993 /* 994 * We detected a chip without a FIFO. Only two fall into 995 * this category - the original 8250 and the 16450. The 996 * 16450 has a scratch register (accessible with LCR=0) 997 */ 998 static void autoconfig_8250(struct uart_8250_port *up) 999 { 1000 unsigned char scratch, status1, status2; 1001 1002 up->port.type = PORT_8250; 1003 1004 scratch = serial_in(up, UART_SCR); 1005 serial_out(up, UART_SCR, 0xa5); 1006 status1 = serial_in(up, UART_SCR); 1007 serial_out(up, UART_SCR, 0x5a); 1008 status2 = serial_in(up, UART_SCR); 1009 serial_out(up, UART_SCR, scratch); 1010 1011 if (status1 == 0xa5 && status2 == 0x5a) 1012 up->port.type = PORT_16450; 1013 } 1014 1015 static int broken_efr(struct uart_8250_port *up) 1016 { 1017 /* 1018 * Exar ST16C2550 "A2" devices incorrectly detect as 1019 * having an EFR, and report an ID of 0x0201. See 1020 * http://linux.derkeiler.com/Mailing-Lists/Kernel/2004-11/4812.html 1021 */ 1022 if (autoconfig_read_divisor_id(up) == 0x0201 && size_fifo(up) == 16) 1023 return 1; 1024 1025 return 0; 1026 } 1027 1028 /* 1029 * We know that the chip has FIFOs. Does it have an EFR? The 1030 * EFR is located in the same register position as the IIR and 1031 * we know the top two bits of the IIR are currently set. The 1032 * EFR should contain zero. Try to read the EFR. 1033 */ 1034 static void autoconfig_16550a(struct uart_8250_port *up) 1035 { 1036 unsigned char status1, status2; 1037 unsigned int iersave; 1038 1039 up->port.type = PORT_16550A; 1040 up->capabilities |= UART_CAP_FIFO; 1041 1042 if (!IS_ENABLED(CONFIG_SERIAL_8250_16550A_VARIANTS) && 1043 !(up->port.flags & UPF_FULL_PROBE)) 1044 return; 1045 1046 /* 1047 * Check for presence of the EFR when DLAB is set. 1048 * Only ST16C650V1 UARTs pass this test. 1049 */ 1050 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A); 1051 if (serial_in(up, UART_EFR) == 0) { 1052 serial_out(up, UART_EFR, 0xA8); 1053 if (serial_in(up, UART_EFR) != 0) { 1054 DEBUG_AUTOCONF("EFRv1 "); 1055 up->port.type = PORT_16650; 1056 up->capabilities |= UART_CAP_EFR | UART_CAP_SLEEP; 1057 } else { 1058 serial_out(up, UART_LCR, 0); 1059 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | 1060 UART_FCR7_64BYTE); 1061 status1 = serial_in(up, UART_IIR) & (UART_IIR_64BYTE_FIFO | 1062 UART_IIR_FIFO_ENABLED); 1063 serial_out(up, UART_FCR, 0); 1064 serial_out(up, UART_LCR, 0); 1065 1066 if (status1 == (UART_IIR_64BYTE_FIFO | UART_IIR_FIFO_ENABLED)) 1067 up->port.type = PORT_16550A_FSL64; 1068 else 1069 DEBUG_AUTOCONF("Motorola 8xxx DUART "); 1070 } 1071 serial_out(up, UART_EFR, 0); 1072 return; 1073 } 1074 1075 /* 1076 * Maybe it requires 0xbf to be written to the LCR. 1077 * (other ST16C650V2 UARTs, TI16C752A, etc) 1078 */ 1079 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); 1080 if (serial_in(up, UART_EFR) == 0 && !broken_efr(up)) { 1081 DEBUG_AUTOCONF("EFRv2 "); 1082 autoconfig_has_efr(up); 1083 return; 1084 } 1085 1086 /* 1087 * Check for a National Semiconductor SuperIO chip. 1088 * Attempt to switch to bank 2, read the value of the LOOP bit 1089 * from EXCR1. Switch back to bank 0, change it in MCR. Then 1090 * switch back to bank 2, read it from EXCR1 again and check 1091 * it's changed. If so, set baud_base in EXCR2 to 921600. -- dwmw2 1092 */ 1093 serial_out(up, UART_LCR, 0); 1094 status1 = serial8250_in_MCR(up); 1095 serial_out(up, UART_LCR, 0xE0); 1096 status2 = serial_in(up, 0x02); /* EXCR1 */ 1097 1098 if (!((status2 ^ status1) & UART_MCR_LOOP)) { 1099 serial_out(up, UART_LCR, 0); 1100 serial8250_out_MCR(up, status1 ^ UART_MCR_LOOP); 1101 serial_out(up, UART_LCR, 0xE0); 1102 status2 = serial_in(up, 0x02); /* EXCR1 */ 1103 serial_out(up, UART_LCR, 0); 1104 serial8250_out_MCR(up, status1); 1105 1106 if ((status2 ^ status1) & UART_MCR_LOOP) { 1107 unsigned short quot; 1108 1109 serial_out(up, UART_LCR, 0xE0); 1110 1111 quot = serial_dl_read(up); 1112 quot <<= 3; 1113 1114 if (ns16550a_goto_highspeed(up)) 1115 serial_dl_write(up, quot); 1116 1117 serial_out(up, UART_LCR, 0); 1118 1119 up->port.uartclk = 921600*16; 1120 up->port.type = PORT_NS16550A; 1121 up->capabilities |= UART_NATSEMI; 1122 return; 1123 } 1124 } 1125 1126 /* 1127 * No EFR. Try to detect a TI16750, which only sets bit 5 of 1128 * the IIR when 64 byte FIFO mode is enabled when DLAB is set. 1129 * Try setting it with and without DLAB set. Cheap clones 1130 * set bit 5 without DLAB set. 1131 */ 1132 serial_out(up, UART_LCR, 0); 1133 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE); 1134 status1 = serial_in(up, UART_IIR) & (UART_IIR_64BYTE_FIFO | UART_IIR_FIFO_ENABLED); 1135 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO); 1136 1137 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_A); 1138 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO | UART_FCR7_64BYTE); 1139 status2 = serial_in(up, UART_IIR) & (UART_IIR_64BYTE_FIFO | UART_IIR_FIFO_ENABLED); 1140 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO); 1141 1142 serial_out(up, UART_LCR, 0); 1143 1144 DEBUG_AUTOCONF("iir1=%d iir2=%d ", status1, status2); 1145 1146 if (status1 == UART_IIR_FIFO_ENABLED_16550A && 1147 status2 == (UART_IIR_64BYTE_FIFO | UART_IIR_FIFO_ENABLED_16550A)) { 1148 up->port.type = PORT_16750; 1149 up->capabilities |= UART_CAP_AFE | UART_CAP_SLEEP; 1150 return; 1151 } 1152 1153 /* 1154 * Try writing and reading the UART_IER_UUE bit (b6). 1155 * If it works, this is probably one of the Xscale platform's 1156 * internal UARTs. 1157 * We're going to explicitly set the UUE bit to 0 before 1158 * trying to write and read a 1 just to make sure it's not 1159 * already a 1 and maybe locked there before we even start. 1160 */ 1161 iersave = serial_in(up, UART_IER); 1162 serial_out(up, UART_IER, iersave & ~UART_IER_UUE); 1163 if (!(serial_in(up, UART_IER) & UART_IER_UUE)) { 1164 /* 1165 * OK it's in a known zero state, try writing and reading 1166 * without disturbing the current state of the other bits. 1167 */ 1168 serial_out(up, UART_IER, iersave | UART_IER_UUE); 1169 if (serial_in(up, UART_IER) & UART_IER_UUE) { 1170 /* 1171 * It's an Xscale. 1172 * We'll leave the UART_IER_UUE bit set to 1 (enabled). 1173 */ 1174 DEBUG_AUTOCONF("Xscale "); 1175 up->port.type = PORT_XSCALE; 1176 up->capabilities |= UART_CAP_UUE | UART_CAP_RTOIE; 1177 return; 1178 } 1179 } else { 1180 /* 1181 * If we got here we couldn't force the IER_UUE bit to 0. 1182 * Log it and continue. 1183 */ 1184 DEBUG_AUTOCONF("Couldn't force IER_UUE to 0 "); 1185 } 1186 serial_out(up, UART_IER, iersave); 1187 1188 /* 1189 * We distinguish between 16550A and U6 16550A by counting 1190 * how many bytes are in the FIFO. 1191 */ 1192 if (up->port.type == PORT_16550A && size_fifo(up) == 64) { 1193 up->port.type = PORT_U6_16550A; 1194 up->capabilities |= UART_CAP_AFE; 1195 } 1196 } 1197 1198 /* 1199 * This routine is called by rs_init() to initialize a specific serial 1200 * port. It determines what type of UART chip this serial port is 1201 * using: 8250, 16450, 16550, 16550A. The important question is 1202 * whether or not this UART is a 16550A or not, since this will 1203 * determine whether or not we can use its FIFO features or not. 1204 */ 1205 static void autoconfig(struct uart_8250_port *up) 1206 { 1207 unsigned char status1, scratch, scratch2, scratch3; 1208 unsigned char save_lcr, save_mcr; 1209 struct uart_port *port = &up->port; 1210 unsigned long flags; 1211 unsigned int old_capabilities; 1212 1213 if (!port->iobase && !port->mapbase && !port->membase) 1214 return; 1215 1216 DEBUG_AUTOCONF("%s: autoconf (0x%04lx, 0x%p): ", 1217 port->name, port->iobase, port->membase); 1218 1219 /* 1220 * We really do need global IRQs disabled here - we're going to 1221 * be frobbing the chips IRQ enable register to see if it exists. 1222 */ 1223 spin_lock_irqsave(&port->lock, flags); 1224 1225 up->capabilities = 0; 1226 up->bugs = 0; 1227 1228 if (!(port->flags & UPF_BUGGY_UART)) { 1229 /* 1230 * Do a simple existence test first; if we fail this, 1231 * there's no point trying anything else. 1232 * 1233 * 0x80 is used as a nonsense port to prevent against 1234 * false positives due to ISA bus float. The 1235 * assumption is that 0x80 is a non-existent port; 1236 * which should be safe since include/asm/io.h also 1237 * makes this assumption. 1238 * 1239 * Note: this is safe as long as MCR bit 4 is clear 1240 * and the device is in "PC" mode. 1241 */ 1242 scratch = serial_in(up, UART_IER); 1243 serial_out(up, UART_IER, 0); 1244 #ifdef __i386__ 1245 outb(0xff, 0x080); 1246 #endif 1247 /* 1248 * Mask out IER[7:4] bits for test as some UARTs (e.g. TL 1249 * 16C754B) allow only to modify them if an EFR bit is set. 1250 */ 1251 scratch2 = serial_in(up, UART_IER) & UART_IER_ALL_INTR; 1252 serial_out(up, UART_IER, UART_IER_ALL_INTR); 1253 #ifdef __i386__ 1254 outb(0, 0x080); 1255 #endif 1256 scratch3 = serial_in(up, UART_IER) & UART_IER_ALL_INTR; 1257 serial_out(up, UART_IER, scratch); 1258 if (scratch2 != 0 || scratch3 != UART_IER_ALL_INTR) { 1259 /* 1260 * We failed; there's nothing here 1261 */ 1262 spin_unlock_irqrestore(&port->lock, flags); 1263 DEBUG_AUTOCONF("IER test failed (%02x, %02x) ", 1264 scratch2, scratch3); 1265 goto out; 1266 } 1267 } 1268 1269 save_mcr = serial8250_in_MCR(up); 1270 save_lcr = serial_in(up, UART_LCR); 1271 1272 /* 1273 * Check to see if a UART is really there. Certain broken 1274 * internal modems based on the Rockwell chipset fail this 1275 * test, because they apparently don't implement the loopback 1276 * test mode. So this test is skipped on the COM 1 through 1277 * COM 4 ports. This *should* be safe, since no board 1278 * manufacturer would be stupid enough to design a board 1279 * that conflicts with COM 1-4 --- we hope! 1280 */ 1281 if (!(port->flags & UPF_SKIP_TEST)) { 1282 serial8250_out_MCR(up, UART_MCR_LOOP | UART_MCR_OUT2 | UART_MCR_RTS); 1283 status1 = serial_in(up, UART_MSR) & UART_MSR_STATUS_BITS; 1284 serial8250_out_MCR(up, save_mcr); 1285 if (status1 != (UART_MSR_DCD | UART_MSR_CTS)) { 1286 spin_unlock_irqrestore(&port->lock, flags); 1287 DEBUG_AUTOCONF("LOOP test failed (%02x) ", 1288 status1); 1289 goto out; 1290 } 1291 } 1292 1293 /* 1294 * We're pretty sure there's a port here. Lets find out what 1295 * type of port it is. The IIR top two bits allows us to find 1296 * out if it's 8250 or 16450, 16550, 16550A or later. This 1297 * determines what we test for next. 1298 * 1299 * We also initialise the EFR (if any) to zero for later. The 1300 * EFR occupies the same register location as the FCR and IIR. 1301 */ 1302 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); 1303 serial_out(up, UART_EFR, 0); 1304 serial_out(up, UART_LCR, 0); 1305 1306 serial_out(up, UART_FCR, UART_FCR_ENABLE_FIFO); 1307 1308 switch (serial_in(up, UART_IIR) & UART_IIR_FIFO_ENABLED) { 1309 case UART_IIR_FIFO_ENABLED_8250: 1310 autoconfig_8250(up); 1311 break; 1312 case UART_IIR_FIFO_ENABLED_16550: 1313 port->type = PORT_16550; 1314 break; 1315 case UART_IIR_FIFO_ENABLED_16550A: 1316 autoconfig_16550a(up); 1317 break; 1318 default: 1319 port->type = PORT_UNKNOWN; 1320 break; 1321 } 1322 1323 #ifdef CONFIG_SERIAL_8250_RSA 1324 /* 1325 * Only probe for RSA ports if we got the region. 1326 */ 1327 if (port->type == PORT_16550A && up->probe & UART_PROBE_RSA && 1328 __enable_rsa(up)) 1329 port->type = PORT_RSA; 1330 #endif 1331 1332 serial_out(up, UART_LCR, save_lcr); 1333 1334 port->fifosize = uart_config[up->port.type].fifo_size; 1335 old_capabilities = up->capabilities; 1336 up->capabilities = uart_config[port->type].flags; 1337 up->tx_loadsz = uart_config[port->type].tx_loadsz; 1338 1339 if (port->type == PORT_UNKNOWN) 1340 goto out_unlock; 1341 1342 /* 1343 * Reset the UART. 1344 */ 1345 #ifdef CONFIG_SERIAL_8250_RSA 1346 if (port->type == PORT_RSA) 1347 serial_out(up, UART_RSA_FRR, 0); 1348 #endif 1349 serial8250_out_MCR(up, save_mcr); 1350 serial8250_clear_fifos(up); 1351 serial_in(up, UART_RX); 1352 serial8250_clear_IER(up); 1353 1354 out_unlock: 1355 spin_unlock_irqrestore(&port->lock, flags); 1356 1357 /* 1358 * Check if the device is a Fintek F81216A 1359 */ 1360 if (port->type == PORT_16550A && port->iotype == UPIO_PORT) 1361 fintek_8250_probe(up); 1362 1363 if (up->capabilities != old_capabilities) { 1364 dev_warn(port->dev, "detected caps %08x should be %08x\n", 1365 old_capabilities, up->capabilities); 1366 } 1367 out: 1368 DEBUG_AUTOCONF("iir=%d ", scratch); 1369 DEBUG_AUTOCONF("type=%s\n", uart_config[port->type].name); 1370 } 1371 1372 static void autoconfig_irq(struct uart_8250_port *up) 1373 { 1374 struct uart_port *port = &up->port; 1375 unsigned char save_mcr, save_ier; 1376 unsigned char save_ICP = 0; 1377 unsigned int ICP = 0; 1378 unsigned long irqs; 1379 int irq; 1380 1381 if (port->flags & UPF_FOURPORT) { 1382 ICP = (port->iobase & 0xfe0) | 0x1f; 1383 save_ICP = inb_p(ICP); 1384 outb_p(0x80, ICP); 1385 inb_p(ICP); 1386 } 1387 1388 if (uart_console(port)) 1389 console_lock(); 1390 1391 /* forget possible initially masked and pending IRQ */ 1392 probe_irq_off(probe_irq_on()); 1393 save_mcr = serial8250_in_MCR(up); 1394 save_ier = serial_in(up, UART_IER); 1395 serial8250_out_MCR(up, UART_MCR_OUT1 | UART_MCR_OUT2); 1396 1397 irqs = probe_irq_on(); 1398 serial8250_out_MCR(up, 0); 1399 udelay(10); 1400 if (port->flags & UPF_FOURPORT) { 1401 serial8250_out_MCR(up, UART_MCR_DTR | UART_MCR_RTS); 1402 } else { 1403 serial8250_out_MCR(up, 1404 UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2); 1405 } 1406 serial_out(up, UART_IER, UART_IER_ALL_INTR); 1407 serial_in(up, UART_LSR); 1408 serial_in(up, UART_RX); 1409 serial_in(up, UART_IIR); 1410 serial_in(up, UART_MSR); 1411 serial_out(up, UART_TX, 0xFF); 1412 udelay(20); 1413 irq = probe_irq_off(irqs); 1414 1415 serial8250_out_MCR(up, save_mcr); 1416 serial_out(up, UART_IER, save_ier); 1417 1418 if (port->flags & UPF_FOURPORT) 1419 outb_p(save_ICP, ICP); 1420 1421 if (uart_console(port)) 1422 console_unlock(); 1423 1424 port->irq = (irq > 0) ? irq : 0; 1425 } 1426 1427 static void serial8250_stop_rx(struct uart_port *port) 1428 { 1429 struct uart_8250_port *up = up_to_u8250p(port); 1430 1431 serial8250_rpm_get(up); 1432 1433 up->ier &= ~(UART_IER_RLSI | UART_IER_RDI); 1434 up->port.read_status_mask &= ~UART_LSR_DR; 1435 serial_port_out(port, UART_IER, up->ier); 1436 1437 serial8250_rpm_put(up); 1438 } 1439 1440 /** 1441 * serial8250_em485_stop_tx() - generic ->rs485_stop_tx() callback 1442 * @p: uart 8250 port 1443 * 1444 * Generic callback usable by 8250 uart drivers to stop rs485 transmission. 1445 */ 1446 void serial8250_em485_stop_tx(struct uart_8250_port *p) 1447 { 1448 unsigned char mcr = serial8250_in_MCR(p); 1449 1450 if (p->port.rs485.flags & SER_RS485_RTS_AFTER_SEND) 1451 mcr |= UART_MCR_RTS; 1452 else 1453 mcr &= ~UART_MCR_RTS; 1454 serial8250_out_MCR(p, mcr); 1455 1456 /* 1457 * Empty the RX FIFO, we are not interested in anything 1458 * received during the half-duplex transmission. 1459 * Enable previously disabled RX interrupts. 1460 */ 1461 if (!(p->port.rs485.flags & SER_RS485_RX_DURING_TX)) { 1462 serial8250_clear_and_reinit_fifos(p); 1463 1464 p->ier |= UART_IER_RLSI | UART_IER_RDI; 1465 serial_port_out(&p->port, UART_IER, p->ier); 1466 } 1467 } 1468 EXPORT_SYMBOL_GPL(serial8250_em485_stop_tx); 1469 1470 static enum hrtimer_restart serial8250_em485_handle_stop_tx(struct hrtimer *t) 1471 { 1472 struct uart_8250_em485 *em485 = container_of(t, struct uart_8250_em485, 1473 stop_tx_timer); 1474 struct uart_8250_port *p = em485->port; 1475 unsigned long flags; 1476 1477 serial8250_rpm_get(p); 1478 spin_lock_irqsave(&p->port.lock, flags); 1479 if (em485->active_timer == &em485->stop_tx_timer) { 1480 p->rs485_stop_tx(p); 1481 em485->active_timer = NULL; 1482 em485->tx_stopped = true; 1483 } 1484 spin_unlock_irqrestore(&p->port.lock, flags); 1485 serial8250_rpm_put(p); 1486 1487 return HRTIMER_NORESTART; 1488 } 1489 1490 static void start_hrtimer_ms(struct hrtimer *hrt, unsigned long msec) 1491 { 1492 hrtimer_start(hrt, ms_to_ktime(msec), HRTIMER_MODE_REL); 1493 } 1494 1495 static void __stop_tx_rs485(struct uart_8250_port *p, u64 stop_delay) 1496 { 1497 struct uart_8250_em485 *em485 = p->em485; 1498 1499 stop_delay += (u64)p->port.rs485.delay_rts_after_send * NSEC_PER_MSEC; 1500 1501 /* 1502 * rs485_stop_tx() is going to set RTS according to config 1503 * AND flush RX FIFO if required. 1504 */ 1505 if (stop_delay > 0) { 1506 em485->active_timer = &em485->stop_tx_timer; 1507 hrtimer_start(&em485->stop_tx_timer, ns_to_ktime(stop_delay), HRTIMER_MODE_REL); 1508 } else { 1509 p->rs485_stop_tx(p); 1510 em485->active_timer = NULL; 1511 em485->tx_stopped = true; 1512 } 1513 } 1514 1515 static inline void __stop_tx(struct uart_8250_port *p) 1516 { 1517 struct uart_8250_em485 *em485 = p->em485; 1518 1519 if (em485) { 1520 u16 lsr = serial_lsr_in(p); 1521 u64 stop_delay = 0; 1522 1523 if (!(lsr & UART_LSR_THRE)) 1524 return; 1525 /* 1526 * To provide required timing and allow FIFO transfer, 1527 * __stop_tx_rs485() must be called only when both FIFO and 1528 * shift register are empty. The device driver should either 1529 * enable interrupt on TEMT or set UART_CAP_NOTEMT that will 1530 * enlarge stop_tx_timer by the tx time of one frame to cover 1531 * for emptying of the shift register. 1532 */ 1533 if (!(lsr & UART_LSR_TEMT)) { 1534 if (!(p->capabilities & UART_CAP_NOTEMT)) 1535 return; 1536 /* 1537 * RTS might get deasserted too early with the normal 1538 * frame timing formula. It seems to suggest THRE might 1539 * get asserted already during tx of the stop bit 1540 * rather than after it is fully sent. 1541 * Roughly estimate 1 extra bit here with / 7. 1542 */ 1543 stop_delay = p->port.frame_time + DIV_ROUND_UP(p->port.frame_time, 7); 1544 } 1545 1546 __stop_tx_rs485(p, stop_delay); 1547 } 1548 1549 if (serial8250_clear_THRI(p)) 1550 serial8250_rpm_put_tx(p); 1551 } 1552 1553 static void serial8250_stop_tx(struct uart_port *port) 1554 { 1555 struct uart_8250_port *up = up_to_u8250p(port); 1556 1557 serial8250_rpm_get(up); 1558 __stop_tx(up); 1559 1560 /* 1561 * We really want to stop the transmitter from sending. 1562 */ 1563 if (port->type == PORT_16C950) { 1564 up->acr |= UART_ACR_TXDIS; 1565 serial_icr_write(up, UART_ACR, up->acr); 1566 } 1567 serial8250_rpm_put(up); 1568 } 1569 1570 static inline void __start_tx(struct uart_port *port) 1571 { 1572 struct uart_8250_port *up = up_to_u8250p(port); 1573 1574 if (up->dma && !up->dma->tx_dma(up)) 1575 return; 1576 1577 if (serial8250_set_THRI(up)) { 1578 if (up->bugs & UART_BUG_TXEN) { 1579 u16 lsr = serial_lsr_in(up); 1580 1581 if (lsr & UART_LSR_THRE) 1582 serial8250_tx_chars(up); 1583 } 1584 } 1585 1586 /* 1587 * Re-enable the transmitter if we disabled it. 1588 */ 1589 if (port->type == PORT_16C950 && up->acr & UART_ACR_TXDIS) { 1590 up->acr &= ~UART_ACR_TXDIS; 1591 serial_icr_write(up, UART_ACR, up->acr); 1592 } 1593 } 1594 1595 /** 1596 * serial8250_em485_start_tx() - generic ->rs485_start_tx() callback 1597 * @up: uart 8250 port 1598 * 1599 * Generic callback usable by 8250 uart drivers to start rs485 transmission. 1600 * Assumes that setting the RTS bit in the MCR register means RTS is high. 1601 * (Some chips use inverse semantics.) Further assumes that reception is 1602 * stoppable by disabling the UART_IER_RDI interrupt. (Some chips set the 1603 * UART_LSR_DR bit even when UART_IER_RDI is disabled, foiling this approach.) 1604 */ 1605 void serial8250_em485_start_tx(struct uart_8250_port *up) 1606 { 1607 unsigned char mcr = serial8250_in_MCR(up); 1608 1609 if (!(up->port.rs485.flags & SER_RS485_RX_DURING_TX)) 1610 serial8250_stop_rx(&up->port); 1611 1612 if (up->port.rs485.flags & SER_RS485_RTS_ON_SEND) 1613 mcr |= UART_MCR_RTS; 1614 else 1615 mcr &= ~UART_MCR_RTS; 1616 serial8250_out_MCR(up, mcr); 1617 } 1618 EXPORT_SYMBOL_GPL(serial8250_em485_start_tx); 1619 1620 /* Returns false, if start_tx_timer was setup to defer TX start */ 1621 static bool start_tx_rs485(struct uart_port *port) 1622 { 1623 struct uart_8250_port *up = up_to_u8250p(port); 1624 struct uart_8250_em485 *em485 = up->em485; 1625 1626 /* 1627 * While serial8250_em485_handle_stop_tx() is a noop if 1628 * em485->active_timer != &em485->stop_tx_timer, it might happen that 1629 * the timer is still armed and triggers only after the current bunch of 1630 * chars is send and em485->active_timer == &em485->stop_tx_timer again. 1631 * So cancel the timer. There is still a theoretical race condition if 1632 * the timer is already running and only comes around to check for 1633 * em485->active_timer when &em485->stop_tx_timer is armed again. 1634 */ 1635 if (em485->active_timer == &em485->stop_tx_timer) 1636 hrtimer_try_to_cancel(&em485->stop_tx_timer); 1637 1638 em485->active_timer = NULL; 1639 1640 if (em485->tx_stopped) { 1641 em485->tx_stopped = false; 1642 1643 up->rs485_start_tx(up); 1644 1645 if (up->port.rs485.delay_rts_before_send > 0) { 1646 em485->active_timer = &em485->start_tx_timer; 1647 start_hrtimer_ms(&em485->start_tx_timer, 1648 up->port.rs485.delay_rts_before_send); 1649 return false; 1650 } 1651 } 1652 1653 return true; 1654 } 1655 1656 static enum hrtimer_restart serial8250_em485_handle_start_tx(struct hrtimer *t) 1657 { 1658 struct uart_8250_em485 *em485 = container_of(t, struct uart_8250_em485, 1659 start_tx_timer); 1660 struct uart_8250_port *p = em485->port; 1661 unsigned long flags; 1662 1663 spin_lock_irqsave(&p->port.lock, flags); 1664 if (em485->active_timer == &em485->start_tx_timer) { 1665 __start_tx(&p->port); 1666 em485->active_timer = NULL; 1667 } 1668 spin_unlock_irqrestore(&p->port.lock, flags); 1669 1670 return HRTIMER_NORESTART; 1671 } 1672 1673 static void serial8250_start_tx(struct uart_port *port) 1674 { 1675 struct uart_8250_port *up = up_to_u8250p(port); 1676 struct uart_8250_em485 *em485 = up->em485; 1677 1678 if (!port->x_char && uart_circ_empty(&port->state->xmit)) 1679 return; 1680 1681 serial8250_rpm_get_tx(up); 1682 1683 if (em485) { 1684 if ((em485->active_timer == &em485->start_tx_timer) || 1685 !start_tx_rs485(port)) 1686 return; 1687 } 1688 __start_tx(port); 1689 } 1690 1691 static void serial8250_throttle(struct uart_port *port) 1692 { 1693 port->throttle(port); 1694 } 1695 1696 static void serial8250_unthrottle(struct uart_port *port) 1697 { 1698 port->unthrottle(port); 1699 } 1700 1701 static void serial8250_disable_ms(struct uart_port *port) 1702 { 1703 struct uart_8250_port *up = up_to_u8250p(port); 1704 1705 /* no MSR capabilities */ 1706 if (up->bugs & UART_BUG_NOMSR) 1707 return; 1708 1709 mctrl_gpio_disable_ms(up->gpios); 1710 1711 up->ier &= ~UART_IER_MSI; 1712 serial_port_out(port, UART_IER, up->ier); 1713 } 1714 1715 static void serial8250_enable_ms(struct uart_port *port) 1716 { 1717 struct uart_8250_port *up = up_to_u8250p(port); 1718 1719 /* no MSR capabilities */ 1720 if (up->bugs & UART_BUG_NOMSR) 1721 return; 1722 1723 mctrl_gpio_enable_ms(up->gpios); 1724 1725 up->ier |= UART_IER_MSI; 1726 1727 serial8250_rpm_get(up); 1728 serial_port_out(port, UART_IER, up->ier); 1729 serial8250_rpm_put(up); 1730 } 1731 1732 void serial8250_read_char(struct uart_8250_port *up, u16 lsr) 1733 { 1734 struct uart_port *port = &up->port; 1735 unsigned char ch; 1736 char flag = TTY_NORMAL; 1737 1738 if (likely(lsr & UART_LSR_DR)) 1739 ch = serial_in(up, UART_RX); 1740 else 1741 /* 1742 * Intel 82571 has a Serial Over Lan device that will 1743 * set UART_LSR_BI without setting UART_LSR_DR when 1744 * it receives a break. To avoid reading from the 1745 * receive buffer without UART_LSR_DR bit set, we 1746 * just force the read character to be 0 1747 */ 1748 ch = 0; 1749 1750 port->icount.rx++; 1751 1752 lsr |= up->lsr_saved_flags; 1753 up->lsr_saved_flags = 0; 1754 1755 if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) { 1756 if (lsr & UART_LSR_BI) { 1757 lsr &= ~(UART_LSR_FE | UART_LSR_PE); 1758 port->icount.brk++; 1759 /* 1760 * We do the SysRQ and SAK checking 1761 * here because otherwise the break 1762 * may get masked by ignore_status_mask 1763 * or read_status_mask. 1764 */ 1765 if (uart_handle_break(port)) 1766 return; 1767 } else if (lsr & UART_LSR_PE) 1768 port->icount.parity++; 1769 else if (lsr & UART_LSR_FE) 1770 port->icount.frame++; 1771 if (lsr & UART_LSR_OE) 1772 port->icount.overrun++; 1773 1774 /* 1775 * Mask off conditions which should be ignored. 1776 */ 1777 lsr &= port->read_status_mask; 1778 1779 if (lsr & UART_LSR_BI) { 1780 dev_dbg(port->dev, "handling break\n"); 1781 flag = TTY_BREAK; 1782 } else if (lsr & UART_LSR_PE) 1783 flag = TTY_PARITY; 1784 else if (lsr & UART_LSR_FE) 1785 flag = TTY_FRAME; 1786 } 1787 if (uart_prepare_sysrq_char(port, ch)) 1788 return; 1789 1790 uart_insert_char(port, lsr, UART_LSR_OE, ch, flag); 1791 } 1792 EXPORT_SYMBOL_GPL(serial8250_read_char); 1793 1794 /* 1795 * serial8250_rx_chars - Read characters. The first LSR value must be passed in. 1796 * 1797 * Returns LSR bits. The caller should rely only on non-Rx related LSR bits 1798 * (such as THRE) because the LSR value might come from an already consumed 1799 * character. 1800 */ 1801 u16 serial8250_rx_chars(struct uart_8250_port *up, u16 lsr) 1802 { 1803 struct uart_port *port = &up->port; 1804 int max_count = 256; 1805 1806 do { 1807 serial8250_read_char(up, lsr); 1808 if (--max_count == 0) 1809 break; 1810 lsr = serial_in(up, UART_LSR); 1811 } while (lsr & (UART_LSR_DR | UART_LSR_BI)); 1812 1813 tty_flip_buffer_push(&port->state->port); 1814 return lsr; 1815 } 1816 EXPORT_SYMBOL_GPL(serial8250_rx_chars); 1817 1818 void serial8250_tx_chars(struct uart_8250_port *up) 1819 { 1820 struct uart_port *port = &up->port; 1821 struct circ_buf *xmit = &port->state->xmit; 1822 int count; 1823 1824 if (port->x_char) { 1825 uart_xchar_out(port, UART_TX); 1826 return; 1827 } 1828 if (uart_tx_stopped(port)) { 1829 serial8250_stop_tx(port); 1830 return; 1831 } 1832 if (uart_circ_empty(xmit)) { 1833 __stop_tx(up); 1834 return; 1835 } 1836 1837 count = up->tx_loadsz; 1838 do { 1839 serial_out(up, UART_TX, xmit->buf[xmit->tail]); 1840 if (up->bugs & UART_BUG_TXRACE) { 1841 /* 1842 * The Aspeed BMC virtual UARTs have a bug where data 1843 * may get stuck in the BMC's Tx FIFO from bursts of 1844 * writes on the APB interface. 1845 * 1846 * Delay back-to-back writes by a read cycle to avoid 1847 * stalling the VUART. Read a register that won't have 1848 * side-effects and discard the result. 1849 */ 1850 serial_in(up, UART_SCR); 1851 } 1852 uart_xmit_advance(port, 1); 1853 if (uart_circ_empty(xmit)) 1854 break; 1855 if ((up->capabilities & UART_CAP_HFIFO) && 1856 !uart_lsr_tx_empty(serial_in(up, UART_LSR))) 1857 break; 1858 /* The BCM2835 MINI UART THRE bit is really a not-full bit. */ 1859 if ((up->capabilities & UART_CAP_MINI) && 1860 !(serial_in(up, UART_LSR) & UART_LSR_THRE)) 1861 break; 1862 } while (--count > 0); 1863 1864 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) 1865 uart_write_wakeup(port); 1866 1867 /* 1868 * With RPM enabled, we have to wait until the FIFO is empty before the 1869 * HW can go idle. So we get here once again with empty FIFO and disable 1870 * the interrupt and RPM in __stop_tx() 1871 */ 1872 if (uart_circ_empty(xmit) && !(up->capabilities & UART_CAP_RPM)) 1873 __stop_tx(up); 1874 } 1875 EXPORT_SYMBOL_GPL(serial8250_tx_chars); 1876 1877 /* Caller holds uart port lock */ 1878 unsigned int serial8250_modem_status(struct uart_8250_port *up) 1879 { 1880 struct uart_port *port = &up->port; 1881 unsigned int status = serial_in(up, UART_MSR); 1882 1883 status |= up->msr_saved_flags; 1884 up->msr_saved_flags = 0; 1885 if (status & UART_MSR_ANY_DELTA && up->ier & UART_IER_MSI && 1886 port->state != NULL) { 1887 if (status & UART_MSR_TERI) 1888 port->icount.rng++; 1889 if (status & UART_MSR_DDSR) 1890 port->icount.dsr++; 1891 if (status & UART_MSR_DDCD) 1892 uart_handle_dcd_change(port, status & UART_MSR_DCD); 1893 if (status & UART_MSR_DCTS) 1894 uart_handle_cts_change(port, status & UART_MSR_CTS); 1895 1896 wake_up_interruptible(&port->state->port.delta_msr_wait); 1897 } 1898 1899 return status; 1900 } 1901 EXPORT_SYMBOL_GPL(serial8250_modem_status); 1902 1903 static bool handle_rx_dma(struct uart_8250_port *up, unsigned int iir) 1904 { 1905 switch (iir & 0x3f) { 1906 case UART_IIR_RDI: 1907 if (!up->dma->rx_running) 1908 break; 1909 fallthrough; 1910 case UART_IIR_RLSI: 1911 case UART_IIR_RX_TIMEOUT: 1912 serial8250_rx_dma_flush(up); 1913 return true; 1914 } 1915 return up->dma->rx_dma(up); 1916 } 1917 1918 /* 1919 * This handles the interrupt from one port. 1920 */ 1921 int serial8250_handle_irq(struct uart_port *port, unsigned int iir) 1922 { 1923 struct uart_8250_port *up = up_to_u8250p(port); 1924 bool skip_rx = false; 1925 unsigned long flags; 1926 u16 status; 1927 1928 if (iir & UART_IIR_NO_INT) 1929 return 0; 1930 1931 spin_lock_irqsave(&port->lock, flags); 1932 1933 status = serial_lsr_in(up); 1934 1935 /* 1936 * If port is stopped and there are no error conditions in the 1937 * FIFO, then don't drain the FIFO, as this may lead to TTY buffer 1938 * overflow. Not servicing, RX FIFO would trigger auto HW flow 1939 * control when FIFO occupancy reaches preset threshold, thus 1940 * halting RX. This only works when auto HW flow control is 1941 * available. 1942 */ 1943 if (!(status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS)) && 1944 (port->status & (UPSTAT_AUTOCTS | UPSTAT_AUTORTS)) && 1945 !(port->read_status_mask & UART_LSR_DR)) 1946 skip_rx = true; 1947 1948 if (status & (UART_LSR_DR | UART_LSR_BI) && !skip_rx) { 1949 if (!up->dma || handle_rx_dma(up, iir)) 1950 status = serial8250_rx_chars(up, status); 1951 } 1952 serial8250_modem_status(up); 1953 if ((status & UART_LSR_THRE) && (up->ier & UART_IER_THRI)) { 1954 if (!up->dma || up->dma->tx_err) 1955 serial8250_tx_chars(up); 1956 else if (!up->dma->tx_running) 1957 __stop_tx(up); 1958 } 1959 1960 uart_unlock_and_check_sysrq_irqrestore(port, flags); 1961 1962 return 1; 1963 } 1964 EXPORT_SYMBOL_GPL(serial8250_handle_irq); 1965 1966 static int serial8250_default_handle_irq(struct uart_port *port) 1967 { 1968 struct uart_8250_port *up = up_to_u8250p(port); 1969 unsigned int iir; 1970 int ret; 1971 1972 serial8250_rpm_get(up); 1973 1974 iir = serial_port_in(port, UART_IIR); 1975 ret = serial8250_handle_irq(port, iir); 1976 1977 serial8250_rpm_put(up); 1978 return ret; 1979 } 1980 1981 /* 1982 * Newer 16550 compatible parts such as the SC16C650 & Altera 16550 Soft IP 1983 * have a programmable TX threshold that triggers the THRE interrupt in 1984 * the IIR register. In this case, the THRE interrupt indicates the FIFO 1985 * has space available. Load it up with tx_loadsz bytes. 1986 */ 1987 static int serial8250_tx_threshold_handle_irq(struct uart_port *port) 1988 { 1989 unsigned long flags; 1990 unsigned int iir = serial_port_in(port, UART_IIR); 1991 1992 /* TX Threshold IRQ triggered so load up FIFO */ 1993 if ((iir & UART_IIR_ID) == UART_IIR_THRI) { 1994 struct uart_8250_port *up = up_to_u8250p(port); 1995 1996 spin_lock_irqsave(&port->lock, flags); 1997 serial8250_tx_chars(up); 1998 spin_unlock_irqrestore(&port->lock, flags); 1999 } 2000 2001 iir = serial_port_in(port, UART_IIR); 2002 return serial8250_handle_irq(port, iir); 2003 } 2004 2005 static unsigned int serial8250_tx_empty(struct uart_port *port) 2006 { 2007 struct uart_8250_port *up = up_to_u8250p(port); 2008 unsigned long flags; 2009 u16 lsr; 2010 2011 serial8250_rpm_get(up); 2012 2013 spin_lock_irqsave(&port->lock, flags); 2014 lsr = serial_lsr_in(up); 2015 spin_unlock_irqrestore(&port->lock, flags); 2016 2017 serial8250_rpm_put(up); 2018 2019 return uart_lsr_tx_empty(lsr) ? TIOCSER_TEMT : 0; 2020 } 2021 2022 unsigned int serial8250_do_get_mctrl(struct uart_port *port) 2023 { 2024 struct uart_8250_port *up = up_to_u8250p(port); 2025 unsigned int status; 2026 unsigned int val; 2027 2028 serial8250_rpm_get(up); 2029 status = serial8250_modem_status(up); 2030 serial8250_rpm_put(up); 2031 2032 val = serial8250_MSR_to_TIOCM(status); 2033 if (up->gpios) 2034 return mctrl_gpio_get(up->gpios, &val); 2035 2036 return val; 2037 } 2038 EXPORT_SYMBOL_GPL(serial8250_do_get_mctrl); 2039 2040 static unsigned int serial8250_get_mctrl(struct uart_port *port) 2041 { 2042 if (port->get_mctrl) 2043 return port->get_mctrl(port); 2044 return serial8250_do_get_mctrl(port); 2045 } 2046 2047 void serial8250_do_set_mctrl(struct uart_port *port, unsigned int mctrl) 2048 { 2049 struct uart_8250_port *up = up_to_u8250p(port); 2050 unsigned char mcr; 2051 2052 mcr = serial8250_TIOCM_to_MCR(mctrl); 2053 2054 mcr |= up->mcr; 2055 2056 serial8250_out_MCR(up, mcr); 2057 } 2058 EXPORT_SYMBOL_GPL(serial8250_do_set_mctrl); 2059 2060 static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl) 2061 { 2062 if (port->rs485.flags & SER_RS485_ENABLED) 2063 return; 2064 2065 if (port->set_mctrl) 2066 port->set_mctrl(port, mctrl); 2067 else 2068 serial8250_do_set_mctrl(port, mctrl); 2069 } 2070 2071 static void serial8250_break_ctl(struct uart_port *port, int break_state) 2072 { 2073 struct uart_8250_port *up = up_to_u8250p(port); 2074 unsigned long flags; 2075 2076 serial8250_rpm_get(up); 2077 spin_lock_irqsave(&port->lock, flags); 2078 if (break_state == -1) 2079 up->lcr |= UART_LCR_SBC; 2080 else 2081 up->lcr &= ~UART_LCR_SBC; 2082 serial_port_out(port, UART_LCR, up->lcr); 2083 spin_unlock_irqrestore(&port->lock, flags); 2084 serial8250_rpm_put(up); 2085 } 2086 2087 static void wait_for_lsr(struct uart_8250_port *up, int bits) 2088 { 2089 unsigned int status, tmout = 10000; 2090 2091 /* Wait up to 10ms for the character(s) to be sent. */ 2092 for (;;) { 2093 status = serial_lsr_in(up); 2094 2095 if ((status & bits) == bits) 2096 break; 2097 if (--tmout == 0) 2098 break; 2099 udelay(1); 2100 touch_nmi_watchdog(); 2101 } 2102 } 2103 2104 /* 2105 * Wait for transmitter & holding register to empty 2106 */ 2107 static void wait_for_xmitr(struct uart_8250_port *up, int bits) 2108 { 2109 unsigned int tmout; 2110 2111 wait_for_lsr(up, bits); 2112 2113 /* Wait up to 1s for flow control if necessary */ 2114 if (up->port.flags & UPF_CONS_FLOW) { 2115 for (tmout = 1000000; tmout; tmout--) { 2116 unsigned int msr = serial_in(up, UART_MSR); 2117 up->msr_saved_flags |= msr & MSR_SAVE_FLAGS; 2118 if (msr & UART_MSR_CTS) 2119 break; 2120 udelay(1); 2121 touch_nmi_watchdog(); 2122 } 2123 } 2124 } 2125 2126 #ifdef CONFIG_CONSOLE_POLL 2127 /* 2128 * Console polling routines for writing and reading from the uart while 2129 * in an interrupt or debug context. 2130 */ 2131 2132 static int serial8250_get_poll_char(struct uart_port *port) 2133 { 2134 struct uart_8250_port *up = up_to_u8250p(port); 2135 int status; 2136 u16 lsr; 2137 2138 serial8250_rpm_get(up); 2139 2140 lsr = serial_port_in(port, UART_LSR); 2141 2142 if (!(lsr & UART_LSR_DR)) { 2143 status = NO_POLL_CHAR; 2144 goto out; 2145 } 2146 2147 status = serial_port_in(port, UART_RX); 2148 out: 2149 serial8250_rpm_put(up); 2150 return status; 2151 } 2152 2153 2154 static void serial8250_put_poll_char(struct uart_port *port, 2155 unsigned char c) 2156 { 2157 unsigned int ier; 2158 struct uart_8250_port *up = up_to_u8250p(port); 2159 2160 serial8250_rpm_get(up); 2161 /* 2162 * First save the IER then disable the interrupts 2163 */ 2164 ier = serial_port_in(port, UART_IER); 2165 serial8250_clear_IER(up); 2166 2167 wait_for_xmitr(up, UART_LSR_BOTH_EMPTY); 2168 /* 2169 * Send the character out. 2170 */ 2171 serial_port_out(port, UART_TX, c); 2172 2173 /* 2174 * Finally, wait for transmitter to become empty 2175 * and restore the IER 2176 */ 2177 wait_for_xmitr(up, UART_LSR_BOTH_EMPTY); 2178 serial_port_out(port, UART_IER, ier); 2179 serial8250_rpm_put(up); 2180 } 2181 2182 #endif /* CONFIG_CONSOLE_POLL */ 2183 2184 int serial8250_do_startup(struct uart_port *port) 2185 { 2186 struct uart_8250_port *up = up_to_u8250p(port); 2187 unsigned long flags; 2188 unsigned char iir; 2189 int retval; 2190 u16 lsr; 2191 2192 if (!port->fifosize) 2193 port->fifosize = uart_config[port->type].fifo_size; 2194 if (!up->tx_loadsz) 2195 up->tx_loadsz = uart_config[port->type].tx_loadsz; 2196 if (!up->capabilities) 2197 up->capabilities = uart_config[port->type].flags; 2198 up->mcr = 0; 2199 2200 if (port->iotype != up->cur_iotype) 2201 set_io_from_upio(port); 2202 2203 serial8250_rpm_get(up); 2204 if (port->type == PORT_16C950) { 2205 /* Wake up and initialize UART */ 2206 up->acr = 0; 2207 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B); 2208 serial_port_out(port, UART_EFR, UART_EFR_ECB); 2209 serial_port_out(port, UART_IER, 0); 2210 serial_port_out(port, UART_LCR, 0); 2211 serial_icr_write(up, UART_CSR, 0); /* Reset the UART */ 2212 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B); 2213 serial_port_out(port, UART_EFR, UART_EFR_ECB); 2214 serial_port_out(port, UART_LCR, 0); 2215 } 2216 2217 if (port->type == PORT_DA830) { 2218 /* Reset the port */ 2219 serial_port_out(port, UART_IER, 0); 2220 serial_port_out(port, UART_DA830_PWREMU_MGMT, 0); 2221 mdelay(10); 2222 2223 /* Enable Tx, Rx and free run mode */ 2224 serial_port_out(port, UART_DA830_PWREMU_MGMT, 2225 UART_DA830_PWREMU_MGMT_UTRST | 2226 UART_DA830_PWREMU_MGMT_URRST | 2227 UART_DA830_PWREMU_MGMT_FREE); 2228 } 2229 2230 if (port->type == PORT_NPCM) { 2231 /* 2232 * Nuvoton calls the scratch register 'UART_TOR' (timeout 2233 * register). Enable it, and set TIOC (timeout interrupt 2234 * comparator) to be 0x20 for correct operation. 2235 */ 2236 serial_port_out(port, UART_NPCM_TOR, UART_NPCM_TOIE | 0x20); 2237 } 2238 2239 #ifdef CONFIG_SERIAL_8250_RSA 2240 /* 2241 * If this is an RSA port, see if we can kick it up to the 2242 * higher speed clock. 2243 */ 2244 enable_rsa(up); 2245 #endif 2246 2247 /* 2248 * Clear the FIFO buffers and disable them. 2249 * (they will be reenabled in set_termios()) 2250 */ 2251 serial8250_clear_fifos(up); 2252 2253 /* 2254 * Clear the interrupt registers. 2255 */ 2256 serial_port_in(port, UART_LSR); 2257 serial_port_in(port, UART_RX); 2258 serial_port_in(port, UART_IIR); 2259 serial_port_in(port, UART_MSR); 2260 2261 /* 2262 * At this point, there's no way the LSR could still be 0xff; 2263 * if it is, then bail out, because there's likely no UART 2264 * here. 2265 */ 2266 if (!(port->flags & UPF_BUGGY_UART) && 2267 (serial_port_in(port, UART_LSR) == 0xff)) { 2268 dev_info_ratelimited(port->dev, "LSR safety check engaged!\n"); 2269 retval = -ENODEV; 2270 goto out; 2271 } 2272 2273 /* 2274 * For a XR16C850, we need to set the trigger levels 2275 */ 2276 if (port->type == PORT_16850) { 2277 unsigned char fctr; 2278 2279 serial_out(up, UART_LCR, UART_LCR_CONF_MODE_B); 2280 2281 fctr = serial_in(up, UART_FCTR) & ~(UART_FCTR_RX|UART_FCTR_TX); 2282 serial_port_out(port, UART_FCTR, 2283 fctr | UART_FCTR_TRGD | UART_FCTR_RX); 2284 serial_port_out(port, UART_TRG, UART_TRG_96); 2285 serial_port_out(port, UART_FCTR, 2286 fctr | UART_FCTR_TRGD | UART_FCTR_TX); 2287 serial_port_out(port, UART_TRG, UART_TRG_96); 2288 2289 serial_port_out(port, UART_LCR, 0); 2290 } 2291 2292 /* 2293 * For the Altera 16550 variants, set TX threshold trigger level. 2294 */ 2295 if (((port->type == PORT_ALTR_16550_F32) || 2296 (port->type == PORT_ALTR_16550_F64) || 2297 (port->type == PORT_ALTR_16550_F128)) && (port->fifosize > 1)) { 2298 /* Bounds checking of TX threshold (valid 0 to fifosize-2) */ 2299 if ((up->tx_loadsz < 2) || (up->tx_loadsz > port->fifosize)) { 2300 dev_err(port->dev, "TX FIFO Threshold errors, skipping\n"); 2301 } else { 2302 serial_port_out(port, UART_ALTR_AFR, 2303 UART_ALTR_EN_TXFIFO_LW); 2304 serial_port_out(port, UART_ALTR_TX_LOW, 2305 port->fifosize - up->tx_loadsz); 2306 port->handle_irq = serial8250_tx_threshold_handle_irq; 2307 } 2308 } 2309 2310 /* Check if we need to have shared IRQs */ 2311 if (port->irq && (up->port.flags & UPF_SHARE_IRQ)) 2312 up->port.irqflags |= IRQF_SHARED; 2313 2314 retval = up->ops->setup_irq(up); 2315 if (retval) 2316 goto out; 2317 2318 if (port->irq && !(up->port.flags & UPF_NO_THRE_TEST)) { 2319 unsigned char iir1; 2320 2321 if (port->irqflags & IRQF_SHARED) 2322 disable_irq_nosync(port->irq); 2323 2324 /* 2325 * Test for UARTs that do not reassert THRE when the 2326 * transmitter is idle and the interrupt has already 2327 * been cleared. Real 16550s should always reassert 2328 * this interrupt whenever the transmitter is idle and 2329 * the interrupt is enabled. Delays are necessary to 2330 * allow register changes to become visible. 2331 */ 2332 spin_lock_irqsave(&port->lock, flags); 2333 2334 wait_for_xmitr(up, UART_LSR_THRE); 2335 serial_port_out_sync(port, UART_IER, UART_IER_THRI); 2336 udelay(1); /* allow THRE to set */ 2337 iir1 = serial_port_in(port, UART_IIR); 2338 serial_port_out(port, UART_IER, 0); 2339 serial_port_out_sync(port, UART_IER, UART_IER_THRI); 2340 udelay(1); /* allow a working UART time to re-assert THRE */ 2341 iir = serial_port_in(port, UART_IIR); 2342 serial_port_out(port, UART_IER, 0); 2343 2344 spin_unlock_irqrestore(&port->lock, flags); 2345 2346 if (port->irqflags & IRQF_SHARED) 2347 enable_irq(port->irq); 2348 2349 /* 2350 * If the interrupt is not reasserted, or we otherwise 2351 * don't trust the iir, setup a timer to kick the UART 2352 * on a regular basis. 2353 */ 2354 if ((!(iir1 & UART_IIR_NO_INT) && (iir & UART_IIR_NO_INT)) || 2355 up->port.flags & UPF_BUG_THRE) { 2356 up->bugs |= UART_BUG_THRE; 2357 } 2358 } 2359 2360 up->ops->setup_timer(up); 2361 2362 /* 2363 * Now, initialize the UART 2364 */ 2365 serial_port_out(port, UART_LCR, UART_LCR_WLEN8); 2366 2367 spin_lock_irqsave(&port->lock, flags); 2368 if (up->port.flags & UPF_FOURPORT) { 2369 if (!up->port.irq) 2370 up->port.mctrl |= TIOCM_OUT1; 2371 } else 2372 /* 2373 * Most PC uarts need OUT2 raised to enable interrupts. 2374 */ 2375 if (port->irq) 2376 up->port.mctrl |= TIOCM_OUT2; 2377 2378 serial8250_set_mctrl(port, port->mctrl); 2379 2380 /* 2381 * Serial over Lan (SoL) hack: 2382 * Intel 8257x Gigabit ethernet chips have a 16550 emulation, to be 2383 * used for Serial Over Lan. Those chips take a longer time than a 2384 * normal serial device to signalize that a transmission data was 2385 * queued. Due to that, the above test generally fails. One solution 2386 * would be to delay the reading of iir. However, this is not 2387 * reliable, since the timeout is variable. So, let's just don't 2388 * test if we receive TX irq. This way, we'll never enable 2389 * UART_BUG_TXEN. 2390 */ 2391 if (up->port.quirks & UPQ_NO_TXEN_TEST) 2392 goto dont_test_tx_en; 2393 2394 /* 2395 * Do a quick test to see if we receive an interrupt when we enable 2396 * the TX irq. 2397 */ 2398 serial_port_out(port, UART_IER, UART_IER_THRI); 2399 lsr = serial_port_in(port, UART_LSR); 2400 iir = serial_port_in(port, UART_IIR); 2401 serial_port_out(port, UART_IER, 0); 2402 2403 if (lsr & UART_LSR_TEMT && iir & UART_IIR_NO_INT) { 2404 if (!(up->bugs & UART_BUG_TXEN)) { 2405 up->bugs |= UART_BUG_TXEN; 2406 dev_dbg(port->dev, "enabling bad tx status workarounds\n"); 2407 } 2408 } else { 2409 up->bugs &= ~UART_BUG_TXEN; 2410 } 2411 2412 dont_test_tx_en: 2413 spin_unlock_irqrestore(&port->lock, flags); 2414 2415 /* 2416 * Clear the interrupt registers again for luck, and clear the 2417 * saved flags to avoid getting false values from polling 2418 * routines or the previous session. 2419 */ 2420 serial_port_in(port, UART_LSR); 2421 serial_port_in(port, UART_RX); 2422 serial_port_in(port, UART_IIR); 2423 serial_port_in(port, UART_MSR); 2424 up->lsr_saved_flags = 0; 2425 up->msr_saved_flags = 0; 2426 2427 /* 2428 * Request DMA channels for both RX and TX. 2429 */ 2430 if (up->dma) { 2431 const char *msg = NULL; 2432 2433 if (uart_console(port)) 2434 msg = "forbid DMA for kernel console"; 2435 else if (serial8250_request_dma(up)) 2436 msg = "failed to request DMA"; 2437 if (msg) { 2438 dev_warn_ratelimited(port->dev, "%s\n", msg); 2439 up->dma = NULL; 2440 } 2441 } 2442 2443 /* 2444 * Set the IER shadow for rx interrupts but defer actual interrupt 2445 * enable until after the FIFOs are enabled; otherwise, an already- 2446 * active sender can swamp the interrupt handler with "too much work". 2447 */ 2448 up->ier = UART_IER_RLSI | UART_IER_RDI; 2449 2450 if (port->flags & UPF_FOURPORT) { 2451 unsigned int icp; 2452 /* 2453 * Enable interrupts on the AST Fourport board 2454 */ 2455 icp = (port->iobase & 0xfe0) | 0x01f; 2456 outb_p(0x80, icp); 2457 inb_p(icp); 2458 } 2459 retval = 0; 2460 out: 2461 serial8250_rpm_put(up); 2462 return retval; 2463 } 2464 EXPORT_SYMBOL_GPL(serial8250_do_startup); 2465 2466 static int serial8250_startup(struct uart_port *port) 2467 { 2468 if (port->startup) 2469 return port->startup(port); 2470 return serial8250_do_startup(port); 2471 } 2472 2473 void serial8250_do_shutdown(struct uart_port *port) 2474 { 2475 struct uart_8250_port *up = up_to_u8250p(port); 2476 unsigned long flags; 2477 2478 serial8250_rpm_get(up); 2479 /* 2480 * Disable interrupts from this port 2481 */ 2482 spin_lock_irqsave(&port->lock, flags); 2483 up->ier = 0; 2484 serial_port_out(port, UART_IER, 0); 2485 spin_unlock_irqrestore(&port->lock, flags); 2486 2487 synchronize_irq(port->irq); 2488 2489 if (up->dma) 2490 serial8250_release_dma(up); 2491 2492 spin_lock_irqsave(&port->lock, flags); 2493 if (port->flags & UPF_FOURPORT) { 2494 /* reset interrupts on the AST Fourport board */ 2495 inb((port->iobase & 0xfe0) | 0x1f); 2496 port->mctrl |= TIOCM_OUT1; 2497 } else 2498 port->mctrl &= ~TIOCM_OUT2; 2499 2500 serial8250_set_mctrl(port, port->mctrl); 2501 spin_unlock_irqrestore(&port->lock, flags); 2502 2503 /* 2504 * Disable break condition and FIFOs 2505 */ 2506 serial_port_out(port, UART_LCR, 2507 serial_port_in(port, UART_LCR) & ~UART_LCR_SBC); 2508 serial8250_clear_fifos(up); 2509 2510 #ifdef CONFIG_SERIAL_8250_RSA 2511 /* 2512 * Reset the RSA board back to 115kbps compat mode. 2513 */ 2514 disable_rsa(up); 2515 #endif 2516 2517 /* 2518 * Read data port to reset things, and then unlink from 2519 * the IRQ chain. 2520 */ 2521 serial_port_in(port, UART_RX); 2522 serial8250_rpm_put(up); 2523 2524 up->ops->release_irq(up); 2525 } 2526 EXPORT_SYMBOL_GPL(serial8250_do_shutdown); 2527 2528 static void serial8250_shutdown(struct uart_port *port) 2529 { 2530 if (port->shutdown) 2531 port->shutdown(port); 2532 else 2533 serial8250_do_shutdown(port); 2534 } 2535 2536 /* Nuvoton NPCM UARTs have a custom divisor calculation */ 2537 static unsigned int npcm_get_divisor(struct uart_8250_port *up, 2538 unsigned int baud) 2539 { 2540 struct uart_port *port = &up->port; 2541 2542 return DIV_ROUND_CLOSEST(port->uartclk, 16 * baud + 2) - 2; 2543 } 2544 2545 static unsigned int serial8250_do_get_divisor(struct uart_port *port, 2546 unsigned int baud, 2547 unsigned int *frac) 2548 { 2549 upf_t magic_multiplier = port->flags & UPF_MAGIC_MULTIPLIER; 2550 struct uart_8250_port *up = up_to_u8250p(port); 2551 unsigned int quot; 2552 2553 /* 2554 * Handle magic divisors for baud rates above baud_base on SMSC 2555 * Super I/O chips. We clamp custom rates from clk/6 and clk/12 2556 * up to clk/4 (0x8001) and clk/8 (0x8002) respectively. These 2557 * magic divisors actually reprogram the baud rate generator's 2558 * reference clock derived from chips's 14.318MHz clock input. 2559 * 2560 * Documentation claims that with these magic divisors the base 2561 * frequencies of 7.3728MHz and 3.6864MHz are used respectively 2562 * for the extra baud rates of 460800bps and 230400bps rather 2563 * than the usual base frequency of 1.8462MHz. However empirical 2564 * evidence contradicts that. 2565 * 2566 * Instead bit 7 of the DLM register (bit 15 of the divisor) is 2567 * effectively used as a clock prescaler selection bit for the 2568 * base frequency of 7.3728MHz, always used. If set to 0, then 2569 * the base frequency is divided by 4 for use by the Baud Rate 2570 * Generator, for the usual arrangement where the value of 1 of 2571 * the divisor produces the baud rate of 115200bps. Conversely, 2572 * if set to 1 and high-speed operation has been enabled with the 2573 * Serial Port Mode Register in the Device Configuration Space, 2574 * then the base frequency is supplied directly to the Baud Rate 2575 * Generator, so for the divisor values of 0x8001, 0x8002, 0x8003, 2576 * 0x8004, etc. the respective baud rates produced are 460800bps, 2577 * 230400bps, 153600bps, 115200bps, etc. 2578 * 2579 * In all cases only low 15 bits of the divisor are used to divide 2580 * the baud base and therefore 32767 is the maximum divisor value 2581 * possible, even though documentation says that the programmable 2582 * Baud Rate Generator is capable of dividing the internal PLL 2583 * clock by any divisor from 1 to 65535. 2584 */ 2585 if (magic_multiplier && baud >= port->uartclk / 6) 2586 quot = 0x8001; 2587 else if (magic_multiplier && baud >= port->uartclk / 12) 2588 quot = 0x8002; 2589 else if (up->port.type == PORT_NPCM) 2590 quot = npcm_get_divisor(up, baud); 2591 else 2592 quot = uart_get_divisor(port, baud); 2593 2594 /* 2595 * Oxford Semi 952 rev B workaround 2596 */ 2597 if (up->bugs & UART_BUG_QUOT && (quot & 0xff) == 0) 2598 quot++; 2599 2600 return quot; 2601 } 2602 2603 static unsigned int serial8250_get_divisor(struct uart_port *port, 2604 unsigned int baud, 2605 unsigned int *frac) 2606 { 2607 if (port->get_divisor) 2608 return port->get_divisor(port, baud, frac); 2609 2610 return serial8250_do_get_divisor(port, baud, frac); 2611 } 2612 2613 static unsigned char serial8250_compute_lcr(struct uart_8250_port *up, 2614 tcflag_t c_cflag) 2615 { 2616 unsigned char cval; 2617 2618 cval = UART_LCR_WLEN(tty_get_char_size(c_cflag)); 2619 2620 if (c_cflag & CSTOPB) 2621 cval |= UART_LCR_STOP; 2622 if (c_cflag & PARENB) { 2623 cval |= UART_LCR_PARITY; 2624 if (up->bugs & UART_BUG_PARITY) 2625 up->fifo_bug = true; 2626 } 2627 if (!(c_cflag & PARODD)) 2628 cval |= UART_LCR_EPAR; 2629 if (c_cflag & CMSPAR) 2630 cval |= UART_LCR_SPAR; 2631 2632 return cval; 2633 } 2634 2635 void serial8250_do_set_divisor(struct uart_port *port, unsigned int baud, 2636 unsigned int quot, unsigned int quot_frac) 2637 { 2638 struct uart_8250_port *up = up_to_u8250p(port); 2639 2640 /* Workaround to enable 115200 baud on OMAP1510 internal ports */ 2641 if (is_omap1510_8250(up)) { 2642 if (baud == 115200) { 2643 quot = 1; 2644 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 1); 2645 } else 2646 serial_port_out(port, UART_OMAP_OSC_12M_SEL, 0); 2647 } 2648 2649 /* 2650 * For NatSemi, switch to bank 2 not bank 1, to avoid resetting EXCR2, 2651 * otherwise just set DLAB 2652 */ 2653 if (up->capabilities & UART_NATSEMI) 2654 serial_port_out(port, UART_LCR, 0xe0); 2655 else 2656 serial_port_out(port, UART_LCR, up->lcr | UART_LCR_DLAB); 2657 2658 serial_dl_write(up, quot); 2659 } 2660 EXPORT_SYMBOL_GPL(serial8250_do_set_divisor); 2661 2662 static void serial8250_set_divisor(struct uart_port *port, unsigned int baud, 2663 unsigned int quot, unsigned int quot_frac) 2664 { 2665 if (port->set_divisor) 2666 port->set_divisor(port, baud, quot, quot_frac); 2667 else 2668 serial8250_do_set_divisor(port, baud, quot, quot_frac); 2669 } 2670 2671 static unsigned int serial8250_get_baud_rate(struct uart_port *port, 2672 struct ktermios *termios, 2673 const struct ktermios *old) 2674 { 2675 unsigned int tolerance = port->uartclk / 100; 2676 unsigned int min; 2677 unsigned int max; 2678 2679 /* 2680 * Handle magic divisors for baud rates above baud_base on SMSC 2681 * Super I/O chips. Enable custom rates of clk/4 and clk/8, but 2682 * disable divisor values beyond 32767, which are unavailable. 2683 */ 2684 if (port->flags & UPF_MAGIC_MULTIPLIER) { 2685 min = port->uartclk / 16 / UART_DIV_MAX >> 1; 2686 max = (port->uartclk + tolerance) / 4; 2687 } else { 2688 min = port->uartclk / 16 / UART_DIV_MAX; 2689 max = (port->uartclk + tolerance) / 16; 2690 } 2691 2692 /* 2693 * Ask the core to calculate the divisor for us. 2694 * Allow 1% tolerance at the upper limit so uart clks marginally 2695 * slower than nominal still match standard baud rates without 2696 * causing transmission errors. 2697 */ 2698 return uart_get_baud_rate(port, termios, old, min, max); 2699 } 2700 2701 /* 2702 * Note in order to avoid the tty port mutex deadlock don't use the next method 2703 * within the uart port callbacks. Primarily it's supposed to be utilized to 2704 * handle a sudden reference clock rate change. 2705 */ 2706 void serial8250_update_uartclk(struct uart_port *port, unsigned int uartclk) 2707 { 2708 struct uart_8250_port *up = up_to_u8250p(port); 2709 struct tty_port *tport = &port->state->port; 2710 unsigned int baud, quot, frac = 0; 2711 struct ktermios *termios; 2712 struct tty_struct *tty; 2713 unsigned long flags; 2714 2715 tty = tty_port_tty_get(tport); 2716 if (!tty) { 2717 mutex_lock(&tport->mutex); 2718 port->uartclk = uartclk; 2719 mutex_unlock(&tport->mutex); 2720 return; 2721 } 2722 2723 down_write(&tty->termios_rwsem); 2724 mutex_lock(&tport->mutex); 2725 2726 if (port->uartclk == uartclk) 2727 goto out_unlock; 2728 2729 port->uartclk = uartclk; 2730 2731 if (!tty_port_initialized(tport)) 2732 goto out_unlock; 2733 2734 termios = &tty->termios; 2735 2736 baud = serial8250_get_baud_rate(port, termios, NULL); 2737 quot = serial8250_get_divisor(port, baud, &frac); 2738 2739 serial8250_rpm_get(up); 2740 spin_lock_irqsave(&port->lock, flags); 2741 2742 uart_update_timeout(port, termios->c_cflag, baud); 2743 2744 serial8250_set_divisor(port, baud, quot, frac); 2745 serial_port_out(port, UART_LCR, up->lcr); 2746 2747 spin_unlock_irqrestore(&port->lock, flags); 2748 serial8250_rpm_put(up); 2749 2750 out_unlock: 2751 mutex_unlock(&tport->mutex); 2752 up_write(&tty->termios_rwsem); 2753 tty_kref_put(tty); 2754 } 2755 EXPORT_SYMBOL_GPL(serial8250_update_uartclk); 2756 2757 void 2758 serial8250_do_set_termios(struct uart_port *port, struct ktermios *termios, 2759 const struct ktermios *old) 2760 { 2761 struct uart_8250_port *up = up_to_u8250p(port); 2762 unsigned char cval; 2763 unsigned long flags; 2764 unsigned int baud, quot, frac = 0; 2765 2766 if (up->capabilities & UART_CAP_MINI) { 2767 termios->c_cflag &= ~(CSTOPB | PARENB | PARODD | CMSPAR); 2768 if ((termios->c_cflag & CSIZE) == CS5 || 2769 (termios->c_cflag & CSIZE) == CS6) 2770 termios->c_cflag = (termios->c_cflag & ~CSIZE) | CS7; 2771 } 2772 cval = serial8250_compute_lcr(up, termios->c_cflag); 2773 2774 baud = serial8250_get_baud_rate(port, termios, old); 2775 quot = serial8250_get_divisor(port, baud, &frac); 2776 2777 /* 2778 * Ok, we're now changing the port state. Do it with 2779 * interrupts disabled. 2780 */ 2781 serial8250_rpm_get(up); 2782 spin_lock_irqsave(&port->lock, flags); 2783 2784 up->lcr = cval; /* Save computed LCR */ 2785 2786 if (up->capabilities & UART_CAP_FIFO && port->fifosize > 1) { 2787 /* NOTE: If fifo_bug is not set, a user can set RX_trigger. */ 2788 if ((baud < 2400 && !up->dma) || up->fifo_bug) { 2789 up->fcr &= ~UART_FCR_TRIGGER_MASK; 2790 up->fcr |= UART_FCR_TRIGGER_1; 2791 } 2792 } 2793 2794 /* 2795 * MCR-based auto flow control. When AFE is enabled, RTS will be 2796 * deasserted when the receive FIFO contains more characters than 2797 * the trigger, or the MCR RTS bit is cleared. 2798 */ 2799 if (up->capabilities & UART_CAP_AFE) { 2800 up->mcr &= ~UART_MCR_AFE; 2801 if (termios->c_cflag & CRTSCTS) 2802 up->mcr |= UART_MCR_AFE; 2803 } 2804 2805 /* 2806 * Update the per-port timeout. 2807 */ 2808 uart_update_timeout(port, termios->c_cflag, baud); 2809 2810 port->read_status_mask = UART_LSR_OE | UART_LSR_THRE | UART_LSR_DR; 2811 if (termios->c_iflag & INPCK) 2812 port->read_status_mask |= UART_LSR_FE | UART_LSR_PE; 2813 if (termios->c_iflag & (IGNBRK | BRKINT | PARMRK)) 2814 port->read_status_mask |= UART_LSR_BI; 2815 2816 /* 2817 * Characters to ignore 2818 */ 2819 port->ignore_status_mask = 0; 2820 if (termios->c_iflag & IGNPAR) 2821 port->ignore_status_mask |= UART_LSR_PE | UART_LSR_FE; 2822 if (termios->c_iflag & IGNBRK) { 2823 port->ignore_status_mask |= UART_LSR_BI; 2824 /* 2825 * If we're ignoring parity and break indicators, 2826 * ignore overruns too (for real raw support). 2827 */ 2828 if (termios->c_iflag & IGNPAR) 2829 port->ignore_status_mask |= UART_LSR_OE; 2830 } 2831 2832 /* 2833 * ignore all characters if CREAD is not set 2834 */ 2835 if ((termios->c_cflag & CREAD) == 0) 2836 port->ignore_status_mask |= UART_LSR_DR; 2837 2838 /* 2839 * CTS flow control flag and modem status interrupts 2840 */ 2841 up->ier &= ~UART_IER_MSI; 2842 if (!(up->bugs & UART_BUG_NOMSR) && 2843 UART_ENABLE_MS(&up->port, termios->c_cflag)) 2844 up->ier |= UART_IER_MSI; 2845 if (up->capabilities & UART_CAP_UUE) 2846 up->ier |= UART_IER_UUE; 2847 if (up->capabilities & UART_CAP_RTOIE) 2848 up->ier |= UART_IER_RTOIE; 2849 2850 serial_port_out(port, UART_IER, up->ier); 2851 2852 if (up->capabilities & UART_CAP_EFR) { 2853 unsigned char efr = 0; 2854 /* 2855 * TI16C752/Startech hardware flow control. FIXME: 2856 * - TI16C752 requires control thresholds to be set. 2857 * - UART_MCR_RTS is ineffective if auto-RTS mode is enabled. 2858 */ 2859 if (termios->c_cflag & CRTSCTS) 2860 efr |= UART_EFR_CTS; 2861 2862 serial_port_out(port, UART_LCR, UART_LCR_CONF_MODE_B); 2863 if (port->flags & UPF_EXAR_EFR) 2864 serial_port_out(port, UART_XR_EFR, efr); 2865 else 2866 serial_port_out(port, UART_EFR, efr); 2867 } 2868 2869 serial8250_set_divisor(port, baud, quot, frac); 2870 2871 /* 2872 * LCR DLAB must be set to enable 64-byte FIFO mode. If the FCR 2873 * is written without DLAB set, this mode will be disabled. 2874 */ 2875 if (port->type == PORT_16750) 2876 serial_port_out(port, UART_FCR, up->fcr); 2877 2878 serial_port_out(port, UART_LCR, up->lcr); /* reset DLAB */ 2879 if (port->type != PORT_16750) { 2880 /* emulated UARTs (Lucent Venus 167x) need two steps */ 2881 if (up->fcr & UART_FCR_ENABLE_FIFO) 2882 serial_port_out(port, UART_FCR, UART_FCR_ENABLE_FIFO); 2883 serial_port_out(port, UART_FCR, up->fcr); /* set fcr */ 2884 } 2885 serial8250_set_mctrl(port, port->mctrl); 2886 spin_unlock_irqrestore(&port->lock, flags); 2887 serial8250_rpm_put(up); 2888 2889 /* Don't rewrite B0 */ 2890 if (tty_termios_baud_rate(termios)) 2891 tty_termios_encode_baud_rate(termios, baud, baud); 2892 } 2893 EXPORT_SYMBOL(serial8250_do_set_termios); 2894 2895 static void 2896 serial8250_set_termios(struct uart_port *port, struct ktermios *termios, 2897 const struct ktermios *old) 2898 { 2899 if (port->set_termios) 2900 port->set_termios(port, termios, old); 2901 else 2902 serial8250_do_set_termios(port, termios, old); 2903 } 2904 2905 void serial8250_do_set_ldisc(struct uart_port *port, struct ktermios *termios) 2906 { 2907 if (termios->c_line == N_PPS) { 2908 port->flags |= UPF_HARDPPS_CD; 2909 spin_lock_irq(&port->lock); 2910 serial8250_enable_ms(port); 2911 spin_unlock_irq(&port->lock); 2912 } else { 2913 port->flags &= ~UPF_HARDPPS_CD; 2914 if (!UART_ENABLE_MS(port, termios->c_cflag)) { 2915 spin_lock_irq(&port->lock); 2916 serial8250_disable_ms(port); 2917 spin_unlock_irq(&port->lock); 2918 } 2919 } 2920 } 2921 EXPORT_SYMBOL_GPL(serial8250_do_set_ldisc); 2922 2923 static void 2924 serial8250_set_ldisc(struct uart_port *port, struct ktermios *termios) 2925 { 2926 if (port->set_ldisc) 2927 port->set_ldisc(port, termios); 2928 else 2929 serial8250_do_set_ldisc(port, termios); 2930 } 2931 2932 void serial8250_do_pm(struct uart_port *port, unsigned int state, 2933 unsigned int oldstate) 2934 { 2935 struct uart_8250_port *p = up_to_u8250p(port); 2936 2937 serial8250_set_sleep(p, state != 0); 2938 } 2939 EXPORT_SYMBOL(serial8250_do_pm); 2940 2941 static void 2942 serial8250_pm(struct uart_port *port, unsigned int state, 2943 unsigned int oldstate) 2944 { 2945 if (port->pm) 2946 port->pm(port, state, oldstate); 2947 else 2948 serial8250_do_pm(port, state, oldstate); 2949 } 2950 2951 static unsigned int serial8250_port_size(struct uart_8250_port *pt) 2952 { 2953 if (pt->port.mapsize) 2954 return pt->port.mapsize; 2955 if (pt->port.iotype == UPIO_AU) { 2956 if (pt->port.type == PORT_RT2880) 2957 return 0x100; 2958 return 0x1000; 2959 } 2960 if (is_omap1_8250(pt)) 2961 return 0x16 << pt->port.regshift; 2962 2963 return 8 << pt->port.regshift; 2964 } 2965 2966 /* 2967 * Resource handling. 2968 */ 2969 static int serial8250_request_std_resource(struct uart_8250_port *up) 2970 { 2971 unsigned int size = serial8250_port_size(up); 2972 struct uart_port *port = &up->port; 2973 int ret = 0; 2974 2975 switch (port->iotype) { 2976 case UPIO_AU: 2977 case UPIO_TSI: 2978 case UPIO_MEM32: 2979 case UPIO_MEM32BE: 2980 case UPIO_MEM16: 2981 case UPIO_MEM: 2982 if (!port->mapbase) { 2983 ret = -EINVAL; 2984 break; 2985 } 2986 2987 if (!request_mem_region(port->mapbase, size, "serial")) { 2988 ret = -EBUSY; 2989 break; 2990 } 2991 2992 if (port->flags & UPF_IOREMAP) { 2993 port->membase = ioremap(port->mapbase, size); 2994 if (!port->membase) { 2995 release_mem_region(port->mapbase, size); 2996 ret = -ENOMEM; 2997 } 2998 } 2999 break; 3000 3001 case UPIO_HUB6: 3002 case UPIO_PORT: 3003 if (!request_region(port->iobase, size, "serial")) 3004 ret = -EBUSY; 3005 break; 3006 } 3007 return ret; 3008 } 3009 3010 static void serial8250_release_std_resource(struct uart_8250_port *up) 3011 { 3012 unsigned int size = serial8250_port_size(up); 3013 struct uart_port *port = &up->port; 3014 3015 switch (port->iotype) { 3016 case UPIO_AU: 3017 case UPIO_TSI: 3018 case UPIO_MEM32: 3019 case UPIO_MEM32BE: 3020 case UPIO_MEM16: 3021 case UPIO_MEM: 3022 if (!port->mapbase) 3023 break; 3024 3025 if (port->flags & UPF_IOREMAP) { 3026 iounmap(port->membase); 3027 port->membase = NULL; 3028 } 3029 3030 release_mem_region(port->mapbase, size); 3031 break; 3032 3033 case UPIO_HUB6: 3034 case UPIO_PORT: 3035 release_region(port->iobase, size); 3036 break; 3037 } 3038 } 3039 3040 static void serial8250_release_port(struct uart_port *port) 3041 { 3042 struct uart_8250_port *up = up_to_u8250p(port); 3043 3044 serial8250_release_std_resource(up); 3045 } 3046 3047 static int serial8250_request_port(struct uart_port *port) 3048 { 3049 struct uart_8250_port *up = up_to_u8250p(port); 3050 3051 return serial8250_request_std_resource(up); 3052 } 3053 3054 static int fcr_get_rxtrig_bytes(struct uart_8250_port *up) 3055 { 3056 const struct serial8250_config *conf_type = &uart_config[up->port.type]; 3057 unsigned char bytes; 3058 3059 bytes = conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(up->fcr)]; 3060 3061 return bytes ? bytes : -EOPNOTSUPP; 3062 } 3063 3064 static int bytes_to_fcr_rxtrig(struct uart_8250_port *up, unsigned char bytes) 3065 { 3066 const struct serial8250_config *conf_type = &uart_config[up->port.type]; 3067 int i; 3068 3069 if (!conf_type->rxtrig_bytes[UART_FCR_R_TRIG_BITS(UART_FCR_R_TRIG_00)]) 3070 return -EOPNOTSUPP; 3071 3072 for (i = 1; i < UART_FCR_R_TRIG_MAX_STATE; i++) { 3073 if (bytes < conf_type->rxtrig_bytes[i]) 3074 /* Use the nearest lower value */ 3075 return (--i) << UART_FCR_R_TRIG_SHIFT; 3076 } 3077 3078 return UART_FCR_R_TRIG_11; 3079 } 3080 3081 static int do_get_rxtrig(struct tty_port *port) 3082 { 3083 struct uart_state *state = container_of(port, struct uart_state, port); 3084 struct uart_port *uport = state->uart_port; 3085 struct uart_8250_port *up = up_to_u8250p(uport); 3086 3087 if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1) 3088 return -EINVAL; 3089 3090 return fcr_get_rxtrig_bytes(up); 3091 } 3092 3093 static int do_serial8250_get_rxtrig(struct tty_port *port) 3094 { 3095 int rxtrig_bytes; 3096 3097 mutex_lock(&port->mutex); 3098 rxtrig_bytes = do_get_rxtrig(port); 3099 mutex_unlock(&port->mutex); 3100 3101 return rxtrig_bytes; 3102 } 3103 3104 static ssize_t rx_trig_bytes_show(struct device *dev, 3105 struct device_attribute *attr, char *buf) 3106 { 3107 struct tty_port *port = dev_get_drvdata(dev); 3108 int rxtrig_bytes; 3109 3110 rxtrig_bytes = do_serial8250_get_rxtrig(port); 3111 if (rxtrig_bytes < 0) 3112 return rxtrig_bytes; 3113 3114 return sysfs_emit(buf, "%d\n", rxtrig_bytes); 3115 } 3116 3117 static int do_set_rxtrig(struct tty_port *port, unsigned char bytes) 3118 { 3119 struct uart_state *state = container_of(port, struct uart_state, port); 3120 struct uart_port *uport = state->uart_port; 3121 struct uart_8250_port *up = up_to_u8250p(uport); 3122 int rxtrig; 3123 3124 if (!(up->capabilities & UART_CAP_FIFO) || uport->fifosize <= 1 || 3125 up->fifo_bug) 3126 return -EINVAL; 3127 3128 rxtrig = bytes_to_fcr_rxtrig(up, bytes); 3129 if (rxtrig < 0) 3130 return rxtrig; 3131 3132 serial8250_clear_fifos(up); 3133 up->fcr &= ~UART_FCR_TRIGGER_MASK; 3134 up->fcr |= (unsigned char)rxtrig; 3135 serial_out(up, UART_FCR, up->fcr); 3136 return 0; 3137 } 3138 3139 static int do_serial8250_set_rxtrig(struct tty_port *port, unsigned char bytes) 3140 { 3141 int ret; 3142 3143 mutex_lock(&port->mutex); 3144 ret = do_set_rxtrig(port, bytes); 3145 mutex_unlock(&port->mutex); 3146 3147 return ret; 3148 } 3149 3150 static ssize_t rx_trig_bytes_store(struct device *dev, 3151 struct device_attribute *attr, const char *buf, size_t count) 3152 { 3153 struct tty_port *port = dev_get_drvdata(dev); 3154 unsigned char bytes; 3155 int ret; 3156 3157 if (!count) 3158 return -EINVAL; 3159 3160 ret = kstrtou8(buf, 10, &bytes); 3161 if (ret < 0) 3162 return ret; 3163 3164 ret = do_serial8250_set_rxtrig(port, bytes); 3165 if (ret < 0) 3166 return ret; 3167 3168 return count; 3169 } 3170 3171 static DEVICE_ATTR_RW(rx_trig_bytes); 3172 3173 static struct attribute *serial8250_dev_attrs[] = { 3174 &dev_attr_rx_trig_bytes.attr, 3175 NULL 3176 }; 3177 3178 static struct attribute_group serial8250_dev_attr_group = { 3179 .attrs = serial8250_dev_attrs, 3180 }; 3181 3182 static void register_dev_spec_attr_grp(struct uart_8250_port *up) 3183 { 3184 const struct serial8250_config *conf_type = &uart_config[up->port.type]; 3185 3186 if (conf_type->rxtrig_bytes[0]) 3187 up->port.attr_group = &serial8250_dev_attr_group; 3188 } 3189 3190 static void serial8250_config_port(struct uart_port *port, int flags) 3191 { 3192 struct uart_8250_port *up = up_to_u8250p(port); 3193 int ret; 3194 3195 /* 3196 * Find the region that we can probe for. This in turn 3197 * tells us whether we can probe for the type of port. 3198 */ 3199 ret = serial8250_request_std_resource(up); 3200 if (ret < 0) 3201 return; 3202 3203 if (port->iotype != up->cur_iotype) 3204 set_io_from_upio(port); 3205 3206 if (flags & UART_CONFIG_TYPE) 3207 autoconfig(up); 3208 3209 /* if access method is AU, it is a 16550 with a quirk */ 3210 if (port->type == PORT_16550A && port->iotype == UPIO_AU) 3211 up->bugs |= UART_BUG_NOMSR; 3212 3213 /* HW bugs may trigger IRQ while IIR == NO_INT */ 3214 if (port->type == PORT_TEGRA) 3215 up->bugs |= UART_BUG_NOMSR; 3216 3217 if (port->type != PORT_UNKNOWN && flags & UART_CONFIG_IRQ) 3218 autoconfig_irq(up); 3219 3220 if (port->type == PORT_UNKNOWN) 3221 serial8250_release_std_resource(up); 3222 3223 register_dev_spec_attr_grp(up); 3224 up->fcr = uart_config[up->port.type].fcr; 3225 } 3226 3227 static int 3228 serial8250_verify_port(struct uart_port *port, struct serial_struct *ser) 3229 { 3230 if (ser->irq >= nr_irqs || ser->irq < 0 || 3231 ser->baud_base < 9600 || ser->type < PORT_UNKNOWN || 3232 ser->type >= ARRAY_SIZE(uart_config) || ser->type == PORT_CIRRUS || 3233 ser->type == PORT_STARTECH) 3234 return -EINVAL; 3235 return 0; 3236 } 3237 3238 static const char *serial8250_type(struct uart_port *port) 3239 { 3240 int type = port->type; 3241 3242 if (type >= ARRAY_SIZE(uart_config)) 3243 type = 0; 3244 return uart_config[type].name; 3245 } 3246 3247 static const struct uart_ops serial8250_pops = { 3248 .tx_empty = serial8250_tx_empty, 3249 .set_mctrl = serial8250_set_mctrl, 3250 .get_mctrl = serial8250_get_mctrl, 3251 .stop_tx = serial8250_stop_tx, 3252 .start_tx = serial8250_start_tx, 3253 .throttle = serial8250_throttle, 3254 .unthrottle = serial8250_unthrottle, 3255 .stop_rx = serial8250_stop_rx, 3256 .enable_ms = serial8250_enable_ms, 3257 .break_ctl = serial8250_break_ctl, 3258 .startup = serial8250_startup, 3259 .shutdown = serial8250_shutdown, 3260 .set_termios = serial8250_set_termios, 3261 .set_ldisc = serial8250_set_ldisc, 3262 .pm = serial8250_pm, 3263 .type = serial8250_type, 3264 .release_port = serial8250_release_port, 3265 .request_port = serial8250_request_port, 3266 .config_port = serial8250_config_port, 3267 .verify_port = serial8250_verify_port, 3268 #ifdef CONFIG_CONSOLE_POLL 3269 .poll_get_char = serial8250_get_poll_char, 3270 .poll_put_char = serial8250_put_poll_char, 3271 #endif 3272 }; 3273 3274 void serial8250_init_port(struct uart_8250_port *up) 3275 { 3276 struct uart_port *port = &up->port; 3277 3278 spin_lock_init(&port->lock); 3279 port->ops = &serial8250_pops; 3280 port->has_sysrq = IS_ENABLED(CONFIG_SERIAL_8250_CONSOLE); 3281 3282 up->cur_iotype = 0xFF; 3283 } 3284 EXPORT_SYMBOL_GPL(serial8250_init_port); 3285 3286 void serial8250_set_defaults(struct uart_8250_port *up) 3287 { 3288 struct uart_port *port = &up->port; 3289 3290 if (up->port.flags & UPF_FIXED_TYPE) { 3291 unsigned int type = up->port.type; 3292 3293 if (!up->port.fifosize) 3294 up->port.fifosize = uart_config[type].fifo_size; 3295 if (!up->tx_loadsz) 3296 up->tx_loadsz = uart_config[type].tx_loadsz; 3297 if (!up->capabilities) 3298 up->capabilities = uart_config[type].flags; 3299 } 3300 3301 set_io_from_upio(port); 3302 3303 /* default dma handlers */ 3304 if (up->dma) { 3305 if (!up->dma->tx_dma) 3306 up->dma->tx_dma = serial8250_tx_dma; 3307 if (!up->dma->rx_dma) 3308 up->dma->rx_dma = serial8250_rx_dma; 3309 } 3310 } 3311 EXPORT_SYMBOL_GPL(serial8250_set_defaults); 3312 3313 #ifdef CONFIG_SERIAL_8250_CONSOLE 3314 3315 static void serial8250_console_putchar(struct uart_port *port, unsigned char ch) 3316 { 3317 struct uart_8250_port *up = up_to_u8250p(port); 3318 3319 wait_for_xmitr(up, UART_LSR_THRE); 3320 serial_port_out(port, UART_TX, ch); 3321 } 3322 3323 /* 3324 * Restore serial console when h/w power-off detected 3325 */ 3326 static void serial8250_console_restore(struct uart_8250_port *up) 3327 { 3328 struct uart_port *port = &up->port; 3329 struct ktermios termios; 3330 unsigned int baud, quot, frac = 0; 3331 3332 termios.c_cflag = port->cons->cflag; 3333 termios.c_ispeed = port->cons->ispeed; 3334 termios.c_ospeed = port->cons->ospeed; 3335 if (port->state->port.tty && termios.c_cflag == 0) { 3336 termios.c_cflag = port->state->port.tty->termios.c_cflag; 3337 termios.c_ispeed = port->state->port.tty->termios.c_ispeed; 3338 termios.c_ospeed = port->state->port.tty->termios.c_ospeed; 3339 } 3340 3341 baud = serial8250_get_baud_rate(port, &termios, NULL); 3342 quot = serial8250_get_divisor(port, baud, &frac); 3343 3344 serial8250_set_divisor(port, baud, quot, frac); 3345 serial_port_out(port, UART_LCR, up->lcr); 3346 serial8250_out_MCR(up, up->mcr | UART_MCR_DTR | UART_MCR_RTS); 3347 } 3348 3349 /* 3350 * Print a string to the serial port using the device FIFO 3351 * 3352 * It sends fifosize bytes and then waits for the fifo 3353 * to get empty. 3354 */ 3355 static void serial8250_console_fifo_write(struct uart_8250_port *up, 3356 const char *s, unsigned int count) 3357 { 3358 int i; 3359 const char *end = s + count; 3360 unsigned int fifosize = up->tx_loadsz; 3361 bool cr_sent = false; 3362 3363 while (s != end) { 3364 wait_for_lsr(up, UART_LSR_THRE); 3365 3366 for (i = 0; i < fifosize && s != end; ++i) { 3367 if (*s == '\n' && !cr_sent) { 3368 serial_out(up, UART_TX, '\r'); 3369 cr_sent = true; 3370 } else { 3371 serial_out(up, UART_TX, *s++); 3372 cr_sent = false; 3373 } 3374 } 3375 } 3376 } 3377 3378 /* 3379 * Print a string to the serial port trying not to disturb 3380 * any possible real use of the port... 3381 * 3382 * The console_lock must be held when we get here. 3383 * 3384 * Doing runtime PM is really a bad idea for the kernel console. 3385 * Thus, we assume the function is called when device is powered up. 3386 */ 3387 void serial8250_console_write(struct uart_8250_port *up, const char *s, 3388 unsigned int count) 3389 { 3390 struct uart_8250_em485 *em485 = up->em485; 3391 struct uart_port *port = &up->port; 3392 unsigned long flags; 3393 unsigned int ier, use_fifo; 3394 int locked = 1; 3395 3396 touch_nmi_watchdog(); 3397 3398 if (oops_in_progress) 3399 locked = spin_trylock_irqsave(&port->lock, flags); 3400 else 3401 spin_lock_irqsave(&port->lock, flags); 3402 3403 /* 3404 * First save the IER then disable the interrupts 3405 */ 3406 ier = serial_port_in(port, UART_IER); 3407 serial8250_clear_IER(up); 3408 3409 /* check scratch reg to see if port powered off during system sleep */ 3410 if (up->canary && (up->canary != serial_port_in(port, UART_SCR))) { 3411 serial8250_console_restore(up); 3412 up->canary = 0; 3413 } 3414 3415 if (em485) { 3416 if (em485->tx_stopped) 3417 up->rs485_start_tx(up); 3418 mdelay(port->rs485.delay_rts_before_send); 3419 } 3420 3421 use_fifo = (up->capabilities & UART_CAP_FIFO) && 3422 /* 3423 * BCM283x requires to check the fifo 3424 * after each byte. 3425 */ 3426 !(up->capabilities & UART_CAP_MINI) && 3427 /* 3428 * tx_loadsz contains the transmit fifo size 3429 */ 3430 up->tx_loadsz > 1 && 3431 (up->fcr & UART_FCR_ENABLE_FIFO) && 3432 port->state && 3433 test_bit(TTY_PORT_INITIALIZED, &port->state->port.iflags) && 3434 /* 3435 * After we put a data in the fifo, the controller will send 3436 * it regardless of the CTS state. Therefore, only use fifo 3437 * if we don't use control flow. 3438 */ 3439 !(up->port.flags & UPF_CONS_FLOW); 3440 3441 if (likely(use_fifo)) 3442 serial8250_console_fifo_write(up, s, count); 3443 else 3444 uart_console_write(port, s, count, serial8250_console_putchar); 3445 3446 /* 3447 * Finally, wait for transmitter to become empty 3448 * and restore the IER 3449 */ 3450 wait_for_xmitr(up, UART_LSR_BOTH_EMPTY); 3451 3452 if (em485) { 3453 mdelay(port->rs485.delay_rts_after_send); 3454 if (em485->tx_stopped) 3455 up->rs485_stop_tx(up); 3456 } 3457 3458 serial_port_out(port, UART_IER, ier); 3459 3460 /* 3461 * The receive handling will happen properly because the 3462 * receive ready bit will still be set; it is not cleared 3463 * on read. However, modem control will not, we must 3464 * call it if we have saved something in the saved flags 3465 * while processing with interrupts off. 3466 */ 3467 if (up->msr_saved_flags) 3468 serial8250_modem_status(up); 3469 3470 if (locked) 3471 spin_unlock_irqrestore(&port->lock, flags); 3472 } 3473 3474 static unsigned int probe_baud(struct uart_port *port) 3475 { 3476 unsigned char lcr, dll, dlm; 3477 unsigned int quot; 3478 3479 lcr = serial_port_in(port, UART_LCR); 3480 serial_port_out(port, UART_LCR, lcr | UART_LCR_DLAB); 3481 dll = serial_port_in(port, UART_DLL); 3482 dlm = serial_port_in(port, UART_DLM); 3483 serial_port_out(port, UART_LCR, lcr); 3484 3485 quot = (dlm << 8) | dll; 3486 return (port->uartclk / 16) / quot; 3487 } 3488 3489 int serial8250_console_setup(struct uart_port *port, char *options, bool probe) 3490 { 3491 int baud = 9600; 3492 int bits = 8; 3493 int parity = 'n'; 3494 int flow = 'n'; 3495 int ret; 3496 3497 if (!port->iobase && !port->membase) 3498 return -ENODEV; 3499 3500 if (options) 3501 uart_parse_options(options, &baud, &parity, &bits, &flow); 3502 else if (probe) 3503 baud = probe_baud(port); 3504 3505 ret = uart_set_options(port, port->cons, baud, parity, bits, flow); 3506 if (ret) 3507 return ret; 3508 3509 if (port->dev) 3510 pm_runtime_get_sync(port->dev); 3511 3512 return 0; 3513 } 3514 3515 int serial8250_console_exit(struct uart_port *port) 3516 { 3517 if (port->dev) 3518 pm_runtime_put_sync(port->dev); 3519 3520 return 0; 3521 } 3522 3523 #endif /* CONFIG_SERIAL_8250_CONSOLE */ 3524 3525 MODULE_LICENSE("GPL"); 3526