On Tue, 3 Apr 2012 12:47:21 -0700 sudhakar <sudhakar@xxxxxx> wrote: > > From: Sudhakar Mamillapalli <sudhakar@xxxxxx> > > When using SOL thru a KT serial device and Intel ME gets reset > the serial FIFOs need to be cleared for sane SOL output. On Acronym failure. Please remember that people looking at a patch and even more so people in future maintaining the code will not have any idea wtf you are talking about ! Expand the acronyms in a patch and include a bit of context. > @@ -1385,6 +1393,16 @@ serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr) > lsr |= up->lsr_saved_flags; > up->lsr_saved_flags = 0; > > + if ((up->port.type == PORT_KT_SERIAL) && (lsr & UART_LSR_BI)) { > + /* > + * For KT serial device if break interrupt then got > + * to clear the fifos for sane SOL output. > + */ > + serial8250_clear_fifos(up); > + fcr = uart_config[up->port.type].fcr; > + serial_port_out(port, UART_FCR, fcr); > + } > + This wants to be some kind of call back handled case not more stuff in the core 8250.c which we are trying to drive all the special cases back out of. > if (unlikely(lsr & UART_LSR_BRK_ERROR_BITS)) { > /* > * For statistics only > @@ -1729,7 +1747,12 @@ static void serial8250_backup_timeout(unsigned long data) > * based handler. > */ > if (up->port.irq) { > - ier = serial_in(up, UART_IER); > + /* > + * Get the ier value from up->ier rather than reading the > + * register, since some SOL uarts(for e.g. KT serial) it > + * goes to 0 momentarily on BMC reset. > + */ > + ier = up->ier; > serial_out(up, UART_IER, 0); Surely you do this fixup in your own private serial_in method as various other chips do for all sorts of brain damage. > } > > @@ -1896,8 +1919,12 @@ static void serial8250_put_poll_char(struct uart_port *port, > > /* > * First save the IER then disable the interrupts > + * > + * Get the ier value from up->ier rather than reading the > + * register, since some SOL uarts(for e.g. KT serial) it > + * goes to 0 momentarily on BMC reset. > */ > - ier = serial_port_in(port, UART_IER); > + ier = up->ier; > if (up->capabilities & UART_CAP_UUE) Ditto > serial_port_out(port, UART_IER, UART_IER_UUE); > else > @@ -2818,8 +2845,12 @@ serial8250_console_write(struct console *co, const char *s, unsigned int count) > > /* > * First save the IER then disable the interrupts > + * > + * Get the ier value from up->ier rather than reading the > + * register, since some SOL uarts(for e.g. KT serial) it > + * goes to 0 momentarily on BMC reset. > */ > - ier = serial_port_in(port, UART_IER); > + ier = up->ier; > Ditto In fact as far as I can see this boils down to - a private serial_in method - possibly adding a callback for special break handling. You may even be able to hide that in serial_in methods, but its probably better explicit. Alan -- To unsubscribe from this list: send the line "unsubscribe linux-serial" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html