Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-12-30 | As we still don't have a data_page_dir support yet, transfers of more than | Thierry Deval | |
65535 bytes blocks silently broke. So limit ourself to 32k blocks, for now. That mistake gave us the false impression that huge transfers were fast. They usually resulted of 0-byte transfers. Fast indeed :-( Now, we have real data going through. | |||
2002-12-30 | Some devices have bad ConfigROM crc, but contain valid Unit entries. | Thierry Deval | |
So just ignore, and continue the auto-configuration. | |||
2002-12-30 | Make the callbacks entry non-constant. | Thierry Deval | |
2002-12-30 | Re-design fwohci_hadler_set() to use a new key3. | Thierry Deval | |
That new key will be used for Request handlers to discriminate the requests by nodes. Key3 will also get the lenght field specifier... (may still change) Add an implementation for a BusReset callback that will be called whenever a node's node_id changes. This will allow us to work with more than one device at the same time... | |||
2002-12-30 | proper HOSTAP_FLAGS_BITS; from merith@vantronix.net | Michael Shalayeff | |
2002-12-23 | Repair minor indentation problem. | Miod Vallat | |
2002-12-23 | dev/ata/ata.c should depends on wdc_base since it uses some calls | Alexander Yurchenko | |
from dev/ic/wdc.c; from NetBSD. ok miod@ deraadt@ | |||
2002-12-23 | Fix complete botch in handling of 'openings'. | Kenneth R Westerback | |
Assign a fixed value (SIOP_NTAGS) to the openings field in the adapter's template sc_link, rather than incrementing the value as cbd's are allocated. The template value is the one copied into each device's sc_link structure as it is created. Incrementing the value meant that each new device got a larger value for openings. The total number of openings claimed by devices on a bus soon exceeded the number of cbd's available. e.g. after 5 devices there would be 132 allocated cbd's, but the total number of openings claimed by devices would be 300. A heavy i/o load on an adapter with multiple devices could have caused the upper scsi layer to try to queue more i/o's than the driver had cbd's to store them in. Such i/o's would fail with EIO if they were started with SCSI_NOSLEEP (e.g. sdstart()) or were not queued within the specified retry limit. I/o's for devices 'later' on the bus would be more likely to trigger this behaviour, due to their inflated openings values. This is good candidate for -stable. | |||
2002-12-22 | Define atagettrace_t type and use it instead of struct atagettrace. | Alexander Yurchenko | |
ok costa@ | |||
2002-12-22 | No more magic wdc events types, give them names. | Alexander Yurchenko | |
ok costa@ | |||
2002-12-20 | no need for these to sit in their own dirs, there not gonna be any sources ↵ | Michael Shalayeff | |
there anyway, all code is in the particular bus adapter's source | |||
2002-12-19 | regen | Henning Brauer | |
2002-12-19 | more O2Micro PCI-Cardbus; FreeBSD via pamifer at terra.es | Henning Brauer | |
2002-12-19 | Protect WDCDEBUG_PRINT macro with do {} while (0) | Alexander Yurchenko | |
ok costa@ | |||
2002-12-19 | fix a debugging printf on cmd wait timeout | Michael Shalayeff | |
2002-12-19 | proper barrier call in ie_ack | Michael Shalayeff | |
2002-12-19 | comparam() does not need an spltty() for it, already called there. | Michael Shalayeff | |
time-bound loops in com_common_cnputc() and lower to spltty(), which i guess is left from times when timeouts were processed at splhigh(). jason@ tested and ok, art@ ok | |||
2002-12-18 | fix memory leak when downing an interface. | Nathan Binkert | |
from Patrik Lindergren <patrik@lindergren.com> | |||
2002-12-17 | Cleaning. | Thierry Deval | |
2002-12-16 | Major KNF. Incentive from Tedu | Thierry Deval | |
2002-12-15 | Fix/Cleanup some SCSI #defines. | Kenneth R Westerback | |
1) Correctly define MODE_SENSE_BIG as 0x5a, not 0x54. 2) Delete duplicate #define's of some opcodes in scsi_disk.h. 3) Delete multiple #define's for same opcode in scsi_disk.h. 4) Replace uses of deleted opcodes in umass.c with remaining ones. ok millert@ tdeval@ | |||
2002-12-15 | and one more typo | Henning Brauer | |
2002-12-15 | more typos fixed by torh | Henning Brauer | |
2002-12-15 | typos; torh at bogus.net | Henning Brauer | |
2002-12-14 | Using quirks that make more sense. | Thierry Deval | |
(iPod is happy with this) | |||
2002-12-13 | Some more cleaning... | Thierry Deval | |
2002-12-13 | Limit our Data transfers only to the link speed imposed one. | Thierry Deval | |
Writes are now on a par with reads (-: | |||
2002-12-13 | Only WRITE_REQUEST_DATABLOCK are limited to the device's max_receive. | Thierry Deval | |
Other writes are only limited by the link speed. Idea from NetBSD. | |||
2002-12-13 | Define IEEE1394_MAX_ASYNC(), which gives the maximum (link speed dependent) | Thierry Deval | |
asynchronous packet size. Idea from NetBSD. | |||
2002-12-13 | Fix the memory leak introduced with the use of fwohci_block_handler_set(). | Thierry Deval | |
2002-12-13 | Malloc debug cleaning (MPRINTF). | Thierry Deval | |
Uses option FW_MALLOC_DEBUG. | |||
2002-12-13 | Enable support for SCSI over FireWire. | Thierry Deval | |
2002-12-13 | Add preliminary support for the Serial Bus Protocol II (SBP-2) standard. | Thierry Deval | |
As well as a first rough implementation of a SCSI over FireWire support, following the SBP-2 standard. | |||
2002-12-13 | "Documentation" update. | Thierry Deval | |
2002-12-13 | Better memory balancing (between alloc/free), | Thierry Deval | |
some enhancements, lots of debugging, KNF... | |||
2002-12-13 | Detach fwnodes first. | Thierry Deval | |
Solves panics when removing the adapter while leaving the devices connected. | |||
2002-12-13 | KNF | Thierry Deval | |
2002-12-12 | Always use queue(3) macros. | Alexander Yurchenko | |
ok chris@ gluk@ | |||
2002-12-12 | statement after label. | Artur Grabowski | |
2002-12-11 | smaller delays, unneeded spls | Michael Shalayeff | |
2002-12-11 | send-pr -> sendbug here as well; Peter Werner | Henning Brauer | |
2002-12-11 | sendbug(1), not send-pr; Peter Werner | Henning Brauer | |
2002-12-10 | Regen | Miod Vallat | |
2002-12-10 | Dec Pixelvision card, unfortunately not tga compatible enough. | Miod Vallat | |
2002-12-10 | Translate mickeyspeak into english. | Miod Vallat | |
2002-12-10 | Add support for VIA VT8231; from NetBSD, untested. | Alexander Yurchenko | |
ok gluk@ | |||
2002-12-09 | From Andrushock, s/sucess/success/g | Todd C. Miller | |
2002-12-08 | regen | Alexander Yurchenko | |
2002-12-08 | Add VIA VT8231 PCI to ISA bridge | Alexander Yurchenko | |
ok mickey@ | |||
2002-12-06 | Don't use the RNG oscillator output directly, use the sha1'd version (the | Jason Wright | |
the direct data does not pass 1/2 of the FIPS140-2 tests with any degree of regularity). |