aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/rr232x
Commit message (Collapse)AuthorAgeFilesLines
* Remove the rr232x driver. It has been superceded by the hptrr driver.Scott Long2008-02-0316-13085/+0
| | | | Notes: svn path=/head/; revision=175915
* Prepare for future integration between CAM and newbus. xpt_bus_registerScott Long2007-06-171-1/+2
| | | | | | | | | | now takes a device_t to be the parent of the bus that is being created. Most SIMs have been updated with a reasonable argument, but a few exceptions just pass NULL for now. This argument isn't used yet and the newbus integration likely won't be ready until after 7.0-RELEASE. Notes: svn path=/head/; revision=170872
* Remove Giant from CAM. Drivers (SIMs) now register a mutex that CAM willScott Long2007-04-151-1/+2
| | | | | | | | | | | | | | use to synchornize and protect all data objects that are used for that SIM. Drivers that are not yet MPSAFE register Giant and operate as usual. RIght now, no drivers are MPSAFE, though a few will be changed in the coming week as this work settles down. The driver API has changed, so all CAM drivers will need to be recompiled. The userland API has not changed, so tools like camcontrol do not need to be recompiled. Notes: svn path=/head/; revision=168752
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-1/+1
| | | | | | | | | | | | | | | | bus_setup_intr() o add an int return code to all fast handlers o retire INTR_FAST/IH_FAST For more info: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=465712+0+current/freebsd-current Reviewed by: many Approved by: re@ Notes: svn path=/head/; revision=166901
* Make this compile with -Wundef.Ruslan Ermilov2006-05-161-0/+4
| | | | Notes: svn path=/head/; revision=158652
* Hide another common print under bootverbose.Scott Long2006-05-031-1/+2
| | | | Notes: svn path=/head/; revision=158272
* Only print the driver name and version if bootverbose is set.Scott Long2006-05-021-1/+2
| | | | Notes: svn path=/head/; revision=158241
* Remove some header polution.Scott Long2006-04-301-1/+0
| | | | Notes: svn path=/head/; revision=158177
* Add the 'rr232x' driver for the HighPoint RocketRAID 2320 series of cards.Scott Long2006-04-2716-0/+13078
This driver was generously developed and donated by Highpoint. It is enabled for i386 only at the moment. I will enable it for amd64 shortly. Obtained from: HighPoint Technologies, Inc. Notes: svn path=/head/; revision=158084