mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Advertise to CAM the ability of 790X controllers to negotiate information
unit transfers (packetized/U320 protocol) and QAS.
This commit is contained in:
parent
1bb3032058
commit
accbb18a61
1 changed files with 3 additions and 2 deletions
|
|
@ -597,9 +597,10 @@ ahd_action(struct cam_sim *sim, union ccb *ccb)
|
|||
cpi->protocol_version = SCSI_REV_2;
|
||||
cpi->transport = XPORT_SPI;
|
||||
cpi->transport_version = 2;
|
||||
cpi->xport_specific.spi.ppr_options = SID_SPI_CLOCK_ST;
|
||||
cpi->transport_version = 4;
|
||||
cpi->xport_specific.spi.ppr_options = SID_SPI_CLOCK_DT_ST;
|
||||
cpi->xport_specific.spi.ppr_options = SID_SPI_CLOCK_DT_ST
|
||||
| SID_SPI_IUS
|
||||
| SID_SPI_QAS;
|
||||
cpi->ccb_h.status = CAM_REQ_CMP;
|
||||
xpt_done(ccb);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue