aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/twa
Commit message (Collapse)AuthorAgeFilesLines
* twa: RemoveWarner Losh2021-11-251-47/+0
| | | | | | | | | | Belatedly remove twa(4). It was supposed to go before 13.0, but was overlooked. Sponsored by: Netflix Relnotes: yes Reviewed by: scottl Differential Revision: https://reviews.freebsd.org/D33114
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-2/+2
| | | | | | | | | | | 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
* Import version 3.60.03.006 of the TWA driver:Scott Long2007-05-091-29/+2
| | | | | | | | | | | | | | | | | | | This patch does the following: - Remove un-necessary code that is not even compiling into the driver under TW_OSL_NON_DMA_MEM_ALLOC_PER_REQUEST defines. - Remove bundled firmware image and associated "files" entry for tw_cl_fwimg.c - Remove bundled firmware flashing routines. We now have tw_update userspace FreeBSD controller flash utility. - Fix driver crash on load due to shared interrupt. - Fix 2 lock leaks for Giant lock. - Fix CCB leak. - Add support for 9650SE controllers. Many thanks to 3Ware/AMCC for continuing to support FreeBSD. Notes: svn path=/head/; revision=169400
* Style: Remove blank lines before EOF.Yaroslav Tykhiy2006-02-181-1/+0
| | | | | | | Tested by: cvs diff -B Notes: svn path=/head/; revision=155824
* twa corresponding to the 9.3.0.1 release on the 3ware website. This driver hasVinod Kashyap2005-11-081-4/+26
| | | | | | | | support for the 9xxxSX controllers, along with the earlier 9xxxS series controllers. Notes: svn path=/head/; revision=152213
* Style cleanup.David E. O'Brien2005-08-101-19/+9
| | | | Notes: svn path=/head/; revision=148913
* The latest release of the FreeBSD driver (twa) forVinod Kashyap2005-04-121-5/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3ware's 9xxx series controllers. This corresponds to the 9.2 release (for FreeBSD 5.2.1) on the 3ware website. Highlights of this release are: 1. The driver has been re-architected to use a "Common Layer" (all tw_cl* files), which is a consolidation of all OS-independent parts of the driver. The FreeBSD OS specific portions of the driver go into an "OS Layer" (all tw_osl* files). This re-architecture is to achieve better maintainability, consistency of behavior across OS's, and better portability to new OS's (drivers for new OS's can be written by just adding an OS Layer that's specific to the OS, by complying to a "Common Layer Programming Interface" API. 2. The driver takes advantage of multiple processors. 3. The driver has a new firmware image bundled, the new features of which include Online Capacity Expansion and multi-lun support, among others. More details about 3ware's 9.2 release can be found here: http://www.3ware.com/download/Escalade9000Series/9.2/9.2_Release_Notes_Web.pdf Since the Common Layer is used across OS's, the FreeBSD specific include path for header files (/sys/dev/twa) is not part of the #include pre-processor directive in any of the source files. For being able to integrate twa into the kernel despite this, Makefile.<arch> has been changed to add the include path to CFLAGS. Reviewed by: scottl Notes: svn path=/head/; revision=144966
* Changed comments following changes to not bundle firmware by default.Vinod Kashyap2004-04-101-5/+6
| | | | | | | Approved by: re Notes: svn path=/head/; revision=128086
* Don't include the firmware image by default as it adds 500k (uncompressed) toScott Long2004-04-101-2/+2
| | | | | | | | | the module. Reviewed by: vinod Notes: svn path=/head/; revision=128082
* Initial check-in of the device driver for 3ware's 9000 seriesVinod Kashyap2004-03-301-0/+24
PATA/SATA RAID controllers. This driver is a SIM under CAM, and so, behaves like a driver for a SCSI controller. Notes: svn path=/head/; revision=127600