public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
From: "Brian T" <btuch@usa.net>
To: <linux-mtd@lists.infradead.org>
Subject: fix for Micron chips read mode
Date: Thu, 18 Mar 2004 10:52:18 -0600	[thread overview]
Message-ID: <025201c40d09$61ae0dc0$fd0ba8c0@briantpc> (raw)

Sending this in again since I think it was missed.  From the CVS I pulled
yesterday (3/18), Micron chips still appear to break.  I took the change
from jedec_probe.c and added an extra comment.  The current CVS breaks
Micron Q-Flash part # MT28F128J3 , and the below patch seems to fix it
because Micron requires an 0xFF for read mode.

Is it possible to add this to CVS?

Thanks,

-Brian


--- chips/cfi_util.c.orig       Tue Feb 17 15:32:24 2004
+++ chips/cfi_util.c    Thu Mar 18 10:11:44 2004
@@ -68,6 +68,14 @@
        /* Make sure it's in read mode */
        cfi_send_gen_cmd(0xf0, 0, base, map, cfi, cfi->device_type, NULL);

+        /* Some misdesigned intel chips do not respond for 0xF0 for a
reset,
+         * so ensure we're in read mode.  Send both the Intel and the AMD
command
+         * for this.  Intel uses 0xff for this, AMD uses 0xff for NOP, so
+         * this should be safe. ALSO Some Intel's Specify 0xFF, and Micron
+         * REQUIRES it.
+         */
+        cfi_send_gen_cmd(0xFF, 0, base, map, cfi, cfi->device_type, NULL);
+
        return extp;
 }

                 reply	other threads:[~2004-03-18 16:52 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='025201c40d09$61ae0dc0$fd0ba8c0@briantpc' \
    --to=btuch@usa.net \
    --cc=linux-mtd@lists.infradead.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