Zheng Bao (zheng.bao(a)amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11681
-gerrit
commit 0e8617bc078c3975b938a449bcedf55a7f985e76
Author: zbao <fishbaozi(a)gmail.com>
Date: Fri Sep 18 06:17:09 2015 -0700
xcompile: Redirect the objdump stderr to /dev/null
On system with clang, "as" is available but "objdump" is not by default.
So if ${gccprefix} is empty, "as" can run successfully and the "objdump"
below might report error. Mask that output.
Change-Id: I9940f069f66e097973ed6138cf3c696087fa5531
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
---
util/xcompile/xcompile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile
index 76c3698..a8134a0 100755
--- a/util/xcompile/xcompile
+++ b/util/xcompile/xcompile
@@ -111,7 +111,7 @@ testas() {
2>/dev/null || return 1
# Check output content type.
- local obj_type="$(LANG=C LC_ALL= ${gccprefix}objdump -p $obj_file)"
+ local obj_type="$(LANG=C LC_ALL= ${gccprefix}objdump -p $obj_file 2>/dev/null)"
local obj_arch="$(expr "$obj_type" : '.*format \(.[a-z0-9-]*\)')"
[ "$obj_arch" = "$full_arch" ] || return 1
the following patch was just integrated into master:
commit df95b51ab636f78f66c27d7a7b0aebf245f288c1
Author: Felix Held <felix-coreboot(a)felixheld.de>
Date: Fri Nov 6 18:32:43 2015 +0100
pcengines/apu1: enable use of clkreq pins
only enable pcie gpp clocks when the corresponding clkreq pin is asserted
Change-Id: I7822d011bb94867d470c0194e6b652833c395cb2
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
Reviewed-on: http://review.coreboot.org/12353
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
See http://review.coreboot.org/12353 for details.
-gerrit
the following patch was just integrated into master:
commit b06015b92ec0a44646d18ec32f2cb333e965e616
Author: Felix Held <felix-coreboot(a)felixheld.de>
Date: Fri Nov 6 18:31:01 2015 +0100
pcengines/apu1: disable unused clock outputs
disable unconnected FCH clock outputs to save some power
Change-Id: Ib3efebb8656392d58d762c23827168017d273de8
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
Reviewed-on: http://review.coreboot.org/12082
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
See http://review.coreboot.org/12082 for details.
-gerrit
Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12468
-gerrit
commit 224ea31f7e415c237319c292213886f0cfbba6d7
Author: Martin Roth <martinroth(a)google.com>
Date: Wed Nov 18 16:36:40 2015 -0700
fsp1_0: Remove hardcoded microcode locations
These are no longer needed.
Test: Booted minnowmax.
Change-Id: Ie77040f3506464c614760bd4d30280c8113373bd
Signed-off-by: Martin Roth <martinroth(a)google.com>
---
src/cpu/intel/fsp_model_406dx/Kconfig | 5 -----
src/soc/intel/fsp_baytrail/Kconfig | 4 ----
2 files changed, 9 deletions(-)
diff --git a/src/cpu/intel/fsp_model_406dx/Kconfig b/src/cpu/intel/fsp_model_406dx/Kconfig
index 30e7e59..c36851d 100644
--- a/src/cpu/intel/fsp_model_406dx/Kconfig
+++ b/src/cpu/intel/fsp_model_406dx/Kconfig
@@ -53,11 +53,6 @@ config ENABLE_VMX
bool "Enable VMX for virtualization"
default n
-config CPU_MICROCODE_CBFS_LOC
- hex
- depends on SUPPORT_CPU_UCODE_IN_CBFS
- default 0xfff60040
-
config HAVE_CPU_MICROCODE_FILE
bool "Add microcode file"
help
diff --git a/src/soc/intel/fsp_baytrail/Kconfig b/src/soc/intel/fsp_baytrail/Kconfig
index ff23308..2325d75 100644
--- a/src/soc/intel/fsp_baytrail/Kconfig
+++ b/src/soc/intel/fsp_baytrail/Kconfig
@@ -86,10 +86,6 @@ config VGA_BIOS_ID
This is the default PCI ID for the Bay Trail graphics
devices. This string names the vbios ROM in cbfs.
-config CPU_MICROCODE_CBFS_LOC
- hex
- default 0xfff10040
-
config ENABLE_BUILTIN_COM1
bool "Enable built-in legacy Serial Port"
help
Timothy Pearson (tpearson(a)raptorengineeringinc.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12030
-gerrit
commit 194f1d27b442fef311b4df5859ae70eb1c404f05
Author: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
Date: Fri Aug 7 19:05:45 2015 -0500
northbridge/amd/amdht: Trivial update to comment
The BKDG is not correct regarding HT Freq write ordering;
indicate this in a comment to avoid confusion.
Change-Id: I37db191c144c81aba5d4a1e6291db5669a35a31a
Signed-off-by: Timothy Pearson <tpearson(a)raptorengineeringinc.com>
---
src/northbridge/amd/amdht/h3ncmn.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/northbridge/amd/amdht/h3ncmn.c b/src/northbridge/amd/amdht/h3ncmn.c
index 29524af..c97d592 100644
--- a/src/northbridge/amd/amdht/h3ncmn.c
+++ b/src/northbridge/amd/amdht/h3ncmn.c
@@ -1555,6 +1555,10 @@ static void setLinkData(sMainData *pDat, cNorthBridge *nb)
} else {
temp2 = 0x0;
}
+ /* NOTE
+ * The Family 15h BKDG Rev. 3.14 is wrong
+ * Freq[4] must be set before Freq[3:0], otherwise the register writes will be ignored!
+ */
if (is_gt_rev_d())
AmdPCIWriteBits(linkBase + HTHOST_FREQ_REV_REG_2, 0, 0, &temp2);
AmdPCIWriteBits(linkBase + HTHOST_FREQ_REV_REG, 11, 8, &temp);