ec(4) - NetBSD Manual Pages

Command: Section: Arch: Collection:  
EC(4)                 NetBSD/vax Kernel Interfaces Manual                EC(4)


NAME
ec -- 3Com 10 Mb/s Ethernet interface
SYNOPSIS
ec0 at uba0 csr 161000 vector ecrint eccollide ecxint flags 0
DESCRIPTION
NOTE: This driver has not been ported from 4.4BSD yet. The ec interface provides access to a 10 Mb/s Ethernet network through a 3Com controller. The hardware has 32 kilobytes of dual-ported memory on the UNIBUS. This memory is used for internal buffering by the board, and the interface code reads the buffer contents directly through the UNIBUS. The address of this memory is given in the flags field in the configuration file. The first interface normally has its memory at UNIBUS address 0. Each of the host's network addresses is specified at boot time with an SIOCSIFADDR ioctl(2). The ec interface employs the address resolution protocol described in arp(4) to dynamically map between Internet and Eth- ernet addresses on the local network. The interface software implements an exponential backoff algorithm when notified of a collision on the cable. This algorithm uses a 16-bit mask and the VAX-11's interval timer in calculating a series of random backoff values. The algorithm is as follows: 1. Initialize the mask to be all 1's. 2. If the mask is zero, 16 retries have been made and we give up. 3. Shift the mask left one bit and formulate a backoff by masking the interval timer with the smaller of the complement of this mask and a 5-bit mask, resulting in a pseudo-random number between 0 and 31. This produces the number of slot times to delay, where a slot is 51 microseconds. 4. Use the value calculated in step 3 to delay before retransmit- ting the packet. The delay is done in a software busy loop.
DIAGNOSTICS
ec%d: send error. After 16 retransmissions using the exponential backoff algorithm described above, the packet was dropped. ec%d: input error (offset=%d). The hardware indicated an error in read- ing a packet off the cable or an illegally sized packet. The buffer off- set value is printed for debugging purposes. ec%d: can't handle af%d. The interface was handed a message with addresses formatted in an unsuitable address family; the packet was dropped.
SEE ALSO
arp(4), inet(4), netintro(4)
HISTORY
The ec driver appeared in 4.2BSD.
BUGS
The hardware is not capable of talking to itself. The software imple- ments local sending and broadcast by sending such packets to the loop interface. This is a kludge. Backoff delays are done in a software busy loop. This can degrade the system if the network experiences frequent collisions. NetBSD 9.0 February 5, 2019 NetBSD 9.0
Powered by man-cgi (2024-03-20). Maintained for NetBSD by Kimmo Suominen. Based on man-cgi by Panagiotis Christias.