From: marcin.krzeminski@nokia.com
To: qemu-devel@nongnu.org
Cc: crosthwaitepeter@gmail.com, clg@fr.ibm.com,
pawel.lenkow@itlen.com, marcin.krzeminski@nokia.com
Subject: [Qemu-devel] [PATCH v4 07/11] block: m25p80: Dummy cycles for N25Q256/512
Date: Mon, 22 Feb 2016 09:03:21 +0100 [thread overview]
Message-ID: <1456128205-5092-8-git-send-email-marcin.krzeminski@nokia.com> (raw)
In-Reply-To: <1456128205-5092-1-git-send-email-marcin.krzeminski@nokia.com>
From: Marcin Krzeminski <marcin.krzeminski@nokia.com>
This patch handles dummy cycles.
Signed-off-by: Marcin Krzeminski <marcin.krzeminski@nokia.com>
---
hw/block/m25p80.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/hw/block/m25p80.c b/hw/block/m25p80.c
index 9d5a071..aff28f3 100644
--- a/hw/block/m25p80.c
+++ b/hw/block/m25p80.c
@@ -566,6 +566,10 @@ static void decode_new_cmd(Flash *s, uint32_t value)
case DOR:
case QOR:
s->needed_bytes = get_addr_length(s);
+ if (((s->pi->jedec >> 16) & 0xFF) == JEDEC_NUMONYX) {
+ /* Dummy cycles modeled with bytes writes instead of bits */
+ s->needed_bytes += extract32(s->volatile_cfg, 4, 4);
+ }
s->pos = 0;
s->len = 0;
s->state = STATE_COLLECTING_DATA;
@@ -579,6 +583,8 @@ static void decode_new_cmd(Flash *s, uint32_t value)
break;
case JEDEC_NUMONYX:
s->needed_bytes = get_addr_length(s);
+ /* Dummy cycles modeled with bytes writes instead of bits */
+ s->needed_bytes += extract32(s->volatile_cfg, 4, 4);
break;
default:
s->needed_bytes = 5;
@@ -596,6 +602,8 @@ static void decode_new_cmd(Flash *s, uint32_t value)
break;
case JEDEC_NUMONYX:
s->needed_bytes = get_addr_length(s);
+ /* Dummy cycles modeled with bytes writes instead of bits */
+ s->needed_bytes += extract32(s->volatile_cfg, 4, 4);
break;
default:
s->needed_bytes = 8;
--
2.5.0
next prev parent reply other threads:[~2016-02-22 8:03 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-22 8:03 [Qemu-devel] [PATCH v4 00/11] Support for N25Q256/512 and AT25128/256 marcin.krzeminski
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 01/11] block: m25p80: Removed unused variable marcin.krzeminski
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 02/11] block: m25p80: RESET_ENABLE and RESET_MEMORY commnads marcin.krzeminski
2016-03-17 17:42 ` Peter Crosthwaite
2016-03-17 21:54 ` [Qemu-devel] ODP: " Krzeminski, Marcin (Nokia - PL/Wroclaw)
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 03/11] block: m25p80: Widen flags variable marcin.krzeminski
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 04/11] block: m25p80: Extend address mode marcin.krzeminski
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 05/11] block: m25p80: 4byte " marcin.krzeminski
2016-03-17 17:27 ` Peter Crosthwaite
2016-03-18 13:00 ` Krzeminski, Marcin (Nokia - PL/Wroclaw)
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 06/11] block: m25p80: Add configuration registers marcin.krzeminski
2016-03-17 17:24 ` Peter Crosthwaite
2016-03-17 21:46 ` [Qemu-devel] ODP: " Krzeminski, Marcin (Nokia - PL/Wroclaw)
2016-02-22 8:03 ` marcin.krzeminski [this message]
2016-03-17 17:30 ` [Qemu-devel] [PATCH v4 07/11] block: m25p80: Dummy cycles for N25Q256/512 Peter Crosthwaite
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 08/11] block: m25p80: Fast read and 4bytes commands marcin.krzeminski
2016-03-17 17:35 ` Peter Crosthwaite
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 09/11] block: m25p80: Implemented FSR register marcin.krzeminski
2016-03-17 17:37 ` Peter Crosthwaite
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 10/11] block: m25p80: n25q256a/n25q512a models marcin.krzeminski
2016-02-22 8:03 ` [Qemu-devel] [PATCH v4 11/11] block: m25p80: at25128a/at25256a models marcin.krzeminski
2016-03-17 17:39 ` Peter Crosthwaite
2016-03-17 21:51 ` [Qemu-devel] ODP: " Krzeminski, Marcin (Nokia - PL/Wroclaw)
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=1456128205-5092-8-git-send-email-marcin.krzeminski@nokia.com \
--to=marcin.krzeminski@nokia.com \
--cc=clg@fr.ibm.com \
--cc=crosthwaitepeter@gmail.com \
--cc=pawel.lenkow@itlen.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).