Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36586 )
Change subject: sb/intel/common/platform.asl: Remove setting unused GNVS
......................................................................
sb/intel/common/platform.asl: Remove setting unused GNVS
Change-Id: I842af0a0e6435d33759649065b2b5a6f6d35071d
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/southbridge/intel/common/acpi/platform.asl
1 file changed, 0 insertions(+), 10 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/86/36586/1
diff --git a/src/southbridge/intel/common/acpi/platform.asl b/src/southbridge/intel/common/acpi/platform.asl
index ba8091d..03cb625 100644
--- a/src/southbridge/intel/common/acpi/platform.asl
+++ b/src/southbridge/intel/common/acpi/platform.asl
@@ -71,16 +71,6 @@
Store (2000, OSYS)
If (CondRefOf(_OSI)) {
- /* Linux answers _OSI with "True" for a couple of
- * Windows version queries. But unlike Windows it
- * needs a Video repost, so let's determine whether
- * we're running Linux.
- */
-
- If (_OSI("Linux")) {
- Store (1, LINX)
- }
-
If (_OSI("Windows 2001")) {
Store (2001, OSYS)
}
--
To view, visit https://review.coreboot.org/c/coreboot/+/36586
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I842af0a0e6435d33759649065b2b5a6f6d35071d
Gerrit-Change-Number: 36586
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-MessageType: newchange
Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36556 )
Change subject: sb/intel/i82801jx/nvs.h: include required header
......................................................................
sb/intel/i82801jx/nvs.h: include required header
u8, u16, ... are defined in stdint.h.
Change-Id: I045438a7e754d4da936cf2ded411d055f2f69b45
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/southbridge/intel/i82801jx/nvs.h
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/56/36556/1
diff --git a/src/southbridge/intel/i82801jx/nvs.h b/src/southbridge/intel/i82801jx/nvs.h
index ca66985..88944c0 100644
--- a/src/southbridge/intel/i82801jx/nvs.h
+++ b/src/southbridge/intel/i82801jx/nvs.h
@@ -13,6 +13,8 @@
* GNU General Public License for more details.
*/
+#include <stdint.h>
+
typedef struct {
/* Miscellaneous */
u16 osys; /* 0x00 - Operating System */
--
To view, visit https://review.coreboot.org/c/coreboot/+/36556
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I045438a7e754d4da936cf2ded411d055f2f69b45
Gerrit-Change-Number: 36556
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-MessageType: newchange
Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36555 )
Change subject: nb/intel/x4x/x4x.h: Include iomap.h
......................................................................
nb/intel/x4x/x4x.h: Include iomap.h
This is needed for the definition of the MCHBARx() macros.
Change-Id: I654344451c0568f306f39365fd07371b2d6cff04
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/northbridge/intel/x4x/x4x.h
1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/55/36555/1
diff --git a/src/northbridge/intel/x4x/x4x.h b/src/northbridge/intel/x4x/x4x.h
index 05479a1..76d94c6 100644
--- a/src/northbridge/intel/x4x/x4x.h
+++ b/src/northbridge/intel/x4x/x4x.h
@@ -18,6 +18,8 @@
#ifndef __NORTHBRIDGE_INTEL_X4X_H__
#define __NORTHBRIDGE_INTEL_X4X_H__
+#include "iomap.h"
+
/*
* D0:F0
*/
--
To view, visit https://review.coreboot.org/c/coreboot/+/36555
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I654344451c0568f306f39365fd07371b2d6cff04
Gerrit-Change-Number: 36555
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-MessageType: newchange
Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/36563 )
Change subject: Documentation: Add some significant 4.11 release notes
......................................................................
Documentation: Add some significant 4.11 release notes
Change-Id: I44369bc7dee77beab480d9a16cd7268be6686eb9
Signed-off-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
---
M Documentation/releases/coreboot-4.11-relnotes.md
1 file changed, 18 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/36563/1
diff --git a/Documentation/releases/coreboot-4.11-relnotes.md b/Documentation/releases/coreboot-4.11-relnotes.md
index 282d0ec..7dd99a3 100644
--- a/Documentation/releases/coreboot-4.11-relnotes.md
+++ b/Documentation/releases/coreboot-4.11-relnotes.md
@@ -22,3 +22,21 @@
-------------------
### Add significant changes here
+
+### `__PRE_RAM__` is deprecated
+
+Preprocessor use of `defined(__PRE_RAM_)` have been mostly replaced with
+`if (ENV_ROMSTAGE_OR_BEFORE)` or the inverse `if (ENV_RAMSTAGE)`.
+
+The remaining cases and `-D__PRE_RAM__` are to be removed soon after release.
+
+### `CAR_GLOBAL` is removed where possible
+
+For all platform code with `NO_CAR_GLOBAL_MIGRATION=y`, any `CAR_GLOBAL`
+attributes have been removed. Remaining cases from common code are to be
+removed soon after release.
+
+### `TSEG` and `cbmem_top()` mapping
+
+Significant refactoring has bee done to achieve some consistency across platforms
+and to reduce code duplication.
--
To view, visit https://review.coreboot.org/c/coreboot/+/36563
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I44369bc7dee77beab480d9a16cd7268be6686eb9
Gerrit-Change-Number: 36563
Gerrit-PatchSet: 1
Gerrit-Owner: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-MessageType: newchange