lkml.org 
[lkml]   [2019]   [Aug]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Date
    Subject[PATCH 3.16 026/157] serial: sh-sci: Fix setting SCSCR_TIE while transferring data
    3.16.72-rc1 review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Hoan Nguyen An <na-hoan@jinso.co.jp>

    commit 93bcefd4c6bad4c69dbc4edcd3fbf774b24d930d upstream.

    We disable transmission interrupt (clear SCSCR_TIE) after all data has been transmitted
    (if uart_circ_empty(xmit)). While transmitting, if the data is still in the tty buffer,
    re-enable the SCSCR_TIE bit, which was done at sci_start_tx().
    This is unnecessary processing, wasting CPU operation if the data transmission length is large.
    And further, transmit end, FIFO empty bits disabling have also been performed in the step above.

    Signed-off-by: Hoan Nguyen An <na-hoan@jinso.co.jp>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    [bwh: Backported to 3.16: adjust context]
    Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
    ---
    drivers/tty/serial/sh-sci.c | 12 +-----------
    1 file changed, 1 insertion(+), 11 deletions(-)

    --- a/drivers/tty/serial/sh-sci.c
    +++ b/drivers/tty/serial/sh-sci.c
    @@ -633,19 +633,9 @@ static void sci_transmit_chars(struct ua

    if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
    uart_write_wakeup(port);
    - if (uart_circ_empty(xmit)) {
    + if (uart_circ_empty(xmit))
    sci_stop_tx(port);
    - } else {
    - ctrl = serial_port_in(port, SCSCR);

    - if (port->type != PORT_SCI) {
    - serial_port_in(port, SCxSR); /* Dummy read */
    - serial_port_out(port, SCxSR, SCxSR_TDxE_CLEAR(port));
    - }
    -
    - ctrl |= SCSCR_TIE;
    - serial_port_out(port, SCSCR, ctrl);
    - }
    }

    /* On SH3, SCIF may read end-of-break as a space->mark char */
    \
     
     \ /
      Last update: 2019-08-10 22:53    [W:4.174 / U:0.116 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site