Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-08-02 | Initialize timeouts correctly, match isa com; fixes panics in | Miod Vallat | |
PR #3732 and #3881 (although more issues remain). | |||
2004-08-01 | Fold in relevant bits of the most recent two updates from | Kenneth R Westerback | |
gibbs@freebsd. Large commit messages detailing all changes can be read at revisions 1.97 and 1.100 of aic7xxx.c: www.freebsd.org/cgi/cvsweb.cgi/src/sys/dev/aic7xxx/aic7xxx.c Tested by marco, nate and pefo. Fixed broken system for nate. ok marco@ | |||
2004-07-31 | Save a couple of hundred bytes (on i386) by putting the definition of | Kenneth R Westerback | |
siop_dump_script inside #ifdef DUMP_SCRIPT/#endif, just like its single invocation already is. | |||
2004-07-30 | Correctly drain event queue on close. Fixes PR #3874 | Miod Vallat | |
2004-07-30 | Do not negotiate or use non-async transfer rates until probing (i.e. | Kenneth R Westerback | |
SCSI_POLL'ing) is complete. Similar to what is done on mpt, ahc, ahd, etc. This fixes problems during probe on hppa. Problems found & ok mickey@. | |||
2004-07-28 | This touches only MI code, and adds new time keeping code. The | Thorsten Lockert | |
code is all conditionalized on __HAVE_TIMECOUNTER, and not enabled on any platforms. adjtime(2) support exists, courtesy of nordin@, sysctl(2) support and a concept of quality for each time source attached exists. High quality time sources exists for PIIX4 ACPI timer as well as some AMD power management chips. This will have to be redone once we actually add ACPI support (at that time we need to use the ACPI interfaces to get at these clocks). ok art@ ken@ miod@ jmc@ and many more | |||
2004-07-28 | regen | Todd C. Miller | |
2004-07-28 | 3Com OfficeConnect 3CRSHPW796 Cardbus card is atw(4) rev 1.5. | Todd C. Miller | |
Patch based on info from Sigfred Håversen and David Young. | |||
2004-07-26 | Typos in comments. | Miod Vallat | |
2004-07-26 | Belgium USB keyboard map; contributed by Richard Ben Aleya. | Miod Vallat | |
2004-07-26 | Minor glitches in the belgium keyboard layout; reported by Richard Ben Aleya. | Miod Vallat | |
2004-07-26 | Remove orphaned prototypes. | Miod Vallat | |
2004-07-25 | Store pci/cardbus revision number. From NetBSD (dyoung) | Todd C. Miller | |
2004-07-25 | Program BARs before enabling memory or I/O access. From NetBSD (mycroft). | Todd C. Miller | |
2004-07-25 | Begin conditioning device configuration on revision number. Three types | Todd C. Miller | |
are known: ADM8211A (1.1/1.5), ADM8211B (2.0), ADM8211C (3.0). The B and C parts, while not yet supported, have AP capability. From NetBSD (dyoung). | |||
2004-07-25 | Fix IBSS merges in atw(4). From NetBSD (dyoung) | Todd C. Miller | |
2004-07-25 | Improve register definitions and slightly demystify some magic | Todd C. Miller | |
numbers. From NetBSD (dyoung) | |||
2004-07-25 | Here is the serial bus format for the RF3000. From NetBSD (dyoung) | Todd C. Miller | |
2004-07-25 | typo, enevt -> event | Brad Smith | |
2004-07-25 | The RSSI field in the Rx descriptor is the unadulterated content | Todd C. Miller | |
of the DIVCTL/RSSI register on the RF3000 baseband. Mask all but the RSSI bits. From NetBSD (dyoung). | |||
2004-07-24 | provide proper ip header alignment (and repair big endian archs again from ↵ | Michael Shalayeff | |
after ether_input_mbuf conversion); also kill some stupid spaces | |||
2004-07-22 | Spell reserved correctly; ok from copyright holders when in licence blocks. | Miod Vallat | |
2004-07-22 | remove an unused var | David Gwynne | |
ok krw@ | |||
2004-07-21 | remove hppa workarounds; from jkunz@ pr3861 | Michael Shalayeff | |
2004-07-21 | spacing | Theo de Raadt | |
2004-07-21 | use cdce_ prefix on crc32 function and table name to avoid conflicts, | Daniel Hartmeier | |
suggested by mickey | |||
2004-07-21 | update the netbsd license and tags | David Gwynne | |
ok krw@ | |||
2004-07-21 | add crc32(), ether_crc32_[b|l]e() doesn't work here. should make it work | Daniel Hartmeier | |
with Zaurus. | |||
2004-07-21 | from netbsd, umass.c 1.103 | David Gwynne | |
Mostly stylistic change, making comments and printf()s similar between BBB and CBI. ok krw@ | |||
2004-07-21 | from netbsd, umass.c 1.105 | David Gwynne | |
do less work if we hit an error ok krw@ | |||
2004-07-21 | from netbsd, umass.c 1.112 | David Gwynne | |
Fix a printf() error. ok krw@ | |||
2004-07-21 | from netbsd, umass.c 1.116 | David Gwynne | |
When starting a bulk-only transfer, punt early if the device is going away. ok krw@ | |||
2004-07-21 | from netbsd, umass.c 1.104 | David Gwynne | |
Do the quirk initialization earlier. ok krw@ | |||
2004-07-21 | from netbsd, umass.c 1.101 | David Gwynne | |
On a Bulk-In data stall, make sure we copy back the data received, per the spec. This is the real problem behind FORCE_SHORT_INQUIRY. ok krw@ | |||
2004-07-21 | from netbsd, umass.c 1.100 1.113 1.115, umass_scsipi.c 1.11, umassvar.h 1.21 | David Gwynne | |
log message for umass 1.98, umass_scsipi.c 1.11, umassvar.h 1.21: Fix several problems with CCI handling, and enable it: * We were never calling the callback function when we got a UFI CCI(!). * We were passing a bogus residual count on non-UFI CCIs. * After a REQUEST SENSE, the UFI CCI may include the ASC/ASCQ from the sense information -- don't consider this a failure. In addition, remove a horrible hack that was causing us to drop sense information on the floor and return empty INQUIRY responses, often in the case where there is a UNIT ATTENTION pending during the INQUIRY. (Some drives send the data and then fail, some don't.) log message for umass.c 1.113: Do not return STATUS_WIRE_FAILED in response to a CBI stall. This is perfectly normal, and is used to report errors. Instead, use STATUS_CMD_FAILED, which causes us to do a REQUEST SENSE. Should address PR 22960. log message for umass.c 1.115: Do not do a CBI reset before returning STATUS_CMD_FAILED. This causes any sense information to be thrown away, and is therefore nonsensical. ok krw@ | |||
2004-07-21 | calibrate after opening. helps if cpu speed is changing and microtime can't | Ted Unangst | |
be trusted. ok deraadt, several testers. solves pr3814. while here, art says use microuptime. | |||
2004-07-21 | remove a few inlines from funcs that are used more than once and make code ↵ | Michael Shalayeff | |
bigger; asked by art@ | |||
2004-07-21 | from freebsd, ugen.c 1.68 usbdi_util.c 1.27 usbdi_util.h 1.15 | David Gwynne | |
log message: Implement outgoing interrupt pipes. It is part of the USB 1.1 spec. The Lego Infrared Tower use it. ok deraadt@ | |||
2004-07-20 | Driver for USB CDC Ethernet devices (USB Host-to-Host), appearing as | Daniel Hartmeier | |
network interfaces, transporting Ethernet, supporting Sharp Zaurus and Prolific PL-2501 (external cable). Written by Craig Boston based on code from Bill Paul. ok deraadt@ | |||
2004-07-20 | regen | Michael Shalayeff | |
2004-07-20 | prolific pl2501; for dhartmei@ | Michael Shalayeff | |
2004-07-20 | no point in return from void function | Peter Valchev | |
2004-07-20 | sync | David Krause | |
2004-07-20 | SD Controller found on a Toshiba laptop; ok deraadt@ | David Krause | |
2004-07-20 | typo | Theo de Raadt | |
2004-07-20 | sync | Theo de Raadt | |
2004-07-20 | another new device; shin@happynet.co.jp | Theo de Raadt | |
2004-07-19 | Delete the AP scan timeout in atw_detach. Fixes a panic on detach if the | Todd C. Miller | |
timeout is still active as seen by david@ | |||
2004-07-18 | sync | Theo de Raadt | |
2004-07-18 | oops | Theo de Raadt | |