public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Leif Lindholm <leif.lindholm@linaro.org>
To: Jun Nie <jun.nie@linaro.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	Haojian Zhuang <haojian.zhuang@linaro.org>,
	edk2-devel@lists.01.org, Shawn Guo <shawn.guo@linaro.org>,
	Jason Liu <jason.liu@linaro.org>
Subject: Re: [PATCH v2] EmbeddedPkg/MmcDxe: Add alignment for ECSD data
Date: Wed, 14 Jun 2017 16:18:13 +0100	[thread overview]
Message-ID: <20170614151813.GP26676@bivouac.eciton.net> (raw)
In-Reply-To: <CABymUCNZ1=tCXPqtEHPaL=8MzYwdAdsyh0V7xabg8+frfE-P3Q@mail.gmail.com>

On Wed, Jun 14, 2017 at 10:50:02AM +0800, Jun Nie wrote:
> >> Sorry, just see your email because that thread is not highlighted for
> >> new email in gmail for unknown reason.
> >> I have concern that "UINT64 VENDOR_SPECIFIC_FIELD[8]" cannot secure
> >> the ECSD alignment because it is not the first member.
> >
> > It being the first member or not has no relevance.
> > By my count, it starts at offset 64, with all preceding entries being
> > UINT8.
> 
>   Maybe you are right. I had have concern that if preceding member
>   of ECSDData, CSDData, is not 8 bytes aligned in the tail, UINT8
>   RESERVED_1[] may start from non 8 bytes aligned address.

The alignment of any struct must match the highest alignment
requirement of its members. If you add a 64-bit field to ECSDData,
that increases the alignment requirements for the ECSDData struct to
64 bits, which increases the alignment requirements for the CARD_INFO
struct to 64 bits. The compiler will automatically insert padding as
required to maintain this.

> >> Changing the first member to "UINT64 RESERVED_1[2]" shall secure the
> >> alignment.
> >
> > Relying on a reserved field for setting alignment constraints risks
> > having to find an alternative method at some point in the future, so I
> > agree this is not a preferred solution.
> >
> >> But I preferred Pad method. It is more readable if all ECSD member
> >> are UINT8 type.
> >
> > I confess am not familiar enough with eMMC to make a clean call here,
> > but if real alignment constrains exist, using UINT8 is actively
> > misleading, not to mention incorrect. If there is no real alignment
> > constraint, this is not the code that needs fixing.
> 
> 512 bytes ECSD data may be read either by CPU or DMA via dedicated
>  eMMC command. DMA may require alignment for the structure and
> DMA on different SoC may require different alignment. Hikey DMA is
> OK with 4 bytes alignment, while ZTE SoC require 8 bytes alignment.
> And pad must not be added in the 512 bytes structure body by compiler.
> So all members in ECSD are defined as UINT8 is safe.

There is no magic to the padding, it is 100% predictable. So the only
safety added is the false sense of not having to consider details of
alignment requirements.

> >> It is also more clear to add alignment info in
> >> CARD_INFO, just before ECSD member.
> >
> > Why is it more clear to apply alignment constraints at point of use
> > instead of point of definition?
> 
> Adding alignment attribute in definition is best way for the
> constraint, but I do not know how to make all compilers happy, just
> like my version 1 patch. It is more or less obscure to change
> VENDOR_SPECIFIC_FIELD or RESERVED_1 to type UINT64.

The benefit of inserting UINT64 types is that this is exactly the
mechanism the C language provides for resolving this type of issue.
But there could be other reasons that would not be preferable. (Say,
if the VENDOR_SPECIFIC_FIELD is expected to hold a text string.)

> I confess that adding a pad before ECSD usage is compromised method. It
> serve as a reminder for developers too, and allow all members of ECSD are
> defined with UINT8.
> 
> Another method is to define ECSDData as a pointer and allocate
> buffer for it. Which method do you prefer?

That would certainly be a much cleaner solution.
It would also be more likely to remain usable if we come across future
controllers with even higher alignment requirements.

It would also let us resolve this issue without me having to fully
understand why the Buffer argument to MMC_READBLOCKDATA is explicitly
a UINT32 * :)

So - yes please, if you could do that change instead, I would be happy
to use that.

> > Is there any chance you can share the EFI_MMC_HOST_PROTOCOL
> > implementation that triggers this error?
> 
> DWMMC controller on ZTE/Sanchip SoC will read corrupted data with current
> DwMmc driver in edk2 96boards git repo. I just add several small patches to
> enable it on new SoC. I will send all these changes in near future. Or
> what detail information do you need? I can share it here.

If you could paste the link to the commit(s) on github, that would
satisfy my curiosity.

Best Regards,

Leif

> Jun
> 
> >
> > /
> >     Leif
> >
> >> I do not get point of Andrew, maybe he share the same concern.
> >>
> >> Jun
> >>
> >> >
> >> >> Contributed-under: TianoCore Contribution Agreement 1.0
> >> >> Signed-off-by: Jun Nie <jun.nie@linaro.org>
> >> >> ---
> >> >>  EmbeddedPkg/Universal/MmcDxe/Mmc.h | 1 +
> >> >>  1 file changed, 1 insertion(+)
> >> >>
> >> >> diff --git a/EmbeddedPkg/Universal/MmcDxe/Mmc.h b/EmbeddedPkg/Universal/MmcDxe/Mmc.h
> >> >> index 8a7d5a3..6e3ab17 100644
> >> >> --- a/EmbeddedPkg/Universal/MmcDxe/Mmc.h
> >> >> +++ b/EmbeddedPkg/Universal/MmcDxe/Mmc.h
> >> >> @@ -319,6 +319,7 @@ typedef struct  {
> >> >>    OCR       OCRData;
> >> >>    CID       CIDData;
> >> >>    CSD       CSDData;
> >> >> +  UINT64    Pad;                              // For 8 bytes alignment of ECSDData
> >> >>    ECSD      ECSDData;                         // MMC V4 extended card specific
> >> >>  } CARD_INFO;
> >> >>
> >> >> --
> >> >> 1.9.1
> >> >>


      reply	other threads:[~2017-06-14 15:17 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-12  1:59 [PATCH v2] EmbeddedPkg/MmcDxe: Add alignment for ECSD data Jun Nie
2017-06-12 15:53 ` Leif Lindholm
2017-06-12 16:03   ` Andrew Fish
2017-06-13  2:14   ` Jun Nie
2017-06-13  4:01     ` Andrew Fish
2017-06-13  4:13       ` Jun Nie
2017-06-13  4:25         ` Andrew Fish
2017-06-13  4:44           ` Jun Nie
2017-06-13  9:18     ` Leif Lindholm
2017-06-14  2:50       ` Jun Nie
2017-06-14 15:18         ` Leif Lindholm [this message]

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=20170614151813.GP26676@bivouac.eciton.net \
    --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