From: Stefan Weil <weil@mail.berlios.de>
To: Michael Walle <michael@walle.cc>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] pflash_cfi01: add device ID read command
Date: Sat, 01 May 2010 08:58:04 +0200 [thread overview]
Message-ID: <4BDBD0FC.7010707@mail.berlios.de> (raw)
In-Reply-To: <201005010019.22643.michael@walle.cc>
Am 01.05.2010 00:19, schrieb Michael Walle:
> Add support to read manufacturer and device ID. For everything else (eg.
> lock bits) 0 is returned.
>
Signed-off-by is missing.
> ---
> hw/pflash_cfi01.c | 20 ++++++++++++++++++++
> 1 files changed, 20 insertions(+), 0 deletions(-)
>
> diff --git a/hw/pflash_cfi01.c b/hw/pflash_cfi01.c
> index dfdced9..2d30968 100644
> --- a/hw/pflash_cfi01.c
> +++ b/hw/pflash_cfi01.c
> @@ -165,6 +165,22 @@ static uint32_t pflash_read (pflash_t *pfl,
> target_phys_addr_t offset,
>
The patch is damaged here. Use "git send-email" to send your patch.
> ret = pfl->status;
> DPRINTF("%s: status %x\n", __func__, ret);
> break;
> + case 0x90:
> + switch (boff) {
> + case 0:
> + ret = pfl->ident[0]<< 8 | pfl->ident[1];
> + DPRINTF("%s: Manufacturer Code %04x\n", __func__, ret);
> + break;
> + case 1:
> + ret = pfl->ident[2]<< 8 | pfl->ident[3];
> + DPRINTF("%s: Device ID Code %04x\n", __func__, ret);
> + break;
> + default:
> + DPRINTF("%s: Read Device Information boff=%x\n", __func__, boff);
> + ret = 0;
> + break;
> + }
> + break;
> case 0x98: /* Query mode */
> if (boff> pfl->cfi_len)
> ret = 0;
> @@ -290,6 +306,10 @@ static void pflash_write(pflash_t *pfl,
> target_phys_addr_t offset,
>
The patch is damaged here.
> DPRINTF("%s: Read status register\n", __func__);
> pfl->cmd = cmd;
> return;
> + case 0x90: /* Read Device ID */
> + DPRINTF("%s: Read Device information\n", __func__);
> + pfl->cmd = cmd;
> + return;
> case 0x98: /* CFI query */
> DPRINTF("%s: CFI query\n", __func__);
> break;
>
Regards,
Stefan
next prev parent reply other threads:[~2010-05-01 6:58 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-04-30 22:19 [Qemu-devel] [PATCH] pflash_cfi01: add device ID read command Michael Walle
2010-05-01 6:58 ` Stefan Weil [this message]
2010-05-01 17:34 ` Michael Walle
2010-05-04 22:02 ` [Qemu-devel] " Michael Walle
2010-05-21 9:57 ` [Qemu-devel] " Aurelien Jarno
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=4BDBD0FC.7010707@mail.berlios.de \
--to=weil@mail.berlios.de \
--cc=michael@walle.cc \
--cc=qemu-devel@nongnu.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.