lkml.org 
[lkml]   [2009]   [Feb]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH 60/80] tty: extract the pty init time special cases
From
Date
> The first most useful part would be understand what your pty driver does
> and is required that is not in the base one. Just an idea of what extra
> APIs it provides would be quite useful. If it is stuff like virtual
modem
> lines then that is stuff I want to see supported in the base kernel
> anyway.

Our pty driver basically creates a virtual serial TTY on the slave side
which
will allow the application to control a remote device server serial port
across a LAN network. The application can control things like baud rate,
parity, stop bits, HW & SW flow control, and monitor and control modem
signals.

Below are some defines that would explain how we extended the base pty.
One note is the our diver is based on the legacy/bsd pty not the unix98
pty, so if it was decided that this extension was to be merged into the
base pty then the code would have to be ported to the unix98 sections as
well.

/*
There aren't enough bits available in tty->ctrl_status for the events
that
we need to signal to the daemon, so we will use 1 bit to indicate that
the daemon needs to make an IOCTL (PTX_IOCXCSGET) to get the real
status.
*/
#define TIOCPKT_XCTRLSTATUS 0x40

// bit definition for ptyx_struct.ctrl_status
#define XCTRLSTATUS_SIGNALS 0x00000001 // update DTR, RTS signals
#define XCTRLSTATUS_TERMIOS 0x00000002 // update termios settings
#define XCTRLSTATUS_BREAK 0x00000004 // send break signal
#define XCTRLSTATUS_OPEN 0x00000008 // slave port opened
#define XCTRLSTATUS_CLOSE 0x00000010 // slave port closed
#define XCTRLSTATUS_BREAKON 0x00000020 // send break on
#define XCTRLSTATUS_BREAKOFF 0x00000040 // send break off
#define XCTRLSTATUS_DRAIN 0x00000080 // drain port

// IOCTLs handled by master ptyx driver
#define PTX_IOC ('p' << 24) + ('t' << 16) + ('x' << 8)
#define PTX_IOCMSET PTX_IOC + 1 // set modem signal
#define PTX_IOCLSET PTX_IOC + 2 // set line status info
#define PTX_IOCXCSGET PTX_IOC + 3 // get extended control status
#define PTX_IOCDRAINEND PTX_IOC + 4 // drain complete
#define PTX_IOCNETSTAT PTX_IOC + 5 // update network
#define PTX_IOCOWTSET PTX_IOC + 6 // give ptyx, the open wait time
in msec
// -1=ignore network
status, -2=wait forever






Barry


\
 
 \ /
  Last update: 2009-02-02 16:49    [W:0.049 / U:0.524 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site