From: Andrzej Zaborowski <balrogg@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [4930] Add OneNAND Unlock All command (Kyungmin Park).
Date: Wed, 23 Jul 2008 16:35:45 +0000 [thread overview]
Message-ID: <E1KLhJZ-0001f9-OO@cvs.savannah.gnu.org> (raw)
Revision: 4930
http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4930
Author: balrog
Date: 2008-07-23 16:35:45 +0000 (Wed, 23 Jul 2008)
Log Message:
-----------
Add OneNAND Unlock All command (Kyungmin Park).
Modified Paths:
--------------
trunk/hw/onenand.c
Modified: trunk/hw/onenand.c
===================================================================
--- trunk/hw/onenand.c 2008-07-23 16:16:31 UTC (rev 4929)
+++ trunk/hw/onenand.c 2008-07-23 16:35:45 UTC (rev 4930)
@@ -355,6 +355,21 @@
s->wpstatus = s->blockwp[b] = ONEN_LOCK_UNLOCKED;
}
break;
+ case 0x27: /* Unlock All NAND array blocks */
+ s->intstatus |= ONEN_INT;
+
+ for (b = 0; b < s->blocks; b ++) {
+ if (b >= s->blocks) {
+ s->status |= ONEN_ERR_CMD;
+ break;
+ }
+ if (s->blockwp[b] == ONEN_LOCK_LOCKTIGHTEN)
+ break;
+
+ s->wpstatus = s->blockwp[b] = ONEN_LOCK_UNLOCKED;
+ }
+ break;
+
case 0x2a: /* Lock NAND array block(s) */
s->intstatus |= ONEN_INT;
reply other threads:[~2008-07-23 16:35 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=E1KLhJZ-0001f9-OO@cvs.savannah.gnu.org \
--to=balrogg@gmail.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).