Am 15.07.2012 21:28 schrieb Idwer Vollering:
> 2012/6/13 Carl-Daniel Hailfinger <[email protected]>:
>> > Bus Pirate Firmware v5.5 and newer support a new SPI binary mode. Use it
>> > if available.
>> > Bus Pirate Firmware v6.1 and older have broken (too slow) SPI clock
>> > divisor for any requested speed above 2 MHz. Force a downgrade to 2 MHz
>> > for affected firmware versions.
>> > flashrom will recommend to upgrade the Bus Pirate Firmware if it is
>> > older than v6.2.
>> >
>> > Somewhat tested, code still needs to be cleaned up in a few spots.
> Tested with reading/erasing/writing a MX25L1605 on a Thinkpad X60
> mainboard, using buspirate hardware v3.a running firmware v6.2-test
> that can be found here (bp-spifix.zip):
> http://dangerousprototypes.com/forum/viewtopic.php?f=40&t=3864&sid=426d32139bbbd6fa5abf86ef084cfe8c&start=15#p41505

Thanks for the comments! There are indeed quite a few magic constants,
and replacing them with #defines makes sense. That's something I'd leave
to another patch, though.
New version.

Support the new fast SPI mode present in Bus Pirate firmware v5.5 or newer.

Signed-off-by: Carl-Daniel Hailfinger <[email protected]>

Index: flashrom-buspirate_newcommands/buspirate_spi.c
===================================================================
--- flashrom-buspirate_newcommands/buspirate_spi.c      (Revision 1620)
+++ flashrom-buspirate_newcommands/buspirate_spi.c      (Arbeitskopie)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the flashrom project.
  *
- * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger
+ * Copyright (C) 2009, 2010, 2011, 2012 Carl-Daniel Hailfinger
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -129,14 +129,16 @@
        return ret;
 }
 
-static int buspirate_spi_send_command(struct flashctx *flash, unsigned int 
writecnt, unsigned int readcnt,
-                                     const unsigned char *writearr, unsigned 
char *readarr);
+static int buspirate_spi_send_command_v1(struct flashctx *flash, unsigned int 
writecnt, unsigned int readcnt,
+                                        const unsigned char *writearr, 
unsigned char *readarr);
+static int buspirate_spi_send_command_v2(struct flashctx *flash, unsigned int 
writecnt, unsigned int readcnt,
+                                        const unsigned char *writearr, 
unsigned char *readarr);
 
