mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/UfsPassThruDxe: fix initialize OCS value to 0x0F
The OCS value should be initiliazed as 0x0F according to UFS spec. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Haojian Zhuang <haojian.zhuang@linaro.org> Reviewed-by: Feng Tian <feng.tian@intel.com>
This commit is contained in:
parent
a68093d5d0
commit
86bd34ca3c
|
@ -551,6 +551,7 @@ UfsCreateScsiCommandDesc (
|
|||
Trd->Int = UFS_INTERRUPT_COMMAND;
|
||||
Trd->Dd = DataDirection;
|
||||
Trd->Ct = UFS_STORAGE_COMMAND_TYPE;
|
||||
Trd->Ocs = UFS_HC_TRD_OCS_INIT_VALUE;
|
||||
Trd->UcdBa = (UINT32)RShiftU64 ((UINT64)CmdDescPhyAddr, 7);
|
||||
Trd->UcdBaU = (UINT32)RShiftU64 ((UINT64)CmdDescPhyAddr, 32);
|
||||
Trd->RuL = (UINT16)DivU64x32 ((UINT64)ROUNDUP8 (sizeof (UTP_RESPONSE_UPIU)), sizeof (UINT32));
|
||||
|
@ -660,7 +661,7 @@ UfsCreateDMCommandDesc (
|
|||
Trd->Int = UFS_INTERRUPT_COMMAND;
|
||||
Trd->Dd = DataDirection;
|
||||
Trd->Ct = UFS_STORAGE_COMMAND_TYPE;
|
||||
Trd->Ocs = 0x0F;
|
||||
Trd->Ocs = UFS_HC_TRD_OCS_INIT_VALUE;
|
||||
Trd->UcdBa = (UINT32)RShiftU64 ((UINT64)CmdDescPhyAddr, 7);
|
||||
Trd->UcdBaU = (UINT32)RShiftU64 ((UINT64)CmdDescPhyAddr, 32);
|
||||
if (Opcode == UtpQueryFuncOpcodeWrDesc) {
|
||||
|
@ -719,6 +720,7 @@ UfsCreateNopCommandDesc (
|
|||
Trd->Int = UFS_INTERRUPT_COMMAND;
|
||||
Trd->Dd = 0x00;
|
||||
Trd->Ct = UFS_STORAGE_COMMAND_TYPE;
|
||||
Trd->Ocs = UFS_HC_TRD_OCS_INIT_VALUE;
|
||||
Trd->UcdBa = (UINT32)RShiftU64 ((UINT64)CmdDescPhyAddr, 7);
|
||||
Trd->UcdBaU = (UINT32)RShiftU64 ((UINT64)CmdDescPhyAddr, 32);
|
||||
Trd->RuL = (UINT16)DivU64x32 ((UINT64)ROUNDUP8 (sizeof (UTP_NOP_IN_UPIU)), sizeof (UINT32));
|
||||
|
|
|
@ -76,6 +76,12 @@
|
|||
#define UFS_HC_UTMRLRSR BIT0
|
||||
#define UFS_HC_UTRLRSR BIT0
|
||||
|
||||
//
|
||||
// The initial value of the OCS field of UTP TRD or TMRD descriptor
|
||||
// defined in JEDEC JESD223 specification
|
||||
//
|
||||
#define UFS_HC_TRD_OCS_INIT_VALUE 0x0F
|
||||
|
||||
//
|
||||
// A maximum of length of 256KB is supported by PRDT entry
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue