HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31007
Change subject: nb/intel/i945: Check if interleaved even if rank[4] size is zero
......................................................................
nb/intel/i945: Check if interleaved even if rank[4] size is zero
With this patch, the board can boot when interleaved but rank4 is 0.
Tested on 945G-M4, it boot when:
DIMM0 + DIMM2 populated: Ok
DIMM0 + DIMM3 populated: Ok
DIMM1 + DIMM2 populated: Ok
DIMM1 + DIMM3 populated: Ok
raminit.c still needs channelA populated. It will not boot if
channel A is not populated.
Change-Id: Ibf130a3d4b6f8fa816f7a5f06822a9b8807be3d4
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/northbridge/intel/i945/raminit.c
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/31007/1
diff --git a/src/northbridge/intel/i945/raminit.c b/src/northbridge/intel/i945/raminit.c
index 64c87da..a46677b 100644
--- a/src/northbridge/intel/i945/raminit.c
+++ b/src/northbridge/intel/i945/raminit.c
@@ -2551,9 +2551,6 @@
u32 bankaddr = 0, tmpaddr, mrsaddr = 0;
for (i = 0, nonzero = -1; i < 8; i++) {
- if (sysinfo->banksize[i] == 0)
- continue;
-
printk(BIOS_DEBUG, "jedec enable sequence: bank %d\n", i);
switch (i) {
case 0:
@@ -2576,6 +2573,9 @@
bankaddr = 0;
}
+ if (sysinfo->banksize[i] == 0)
+ continue;
+
/* We have a bank with a non-zero size.. Remember it
* for the next offset we have to calculate
*/
--
To view, visit https://review.coreboot.org/c/coreboot/+/31007
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ibf130a3d4b6f8fa816f7a5f06822a9b8807be3d4
Gerrit-Change-Number: 31007
Gerrit-PatchSet: 1
Gerrit-Owner: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-MessageType: newchange
HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31443
Change subject: crossgcc: Update acpica to version 20190215
......................................................................
crossgcc: Update acpica to version 20190215
0) Support for ACPI specification version 6.3:
Add PCC operation region support for the AML interpreter. This adds PCC
operation region support in the AML interpreter and a default handler for
acpiexec. The change also renames the PCC region address space keyword to
PlatformCommChannel.
Support for new predefined methods _NBS, _NCH, _NIC, _NIH, and _NIG.
These methods provide OSPM with health information and device boot
status.
PDTT: Add TriggerOrder to the PCC Identifier structure. The field value
defines if the trigger needs to be invoked by OSPM before or at the end
of kernel crash dump processing/handling operation.
SRAT: Add Generic Affinity Structure subtable. This subtable in the SRAT
is used for describing devices such as heterogeneous processors,
accelerators, GPUs, and IO devices with integrated compute or DMA
engines.
MADT: Add support for statistical profiling in GICC. Statistical
profiling extension (SPE) is an architecture-specific feature for ARM.
MADT: Add online capable flag. If this bit is set, system hardware
supports enabling this processor during OS runtime.
New Error Disconnect Recover Notification value. There are a number of
scenarios where system Firmware in collaboration with hardware may
disconnect one or more devices from the rest of the system for purposes
of error containment. Firmware can use this new notification value to
alert OSPM of such a removal.
PPTT: New additional fields in Processor Structure Flags. These flags
provide more information about processor topology.
NFIT/Disassembler: Change a field name from "Address Range" to "Region
Type".
HMAT updates: make several existing fields to be reserved as well as
rename subtable 0 to "memory proximity domain attributes".
GTDT: Add support for new GTDT Revision 3. This revision adds information
for the EL2 timer.
iASL: Update the HMAT example template for new fields.
iASL: Add support for the new revision of the GTDT (Rev 3).
More changes in this version at https://acpica.org/node/166
Change-Id: I3a825f568423c3a703ad1c13da976af322ed9de2
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/arch/x86/include/arch/acpi.h
M util/crossgcc/buildgcc
R util/crossgcc/patches/acpica-unix2-20190215_iasl.patch
D util/crossgcc/sum/acpica-unix2-20190108.tar.gz.cksum
A util/crossgcc/sum/acpica-unix2-20190215.tar.gz.cksum
5 files changed, 4 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/31443/1
diff --git a/src/arch/x86/include/arch/acpi.h b/src/arch/x86/include/arch/acpi.h
index a83302d..b5dd435 100644
--- a/src/arch/x86/include/arch/acpi.h
+++ b/src/arch/x86/include/arch/acpi.h
@@ -71,7 +71,7 @@
*/
#define COREBOOT_ACPI_ID "BOOT" /* ACPI ID for coreboot HIDs */
-#define ASL_REVISION 20190108
+#define ASL_REVISION 20190215
/* List of ACPI HID that use the coreboot ACPI ID */
enum coreboot_acpi_ids {
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index 019b011..c6d7986 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -54,7 +54,7 @@
GCC_AUTOCONF_VERSION=2.69
BINUTILS_VERSION=2.32
GDB_VERSION=8.2.1
-IASL_VERSION=20190108
+IASL_VERSION=20190215
PYTHON_VERSION=3.7.2
EXPAT_VERSION=2.2.6
# CLANG version number
diff --git a/util/crossgcc/patches/acpica-unix2-20190108_iasl.patch b/util/crossgcc/patches/acpica-unix2-20190215_iasl.patch
similarity index 84%
rename from util/crossgcc/patches/acpica-unix2-20190108_iasl.patch
rename to util/crossgcc/patches/acpica-unix2-20190215_iasl.patch
index 6532255..c4f6052 100644
--- a/util/crossgcc/patches/acpica-unix2-20190108_iasl.patch
+++ b/util/crossgcc/patches/acpica-unix2-20190215_iasl.patch
@@ -1,4 +1,4 @@
-diff -Naur acpica-unix2-20190108_/source/compiler/asloptions.c acpica-unix2-20190108/source/compiler/asloptions.c > acpica-unix2-20190108_iasl.patch
+diff -Naur acpica-unix2-20190215_/source/compiler/asloptions.c acpica-unix2-20190215/source/compiler/asloptions.c > acpica-unix2-20190215_iasl.patch
--- acpica-unix2-20190108_/source/compiler/asloptions.c
+++ acpica-unix2-20190108/source/compiler/asloptions.c
@@ -126,6 +126,7 @@
diff --git a/util/crossgcc/sum/acpica-unix2-20190108.tar.gz.cksum b/util/crossgcc/sum/acpica-unix2-20190108.tar.gz.cksum
deleted file mode 100644
index c5cfb4c..0000000
--- a/util/crossgcc/sum/acpica-unix2-20190108.tar.gz.cksum
+++ /dev/null
@@ -1 +0,0 @@
-50d96dd38b89c69260ad209cf61035cda1fcdd67 tarballs/acpica-unix2-20190108.tar.gz
diff --git a/util/crossgcc/sum/acpica-unix2-20190215.tar.gz.cksum b/util/crossgcc/sum/acpica-unix2-20190215.tar.gz.cksum
new file mode 100644
index 0000000..310454d
--- /dev/null
+++ b/util/crossgcc/sum/acpica-unix2-20190215.tar.gz.cksum
@@ -0,0 +1 @@
+82d729cb09edc50ee11669651683ca5a5c0f4d5a tarballs/acpica-unix2-20190215.tar.gz
--
To view, visit https://review.coreboot.org/c/coreboot/+/31443
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I3a825f568423c3a703ad1c13da976af322ed9de2
Gerrit-Change-Number: 31443
Gerrit-PatchSet: 1
Gerrit-Owner: HAOUAS Elyes <ehaouas(a)noos.fr>
Gerrit-MessageType: newchange