lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 24 Nov 2010 13:02:52 +0900
From:	Kyungmin Park <kmpark@...radead.org>
To:	Chuanxiao Dong <chuanxiao.dong@...el.com>
Cc:	linux-mmc@...r.kernel.org, cjb@...top.org,
	linux-kernel@...r.kernel.org, alan@...ux.intel.com,
	arjan@...ux.intel.com, hang.yuan@...el.com
Subject: Re: [PATCH v1 3/4]enable HPI for supported card

On Tue, Nov 23, 2010 at 5:44 PM, Chuanxiao Dong
<chuanxiao.dong@...el.com> wrote:
> From 78d7ca58fe6ea3b850ee3682a3552e16fc9faa15 Mon Sep 17 00:00:00 2001
> From: Chuanxiao Dong <chuanxiao.dong@...el.com>
> Date: Tue, 23 Nov 2010 12:09:57 +0800
> Subject: [PATCH 3/4] mmc: Enabled HPI feature
>
> HPI feature is a new feature in eMMC4.41 standard. It will be
> used to interrupt background operations and low priority
> foreground operations
>
> Signed-off-by: Chuanxiao Dong <chuanxiao.dong@...el.com>
> ---
>  drivers/mmc/core/mmc.c   |   32 ++++++++++++++++++++++++++++++++
>  include/linux/mmc/card.h |    2 ++
>  include/linux/mmc/mmc.h  |    2 ++
>  3 files changed, 36 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c
> index 471ed82..c3f8e24 100644
> --- a/drivers/mmc/core/mmc.c
> +++ b/drivers/mmc/core/mmc.c
> @@ -318,6 +318,20 @@ static int mmc_read_ext_csd(struct mmc_card *card)
>                                ext_csd[EXT_CSD_BKOPS_EN];
>                }
>
> +               /* check whether the eMMC card support HPI */
> +               if (ext_csd[EXT_CSD_HPI_FEATURES] & 0x1) {
> +                       card->ext_csd.hpi = 1;
> +                       card->ext_csd.hpi_en =
> +                               ext_csd[EXT_CSD_HPI_MGMT];
> +                       card->ext_csd.hpi_cmd =
> +                               ext_csd[EXT_CSD_HPI_FEATURES] & 0x2;
> +                       if ((card->ext_csd.hpi_cmd != MMC_SEND_STATUS) &&
> +                                       (card->ext_csd.hpi_cmd !=
> +                                        MMC_STOP_TRANSMISSION)) {
> +                               card->ext_csd.hpi = 0;
> +                               card->ext_csd.hpi_en = 0;
> +                       }
> +               }
>        }
>
>        if (ext_csd[EXT_CSD_ERASED_MEM_CONT])
> @@ -510,6 +524,24 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr,
>        }
>
>        /*
> +        * enable HPI feature if eMMC card support
> +        */
> +       if (card->ext_csd.hpi) {
> +               if (!card->ext_csd.hpi_en) {
> +                       err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
> +                                       EXT_CSD_HPI_MGMT, 1);
> +                       if (err && err != -EBADMSG)
> +                               goto free_card;
> +
> +                       if (err) {
> +                               card->ext_csd.hpi_en = 0;
> +                               err = 0;
> +                       } else
> +                               card->ext_csd.bkops_en = 1;
                           should card->ext_csd.hpi_en = 1;

Thank you,
Kyungmin Park
> +               }
> +       }
> +
> +       /*
>         * Activate high speed (if supported)
>         */
>        if ((card->ext_csd.hs_max_dtr != 0) &&
> diff --git a/include/linux/mmc/card.h b/include/linux/mmc/card.h
> index 4142ab5..efb2c56 100644
> --- a/include/linux/mmc/card.h
> +++ b/include/linux/mmc/card.h
> @@ -57,6 +57,8 @@ struct mmc_ext_csd {
>        unsigned int            bkops:1; /* background support bit */
>        unsigned int            bkops_en:1; /* background enable bit */
>        unsigned int            hpi_en:1; /* HPI enable bit */
> +       unsigned int            hpi:1; /* HPI support bit */
> +       unsigned int            hpi_cmd; /* cmd used to for HPI */
>  };
>
>  struct sd_scr {
> diff --git a/include/linux/mmc/mmc.h b/include/linux/mmc/mmc.h
> index ef85e90..ab1eb41 100644
> --- a/include/linux/mmc/mmc.h
> +++ b/include/linux/mmc/mmc.h
> @@ -252,6 +252,7 @@ struct _mmc_csd {
>  * EXT_CSD fields
>  */
>
> +#define EXT_CSD_HPI_MGMT               161     /* R/W */
>  #define EXT_CSD_BKOPS_EN               163     /* R/W */
>  #define EXT_CSD_BKOPS_START            164     /* W */
>  #define EXT_CSD_ERASE_GROUP_DEF                175     /* R/W */
> @@ -270,6 +271,7 @@ struct _mmc_csd {
>  #define EXT_CSD_SEC_FEATURE_SUPPORT    231     /* RO */
>  #define EXT_CSD_TRIM_MULT              232     /* RO */
>  #define EXT_CSD_BKOPS_SUPPORT  502     /* RO */
> +#define EXT_CSD_HPI_FEATURES   503     /* RO */
>
>  /*
>  * EXT_CSD field definitions
> --
> 1.6.6.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