I'm trying to configure the SCSI to connect up with a JAZ drive but I need to know the << Max Buffers>>> data transfer rate information the card will function properly.
There is no "Max Buffers" parameter. There is "Buffers", "Max Transfer" and "Mask".
Buffers depends on the file system. Minimum is 80, I'd suggest something between 100 and 300. But note that each buffer needs as many bytes as the partition's block size. So if you have a block size of 512 and 100 buffers, you need 50k of memory for buffers.
MaxTransfer is not a rate, it specifies the biggest block transferred over the bus in one go. Set it to 0x10000 and it should be fine.
Mask specifies the memory area the controller can access. Usually this is 0x7ffffffe (2GB on even addresses).
Bye,
Thomas