Urja Rannikko | f3196df | 2009-07-21 13:02:59 +0000 | [diff] [blame] | 1 | Serial Flasher Protocol Specification - version 1 (0x01 return value == 1) |
| 2 | |
| 3 | Command And Answer Sequence - all commands give an answer. |
| 4 | PC: COMMAND(8bit) <parameters determined by opcode> |
| 5 | DEV: ACK/NAK(8bit) <OPTIONAL RETURN BYTES (only if ACK)> / nothing |
| 6 | Command 0x10 (SYNCNOP) has a special return of NAK+ACK for synchronization. |
| 7 | |
| 8 | ACK = 0x06 |
| 9 | NAK = 0x15 |
| 10 | |
| 11 | All multibyte values are little-endian. Addresses and lengths are 24-bit. |
| 12 | |
| 13 | COMMAND Description Parameters Return Value |
| 14 | 0x00 NOP none ACK |
| 15 | 0x01 Query programmer iface version none ACK + 16bit version (nonzero) |
| 16 | 0x02 Query supported commands bitmap none ACK + 32 bytes (256 bits) of supported cmds flags |
| 17 | 0x03 Query programmer name none ACK + 16 bytes string (null padding) / NAK |
| 18 | 0x04 Query serial buffer size none ACK + 16bit size / NAK |
| 19 | 0x05 Query supported bustypes none ACK + 8-bit flags (as per flashrom) / NAK |
| 20 | 0x06 Query connected address lines none ACK + 8bit line count / NAK |
| 21 | 0x07 Query operation buffer size none ACK + 16bit size / NAK |
| 22 | 0x08 Query write-n maximum data len none ACK + 24bit maximum length / NAK |
| 23 | 0x09 Read byte 24-bit addr ACK + BYTE / NAK |
| 24 | 0x0A Read n bytes 24-bit addr + 24-bit length ACK + length bytes / NAK |
| 25 | 0x0B Initialize operation buffer none ACK / NAK |
| 26 | 0x0C Write to opbuf: Write byte 24-bit addr + 8-bit byte ACK / NAK (NOTE: takes 5 bytes in opbuf) |
| 27 | 0x0D Write to opbuf: Write n 24-bit length + 24-bit addr + ACK / NAK (NOTE: takes 7+n bytes in opbuf) |
| 28 | + length bytes of data |
| 29 | 0x0E Write to opbuf: delay 32-bit usecs ACK / NAK (NOTE: takes 5 bytes in opbuf) |
| 30 | 0x0F Execute operation buffer none ACK / NAK |
| 31 | 0x10 Sync NOP none NAK + ACK (for synchronization) |
| 32 | 0x11 Query maximum read-n length none ACK + 24-bit length (0==2^24) / NAK |
| 33 | 0x12 Set used bustype 8-bit flags (as with 0x05) ACK / NAK |
| 34 | 0x?? unimplemented command - invalid. |
| 35 | |
| 36 | |
| 37 | Additional information of the above commands: |
| 38 | About unimplemented commands / startup sequence: |
| 39 | Only commands allowed to be used without checking anything are 0x00,0x10 and 0x01 (NOP,SYNCNOP,Q_IFACE). |
| 40 | If 0x01 doesn't return 1, dont do anything if you dont support a newer protocol. |
| 41 | Then, check support for any other opcode (except 0x02) by using 0x02 (Q_CMDMAP). |
| 42 | 0x02 (Q_CMDMAP): |
| 43 | The map's bits are mapped as follows: |
| 44 | cmd 0 support: byte 0 bit 0 |
| 45 | cmd 1 support: byte 0 bit 1 |
| 46 | cmd 7 support: byte 0 bit 7 |
| 47 | cmd 8 support: byte 1 bit 0, and so on. |
| 48 | 0x04 (Q_SERBUF): |
Uwe Hermann | 4e3d0b3 | 2010-03-25 23:18:41 +0000 | [diff] [blame] | 49 | If the programmer has a guaranteed working flow control, |
Urja Rannikko | f3196df | 2009-07-21 13:02:59 +0000 | [diff] [blame] | 50 | it should return a big bogus value - eg 0xFFFF. |
| 51 | 0x05 (Q_BUSTYPE): |
| 52 | The bit's are defined as follows: |
| 53 | bit 0: PARALLEL, bit 1: LPC, bit 2: FWH, bit 3: SPI (if ever supported). |
| 54 | 0x06 (Q_CHIPSIZE): |
| 55 | Only applicable to parallel programmers. |
Uwe Hermann | 4e3d0b3 | 2010-03-25 23:18:41 +0000 | [diff] [blame] | 56 | An LPC/FWH/SPI-programmer can report this as not supported in the command bitmap. |
Urja Rannikko | f3196df | 2009-07-21 13:02:59 +0000 | [diff] [blame] | 57 | 0x08 (Q_WRNMAXLEN): |
| 58 | If a programmer reports a bigger maximum write-n length than the serial buffer size, |
| 59 | it is assumed that the programmer can process the data fast enough to take in the |
| 60 | reported maximum write-n without problems. |
| 61 | 0x0F (O_EXEC): |
| 62 | Execute operation buffer will also clear it, regardless of the return value. |
| 63 | 0x11 (Q_RDNMAXLEN): |
| 64 | If this command is not supported, assume return of 0 (2^24). |
| 65 | 0x12 (S_BUSTYPE): |
| 66 | Set's the used bustype if the programmer can support more than one flash protocol. |
| 67 | Sending a byte with more than 1 bit set will make the programmer decide among them |
| 68 | on it's own. Bit values as with Q_BUSTYPE. |
| 69 | About mandatory commands: |
| 70 | The only truly mandatory commands for any device are 0x00, 0x01, 0x02 and 0x10, |
| 71 | but one can't really do anything with these commands. |
| 72 | Support for the following commands is necessary for flashrom to operate properly: |
| 73 | S_CMD_Q_SERBUF, S_CMD_Q_OPBUF, S_CMD_Q_WRNMAXLEN, S_CMD_R_BYTE, |
| 74 | S_CMD_R_NBYTES, S_CMD_O_INIT, S_CMD_O_WRITEB, S_CMD_O_WRITEN, |
| 75 | S_CMD_O_DELAY, S_CMD_O_EXEC. |
| 76 | In addition, support for these commands is recommended: |
| 77 | S_CMD_Q_PGMNAME, S_CMD_Q_BUSTYPE, S_CMD_Q_CHIPSIZE (if parallel). |
| 78 | |
| 79 | |
| 80 | This define listing should help C coders - (it's here to be the single source for copying - will be a .h someday i think) |
| 81 | #define S_ACK 0x06 |
| 82 | #define S_NAK 0x15 |
| 83 | #define S_CMD_NOP 0x00 /* No operation */ |
| 84 | #define S_CMD_Q_IFACE 0x01 /* Query interface version */ |
| 85 | #define S_CMD_Q_CMDMAP 0x02 /* Query supported commands bitmap */ |
| 86 | #define S_CMD_Q_PGMNAME 0x03 /* Query programmer name */ |
| 87 | #define S_CMD_Q_SERBUF 0x04 /* Query Serial Buffer Size */ |
| 88 | #define S_CMD_Q_BUSTYPE 0x05 /* Query supported bustypes */ |
| 89 | #define S_CMD_Q_CHIPSIZE 0x06 /* Query supported chipsize (2^n format) */ |
| 90 | #define S_CMD_Q_OPBUF 0x07 /* Query operation buffer size */ |
Cristian Măgherușan-Stanciu | 9932c7b | 2011-07-07 19:56:58 +0000 | [diff] [blame] | 91 | #define S_CMD_Q_WRNMAXLEN 0x08 /* Query Write to opbuf: Write-N maximum length */ |
Urja Rannikko | f3196df | 2009-07-21 13:02:59 +0000 | [diff] [blame] | 92 | #define S_CMD_R_BYTE 0x09 /* Read a single byte */ |
| 93 | #define S_CMD_R_NBYTES 0x0A /* Read n bytes */ |
| 94 | #define S_CMD_O_INIT 0x0B /* Initialize operation buffer */ |
| 95 | #define S_CMD_O_WRITEB 0x0C /* Write opbuf: Write byte with address */ |
| 96 | #define S_CMD_O_WRITEN 0x0D /* Write to opbuf: Write-N */ |
| 97 | #define S_CMD_O_DELAY 0x0E /* Write opbuf: udelay */ |
| 98 | #define S_CMD_O_EXEC 0x0F /* Execute operation buffer */ |
| 99 | #define S_CMD_SYNCNOP 0x10 /* Special no-operation that returns NAK+ACK */ |
| 100 | #define S_CMD_Q_RDNMAXLEN 0x11 /* Query read-n maximum length */ |
| 101 | #define S_CMD_S_BUSTYPE 0x12 /* Set used bustype(s). */ |