summaryrefslogtreecommitdiffstats
path: root/sys/dev/ips
Commit message (Collapse)AuthorAgeFilesLines
* o Add Adaptec ServeRAID 7x IDs. IDs taken from Linux.maxim2006-10-052-2/+8
| | | | | | PR: kern/90012 Submitted by: Andrey V. Elsukov MFC after: 1 month
* while (0); -> while (0) in multi-line macrosimp2006-08-171-1/+1
|
* Since DELAY() was moved, most <machine/clock.h> #includes have beenphk2006-05-161-1/+0
| | | | unnecessary.
* Shuffle some definitions so that this can be included from userland.scottl2006-01-031-5/+11
|
* Add some more data structures and definitions for communicating with thescottl2006-01-031-1/+72
| | | | ServeRAID firmware.
* Separate the hardware definitions into ipsreg.h so they can be used byscottl2005-11-297-309/+351
| | | | future userland tools.
* Fix build.glebius2005-09-271-1/+1
|
* Report status in hex, not decimal.scottl2005-09-271-1/+1
|
* Overhaul error handling in the IPS driver. Don't use a magic value forscottl2005-09-255-73/+102
| | | | | | | | | driver-induced errors, instead be better about propagating error status upwards. Add more error definitions, courtesy of the linux driver. Fix a command leak in the ioctl handler. Re-arrange some of the command handlers to localize error handling. MFC After: 3 days
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386nyan2005-05-292-2/+0
| | | | | | and amd64. The optimization is a trivial on recent machines. Reviewed by: -arch (imp, marcel, dfr)
* Remove an extra mutex unlock in the morpheus interrupt handler.scottl2005-04-261-1/+4
| | | | | | PR: 80246 Submitted by: Dean Strik MFC After: 3 days
* Use BUS_PROBE_DEFAULT for pci probe return valueimp2005-03-051-3/+3
|
* Add crashdump support to the ips driver. It only works for the more modernscottl2005-01-304-15/+176
| | | | | | | | | ServeRAID 4 - 7 models right now. Support for older cards is possible, but I don't have any hardware to experiment with. Thanks to Jack Hammer at Adaptec for providing debugging hints. Sponsored by: ImproWare AG, Switzerland
* Remove all of the spl() markers.scottl2005-01-281-27/+0
|
* Lock the IPS driver and bring it out from under Giant. Also do somescottl2005-01-286-234/+149
| | | | | | | | | | | | | | | | significant clean up and optimizations: - don't call bioq_disksort() on every command, the hardware will do that for us. - remove all of the complicated bio deferral code. bio's that can't be serviced immediately can just wait on the bioq. - Only reserve one command object for doing control commands to the card. This simplifies a lot of code and significantly reduces the size of the command struct. - Allocate commands out of a slab instead of embedding them into the softc. - Call the command action method directly instead of having ips_get_free_cmd() call it indirectly. MFC After: 1 week
* Do the dreaded s/dev_t/struct cdev */phk2004-06-162-4/+4
| | | | Bump __FreeBSD_version accordingly.
* Change the return value of sema_timedwait() so it returns 0 onjdp2004-06-141-3/+3
| | | | | | | | | | | success and a proper errno value on failure. This makes it consistent with cv_timedwait(), and paves the way for the introduction of functions such as sema_timedwait_sig() which can fail in multiple ways. Bump __FreeBSD_version and add a note to UPDATING. Approved by: scottl (ips driver), arch
* Add missing <sys/module.h> includesphk2004-05-301-0/+1
|
* Use a unique malloc type rather than M_DEVBUF.scottl2004-05-304-31/+35
|
* Fix typo in the device id for the new cards.scottl2004-03-271-1/+1
|
* Add generic support for the recent Adaptec flavors of ServeRAID.scottl2004-03-192-4/+14
|
* Convert callers to the new bus_alloc_resource_any(9) API.njl2004-03-171-3/+6
| | | | | Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde
* Switch from using mutexes to using semaphores to protect against earlyscottl2004-02-285-52/+65
| | | | | | | completion of synchronous commands. Also switch to a per-array bioq as it appears to improve performance. Submitted by: mbr, imp.ch (bioq change)
* Device megapatch 4/6:phk2004-02-211-0/+2
| | | | | | | | Introduce d_version field in struct cdevsw, this must always be initialized to D_VERSION. Flip sense of D_NOGIANT flag to D_NEEDGIANT, this involves removing four D_NOGIANT flags and adding 145 D_NEEDGIANT flags.
* Change the disk(9) API in order to make device removal more robust.phk2004-02-182-15/+18
| | | | | | | | | | | | | | | | | | | | | | | | Previously the "struct disk" were owned by the device driver and this gave us problems when the device disappared and the users of that device were not immediately disappearing. Now the struct disk is allocate with a new call, disk_alloc() and owned by geom_disk and just abandonned by the device driver when disk_create() is called. Unfortunately, this results in a ton of "s/\./->/" changes to device drivers. Since I'm doing the sweep anyway, a couple of other API improvements have been carried out at the same time: The Giant awareness flag has been flipped from DISKFLAG_NOGIANT to DISKFLAG_NEEDSGIANT A version number have been added to disk_create() so that we can detect, report and ignore binary drivers with old ABI in the future. Manual page update to follow shortly.
* Remove the static major assignment for ips(4).scottl2004-02-141-2/+0
| | | | Submitted by: phk, inspired by others.
* Use same style for cdevsw as the rest of our drivers.phk2004-02-141-5/+5
|
* Fixed a memory leak.ru2004-01-181-0/+1
| | | | | Reported by: Stanford Metacompilation research group Reviewed by: scottl
* The reset_type should not be 0x80, it should be set to zero.mbr2004-01-011-1/+1
| | | | | | | | 0x80 can cause the command to be rejected as invalid. This bug exists also in the Linux IPS ffdc code. Submitted by: David Jeffery MFC after: 1 week
* ServeRaid (at least 5i) didn't initialize correctly. To getmbr2003-11-273-4/+211
| | | | | | | | | | | | | | | | | | | | | them working (cache, automatic rebuild and hotswap) the FFDC info (First Failure Data Capture) on the adapter must be initialised. Logical drives in critical/degraded states weren't added to the drive list. FreeBSD was not able to see a degraded array after a reboot. Degraded drives are now also added to the drivelist and the state of the logical drive is given at boottime. The adapter type is detected from informations in nvram page 5 and displayed at boottime. Change IPS_OS_FREEBSD definition from 10 to 8 according to IBM specs. Submitted by: <Patrick Guelat> pgfb@imp.ch Reviewed by: mbr, scottl Approved by: re
* Eliminate reporting of bio_blkno.phk2003-10-181-2/+2
|
* Add an off_t cast to prevent overflow on media size. This shouldnjl2003-09-221-1/+1
| | | | | | fix issues with geometry not matching drive size. Submitted by: Clive Lin <clive@tongi.org>
* Delay most of the adapter initilization until after interrupts areps2003-09-112-2/+19
| | | | | | enabled. Tested by: Richard Puga <puga@mauibuilt.com>
* Use PCIR_BAR(x) instead of PCIR_MAPS.jhb2003-09-021-3/+3
| | | | | Glanced over by: imp, gibbs Tested by: i386 LINT
* Use __FBSDID().obrien2003-08-245-18/+16
| | | | Also some minor style cleanups.
* Prefer new location of pci include files (which have only been in theimp2003-08-222-4/+4
| | | | | tree for two or more years now), except in a few places where there's code to be compatible with older versions of FreeBSD.
* - Use the new resource_disabled() helper function to see if devices arejhb2003-07-021-4/+1
| | | | | | | | | | | | disabled. - Change the apm driver to match the acpi driver's behavior by checking to see if the device is disabled in the identify routine instead of in the probe routine. This way if the device is disabled it is never created. Note that a few places (ips(4), Alpha SMP) used "disable" instead of "disabled" for their hint names, and these hints must be changed to "disabled". If this is a big problem, resource_disabled() can always be changed to honor both names.
* Mega busdma API commit.scottl2003-07-014-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | Add two new arguments to bus_dma_tag_create(): lockfunc and lockfuncarg. Lockfunc allows a driver to provide a function for managing its locking semantics while using busdma. At the moment, this is used for the asynchronous busdma_swi and callback mechanism. Two lockfunc implementations are provided: busdma_lock_mutex() performs standard mutex operations on the mutex that is specified from lockfuncarg. dftl_lock() is a panic implementation and is defaulted to when NULL, NULL are passed to bus_dma_tag_create(). The only time that NULL, NULL should ever be used is when the driver ensures that bus_dmamap_load() will not be deferred. Drivers that do not provide their own locking can pass busdma_lock_mutex,&Giant args in order to preserve the former behaviour. sparc64 and powerpc do not provide real busdma_swi functions, so this is largely a noop on those platforms. The busdma_swi on is64 is not properly locked yet, so warnings will be emitted on this platform when busdma callback deferrals happen. If anyone gets panics or warnings from dflt_lock() being called, please let me know right away. Reviewed by: tmm, gibbs
* Fix pointer/int warnings so this compiles on amd64. The driver wantspeter2003-06-273-4/+4
| | | | | | | to store an int in the bio->bio_driver1 (a void *). It is big enough, but you have to match the int sizes first before doing the cast. Glanced at by: scottl
* - Zero the buffers used to hold configuration data from the card. Not doingscottl2003-06-264-15/+38
| | | | | | | | | | so can leave stale data in the buffer and confuse the driver. - enable the ability to set the 'disable' hint for the driver to keep it from attaching. i.e. 'hw.ips.0.disable=1' will prevent the driver from attaching. - Only detach if attach suceeded. Submitted by: mjacob
* Fix indentationphk2003-05-311-12/+13
| | | | Found by: FlexeLint
* Add the 'ips' driver for the IBM (now Adaptec) ServeRAID controllerscottl2003-05-118-0/+2364
series. This driver was generously developed and released by David Jeffreys and Adaptec. I've updated it to work with 5.x and fixed a few bugs. MFC After: 1 week
OpenPOWER on IntegriCloud