Symbol: smp_pass_through_req
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3128
smp_pass_through_req_t *smp_pass_through_req;
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3137
smp_pass_through_req = (smp_pass_through_req_t*)agIOCTLPayload->FunctionSpecificArea;
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3140
TI_DBG2(("SAS Address[%d]:%x",i,smp_pass_through_req->exp_sas_addr[i]));
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3141
TI_DBG2(("SAS Request Length:%d",smp_pass_through_req->smp_req_len));
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3142
TI_DBG2(("SAS Response Length:%d",smp_pass_through_req->smp_resp_len));
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3143
for(i=0;i<smp_pass_through_req->smp_req_len;i++)
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3144
TI_DBG2(("SAS request + %d:%x",i,smp_pass_through_req->smp_req_resp[i]));
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3146
devHandle = ostiGetDevHandleFromSasAddr(tiRoot, smp_pass_through_req->exp_sas_addr);
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3168
agSMPFrame.outFrameBuf = smp_pass_through_req->smp_req_resp;
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3169
agSMPFrame.expectedRespLen = smp_pass_through_req->smp_resp_len;
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3170
agSMPFrame.inFrameLen = smp_pass_through_req->smp_resp_len - 4;
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3172
if(!(smp_pass_through_req->smp_req_len - 8) && !tiIS_SPC(agRoot))
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3175
agSMPFrame.outFrameLen = smp_pass_through_req->smp_req_len - 4; //Exclude header
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3187
smp_pass_through_req->smp_req_len,
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3192
agSMPFrame.outFrameLen = smp_pass_through_req->smp_req_len - 4; //Exclude crc
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3193
osti_memcpy((void *)reqBuffer, (void *)(smp_pass_through_req->smp_req_resp), smp_pass_through_req->smp_req_len);
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3197
agSMPFrame.outFrameLen = smp_pass_through_req->smp_req_len - 8; //Exclude header and crc
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3198
osti_memcpy((void *)reqBuffer, (void *)(smp_pass_through_req->smp_req_resp + 4), smp_pass_through_req->smp_req_len - 4);
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3208
smp_pass_through_req->smp_resp_len + 4,
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3214
osti_memset((void *)respBuffer, 0, smp_pass_through_req->smp_resp_len);
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3219
tdsaAllShared->tdFWControlEx.usrAddr = (bit8*)smp_pass_through_req->smp_req_resp + smp_pass_through_req->smp_req_len;
sys/dev/pms/RefTisa/tisa/sassata/common/tdioctl.c
3220
tdsaAllShared->tdFWControlEx.len = smp_pass_through_req->smp_resp_len;