aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ips
Commit message (Collapse)AuthorAgeFilesLines
* MFC r348366 (by lwhsu):Dimitry Andric2020-04-251-1/+2
| | | | | | | | | | | | Add the likely missing braces in ips(4). This is found by gcc warning that the code is not guarded by the if clause and has misleading indentation. Approved by: scottl Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D20427 Notes: svn path=/stable/12/; revision=360297
* sys/dev: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-279-0/+18
| | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Notes: svn path=/head/; revision=326255
* sys/dev: minor spelling fixes.Pedro F. Giffuni2016-05-031-1/+1
| | | | | | | Most affect comments, very few have user-visible effects. Notes: svn path=/head/; revision=298955
* - Use the existing driver lock in cdevsw methods and remove D_NEEDGIANT.John Baldwin2014-11-133-33/+21
| | | | | | | | | | | - Use callout(9) instead of timeout(9). - Use bus_*() instead of bus_space_*(). - Don't check for a NULL softc in attach. Tested by: no one Notes: svn path=/head/; revision=274488
* Update PCI drivers to no longer look at the MEMIO-enabled bit in the PCIScott Long2013-08-121-15/+10
| | | | | | | | | | | | | | | | | | | | command register. The lazy BAR allocation code in FreeBSD sometimes disables this bit when it detects a range conflict, and will re-enable it on demand when a driver allocates the BAR. Thus, the bit is no longer a reliable indication of capability, and should not be checked. This results in the elimination of a lot of code from drivers, and also gives the opportunity to simplify a lot of drivers to use a helper API to set the busmaster enable bit. This changes fixes some recent reports of disk controllers and their associated drives/enclosures disappearing during boot. Submitted by: jhb Reviewed by: jfv, marius, achadd, achim MFC after: 1 day Notes: svn path=/head/; revision=254263
* Improving r249461 by providing a better way to handle the clang warning.Hiren Panchasara2013-04-171-3/+4
| | | | | | | | | PR: kern/177164 Reviewed by: jhb Approved by: sbruno (mentor) Notes: svn path=/head/; revision=249595
* Fixing a clang warning indicating uninitialized variable usage.Hiren Panchasara2013-04-141-1/+1
| | | | | | | | PR: kern/177164 Approved by: sbruno (mentor) Notes: svn path=/head/; revision=249461
* Convert a number of drivers to obtaining their parent DMA tag from theirScott Long2012-03-121-1/+1
| | | | | | | PCI device attachment. Notes: svn path=/head/; revision=232854
* Fix argument order in a call to mtx_init.Matt Jacob2009-12-171-1/+1
| | | | | | | MFC after: 1 week Notes: svn path=/head/; revision=200620
* Check pointer for NULL before dereferencing it, not after.Christian Brueffer2009-10-211-1/+1
| | | | | | | | | PR: 138384 Submitted by: Patroklos Argyroudis <argp@census-labs.com> MFC after: 1 week Notes: svn path=/head/; revision=198329
* Temporarily revert the new-bus locking for 8.0 release. It will beJohn Baldwin2009-08-201-2/+0
| | | | | | | | | reintroduced after HEAD is reopened for commits by re@. Approved by: re (kib), attilio Notes: svn path=/head/; revision=196403
* Make the newbus subsystem Giant free by adding the new newbus sxlock.Attilio Rao2009-08-021-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The newbus lock is responsible for protecting newbus internIal structures, device states and devclass flags. It is necessary to hold it when all such datas are accessed. For the other operations, softc locking should ensure enough protection to avoid races. Newbus lock is automatically held when virtual operations on the device and bus are invoked when loading the driver or when the suspend/resume take place. For other 'spourious' operations trying to access/modify the newbus topology, newbus lock needs to be automatically acquired and dropped. For the moment Giant is also acquired in some key point (modules subsystem) in order to avoid problems before the 8.0 release as module handlers could make assumptions about it. This Giant locking should go just after the release happens. Please keep in mind that the public interface can be expanded in order to provide more support, if there are really necessities at some point and also some bugs could arise as long as the patch needs a bit of further testing. Bump __FreeBSD_version in order to reflect the newbus lock introduction. Reviewed by: ed, hps, jhb, imp, mav, scottl No answer by: ariff, thompsa, yongari Tested by: pho, G. Trematerra <giovanni dot trematerra at gmail dot com>, Brandon Gooch <jamesbrandongooch at gmail dot com> Sponsored by: Yahoo! Incorporated Approved by: re (ksmith) Notes: svn path=/head/; revision=196037
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-1/+2
| | | | | | | | | | | | | | | | 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
* o Add Adaptec ServeRAID 7x IDs. IDs taken from Linux.Maxim Konovalov2006-10-052-2/+8
| | | | | | | | | PR: kern/90012 Submitted by: Andrey V. Elsukov MFC after: 1 month Notes: svn path=/head/; revision=163024
* while (0); -> while (0) in multi-line macrosWarner Losh2006-08-171-1/+1
| | | | Notes: svn path=/head/; revision=161425
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-161-1/+0
| | | | | | | unnecessary. Notes: svn path=/head/; revision=158651
* Shuffle some definitions so that this can be included from userland.Scott Long2006-01-031-5/+11
| | | | Notes: svn path=/head/; revision=154006
* Add some more data structures and definitions for communicating with theScott Long2006-01-031-1/+72
| | | | | | | ServeRAID firmware. Notes: svn path=/head/; revision=154005
* Separate the hardware definitions into ipsreg.h so they can be used byScott Long2005-11-297-309/+351
| | | | | | | future userland tools. Notes: svn path=/head/; revision=152919
* Fix build.Gleb Smirnoff2005-09-271-1/+1
| | | | Notes: svn path=/head/; revision=150611
* Report status in hex, not decimal.Scott Long2005-09-271-1/+1
| | | | Notes: svn path=/head/; revision=150602
* Overhaul error handling in the IPS driver. Don't use a magic value forScott Long2005-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 Notes: svn path=/head/; revision=150535
* Remove bus_{mem,p}io.h and related code for a micro-optimization on i386Yoshihiro Takahashi2005-05-292-2/+0
| | | | | | | | | and amd64. The optimization is a trivial on recent machines. Reviewed by: -arch (imp, marcel, dfr) Notes: svn path=/head/; revision=146734
* Remove an extra mutex unlock in the morpheus interrupt handler.Scott Long2005-04-261-1/+4
| | | | | | | | | PR: 80246 Submitted by: Dean Strik MFC After: 3 days Notes: svn path=/head/; revision=145545
* Use BUS_PROBE_DEFAULT for pci probe return valueWarner Losh2005-03-051-3/+3
| | | | Notes: svn path=/head/; revision=143160
* Add crashdump support to the ips driver. It only works for the more modernScott Long2005-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 Notes: svn path=/head/; revision=141062
* Remove all of the spl() markers.Scott Long2005-01-281-27/+0
| | | | Notes: svn path=/head/; revision=140924
* Lock the IPS driver and bring it out from under Giant. Also do someScott Long2005-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 Notes: svn path=/head/; revision=140923
* Do the dreaded s/dev_t/struct cdev */Poul-Henning Kamp2004-06-162-4/+4
| | | | | | | Bump __FreeBSD_version accordingly. Notes: svn path=/head/; revision=130585
* Change the return value of sema_timedwait() so it returns 0 onJohn Polstra2004-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 Notes: svn path=/head/; revision=130481
* Add missing <sys/module.h> includesPoul-Henning Kamp2004-05-301-0/+1
| | | | Notes: svn path=/head/; revision=129879
* Use a unique malloc type rather than M_DEVBUF.Scott Long2004-05-304-31/+35
| | | | Notes: svn path=/head/; revision=129859
* Fix typo in the device id for the new cards.Scott Long2004-03-271-1/+1
| | | | Notes: svn path=/head/; revision=127487
* Add generic support for the recent Adaptec flavors of ServeRAID.Scott Long2004-03-192-4/+14
| | | | Notes: svn path=/head/; revision=127205
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-3/+6
| | | | | | | | Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde Notes: svn path=/head/; revision=127135
* Switch from using mutexes to using semaphores to protect against earlyScott Long2004-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) Notes: svn path=/head/; revision=126364
* Device megapatch 4/6:Poul-Henning Kamp2004-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. Notes: svn path=/head/; revision=126080
* Change the disk(9) API in order to make device removal more robust.Poul-Henning Kamp2004-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. Notes: svn path=/head/; revision=125975
* Remove the static major assignment for ips(4).Scott Long2004-02-141-2/+0
| | | | | | | Submitted by: phk, inspired by others. Notes: svn path=/head/; revision=125833
* Use same style for cdevsw as the rest of our drivers.Poul-Henning Kamp2004-02-141-5/+5
| | | | Notes: svn path=/head/; revision=125808
* Fixed a memory leak.Ruslan Ermilov2004-01-181-0/+1
| | | | | | | | Reported by: Stanford Metacompilation research group Reviewed by: scottl Notes: svn path=/head/; revision=124680
* The reset_type should not be 0x80, it should be set to zero.Martin Blapp2004-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 Notes: svn path=/head/; revision=124040
* ServeRaid (at least 5i) didn't initialize correctly. To getMartin Blapp2003-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 Notes: svn path=/head/; revision=122999
* Eliminate reporting of bio_blkno.Poul-Henning Kamp2003-10-181-2/+2
| | | | Notes: svn path=/head/; revision=121211
* Add an off_t cast to prevent overflow on media size. This shouldNate Lawson2003-09-221-1/+1
| | | | | | | | | fix issues with geometry not matching drive size. Submitted by: Clive Lin <clive@tongi.org> Notes: svn path=/head/; revision=120329
* Delay most of the adapter initilization until after interrupts arePaul Saab2003-09-112-2/+19
| | | | | | | | | enabled. Tested by: Richard Puga <puga@mauibuilt.com> Notes: svn path=/head/; revision=119997
* Use PCIR_BAR(x) instead of PCIR_MAPS.John Baldwin2003-09-021-3/+3
| | | | | | | | Glanced over by: imp, gibbs Tested by: i386 LINT Notes: svn path=/head/; revision=119690
* Use __FBSDID().David E. O'Brien2003-08-245-18/+16
| | | | | | | Also some minor style cleanups. Notes: svn path=/head/; revision=119418
* Prefer new location of pci include files (which have only been in theWarner Losh2003-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. Notes: svn path=/head/; revision=119280
* - Use the new resource_disabled() helper function to see if devices areJohn Baldwin2003-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. Notes: svn path=/head/; revision=117167