CS(4) | Device Drivers Manual (i386) | CS(4) |
cs
— Ethernet
device driver
To compile this driver into the kernel, place the following line in your kernel configuration file:
device cs
Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5):
if_cs_load="YES"
In /boot/device.hints:
hint.cs.0.at="isa"
hint.cs.0.port="0x300"
hint.cs.0.irq="10"
hint.cs.0.maddr="0xd000"
The cs
driver is not present in
FreeBSD 13.0 and later. See
https://github.com/freebsd/fcp/blob/master/fcp-0101.md for more
information.
The cs
driver provides support for ISA
Ethernet adapters based on the Crystal Semiconductor CS8900 and CS8920 NICs.
These devices are used on the IBM EtherJet ISA adapters and in many embedded
applications where the high integration, small size and low cost of the
CS89x0 family compensate for their drawbacks.
The cs
driver will obtain configuration
parameters either from /boot/device.hints or from
the card. At least the I/O port number must be specified. Other parameters
specified in /boot/device.hints will be used if
present; the card may be soft-configured so these may be any valid value.
Adapters based on the CS8920 normally offer PnP configuration and the driver
will detect the IBM EtherJet and the CSC6040 adapters automatically.
Note that the CS8900 is limited to 4 IRQ values; these are normally implemented as 5, 10, 11 and 12. The CS8920 has no such limitation.
Memory-mapped and DMA operation are not supported at this time.
In addition to the ISA devices, the PC Card devices based on the CS889x0 family are also supported. The IBM EtherJet PCMCIA Card is the only known device based on this chip. The PC Card support does not need the above specific ISA hints to work. The PC Card support may not work for 10base2 (thinnet) connections and may bogusly claim to support 10base5 (there are no known cards that have an AUI necessary for 10base5 support on their dongles).
The cs
device driver was written by
Maxim Bolotin and Oleg
Sharoiko. This manpage was written by Michael
Smith.
The CS89x0 family of adapters have a very small RAM buffer (4K). This may cause problems with extremely high network loads or bursty network traffic. In particular, NFS operations should be limited to 1k read/write transactions in order to avoid overruns.
October 24 2018 | Debian |