defza.rst 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .. SPDX-License-Identifier: GPL-2.0
  2. =====================================================
  3. Notes on the DEC FDDIcontroller 700 (DEFZA-xx) driver
  4. =====================================================
  5. :Version: v.1.1.4
  6. DEC FDDIcontroller 700 is DEC's first-generation TURBOchannel FDDI
  7. network card, designed in 1990 specifically for the DECstation 5000
  8. model 200 workstation. The board is a single attachment station and
  9. it was manufactured in two variations, both of which are supported.
  10. First is the SAS MMF DEFZA-AA option, the original design implementing
  11. the standard MMF-PMD, however with a pair of ST connectors rather than
  12. the usual MIC connector. The other one is the SAS ThinWire/STP DEFZA-CA
  13. option, denoted 700-C, with the network medium selectable by a switch
  14. between the DEC proprietary ThinWire-PMD using a BNC connector and the
  15. standard STP-PMD using a DE-9F connector. This option can interface to
  16. a DECconcentrator 500 device and, in the case of the STP-PMD, also other
  17. FDDI equipment and was designed to make it easier to transition from
  18. existing IEEE 802.3 10BASE2 Ethernet and IEEE 802.5 Token Ring networks
  19. by providing means to reuse existing cabling.
  20. This driver handles any number of cards installed in a single system.
  21. They get fddi0, fddi1, etc. interface names assigned in the order of
  22. increasing TURBOchannel slot numbers.
  23. The board only supports DMA on the receive side. Transmission involves
  24. the use of PIO. As a result under a heavy transmission load there will
  25. be a significant impact on system performance.
  26. The board supports a 64-entry CAM for matching destination addresses.
  27. Two entries are preoccupied by the Directed Beacon and Ring Purger
  28. multicast addresses and the rest is used as a multicast filter. An
  29. all-multi mode is also supported for LLC frames and it is used if
  30. requested explicitly or if the CAM overflows. The promiscuous mode
  31. supports separate enables for LLC and SMT frames, but this driver
  32. doesn't support changing them individually.
  33. Known problems:
  34. None.
  35. To do:
  36. 5. MAC address change. The card does not support changing the Media
  37. Access Controller's address registers but a similar effect can be
  38. achieved by adding an alias to the CAM. There is no way to disable
  39. matching against the original address though.
  40. 7. Queueing incoming/outgoing SMT frames in the driver if the SMT
  41. receive/RMC transmit ring is full. (?)
  42. 8. Retrieving/reporting FDDI/SNMP stats.
  43. Both success and failure reports are welcome.
  44. Maciej W. Rozycki <macro@orcam.me.uk>