summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2009-03-12Advanced error checking.Alexander Yurchenko
2009-03-12Define a proper wsdisplay type for raptor(4).Mark Kettenis
ok miod@
2009-03-12For SYNCHRONIZE_CACHE command use the same code path as for READ/WRITE.Alexander Yurchenko
This required to factor out some common scsi code.
2009-03-12Add id for this ridiculous small run(4) found at akihabara. As usual commitedClaudio Jeker
over this run(4).
2009-03-12syncClaudio Jeker
2009-03-12Add usbdevs of the smallest run(4) ever seen. That thing is smaller thenClaudio Jeker
a thumb including the usb connector.
2009-03-11Do more error checking in acx(4).Stefan Sperling
"If it works for you, commit it. The diff looks right." claudio@ "Seems to work here with ACX111 CardBus" jsg@
2009-03-11More aml_evalinteger fixupJordan Hargrave
ok marco@
2009-03-11Remove noisy printf debugJordan Hargrave
2009-03-11Cleanup.. use aml_evalinteger instead of aml_evalnameJordan Hargrave
ok marco@
2009-03-11Rework command polling to be able to sleep if no SCSI_NOSLEEP flagAlexander Yurchenko
passed. Sleep while waiting for sensors update because that's what sensors work queue for.
2009-03-10regenDamien Bergamini
2009-03-10cleanup the mess in Intel WiFi Link PCI Ids.Damien Bergamini
WiFi Link 100 Series have been renamed to 1000 Series by Intel too.
2009-03-10Added sensor devices for Thinkpad (temp+fan)Jordan Hargrave
Exported aml_evalinteger method ok marco@
2009-03-10Fix cut/paste error.. call _BFS not _PTSJordan Hargrave
ok marco@
2009-03-10Print scsi xfer flags in debug output.Alexander Yurchenko
2009-03-10Rearrange physical drive state bits checking so that bioctl getsAlexander Yurchenko
a correct state value.
2009-03-10Add some more debug.Alexander Yurchenko
2009-03-10remove IBSS and HostAP modes since these aren't advertised in ic->ic_capsKevin Lo
pointed out by jsg@
2009-03-10Add ips_intrds() function to be able to disable interrupts on hardware.Alexander Yurchenko
2009-03-10Limit registers space size to some reasonable value.Alexander Yurchenko
2009-03-09Completely rework command processing:Alexander Yurchenko
- use separate callbacks to finish scsi and raid management commands; - for raid management commands use dedicated dma-safe buffer; - remove unused run queue; The main goal of these changes is to fix a bug showing up on the lpinto's machine where READCONF command fails because it needs more than 1-page buffer and the buffer was not contiguos and controller doesn't support scatter-gather for raid management commands.
2009-03-09Do not start printing device info before attachment succeeded.Stefan Sperling
ok claudio@
2009-03-08Move more z8536 defines from MVME188 specific code to the MI header and use it.Miod Vallat
2009-03-07No need to spam log with 'unable to alloc CCB' messages now thatKenneth R Westerback
NO_CCB is in place and the I/O is retried rather than discarded. So move the message inside a #ifdef CAC_DEBUG. Noticed by jbg@.
2009-03-07Make sure the scsi_xfer timeout is set up before the command may complete;Miod Vallat
similar fix to osiop.
2009-03-07regenJonathan Gray
2009-03-07Mobility Radeon HD 3400 from Eric JACQUOT and someJonathan Gray
additional entries from submitted dmesgs.
2009-03-07Misc cleanups, remove dead codeJordan Hargrave
Normalized api for conversion/concatenation ok marco@
2009-03-06Bring a few more PCI IDs from freebsd to match IBM ServeRAID 8i and 8s.Alexander Yurchenko
Not tested but should work.
2009-03-06Add a few more cpu types from freebsd driver found on serveraid-8k board.Alexander Yurchenko
Tested by apelsin. ok deraadt@
2009-03-06Bring NO_CCB to mpi.Kenneth R Westerback
ok marco@
2009-03-05Demacro the inteldrm ring macros too, making them use bus_space_writeOwain Ainsworth
instead of assuming BUS_SPACE_LINEAR + bus_space_vaddr while i'm at it. Cleans things up nicely, and shaves a little bit of space, too.
2009-03-05De-macro the ring manipulation macros in favour of functions. Saves aOwain Ainsworth
large pile of space. Tested by several, thanks.
2009-03-05Additional paranoia for the indirect buffer checking.Owain Ainsworth
2009-03-05Do a similar thing to inteldrm re removing the old vblank crtcOwain Ainsworth
inferfaces. Shrinks the code.
2009-03-05Kill a bunch of (long long long) dead ioctls.Owain Ainsworth
Shaves some bytes.
2009-03-05Remove the stats_boxes counters and associated code from radeondrm.Owain Ainsworth
They're really not all that useful.
2009-03-05Add support for IBM ServeRAID-8k. Thanks to Sergey PrysiazhnyiAlexander Yurchenko
<apelsin@atmnis.com> for patiently testing my numerous diffs. ok deraadt@
2009-03-05Bump bus space size limit to fit all possible registers of the roketAlexander Yurchenko
chipset. ok deraadt@
2009-03-05Rip out old fieldio code (no longer used)Jordan Hargrave
ok marco@
2009-03-05New ACPI fieldio routinesJordan Hargrave
Fix for PR6017, tested extensively on @tech ok marco@
2009-03-04don't bus_space_unmap() sc->mt_ioh with the wrong bus tagAlexandre Ratchov
from Alexandr Shadchin <ShadchinAV(at)mail.ru>, Thanks!
2009-03-03Make sure the scsi_xfer timeout is triggered while the command is still alive.Miod Vallat
With the current code, a fast command could complete between splx and the timeout being triggered, we'd then happily return COMPLETE, reuse the scsi_xfer, schedule the timeout again, causing a nice cycle in the timeout wheels. (I know, I know, I have to inspect all other scsi drivers now, but I'm really tired after spending three hours on this)
2009-03-03shorten sizes of variables to the required number of bits, and removeTheo de Raadt
unused variables, tested by todd ok kettenis
2009-03-03attempt support for a single-port variant of the NetMos NM9835 by lookingTheo de Raadt
at the subsystem id first ok kettenis
2009-03-03regenAlexander Yurchenko
2009-03-03Add IBM Remote Supervisor Adapter found on lpinto's machine.Alexander Yurchenko
2009-03-03regenKevin Lo
2009-03-03more RealTek RTL8187 based devicesKevin Lo
ok jsg@