linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* usb serial: pl2303 driver TxD "break" stays after close() bug
@ 2015-02-05 10:56 Jari Ruusu
  2015-02-19  5:50 ` Johan Hovold
  0 siblings, 1 reply; 7+ messages in thread
From: Jari Ruusu @ 2015-02-05 10:56 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-usb, linux-kernel

Tested on 3.10.67 and 3.18.5 kernels with ATEN UC-232A usb-serial adapter.
No patch, sorry. To actually see the stuck "break" signal on TxD line, you
need either some sort of LED or voltmeter connected to the data transmit
line. Other RS-232 serial ports that I have access to (normal PC hardware
serial ports and FTDI usb-serial adapters) do not have this bug.


/* pl2303 TxD "break" stays after close() demo */

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <termios.h>
#include <fcntl.h>
#include <stdlib.h>

int main(int argc, char **argv)
{
    struct termios tt;
    int fd;

    if(argc < 2) {
        fprintf(stderr, "usage: %s /dev/ttyUSB0\n", argv[0]);
        exit(1);
    }
    if((fd = open(argv[1], O_RDWR | O_NOCTTY, 0)) == -1) {
        perror("serial port open failed");
        exit(1);
    }
    tcgetattr(fd, &tt);
    cfmakeraw(&tt);
    tcsetattr(fd, TCSANOW, &tt);
    if(ioctl(fd, TIOCSBRK, 0) == -1) {
        perror("set BRK failed");
        exit(1);
    }
    close(fd);
    exit(0);
}

-- 
Jari Ruusu  4096R/8132F189 12D6 4C3A DCDA 0AA4 27BD  ACDF F073 3C80 8132 F189

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-02-26 15:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-05 10:56 usb serial: pl2303 driver TxD "break" stays after close() bug Jari Ruusu
2015-02-19  5:50 ` Johan Hovold
2015-02-19 13:38   ` Jari Ruusu
2015-02-20  3:25     ` Johan Hovold
2015-02-20 13:11       ` Jari Ruusu
2015-02-21  3:09         ` Johan Hovold
2015-02-26 15:50           ` [PATCH] USB: pl2303: disable break on shutdown Johan Hovold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).