All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Lemberg <Alex.Lemberg@sandisk.com>
To: Grant Grundler <grundler@chromium.org>
Cc: Jaehoon Chung <jh80.chung@samsung.com>,
	Seunguk Shin <seunguk.shin@samsung.com>,
	"linux-mmc@vger.kernel.org" <linux-mmc@vger.kernel.org>,
	Avi Shchislowski <Avi.Shchislowski@sandisk.com>,
	Chris Ball <chris@printf.net>, CPGS <cpgs@samsung.com>,
	Puthikorn Voravootivat <puthik@chromium.org>,
	Gwendal Grignou <gwendal@chromium.org>
Subject: RE: [RFC PATCH 1/1 ]mmc: Support-FFU-for-eMMC-v5.0
Date: Thu, 3 Apr 2014 12:54:23 +0000	[thread overview]
Message-ID: <282CEDFCBC30114F83C499CB8F2ED53337EB7426@SACMBXIP02.sdcorp.global.sandisk.com> (raw)
In-Reply-To: <CANEJEGu8btGqp=NqV+JjFBWKxSh6_=DcsbH4aoL9tGgK2xcUFA@mail.gmail.com>

Hi Grant,

We work on V2, and Avi will post it in few coming days.

Thanks,
Alex

> -----Original Message-----
> From: linux-mmc-owner@vger.kernel.org [mailto:linux-mmc-
> owner@vger.kernel.org] On Behalf Of Grant Grundler
> Sent: Tuesday, April 01, 2014 11:30 PM
> To: Grant Grundler
> Cc: Jaehoon Chung; Seunguk Shin; linux-mmc@vger.kernel.org; Avi
> Shchislowski; Chris Ball; CPGS; Puthikorn Voravootivat; Gwendal Grignou
> Subject: Re: [RFC PATCH 1/1 ]mmc: Support-FFU-for-eMMC-v5.0
> 
> argh...reposting my response as text only since linux-mmc doesn't like html
> mail. :(
> 
> On Tue, Apr 1, 2014 at 1:26 PM, Grant Grundler <grundler@chromium.org>
> wrote:
> >
> >
> >
> > On Mon, Mar 31, 2014 at 9:17 PM, Jaehoon Chung
> > <jh80.chung@samsung.com>
> > wrote:
> >>
> >> Hi, Seunguk.
> >>
> >> On 03/31/2014 07:51 PM, Seunguk Shin wrote:
> >> > Some of Samsung eMMC does not show the argument for ffu in ext_csd.
> >> > In case of this, eMMC shows 0x0 from ext_csd, Host has to modify
> >> > the argument.
> >> >
> >> > Add "#define CID_MANFID_SAMSUNG               0x15"
> >> If you need to add the Samsung eMMC specific code, it would be better
> >> you would send the Samsung eMMC specific patch.
> >> (based-on this patch.)
> >
> >
> > I believe Seunguk Shin provided the information so someone else could
> > add this code. I could be that person if no one from Samsung has have
> > time for this.  I'm very grateful to Seungguk for posting these details.
> >
> > I hope we can see the same details for Samsung eMMC 4.5 also (but
> > please use a different email Subject line so we aren't confused.)
> >
> >> This patch isn't patch for samsung eMMC.
> >> I didn't see this patch fully, but i think this patch is general code.
> >
> >
> > AFAICT, the MANFID_SAMSUNG is only a "quirk" for Samsung devices
> which
> > specify the EXT_CSD_FFU_ARG as 0.
> >
> > The original patch from SanDisk is general code and most of Seunguk's
> > comments are general too. SanDisk (ie Avi) should please ACK they've
> > seen those comments since I believe Seunguk is correct.
> >
> > And Avi, please let us know if/when you plan on posting a V2. Or at
> > least not be offended if I get impatient and hijack this patch series.
> > :)
> >
> > cheers,
> > grant
> >
> >> Best Regards,
> >> Jaehoon Chung
> >>
> >> >
> >> >> +int mmc_ffu_download(struct mmc_card *card, struct
> mmc_command *cmd,
> >> >> +       u8 *data, int buf_bytes)
> >> >> +{
> >> >> +       u8 ext_csd[CARD_BLOCK_SIZE];
> >> >> +       int err;
> >> >> +       int ret;
> >> >> +
> >> >> +       /* Read the EXT_CSD */
> >> >> +       err = mmc_send_ext_csd(card, ext_csd);
> >> >> +       if (err) {
> >> >> +               pr_err("FFU: %s: error %d sending ext_csd\n",
> >> >> +                       mmc_hostname(card->host), err);
> >> >> +               goto exit;
> >> >> +       }
> >> >> +
> >> >> +       /* Check if FFU is supported by card */
> >> >> +       if
> (!FFU_SUPPORTED_MODE(ext_csd[EXT_CSD_SUPPORTED_MODE])) {
> >> >> +               err = -EINVAL;
> >> >> +               pr_err("FFU: %s: error %d FFU is not supported\n",
> >> >> +                       mmc_hostname(card->host), err);
> >> >> +               goto exit;
> >> >> +       }
> >> >> +
> >> >> +       err = mmc_host_set_ffu(card, ext_csd[EXT_CSD_FW_CONFIG]);
> >> >> +       if (err) {
> >> >> +               pr_err("FFU: %s: error %d FFU is not supported\n",
> >> >> +                       mmc_hostname(card->host), err);
> >> >> +               err = -EINVAL;
> >> >> +               goto exit;
> >> >> +       }
> >> >> +
> >> >> +       /* set device to FFU mode */
> >> >> +       err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
> >> > EXT_CSD_MODE_CONFIG,
> >> >> +               MMC_FFU_MODE_SET, card->ext_csd.generic_cmd6_time);
> >> >> +       if (err) {
> >> >> +               pr_err("FFU: %s: error %d FFU is not supported\n",
> >> >> +                       mmc_hostname(card->host), err);
> >> >> +               goto exit_normal;
> >> >> +       }
> >> >> +
> >> >> +       /* set CMD ARG */
> >> >> +       cmd->arg = ext_csd[EXT_CSD_FFU_ARG] |
> >> >> +               ext_csd[EXT_CSD_FFU_ARG + 1] << 8 |
> >> >> +               ext_csd[EXT_CSD_FFU_ARG + 2] << 16 |
> >> >> +               ext_csd[EXT_CSD_FFU_ARG + 3] << 24;
> >> >> +
> >> >
> >> > Add followings
> >> > "
> >> >        /* If arg is zero, should be set to a special value for
> >> > samsung eMMC */
> >> >        if ( card->cid.manfid == CID_MANFID_SAMSUNG && cmd->arg ==
> >> > 0x0 ) {
> >> >                cmd->arg = 0xc7810000;
> >> >        }
> >> > "
> >> >
> >> >> +       err = mmc_ffu_write(card, data, cmd->arg, buf_bytes);
> >> >> +
> >> >> +exit_normal:
> >> >> +       /* host switch back to work in normal MMC Read/Write
> >> >> +commands
> >> >> */
> >> >> +       ret = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
> >> >> +               EXT_CSD_MODE_CONFIG, MMC_FFU_MODE_NORMAL,
> >> >> +               card->ext_csd.generic_cmd6_time);
> >> >> +       if (ret)
> >> >> +               err = ret;
> >> >> +
> >> >> +exit:
> >> >> +       return err;
> >> >> +}
> >> >> +EXPORT_SYMBOL(mmc_ffu_download);
> >> >> +
> >> >
> >> >
> >> >
> >> > eMMC 5.0 Spec. says if device does not support
> >> > MODE_OPERATION_CODES, device doesn't need to use
> >> > NUMBER_OF_FW_SECTORS_CORRECTLY_PROGRAMMED.
> >> > So, it's better to move the code for checking this value to
> >> > FFU_FEATURES(ext_csd[EXT_CSD_FFU_FEATURES]
> >> >
> >> >> +int mmc_ffu_install(struct mmc_card *card) {
> >> >> +       u8 ext_csd[CARD_BLOCK_SIZE];
> >> >> +       int err;
> >> >> +       u32 ffu_data_len;
> >> >> +       u32 timeout;
> >> >> +
> >> >> +       err = mmc_send_ext_csd(card, ext_csd);
> >> >> +       if (err) {
> >> >> +               pr_err("FFU: %s: error %d sending ext_csd\n",
> >> >> +                       mmc_hostname(card->host), err);
> >> >> +               goto exit;
> >> >> +       }
> >> >> +
> >> >> +       /* Check if FFU is supported */
> >> >> +       if
> (!FFU_SUPPORTED_MODE(ext_csd[EXT_CSD_SUPPORTED_MODE]) ||
> >> >> +               FFU_CONFIG(ext_csd[EXT_CSD_FW_CONFIG])) {
> >> >> +               err = -EINVAL;
> >> >> +               pr_err("FFU: %s: error %d FFU is not supported\n",
> >> >> +                       mmc_hostname(card->host), err);
> >> >> +               goto exit;
> >> >> +       }
> >> >
> >> > Remove followings
> >> > "
> >> >        ffu_data_len = ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG]|
> >> >                ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG + 1] << 8 |
> >> >                ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG + 2] << 16 |
> >> >                ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG + 3] << 24;
> >> >
> >> >        if (!ffu_data_len) {
> >> >                err = -EPERM;
> >> >                return err;
> >> >        }
> >> > "
> >> >
> >> >> +
> >> >> +       /* check mode operation */
> >> >> +       if (!FFU_FEATURES(ext_csd[EXT_CSD_FFU_FEATURES])) {
> >> >> +               /* restart the eMMC */
> >> >> +               err = mmc_ffu_restart(card);
> >> >> +               if (err) {
> >> >> +                       pr_err("FFU: %s: error %d FFU install:\n",
> >> >> +                               mmc_hostname(card->host), err);
> >> >> +               }
> >> >> +       } else {
> >> >
> >> > Add followings
> >> > "
> >> >                         ffu_data_len =
> >> > ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG]|
> >> >                                 ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG
> >> > + 1] << 8
> >> > |
> >> >                                 ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG
> >> > + 2] <<
> >> > 16 |
> >> >                                 ext_csd[EXT_CSD_NUM_OF_FW_SEC_PROG
> >> > + 3] << 24;
> >> >
> >> >                         if (!ffu_data_len) {
> >> >                                 err = -EPERM;
> >> >                                 return err;
> >> >                         }
> >> > "
> >> >
> >> >> +                       /* set device to FFU mode */
> >> >> +                       err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
> >> >> +                               EXT_CSD_MODE_CONFIG, 0x1,
> >> >> +                               card->ext_csd.generic_cmd6_time);
> >> >> +                       if (err) {
> >> >> +                               pr_err("FFU: %s: error %d FFU is
> >> >> + not
> >> > supported\n",
> >> >> +                                       mmc_hostname(card->host), err);
> >> >> +                               goto exit;
> >> >> +                       }
> >> >
> >> >
> >> >
> >> > Checking ffu status in ext_csd should be done even if device does
> >> > not support MODE_OPERATION_CODES So, it's better to move the code
> >> > for checking this value to out of brace for
> >> > FFU_FEATURES(ext_csd[EXT_CSD_FFU_FEATURES]
> >> >
> >> >> +                       /* set ext_csd to install mode */
> >> >> +                       err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
> >> >> +                               EXT_CSD_MODE_OPERATION_CODES,
> >> >> +                               MMC_FFU_INSTALL_SET, timeout);
> >> >> +
> >> >> +                       if (err) {
> >> >> +                               pr_err("FFU: %s: error %d setting
> >> >> install
> >> > mode\n",
> >> >> +                                       mmc_hostname(card->host), err);
> >> >> +                               goto exit;
> >> >> +                       }
> >> >> +
> >> >
> >> > Remove followings
> >> > "
> >> >                        /* read ext_csd */
> >> >                        err = mmc_send_ext_csd(card, ext_csd);
> >> >                        if (err) {
> >> >                                pr_err("FFU: %s: error %d sending
> >> > ext_csd\n",
> >> >                                        mmc_hostname(card->host), err);
> >> >                                goto exit;
> >> >                        }
> >> >                        /* return status */
> >> >                        err = ext_csd[EXT_CSD_FFU_STATUS];
> >> >                        if (err) {
> >> >                                pr_err("FFU: %s: error %d FFU
> >> > install:\n",
> >> >                                        mmc_hostname(card->host), err);
> >> >                                err = -EINVAL;
> >> >                                goto exit;
> >> >                        }
> >> > "
> >> >
> >> >> +               }
> >> >> +
> >> >
> >> > Add followings
> >> > "
> >> >            /* read ext_csd */
> >> >            err = mmc_send_ext_csd(card, ext_csd);
> >> >            if (err) {
> >> >                    pr_err("FFU: %s: error %d sending ext_csd\n",
> >> >                               mmc_hostname(card->host), err);
> >> >                    goto exit;
> >> >            }
> >> >            /* return status */
> >> >            err = ext_csd[EXT_CSD_FFU_STATUS];
> >> >            if (err) {
> >> >                    pr_err("FFU: %s: error %d FFU install:\n",
> >> >                               mmc_hostname(card->host), err);
> >> >                    err = -EINVAL;
> >> >                    goto exit;
> >> >            }
> >> > "
> >> >
> >> >> +exit:
> >> >> +       return err;
> >> >> +}
> >> >> +EXPORT_SYMBOL(mmc_ffu_install);
> >> >> +
> >> >
> >> >
> >> >
> >> > And some device's fw should be transferred with one command.
> >> > They does not support multiple commands for fw transfer.
> >> > For these devices, MMC_IOC_MAX_BYTES should be greater.
> >> >
> >> > diff --git a/include/uapi/linux/mmc/ioctl.h
> >> > b/include/uapi/linux/mmc/ioctl.h index 1f5e689..af9ea62 100644
> >> > --- a/include/uapi/linux/mmc/ioctl.h
> >> > +++ b/include/uapi/linux/mmc/ioctl.h
> >> > @@ -53,5 +53,5 @@ struct mmc_ioc_cmd {
> >> >   * is enforced per ioctl call.  For larger data transfers, use the
> >> > normal
> >> >   * block device operations.
> >> >   */
> >> > -#define MMC_IOC_MAX_BYTES  (512L * 256)
> >> > +#define MMC_IOC_MAX_BYTES  (512L * 1024)
> >> >  #endif /* LINUX_MMC_IOCTL_H */
> >> >
> >> >
> >> > --
> >> > To unsubscribe from this list: send the line "unsubscribe
> >> > linux-mmc" in the body of a message to majordomo@vger.kernel.org
> >> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >> >
> >>
> >> --
> >> To unsubscribe from this list: send the line "unsubscribe linux-mmc"
> >> in the body of a message to majordomo@vger.kernel.org More
> majordomo
> >> info at  http://vger.kernel.org/majordomo-info.html
> >
> >
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the
> body of a message to majordomo@vger.kernel.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html




  parent reply	other threads:[~2014-04-03 12:54 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-31 10:51 [RFC PATCH 1/1 ]mmc: Support-FFU-for-eMMC-v5.0 Seunguk Shin
2014-04-01  4:17 ` Jaehoon Chung
     [not found]   ` <CANEJEGt=5EegY80F3EvsG70poUwVFRjeZT-hUJD8LdULAz=S_w@mail.gmail.com>
2014-04-01 20:30     ` Grant Grundler
2014-04-02  1:05       ` Jaehoon Chung
2014-04-02  1:55         ` Seunguk Shin
2014-04-03 12:54       ` Alex Lemberg [this message]
2014-04-03 14:18 ` Alex Lemberg
  -- strict thread matches above, loose matches on Subject: below --
2014-02-09  9:07 Avi Shchislowski
2014-02-28  2:12 ` Grant Grundler
2014-02-28  2:29   ` Grant Grundler

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-all 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=282CEDFCBC30114F83C499CB8F2ED53337EB7426@SACMBXIP02.sdcorp.global.sandisk.com \
    --to=alex.lemberg@sandisk.com \
    --cc=Avi.Shchislowski@sandisk.com \
    --cc=chris@printf.net \
    --cc=cpgs@samsung.com \
    --cc=grundler@chromium.org \
    --cc=gwendal@chromium.org \
    --cc=jh80.chung@samsung.com \
    --cc=linux-mmc@vger.kernel.org \
    --cc=puthik@chromium.org \
    --cc=seunguk.shin@samsung.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.