Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-11-09 | in the ifdef POWERPC section, do use ppc, not p4e, for the iohandle | Dale S. Rahn | |
for the console configuration. | |||
1999-11-09 | sync | Chris Cappuccio | |
1999-11-09 | Add Triones/Highpoint HPT343, HPT366 | Chris Cappuccio | |
1999-11-07 | regen. | Federico G. Schwindt | |
1999-11-07 | sigh, tag shouldn't be a comment in *devs. | Federico G. Schwindt | |
1999-11-07 | sync with NetBSD. | Federico G. Schwindt | |
1999-11-07 | regen. | Federico G. Schwindt | |
1999-11-07 | oops. add OpenBSD tag. | Federico G. Schwindt | |
1999-11-07 | New devices. | Federico G. Schwindt | |
1999-11-06 | sync | Theo de Raadt | |
1999-11-06 | I shortened these names ON PURPOSE. Do NOT make them long again! | Theo de Raadt | |
1999-11-05 | Commit to pcmciadevs (or any other *devs) should be done in two steps, | Federico G. Schwindt | |
so the .h file always has the same revision number. Regen. | |||
1999-11-05 | Add BayStack 650 FH 802.11 (from NetBSD) | Angelos D. Keromytis | |
1999-11-05 | Fix ata_get_params on big endian platforms. | Constantine Sapuntzakis | |
We have diverged from NetBSD in that wdc_exec_xfer no longer automatically swaps. | |||
1999-11-05 | use wdc_input_bytes and wdc_output_bytes | Constantine Sapuntzakis | |
1999-11-05 | The default network name is not "ANY", it's the empty string. I've | Angelos D. Keromytis | |
noticed that through personal use, double checked with NetBSD if_wireg.h | |||
1999-11-04 | Make sure bus mastering is enabled, from freebsd if_de.c | Chris Cappuccio | |
1999-11-03 | Typo in boot message. | Angelos D. Keromytis | |
1999-11-03 | sync | Hakan Olsson | |
1999-11-03 | Two more Neomagic chipsets. | Hakan Olsson | |
1999-11-03 | Regen. | Aaron Campbell | |
1999-11-03 | Add Adaptec AIC6915. | Aaron Campbell | |
1999-11-03 | Driver for Adaptec "StarFire" AIC6915-based Ethernet cards; from FreeBSD. | Aaron Campbell | |
Thanks to jason@ for lots of debugging help. | |||
1999-11-03 | sync | Chris Cappuccio | |
1999-11-03 | 5597 is a host bridge | Chris Cappuccio | |
1999-11-03 | 0x5597 will never match an SiS pciide controller because they are 0x5513 | Chris Cappuccio | |
The NetBSD pcidevs is confusing because it calles "5597_IDE" 0x5513, but OpenBSD pcidevs just had "SiS 5597" as 0x5597 | |||
1999-11-02 | fix printf (had an extra space) | Chris Cappuccio | |
add useless comments to new Intel code | |||
1999-11-02 | re-enable IDENTIFY, reset delay each time | Theo de Raadt | |
1999-11-02 | Fix comment typo. | Angelos D. Keromytis | |
1999-10-31 | critical fixes, overdone, but who cares, a localhost crash is bad | Theo de Raadt | |
1999-10-31 | New prods: Planex FNW-3600-T and Corega Ether II & Fast Ether. | Federico G. Schwindt | |
Rearrage a few entries. | |||
1999-10-31 | regen. | Federico G. Schwindt | |
1999-10-31 | New products from NetBSD. Change a few names. | Federico G. Schwindt | |
1999-10-29 | NetBSD take note: | Constantine Sapuntzakis | |
Use xfer->c_bcount and not sc_xfer->datalen when passing our buffer limit to the device. In the case of SENSE, we were sending 0 as our buffer limit, potentially confusing some devices. Cap the bytes/interrupt at 65534, which prevents odd size transfers. Odd size transfers, while not inherently evil, are kind of weird through a 16-bit wide interface. | |||
1999-10-29 | Added diagnostic: "length 0 transfer in data phase" | Constantine Sapuntzakis | |
Changed SCSI XS_TIMEOUT error to SCSI XS_RESET error to better reflect that we had to reset the bus Don't downgrade DMA modes if the transfer that failed wasn't using DMA | |||
1999-10-29 | Change wdc_input_bytes and wdc_output_bytes to use | Constantine Sapuntzakis | |
bus_space_{read,write}_raw_* instead of the byte-swapping API. For PowerPC and other big-endian architectures. | |||
1999-10-29 | writen->written | Todd T. Fries | |
1999-10-29 | fix comment to match code | Jason Wright | |
1999-10-29 | Introduce wdc_output_bytes and wdc_input_bytes to remove replicated PIO logic | Theo de Raadt | |
Fix wdc_select_drive to no longer wait for free channel (not strictly correct but we couldn't handle a non-free channel anyway) Major changes to the ATAPI interrupt logic to reduce reliance on the drive setting the bits correctly. Deal with situation that we get length = 0 back from the drive on transfer (instead of potentially looping forever). Timeout in drive setup should not cause the drive to downgrade modes. | |||
1999-10-29 | reliability fixes from csapuntz; commit message replaced later with details | Theo de Raadt | |
1999-10-28 | Regen | Aaron Campbell | |
1999-10-28 | Add ADMtek products. | Aaron Campbell | |
1999-10-28 | Driver for ADMtek AL981/AN985 Ethernet controllers; from FreeBSD. | Aaron Campbell | |
1999-10-28 | Downgrade to mode 2 first if we were udma > 2; from NetBSD. costa@ ok. | Federico G. Schwindt | |
1999-10-28 | Sync up with some piece of reality, start supporting powerpc again. | Dale S. Rahn | |
1999-10-28 | hush up the link up/down messages | Jason Wright | |
1999-10-27 | bugfixes from netbsd ata_wdc.c, ok csapuntz@ | Chris Cappuccio | |
from bouyer: - Add some debug printf (WDCPROBE) in _wdcreset_wait(), I've needed these 2 times in the past - Set up timeout per xfer instead of per interrupt. This helps with PIO transfer (we would call timeout()/untimout() several times for a transfer). - If we missed an interrupt for a PIO transfer, reset and restart it immedialy, don't try to recover and continue. If we missed an interrupt we may have lost a read/write cycle on the IDE bus. If this happens 1) we corrupt data and 2) we enter an interrupt loop at the end of the xfer, as the drive has some more data to read/write, but the host thinks the xfer is done. This last change fix the (or at last some of the) 'lookup after lost interrupt' some peoples have been experiencing. | |||
1999-10-27 | Use SIMPLEQ_XXX. | Federico G. Schwindt | |
1999-10-27 | do not pre-filter bpf packets; jason | Theo de Raadt | |
1999-10-26 | Support LMC1200 | Chris Cappuccio | |
Based on LMC's Linux code |