Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-18 | First and foremost, avoid an obious race between two or more processes | Uwe Stuehler | |
trying to get MMC commands through to the SD/MMC host controller via the emulated SCSI layer. This is achieved by ensuring exclusive access to the host controller for one process during any MMC command and during a sequence of commands at the sdmmc(4) layer. While at it, the command processing thread has been moved to sdmmc(4), so as to simplify the implementation of future host controller drivers. This should also pave the way for further cleanup of the code and for new drivers. Minor cleanups are included in this commit, as well. | |||
2006-07-18 | regen | Brad Smith | |
2006-07-18 | the VIA HDA PCI id matches against multiple chipsets. | Brad Smith | |
2006-07-18 | increase the number of Jumbo slots a little bit for sparc64. | Brad Smith | |
2006-07-17 | regen | Brad Smith | |
2006-07-17 | fix some of the IBM entries. | Brad Smith | |
2006-07-17 | silently return if sdmmc is disabled/not in the kernel. uwe@ ok. | Federico G. Schwindt | |
2006-07-17 | correct the way hosts are alloc'ed. fixes crashes on controllers with | Federico G. Schwindt | |
multiple slots. tested by me and ian@. uwe@ ok. | |||
2006-07-17 | sync | Theo de Raadt | |
2006-07-17 | new bridge; sthen@symphytum.spacehopper.org | Theo de Raadt | |
2006-07-17 | correct base freq mask per spec. sdhc found in the nx6125 now configures | Federico G. Schwindt | |
correctly. uwe@ ok. | |||
2006-07-17 | regen | David Gwynne | |
2006-07-17 | add areca and their raid products | David Gwynne | |
2006-07-17 | PC5740 is umodem not umsm. Should fix PR 5181. | Jonathan Gray | |
2006-07-17 | No point in memsetting individual struct members after memsetting the | Michael Knudsen | |
entire struct. ok dlg | |||
2006-07-17 | Prefer malloc over the stack for an array of 256 pointers. ok dlg@ | Miod Vallat | |
2006-07-16 | Use a global variable for the console ibm561 state, and use it when the | Miod Vallat | |
real device attach, instead of using malloc (we can not use malloc at console initialization time). This gets rid of the following stack offense: /usr/src/sys/dev/ic/ibm561.c: In function `ibm561_cninit': /usr/src/sys/dev/ic/ibm561.c:193: warning: stack usage is 4768 bytes | |||
2006-07-16 | Match a few more Promise SATA chips which should work | Jonathan Gray | |
if the FreeBSD driver is any indication. | |||
2006-07-16 | regen | Jonathan Gray | |
2006-07-16 | Add revision B1 of the D-Link DUB-E100. | Jonathan Gray | |
2006-07-16 | some knf, no binary change | David Gwynne | |
2006-07-16 | get rid of ifdef __OtherBSD__ cruft | David Gwynne | |
2006-07-15 | regen | Mark Kettenis | |
2006-07-15 | Add MCP04 ISA bridge. | Mark Kettenis | |
2006-07-15 | Add support for Genesys Logic GL523SM and Global Mixed-mode Technology G781. | Mark Kettenis | |
tested by fgs@ and Stuart Henderson. | |||
2006-07-15 | set the tags on the scsi command according to what the midlayer says they | David Gwynne | |
should be. | |||
2006-07-15 | have a go at configuring spi variants to only talk to the devices at the | David Gwynne | |
lowest possible speeds during inquiry and attach. some devices, like tapes and enclosures, dont like being probed at high speeds and can attach as weird things. this seems to help those devices. | |||
2006-07-14 | add ZyXEL USB id, remove useless comments and reorder USB devices. | Brad Smith | |
2006-07-14 | regen | Brad Smith | |
2006-07-14 | add a ZyXEL wireless adapter USB id. | Brad Smith | |
From Linux | |||
2006-07-14 | clean up a few defines and apply some knf | David Gwynne | |
2006-07-14 | regen | Jonathan Gray | |
2006-07-14 | Add a few more Promise devices. | Jonathan Gray | |
2006-07-14 | dont pretend to configure the BAR to only use 32bit addressing, and make | David Gwynne | |
sure we compare the right bits when we figure out what type of memory we're talking to. | |||
2006-07-14 | debug message macros. | Brad Smith | |
2006-07-13 | regen | Brad Smith | |
2006-07-13 | Add the VIA VT8237A HD Audio PCI id. | Brad Smith | |
From kent@NetBSD | |||
2006-07-12 | only call the init routine if the interface is not already running. | Brad Smith | |
2006-07-12 | add an initial PHY driver for the IC Plus IP1000A integrated PHY. | Brad Smith | |
From Pyun YongHyeon <yongari at FreeBSD dot org> | |||
2006-07-12 | move a few structures and macros over to the header file. | Brad Smith | |
2006-07-12 | Do not split multibyte access on little endian architectures with no alignment | Miod Vallat | |
requirements; ok krw@ | |||
2006-07-12 | include uvm_extern.h for atop() | Martin Reindl | |
2006-07-12 | spacing | Theo de Raadt | |
2006-07-12 | Add missing break. | Mark Kettenis | |
2006-07-12 | Sort switch statements by vendor ID. | Mark Kettenis | |
2006-07-12 | make dmesg lines openbsd-style, ok dlg@ | Jolan Luff | |
2006-07-12 | use config space macros. | Brad Smith | |
2006-07-12 | check ifp->if_hardmtu instead of ETHERMTU. | Brad Smith | |
2006-07-12 | increase the maximum Jumbo frame length and correct the STGE_MaxFrameSize | Brad Smith | |
register address. | |||
2006-07-11 | put the increasing tx threshold message under SF_DEBUG | Brad Smith | |
instead of DIAGNOSTIC. From Nick Nauwelaerts in PR 5176 |