aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/isa/cy.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1995-02-15 18:41:41 +0000
committerBruce Evans <bde@FreeBSD.org>1995-02-15 18:41:41 +0000
commitae5e131ac88ee5e6919ae7b8cd6d5b50b303345e (patch)
tree7eb627521a366e42985b49553e408fd5ea8a552c /sys/i386/isa/cy.c
parent73bac2c219302f22d4ff4588c3a6d4e19c2faec5 (diff)
downloadsrc-ae5e131ac88ee5e6919ae7b8cd6d5b50b303345e.tar.gz
src-ae5e131ac88ee5e6919ae7b8cd6d5b50b303345e.zip
Avoid duplicating ttselect() so that we don't have to change cyselect()
when ttselect() is improved. This requires using an array of tty structs and not using ttymalloc(). Fix an off by 1 error. Some caclulations seem to be off by a factor of NCY. NCY defaults to 16, which gives 256 tty structs occupying 0xd000 bytes. The minor number encoding only allows 16 ttys. Update the types of timeout functions to 2.0.
Notes
Notes: svn path=/head/; revision=6454
Diffstat (limited to 'sys/i386/isa/cy.c')
-rw-r--r--sys/i386/isa/cy.c48
1 files changed, 18 insertions, 30 deletions
diff --git a/sys/i386/isa/cy.c b/sys/i386/isa/cy.c
index 86a9604729e6..3bd203bcb2aa 100644
--- a/sys/i386/isa/cy.c
+++ b/sys/i386/isa/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.7 1994/05/24 07:31:12 mycroft Exp $
+ * $Id: cy.c,v 1.1 1995/02/09 09:47:27 jkh Exp $
*/
/*
@@ -244,7 +244,11 @@ struct cy {
int cydefaultrate = TTYDEF_SPEED;
cy_addr cyclom_base; /* base address of the card */
static struct cy *info[NCY*PORTS_PER_CYCLOM];
+#ifdef __FreeBSD__ /* XXX actually only temporarily for 2.1-Development */
+struct tty cy_tty[NCY*PORTS_PER_CYCLOM];
+#else
struct tty *cy_tty[NCY*PORTS_PER_CYCLOM];
+#endif
static volatile u_char timeout_scheduled = 0; /* true if a timeout has been scheduled */
#ifdef CyDebug
@@ -354,13 +358,17 @@ cyopen(dev_t dev, int flag, int mode, struct proc *p)
int error = 0;
u_char carrier;
- if (unit >= PORTS_PER_CYCLOM)
+ if (unit >= /* NCY * ? */ PORTS_PER_CYCLOM)
return (ENXIO);
infop = info[unit];
base = infop->base_addr;
+#ifdef __FreeBSD__
+ infop->tty = &cy_tty[unit];
+#else
if (!cy_tty[unit])
infop->tty = cy_tty[unit] = ttymalloc();
+#endif
tp = infop->tty;
tp->t_oproc = cystart;
@@ -421,7 +429,7 @@ cyopen(dev_t dev, int flag, int mode, struct proc *p)
void
-cyclose_wakeup(caddr_t arg)
+cyclose_wakeup(void *arg)
{
wakeup(arg);
} /* end of cyclose_wakeup() */
@@ -664,7 +672,7 @@ service_upper_mdm(int unit)
/* upper level character processing routine */
void
-cytimeout(caddr_t ptr)
+cytimeout(void *ptr)
{
int unit;
@@ -1496,31 +1504,7 @@ cystop(struct tty *tp, int flag)
int
cyselect(dev_t dev, int rw, struct proc *p)
{
- struct tty *tp = info[UNIT(dev)]->tty;
- int s = spltty();
- int nread;
-
- switch (rw) {
-
- case FREAD:
- nread = ttnread(tp);
- if (nread > 0 ||
- ((tp->t_cflag&CLOCAL) == 0 && (tp->t_state&TS_CARR_ON) == 0))
- goto win;
- selrecord(p, &tp->t_rsel);
- break;
-
- case FWRITE:
- if (tp->t_outq.c_cc <= tp->t_lowat)
- goto win;
- selrecord(p, &tp->t_wsel);
- break;
- }
- splx(s);
- return (0);
- win:
- splx(s);
- return (1);
+ return (ttselect(UNIT(dev), rw, p));
} /* end of cyselect() */
@@ -1617,11 +1601,15 @@ cyparam_dummy(struct tty *tp, struct termios *t)
void
cyset(int unit, int active)
{
- if (unit < 0 || unit > PORTS_PER_CYCLOM) {
+ if (unit < 0 || unit >= /* NCY *? */ PORTS_PER_CYCLOM) {
printf("bad unit number %d\n", unit);
return;
}
+#ifdef __FreeBSD__
+ cy_tty[unit].t_param = active ? cyparam : cyparam_dummy;
+#else
cy_tty[unit]->t_param = active ? cyparam : cyparam_dummy;
+#endif
}