Hi again! Sorry, but my mail'll be greater than simply 'acking'<br><br>r1060 with your patch not working<br><br>Index: flashrom-spi_aai_outsize_fix/spi.h<br>===================================================================<br>--- flashrom-spi_aai_outsize_fix/spi.h    (Revision 1058)<br>+++ flashrom-spi_aai_outsize_fix/spi.h    (Arbeitskopie)<br>@@ -108,15 +108,15 @@<br> /*      JEDEC_READ_INSIZE : any length */<br> <br> /* Write memory byte */<br>-#define JEDEC_BYTE_PROGRAM    0x02<br>+#define JEDEC_BYTE_PROGRAM        0x02<br> #define JEDEC_BYTE_PROGRAM_OUTSIZE    0x05<br> #define JEDEC_BYTE_PROGRAM_INSIZE    0x00<br> <br> /* Write AAI word (SST25VF080B) */<br>-#define JEDEC_AAI_WORD_PROGRAM    0xad<br>-#define JEDEC_AAI_WORD_PROGRAM_OUTSIZE    0x06<br>-#define JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE    0x06<br>-#define JEDEC_AAI_WORD_PROGRAM_INSIZE    0x00<br>+#define JEDEC_AAI_WORD_PROGRAM            0xad<br>+#define JEDEC_AAI_WORD_PROGRAM_OUTSIZE        0x06<br>+#define JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE    0x03<br>+#define JEDEC_AAI_WORD_PROGRAM_INSIZE        0x00<br> <br> /* Error codes */<br> #define SPI_GENERIC_ERROR    -1<br><br><br>r1060 with above patch and following patch also not working:<br><br>Index: spi25.c<br>===================================================================<br>--- spi25.c    (revision 1060)<br>+++ spi25.c    (working copy)<br>@@ -169,6 +169,7 @@<br> <br> int probe_spi_rdid(struct flashchip *flash)<br> {<br>+    spi_write_disable();<br>     return probe_spi_rdid_generic(flash, 3);<br> }<br><br><br><br>but r1060 with all above patches and following patch working:<br><br>Index: flashchips.c<br>===================================================================<br>--- flashchips.c    (revision 1060)<br>+++ flashchips.c    (working copy)<br>@@ -1392,7 +1392,7 @@<br>                 .block_erase = spi_block_erase_c7,<br>             }<br>         },<br>-        .write        = spi_aai_write,<br>+        .write        = spi_chip_write_1,//spi_aai_write,<br>         .read        = read_memmapped,<br>     },<br><br>--<br>    Den_M