aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/mps
Commit message (Collapse)AuthorAgeFilesLines
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* Re-support CWARNFLAGS, lost when bsd.sys.mk was removed. Also, supportWarner Losh2015-01-031-1/+0
| | | | | | | | | | | CWARNFALGS.$file centrally so we don't have to have it in all the places. Remove a few warning flags that are no longer needed. Also, always use -Wno-unknown-pragma to (hopefully temporarily) work around #pragma ident in debug.h in the opensolaris code. Remove some stale warning suppression that's no longer necessary. Notes: svn path=/head/; revision=276606
* Upgrade our copy of llvm/clang to trunk r162107. With thanks toDimitry Andric2012-08-201-2/+4
| | | | | | | Benjamin Kramer and Joerg Sonnenberger for their input and fixes. Notes: svn path=/head/; revision=239462
* Work around the following clang warning in mps(4):Dimitry Andric2012-03-231-0/+3
| | | | | | | | | | | | | | sys/dev/mps/mps_sas.c:861:1: error: function 'mpssas_discovery_timeout' is not needed and will not be emitted [-Werror,-Wunneeded-internal-declaration] mpssas_discovery_timeout(void *data) ^ Because the driver is obtained from upstream, we don't want to modify it; just silence the warning instead, it is harmless. MFC after: 3 days Notes: svn path=/head/; revision=233354
* Remove gratuitous DEBUG_FLAGS="-g" setting (this is already the defaultRobert Millan2012-03-161-1/+0
| | | | | | | | | option with GENERIC kernels). Reviewed by: ken Notes: svn path=/head/; revision=233049
* Bring in the LSI-supported version of the mps(4) driver.Kenneth D. Merry2012-01-261-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This involves significant changes to the mps(4) driver, but is not a complete rewrite. Some of the changes in this version of the driver: - Integrated RAID (IR) support. - Support for WarpDrive controllers. - Support for SCSI protection information (EEDP). - Support for TLR (Transport Level Retries), needed for tape drives. - Improved error recovery code. - ioctl interface compatible with LSI utilities. mps.4: Update the mps(4) driver man page somewhat for the driver changes. The list of supported hardware still needs to be updated to reflect the full list of supported cards. conf/files: Add the new driver files. mps/mpi/*: Updated version of the MPI header files, with a BSD style copyright. mps/*: See above for a description of the new driver features. modules/mps/Makefile: Add the new mps(4) driver files. Submitted by: Kashyap Desai <Kashyap.Desai@lsi.com> Reviewed by: ken MFC after: 1 week Notes: svn path=/head/; revision=230592
* Re-add opt_mps.h and opt_cam.h, lost in the previous rev.Scott Long2010-10-171-1/+1
| | | | Notes: svn path=/head/; revision=213993
* Currently only opt_compat.h is included by the mps(4) driver. AlsoMatthew D Fleming2010-10-151-1/+1
| | | | | | | | | | enable /dev/mps0, which was missing from my previous patches enabling f/w upload and download. opt_compat.h issue noticed by scottl. Notes: svn path=/head/; revision=213898
* MFp4 (//depot/projects/mps/...)Kenneth D. Merry2010-09-101-0/+13
Bring in a driver for the LSI Logic MPT2 6Gb SAS controllers. This driver supports basic I/O, and works with SAS and SATA drives and expanders. Basic error recovery works (i.e. timeouts and aborts) as well. Integrated RAID isn't supported yet, and there are some known bugs. So this isn't ready for production use, but is certainly ready for testing and additional development. For the moment, new commits to this driver should go into the FreeBSD Perforce repository first (//depot/projects/mps/...) and then get merged into -current once they've been vetted. This has only been added to the amd64 GENERIC, since that is the only architecture I have tested this driver with. Submitted by: scottl Discussed with: imp, gibbs, will Sponsored by: Yahoo, Spectra Logic Corporation Notes: svn path=/head/; revision=212420