-static const struct spi_programmer spi_programmer_buspirate = {
+static struct spi_programmer spi_programmer_buspirate = {
        .type           = SPI_CONTROLLER_BUSPIRATE,
-       .max_data_read  = 12,
-       .max_data_write = 12,
-       .command        = buspirate_spi_send_command,
+       .max_data_read  = MAX_DATA_UNSPECIFIED,
+       .max_data_write = MAX_DATA_UNSPECIFIED,
+       .command        = NULL,
        .multicommand   = default_spi_send_multicommand,
        .read           = default_spi_read,
        .write_256      = default_spi_write_256,
@@ -253,7 +255,11 @@
        if (register_shutdown(buspirate_spi_shutdown, NULL))
                return 1;
 
-       /* This is the brute force version, but it should work. */
+       /* This is the brute force version, but it should work.
+        * It is likely to fail if a previous flashrom run was aborted during a 
write with the new SPI commands
+        * in firmware v5.5 because that firmware may wait for up to 4096 bytes 
of input before responding to
+        * 0x00 again. The obvious workaround (sending 4096 bytes of \0) may 
cause significant startup delays.
+        */
        for (i = 0; i < 20; i++) {
                /* Enter raw bitbang mode */
                bp_commbuf[0] = 0x00;
@@ -327,6 +333,27 @@
                return SPI_PROGRAMMER_ERROR;
        }
 
+       /* Use fast SPI mode in firmware 5.5 and newer. */
+       if (BP_FWVERSION(fw_version_major, fw_version_minor) >= BP_FWVERSION(5, 
5)) {
+               msg_pdbg("Using SPI command set v2.\n"); 
+               /* Sensible default buffer size. */
+               if (buspirate_commbuf_grow(260 + 5))
+                       return ERROR_OOM;
+               spi_programmer_buspirate.max_data_read = 2048;
+               spi_programmer_buspirate.max_data_write = 256;
+               spi_programmer_buspirate.command = 
buspirate_spi_send_command_v2;
+       } else {
+               msg_pinfo("Bus Pirate firmware 5.4 and older does not support 
fast SPI access.\n");
+               msg_pinfo("Reading/writing a flash chip may take hours.\n");
+               msg_pinfo("It is recommended to upgrade to firmware 5.5 or 
newer.\n");
+               /* Sensible default buffer size. */
+               if (buspirate_commbuf_grow(16 + 3))
+                       return ERROR_OOM;
+               spi_programmer_buspirate.max_data_read = 12;
+               spi_programmer_buspirate.max_data_write = 12;
+               spi_programmer_buspirate.command = 
buspirate_spi_send_command_v1;
+       }
+
        /* Workaround for broken speed settings in firmware 6.1 and older. */
        if (BP_FWVERSION(fw_version_major, fw_version_minor) < BP_FWVERSION(6, 
2))
                if (spispeed > 0x4) {
@@ -412,11 +439,8 @@
        return 0;
 }
 
-static int buspirate_spi_send_command(struct flashctx *flash,
-                                     unsigned int writecnt,
-                                     unsigned int readcnt,
-                                     const unsigned char *writearr,
-                                     unsigned char *readarr)
+static int buspirate_spi_send_command_v1(struct flashctx *flash, unsigned int 
writecnt, unsigned int readcnt,
+                                        const unsigned char *writearr, 
unsigned char *readarr)
 {
        unsigned int i = 0;
        int ret = 0;
@@ -467,3 +491,43 @@
 
        return ret;
 }
+
+static int buspirate_spi_send_command_v2(struct flashctx *flash, unsigned int 
writecnt, unsigned int readcnt,
+                                        const unsigned char *writearr, 
unsigned char *readarr)
+{
+       int i = 0, ret = 0;
+
+       if (writecnt > 4096 || readcnt > 4096 || (readcnt + writecnt) > 4096)
+               return SPI_INVALID_LENGTH;
+
+       /* 5 bytes extra for command, writelen, readlen.
+        * 1 byte extra for Ack/Nack.
+        */
+       if (buspirate_commbuf_grow(max(writecnt + 5, readcnt + 1)))
+               return ERROR_OOM;
+
+       /* Combined SPI write/read. */
+       bp_commbuf[i++] = 0x04;
+       bp_commbuf[i++] = (writecnt >> 8) & 0xff;
+       bp_commbuf[i++] = writecnt & 0xff;
+       bp_commbuf[i++] = (readcnt >> 8) & 0xff;
+       bp_commbuf[i++] = readcnt & 0xff;
+       memcpy(bp_commbuf + i, writearr, writecnt);
+       
+       ret = buspirate_sendrecv(bp_commbuf, i + writecnt, 1 + readcnt);
+
+       if (ret) {
+               msg_perr("Bus Pirate communication error!\n");
+               return SPI_GENERIC_ERROR;
+       }
+
+       if (bp_commbuf[0] != 0x01) {
+               msg_perr("Protocol error while sending SPI write/read!\n");
+               return SPI_GENERIC_ERROR;
+       }
+
+       /* Skip Ack. */
+       memcpy(readarr, bp_commbuf + 1, readcnt);
+
+       return ret;
+}

-- 
http://www.hailfinger.org/


_______________________________________________
flashrom mailing list
[email protected]
http://www.flashrom.org/mailman/listinfo/flashrom

Reply via email to