Julien Viard de Galbert has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47341 )
Change subject: configs: Add a sample config for scaleway tagada
......................................................................
configs: Add a sample config for scaleway tagada
Signed-off-by: Julien Viard de Galbert <julien(a)vdg.name>
Change-Id: I39fd9aabe7285d39e1883622ee9d6a60c6651b6e
---
A configs/config.scaleway_tagada
1 file changed, 14 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/41/47341/1
diff --git a/configs/config.scaleway_tagada b/configs/config.scaleway_tagada
new file mode 100644
index 0000000..1ec73c4
--- /dev/null
+++ b/configs/config.scaleway_tagada
@@ -0,0 +1,14 @@
+CONFIG_VENDOR_SCALEWAY=y
+CONFIG_CBFS_SIZE=0x400000
+CONFIG_CONSOLE_POST=y
+# CONFIG_DRIVERS_INTEL_WIFI is not set
+# CONFIG_IQAT_ENABLE is not set
+CONFIG_ENABLE_HSUART=y
+CONFIG_USE_DENVERTON_NS_FSP_CAR=y
+CONFIG_SPI_FLASH_NO_FAST_READ=y
+CONFIG_PAYLOAD_ELF=y
+CONFIG_PAYLOAD_FILE="UEFIPAYLOAD.fd"
+CONFIG_DISPLAY_FSP_CALLS_AND_STATUS=y
+CONFIG_DISPLAY_FSP_HEADER=y
+CONFIG_DEBUG_CBFS=y
+CONFIG_DEBUG_BOOT_STATE=y
--
To view, visit https://review.coreboot.org/c/coreboot/+/47341
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I39fd9aabe7285d39e1883622ee9d6a60c6651b6e
Gerrit-Change-Number: 47341
Gerrit-PatchSet: 1
Gerrit-Owner: Julien Viard de Galbert <coreboot-review-ju(a)vdg.name>
Gerrit-MessageType: newchange
Angel Pons has submitted this change. ( https://review.coreboot.org/c/coreboot/+/25434 )
Change subject: soc/intel/denverton_ns: Enable MC Exception
......................................................................
soc/intel/denverton_ns: Enable MC Exception
Change-Id: I9773c61d06bb6c68612e498a35b5ad22cd5a8a6e
Signed-off-by: Julien Viard de Galbert <jviarddegalbert(a)online.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/25434
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Angel Pons <th3fanbus(a)gmail.com>
---
M src/soc/intel/denverton_ns/cpu.c
1 file changed, 7 insertions(+), 0 deletions(-)
Approvals:
build bot (Jenkins): Verified
Angel Pons: Looks good to me, approved
diff --git a/src/soc/intel/denverton_ns/cpu.c b/src/soc/intel/denverton_ns/cpu.c
index 7cee5be..1fd233a 100644
--- a/src/soc/intel/denverton_ns/cpu.c
+++ b/src/soc/intel/denverton_ns/cpu.c
@@ -2,6 +2,7 @@
#include <console/console.h>
#include <cpu/cpu.h>
+#include <cpu/x86/cr.h>
#include <cpu/x86/mp.h>
#include <cpu/x86/msr.h>
#include <cpu/x86/mtrr.h>
@@ -44,6 +45,12 @@
of these banks are core vs package scope. For now every CPU clears
every bank. */
mca_configure();
+
+ /* TODO install a fallback MC handler for each core in case OS does
+ not provide one. Is it really needed? */
+
+ /* Enable the machine check exception */
+ write_cr4(read_cr4() | CR4_MCE);
}
static void denverton_core_init(struct device *cpu)
--
To view, visit https://review.coreboot.org/c/coreboot/+/25434
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I9773c61d06bb6c68612e498a35b5ad22cd5a8a6e
Gerrit-Change-Number: 25434
Gerrit-PatchSet: 20
Gerrit-Owner: Julien Viard de Galbert <coreboot-review-ju(a)vdg.name>
Gerrit-Reviewer: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: David Guckian <d.guckian20(a)gmail.com>
Gerrit-Reviewer: David Guckian <david.guckian(a)intel.com>
Gerrit-Reviewer: Julien Viard de Galbert <coreboot-review-ju(a)vdg.name>
Gerrit-Reviewer: Mimoja <coreboot(a)mimoja.de>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Vanessa Eusebio <vanessa.f.eusebio(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Jay Talbott <JayTalbott(a)sysproconsulting.com>
Gerrit-MessageType: merged