History log of /netbsd/sys/dev/ic/cissreg.h (Results 1 – 11 of 11)
Revision Date Author Comments
# 0109dae0 01-Nov-2022 andvar <andvar@NetBSD.org>

s/faild/failed/ in comments and messages.


# 9c294178 16-Jul-2020 jdolecek <jdolecek@NetBSD.org>

make sure the alignment of ciss_cmd matches KASSERT() in ciss_cmd()


# a0f8b3c0 16-Jul-2020 jdolecek <jdolecek@NetBSD.org>

revert the conversion to STAILQ, it broke execution of commands


# 0ca01a07 14-Jul-2020 jdolecek <jdolecek@NetBSD.org>

remove ccb_sc to save memory, no need to store pointer to sc in ccb


# b1948353 14-Jul-2020 jdolecek <jdolecek@NetBSD.org>

use STAILQ for ccb lists to save some memory, doubly-linked list is not needed


# d75c5849 14-Jul-2020 jdolecek <jdolecek@NetBSD.org>

add support for PERFORMANT mode, and allow MSI/MSI-X (only) for adapters which
support it

code adapted from FreeBSD, but with fix for setting the performant bit
and pull count on command submittion

add support for PERFORMANT mode, and allow MSI/MSI-X (only) for adapters which
support it

code adapted from FreeBSD, but with fix for setting the performant bit
and pull count on command submittion as seen in hpsa Linux driver

tested with INTx and MSI-X on HP Smart Array 11

thanks to Andreas Gustafsson for initial testing, and providing
access to test machine

show more ...


# a8af3fb4 17-Jun-2016 christos <christos@NetBSD.org>

rename intr bits


# 37c63df0 12-Oct-2013 christos <christos@NetBSD.org>

- add 64 bit fifo support
- handle fibrilation better


# b54b5dae 18-Oct-2008 bouyer <bouyer@NetBSD.org>

kern/39757 from mishka@:
Bump CISS_MAX_CDB from 12 to 16 bytes. For volumes larger than 2TB,
the scsipi layer will have to use 16 bytes SCSI commands, which would be
rejected by ciss. The cdb buffer

kern/39757 from mishka@:
Bump CISS_MAX_CDB from 12 to 16 bytes. For volumes larger than 2TB,
the scsipi layer will have to use 16 bytes SCSI commands, which would be
rejected by ciss. The cdb buffer already 16 bytes long, and a look at the
FreeBSD driver shows there's no reasons to limit SCSI commands to 12 bytes.

show more ...


# 72715a9a 25-May-2008 mhitch <mhitch@NetBSD.org>

Add bio(4) support, heavily from OpenBSD. The driver doesn't know which
physical drives belong to which logical drive, so all the physical drives
will show up for logical drive 0, and also appear fo

Add bio(4) support, heavily from OpenBSD. The driver doesn't know which
physical drives belong to which logical drive, so all the physical drives
will show up for logical drive 0, and also appear for logical drives that
are rebuilding so that the rebuild state will show the physical drive
being rebuilt. Locking for the scratch buffer is currently missing - system
quickly quits responding when I try to lock the buffer with mutex_{enter,exit}().

show more ...


# 77c27ad0 21-Mar-2006 he <he@NetBSD.org>

Add a driver, ciss(4), for the HP/Compaq drivers using the newer
"Command Interface to SCSI-3 Support" command interface. Driver
ported from OpenBSD by Tonnerre Lombard -- thanks!