freebsd-dev/sys/i386/isa/if_is.c

1184 lines
28 KiB
C
Raw Normal View History

1993-06-12 14:58:17 +00:00
/*
* Isolan AT 4141-0 Ethernet driver
* Isolink 4110
*
* By Paul Richards
*
* Copyright (C) 1993, Paul Richards. This software may be used, modified,
* copied, distributed, and sold, in both source and binary form provided
* that the above copyright and these terms are retained. Under no
* circumstances is the author responsible for the proper functioning
* of this software, nor does the author assume any responsibility
* for damages incurred with its use.
*
* $Id: if_is.c,v 1.28 1994/10/19 01:59:02 wollman Exp $
1994-08-02 07:55:43 +00:00
*/
1993-06-12 14:58:17 +00:00
/* TODO
1) Add working multicast support
2) Use better allocation of memory to card
3) Advertise for more packets until all transmit buffers are full
4) Add more of the timers/counters e.g. arpcom.opackets etc.
*/
1993-06-12 14:58:17 +00:00
#include "is.h"
#if NIS > 0
#include "bpfilter.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/mbuf.h>
#include <sys/socket.h>
#include <sys/syslog.h>
#include <sys/devconf.h>
1993-06-12 14:58:17 +00:00
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_types.h>
1993-06-12 14:58:17 +00:00
#ifdef INET
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/in_var.h>
#include <netinet/ip.h>
#include <netinet/if_ether.h>
1993-06-12 14:58:17 +00:00
#endif
#ifdef NS
#include <netns/ns.h>
#include <netns/ns_if.h>
1993-06-12 14:58:17 +00:00
#endif
#if NBPFILTER > 0
#include <net/bpf.h>
#include <net/bpfdesc.h>
#endif
#include <i386/isa/isa_device.h>
#include <i386/isa/if_isreg.h>
#include <i386/isa/icu.h>
1993-06-12 14:58:17 +00:00
#include <vm/vm.h>
1993-06-12 14:58:17 +00:00
#define ETHER_MIN_LEN 64
#define ETHER_MAX_LEN 1518
#define ETHER_ADDR_LEN 6
char *card_type[] = {"Unknown",
"BICC Isolan",
"NE2100"};
char *ic_type[] = {"Unknown",
"Am7990 LANCE",
"Am79960 PCnet_ISA"};
1993-06-12 14:58:17 +00:00
struct is_softc {
struct arpcom arpcom; /* Ethernet common part */
int iobase;
int rap;
int rdp;
int ic_type; /* Am 7990 or Am79960 */
int card_type;
int is_debug;
struct init_block *init_block; /* Lance initialisation block */
struct mds *rd;
struct mds *td;
unsigned char *rbuf;
unsigned char *tbuf;
1993-06-12 14:58:17 +00:00
int last_rd;
int last_td;
int no_td;
caddr_t bpf; /* BPF "magic cookie" */
1993-06-12 14:58:17 +00:00
} is_softc[NIS] ;
/* Function prototypes */
static int is_probe(struct isa_device *);
static int is_attach(struct isa_device *);
static void is_watchdog(int);
static int is_ioctl(struct ifnet *, int, caddr_t);
static void is_init(int);
static void is_start(struct ifnet *);
static void istint(int);
static void recv_print(int, int);
static void xmit_print(int, int);
static inline void is_rint(int unit);
static inline void isread(struct is_softc*, unsigned char*, int);
struct mbuf *isget();
struct isa_driver isdriver = {
is_probe,
is_attach,
"is"
};
void
iswrcsr(unit,port,val)
int unit;
1993-06-12 14:58:17 +00:00
u_short port;
u_short val;
{
outw(is_softc[unit].rap,port);
outw(is_softc[unit].rdp,val);
1993-06-12 14:58:17 +00:00
}
u_short isrdcsr(unit,port)
int unit;
1993-06-12 14:58:17 +00:00
u_short port;
{
outw(is_softc[unit].rap,port);
return(inw(is_softc[unit].rdp));
1993-06-12 14:58:17 +00:00
}
static struct kern_devconf kdc_is[NIS] = { {
0, 0, 0, /* filled in by dev_attach */
"is", 0, { MDDT_ISA, 0, "net" },
isa_generic_externalize, 0, 0, ISA_EXTERNALLEN,
&kdc_isa0, /* parent */
0, /* parentdata */
DC_BUSY, /* network interfaces are always busy */
"Isolan AT 4141-0, Isolink 4110, or NE2100 Ethernet adapter"
} };
static inline void
is_registerdev(struct isa_device *id)
{
if(id->id_unit)
kdc_is[id->id_unit] = kdc_is[0];
kdc_is[id->id_unit].kdc_unit = id->id_unit;
kdc_is[id->id_unit].kdc_isa = id;
dev_attach(&kdc_is[id->id_unit]);
}
int
is_probe(isa_dev)
struct isa_device *isa_dev;
1993-06-12 14:58:17 +00:00
{
int unit = isa_dev->id_unit ;
int nports;
1993-06-12 14:58:17 +00:00
int i;
is_softc[unit].iobase = isa_dev->id_iobase;
1993-06-12 14:58:17 +00:00
/*
* It's impossible to do a non-invasive probe of the
* LANCE and PCnet_ISA. The LANCE requires setting the
* STOP bit to access the registers and the PCnet_ISA
* address port resets to an unknown state!!
*/
1993-06-12 14:58:17 +00:00
/*
* Check for BICC cards first since for the NE2100 and
* PCnet-ISA cards this write will hit the Address PROM.
*/
#ifdef DEBUG
printf("Dumping io space for is%d starting at %x\n",unit,is_softc[unit].iobase);
for (i=0; i< 32; i++)
printf(" %x ",inb(is_softc[unit].iobase+i));
printf("\n");
#endif /* DEBUG*/
if (nports = bicc_probe(unit))
return (nports);
if (nports = ne2100_probe(unit))
return (nports);
return (0);
}
int
ne2100_probe(unit)
int unit;
{
struct is_softc *is = &is_softc[unit];
int i;
is->rap = is->iobase + NE2100_RAP;
is->rdp = is->iobase + NE2100_RDP;
if (is->ic_type = lance_probe(unit)) {
is->card_type = NE2100;
/*
* Extract the physical MAC address from ROM
*/
for(i=0;i<ETHER_ADDR_LEN;i++)
is->arpcom.ac_enaddr[i]=inb(is->iobase+i);
/*
* Return number of I/O ports used by card
*/
return (24);
1993-06-12 14:58:17 +00:00
}
return (0);
}
int
bicc_probe(unit)
int unit;
{
struct is_softc *is = &is_softc[unit];
int i;
1993-06-12 14:58:17 +00:00
is->rap = is->iobase + BICC_RAP;
is->rdp = is->iobase + BICC_RDP;
1993-06-12 14:58:17 +00:00
if (is->ic_type = lance_probe(unit)) {
is->card_type = BICC;
/*
* Extract the physical ethernet address from ROM
*/
for(i=0;i<ETHER_ADDR_LEN;i++)
is->arpcom.ac_enaddr[i]=inb(is->iobase+(i*2));
/*
* Return number of I/O ports used by card
*/
return (16);
}
return (0);
1993-06-12 14:58:17 +00:00
}
/*
* Determine which, if any, of the LANCE or
* PCnet-ISA are present on the card.
*/
int
lance_probe(unit)
int unit;
{
int type=0;
/*
* Have to reset the LANCE to get any
* stable information from it.
*/
iswrcsr(unit,0,STOP);
DELAY(100);
if (isrdcsr(unit,0) != STOP)
/*
* This either isn't a LANCE
* or there's a major problem.
*/
return(0);
/*
* Depending on which controller it is, CSR3 will have
* different settable bits. Write to them all and see which ones
* get set.
*/
iswrcsr(unit,3, LANCE_MASK);
if (isrdcsr(unit,3) == LANCE_MASK)
type = LANCE;
if (isrdcsr(unit,3) == PCnet_ISA_MASK)
type = PCnet_ISA;
return (type);
}
1993-06-12 14:58:17 +00:00
/*
* Reset of interface.
*/
static void
is_reset(int unit)
1993-06-12 14:58:17 +00:00
{
int s;
struct is_softc *is = &is_softc[unit];
1993-06-12 14:58:17 +00:00
if (unit >= NIS)
return;
printf("is%d: reset\n", unit);
is_init(unit);
1993-06-12 14:58:17 +00:00
}
/*
* Interface exists: make available by filling in network interface
* record. System will initialize the interface when it is ready
* to accept packets. We get the ethernet address here.
*/
int
is_attach(isa_dev)
struct isa_device *isa_dev;
1993-06-12 14:58:17 +00:00
{
int unit = isa_dev->id_unit;
struct is_softc *is = &is_softc[unit];
struct ifnet *ifp = &is->arpcom.ac_if;
struct ifaddr *ifa;
struct sockaddr_dl *sdl;
1993-06-12 14:58:17 +00:00
ifp->if_unit = unit;
ifp->if_name = isdriver.name ;
ifp->if_mtu = ETHERMTU;
ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS;
ifp->if_init = is_init;
1993-06-12 14:58:17 +00:00
ifp->if_output = ether_output;
ifp->if_start = is_start;
ifp->if_ioctl = is_ioctl;
ifp->if_reset = is_reset;
ifp->if_watchdog = is_watchdog;
/*
* XXX -- not sure this is right place to do this
* Allocate memory for use by Lance
* Memory allocated for:
* initialisation block,
* ring descriptors,
* transmit and receive buffers.
*/
/*
* XXX - hopefully have better way to get dma'able memory later,
* this code assumes that the physical memory address returned
* from malloc will be below 16Mb. The Lance's address registers
* are only 16 bits wide!
*/
#define ISMAXMEM ((NRBUF+NTBUF)*(BUFSIZE) + (NRBUF+NTBUF)*sizeof(struct mds) \
+ sizeof(struct init_block) + 8)
is->init_block = (struct init_block *)malloc(ISMAXMEM,M_TEMP,M_NOWAIT);
if (!is->init_block) {
printf("is%d : Couldn't allocate memory for card\n",unit);
}
/*
* XXX -- should take corrective action if not
* quadword alilgned, the 8 byte slew factor in ISMAXMEM
* allows for this.
*/
if ((u_long)is->init_block & 0x3)
printf("is%d: memory allocated not quadword aligned\n");
/* Set up DMA */
isa_dmacascade(isa_dev->id_drq);
1993-06-12 14:58:17 +00:00
if_attach(ifp);
is_registerdev(isa_dev);
/*
* Search down the ifa address list looking
* for the AF_LINK type entry
*/
ifa = ifp->if_addrlist;
while ((ifa != 0) && (ifa->ifa_addr != 0) &&
(ifa->ifa_addr->sa_family != AF_LINK))
ifa = ifa->ifa_next;
/*
* If we find an AF_LINK type entry, we will fill
* in the hardware address for this interface.
*/
if ((ifa != 0) && (ifa->ifa_addr != 0)) {
/*
* Fill in the link level address for this interface
*/
sdl = (struct sockaddr_dl *)ifa->ifa_addr;
sdl->sdl_type = IFT_ETHER;
sdl->sdl_alen = ETHER_ADDR_LEN;
sdl->sdl_slen = 0;
bcopy(is->arpcom.ac_enaddr, LLADDR(sdl), ETHER_ADDR_LEN);
}
printf ("is%d: address %s\n", unit,
ether_sprintf(is->arpcom.ac_enaddr)) ;
printf("%s, %s\n",ic_type[is->ic_type],card_type[is->card_type]);
#if NBPFILTER > 0
bpfattach(&is->bpf, ifp, DLT_EN10MB, sizeof(struct ether_header));
#endif
return 1;
}
static void
is_watchdog(unit)
int unit;
{
log(LOG_ERR, "is%d: device timeout\n", unit);
is_reset(unit);
1993-06-12 14:58:17 +00:00
}
/* Lance initialisation block set up */
void
init_mem(unit)
int unit;
1993-06-12 14:58:17 +00:00
{
int i;
void *temp;
struct is_softc *is = &is_softc[unit];
1993-06-12 14:58:17 +00:00
/*
* At this point we assume that the
* memory allocated to the Lance is
* quadword aligned. If it isn't
* then the initialisation is going
* fail later on.
*/
1993-06-12 14:58:17 +00:00
/*
* Set up lance initialisation block
*/
temp = (void *)is->init_block;
temp += sizeof(struct init_block);
is->rd = (struct mds *) temp;
is->td = (struct mds *) (temp + (NRBUF*sizeof(struct mds)));
1993-06-12 14:58:17 +00:00
temp += (NRBUF+NTBUF) * sizeof(struct mds);
is->init_block->mode = 0;
for (i=0; i<ETHER_ADDR_LEN; i++)
is->init_block->padr[i] = is->arpcom.ac_enaddr[i];
for (i = 0; i < 8; ++i)
is->init_block->ladrf[i] = MULTI_INIT_ADDR;
is->init_block->rdra = kvtop(is->rd);
is->init_block->rlen = ((kvtop(is->rd) >> 16) & 0xff) | (RLEN<<13);
is->init_block->tdra = kvtop(is->td);
is->init_block->tlen = ((kvtop(is->td) >> 16) & 0xff) | (TLEN<<13);
1993-06-12 14:58:17 +00:00
/*
* Set up receive ring descriptors
*/
is->rbuf = (unsigned char *)temp;
1993-06-12 14:58:17 +00:00
for (i=0; i<NRBUF; i++) {
(is->rd+i)->addr = kvtop(temp);
(is->rd+i)->flags= ((kvtop(temp) >> 16) & 0xff) | OWN;
(is->rd+i)->bcnt = -BUFSIZE;
(is->rd+i)->mcnt = 0;
1993-06-12 14:58:17 +00:00
temp += BUFSIZE;
}
/*
* Set up transmit ring descriptors
*/
is->tbuf = (unsigned char *)temp;
1993-06-12 14:58:17 +00:00
for (i=0; i<NTBUF; i++) {
(is->td+i)->addr = kvtop(temp);
(is->td+i)->flags= ((kvtop(temp) >> 16) & 0xff);
(is->td+i)->bcnt = 0;
(is->td+i)->mcnt = 0;
1993-06-12 14:58:17 +00:00
temp += BUFSIZE;
}
}
/*
* Initialization of interface; set up initialization block
* and transmit/receive descriptor rings.
*/
static void
is_init(unit)
1993-06-12 14:58:17 +00:00
int unit;
{
register struct is_softc *is = &is_softc[unit];
struct ifnet *ifp = &is->arpcom.ac_if;
1993-06-12 14:58:17 +00:00
int s;
register i;
/* Address not known */
1993-06-12 14:58:17 +00:00
if (ifp->if_addrlist == (struct ifaddr *)0) return;
New interrupt code from Bruce Evans. In additional to Bruce's attached list of changes, I've made the following additional changes: 1) i386/include/ipl.h renamed to spl.h as the name conflicts with the file of the same name in i386/isa/ipl.h. 2) changed all use of *mask (i.e. netmask, biomask, ttymask, etc) to *_imask (net_imask, etc). 3) changed vestige of splnet use in if_is to splimp. 4) got rid of "impmask" completely (Bruce had gotten rid of netmask), and are now using net_imask instead. 5) dozens of minor cruft to glue in Bruce's changes. These require changes I made to config(8) as well, and thus it must be rebuilt. -DG from Bruce Evans: sio: o No diff is supplied. Remove the define of setsofttty(). I hope that is enough. *.s: o i386/isa/debug.h no longer exists. The event counters became too much trouble to maintain. All function call entry and exception entry counters can be recovered by using profiling kernel (the new profiling supports all entry points; however, it is too slow to leave enabled all the time; it also). Only BDBTRAP() from debug.h is now used. That is moved to exception.s. It might be worth preserving SHOW_BITS() and calling it from _mcount() (if enabled). o T_ASTFLT is now only set just before calling trap(). o All exception handlers set SWI_AST_MASK in cpl as soon as possible after entry and arrange for _doreti to restore it atomically with exiting. It is not possible to set it atomically with entering the kernel, so it must be checked against the user mode bits in the trap frame before committing to using it. There is no place to store the old value of cpl for syscalls or traps, so there are some complications restoring it. Profiling stuff (mostly in *.s): o Changes to kern/subr_mcount.c, gcc and gprof are not supplied yet. o All interesting labels `foo' are renamed `_foo' and all uninteresting labels `_bar' are renamed `bar'. A small change to gprof allows ignoring labels not starting with underscores. o MCOUNT_LABEL() is to provide names for counters for times spent in exception handlers. o FAKE_MCOUNT() is a version of MCOUNT() suitable for exception handlers. Its arg is the pc where the exception occurred. The new mcount() pretends that this was a call from that pc to a suitable MCOUNT_LABEL(). o MEXITCOUNT is to turn off any timer started by MCOUNT(). /usr/src/sys/i386/i386/exception.s: o The non-BDB BPTTRAP() macros were doing a sti even when interrupts were disabled when the trap occurred. The sti (fixed) sti is actually a no-op unless you have my changes to machdep.c that make the debugger trap gates interrupt gates, but fixing that would make the ifdefs messier. ddb seems to be unharmed by both interrupts always disabled and always enabled (I had the branch in the fix back to front for some time :-(). o There is no known pushal bug. o tf_err can be left as garbage for syscalls. /usr/src/sys/i386/i386/locore.s: o Fix and update BDE_DEBUGGER support. o ENTRY(btext) before initialization was dangerous. o Warm boot shot was longer than intended. /usr/src/sys/i386/i386/machdep.c: o DON'T APPLY ALL OF THIS DIFF. It's what I'm using, but may require other changes. Use the following: o Remove aston() and setsoftclock(). Maybe use the following: o No netisr.h. o Spelling fix. o Delay to read the Rebooting message. o Fix for vm system unmapping a reduced area of memory after bounds_check_with_label() reduces the size of a physical i/o for a partition boundary. A similar fix is required in kern_physio.c. o Correct use of __CONCAT. It never worked here for non- ANSI cpp's. Is it time to drop support for non-ANSI? o gdt_segs init. 0xffffffffUL is bogus because ssd_limit is not 32 bits. The replacement may have the same value :-), but is more natural. o physmem was one page too low. Confusing variable names. Don't use the following: o Better numbers of buffers. Each 8K page requires up to 16 buffer headers. On my system, this results in 5576 buffers containing [up to] 2854912 bytes of memory. The usual allocation of about 384 buffers only holds 192K of disk if you use it on an fs with a block size of 512. o gdt changes for bdb. o *TGT -> *IDT changes for bdb. o #ifdefed changes for bdb. /usr/src/sys/i386/i386/microtime.s: o Use the correct asm macros. I think asm.h was copied from Mach just for microtime and isn't used now. It certainly doesn't belong in <sys>. Various macros are also duplicated in sys/i386/boot.h and libc/i386/*.h. o Don't switch to and from the IRR; it is guaranteed to be selected (default after ICU init and explicitly selected in isa.c too, and never changed until the old microtime clobbered it). /usr/src/sys/i386/i386/support.s: o Non-essential changes (none related to spls or profiling). o Removed slow loads of %gs again. The LDT support may require not relying on %gs, but loading it is not the way to fix it! Some places (copyin ...) forgot to load it. Loading it clobbers the user %gs. trap() still loads it after certain types of faults so that fuword() etc can rely on it without loading it explicitly. Exception handlers don't restore it. If we want to preserve the user %gs, then the fastest method is to not touch it except for context switches. Comparing with VM_MAXUSER_ADDRESS and branching takes only 2 or 4 cycles on a 486, while loading %gs takes 9 cycles and using it takes another. o Fixed a signed branch to unsigned. /usr/src/sys/i386/i386/swtch.s: o Move spl0() outside of idle loop. o Remove cli/sti from idle loop. sw1 does a cli, and in the unlikely event of an interrupt occurring and whichqs becoming zero, sw1 will just jump back to _idle. o There's no spl0() function in asm any more, so use splz(). o swtch() doesn't need to be superaligned, at least with the new mcounting. o Fixed a signed branch to unsigned. o Removed astoff(). /usr/src/sys/i386/i386/trap.c: o The decentralized extern decls were inconsistent, of course. o Fixed typo MATH_EMULTATE in comments. */ o Removed unused variables. o Old netmask is now impmask; print it instead. Perhaps we should print some of the new masks. o BTW, trap() should not print anything for normal debugger traps. /usr/src/sys/i386/include/asmacros.h: o DON'T APPLY ALL OF THIS DIFF. Just use some of the null macros as necessary. /usr/src/sys/i386/include/cpu.h: o CLKF_BASEPRI() changes since cpl == SWI_AST_MASK is now normal while the kernel is running. o Don't use var++ to set boolean variables. It fails after a mere 4G times :-) and is slower than storing a constant on [3-4]86s. /usr/src/sys/i386/include/cpufunc.h: o DON'T APPLY ALL OF THIS DIFF. You need mainly the include of <machine/ipl.h>. Unfortunately, <machine/ipl.h> is needed by almost everything for the inlines. /usr/src/sys/i386/include/ipl.h: o New file. Defines spl inlines and SWI macros and declares most variables related to hard and soft interrupt masks. /usr/src/sys/i386/isa/icu.h: o Moved definitions to <machine/ipl.h> /usr/src/sys/i386/isa/icu.s: o Software interrupts (SWIs) and delayed hardware interrupts (HWIs) are now handled uniformally, and dispatching them from splx() is more like dispatching them from _doreti. The dispatcher is essentially *(handler[ffs(ipending & ~cpl)](). o More care (not quite enough) is taken to avoid unbounded nesting of interrupts. o The interface to softclock() is changed so that a trap frame is not required. o Fast interrupt handlers are now handled more uniformally. Configuration is still too early (new handlers would require bits in <machine/ipl.h> and functions to vector.s). o splnnn() and splx() are no longer here; they are inline functions (could be macros for other compilers). splz() is the nontrivial part of the old splx(). /usr/src/sys/i386/isa/ipl.h o New file. Supposed to have only bus-dependent stuff. Perhaps the h/w masks should be declared here. /usr/src/sys/i386/isa/isa.c: o DON'T APPLY ALL OF THIS DIFF. You need only things involving *mask and *MASK and comments about them. netmask is now a pure software mask. It works like the softclock mask. /usr/src/sys/i386/isa/vector.s: o Reorganize AUTO_EOI* macros. o Option FAST_INTR_HANDLER_USERS_ES for people who don't trust fastintr handlers. o fastintr handlers need to metamorphose into ordinary interrupt handlers if their SWI bit has become set. Previously, sio had unintended latency for handling output completions and input of SLIP framing characters because this was not done. /usr/src/sys/net/netisr.h: o The machine-dependent stuff is now imported from <machine/ipl.h>. /usr/src/sys/sys/systm.h o DON'T APPLY ALL OF THIS DIFF. You need mainly the different splx() prototype. The spl*() prototypes are duplicated as inlines in <machine/ipl.h> but they need to be duplicated here in case there are no inlines. I sent systm.h and cpufunc.h to Garrett. We agree that spl0 should be replaced by splnone and not the other way around like I've done. /usr/src/sys/kern/kern_clock.c o splsoftclock() now lowers cpl so the direct call to softclock() works as intended. o softclock() interface changed to avoid passing the whole frame (some machines may need another change for profile_tick()). o profiling renamed _profiling to avoid ANSI namespace pollution. (I had to improve the mcount() interface and may as well fix it.) The GUPROF variant doesn't actually reference profiling here, but the 'U' in GUPROF should mean to select the microtimer mcount() and not change the interface.
1994-04-02 07:00:53 +00:00
s = splimp();
1993-06-12 14:58:17 +00:00
/*
* Lance must be stopped
* to access registers.
*/
iswrcsr(unit,0,STOP);
1993-06-12 14:58:17 +00:00
is->last_rd = is->last_td = is->no_td = 0;
/* Set up lance's memory area */
init_mem(unit);
/* No byte swapping etc */
iswrcsr(unit,3,0);
1993-06-12 14:58:17 +00:00
/* Give lance the physical address of its memory area */
iswrcsr(unit,1,kvtop(is->init_block));
iswrcsr(unit,2,(kvtop(is->init_block) >> 16) & 0xff);
1993-06-12 14:58:17 +00:00
/* OK, let's try and initialise the Lance */
iswrcsr(unit,0,INIT);
1993-06-12 14:58:17 +00:00
/* Wait for initialisation to finish */
for(i=0; i<1000; i++){
if (isrdcsr(unit,0)&IDON)
1993-06-12 14:58:17 +00:00
break;
}
if (isrdcsr(unit,0)&IDON) {
1993-06-12 14:58:17 +00:00
/* Start lance */
iswrcsr(unit,0,STRT|IDON|INEA);
ifp->if_flags |= IFF_RUNNING;
ifp->if_flags &= ~IFF_OACTIVE;
is_start(ifp);
1993-06-12 14:58:17 +00:00
}
else
printf("is%d: card failed to initialise\n", unit);
1993-06-12 14:58:17 +00:00
(void) splx(s);
1993-06-12 14:58:17 +00:00
}
/*
* Setup output on interface.
* Get another datagram to send off of the interface queue,
* and map it to the interface before starting the output.
* called only at splimp or interrupt level.
*/
static void
is_start(ifp)
1993-06-12 14:58:17 +00:00
struct ifnet *ifp;
{
int unit = ifp->if_unit;
register struct is_softc *is = &is_softc[unit];
1993-06-12 14:58:17 +00:00
struct mbuf *m0, *m;
unsigned char *buffer;
u_short len;
int i;
struct mds *cdm;
if ((is->arpcom.ac_if.if_flags & IFF_RUNNING) == 0)
1993-06-12 14:58:17 +00:00
return;
do {
cdm = (is->td + is->last_td);
1993-06-12 14:58:17 +00:00
if (cdm->flags&OWN)
return;
IF_DEQUEUE(&is->arpcom.ac_if.if_snd, m);
1993-06-12 14:58:17 +00:00
if (m == 0)
return;
/*
* Copy the mbuf chain into the transmit buffer
*/
buffer = is->tbuf+(BUFSIZE*is->last_td);
1993-06-12 14:58:17 +00:00
len=0;
for (m0=m; m != 0; m=m->m_next) {
bcopy(mtod(m,caddr_t),buffer,m->m_len);
buffer += m->m_len;
len += m->m_len;
}
#if NBPFILTER > 0
if (is->bpf) {
u_short etype;
int off, datasize, resid;
struct ether_header *eh;
struct trailer_header {
u_short ether_type;
u_short ether_residual;
} trailer_header;
char ether_packet[ETHER_MAX_LEN];
char *ep;
ep = ether_packet;
/*
* We handle trailers below:
* Copy ether header first, then residual data,
* then data. Put all this in a temporary buffer
* 'ether_packet' and send off to bpf. Since the
* system has generated this packet, we assume
* that all of the offsets in the packet are
* correct; if they're not, the system will almost
* certainly crash in m_copydata.
* We make no assumptions about how the data is
* arranged in the mbuf chain (i.e. how much
* data is in each mbuf, if mbuf clusters are
* used, etc.), which is why we use m_copydata
* to get the ether header rather than assume
* that this is located in the first mbuf.
*/
/* copy ether header */
m_copydata(m0, 0, sizeof(struct ether_header), ep);
eh = (struct ether_header *) ep;
ep += sizeof(struct ether_header);
etype = ntohs(eh->ether_type);
if (etype >= ETHERTYPE_TRAIL &&
etype < ETHERTYPE_TRAIL+ETHERTYPE_NTRAILER) {
datasize = ((etype - ETHERTYPE_TRAIL) << 9);
off = datasize + sizeof(struct ether_header);
/* copy trailer_header into a data structure */
m_copydata(m0, off, sizeof(struct trailer_header),
(caddr_t)&trailer_header.ether_type);
/* copy residual data */
resid = trailer_header.ether_residual -
sizeof(struct trailer_header);
resid = ntohs(resid);
m_copydata(m0, off+sizeof(struct trailer_header),
resid, ep);
ep += resid;
/* copy data */
m_copydata(m0, sizeof(struct ether_header),
datasize, ep);
ep += datasize;
/* restore original ether packet type */
eh->ether_type = trailer_header.ether_type;
bpf_tap(is->bpf, ether_packet, ep - ether_packet);
} else
bpf_mtap(is->bpf, m0);
}
#endif
1993-06-12 14:58:17 +00:00
m_freem(m0);
len = max(len,ETHER_MIN_LEN);
1993-06-12 14:58:17 +00:00
/*
* Init transmit registers, and set transmit start flag.
*/
cdm->flags |= (OWN|STP|ENP);
cdm->bcnt = -len;
cdm->mcnt = 0;
#ifdef ISDEBUG
if (is->is_debug)
xmit_print(unit,is->last_td);
1993-06-12 14:58:17 +00:00
#endif
iswrcsr(unit,0,TDMD|INEA);
if (++is->last_td >= NTBUF)
is->last_td=0;
}while(++is->no_td < NTBUF);
is->no_td = NTBUF;
is->arpcom.ac_if.if_flags |= IFF_OACTIVE;
#ifdef ISDEBUG
if (is->is_debug)
printf("no_td = %x, last_td = %x\n",is->no_td, is->last_td);
1993-06-12 14:58:17 +00:00
#endif
}
/*
* Controller interrupt.
*/
void
1993-06-12 14:58:17 +00:00
isintr(unit)
int unit;
1993-06-12 14:58:17 +00:00
{
register struct is_softc *is = &is_softc[unit];
1993-06-12 14:58:17 +00:00
u_short isr;
while((isr=isrdcsr(unit,0))&INTR) {
1993-06-12 14:58:17 +00:00
if (isr&ERR) {
if (isr&BABL){
printf("is%d: BABL\n",unit);
is->arpcom.ac_if.if_oerrors++;
}
if (isr&CERR) {
printf("is%d: CERR\n",unit);
is->arpcom.ac_if.if_collisions++;
}
if (isr&MISS) {
printf("is%d: MISS\n",unit);
is->arpcom.ac_if.if_ierrors++;
}
1993-06-12 14:58:17 +00:00
if (isr&MERR)
printf("is%d: MERR\n",unit);
iswrcsr(unit,0,BABL|CERR|MISS|MERR|INEA);
1993-06-12 14:58:17 +00:00
}
if (!(isr&RXON)) {
printf("is%d: !(isr&RXON)\n", unit);
is->arpcom.ac_if.if_ierrors++;
is_reset(unit);
return;
1993-06-12 14:58:17 +00:00
}
if (!(isr&TXON)) {
printf("is%d: !(isr&TXON)\n", unit);
is->arpcom.ac_if.if_oerrors++;
is_reset(unit);
return;
1993-06-12 14:58:17 +00:00
}
1993-06-12 14:58:17 +00:00
if (isr&RINT) {
/* reset watchdog timer */
is->arpcom.ac_if.if_timer = 0;
is_rint(unit);
1993-06-12 14:58:17 +00:00
}
if (isr&TINT) {
/* reset watchdog timer */
is->arpcom.ac_if.if_timer = 0;
iswrcsr(unit,0,TINT|INEA);
1993-06-12 14:58:17 +00:00
istint(unit);
}
}
}
static void
1993-06-12 14:58:17 +00:00
istint(unit)
int unit;
{
struct is_softc *is = &is_softc[unit];
register struct ifnet *ifp = &is->arpcom.ac_if;
1993-06-12 14:58:17 +00:00
int i,loopcount=0;
struct mds *cdm;
is->arpcom.ac_if.if_opackets++;
1993-06-12 14:58:17 +00:00
do {
if ((i=is->last_td - is->no_td) < 0)
i+=NTBUF;
cdm = (is->td+i);
#ifdef ISDEBUG
if (is->is_debug)
printf("Trans cdm = %x\n",cdm);
1993-06-12 14:58:17 +00:00
#endif
if (cdm->flags&OWN) {
if (loopcount)
break;
return;
}
loopcount++;
is->arpcom.ac_if.if_flags &= ~IFF_OACTIVE;
1993-06-12 14:58:17 +00:00
}while(--is->no_td > 0);
is_start(ifp);
1993-06-12 14:58:17 +00:00
}
#define NEXTRDS \
if (++rmd == NRBUF) rmd=0, cdm=is->rd; else ++cdm
1993-06-12 14:58:17 +00:00
/* only called from one place, so may as well integrate */
static inline void is_rint(int unit)
1993-06-12 14:58:17 +00:00
{
register struct is_softc *is=&is_softc[unit];
register int rmd = is->last_rd;
struct mds *cdm = (is->rd + rmd);
1993-06-12 14:58:17 +00:00
/* Out of sync with hardware, should never happen */
if (cdm->flags & OWN) {
printf("is%d: error: out of sync\n",unit);
iswrcsr(unit,0,RINT|INEA);
1993-06-12 14:58:17 +00:00
return;
}
/* Process all buffers with valid data */
while (!(cdm->flags&OWN)) {
/* Clear interrupt to avoid race condition */
iswrcsr(unit,0,RINT|INEA);
1993-06-12 14:58:17 +00:00
if (cdm->flags&ERR) {
if (cdm->flags&FRAM)
printf("is%d: FRAM\n",unit);
1993-06-12 14:58:17 +00:00
if (cdm->flags&OFLO)
printf("is%d: OFLO\n",unit);
1993-06-12 14:58:17 +00:00
if (cdm->flags&CRC)
printf("is%d: CRC\n",unit);
1993-06-12 14:58:17 +00:00
if (cdm->flags&RBUFF)
printf("is%d: RBUFF\n",unit);
1993-06-12 14:58:17 +00:00
}else
if (cdm->flags&(STP|ENP) != (STP|ENP)) {
do {
iswrcsr(unit,0,RINT|INEA);
1993-06-12 14:58:17 +00:00
cdm->mcnt = 0;
cdm->flags |= OWN;
NEXTRDS;
}while (!(cdm->flags&(OWN|ERR|STP|ENP)));
is->last_rd = rmd;
printf("is%d: Chained buffer\n",unit);
1993-06-12 14:58:17 +00:00
if ((cdm->flags & (OWN|ERR|STP|ENP)) != ENP) {
is_reset(unit);
1993-06-12 14:58:17 +00:00
return;
}
}else
{
#ifdef ISDEBUG
if (is->is_debug)
recv_print(unit,is->last_rd);
1993-06-12 14:58:17 +00:00
#endif
isread(is,is->rbuf+(BUFSIZE*rmd),(int)cdm->mcnt);
is->arpcom.ac_if.if_ipackets++;
1993-06-12 14:58:17 +00:00
}
cdm->flags |= OWN;
cdm->mcnt = 0;
NEXTRDS;
#ifdef ISDEBUG
if (is->is_debug)
printf("is->last_rd = %x, cdm = %x\n",is->last_rd,cdm);
1993-06-12 14:58:17 +00:00
#endif
} /* while */
is->last_rd = rmd;
} /* is_rint */
1993-06-12 14:58:17 +00:00
/*
* Pass a packet to the higher levels.
* We deal with the trailer protocol here.
*/
static inline void
isread(struct is_softc *is, unsigned char *buf, int len)
1993-06-12 14:58:17 +00:00
{
register struct ether_header *eh;
struct mbuf *m;
int off, resid;
register struct ifqueue *inq;
/*
* Deal with trailer protocol: if type is trailer type
* get true type from first 16-bit word past data.
* Remember that type was trailer by setting off.
*/
eh = (struct ether_header *)buf;
eh->ether_type = ntohs((u_short)eh->ether_type);
len = len - sizeof(struct ether_header) - 4;
#define nedataaddr(eh, off, type) ((type)(((caddr_t)((eh)+1)+(off))))
if (eh->ether_type >= ETHERTYPE_TRAIL &&
eh->ether_type < ETHERTYPE_TRAIL+ETHERTYPE_NTRAILER) {
off = (eh->ether_type - ETHERTYPE_TRAIL) * 512;
if (off >= ETHERMTU) return; /* sanity */
eh->ether_type = ntohs(*nedataaddr(eh, off, u_short *));
resid = ntohs(*(nedataaddr(eh, off+2, u_short *)));
if (off + resid > len) return; /* sanity */
len = off + resid;
} else off = 0;
if (len == 0) return;
/*
* Pull packet off interface. Off is nonzero if packet
* has trailing header; neget will then force this header
* information to be at the front, but we still have to drop
* the type and length which are at the front of any trailer data.
*/
m = isget(buf, len, off, &is->arpcom.ac_if);
if (m == 0) return;
#if NBPFILTER > 0
/*
* Check if there's a BPF listener on this interface.
* If so, hand off the raw packet to bpf.
*/
if (is->bpf) {
bpf_mtap(is->bpf, m);
/*
* Note that the interface cannot be in promiscuous mode if
* there are no BPF listeners. And if we are in promiscuous
* mode, we have to check if this packet is really ours.
*
* XXX This test does not support multicasts.
*/
if ((is->arpcom.ac_if.if_flags & IFF_PROMISC) &&
bcmp(eh->ether_dhost, is->arpcom.ac_enaddr,
sizeof(eh->ether_dhost)) != 0 &&
bcmp(eh->ether_dhost, etherbroadcastaddr,
sizeof(eh->ether_dhost)) != 0) {
m_freem(m);
return;
}
}
#endif
ether_input(&is->arpcom.ac_if, eh, m);
1993-06-12 14:58:17 +00:00
}
/*
* Supporting routines
*/
/*
* Pull read data off a interface.
* Len is length of data, with local net header stripped.
* Off is non-zero if a trailer protocol was used, and
* gives the offset of the trailer information.
* We copy the trailer information and then all the normal
* data into mbufs. When full cluster sized units are present
* we copy into clusters.
*/
struct mbuf *
isget(buf, totlen, off0, ifp)
caddr_t buf;
int totlen, off0;
struct ifnet *ifp;
1993-06-12 14:58:17 +00:00
{
struct mbuf *top, **mp, *m, *p;
int off = off0, len;
register caddr_t cp = buf;
char *epkt;
buf += sizeof(struct ether_header);
cp = buf;
epkt = cp + totlen;
if (off) {
cp += off + 2 * sizeof(u_short);
totlen -= 2 * sizeof(u_short);
}
MGETHDR(m, M_DONTWAIT, MT_DATA);
if (m == 0)
return (0);
m->m_pkthdr.rcvif = ifp;
m->m_pkthdr.len = totlen;
m->m_len = MHLEN;
top = 0;
mp = &top;
while (totlen > 0) {
if (top) {
MGET(m, M_DONTWAIT, MT_DATA);
if (m == 0) {
m_freem(top);
return (0);
}
m->m_len = MLEN;
}
len = min(totlen, epkt - cp);
if (len >= MINCLSIZE) {
MCLGET(m, M_DONTWAIT);
if (m->m_flags & M_EXT)
m->m_len = len = min(len, MCLBYTES);
else
len = m->m_len;
} else {
/*
* Place initial small packet/header at end of mbuf.
*/
if (len < m->m_len) {
if (top == 0 && len + max_linkhdr <= m->m_len)
m->m_data += max_linkhdr;
m->m_len = len;
} else
len = m->m_len;
}
bcopy(cp, mtod(m, caddr_t), (unsigned)len);
cp += len;
*mp = m;
mp = &m->m_next;
totlen -= len;
if (cp == epkt)
cp = buf;
}
return (top);
1993-06-12 14:58:17 +00:00
}
1993-06-12 14:58:17 +00:00
/*
* Process an ioctl request.
*/
int
is_ioctl(ifp, cmd, data)
1993-06-12 14:58:17 +00:00
register struct ifnet *ifp;
int cmd;
caddr_t data;
{
register struct ifaddr *ifa = (struct ifaddr *)data;
int unit = ifp->if_unit;
struct is_softc *is = &is_softc[unit];
1993-06-12 14:58:17 +00:00
struct ifreq *ifr = (struct ifreq *)data;
int s, error = 0;
1993-06-12 14:58:17 +00:00
New interrupt code from Bruce Evans. In additional to Bruce's attached list of changes, I've made the following additional changes: 1) i386/include/ipl.h renamed to spl.h as the name conflicts with the file of the same name in i386/isa/ipl.h. 2) changed all use of *mask (i.e. netmask, biomask, ttymask, etc) to *_imask (net_imask, etc). 3) changed vestige of splnet use in if_is to splimp. 4) got rid of "impmask" completely (Bruce had gotten rid of netmask), and are now using net_imask instead. 5) dozens of minor cruft to glue in Bruce's changes. These require changes I made to config(8) as well, and thus it must be rebuilt. -DG from Bruce Evans: sio: o No diff is supplied. Remove the define of setsofttty(). I hope that is enough. *.s: o i386/isa/debug.h no longer exists. The event counters became too much trouble to maintain. All function call entry and exception entry counters can be recovered by using profiling kernel (the new profiling supports all entry points; however, it is too slow to leave enabled all the time; it also). Only BDBTRAP() from debug.h is now used. That is moved to exception.s. It might be worth preserving SHOW_BITS() and calling it from _mcount() (if enabled). o T_ASTFLT is now only set just before calling trap(). o All exception handlers set SWI_AST_MASK in cpl as soon as possible after entry and arrange for _doreti to restore it atomically with exiting. It is not possible to set it atomically with entering the kernel, so it must be checked against the user mode bits in the trap frame before committing to using it. There is no place to store the old value of cpl for syscalls or traps, so there are some complications restoring it. Profiling stuff (mostly in *.s): o Changes to kern/subr_mcount.c, gcc and gprof are not supplied yet. o All interesting labels `foo' are renamed `_foo' and all uninteresting labels `_bar' are renamed `bar'. A small change to gprof allows ignoring labels not starting with underscores. o MCOUNT_LABEL() is to provide names for counters for times spent in exception handlers. o FAKE_MCOUNT() is a version of MCOUNT() suitable for exception handlers. Its arg is the pc where the exception occurred. The new mcount() pretends that this was a call from that pc to a suitable MCOUNT_LABEL(). o MEXITCOUNT is to turn off any timer started by MCOUNT(). /usr/src/sys/i386/i386/exception.s: o The non-BDB BPTTRAP() macros were doing a sti even when interrupts were disabled when the trap occurred. The sti (fixed) sti is actually a no-op unless you have my changes to machdep.c that make the debugger trap gates interrupt gates, but fixing that would make the ifdefs messier. ddb seems to be unharmed by both interrupts always disabled and always enabled (I had the branch in the fix back to front for some time :-(). o There is no known pushal bug. o tf_err can be left as garbage for syscalls. /usr/src/sys/i386/i386/locore.s: o Fix and update BDE_DEBUGGER support. o ENTRY(btext) before initialization was dangerous. o Warm boot shot was longer than intended. /usr/src/sys/i386/i386/machdep.c: o DON'T APPLY ALL OF THIS DIFF. It's what I'm using, but may require other changes. Use the following: o Remove aston() and setsoftclock(). Maybe use the following: o No netisr.h. o Spelling fix. o Delay to read the Rebooting message. o Fix for vm system unmapping a reduced area of memory after bounds_check_with_label() reduces the size of a physical i/o for a partition boundary. A similar fix is required in kern_physio.c. o Correct use of __CONCAT. It never worked here for non- ANSI cpp's. Is it time to drop support for non-ANSI? o gdt_segs init. 0xffffffffUL is bogus because ssd_limit is not 32 bits. The replacement may have the same value :-), but is more natural. o physmem was one page too low. Confusing variable names. Don't use the following: o Better numbers of buffers. Each 8K page requires up to 16 buffer headers. On my system, this results in 5576 buffers containing [up to] 2854912 bytes of memory. The usual allocation of about 384 buffers only holds 192K of disk if you use it on an fs with a block size of 512. o gdt changes for bdb. o *TGT -> *IDT changes for bdb. o #ifdefed changes for bdb. /usr/src/sys/i386/i386/microtime.s: o Use the correct asm macros. I think asm.h was copied from Mach just for microtime and isn't used now. It certainly doesn't belong in <sys>. Various macros are also duplicated in sys/i386/boot.h and libc/i386/*.h. o Don't switch to and from the IRR; it is guaranteed to be selected (default after ICU init and explicitly selected in isa.c too, and never changed until the old microtime clobbered it). /usr/src/sys/i386/i386/support.s: o Non-essential changes (none related to spls or profiling). o Removed slow loads of %gs again. The LDT support may require not relying on %gs, but loading it is not the way to fix it! Some places (copyin ...) forgot to load it. Loading it clobbers the user %gs. trap() still loads it after certain types of faults so that fuword() etc can rely on it without loading it explicitly. Exception handlers don't restore it. If we want to preserve the user %gs, then the fastest method is to not touch it except for context switches. Comparing with VM_MAXUSER_ADDRESS and branching takes only 2 or 4 cycles on a 486, while loading %gs takes 9 cycles and using it takes another. o Fixed a signed branch to unsigned. /usr/src/sys/i386/i386/swtch.s: o Move spl0() outside of idle loop. o Remove cli/sti from idle loop. sw1 does a cli, and in the unlikely event of an interrupt occurring and whichqs becoming zero, sw1 will just jump back to _idle. o There's no spl0() function in asm any more, so use splz(). o swtch() doesn't need to be superaligned, at least with the new mcounting. o Fixed a signed branch to unsigned. o Removed astoff(). /usr/src/sys/i386/i386/trap.c: o The decentralized extern decls were inconsistent, of course. o Fixed typo MATH_EMULTATE in comments. */ o Removed unused variables. o Old netmask is now impmask; print it instead. Perhaps we should print some of the new masks. o BTW, trap() should not print anything for normal debugger traps. /usr/src/sys/i386/include/asmacros.h: o DON'T APPLY ALL OF THIS DIFF. Just use some of the null macros as necessary. /usr/src/sys/i386/include/cpu.h: o CLKF_BASEPRI() changes since cpl == SWI_AST_MASK is now normal while the kernel is running. o Don't use var++ to set boolean variables. It fails after a mere 4G times :-) and is slower than storing a constant on [3-4]86s. /usr/src/sys/i386/include/cpufunc.h: o DON'T APPLY ALL OF THIS DIFF. You need mainly the include of <machine/ipl.h>. Unfortunately, <machine/ipl.h> is needed by almost everything for the inlines. /usr/src/sys/i386/include/ipl.h: o New file. Defines spl inlines and SWI macros and declares most variables related to hard and soft interrupt masks. /usr/src/sys/i386/isa/icu.h: o Moved definitions to <machine/ipl.h> /usr/src/sys/i386/isa/icu.s: o Software interrupts (SWIs) and delayed hardware interrupts (HWIs) are now handled uniformally, and dispatching them from splx() is more like dispatching them from _doreti. The dispatcher is essentially *(handler[ffs(ipending & ~cpl)](). o More care (not quite enough) is taken to avoid unbounded nesting of interrupts. o The interface to softclock() is changed so that a trap frame is not required. o Fast interrupt handlers are now handled more uniformally. Configuration is still too early (new handlers would require bits in <machine/ipl.h> and functions to vector.s). o splnnn() and splx() are no longer here; they are inline functions (could be macros for other compilers). splz() is the nontrivial part of the old splx(). /usr/src/sys/i386/isa/ipl.h o New file. Supposed to have only bus-dependent stuff. Perhaps the h/w masks should be declared here. /usr/src/sys/i386/isa/isa.c: o DON'T APPLY ALL OF THIS DIFF. You need only things involving *mask and *MASK and comments about them. netmask is now a pure software mask. It works like the softclock mask. /usr/src/sys/i386/isa/vector.s: o Reorganize AUTO_EOI* macros. o Option FAST_INTR_HANDLER_USERS_ES for people who don't trust fastintr handlers. o fastintr handlers need to metamorphose into ordinary interrupt handlers if their SWI bit has become set. Previously, sio had unintended latency for handling output completions and input of SLIP framing characters because this was not done. /usr/src/sys/net/netisr.h: o The machine-dependent stuff is now imported from <machine/ipl.h>. /usr/src/sys/sys/systm.h o DON'T APPLY ALL OF THIS DIFF. You need mainly the different splx() prototype. The spl*() prototypes are duplicated as inlines in <machine/ipl.h> but they need to be duplicated here in case there are no inlines. I sent systm.h and cpufunc.h to Garrett. We agree that spl0 should be replaced by splnone and not the other way around like I've done. /usr/src/sys/kern/kern_clock.c o splsoftclock() now lowers cpl so the direct call to softclock() works as intended. o softclock() interface changed to avoid passing the whole frame (some machines may need another change for profile_tick()). o profiling renamed _profiling to avoid ANSI namespace pollution. (I had to improve the mcount() interface and may as well fix it.) The GUPROF variant doesn't actually reference profiling here, but the 'U' in GUPROF should mean to select the microtimer mcount() and not change the interface.
1994-04-02 07:00:53 +00:00
s = splimp();
1993-06-12 14:58:17 +00:00
switch (cmd) {
case SIOCSIFADDR:
ifp->if_flags |= IFF_UP;
switch (ifa->ifa_addr->sa_family) {
#ifdef INET
case AF_INET:
is_init(ifp->if_unit); /* before arpwhohas */
/*
* See if another station has *our* IP address.
* i.e.: There is an address conflict! If a
* conflict exists, a message is sent to the
* console.
*/
1993-06-12 14:58:17 +00:00
((struct arpcom *)ifp)->ac_ipaddr =
IA_SIN(ifa)->sin_addr;
arpwhohas((struct arpcom *)ifp, &IA_SIN(ifa)->sin_addr);
break;
#endif
#ifdef NS
/*
* XXX - This code is probably wrong
*/
1993-06-12 14:58:17 +00:00
case AF_NS:
{
register struct ns_addr *ina = &(IA_SNS(ifa)->sns_addr);
1993-06-12 14:58:17 +00:00
if (ns_nullhost(*ina))
ina->x_host =
*(union ns_host *)(is->arpcom.ac_enaddr);
1993-06-12 14:58:17 +00:00
else {
/*
*
1993-06-12 14:58:17 +00:00
*/
bcopy((caddr_t)ina->x_host.c_host,
(caddr_t)is->arpcom.ac_enaddr,
sizeof(is->arpcom.ac_enaddr));
1993-06-12 14:58:17 +00:00
}
/*
* Set new address
*/
is_init(ifp->if_unit);
1993-06-12 14:58:17 +00:00
break;
}
#endif
default:
is_init(ifp->if_unit);
1993-06-12 14:58:17 +00:00
break;
}
break;
case SIOCSIFFLAGS:
/*
* If interface is marked down and it is running, then stop it
*/
1993-06-12 14:58:17 +00:00
if ((ifp->if_flags & IFF_UP) == 0 &&
ifp->if_flags & IFF_RUNNING) {
iswrcsr(unit,0,STOP);
ifp->if_flags &= ~IFF_RUNNING;
} else {
/*
* If interface is marked up and it is stopped, then start it
*/
if ((ifp->if_flags & IFF_UP) &&
(ifp->if_flags & IFF_RUNNING) == 0)
is_init(ifp->if_unit);
}
#ifdef ISDEBUG
if (ifp->if_flags & IFF_DEBUG)
is->is_debug = 1;
else
is->is_debug = 0;
#endif
#if NBPFILTER > 0
if (ifp->if_flags & IFF_PROMISC) {
/*
* Set promiscuous mode on interface.
* XXX - for multicasts to work, we would need to
* write 1's in all bits of multicast
* hashing array. For now we assume that
* this was done in is_init().
*/
is->init_block->mode = PROM;
} else
/*
* XXX - for multicasts to work, we would need to
* rewrite the multicast hashing array with the
* proper hash (would have been destroyed above).
*/
{ /* Don't know about this */};
#endif
1993-06-12 14:58:17 +00:00
break;
#ifdef notdef
case SIOCGHWADDR:
bcopy((caddr_t)is->arpcom.ac_enaddr, (caddr_t) &ifr->ifr_data,
sizeof(is->arpcom.ac_enaddr));
1993-06-12 14:58:17 +00:00
break;
#endif
1994-08-08 13:33:16 +00:00
case SIOCSIFMTU:
/*
* Set the interface MTU.
*/
if (ifr->ifr_mtu > ETHERMTU) {
error = EINVAL;
} else {
ifp->if_mtu = ifr->ifr_mtu;
}
break;
1993-06-12 14:58:17 +00:00
default:
error = EINVAL;
}
(void) splx(s);
1993-06-12 14:58:17 +00:00
return (error);
}
#ifdef ISDEBUG
void
recv_print(unit,no)
int unit,no;
1993-06-12 14:58:17 +00:00
{
register struct is_softc *is=&is_softc[unit];
1993-06-12 14:58:17 +00:00
struct mds *rmd;
int len,i,printed=0;
1993-06-12 14:58:17 +00:00
rmd = (is->rd+no);
1993-06-12 14:58:17 +00:00
len = rmd->mcnt;
printf("is%d: Receive buffer %d, len = %d\n",unit,no,len);
printf("is%d: Status %x\n",unit,isrdcsr(unit,0));
for (i=0; i<len; i++) {
if (!printed) {
printed=1;
printf("is%d: data: ", unit);
}
printf("%x ",*(is->rbuf+(BUFSIZE*no)+i));
}
if (printed)
printf("\n");
1993-06-12 14:58:17 +00:00
}
void
xmit_print(unit,no)
int unit,no;
1993-06-12 14:58:17 +00:00
{
register struct is_softc *is=&is_softc[unit];
1993-06-12 14:58:17 +00:00
struct mds *rmd;
int i, printed=0;
1993-06-12 14:58:17 +00:00
u_short len;
rmd = (is->td+no);
1993-06-12 14:58:17 +00:00
len = -(rmd->bcnt);
printf("is%d: Transmit buffer %d, len = %d\n",unit,no,len);
printf("is%d: Status %x\n",unit,isrdcsr(unit,0));
printf("is%d: addr %x, flags %x, bcnt %x, mcnt %x\n",
unit,rmd->addr,rmd->flags,rmd->bcnt,rmd->mcnt);
for (i=0; i<len; i++) {
if (!printed) {
printed = 1;
printf("is%d: data: ", unit);
}
printf("%x ",*(is->tbuf+(BUFSIZE*no)+i));
}
if (printed)
printf("\n");
1993-06-12 14:58:17 +00:00
}
#endif /* ISDEBUG */
1993-06-12 14:58:17 +00:00
#endif /* NIS > 0 */