Nico Huber would like Uwe Hermann to review this change.

View Change

Add support for the Macronix MX28F2000P chip (256KB parallel)

On Fri, Sep 02, 2011 at 10:51:43PM +0200, Uwe Hermann wrote:
> See patch for a first attempt to support the Macronix MX28F2000P.

Updated patch which now works.

Thanks to Carl-Daniel for pointing out that you need two 0x90 commands,
one per ID byte you want to read. Thanks Meteo0 on IRC for testing the
patch on his hardware, and verifying that the board always provides 12V
on the VPP pin (which is why write/erase work).

The patch now does the work without major hacks. Unneeded delays are
removed, incorrect comments too.

Uwe.

Add support for the Macronix MX28F2000P chip (256KB parallel).

This 256KB chip has a similar, but not identical, command set to the
SST SST28SF040A chip. It features a chip erase, block erase, byte write,
chip ID, and reset command.

In contrast to the SST28SF040A, the reset command is 0xff, 0xff (instead of
only one 0xff), and the write command is 0x40 (instead of 0x10).
No locking/unlocking (protect/unprotect) commands are documented, it seems.

Finally, unlike the SST28SF040A, the MX28F2000P requires 12V for write and
erase operations. Only read/ID is supported with the usual 5V. On the tested
board the 12V are always supplied on the VPP pin (confirmed via multimeter)
though, so that's not a problem there.

All operations were successfully tested, thus mark the chip as OK.

Write log:
http://paste.flashrom.org/view.php?id=804

