Patrick Georgi (patrick(a)georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3869
-gerrit
commit a4ea74912e233ffe775116f5f9111ab890415a5a
Author: Patrick Georgi <patrick.georgi(a)secunet.com>
Date: Thu Aug 15 14:43:13 2013 +0200
kontron/ktqm77: Update MRC path
It still pointed to the old binary despite implementing the newer interface
Change-Id: Iebd5dae98168f5568f3ad6a18c5ebde9abc3ece0
Signed-off-by: Patrick Georgi <patrick.georgi(a)secunet.com>
---
src/mainboard/kontron/ktqm77/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainboard/kontron/ktqm77/Kconfig b/src/mainboard/kontron/ktqm77/Kconfig
index 1665a25..58550e8 100644
--- a/src/mainboard/kontron/ktqm77/Kconfig
+++ b/src/mainboard/kontron/ktqm77/Kconfig
@@ -20,7 +20,7 @@ config BOARD_SPECIFIC_OPTIONS # dummy
config MRC_FILE
string
- default "3rdparty/northbridge/intel/sandybridge/systemagent-ivybridge.bin"
+ default "3rdparty/northbridge/intel/sandybridge/systemagent-r6.bin"
config MAINBOARD_DIR
string
Kyösti Mälkki (kyosti.malkki(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/3868
-gerrit
commit 497ba2d1e48b4bdefa6301a04f4b57a78ad048d7
Author: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Date: Thu Jun 6 10:33:39 2013 +0300
usbdebug: Add optional quirk for old DIY debug part
Not sure what this is about. Required for FX2.
Change-Id: I86878f8f570911ed1ed3ec844c232ac91e934072
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
---
src/lib/usbdebug.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/lib/usbdebug.c b/src/lib/usbdebug.c
index e84af5b..7e01a0f 100644
--- a/src/lib/usbdebug.c
+++ b/src/lib/usbdebug.c
@@ -594,10 +594,12 @@ try_next_port:
}
dprintk(BIOS_INFO, "EHCI debug port enabled.\n");
+#if 0
/* Completely transfer the debug device to the debug controller */
portsc = read32((unsigned long)&ehci_regs->port_status[debug_port - 1]);
portsc &= ~PORT_PE;
write32((unsigned long)&ehci_regs->port_status[debug_port - 1], portsc);
+#endif
dbgp_mdelay(100);