All of lore.kernel.org
 help / color / mirror / Atom feed
From: Seunguk Shin <seunguk.shin@samsung.com>
To: linux-mmc@vger.kernel.org, Avi.Shchislowski@sandisk.com,
	chris@printf.net, cpgs@samsung.com
Subject: Re: [RFC PATCH 1/1 ]mmc: Support-FFU-for-eMMC-v5.0
Date: Mon, 31 Mar 2014 19:51:59 +0900	[thread overview]
Message-ID: <001901cf4ccf$3dc64920$b952db60$@samsung.com> (raw)

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"

> +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 */



             reply	other threads:[~2014-03-31 10:52 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-31 10:51 Seunguk Shin [this message]
2014-04-01  4:17 ` [RFC PATCH 1/1 ]mmc: Support-FFU-for-eMMC-v5.0 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
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='001901cf4ccf$3dc64920$b952db60$@samsung.com' \
    --to=seunguk.shin@samsung.com \
    --cc=Avi.Shchislowski@sandisk.com \
    --cc=chris@printf.net \
    --cc=cpgs@samsung.com \
    --cc=linux-mmc@vger.kernel.org \
    /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.