⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 if_acc.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
#ifndef lintstatic char *sccsid = "@(#)if_acc.c	4.1	ULTRIX	7/2/90";#endif lint/************************************************************************ *									* *			Copyright (c) 1985 by				* *		Digital Equipment Corporation, Maynard, MA		* *			All rights reserved.				* *									* *   This software is furnished under a license and may be used and	* *   copied  only  in accordance with the terms of such license and	* *   with the  inclusion  of  the  above  copyright  notice.   This	* *   software  or  any  other copies thereof may not be provided or	* *   otherwise made available to any other person.  No title to and	* *   ownership of the software is hereby transferred.			* *									* *   This software is  derived  from  software  received  from  the	* *   University    of   California,   Berkeley,   and   from   Bell	* *   Laboratories.  Use, duplication, or disclosure is  subject  to	* *   restrictions  under  license  agreements  with  University  of	* *   California and with AT&T.						* *									* *   The information in this software is subject to change  without	* *   notice  and should not be construed as a commitment by Digital	* *   Equipment Corporation.						* *									* *   Digital assumes no responsibility for the use  or  reliability	* *   of its software on equipment which is not supplied by Digital.	* *									* ************************************************************************//* *	if_acc.c	7.1 (Berkeley) 6/5/86 */#include "acc.h"#ifdef NACC > 0 || defined(BINARY)/* * ACC LH/DH ARPAnet IMP interface driver. * * 13-Jun-86   -- jaw 	fix to uba reset and drivers. * * 18-mar-86  -- jaw     br/cvec changed to NOT use registers. * */#include "../data/if_acc_data.c"int     accprobe(), accattach(), accrint(), accxint();u_short accstd[] = { 0 };struct  uba_driver accdriver =	{ accprobe, 0, accattach, 0, accstd, "acc", accinfo };#define	ACCUNIT(x)	minor(x)int	accinit(), accstart(), accreset();/* * "Lower half" of IMP interface driver. * * Each IMP interface is handled by a common module which handles * the IMP-host protocol and a hardware driver which manages the * hardware specific details of talking with the IMP. * * The hardware portion of the IMP driver handles DMA and related * management of UNIBUS resources.  The IMP protocol module interprets * contents of these messages and "controls" the actions of the * hardware module during IMP resets, but not, for instance, during * UNIBUS resets. * * The two modules are coupled at "attach time", and ever after, * through the imp interface structure.  Higher level protocols, * e.g. IP, interact with the IMP driver, rather than the ACC. *//* * Reset the IMP and cause a transmitter interrupt by * performing a null DMA. */accprobe(reg)	caddr_t reg;{	register struct accdevice *addr = (struct accdevice *)reg;#ifdef lint	accrint(0); accxint(0);#endif	addr->icsr = ACC_RESET; DELAY(5000);	addr->ocsr = ACC_RESET; DELAY(5000);	addr->ocsr = OUT_BBACK; DELAY(5000);	addr->owc = 0;	addr->ocsr = ACC_IE | ACC_GO; DELAY(5000);	addr->ocsr = 0;	if (cvec && cvec != 0x200)	/* transmit -> receive */		cvec -= 4;	return (1);}/* * Call the IMP module to allow it to set up its internal * state, then tie the two modules together by setting up * the back pointers to common data structures. */accattach(ui)	struct uba_device *ui;{	register struct acc_softc *sc = &acc_softc[ui->ui_unit];	register struct impcb *ip;	struct ifimpcb {		struct	ifnet ifimp_if;		struct	impcb ifimp_impcb;	} *ifimp;	if ((ifimp = (struct ifimpcb *)impattach(ui, accreset)) == 0)		return;	sc->acc_if = &ifimp->ifimp_if;	ip = &ifimp->ifimp_impcb;	sc->acc_ic = ip;	ip->ic_init = accinit;	ip->ic_start = accstart;	sc->acc_ifuba.ifu_flags = UBA_CANTWAIT;#ifdef notdef	sc->acc_ifuba.ifu_flags |= UBA_NEEDBDP;#endif}/* * Reset interface after UNIBUS reset. * If interface is on specified uba, reset its state. */accreset(unit, uban)	int unit, uban;{	register struct uba_device *ui;	struct acc_softc *sc;	if (unit >= nNACC || (ui = accinfo[unit]) == 0 || ui->ui_alive == 0 ||	    ui->ui_ubanum != uban)		return;	printf(" acc%d", unit);	sc = &acc_softc[unit];	sc->acc_if->if_flags &= ~IFF_RUNNING;	/* must go through IMP to allow it to set state */	(*sc->acc_if->if_init)(unit);}/* * Initialize interface: clear recorded pending operations, * and retrieve, and initialize UNIBUS resources.  Note * return value is used by IMP init routine to mark IMP * unavailable for outgoing traffic. */accinit(unit)	int unit;{		register struct acc_softc *sc;	register struct uba_device *ui;	register struct accdevice *addr;	int info;	if (unit >= nNACC || (ui = accinfo[unit]) == 0 || ui->ui_alive == 0) {		printf("acc%d: not alive\n", unit);		return (0);	}	sc = &acc_softc[unit];	/*	 * Header length is 0 since we have to passs	 * the IMP leader up to the protocol interpretation	 * routines.  If we had the header length as	 * sizeof(struct imp_leader), then the if_ routines	 * would asssume we handle it on input and output.	 */	if (if_ubainit(&sc->acc_ifuba, ui->ui_ubanum, 0,	     (int)btoc(IMPMTU+2)) == 0) {		printf("acc%d: can't initialize\n", unit);		ui->ui_alive = 0;		sc->acc_if->if_flags &= ~(IFF_UP | IFF_RUNNING);		return (0);	}	sc->acc_if->if_flags |= IFF_RUNNING;	addr = (struct accdevice *)ui->ui_addr;	/*	 * Reset the imp interface;	 * the delays are pure guesswork.	 */        addr->ocsr = ACC_RESET; DELAY(5000);	addr->ocsr = OUT_BBACK;	DELAY(5000);	/* reset host master ready */	addr->ocsr = 0;	if (accinputreset(addr, unit) == 0) {		ui->ui_alive = 0;		return (0);	}	/*	 * Put up a read.  We can't restart any outstanding writes	 * until we're back in synch with the IMP (i.e. we've flushed	 * the NOOPs it throws at us).	 * Note: IMPMTU includes the leader.	 */	info = sc->acc_ifuba.ifu_r.ifrw_info;	addr->iba = (u_short)info;	addr->iwc = -((IMPMTU + 2) >> 1);#ifdef LOOPBACK	addr->ocsr |= OUT_BBACK;#endif	addr->icsr = 		IN_MRDY | ACC_IE | IN_WEN | ((info & 0x30000) >> 12) | ACC_GO;	return (1);}accinputreset(addr, unit)	register struct accdevice *addr;	register int unit;{	register int i;	addr->icsr = ACC_RESET; DELAY(5000);	addr->icsr = IN_MRDY | IN_WEN;		/* close the relay */	DELAY(10000);	/* YECH!!! */	for (i = 0; i < 500; i++) {		if ((addr->icsr & IN_HRDY) ||		    (addr->icsr & (IN_RMR | IN_IMPBSY)) == 0)			return (1);		addr->icsr = IN_MRDY | IN_WEN; DELAY(10000);		/* keep turning IN_RMR off */	}	printf("acc%d: imp doesn't respond, icsr=%b\n", unit,		addr->icsr, ACC_INBITS);	return (0);}/* * Start output on an interface. */accstart(dev)	dev_t dev;{	int unit = ACCUNIT(dev), info;	register struct acc_softc *sc = &acc_softc[unit];	register struct accdevice *addr;	struct mbuf *m;	u_short cmd;	if (sc->acc_ic->ic_oactive)		goto restart;		/*	 * Not already active, deqeue a request and	 * map it onto the UNIBUS.  If no more	 * requeusts, just return.	 */	IF_DEQUEUE(&sc->acc_if->if_snd, m);	if (m == 0) {		sc->acc_ic->ic_oactive = 0;		return;	}	sc->acc_olen = if_wubaput(&sc->acc_ifuba, m);restart:	/*	 * Have request mapped to UNIBUS for	 * transmission; start the output.	 */	if (sc->acc_ifuba.ifu_flags & UBA_NEEDBDP)		UBAPURGE(sc->acc_ifuba.ifu_uba, sc->acc_ifuba.ifu_w.ifrw_bdp,				sc->acc_ifuba.ifu_uban);	addr = (struct accdevice *)accinfo[unit]->ui_addr;	info = sc->acc_ifuba.ifu_w.ifrw_info;	addr->oba = (u_short)info;	addr->owc = -((sc->acc_olen + 1) >> 1);	cmd = ACC_IE | OUT_ENLB | ((info & 0x30000) >> 12) | ACC_GO;#ifdef LOOPBACK	cmd |= OUT_BBACK;#endif	addr->ocsr = cmd;	sc->acc_ic->ic_oactive = 1;}/* * Output interrupt handler. */accxint(unit)	int unit;{	register struct acc_softc *sc = &acc_softc[unit];	register struct accdevice *addr;	addr = (struct accdevice *)accinfo[unit]->ui_addr;	if (sc->acc_ic->ic_oactive == 0) {		printf("acc%d: stray xmit interrupt, csr=%b\n", unit,			addr->ocsr, ACC_OUTBITS);		return;	}	sc->acc_if->if_opackets++;	sc->acc_ic->ic_oactive = 0;	if (addr->ocsr & ACC_ERR) {		printf("acc%d: output error, ocsr=%b, icsr=%b\n", unit,			addr->ocsr, ACC_OUTBITS, addr->icsr, ACC_INBITS);		sc->acc_if->if_oerrors++;	}	if (sc->acc_ifuba.ifu_xtofree) {		m_freem(sc->acc_ifuba.ifu_xtofree);		sc->acc_ifuba.ifu_xtofree = 0;	}	if (sc->acc_if->if_snd.ifq_head)		accstart(unit);}/* * Input interrupt handler */accrint(unit)	int unit;{	register struct acc_softc *sc = &acc_softc[unit];	register struct accdevice *addr;    	struct mbuf *m;	int len, info;	addr = (struct accdevice *)accinfo[unit]->ui_addr;	sc->acc_if->if_ipackets++;	/*	 * Purge BDP; flush message if error indicated.	 */	if (sc->acc_ifuba.ifu_flags & UBA_NEEDBDP)		UBAPURGE(sc->acc_ifuba.ifu_uba, sc->acc_ifuba.ifu_r.ifrw_bdp,			sc->acc_ifuba.ifu_uban);	if (addr->icsr & ACC_ERR) {		printf("acc%d: input error, csr=%b\n", unit,		    addr->icsr, ACC_INBITS);		sc->acc_if->if_ierrors++;		sc->acc_flush = 1;	}	if (sc->acc_flush) {		if (addr->icsr & IN_EOM)			sc->acc_flush = 0;		goto setup;	}	len = IMPMTU+2 + (addr->iwc << 1);	if (len < 0 || len > IMPMTU+2) {		printf("acc%d: bad length=%d\n", unit, len);		sc->acc_if->if_ierrors++;		goto setup;	}	/*	 * The offset parameter is always 0 since using	 * trailers on the ARPAnet is insane.	 */	m = if_rubaget(&sc->acc_ifuba, len, 0);	if (m == 0)		goto setup;	if ((addr->icsr & IN_EOM) == 0) {		if (sc->acc_iq)			m_cat(sc->acc_iq, m);		else			sc->acc_iq = m;		goto setup;	}	if (sc->acc_iq) {		m_cat(sc->acc_iq, m);		m = sc->acc_iq;		sc->acc_iq = 0;	}	impinput(unit, m, sc->acc_if);setup:	/*	 * Setup for next message.	 */	info = sc->acc_ifuba.ifu_r.ifrw_info;	addr->iba = (u_short)info;	addr->iwc = -((IMPMTU + 2)>> 1);	addr->icsr =		IN_MRDY | ACC_IE | IN_WEN | ((info & 0x30000) >> 12) | ACC_GO;}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -