1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-28 23:43:42 +02:00

sb600spi.c: Detect rev 0x51 as Promontory

As reported on the mailing list.

Change-Id: Iff8340633021fde1dc32572ab5f5da85df5d9048
Signed-off-by: Edward O'Callaghan <quasisec@google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/48779
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Edward O'Callaghan 2020-12-21 12:29:44 +11:00 committed by Edward O'Callaghan
parent 6cdde54ea0
commit 55583c0d9d

View File

@ -129,7 +129,7 @@ static enum amd_chipset determine_generation(struct pci_dev *dev)
* The revisions I have found by searching various lspci * The revisions I have found by searching various lspci
* outputs are as follows: 0x4b, 0x59 & 0x61. * outputs are as follows: 0x4b, 0x59 & 0x61.
*/ */
} else if (rev == 0x4b || rev == 0x59 || rev == 0x61) { } else if (rev == 0x4b || rev == 0x51 || rev == 0x59 || rev == 0x61) {
msg_pdbg("Promontory (rev 0x%02x) detected.\n", rev); msg_pdbg("Promontory (rev 0x%02x) detected.\n", rev);
return CHIPSET_PROMONTORY; return CHIPSET_PROMONTORY;
} else { } else {