Tim Chu has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47562 )
Change subject: mb/ocp/deltalake: Override SMBIOS type 4 cpu voltage
......................................................................
mb/ocp/deltalake: Override SMBIOS type 4 cpu voltage
Override SMBIOS type 4 cpu voltage. For Delta Lake, 1.6V is expected.
Tested=Execute "dmidecode -t 4" to check if cpu voltage is correct.
Signed-off-by: Tim Chu <Tim.Chu(a)quantatw.com>
Change-Id: I0ecbec8fb3dc79b8c3f3581d6193aade01bcd68e
---
M src/mainboard/ocp/deltalake/ramstage.c
1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/47562/1
diff --git a/src/mainboard/ocp/deltalake/ramstage.c b/src/mainboard/ocp/deltalake/ramstage.c
index 9d57090..d48f85e 100644
--- a/src/mainboard/ocp/deltalake/ramstage.c
+++ b/src/mainboard/ocp/deltalake/ramstage.c
@@ -59,6 +59,12 @@
return slot_id_str;
}
+/* Override SMBIOS type 4 cpu voltage */
+unsigned int smbios_cpu_get_voltage(void)
+{
+ return 0x90; /* This will return 1.6V which is expected value for Delta Lake */
+}
+
/* System Slot Socket, Stack, Type and Data bus width Information */
typedef struct {
u8 stack;
--
To view, visit https://review.coreboot.org/c/coreboot/+/47562
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I0ecbec8fb3dc79b8c3f3581d6193aade01bcd68e
Gerrit-Change-Number: 47562
Gerrit-PatchSet: 1
Gerrit-Owner: Tim Chu <Tim.Chu(a)quantatw.com>
Gerrit-MessageType: newchange
HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/44694 )
Change subject: crossgcc: Upgrade nasm to version 2.15.04
......................................................................
crossgcc: Upgrade nasm to version 2.15.04
Changes:
https://nasm.us/doc/nasmdocc.html
"Correct the encoding of the ENQCMDS and TILELOADT1 instructions.
Fix case where the COFF backend (the coff, win32 and win64 output
formats) would add padding bytes in the middle of a section if a
SECTION/SEGMENT directive was provided which repeated an
ALIGN= attribute. This neither matched legacy behavior, other
backends, or user expectations.
Fix SSE instructions not being recognized with an explicit memory
operation size (e.g. movsd qword [eax],xmm0)."
Change-Id: I3f9aa8e743f2dc50fce1ce68718c0ae17209a509
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M util/crossgcc/buildgcc
D util/crossgcc/sum/nasm-2.15.03.tar.bz2.cksum
A util/crossgcc/sum/nasm-2.15.04.tar.bz2.cksum
3 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/44694/1
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index 0f9cac5..4e23f8d 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -46,7 +46,7 @@
# CLANG version number
CLANG_VERSION=10.0.1
CMAKE_VERSION=3.18.1
-NASM_VERSION=2.15.03
+NASM_VERSION=2.15.04
# GCC toolchain archive locations
# These are sanitized by the jenkins toolchain test builder, so if
diff --git a/util/crossgcc/sum/nasm-2.15.03.tar.bz2.cksum b/util/crossgcc/sum/nasm-2.15.03.tar.bz2.cksum
deleted file mode 100644
index 6033fae..0000000
--- a/util/crossgcc/sum/nasm-2.15.03.tar.bz2.cksum
+++ /dev/null
@@ -1 +0,0 @@
-513ac3b800377f10833a02bc7f3fa8b84ca4f2b6 tarballs/nasm-2.15.03.tar.bz2
diff --git a/util/crossgcc/sum/nasm-2.15.04.tar.bz2.cksum b/util/crossgcc/sum/nasm-2.15.04.tar.bz2.cksum
new file mode 100644
index 0000000..0bbb229
--- /dev/null
+++ b/util/crossgcc/sum/nasm-2.15.04.tar.bz2.cksum
@@ -0,0 +1 @@
+062aa2dea69fcb8a2b3f387e349a80531f70475c tarballs/nasm-2.15.04.tar.bz2
--
To view, visit https://review.coreboot.org/c/coreboot/+/44694
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I3f9aa8e743f2dc50fce1ce68718c0ae17209a509
Gerrit-Change-Number: 44694
Gerrit-PatchSet: 1
Gerrit-Owner: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-MessageType: newchange