summaryrefslogtreecommitdiffstats
path: root/chipset_enable.c
diff options
context:
space:
mode:
authorZheng Bao <zheng.bao@amd.com>2009-05-04 22:33:50 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-05-04 22:33:50 +0000
commite1ef5eb05aa955cf7a819bf540f0e24f649d8866 (patch)
treee1a8f45410e4aae386d1a03103ff841fb8c70b0c /chipset_enable.c
parenta671377f67c2301c0a7eb4aed55f0a19b8752f4b (diff)
downloadflashrom-e1ef5eb05aa955cf7a819bf540f0e24f649d8866.zip
flashrom-e1ef5eb05aa955cf7a819bf540f0e24f649d8866.tar.gz
Force enabling SPI mode for SB600 is a bad idea and leads to hangs
Only access LPC ROM if we boot via LPC ROM. Only access SPI ROM if we boot via SPI ROM. The code to force enable SPI is commented out in case someone wants to reenable it for a particular board with LPC and SPI flash. Corresponding to flashrom svn r459. Signed-off-by: Zheng Bao <zheng.bao@amd.com> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'chipset_enable.c')
-rw-r--r--chipset_enable.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/chipset_enable.c b/chipset_enable.c
index 21864af..0395df6 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -680,8 +680,16 @@ static int enable_flash_sb600(struct pci_dev *dev, const char *name)
flashbus = BUS_TYPE_SB600_SPI;
/* Enable SPI ROM in SB600 PM register. */
+ /* If we enable SPI ROM here, we have to disable it after we leave.
+ * But how can we know which ROM we are going to handle? So we have
+ * to trade off. We only access LPC ROM if we boot via LPC ROM. And
+ * only SPI ROM if we boot via SPI ROM. If you want to do it crossly,
+ * you have to use the code below.
+ */
+ /*
OUTB(0x8f, 0xcd6);
OUTB(0x0e, 0xcd7);
+ */
return 0;
}
OpenPOWER on IntegriCloud