From: Jaehoon Chung <jh80.chung@samsung.com>
To: Mario Schuknecht <mario.schuknecht@dresearch-fe.de>
Cc: cjb@laptop.org, linux-mmc@vger.kernel.org
Subject: Re: [PATCH] mmc-utils: small fixes of output
Date: Thu, 16 May 2013 07:17:11 +0900 [thread overview]
Message-ID: <51940967.8020309@samsung.com> (raw)
In-Reply-To: <1368599284-28499-1-git-send-email-mario.schuknecht@dresearch-fe.de>
Looks good to me.
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
On 05/15/2013 03:28 PM, Mario Schuknecht wrote:
> Improve "extcsd read" output of the registers.
> Right-shift by 3 of EXT_CSD_BOOT_CFG_EN bits.
> Expand the EXT_CSD_BOOT_CFG_ACC bit mask to 0x7.
> Add case 3 RPMB partition.
>
> Signed-off-by: Mario Schuknecht <mario.schuknecht@dresearch-fe.de>
> ---
> mmc.h | 2 +-
> mmc_cmds.c | 7 +++++--
> 2 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/mmc.h b/mmc.h
> index c863751..a01c079 100644
> --- a/mmc.h
> +++ b/mmc.h
> @@ -70,7 +70,7 @@
> #define EXT_CSD_BOOT_INFO_ALT (1<<0)
> #define EXT_CSD_BOOT_CFG_ACK (1<<6)
> #define EXT_CSD_BOOT_CFG_EN (0x38)
> -#define EXT_CSD_BOOT_CFG_ACC (0x03)
> +#define EXT_CSD_BOOT_CFG_ACC (0x07)
> #define EXT_CSD_RST_N_EN_MASK (0x03)
> #define EXT_CSD_HW_RESET_EN (0x01)
> #define EXT_CSD_HW_RESET_DIS (0x02)
> diff --git a/mmc_cmds.c b/mmc_cmds.c
> index b407f65..96a1cb5 100644
> --- a/mmc_cmds.c
> +++ b/mmc_cmds.c
> @@ -613,7 +613,7 @@ int do_read_extcsd(int nargs, char **argv)
> ext_csd[181]);
> reg = ext_csd[EXT_CSD_BOOT_CFG];
> printf("Boot configuration bytes [PARTITION_CONFIG: 0x%02x]\n", reg);
> - switch (reg & EXT_CSD_BOOT_CFG_EN) {
> + switch ((reg & EXT_CSD_BOOT_CFG_EN)>>3) {
> case 0x0:
> printf(" Not boot enable\n");
> break;
> @@ -637,8 +637,11 @@ int do_read_extcsd(int nargs, char **argv)
> case 0x2:
> printf(" R/W Boot Partition 2\n");
> break;
> + case 0x3:
> + printf(" R/W Replay Protected Memory Block (RPMB)\n");
> + break;
> default:
> - printf(" Access to General Purpuse partition %d\n",
> + printf(" Access to General Purpose partition %d\n",
> (reg & EXT_CSD_BOOT_CFG_ACC) - 3);
> break;
> }
>
next prev parent reply other threads:[~2013-05-15 22:17 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-15 6:28 [PATCH] mmc-utils: small fixes of output Mario Schuknecht
2013-05-15 22:17 ` Jaehoon Chung [this message]
2013-06-27 14:35 ` Chris Ball
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=51940967.8020309@samsung.com \
--to=jh80.chung@samsung.com \
--cc=cjb@laptop.org \
--cc=linux-mmc@vger.kernel.org \
--cc=mario.schuknecht@dresearch-fe.de \
/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.