Change-Id: Id0c48d7cb3055a2c23bb9c601b73132390de1688
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Tested-by: Max Varentsov <admin@phpcode.us> (Meteo0 on IRC)
---
M chipdrivers.h
M flashchips.c
M flashchips.h
M sst28sf040.c
4 files changed, 101 insertions(+), 8 deletions(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/96/25096/1
diff --git a/chipdrivers.h b/chipdrivers.h
index 2746e52..b8b1485 100644
--- a/chipdrivers.h
+++ b/chipdrivers.h
@@ -123,6 +123,10 @@
int write_28sf040(struct flashchip *flash, uint8_t *buf, int start, int len);
int unprotect_28sf040(struct flashchip *flash);
int protect_28sf040(struct flashchip *flash);
+int probe_mx28f2000p(struct flashchip *flash);
+int write_mx28f2000p(struct flashchip *flash, uint8_t *src, int start, int len);
+int erase_sector_mx28f2000p(struct flashchip *flash, unsigned int address,
+ unsigned int sector_size);

/* sst49lfxxxc.c */
int erase_sector_49lfxxxc(struct flashchip *flash, unsigned int address, unsigned int sector_size);
diff --git a/flashchips.c b/flashchips.c
index 7ce4b58..7da7fad 100644
--- a/flashchips.c
+++ b/flashchips.c
@@ -4482,6 +4482,38 @@

{
.vendor = "Macronix",
+ .name = "MX28F2000P",
+ .bustype = BUS_PARALLEL,
+ .manufacture_id = MACRONIX_ID,
+ .model_id = MACRONIX_MX28F2000P,
+ .total_size = 256,
+ .page_size = 0, /* unused */
+ .feature_bits = 0,
+ .tested = TEST_OK_PREW,
+ .probe = probe_mx28f2000p,
+ .probe_timing = TIMING_ZERO,
+ .block_erasers =
+ {
+ {
+ .eraseblocks = {
+ {4 * 1024, 4},
+ {16 * 1024, 14},
+ {4 * 1024, 4},
+ },
+ .block_erase = erase_sector_mx28f2000p,
+ }, {
+ .eraseblocks = { {256 * 1024, 1} },
+ .block_erase = erase_chip_28sf040,
+ }
+ },
+ .unlock = NULL, /* No locking mechanism available. */
+ .write = write_mx28f2000p,
+ .read = read_memmapped,
+ .voltage = {4500, 5500}, /* Needs 12V for write/erase! */
+ },
+
+ {
+ .vendor = "Macronix",
.name = "MX29F001B",
.bustype = BUS_PARALLEL,
.manufacture_id = MACRONIX_ID,
diff --git a/flashchips.h b/flashchips.h
index 03efb86..f6624dc 100644
--- a/flashchips.h
+++ b/flashchips.h
@@ -369,6 +369,7 @@
#define MACRONIX_MX25L1635D 0x2415
#define MACRONIX_MX25L1635E 0x2515 /* MX25L1635{E} */
#define MACRONIX_MX25L3235D 0x5E16 /* MX25L3225D/MX25L3235D/MX25L3237D */
+#define MACRONIX_MX28F2000P 0x2a
#define MACRONIX_MX29F001B 0x19
#define MACRONIX_MX29F001T 0x18
#define MACRONIX_MX29F002B 0x34 /* Same as MX29F002NB; N has reset pin n/c. */
diff --git a/sst28sf040.c b/sst28sf040.c
index d621cc7..cf3ba84 100644
--- a/sst28sf040.c
+++ b/sst28sf040.c
@@ -26,6 +26,7 @@
#define AUTO_PG_ERASE1 0x20
#define AUTO_PG_ERASE2 0xD0
#define AUTO_PGRM 0x10
+#define AUTO_PGRM2 0x40 /* Used on MX28F2000P */
#define CHIP_ERASE 0x30
#define RESET 0xFF
#define READ_ID 0x90
@@ -60,7 +61,8 @@
return 0;
}

-int erase_sector_28sf040(struct flashchip *flash, unsigned int address, unsigned int sector_size)
+static int erase_sector_28sf040_generic(struct flashchip *flash,
+ unsigned int address, unsigned int sector_size, int toggle_delay)
{
chipaddr bios = flash->virtual_memory;

@@ -68,38 +70,65 @@
chip_writeb(AUTO_PG_ERASE1, bios);
chip_writeb(AUTO_PG_ERASE2, bios + address);

- /* wait for Toggle bit ready */
+ programmer_delay(toggle_delay);
+
+ /* Wait for toggle bit ready. */
toggle_ready_jedec(bios);

/* FIXME: Check the status register for errors. */
return 0;
}

+int erase_sector_28sf040(struct flashchip *flash, unsigned int address,
+ unsigned int sector_size)
+{
+ return erase_sector_28sf040_generic(flash, address, sector_size, 0);
+}
+
+int erase_sector_mx28f2000p(struct flashchip *flash, unsigned int address,
+ unsigned int sector_size)
+{
+ /* Needs 200us delay before the toggle bit checking begins. */
+ return erase_sector_28sf040_generic(flash, address, sector_size, 200);
+}
+
/* chunksize is 1 */
-int write_28sf040(struct flashchip *flash, uint8_t *src, int start, int len)
+static int write_28sf040_generic(struct flashchip *flash, uint8_t *src,
+ int start, int len, uint8_t auto_pgrm)
{
int i;
chipaddr bios = flash->virtual_memory;
chipaddr dst = flash->virtual_memory + start;

for (i = 0; i < len; i++) {
- /* transfer data from source to destination */
+ /* Transfer data from source to destination. */
if (*src == 0xFF) {
dst++, src++;
- /* If the data is 0xFF, don't program it */
+ /* If the data is 0xFF, don't program it. */
continue;
}
- /*issue AUTO PROGRAM command */
- chip_writeb(AUTO_PGRM, dst);
+
+ /* Issue auto program command. */
+ chip_writeb(auto_pgrm, dst);
chip_writeb(*src++, dst++);

- /* wait for Toggle bit ready */
+ /* Wait for Toggle bit ready. */
toggle_ready_jedec(bios);
}

return 0;
}

+int write_28sf040(struct flashchip *flash, uint8_t *src, int start, int len)
+{
+ return write_28sf040_generic(flash, src, start, len, AUTO_PGRM);
+}
+
+int write_mx28f2000p(struct flashchip *flash, uint8_t *src, int start, int len)
+{
+ return write_28sf040_generic(flash, src, start, len, AUTO_PGRM2);
+}
+
static int erase_28sf040(struct flashchip *flash)
{
chipaddr bios = flash->virtual_memory;
@@ -123,3 +152,30 @@
}
return erase_28sf040(flash);
}
+
+int probe_mx28f2000p(struct flashchip *flash)
+{
+ chipaddr bios = flash->virtual_memory;
+ uint8_t id1, id2;
+
+ /* Reset to get a clean state. */
+ chip_writeb(0xff, bios);
+ chip_writeb(0xff, bios);
+
+ /* Get the vendor and device ID. One 0x90 command per byte needed! */
+ chip_writeb(0x90, bios);
+ id1 = chip_readb(bios);
+ chip_writeb(0x90, bios);
+ id2 = chip_readb(bios + 0x01);
+
+ msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, id1, id2);
+
+ if (!oddparity(id1))
+ msg_cdbg(", id1 parity violation");
+
+ msg_cdbg("\n");
+ if (id1 != flash->manufacture_id || id2 != flash->model_id)
+ return 0;
+
+ return 1;
+}

To view, visit change 25096. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Id0c48d7cb3055a2c23bb9c601b73132390de1688
Gerrit-Change-Number: 25096
Gerrit-PatchSet: 1
Gerrit-Owner: Nico Huber <nico.h@gmx.de>
Gerrit-Reviewer: Uwe Hermann <uwe@hermann-uwe.de>