提交 732730d4 编写于 作者: G Geert Uytterhoeven 提交者: Linus Torvalds

m68k: gs: use tty_port fixes

commit b5391e29 ("gs: use tty_port")
forgot to update the m68k gs serial drivers.
Signed-off-by: NGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 bdee6ac7
...@@ -192,7 +192,7 @@ static inline void a2232_receive_char(struct a2232_port *port, int ch, int err) ...@@ -192,7 +192,7 @@ static inline void a2232_receive_char(struct a2232_port *port, int ch, int err)
Maybe one could implement a more efficient version by not only Maybe one could implement a more efficient version by not only
transferring one character at a time. transferring one character at a time.
*/ */
struct tty_struct *tty = port->gs.tty; struct tty_struct *tty = port->gs.port.tty;
#if 0 #if 0
switch(err) { switch(err) {
...@@ -226,7 +226,7 @@ static void a2232_disable_tx_interrupts(void *ptr) ...@@ -226,7 +226,7 @@ static void a2232_disable_tx_interrupts(void *ptr)
/* Does this here really have to be? */ /* Does this here really have to be? */
local_irq_save(flags); local_irq_save(flags);
port->gs.flags &= ~GS_TX_INTEN; port->gs.port.flags &= ~GS_TX_INTEN;
local_irq_restore(flags); local_irq_restore(flags);
} }
...@@ -242,7 +242,7 @@ static void a2232_enable_tx_interrupts(void *ptr) ...@@ -242,7 +242,7 @@ static void a2232_enable_tx_interrupts(void *ptr)
/* Does this here really have to be? */ /* Does this here really have to be? */
local_irq_save(flags); local_irq_save(flags);
port->gs.flags |= GS_TX_INTEN; port->gs.port.flags |= GS_TX_INTEN;
local_irq_restore(flags); local_irq_restore(flags);
} }
...@@ -276,9 +276,9 @@ static void a2232_shutdown_port(void *ptr) ...@@ -276,9 +276,9 @@ static void a2232_shutdown_port(void *ptr)
local_irq_save(flags); local_irq_save(flags);
port->gs.flags &= ~GS_ACTIVE; port->gs.port.flags &= ~GS_ACTIVE;
if (port->gs.tty && port->gs.tty->termios->c_cflag & HUPCL) { if (port->gs.port.tty && port->gs.port.tty->termios->c_cflag & HUPCL) {
/* Set DTR and RTS to Low, flush output. /* Set DTR and RTS to Low, flush output.
The NetBSD driver "msc.c" does it this way. */ The NetBSD driver "msc.c" does it this way. */
stat->Command = ( (stat->Command & ~A2232CMD_CMask) | stat->Command = ( (stat->Command & ~A2232CMD_CMask) |
...@@ -309,7 +309,7 @@ static int a2232_set_real_termios(void *ptr) ...@@ -309,7 +309,7 @@ static int a2232_set_real_termios(void *ptr)
volatile struct a2232status *status; volatile struct a2232status *status;
volatile struct a2232memory *mem; volatile struct a2232memory *mem;
if (!port->gs.tty || !port->gs.tty->termios) return 0; if (!port->gs.port.tty || !port->gs.port.tty->termios) return 0;
status = a2232stat(port->which_a2232, port->which_port_on_a2232); status = a2232stat(port->which_a2232, port->which_port_on_a2232);
mem = a2232mem(port->which_a2232); mem = a2232mem(port->which_a2232);
...@@ -345,7 +345,7 @@ static int a2232_set_real_termios(void *ptr) ...@@ -345,7 +345,7 @@ static int a2232_set_real_termios(void *ptr)
} }
a2232_param |= rate; a2232_param |= rate;
cflag = port->gs.tty->termios->c_cflag; cflag = port->gs.port.tty->termios->c_cflag;
// get character size // get character size
chsize = cflag & CSIZE; chsize = cflag & CSIZE;
...@@ -382,7 +382,7 @@ static int a2232_set_real_termios(void *ptr) ...@@ -382,7 +382,7 @@ static int a2232_set_real_termios(void *ptr)
the conventional way of inserting START/STOP characters the conventional way of inserting START/STOP characters
by hand in throttle()/unthrottle(). by hand in throttle()/unthrottle().
*/ */
softflow = !!( port->gs.tty->termios->c_iflag & IXOFF ); softflow = !!( port->gs.port.tty->termios->c_iflag & IXOFF );
// get Parity (Enabled/Disabled? If Enabled, Odd or Even?) // get Parity (Enabled/Disabled? If Enabled, Odd or Even?)
parity = cflag & (PARENB | PARODD); parity = cflag & (PARENB | PARODD);
...@@ -400,9 +400,9 @@ static int a2232_set_real_termios(void *ptr) ...@@ -400,9 +400,9 @@ static int a2232_set_real_termios(void *ptr)
/* Hmm. Maybe an own a2232_port structure /* Hmm. Maybe an own a2232_port structure
member would be cleaner? */ member would be cleaner? */
if (cflag & CLOCAL) if (cflag & CLOCAL)
port->gs.flags &= ~ASYNC_CHECK_CD; port->gs.port.flags &= ~ASYNC_CHECK_CD;
else else
port->gs.flags |= ASYNC_CHECK_CD; port->gs.port.flags |= ASYNC_CHECK_CD;
/* Now we have all parameters and can go to set them: */ /* Now we have all parameters and can go to set them: */
...@@ -482,18 +482,18 @@ static int a2232_open(struct tty_struct * tty, struct file * filp) ...@@ -482,18 +482,18 @@ static int a2232_open(struct tty_struct * tty, struct file * filp)
port = &a2232_ports[line]; port = &a2232_ports[line];
tty->driver_data = port; tty->driver_data = port;
port->gs.tty = tty; port->gs.port.tty = tty;
port->gs.count++; port->gs.port.count++;
retval = gs_init_port(&port->gs); retval = gs_init_port(&port->gs);
if (retval) { if (retval) {
port->gs.count--; port->gs.port.count--;
return retval; return retval;
} }
port->gs.flags |= GS_ACTIVE; port->gs.port.flags |= GS_ACTIVE;
retval = gs_block_til_ready(port, filp); retval = gs_block_til_ready(port, filp);
if (retval) { if (retval) {
port->gs.count--; port->gs.port.count--;
return retval; return retval;
} }
...@@ -522,7 +522,7 @@ int ch, err, n, p; ...@@ -522,7 +522,7 @@ int ch, err, n, p;
for (p = 0; p < NUMLINES; p++){ /* for every port on this board */ for (p = 0; p < NUMLINES; p++){ /* for every port on this board */
err = 0; err = 0;
port = &a2232_ports[n*NUMLINES+p]; port = &a2232_ports[n*NUMLINES+p];
if ( port->gs.flags & GS_ACTIVE ){ /* if the port is used */ if ( port->gs.port.flags & GS_ACTIVE ){ /* if the port is used */
status = a2232stat(n,p); status = a2232stat(n,p);
...@@ -577,8 +577,8 @@ int ch, err, n, p; ...@@ -577,8 +577,8 @@ int ch, err, n, p;
obuf = mem->OutBuf[p]; obuf = mem->OutBuf[p];
bufpos = status->OutHead; bufpos = status->OutHead;
while ( (port->gs.xmit_cnt > 0) && while ( (port->gs.xmit_cnt > 0) &&
(!port->gs.tty->stopped) && (!port->gs.port.tty->stopped) &&
(!port->gs.tty->hw_stopped) ){ /* While there are chars to transmit */ (!port->gs.port.tty->hw_stopped) ){ /* While there are chars to transmit */
if (((bufpos+1) & A2232_IOBUFLENMASK) != status->OutTail) { /* If the A2232 buffer is not full */ if (((bufpos+1) & A2232_IOBUFLENMASK) != status->OutTail) { /* If the A2232 buffer is not full */
ch = port->gs.xmit_buf[port->gs.xmit_tail]; /* get the next char to transmit */ ch = port->gs.xmit_buf[port->gs.xmit_tail]; /* get the next char to transmit */
port->gs.xmit_tail = (port->gs.xmit_tail+1) & (SERIAL_XMIT_SIZE-1); /* modulo-addition for the gs.xmit_buf ring-buffer */ port->gs.xmit_tail = (port->gs.xmit_tail+1) & (SERIAL_XMIT_SIZE-1); /* modulo-addition for the gs.xmit_buf ring-buffer */
...@@ -592,8 +592,8 @@ int ch, err, n, p; ...@@ -592,8 +592,8 @@ int ch, err, n, p;
status->OutHead = bufpos; status->OutHead = bufpos;
/* WakeUp if output buffer runs low */ /* WakeUp if output buffer runs low */
if ((port->gs.xmit_cnt <= port->gs.wakeup_chars) && port->gs.tty) { if ((port->gs.xmit_cnt <= port->gs.wakeup_chars) && port->gs.port.tty) {
tty_wakeup(port->gs.tty); tty_wakeup(port->gs.port.tty);
} }
} // if the port is used } // if the port is used
} // for every port on the board } // for every port on the board
...@@ -613,16 +613,16 @@ int ch, err, n, p; ...@@ -613,16 +613,16 @@ int ch, err, n, p;
struct a2232_port *port = &a2232_ports[n*7+p]; struct a2232_port *port = &a2232_ports[n*7+p];
port->cd_status = !(ncd & 1); /* ncd&1 <=> CD is now off */ port->cd_status = !(ncd & 1); /* ncd&1 <=> CD is now off */
if (!(port->gs.flags & ASYNC_CHECK_CD)) if (!(port->gs.port.flags & ASYNC_CHECK_CD))
; /* Don't report DCD changes */ ; /* Don't report DCD changes */
else if (port->cd_status) { // if DCD on: DCD went UP! else if (port->cd_status) { // if DCD on: DCD went UP!
/* Are we blocking in open?*/ /* Are we blocking in open?*/
wake_up_interruptible(&port->gs.open_wait); wake_up_interruptible(&port->gs.port.open_wait);
} }
else { // if DCD off: DCD went DOWN! else { // if DCD off: DCD went DOWN!
if (port->gs.tty) if (port->gs.port.tty)
tty_hangup (port->gs.tty); tty_hangup (port->gs.port.tty);
} }
} // if CD changed for this port } // if CD changed for this port
...@@ -655,8 +655,8 @@ static void a2232_init_portstructs(void) ...@@ -655,8 +655,8 @@ static void a2232_init_portstructs(void)
#ifdef NEW_WRITE_LOCKING #ifdef NEW_WRITE_LOCKING
mutex_init(&(port->gs.port_write_mutex)); mutex_init(&(port->gs.port_write_mutex));
#endif #endif
init_waitqueue_head(&port->gs.open_wait); init_waitqueue_head(&port->gs.port.open_wait);
init_waitqueue_head(&port->gs.close_wait); init_waitqueue_head(&port->gs.port.close_wait);
} }
} }
......
...@@ -183,8 +183,8 @@ static void scc_init_portstructs(void) ...@@ -183,8 +183,8 @@ static void scc_init_portstructs(void)
#ifdef NEW_WRITE_LOCKING #ifdef NEW_WRITE_LOCKING
port->gs.port_write_mutex = MUTEX; port->gs.port_write_mutex = MUTEX;
#endif #endif
init_waitqueue_head(&port->gs.open_wait); init_waitqueue_head(&port->gs.port.open_wait);
init_waitqueue_head(&port->gs.close_wait); init_waitqueue_head(&port->gs.port.close_wait);
} }
} }
...@@ -422,7 +422,7 @@ static irqreturn_t scc_rx_int(int irq, void *data) ...@@ -422,7 +422,7 @@ static irqreturn_t scc_rx_int(int irq, void *data)
{ {
unsigned char ch; unsigned char ch;
struct scc_port *port = data; struct scc_port *port = data;
struct tty_struct *tty = port->gs.tty; struct tty_struct *tty = port->gs.port.tty;
SCC_ACCESS_INIT(port); SCC_ACCESS_INIT(port);
ch = SCCread_NB(RX_DATA_REG); ch = SCCread_NB(RX_DATA_REG);
...@@ -453,7 +453,7 @@ static irqreturn_t scc_rx_int(int irq, void *data) ...@@ -453,7 +453,7 @@ static irqreturn_t scc_rx_int(int irq, void *data)
static irqreturn_t scc_spcond_int(int irq, void *data) static irqreturn_t scc_spcond_int(int irq, void *data)
{ {
struct scc_port *port = data; struct scc_port *port = data;
struct tty_struct *tty = port->gs.tty; struct tty_struct *tty = port->gs.port.tty;
unsigned char stat, ch, err; unsigned char stat, ch, err;
int int_pending_mask = port->channel == CHANNEL_A ? int int_pending_mask = port->channel == CHANNEL_A ?
IPR_A_RX : IPR_B_RX; IPR_A_RX : IPR_B_RX;
...@@ -500,7 +500,7 @@ static irqreturn_t scc_tx_int(int irq, void *data) ...@@ -500,7 +500,7 @@ static irqreturn_t scc_tx_int(int irq, void *data)
struct scc_port *port = data; struct scc_port *port = data;
SCC_ACCESS_INIT(port); SCC_ACCESS_INIT(port);
if (!port->gs.tty) { if (!port->gs.port.tty) {
printk(KERN_WARNING "scc_tx_int with NULL tty!\n"); printk(KERN_WARNING "scc_tx_int with NULL tty!\n");
SCCmod (INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0); SCCmod (INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0);
SCCwrite(COMMAND_REG, CR_TX_PENDING_RESET); SCCwrite(COMMAND_REG, CR_TX_PENDING_RESET);
...@@ -512,8 +512,9 @@ static irqreturn_t scc_tx_int(int irq, void *data) ...@@ -512,8 +512,9 @@ static irqreturn_t scc_tx_int(int irq, void *data)
SCCwrite(TX_DATA_REG, port->x_char); SCCwrite(TX_DATA_REG, port->x_char);
port->x_char = 0; port->x_char = 0;
} }
else if ((port->gs.xmit_cnt <= 0) || port->gs.tty->stopped || else if ((port->gs.xmit_cnt <= 0) ||
port->gs.tty->hw_stopped) port->gs.port.tty->stopped ||
port->gs.port.tty->hw_stopped)
break; break;
else { else {
SCCwrite(TX_DATA_REG, port->gs.xmit_buf[port->gs.xmit_tail++]); SCCwrite(TX_DATA_REG, port->gs.xmit_buf[port->gs.xmit_tail++]);
...@@ -522,15 +523,15 @@ static irqreturn_t scc_tx_int(int irq, void *data) ...@@ -522,15 +523,15 @@ static irqreturn_t scc_tx_int(int irq, void *data)
break; break;
} }
} }
if ((port->gs.xmit_cnt <= 0) || port->gs.tty->stopped || if ((port->gs.xmit_cnt <= 0) || port->gs.port.tty->stopped ||
port->gs.tty->hw_stopped) { port->gs.port.tty->hw_stopped) {
/* disable tx interrupts */ /* disable tx interrupts */
SCCmod (INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0); SCCmod (INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0);
SCCwrite(COMMAND_REG, CR_TX_PENDING_RESET); /* disable tx_int on next tx underrun? */ SCCwrite(COMMAND_REG, CR_TX_PENDING_RESET); /* disable tx_int on next tx underrun? */
port->gs.flags &= ~GS_TX_INTEN; port->gs.port.flags &= ~GS_TX_INTEN;
} }
if (port->gs.tty && port->gs.xmit_cnt <= port->gs.wakeup_chars) if (port->gs.port.tty && port->gs.xmit_cnt <= port->gs.wakeup_chars)
tty_wakeup(port->gs.tty); tty_wakeup(port->gs.port.tty);
SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET); SCCwrite_NB(COMMAND_REG, CR_HIGHEST_IUS_RESET);
return IRQ_HANDLED; return IRQ_HANDLED;
...@@ -550,14 +551,14 @@ static irqreturn_t scc_stat_int(int irq, void *data) ...@@ -550,14 +551,14 @@ static irqreturn_t scc_stat_int(int irq, void *data)
if (changed & SR_DCD) { if (changed & SR_DCD) {
port->c_dcd = !!(sr & SR_DCD); port->c_dcd = !!(sr & SR_DCD);
if (!(port->gs.flags & ASYNC_CHECK_CD)) if (!(port->gs.port.flags & ASYNC_CHECK_CD))
; /* Don't report DCD changes */ ; /* Don't report DCD changes */
else if (port->c_dcd) { else if (port->c_dcd) {
wake_up_interruptible(&port->gs.open_wait); wake_up_interruptible(&port->gs.port.open_wait);
} }
else { else {
if (port->gs.tty) if (port->gs.port.tty)
tty_hangup (port->gs.tty); tty_hangup (port->gs.port.tty);
} }
} }
SCCwrite(COMMAND_REG, CR_EXTSTAT_RESET); SCCwrite(COMMAND_REG, CR_EXTSTAT_RESET);
...@@ -578,7 +579,7 @@ static void scc_disable_tx_interrupts(void *ptr) ...@@ -578,7 +579,7 @@ static void scc_disable_tx_interrupts(void *ptr)
local_irq_save(flags); local_irq_save(flags);
SCCmod(INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0); SCCmod(INT_AND_DMA_REG, ~IDR_TX_INT_ENAB, 0);
port->gs.flags &= ~GS_TX_INTEN; port->gs.port.flags &= ~GS_TX_INTEN;
local_irq_restore(flags); local_irq_restore(flags);
} }
...@@ -636,8 +637,8 @@ static void scc_shutdown_port(void *ptr) ...@@ -636,8 +637,8 @@ static void scc_shutdown_port(void *ptr)
{ {
struct scc_port *port = ptr; struct scc_port *port = ptr;
port->gs.flags &= ~ GS_ACTIVE; port->gs.port.flags &= ~ GS_ACTIVE;
if (port->gs.tty && port->gs.tty->termios->c_cflag & HUPCL) { if (port->gs.port.tty && port->gs.port.tty->termios->c_cflag & HUPCL) {
scc_setsignals (port, 0, 0); scc_setsignals (port, 0, 0);
} }
} }
...@@ -652,14 +653,14 @@ static int scc_set_real_termios (void *ptr) ...@@ -652,14 +653,14 @@ static int scc_set_real_termios (void *ptr)
struct scc_port *port = ptr; struct scc_port *port = ptr;
SCC_ACCESS_INIT(port); SCC_ACCESS_INIT(port);
if (!port->gs.tty || !port->gs.tty->termios) return 0; if (!port->gs.port.tty || !port->gs.port.tty->termios) return 0;
channel = port->channel; channel = port->channel;
if (channel == CHANNEL_A) if (channel == CHANNEL_A)
return 0; /* Settings controlled by boot PROM */ return 0; /* Settings controlled by boot PROM */
cflag = port->gs.tty->termios->c_cflag; cflag = port->gs.port.tty->termios->c_cflag;
baud = port->gs.baud; baud = port->gs.baud;
chsize = (cflag & CSIZE) >> 4; chsize = (cflag & CSIZE) >> 4;
...@@ -678,9 +679,9 @@ static int scc_set_real_termios (void *ptr) ...@@ -678,9 +679,9 @@ static int scc_set_real_termios (void *ptr)
} }
if (cflag & CLOCAL) if (cflag & CLOCAL)
port->gs.flags &= ~ASYNC_CHECK_CD; port->gs.port.flags &= ~ASYNC_CHECK_CD;
else else
port->gs.flags |= ASYNC_CHECK_CD; port->gs.port.flags |= ASYNC_CHECK_CD;
#ifdef CONFIG_MVME147_SCC #ifdef CONFIG_MVME147_SCC
if (MACH_IS_MVME147) if (MACH_IS_MVME147)
...@@ -856,7 +857,7 @@ static int scc_open (struct tty_struct * tty, struct file * filp) ...@@ -856,7 +857,7 @@ static int scc_open (struct tty_struct * tty, struct file * filp)
{ COMMAND_REG, CR_EXTSTAT_RESET }, { COMMAND_REG, CR_EXTSTAT_RESET },
}; };
#endif #endif
if (!(port->gs.flags & ASYNC_INITIALIZED)) { if (!(port->gs.port.flags & ASYNC_INITIALIZED)) {
local_irq_save(flags); local_irq_save(flags);
#if defined(CONFIG_MVME147_SCC) || defined(CONFIG_MVME162_SCC) #if defined(CONFIG_MVME147_SCC) || defined(CONFIG_MVME162_SCC)
if (MACH_IS_MVME147 || MACH_IS_MVME16x) { if (MACH_IS_MVME147 || MACH_IS_MVME16x) {
...@@ -880,18 +881,18 @@ static int scc_open (struct tty_struct * tty, struct file * filp) ...@@ -880,18 +881,18 @@ static int scc_open (struct tty_struct * tty, struct file * filp)
} }
tty->driver_data = port; tty->driver_data = port;
port->gs.tty = tty; port->gs.port.tty = tty;
port->gs.count++; port->gs.port.count++;
retval = gs_init_port(&port->gs); retval = gs_init_port(&port->gs);
if (retval) { if (retval) {
port->gs.count--; port->gs.port.count--;
return retval; return retval;
} }
port->gs.flags |= GS_ACTIVE; port->gs.port.flags |= GS_ACTIVE;
retval = gs_block_til_ready(port, filp); retval = gs_block_til_ready(port, filp);
if (retval) { if (retval) {
port->gs.count--; port->gs.port.count--;
return retval; return retval;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册