From: "Wu, Hao A" <hao.a.wu@intel.com>
To: "Ke, VincentX" <vincentx.ke@intel.com>,
"devel@edk2.groups.io" <devel@edk2.groups.io>
Cc: "Ni, Ray" <ray.ni@intel.com>, "Chiu, Ian" <Ian.chiu@intel.com>,
"Chu, Maggie" <maggie.chu@intel.com>
Subject: Re: [PATCH v6 1/3] MdeModulePkg: Replace with UFS_UNIT_DESC to fix timeout problem
Date: Thu, 23 Dec 2021 05:44:33 +0000 [thread overview]
Message-ID: <DM6PR11MB4025DBDF4F75C987443C174CCA7E9@DM6PR11MB4025.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20211223041919.1307-2-vincentx.ke@intel.com>
Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
Best Regards,
Hao Wu
> -----Original Message-----
> From: Ke, VincentX <vincentx.ke@intel.com>
> Sent: Thursday, December 23, 2021 12:19 PM
> To: devel@edk2.groups.io
> Cc: Ke, VincentX <vincentx.ke@intel.com>; Wu, Hao A
> <hao.a.wu@intel.com>; Ni, Ray <ray.ni@intel.com>; Chiu, Ian
> <Ian.chiu@intel.com>; Chu, Maggie <maggie.chu@intel.com>
> Subject: [PATCH v6 1/3] MdeModulePkg: Replace with UFS_UNIT_DESC to fix
> timeout problem
>
> BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3714
>
> Replace with UFS_UNIT_DESC to fix response timeout problem.
>
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Ray Ni <ray.ni@intel.com>
> Cc: Ian Chiu <Ian.chiu@intel.com>
> Cc: Maggie Chu <maggie.chu@intel.com>
> Signed-off-by: VincentX Ke <vincentx.ke@intel.com>
> ---
> .../Bus/Ufs/UfsBlockIoPei/UfsBlockIoPei.c | 23 +++++++++----------
> 1 file changed, 11 insertions(+), 12 deletions(-)
>
> diff --git a/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsBlockIoPei.c
> b/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsBlockIoPei.c
> index b331c0f3e3..b8651ff998 100644
> --- a/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsBlockIoPei.c
> +++ b/MdeModulePkg/Bus/Ufs/UfsBlockIoPei/UfsBlockIoPei.c
> @@ -1,6 +1,6 @@
> /** @file
>
> - Copyright (c) 2014 - 2019, Intel Corporation. All rights reserved.<BR>
> + Copyright (c) 2014 - 2021, Intel Corporation. All rights
> + reserved.<BR>
> SPDX-License-Identifier: BSD-2-Clause-Patent
>
> **/
> @@ -1037,9 +1037,9 @@ InitializeUfsBlockIoPeim (
> UFS_PEIM_HC_PRIVATE_DATA *Private;
> EDKII_UFS_HOST_CONTROLLER_PPI *UfsHcPpi;
> UINT32 Index;
> - UFS_CONFIG_DESC Config;
> UINTN MmioBase;
> UINT8 Controller;
> + UFS_UNIT_DESC UnitDescriptor;
>
> //
> // Shadow this PEIM to run from memory @@ -1126,19 +1126,18 @@
> InitializeUfsBlockIoPeim (
> }
>
> //
> - // Get Ufs Device's Lun Info by reading Configuration Descriptor.
> + // Check if 8 common luns are active and set corresponding bit mask.
> //
> - Status = UfsRwDeviceDesc (Private, TRUE, UfsConfigDesc, 0, 0, &Config,
> sizeof (UFS_CONFIG_DESC));
> - if (EFI_ERROR (Status)) {
> - DEBUG ((DEBUG_ERROR, "Ufs Get Configuration Descriptor Error, Status
> = %r\n", Status));
> - Controller++;
> - continue;
> - }
> -
> for (Index = 0; Index < UFS_PEIM_MAX_LUNS; Index++) {
> - if (Config.UnitDescConfParams[Index].LunEn != 0) {
> - Private->Luns.BitMask |= (BIT0 << Index);
> + Status = UfsRwDeviceDesc (Private, TRUE, UfsUnitDesc, (UINT8)Index, 0,
> &UnitDescriptor, sizeof (UFS_UNIT_DESC));
> + if (EFI_ERROR (Status)) {
> + DEBUG ((DEBUG_ERROR, "Fail to read UFS Unit Descriptor, Index = %X,
> Status = %r\n", Index, Status));
> + continue;
> + }
> +
> + if (UnitDescriptor.LunEn == 0x1) {
> DEBUG ((DEBUG_INFO, "Ufs %d Lun %d is enabled\n", Controller,
> Index));
> + Private->Luns.BitMask |= (BIT0 << Index);
> }
> }
>
> --
> 2.31.1.windows.1
next prev parent reply other threads:[~2021-12-23 5:44 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-23 4:19 [PATCH v6 0/3] MdeModulePkg: Fix UfsBlockIoPei timing problem VincentX Ke
2021-12-23 4:19 ` [PATCH v6 1/3] MdeModulePkg: Replace with UFS_UNIT_DESC to fix timeout problem VincentX Ke
2021-12-23 5:44 ` Wu, Hao A [this message]
2021-12-23 4:19 ` [PATCH v6 2/3] MdeModulePkg: Refactoring UFS DME request and fix timing problem VincentX Ke
2021-12-23 5:42 ` Wu, Hao A
2021-12-23 4:19 ` [PATCH v6 3/3] MdeModulePkg: Put off UFS HCS.DP checking to " VincentX Ke
2021-12-23 5:44 ` [edk2-devel] " Wu, Hao A
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DM6PR11MB4025DBDF4F75C987443C174CCA7E9@DM6PR11MB4025.namprd11.prod.outlook.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox