Lines Matching refs:myVspCmd

768 	struct VspCmdData myVspCmd;  in mf_setSide()  local
770 memset(&myVspCmd, 0, sizeof(myVspCmd)); in mf_setSide()
780 myVspCmd.xSubData.xFunction02SelectIplTypeIn.xIplType = newSide; in mf_setSide()
781 myVspCmd.xCmd = 10; in mf_setSide()
783 rc = signalVspInstruction(&myVspCmd); in mf_setSide()
790 struct VspCmdData myVspCmd; in mf_getSide() local
792 memset(&myVspCmd, 0, sizeof(myVspCmd)); in mf_getSide()
793 myVspCmd.xCmd = 2; in mf_getSide()
794 myVspCmd.xSubData.xFunction02SelectIplTypeIn.xIplType = 0; in mf_getSide()
796 rc = signalVspInstruction(&myVspCmd); in mf_getSide()
802 if (myVspCmd.xRc == 0) in mf_getSide()
804 if (myVspCmd.xSubData.xGetIplTypeOut.xIplType == 0) in mf_getSide()
806 else if (myVspCmd.xSubData.xGetIplTypeOut.xIplType == 1) in mf_getSide()
808 else if (myVspCmd.xSubData.xGetIplTypeOut.xIplType == 2) in mf_getSide()
876 struct VspCmdData myVspCmd; in mf_setCmdLine() local
888 memset(&myVspCmd, 0, sizeof(myVspCmd)); in mf_setCmdLine()
889 myVspCmd.xCmd = 31; in mf_setCmdLine()
890 myVspCmd.xSubData.xSetKernelCmdLineIn.xToken = dma_addr; in mf_setCmdLine()
891 myVspCmd.xSubData.xSetKernelCmdLineIn.xAddressType = HvLpDma_AddressType_TceIndex; in mf_setCmdLine()
892 myVspCmd.xSubData.xSetKernelCmdLineIn.xSide = side; in mf_setCmdLine()
893 myVspCmd.xSubData.xSetKernelCmdLineIn.xTransferLength = size; in mf_setCmdLine()
895 rc = signalVspInstruction(&myVspCmd); in mf_setCmdLine()
902 struct VspCmdData myVspCmd; in mf_getCmdLine() local
908 memset(&myVspCmd, 0, sizeof(myVspCmd)); in mf_getCmdLine()
909 myVspCmd.xCmd = 33; in mf_getCmdLine()
910 myVspCmd.xSubData.xGetKernelCmdLineIn.xToken = dma_addr; in mf_getCmdLine()
911 myVspCmd.xSubData.xGetKernelCmdLineIn.xAddressType = HvLpDma_AddressType_TceIndex; in mf_getCmdLine()
912 myVspCmd.xSubData.xGetKernelCmdLineIn.xSide = side; in mf_getCmdLine()
913 myVspCmd.xSubData.xGetKernelCmdLineIn.xTransferLength = *size; in mf_getCmdLine()
915 rc = signalVspInstruction(&myVspCmd); in mf_getCmdLine()
919 if (myVspCmd.xRc == 0) in mf_getCmdLine()
921 len = myVspCmd.xSubData.xGetKernelCmdLineOut.xTransferLength; in mf_getCmdLine()
938 struct VspCmdData myVspCmd; in mf_setVmlinuxChunk() local
951 memset(&myVspCmd, 0, sizeof(myVspCmd)); in mf_setVmlinuxChunk()
953 myVspCmd.xCmd = 30; in mf_setVmlinuxChunk()
954 myVspCmd.xSubData.xGetKernelImageIn.xToken = dma_addr; in mf_setVmlinuxChunk()
955 myVspCmd.xSubData.xGetKernelImageIn.xAddressType = HvLpDma_AddressType_TceIndex; in mf_setVmlinuxChunk()
956 myVspCmd.xSubData.xGetKernelImageIn.xSide = side; in mf_setVmlinuxChunk()
957 myVspCmd.xSubData.xGetKernelImageIn.xOffset = offset; in mf_setVmlinuxChunk()
958 myVspCmd.xSubData.xGetKernelImageIn.xTransferLength = size; in mf_setVmlinuxChunk()
960 rc = signalVspInstruction(&myVspCmd); in mf_setVmlinuxChunk()
964 if (myVspCmd.xRc == 0) in mf_setVmlinuxChunk()
979 struct VspCmdData myVspCmd; in mf_getVmlinuxChunk() local
987 memset(&myVspCmd, 0, sizeof(myVspCmd)); in mf_getVmlinuxChunk()
988 myVspCmd.xCmd = 32; in mf_getVmlinuxChunk()
989 myVspCmd.xSubData.xGetKernelImageIn.xToken = dma_addr; in mf_getVmlinuxChunk()
990 myVspCmd.xSubData.xGetKernelImageIn.xAddressType = HvLpDma_AddressType_TceIndex; in mf_getVmlinuxChunk()
991 myVspCmd.xSubData.xGetKernelImageIn.xSide = side; in mf_getVmlinuxChunk()
992 myVspCmd.xSubData.xGetKernelImageIn.xOffset = offset; in mf_getVmlinuxChunk()
993 myVspCmd.xSubData.xGetKernelImageIn.xTransferLength = len; in mf_getVmlinuxChunk()
995 rc = signalVspInstruction(&myVspCmd); in mf_getVmlinuxChunk()
999 if (myVspCmd.xRc == 0) in mf_getVmlinuxChunk()
1001 *size = myVspCmd.xSubData.xGetKernelImageOut.xTransferLength; in mf_getVmlinuxChunk()