Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/54003 )
Change subject: Documentation/releases: Fill in coreboot 4.14 release notes
......................................................................
Documentation/releases: Fill in coreboot 4.14 release notes
Change-Id: I79530c91424112247e485a5a41debc666e0072d4
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54003
Reviewed-by: Angel Pons <th3fanbus(a)gmail.com>
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
---
M Documentation/releases/coreboot-4.14-relnotes.md
1 file changed, 67 insertions(+), 9 deletions(-)
Approvals:
build bot (Jenkins): Verified
Angel Pons: Looks good to me, approved
diff --git a/Documentation/releases/coreboot-4.14-relnotes.md b/Documentation/releases/coreboot-4.14-relnotes.md
index 3593bdc..40589a1 100644
--- a/Documentation/releases/coreboot-4.14-relnotes.md
+++ b/Documentation/releases/coreboot-4.14-relnotes.md
@@ -1,14 +1,73 @@
-Upcoming release - coreboot 4.14
-================================
+coreboot 4.14
+=============
-The 4.14 release is planned for May 2021.
+coreboot 4.14 was released on May 10th, 2021.
-Update this document with changes that should be in the release notes.
+Since 4.13 there have been 3660 new commits by 215 developers.
+Of these, about 50 contributed to coreboot for the first time.
+Welcome to the project!
-* Please use Markdown.
-* See the past few release notes for the general format.
-* The chip and board additions and removals will be updated right
- before the release, so those do not need to be added.
+These changes have been all over the place, so that there's no
+particular area to focus on when describing this release: We had
+improvements to mainboards, to chipsets (including much welcomed
+work to open source implementations of what has been blobs before),
+to the overall architecture.
+
+Thank you to all developers who made coreboot the great open source
+firmware project that it is, and made our code better than ever.
+
+New mainboards
+--------------
+
+* AMD Bilby
+* AMD Majolica
+* GIGABYTE GA-D510UD
+* Google Blipper
+* Google Brya
+* Google Cherry
+* Google Collis
+* Google Copano
+* Google Cozmo
+* Google Cret
+* Google Drobit
+* Google Galtic
+* Google Gumboz
+* Google Guybrush
+* Google Herobrine
+* Google Homestar
+* Google Katsu
+* Google Kracko
+* Google Lalala
+* Google Makomo
+* Google Mancomb
+* Google Marzipan
+* Google Pirika
+* Google Sasuke
+* Google Sasukette
+* Google Spherion
+* Google Storo
+* Google Volet
+* HP 280 G2
+* Intel Alderlake-M RVP
+* Intel Alderlake-M RVP with Chrome EC
+* Intel Elkhartlake LPDDR4x CRB
+* Intel shadowmountain
+* Kontron COMe-mAL10
+* MSI H81M-P33 (MS-7817 v1.2)
+* Pine64 ROCKPro64
+* Purism Librem 14
+* System76 darp5
+* System76 galp3-c
+* System76 gaze15
+* System76 oryp5
+* System76 oryp6
+
+Removed mainboards
+------------------
+
+* Google Boldar
+* Intel Cannonlake U LPDDR4 RVP
+* Intel Cannonlake Y LPDDR4 RVP
Deprecations and incompatible changes
-------------------------------------
@@ -95,7 +154,6 @@
Features supported, (performance/stability) test scopes, known issues,
features gaps are described in [4].
-### Add significant changes here
[1] https://www.intel.com/content/www/us/en/products/details/processors/xeon/sc…
[2] https://www.intel.com/content/www/us/en/products/docs/processors/xeon/3rd-g…
--
To view, visit https://review.coreboot.org/c/coreboot/+/54003
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I79530c91424112247e485a5a41debc666e0072d4
Gerrit-Change-Number: 54003
Gerrit-PatchSet: 3
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: merged
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/53926 )
Change subject: cpu/x86/smm: Fix typo
......................................................................
cpu/x86/smm: Fix typo
Change-Id: I28f262078cf7f5ec4ed707639e845710a8cc56ea
Signed-off-by: Patrick Georgi <pgeorgi(a)google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/53926
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Reviewed-by: Paul Menzel <paulepanter(a)mailbox.org>
Reviewed-by: Angel Pons <th3fanbus(a)gmail.com>
---
M src/cpu/x86/smm/smm_stub.S
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
build bot (Jenkins): Verified
Kyösti Mälkki: Looks good to me, approved
Paul Menzel: Looks good to me, but someone else must approve
Angel Pons: Looks good to me, approved
diff --git a/src/cpu/x86/smm/smm_stub.S b/src/cpu/x86/smm/smm_stub.S
index 28b7d57..0c690da 100644
--- a/src/cpu/x86/smm/smm_stub.S
+++ b/src/cpu/x86/smm/smm_stub.S
@@ -97,7 +97,7 @@
movw %ax, %gs
/* The CPU number is calculated by reading the initial APIC id. Since
- * the OS can maniuplate the APIC id use the non-changing cpuid result
+ * the OS can manipulate the APIC id use the non-changing cpuid result
* for APIC id (eax). A table is used to handle a discontiguous
* APIC id space. */
apic_id:
--
To view, visit https://review.coreboot.org/c/coreboot/+/53926
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I28f262078cf7f5ec4ed707639e845710a8cc56ea
Gerrit-Change-Number: 53926
Gerrit-PatchSet: 2
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: merged
Attention is currently required from: Paul Menzel.
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/53926 )
Change subject: cpu/x86/smm: Fix typo
......................................................................
Patch Set 1:
(1 comment)
Commit Message:
https://review.coreboot.org/c/coreboot/+/53926/comment/29362b0b_ebff252f
PS1, Line 7: cpu/x86/smm: Fix typo
> That's kinda obvious from the patch, no?
Ack
--
To view, visit https://review.coreboot.org/c/coreboot/+/53926
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I28f262078cf7f5ec4ed707639e845710a8cc56ea
Gerrit-Change-Number: 53926
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Kyösti Mälkki <kyosti.malkki(a)gmail.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Comment-Date: Mon, 10 May 2021 20:31:45 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Patrick Georgi <pgeorgi(a)google.com>
Comment-In-Reply-To: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: comment
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/52735 )
Change subject: doc/relnotes/4.14: add Intel Xeon-SP support status change
......................................................................
doc/relnotes/4.14: add Intel Xeon-SP support status change
Signed-off-by: Jonathan Zhang <jonzhang(a)fb.com>
Change-Id: Ibead1c75bb4e41fedc2799366b5b006d76fc8f4e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52735
Reviewed-by: Angel Pons <th3fanbus(a)gmail.com>
Reviewed-by: Subrata Banik <subrata.banik(a)intel.com>
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
---
M Documentation/releases/coreboot-4.14-relnotes.md
1 file changed, 24 insertions(+), 0 deletions(-)
Approvals:
build bot (Jenkins): Verified
Subrata Banik: Looks good to me, approved
Angel Pons: Looks good to me, approved
diff --git a/Documentation/releases/coreboot-4.14-relnotes.md b/Documentation/releases/coreboot-4.14-relnotes.md
index b6c927e..3593bdc 100644
--- a/Documentation/releases/coreboot-4.14-relnotes.md
+++ b/Documentation/releases/coreboot-4.14-relnotes.md
@@ -76,4 +76,28 @@
for common ACPI GNVS table entries were largely moved to one centralized
implementation.
+### Intel Xeon Scalable Processor support is now considered mature
+
+Intel Xeon Scalable Processor (Xeon-SP) family [1] is designed
+primarily to serve the needs of the server market.
+
+coreboot support for Xeon-SP is in src/soc/intel/xeon_sp directory.
+This release has support for SkyLake-SP (SKX-SP) which is the 2nd
+generation, and for CooperLake-SP (CPX-SP) which is the 3rd generation
+or the latest generation [2] on market.
+
+With this release, the codebase for multiple generations of Xeon-SP
+were unified and optimized:
+* SKX-SP SoC code is used in OCP TiogaPass mainboard [3]. Support for
+this board is in Proof Of Concept Status.
+* CPX-SP SoC code is used in OCP DeltaLake mainboard. Support for
+this board is in DVT (Design Validation Test) exit equivalent status.
+Features supported, (performance/stability) test scopes, known issues,
+features gaps are described in [4].
+
### Add significant changes here
+
+[1] https://www.intel.com/content/www/us/en/products/details/processors/xeon/sc…
+[2] https://www.intel.com/content/www/us/en/products/docs/processors/xeon/3rd-g…
+[3] ../mainboard/ocp/tiogapass.md
+[4] ../mainboard/ocp/deltalake.md
--
To view, visit https://review.coreboot.org/c/coreboot/+/52735
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ibead1c75bb4e41fedc2799366b5b006d76fc8f4e
Gerrit-Change-Number: 52735
Gerrit-PatchSet: 8
Gerrit-Owner: Jonathan Zhang <jonzhang(a)fb.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Anjaneya "Reddy" Chagam <anjaneya.chagam(a)intel.com>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: Marc Jones <marc(a)marcjonesconsulting.com>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Reviewer: ron minnich <rminnich(a)gmail.com>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-MessageType: merged
Attention is currently required from: David Hendricks.
Idwer Vollering has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/54022 )
Change subject: util/cbfstool: several fixes to build on OpenBSD
......................................................................
Patch Set 1: Code-Review-1
(1 comment)
Patchset:
PS1:
This depends on a (pending) change in vboot_reference.
--
To view, visit https://review.coreboot.org/c/coreboot/+/54022
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I69ca92175abef8d38c7bad2b2e9ed40f5cdd1d32
Gerrit-Change-Number: 54022
Gerrit-PatchSet: 1
Gerrit-Owner: Idwer Vollering <vidwer(a)gmail.com>
Gerrit-Reviewer: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: Idwer Vollering <vidwer(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Comment-Date: Mon, 10 May 2021 20:09:04 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
Attention is currently required from: Marc Jones, Anjaneya "Reddy" Chagam, Jonathan Zhang, Christian Walter, Stefan Reinauer, David Hendricks, ron minnich.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/52735 )
Change subject: doc/relnotes/4.14: add Intel Xeon-SP support status change
......................................................................
Patch Set 7: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/52735
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ibead1c75bb4e41fedc2799366b5b006d76fc8f4e
Gerrit-Change-Number: 52735
Gerrit-PatchSet: 7
Gerrit-Owner: Jonathan Zhang <jonzhang(a)fb.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Anjaneya "Reddy" Chagam <anjaneya.chagam(a)intel.com>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: Marc Jones <marc(a)marcjonesconsulting.com>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Reviewer: ron minnich <rminnich(a)gmail.com>
Gerrit-CC: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-CC: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Attention: Marc Jones <marc(a)marcjonesconsulting.com>
Gerrit-Attention: Anjaneya "Reddy" Chagam <anjaneya.chagam(a)intel.com>
Gerrit-Attention: Jonathan Zhang <jonzhang(a)fb.com>
Gerrit-Attention: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Attention: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Attention: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Attention: ron minnich <rminnich(a)gmail.com>
Gerrit-Comment-Date: Mon, 10 May 2021 20:06:32 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment