[flashrom] [PATCH 8/10] 4BA: SFDP 1.6 simulation (for testing purposes)

Boris Baykov dev at borisbaykov.com
Sun Jan 11 00:23:04 CET 2015


To test the parser code for SFDP revision 1.6 (from JESD216B)
I've added some simulation code to sfdp.c. This code builds
fake SFDP 1.6 tables in memory and passes them to the SFDP
parser. Surely this simulation code is switched off by default
and can be activated via define on the top of sfdp.c

Patched files
-------------
sfdp.c
+ added simulation of JESD216B for any flash chips (just for testing)


Signed-off-by: Boris Baykov <dev at borisbaykov.com>, Russia, Jan 2014
---
diff -U 5 -N ./flashrom/sfdp.c ./flashrom-1868-4ba-8/sfdp.c
--- ./flashrom/sfdp.c   2015-01-11 01:55:16.000000000 +0300
+++ ./flashrom-1868-4ba-8/sfdp.c        2015-01-10 21:32:58.000000000 +0300
@@ -34,10 +34,13 @@
 /* Default four bytes addressing behavior: 
    1) 4-Bytes Addressing Mode (FBA_USE_EXT_ADDR_REG_BY_DEFAULT not defined)
    2) 3-bytes mode with Ext.Addr.Register (FBA_USE_EXT_ADDR_REG_BY_DEFAULT defined) */
 /* #define FBA_USE_EXT_ADDR_REG_BY_DEFAULT 1 */
 
+/* For testing purposes only. Tests JESD216B SFDP compliance without proper flash chip */
+/* #define JESD216B_SIMULATION 1 */
+
 static int spi_sfdp_read_sfdp_chunk(struct flashctx *flash, uint32_t address, uint8_t *buf, int len)
 {
        int i, ret;
        uint8_t *newbuf;
        const unsigned char cmd[JEDEC_SFDP_OUTSIZE] = {
@@ -519,10 +522,77 @@
 
        msg_cdbg("done.\n");
        return 0;
 }
 
+#ifdef JESD216B_SIMULATION
+/* This simulation increases size of Basic Flash Parameter Table
+   to have 16 dwords size and fills 16th dword with fake information
+   that is required to test JESD216B compliance. */
+int sfdp_jesd216b_simulation_dw16(uint8_t** ptbuf, uint16_t* plen)
+{
+       uint8_t* tbufsim;
+       uint16_t lensim = 16 * 4;
+
+       tbufsim = malloc(lensim);
+       if (tbufsim == NULL) {
+               msg_gerr("Out of memory!\n");
+               return 1;
+       }
+
+       msg_cdbg("\n=== SIMULATION of JESD216B 16th Dword of Basic Flash Parameter Table\n");
+
+       memset(tbufsim, 0, 16 * 4);
+       memcpy(tbufsim, *ptbuf, min(*plen, 15 * 4));
+
+       tbufsim[(4*10) + 0] = 8 << 4; /* page size = 256 */
+
+       *((uint32_t*)&tbufsim[15 * 4]) = /*JEDEC_BFPT_DW16_ENTER_B7 | */
+                                        JEDEC_BFPT_DW16_ENTER_B7_WE | 
+                                        JEDEC_BFPT_DW16_ENTER_EXTENDED_ADDR_REG /* |
+                                        JEDEC_BFPT_DW16_ENTER_BANK_ADDR_REG_EN_BIT |
+                                        JEDEC_BFPT_DW16_ENTER_NV_CONFIG_REG |
+                                        JEDEC_BFPT_DW16_VENDOR_SET |
+                                        JEDEC_BFPT_DW16_4_BYTES_ADDRESS_ONLY */ ; 
+
+       free(*ptbuf);
+       *ptbuf = tbufsim;
+       *plen = lensim;
+       return 0;
+}
+
+/* This simulation created fake 4-bytes Address Instruction Table
+   with features information to test JESD216B compliance. */
+int sfdp_jesd216b_simulation_4bait(uint8_t** ptbuf, uint16_t* plen)
+{
+       uint8_t* tbufsim;
+       uint16_t lensim = 2 * 4;
+
+       tbufsim = malloc(lensim);
+       if (tbufsim == NULL) {
+               msg_gerr("Out of memory!\n");
+               return 1;
+       }
+
+       msg_cdbg("\n=== SIMULATION of JESD216B 4-bytes Address Instruction Table\n");
+
+       *((uint32_t*)&tbufsim[0]) = JEDEC_4BAIT_READ_SUPPORT /*| 
+                                   JEDEC_4BAIT_PROGRAM_SUPPORT | 
+                                   JEDEC_4BAIT_ERASE_TYPE_1_SUPPORT | 
+                                   JEDEC_4BAIT_ERASE_TYPE_2_SUPPORT | 
+                                   JEDEC_4BAIT_ERASE_TYPE_3_SUPPORT |
+                                   JEDEC_4BAIT_ERASE_TYPE_4_SUPPORT */;
+       *((uint32_t*)&tbufsim[4]) = 0xFFFFFFFF;
+       /* *((uint32_t*)&tbufsim[4]) = 0xFFDC5C21; */
+
+       free(*ptbuf);
+       *ptbuf = tbufsim;
+       *plen = lensim;
+       return 0;
+}
+#endif
+
 int probe_spi_sfdp(struct flashctx *flash)
 {
        int ret = 0;
        uint8_t buf[8];
        uint32_t tmp32;
@@ -643,20 +713,28 @@
                        if (hdrs[i].id != JEDEC_BFPT_ID)
                                msg_cdbg("ID of the mandatory JEDEC SFDP "
                                         "parameter table is not 0xFF00 as"
                                         "demanded by JESD216 (warning only)."
                                         "\n");
+#ifdef JESD216B_SIMULATION
+                       if(!sfdp_jesd216b_simulation_dw16(&tbuf, &len))
+                               sfdp_rev_16 = 1; /* pretend as SFDP rev 1.6 */
+#endif
                        if (hdrs[i].v_major != 0x01) {
                                msg_cdbg("The chip contains an unknown "
                                          "version of the JEDEC flash "
                                          "parameters table, skipping it.\n");
                        } else if (len != 16 * 4 && len != 9 * 4 && len != 4 * 4) {
                                msg_cdbg("Length of the mandatory JEDEC SFDP "
                                         "parameter table is wrong (%d B), "
                                         "skipping it.\n", len);
                        } else if (sfdp_fill_flash(flash->chip, tbuf, len, sfdp_rev_16) == 0)
                                ret = 1;
+#ifdef JESD216B_SIMULATION
+                       if(ret == 1 && !sfdp_jesd216b_simulation_4bait(&tbuf, &len))
+                               sfdp_parse_4ba_table(flash->chip, tbuf, len);
+#endif
                }
                /* JEDEC SFDP 4-byte address instruction table. From SFDP revision 1.6 only.
                   This parsing shoukd be called after basic flash parameter table is parsed. */
                else if(sfdp_rev_16 && hdrs[i].id == JEDEC_4BAIT_ID && ret == 1) {
                        if (hdrs[i].v_major != 0x01) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: flashrom-r1868-4ba-part-8.patch.tar.bz2
Type: application/octet-stream
Size: 2147 bytes
Desc: not available
URL: <http://www.flashrom.org/pipermail/flashrom/attachments/20150111/cd157fb6/attachment.obj>


More information about the flashrom mailing list