diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1995-10-22 15:38:08 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1995-10-22 15:38:08 +0000 |
| commit | f668386c0484b725853d7c59291cd3e1bd731248 (patch) | |
| tree | 4c232c41290a8cd7ee09ceaad43f04b760e44d13 /sys/dev | |
| parent | f9dd61a448f1b03a700ed49495ff127a0494e55e (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/cy/cy.c | 25 | ||||
| -rw-r--r-- | sys/dev/cy/cy_isa.c | 25 | ||||
| -rw-r--r-- | sys/dev/sio/sio.c | 47 |
3 files changed, 27 insertions, 70 deletions
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c index ac0a16fb678a..0ac16d616e14 100644 --- a/sys/dev/cy/cy.c +++ b/sys/dev/cy/cy.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.14 1995/07/31 18:29:48 bde Exp $ + * $Id: cy.c,v 1.15 1995/10/11 02:41:13 davidg Exp $ */ #include "cy.h" @@ -374,18 +374,7 @@ struct isa_driver siodriver = { sioprobe, sioattach, "cy" }; -#ifdef COMCONSOLE -#undef COMCONSOLE -#define COMCONSOLE 1 -#else -#define COMCONSOLE 0 -#endif - -#ifndef CONUNIT -#define CONUNIT (0) -#endif - -static int comconsole = CONUNIT; +static int comconsole = -1; static speed_t comdefaultrate = TTYDEF_SPEED; static u_int com_events; /* input chars + weighted output completions */ static int commajor; @@ -565,7 +554,7 @@ sioattach(isdp) com->it_in.c_oflag = 0; com->it_in.c_cflag = TTYDEF_CFLAG; com->it_in.c_lflag = 0; - if (unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL)) { + if (unit == comconsole) { com->it_in.c_iflag = TTYDEF_IFLAG; com->it_in.c_oflag = TTYDEF_OFLAG; com->it_in.c_cflag = TTYDEF_CFLAG | CLOCAL; @@ -897,8 +886,7 @@ comhardclose(com) com->active_out = FALSE; wakeup(&com->active_out); wakeup(TSA_CARR_ON(tp)); /* restart any wopeners */ - if (!(com->state & CS_DTR_OFF) - && !(unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL))) + if (!(com->state & CS_DTR_OFF) && unit != comconsole) com->kdc.kdc_state = DC_IDLE; splx(s); } @@ -941,8 +929,7 @@ siowrite(dev, uio, flag) * is not the console. In that situation we don't need/want the X * server taking over the console. */ - if (constty && unit == comconsole - && (COMCONSOLE || boothowto & RB_SERIAL)) + if (constty != NULL && unit == comconsole) constty = NULL; #ifdef Smarts /* XXX duplicate ttwrite(), but without so much output processing on @@ -962,7 +949,7 @@ siodtrwakeup(chan) com = (struct com_s *)chan; com->state &= ~CS_DTR_OFF; - if (!(com->unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL))) + if (com->unit != comconsole) com->kdc.kdc_state = DC_IDLE; wakeup(&com->dtr_wait); } diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c index ac0a16fb678a..0ac16d616e14 100644 --- a/sys/dev/cy/cy_isa.c +++ b/sys/dev/cy/cy_isa.c @@ -27,7 +27,7 @@ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: cy.c,v 1.14 1995/07/31 18:29:48 bde Exp $ + * $Id: cy.c,v 1.15 1995/10/11 02:41:13 davidg Exp $ */ #include "cy.h" @@ -374,18 +374,7 @@ struct isa_driver siodriver = { sioprobe, sioattach, "cy" }; -#ifdef COMCONSOLE -#undef COMCONSOLE -#define COMCONSOLE 1 -#else -#define COMCONSOLE 0 -#endif - -#ifndef CONUNIT -#define CONUNIT (0) -#endif - -static int comconsole = CONUNIT; +static int comconsole = -1; static speed_t comdefaultrate = TTYDEF_SPEED; static u_int com_events; /* input chars + weighted output completions */ static int commajor; @@ -565,7 +554,7 @@ sioattach(isdp) com->it_in.c_oflag = 0; com->it_in.c_cflag = TTYDEF_CFLAG; com->it_in.c_lflag = 0; - if (unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL)) { + if (unit == comconsole) { com->it_in.c_iflag = TTYDEF_IFLAG; com->it_in.c_oflag = TTYDEF_OFLAG; com->it_in.c_cflag = TTYDEF_CFLAG | CLOCAL; @@ -897,8 +886,7 @@ comhardclose(com) com->active_out = FALSE; wakeup(&com->active_out); wakeup(TSA_CARR_ON(tp)); /* restart any wopeners */ - if (!(com->state & CS_DTR_OFF) - && !(unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL))) + if (!(com->state & CS_DTR_OFF) && unit != comconsole) com->kdc.kdc_state = DC_IDLE; splx(s); } @@ -941,8 +929,7 @@ siowrite(dev, uio, flag) * is not the console. In that situation we don't need/want the X * server taking over the console. */ - if (constty && unit == comconsole - && (COMCONSOLE || boothowto & RB_SERIAL)) + if (constty != NULL && unit == comconsole) constty = NULL; #ifdef Smarts /* XXX duplicate ttwrite(), but without so much output processing on @@ -962,7 +949,7 @@ siodtrwakeup(chan) com = (struct com_s *)chan; com->state &= ~CS_DTR_OFF; - if (!(com->unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL))) + if (com->unit != comconsole) com->kdc.kdc_state = DC_IDLE; wakeup(&com->dtr_wait); } diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index a7b48ea68476..0f6b33f25685 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)com.c 7.5 (Berkeley) 5/16/91 - * $Id: sio.c,v 1.113 1995/09/24 04:59:16 davidg Exp $ + * $Id: sio.c,v 1.114 1995/10/21 00:55:25 phk Exp $ */ #include "sio.h" @@ -298,14 +298,7 @@ struct isa_driver siodriver = { sioprobe, sioattach, "sio" }; -#ifdef COMCONSOLE -#undef COMCONSOLE -#define COMCONSOLE 1 -#else -#define COMCONSOLE 0 -#endif - -static int comconsole = CONUNIT; +static int comconsole = -1; static speed_t comdefaultrate = TTYDEF_SPEED; static u_int com_events; /* input chars + weighted output completions */ static int commajor; @@ -762,7 +755,7 @@ sioattach(isdp) com->it_in.c_oflag = 0; com->it_in.c_cflag = TTYDEF_CFLAG; com->it_in.c_lflag = 0; - if (unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL)) { + if (unit == comconsole) { com->it_in.c_iflag = TTYDEF_IFLAG; com->it_in.c_oflag = TTYDEF_OFLAG; com->it_in.c_cflag = TTYDEF_CFLAG | CLOCAL; @@ -855,13 +848,11 @@ determined_type: ; #endif /* COM_MULTIPORT */ printf("\n"); - kdc_sio[unit].kdc_state = - (unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL)) - ? DC_BUSY : DC_IDLE; + kdc_sio[unit].kdc_state = (unit == comconsole) ? DC_BUSY : DC_IDLE; #ifdef KGDB if (kgdb_dev == makedev(commajor, unit)) { - if (unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL)) + if (unit == comconsole) kgdb_dev = -1; /* can't debug over console port */ else { int divisor; @@ -1161,8 +1152,7 @@ comhardclose(com) com->active_out = FALSE; wakeup(&com->active_out); wakeup(TSA_CARR_ON(tp)); /* restart any wopeners */ - if (!(com->state & CS_DTR_OFF) - && !(unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL))) + if (!(com->state & CS_DTR_OFF) && unit != comconsole) kdc_sio[unit].kdc_state = DC_IDLE; splx(s); } @@ -1211,8 +1201,7 @@ siowrite(dev, uio, flag) * is not the console. In that situation we don't need/want the X * server taking over the console. */ - if (constty && unit == comconsole - && (COMCONSOLE || boothowto & RB_SERIAL)) + if (constty != NULL && unit == comconsole) constty = NULL; return ((*linesw[tp->t_line].l_write)(tp, uio, flag)); } @@ -1225,7 +1214,7 @@ siodtrwakeup(chan) com = (struct com_s *)chan; com->state &= ~CS_DTR_OFF; - if (!(com->unit == comconsole && (COMCONSOLE || boothowto & RB_SERIAL))) + if (com->unit != comconsole) kdc_sio[com->unit].kdc_state = DC_IDLE; wakeup(&com->dtr_wait); } @@ -1306,8 +1295,7 @@ siointr1(com) if (line_status & (LSR_PE|LSR_FE|LSR_BI)) { #ifdef DDB #ifdef BREAK_TO_DEBUGGER - if ( (line_status & LSR_BI) - && (COMCONSOLE || boothowto & RB_SERIAL) + if (line_status & LSR_BI && com->unit == comconsole) { Debugger("serial console break"); goto cont; @@ -2056,7 +2044,6 @@ siostop(tp, rw) } enable_intr(); comstart(tp); - return; /* XXX should clear h/w fifos too. */ } @@ -2279,7 +2266,7 @@ disc_optim(tp, t, com) /* * Following are all routines needed for SIO to act as console */ -#include <i386/i386/cons.h> +#include <machine/cons.h> struct siocnstate { u_char dlbl; @@ -2386,21 +2373,17 @@ siocnprobe(cp) /* initialize required fields */ cp->cn_dev = makedev(commajor, unit); - - if (COMCONSOLE || boothowto & RB_SERIAL) - cp->cn_pri = CN_REMOTE; /* Force a serial port console */ - else - cp->cn_pri = CN_NORMAL; +#ifdef COMCONSOLE + cp->cn_pri = CN_REMOTE; /* Force a serial port console */ +#else + cp->cn_pri = (boothowto & RB_SERIAL) ? CN_REMOTE : CN_NORMAL; +#endif } void siocninit(cp) struct consdev *cp; { - /* - * XXX can delete more comconsole stuff now that i/o routines are - * fairly reentrant. - */ comconsole = DEV_TO_UNIT(cp->cn_dev); } |
