olympic.txt 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. IBM PCI Pit/Pit-Phy/Olympic CHIPSET BASED TOKEN RING CARDS README
  2. Release 0.2.0 - Release
  3. June 8th 1999 Peter De Schrijver & Mike Phillips
  4. Release 0.9.C - Release
  5. April 18th 2001 Mike Phillips
  6. Thanks:
  7. Erik De Cock, Adrian Bridgett and Frank Fiene for their
  8. patience and testing.
  9. Donald Champion for the cardbus support
  10. Kyle Lucke for the dma api changes.
  11. Jonathon Bitner for hardware support.
  12. Everybody on linux-tr for their continued support.
  13. Options:
  14. The driver accepts four options: ringspeed, pkt_buf_sz,
  15. message_level and network_monitor.
  16. These options can be specified differently for each card found.
  17. ringspeed: Has one of three settings 0 (default), 4 or 16. 0 will
  18. make the card autosense the ringspeed and join at the appropriate speed,
  19. this will be the default option for most people. 4 or 16 allow you to
  20. explicitly force the card to operate at a certain speed. The card will fail
  21. if you try to insert it at the wrong speed. (Although some hubs will allow
  22. this so be *very* careful). The main purpose for explicitly setting the ring
  23. speed is for when the card is first on the ring. In autosense mode, if the card
  24. cannot detect any active monitors on the ring it will not open, so you must
  25. re-init the card at the appropriate speed. Unfortunately at present the only
  26. way of doing this is rmmod and insmod which is a bit tough if it is compiled
  27. in the kernel.
  28. pkt_buf_sz: This is this initial receive buffer allocation size. This will
  29. default to 4096 if no value is entered. You may increase performance of the
  30. driver by setting this to a value larger than the network packet size, although
  31. the driver now re-sizes buffers based on MTU settings as well.
  32. message_level: Controls level of messages created by the driver. Defaults to 0:
  33. which only displays start-up and critical messages. Presently any non-zero
  34. value will display all soft messages as well. NB This does not turn
  35. debugging messages on, that must be done by modified the source code.
  36. network_monitor: Any non-zero value will provide a quasi network monitoring
  37. mode. All unexpected MAC frames (beaconing etc.) will be received
  38. by the driver and the source and destination addresses printed.
  39. Also an entry will be added in /proc/net called olympic_tr%d, where tr%d
  40. is the registered device name, i.e tr0, tr1, etc. This displays low
  41. level information about the configuration of the ring and the adapter.
  42. This feature has been designed for network administrators to assist in
  43. the diagnosis of network / ring problems. (This used to OLYMPIC_NETWORK_MONITOR,
  44. but has now changed to allow each adapter to be configured differently and
  45. to alleviate the necessity to re-compile olympic to turn the option on).
  46. Multi-card:
  47. The driver will detect multiple cards and will work with shared interrupts,
  48. each card is assigned the next token ring device, i.e. tr0 , tr1, tr2. The
  49. driver should also happily reside in the system with other drivers. It has
  50. been tested with ibmtr.c running, and I personally have had one Olicom PCI
  51. card and two IBM olympic cards (all on the same interrupt), all running
  52. together.
  53. Variable MTU size:
  54. The driver can handle a MTU size up to either 4500 or 18000 depending upon
  55. ring speed. The driver also changes the size of the receive buffers as part
  56. of the mtu re-sizing, so if you set mtu = 18000, you will need to be able
  57. to allocate 16 * (sk_buff with 18000 buffer size) call it 18500 bytes per ring
  58. position = 296,000 bytes of memory space, plus of course anything
  59. necessary for the tx sk_buff's. Remember this is per card, so if you are
  60. building routers, gateway's etc, you could start to use a lot of memory
  61. real fast.
  62. 6/8/99 Peter De Schrijver and Mike Phillips