Karthik Ramasubramanian has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/63423 )
Change subject: sb600spi.c: Add rev 0x71 as promontory ......................................................................
sb600spi.c: Add rev 0x71 as promontory
Sabrina SoC uses SMBUS revision code 0x71 which behaves exactly as the promontory chip. Hence add 0x71 as promontory.
BUG=b:228238107 TEST=Build and deploy flashrom in Skyrim. Use flashrom to read and write from SPI ROM successfully.
Change-Id: I2408959fbf1c105508f0a12f38418c9606280ab9 Signed-off-by: Karthikeyan Ramasubramanian kramasub@google.com --- M sb600spi.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/23/63423/1
diff --git a/sb600spi.c b/sb600spi.c index b1e140b..70d7c65 100644 --- a/sb600spi.c +++ b/sb600spi.c @@ -132,7 +132,7 @@ * The revisions I have found by searching various lspci * outputs are as follows: 0x4b, 0x59 & 0x61. */ - } else if (rev == 0x4b || rev == 0x51 || rev == 0x59 || rev == 0x61) { + } else if (rev == 0x4b || rev == 0x51 || rev == 0x59 || rev == 0x61 || rev == 0x71) { msg_pdbg("Promontory (rev 0x%02x) detected.\n", rev); return CHIPSET_PROMONTORY; } else {