97de30ff26
* Rearrange the speed mapping table and adjust the code so that the highest rate can actually be used. Previously we ended up rounding up slightly lower speeds and then losing because set_params couldn't set the mode back to the current one. * Allow 260 as a valid I/O address, since the SB1 can be jumpered to this. * Change the MPU-401 code so it can be attached as a separate device. (XXX Really, the SB code ought to just attach a subdevice itself.) * Do not attach an OPL on the SB1. Writing to the OPL registers at SB_base+0 on this card wedges my machine. (XXX Should we access it at 388 instead? The Creative web site claims that this board *does* have an OPL2, but I haven't played with this extensively.) * Allocate the SB DMA channels at open time, rather than attach time, so that a single DRQ can be used for multiple cards (if only one is in use at a given time). (XXX Let me tell you why this is a horrible hack. If the ISA DMA code tries to allocate a bounce buffer after boot time, it will generally fail, because there is no contiguous memory below 16MB and the code to allocate contiguous pages doesn't know how to move things around. Now, we shouldn't ever be using bounce buffers here, because we use isa_dmamem_alloc(). So we just turn off BUS_DMA_ALLOCNOW and we don't actually try to. That's cool, and it even works, but isa_dmamem_alloc() has the same problem. It just happens that we allocate the ring buffers at boot time, and whenever we reallocate them (due to the buffer size changing), we just deallocated the previous (contiguous) buffer, so we get lucky. This is absolutely disgusting and needs to be fixed.) |
||
---|---|---|
.. | ||
ad1848_isa.c | ||
ad1848var.h | ||
aha_isa.c | ||
aic_isa.c | ||
aria.c | ||
ariareg.h | ||
ast.c | ||
bha_isa.c | ||
boca.c | ||
com_isa.c | ||
com_multi.c | ||
com_multi.h | ||
cs89x0.c | ||
cs89x0reg.h | ||
cs89x0var.h | ||
cs4231var.h | ||
cy_isa.c | ||
elink.c | ||
elink.h | ||
esp_isa.c | ||
espvar.h | ||
ess_isa.c | ||
ess.c | ||
essreg.h | ||
essvar.h | ||
files.isa | ||
gus.c | ||
gusreg.h | ||
i82365_isa.c | ||
i82365_isasubr.c | ||
i82365_isavar.h | ||
ics2101.c | ||
ics2101var.h | ||
if_ai.c | ||
if_aireg.h | ||
if_ate.c | ||
if_cs_isa.c | ||
if_depca_isa.c | ||
if_ec.c | ||
if_ecreg.h | ||
if_ef.c | ||
if_efreg.h | ||
if_eg.c | ||
if_egreg.h | ||
if_el.c | ||
if_elreg.h | ||
if_ep_isa.c | ||
if_fereg.h | ||
if_fmv.c | ||
if_hp.c | ||
if_ix.c | ||
if_ixreg.h | ||
if_iy.c | ||
if_lc_isa.c | ||
if_le_isa.c | ||
if_levar.h | ||
if_ne_isa.c | ||
if_sm_isa.c | ||
if_we.c | ||
if_wereg.h | ||
isa.c | ||
isadma.c | ||
isadmareg.h | ||
isadmavar.h | ||
isareg.h | ||
isavar.h | ||
lpt_isa.c | ||
madreg.h | ||
Makefile | ||
mcd.c | ||
mcdreg.h | ||
midi_pcppi.c | ||
mpu.c | ||
mpuvar.h | ||
nca.c | ||
ncareg.h | ||
ncavar.h | ||
opl_ess.c | ||
opl_isa.c | ||
opl_sb.c | ||
pas.c | ||
pasreg.h | ||
pcdisplay.c | ||
pcdisplayvar.h | ||
pckbc.c | ||
pckbcvar.h | ||
pcppi.c | ||
pcppireg.h | ||
pcppivar.h | ||
pss.c | ||
pssreg.h | ||
README.seagate | ||
rtfps.c | ||
satlink.c | ||
satlinkio.h | ||
satlinkreg.h | ||
sb_isa.c | ||
sb.c | ||
sbdsp.c | ||
sbdspvar.h | ||
sbreg.h | ||
sbvar.h | ||
seagate.c | ||
spkr.c | ||
spkrio.h | ||
tcom.c | ||
uha_isa.c | ||
vga_isa.c | ||
vga_isavar.h | ||
wdc_isa.c | ||
wds.c | ||
wdsreg.h | ||
wss_isa.c | ||
wss.c | ||
wssreg.h | ||
wssvar.h | ||
wt.c | ||
wtreg.h | ||
ym.c | ||
ymvar.h |
# $NetBSD: README.seagate,v 1.2 1998/01/05 07:31:07 perry Exp $ The hardware: The ST01/02, and Future Domain 950 are very simple SCSI controllers. They are not busmastering, so the processor must do all transfers a la IDE. They support blind transfer by adding wait states (up to a certain limit). Interrupt is generated for reconnect and parity errors (maybe also for some other events). The card consists of one command port that writes to scsi control lines, reads status lines, and a data port that read/writes to the 8 data lines. The address decoding gives both data and control ports large memory areas to a single port. This is used by the code. The ST01/02 differs from the FD950 in memory address location and SCSI id. Probing for the card: A card is recognized by comparing the BIOS signature with known signatures. A new card may not be recognized if the BIOS signature has changed. Please send new signatures to me. Driver function: A scsi command is sent to scsi_cmd function. The command is either placed in the queue or an retryable message is returned. The routine may wait for completion of the command depending on the supplied flags. A timer is started for every command placed in the queue. The commands are added in the order they are received. There is a possiblity to make all REQUEST SENSE commands be queued before all other commands, but I dont think it is a good thing (Linux do however use this). The card is mostly controlled by the sea_main function. It is called by scsi_cmd, the interrupt routine, and the timeout routine. The sea_main routine runs as long there are something to do (transfer data, issue queued commands, and handle reconnected commands). The data transfers may be done in two different ways: Blind and polled transfers. They differ in the way the driver does it handshaking with the target. During a blind transfer, the driver code blindly transfers a block of data without checking for changed phase. During polled transfers, the phase is checked between every character transfered. The polled transfers are always used for status information and command transfers. Because the card does not use dma in any way, there is no need to handle physical addresses. There is no problem with the isa-bus address limit of 16MB, making bounce-buffers unnecessary. The data structures: Every card has a sea_softc structure keeping the queues of commands waiting to be issued, and commands currently disconnected. The type of card (Seagate or Future Domain), data and control port addresses, scsi id, busy flags for all possible targets, and interrupt vector for the card. Every scsi command to be issued are stored in a sea_scb structure. It contains a flag describing status/error of the command, current data buffer position, and number of bytes remaining to be transfered. PROBLEMS I have had problems getting the ST02 boot using the boot floppies. I think it is some problem with BIOS calls not working. It is unfortunately impossible to disconnect the ST02 floppy controller. I have had problem to get the driver talk to a 40 MB Seagate disk. I dont have access to it any more, so I can't do any more checks on that. NOTE: The ST02 creates its own description of the disk attached. This is not the same as the disk says. This translation problem may cause problems when sharing a disk between both DOS and BSD. It is however not impossible.