Lines Matching refs:reqp

3989 	sns_screq_t *reqp = (sns_screq_t *) local;  in isp_register_fc4_type()  local
3992 ISP_MEMZERO((void *) reqp, SNS_RFT_ID_REQ_SIZE); in isp_register_fc4_type()
3993 reqp->snscb_rblen = SNS_RFT_ID_RESP_SIZE >> 1; in isp_register_fc4_type()
3994 reqp->snscb_addr[RQRSP_ADDR0015] = DMA_WD0(fcp->isp_scdma + 0x100); in isp_register_fc4_type()
3995 reqp->snscb_addr[RQRSP_ADDR1631] = DMA_WD1(fcp->isp_scdma + 0x100); in isp_register_fc4_type()
3996 reqp->snscb_addr[RQRSP_ADDR3247] = DMA_WD2(fcp->isp_scdma + 0x100); in isp_register_fc4_type()
3997 reqp->snscb_addr[RQRSP_ADDR4863] = DMA_WD3(fcp->isp_scdma + 0x100); in isp_register_fc4_type()
3998 reqp->snscb_sblen = 22; in isp_register_fc4_type()
3999 reqp->snscb_data[0] = SNS_RFT_ID; in isp_register_fc4_type()
4000 reqp->snscb_data[4] = fcp->isp_portid & 0xffff; in isp_register_fc4_type()
4001 reqp->snscb_data[5] = (fcp->isp_portid >> 16) & 0xff; in isp_register_fc4_type()
4002 reqp->snscb_data[6] = (1 << FC4_SCSI); in isp_register_fc4_type()
4007 isp_put_sns_request(isp, reqp, (sns_screq_t *) fcp->isp_scratch); in isp_register_fc4_type()
4192 ispreq_t *reqp; in isp_start() local
4289 reqp = (ispreq_t *) local; in isp_start()
4293 isp_marker_24xx_t *m = (isp_marker_24xx_t *) reqp; in isp_start()
4299 isp_marker_t *m = (isp_marker_t *) reqp; in isp_start()
4311 reqp->req_header.rqs_entry_count = 1; in isp_start()
4313 reqp->req_header.rqs_entry_type = RQSTYPE_T7RQS; in isp_start()
4315 reqp->req_header.rqs_entry_type = RQSTYPE_T2RQS; in isp_start()
4318 reqp->req_header.rqs_entry_type = RQSTYPE_CMDONLY; in isp_start()
4320 reqp->req_header.rqs_entry_type = RQSTYPE_REQUEST; in isp_start()
4342 ((ispreqt7_t *)reqp)->req_task_attribute = ttype; in isp_start()
4355 ((ispreqt2_t *)reqp)->req_flags = XS_TAG_TYPE(xs); in isp_start()
4362 ((ispreqt2_t *)reqp)->req_flags = REQFLAG_HTAG; in isp_start()
4364 ((ispreqt2_t *)reqp)->req_flags = REQFLAG_STAG; in isp_start()
4369 reqp->req_flags = XS_TAG_TYPE(xs); in isp_start()
4373 tptr = &reqp->req_time; in isp_start()
4381 reqp->req_target = target | (XS_CHANNEL(xs) << 7); in isp_start()
4382 reqp->req_lun_trn = XS_LUN(xs); in isp_start()
4383 cdblen = ISP_MIN(cdblen, sizeof (reqp->req_cdb)); in isp_start()
4384 cdbp = reqp->req_cdb; in isp_start()
4385 reqp->req_cdblen = cdblen; in isp_start()
4438 reqp->req_handle = handle; in isp_start()
4446 dmaresult = ISP_DMASETUP(isp, xs, reqp); in isp_start()