Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-09-06 | Remove useless "\n%s" from the attach routine to match OpenBSD attach norms. | Todd C. Miller | |
naddy@ OK | |||
2001-09-06 | sync up to NetBSD; reviewed by csapuntz@ | Christian Weisgerber | |
- better support for more chip revisions - split register definitions into separate header file - KNF | |||
2001-09-06 | Rewrite interrupt handler a bit... ack interrupts sooner. | Jason Wright | |
2001-09-05 | sync | Jason Wright | |
2001-09-05 | ElanSC520 Host-PCI | Jason Wright | |
2001-09-05 | fix pci_intr_map so that it uses the new interface | Nathan Binkert | |
2001-09-05 | add lge | Nathan Binkert | |
2001-09-05 | Pick up a bugfix from FreeBSD: In wx_hw_stop, a bogus additional write | mjacob | |
to WXREG_IMASK enabled *all* interrupt causes while we were trying to *disable* them all. Oops. | |||
2001-09-05 | Stereo jitter suppressor. | Marc Espie | |
Idea from FreeBSD. This code was not put in initially because I had no problematic card to test. Thanks to Chris Kuethe <ckuethe@pyxis.cns.ualberta.ca> for having such a card and testing this code. | |||
2001-09-05 | add intel ich3 ac97 | Niels Provos | |
2001-09-05 | sync | Niels Provos | |
2001-09-05 | add 82801CA/CAM AC97 Audio | Niels Provos | |
2001-09-04 | recognize intel pro/100 cards; okay deraadt@ | Niels Provos | |
2001-09-04 | sync | Theo de Raadt | |
2001-09-04 | shorten | Theo de Raadt | |
2001-09-04 | .ua keyboard; from Igor Grabin <violent@death.kiev.ua> | Michael Shalayeff | |
2001-09-04 | Driver for the Level1 LXT1001 Gigabit Ethernet Chip. | Nathan Binkert | |
From FreeBSD | |||
2001-09-04 | sync | Chris Cappuccio | |
2001-09-04 | Intel ICH3 (82801CA/CAM) IDE | Chris Cappuccio | |
2001-09-04 | Select between MII/GMII/TBI in the mii_mediachg function instead of in the | Nathan Binkert | |
interrupt handler since it is more reliable. Pointed out by wpaul | |||
2001-09-04 | Fix mask for callout unit | Nathan Binkert | |
2001-09-02 | regen | Jakob Schlyter | |
2001-09-02 | add Todos Argos Mini Smartcard Reader | Jakob Schlyter | |
2001-09-01 | Catch up with mainline of code development. | mjacob | |
Add support for 2 Gigabit cards (2300/2312). This necessitated a change in how interrupts are down- the 23XX has not only a different place to check for an interrupt, but unlike all other QLogic cards, you have to read the status as a 32 bit word- not 16 bit words. Rather than have device specific functions as called from the core module (in isp_intr), it makes more sense to have the platform/bus modules do the gruntwork of splitting out the isr, semaphore register and the first outgoing mailbox register (if needed) *prior* to calling isp_intr (if calling isp_intr is necessary at all). Rearchitect how regular SCSI parameters are stored or used. | |||
2001-08-31 | Print a hex value with 0x (Alexander Yurchenko <grange@rt.mipt.ru>) | Chris Cappuccio | |
2001-08-31 | implement autoconf mechanism using device_register(); from NetBSD. | Jason Wright | |
2001-08-31 | Prepare for transition to 5-parameter bus_dmamap_sync() by creating and | Kenneth R Westerback | |
using ahc_bus_dmamap_sync() defines that are defined appropriately depending on __HAS_NEW_BUS_DMAMAP_SYNC. The code changes are simple reversions to the original NetBSD code. | |||
2001-08-29 | less defines | Michael Shalayeff | |
2001-08-29 | make set/get screen work now | Michael Shalayeff | |
2001-08-29 | initialize ac_enaddr from sc_enaddr | Jason Wright | |
2001-08-28 | an attempt at deuglification of the previous commit (It's still ugly, tho) | Jason Wright | |
2001-08-28 | Relax restriction on buffer length being % 4 = 0 for the last entry in the | Jason Wright | |
chain. This allows us to avoid mbuf copies (and EINVAL on iov's) for packets of non "nice" length. Do this by adding a pad u_int32_t to catch the (possible) overflow and detecting when it's necessary. Also, do a bit of cleaning that ben pointed out. | |||
2001-08-27 | get direction of read/write correct in calls to bus_dmamap_sync() | Jason Wright | |
2001-08-27 | reverse read/write directions in bus_dmamap_sync calls since I misunderstood ↵ | Jason Wright | |
the API | |||
2001-08-27 | Deal with __HAS_NEW_BUS_DMAMAP_SYNC and try to sync partial maps when possible. | Jason Wright | |
2001-08-27 | initial support for non-HMAC md5/sha1 (work by ben@ and myself) | Jason Wright | |
2001-08-27 | sync | Chris Cappuccio | |
2001-08-27 | Promise PDC20268 | Chris Cappuccio | |
2001-08-26 | sync | Theo de Raadt | |
2001-08-26 | new | Theo de Raadt | |
2001-08-26 | Prepare for transition to 5-parameter bus_dmamap_sync() by creating and | Kenneth R Westerback | |
using adv_bus_dmamap_sync() defines that are defined appropriately depending on __HAS_NEW_BUS_DMAMAP_SYNC. The code changes are simple reversions to the original NetBSD code. | |||
2001-08-26 | this hasn't been used for ages. kill; krw@ ok. | Federico G. Schwindt | |
2001-08-26 | Yup, I managed to fat finger all three of these while doing bus_dmamap_sync() | Jason Wright | |
conversion (luckily only sparc64 uses the 5 arg form so far =) | |||
2001-08-26 | deal with 5 arg form of bus_dmamap_sync() if available | Jason Wright | |
2001-08-26 | Prepare for transition to 5-parameter bus_dmamap_sync() by creating and | Kenneth R Westerback | |
using *_bus_dmamap_sync() defines that are defined appropriately depending on __HAS_NEW_BUS_DMAMAP_SYNC. Most of the code changes are simple reversions to the original NetBSD code. Slip in a siop_script_sync() instead of a manually done code section. | |||
2001-08-26 | remove useless INUSE references from scsi_xfer->flags; art@ miod@ ok. | Federico G. Schwindt | |
2001-08-25 | Change scsi_[free|get]_xs to use pool(9); art@ krw@ miod@ ok. | Federico G. Schwindt | |
2001-08-25 | rcsid | Jason Wright | |
2001-08-25 | deal with 5 arg form of bus_dmamap_sync() if available. | Jason Wright | |
2001-08-25 | deal with 5 arg for of bus_dmamap_sync() if available | Jason Wright | |