mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 14:33:18 +02:00
Add support for SFDP (JESD216)
Similar to modules using the opaque programmer framework (e.g. ICH Hardware Sequencing) this uses a template struct flashchip element in flashchips.c with a special probe function that fills the obtained values into that struct. This allows yet unknown SPI chips to be supported (read, erase, write) almost as if it was already added to flashchips.c. Documentation used: http://www.jedec.org/standards-documents/docs/jesd216 (2011-04) W25Q32BV data sheet Revision F (2011-04-01) EN25QH16 data sheet Revision F (2011-06-01) MX25L6436E data sheet Revision 1.8 (2011-12-26) Tested-by: David Hendricks <dhendrix@google.com> on W25Q64CV + dediprog Tested-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> on a 2010 MX25L6436E with preliminary (i.e. incorrect) SFDP implementation + serprog Thanks also to Michael Karcher for his comments and preliminary review! Corresponding to flashrom svn r1500. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
5
spi.h
5
spi.h
@ -40,6 +40,11 @@
|
||||
#define JEDEC_REMS_OUTSIZE 0x04
|
||||
#define JEDEC_REMS_INSIZE 0x02
|
||||
|
||||
/* Read Serial Flash Discoverable Parameters (SFDP) */
|
||||
#define JEDEC_SFDP 0x5a
|
||||
#define JEDEC_SFDP_OUTSIZE 0x05 /* 8b op, 24b addr, 8b dummy */
|
||||
/* JEDEC_SFDP_INSIZE : any length */
|
||||
|
||||
/* Read Electronic Signature */
|
||||
#define JEDEC_RES 0xab
|
||||
#define JEDEC_RES_OUTSIZE 0x04
|
||||
|
Reference in New Issue
Block a user