Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/71590 )
Change subject: Documentation/releases: Start getting ready for the 4.19 release
......................................................................
Documentation/releases: Start getting ready for the 4.19 release
Signed-off-by: Martin Roth <gaumless(a)gmail.com>
Change-Id: I3edbf3ebc74ebae5896196b43dd5be014f27a0ec
---
M Documentation/releases/coreboot-4.19-relnotes.md
1 file changed, 137 insertions(+), 13 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/71590/1
diff --git a/Documentation/releases/coreboot-4.19-relnotes.md b/Documentation/releases/coreboot-4.19-relnotes.md
index 20b052e..0ebd08f 100644
--- a/Documentation/releases/coreboot-4.19-relnotes.md
+++ b/Documentation/releases/coreboot-4.19-relnotes.md
@@ -1,7 +1,20 @@
Upcoming release - coreboot 4.19
========================================================================
-The 4.19 release is planned for January 2023.
+The 4.19 release is planned for the 15th of January 2023.
+
+Since the last release, the coreboot project has merged almost 1500
+commits from over 150 authors. Of those authors, more than 20 were
+first-time committers to the coreboot project.
+
+As always, we are very grateful to all of the contributors for helping
+to keep the project going. The coreboot project is different from many
+open source projects in that we need to keep constantly updating the
+codebase to stay relevent with the latest processors and technologies.
+It takes constant effort to just stay afloat, let alone improve the
+codebase. Thank you very much to everyone who has contributed, both
+in this release and in previous times.
+
Update this document with changes that should be in the release notes.
@@ -12,17 +25,102 @@
* Note that all changes before the release are done are marked upcoming.
A final version of the notes are done after the release.
-Significant changes
--------------------
+Significant or interesting changes
+----------------------------------
-### Add significant changes here
+### Show all Kconfig options in saved config file, compress it
+The coreboot build system automatically adds a 'config' file to CBFS
+that lists the exact Kconfig configuration that the image was built
+with. This is useful to reproduce a build after the fact or to check
+whether support for a specific feature is enabled in the image.
+
+This file has been generated using the 'savedefconfig' Kconfig command,
+which generates the minimal .config file that is needed to produce the
+required config in a coreboot build. This is fine for reproduction, but
+bad when you want to check if a certain config was enabled, since many
+optoins get enabled by default or pulled in through another option's
+'select' statement and thus don't show up in the defconfig.
+
+Instead coreboot now includes a larger .config instead. In order to save
+some space, all of the comments disabling options are removed from the
+file, except for those included in the defconfig.
+
+We can also LZMA compress the filevsince it is never read by firmware
+itself and only intended for later re-extraction via cbfstool, which
+always has LZMA support included. Additional coreboot changes
Additional coreboot changes
---------------------------
-* One or two line change comments go here
+* Significant work to enable and build-test clang builds
+
+
+
+New Mainboards
+--------------
+
+* AMD: Mayan for Morgana SoC
+* GIGABYTE: GA-H61M-DS2
+* Google: Crystaldrift
+* Google: Gladios
+* Google: Marasov
+* Google: Voltorb
+* Intel: Meteorlake-P RVP
+* Siemens: MC_EHL3
+* Star Labs: StarBook Mk VI (i3-1220P and i7-1260P)
+* System76: darp8
+* System76: galp6
+
+Removed Mainboards
+-------------------
+
+* AMD: Inagua
+* AMD: Olive Hill
+* AMD: Parmer
+* AMD: Persimmon
+* AMD: Southstation
+* AMD: Thatcher
+* AMD: Unionstation
+* ASROCK: E350M1
+* ASROCK: IMB-A180
+* ASUS: A88XM-E
+* ASUS: AM1I-A
+* ASUS: F2A85-M
+* ASUS: F2A85-M LE
+* ASUS: F2A85-M PRO
+* BAP: ODE_e20xx
+* Biostar: A68N-5200
+* Biostar: AM1ML
+* ELMEX: pcm205400
+* ELMEX: pcm205401
+* GizmoSphere: Gizmo
+* GizmoSphere: Gizmo2
+* HP: ABM
+* HP: Pavilion m6 1035dx
+* Jetway: NF81_T56N_LF
+* Lenovo: AMD G505s
+* LiPPERT: FrontRunner-AF aka ADLINK CoreModule2-GF
+* LiPPERT: Toucan-AF aka cExpress-GFR (+W83627DHG SIO)
+* MSI: MS-7721 (FM2-A75MA-E35)
+* PC Engines: APU1
+
+
+New SoCs
+-------------------
+
+* src/soc/amd/glinda
+* src/soc/intel/xeon_sp/lbg
+
+
+Removed processors
+-------------------
+
+* src/cpu/amd/agesa/family14
+* src/cpu/amd/agesa/family15tn
+* src/cpu/amd/agesa/family16kb
+
@@ -33,17 +131,15 @@
-Plans for Code Deprecation
---------------------------
-
+Plans to move platform support to a branch:
+-------------------------------------------
### Intel Icelake SoC & Icelake RVP mainboard
-Intel Icelake is unmaintained. Also, the only user of this platform ever
-was the Intel CRB (Customer Reference Board). From the looks of it the
-code was never ready for production as only engineering sample CPUIDs
-are supported. This reduces the maintanence overhead for the coreboot
-project.
+Intel Icelake is unmaintained and the only user of this platform ever
+was the Intel CRB (Customer Reference Board). From the looks of the
+code, it was never ready for production as only engineering sample
+CPUIDs are supported.
Intel Icelake code will be removed with release 4.19 and any maintenence
will be done on the 4.19 branch. This consists of the Intel Icelake SoC
@@ -62,3 +158,21 @@
* Intel Quark SoC
* Intel Galileo mainboard
+
+
+Statistics from the 4.18 to the 4.19 release
+--------------------------------------------
+
+- Total Commits: 1376
+- Average Commits per day: 18.24
+- Total lines added: 83954
+- Average lines added per commit: 61.01
+- Number of patches adding more than 100 lines: 69
+- Average lines added per small commit: 38.96
+- Total lines removed: 765520
+- Average lines removed per commit: 556.34
+- Total difference between added and removed: -681566
+
+
+Known Issues
+------------
--
To view, visit https://review.coreboot.org/c/coreboot/+/71590
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I3edbf3ebc74ebae5896196b43dd5be014f27a0ec
Gerrit-Change-Number: 71590
Gerrit-PatchSet: 1
Gerrit-Owner: Martin L Roth <gaumless(a)gmail.com>
Gerrit-MessageType: newchange
Attention is currently required from: Jeremy Compostella, Kapil Porwal, Angel Pons.
Subrata Banik has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/71265 )
Change subject: drivers/pc80/vga: Add API to write multi-line video message
......................................................................
Patch Set 7:
(1 comment)
Patchset:
PS6:
> > can we add these cls to the rest of the libgfxinit relation chain […]
Ack
--
To view, visit https://review.coreboot.org/c/coreboot/+/71265
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib837e4deeba9b84038a91c93a68f03cee3474f9b
Gerrit-Change-Number: 71265
Gerrit-PatchSet: 7
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Jeremy Compostella <jeremy.compostella(a)gmail.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Tarun Tuli <taruntuli(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Jeremy Compostella <jeremy.compostella(a)gmail.com>
Gerrit-Attention: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Comment-Date: Sat, 31 Dec 2022 14:40:00 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Tarun Tuli <taruntuli(a)google.com>
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Gerrit-MessageType: comment
Attention is currently required from: Subrata Banik, Jeremy Compostella, Kapil Porwal, Angel Pons.
Tarun Tuli has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/71265 )
Change subject: drivers/pc80/vga: Add API to write multi-line video message
......................................................................
Patch Set 7: Code-Review+2
(2 comments)
File src/include/pc80/vga.h:
https://review.coreboot.org/c/coreboot/+/71265/comment/9186cfc7_af0e7959
PS6, Line 11: #define VGA_TEXT_HORIZONTAL_TOP 0
> > are these used anywhere? […]
got it. make sense.
https://review.coreboot.org/c/coreboot/+/71265/comment/fc40f3f7_afd45f81
PS6, Line 12: #define VGA_TEXT_HORIZONTAL_MIDDLE (VGA_LINES / 2)
> > are these used anywhere? […]
got it. make sense.
--
To view, visit https://review.coreboot.org/c/coreboot/+/71265
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Ib837e4deeba9b84038a91c93a68f03cee3474f9b
Gerrit-Change-Number: 71265
Gerrit-PatchSet: 7
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Jeremy Compostella <jeremy.compostella(a)gmail.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Tarun Tuli <taruntuli(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Jeremy Compostella <jeremy.compostella(a)gmail.com>
Gerrit-Attention: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Attention: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Comment-Date: Sat, 31 Dec 2022 14:25:40 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: Yes
Comment-In-Reply-To: Tarun Tuli <taruntuli(a)google.com>
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Gerrit-MessageType: comment
Felix Singer has submitted this change. ( https://review.coreboot.org/c/coreboot/+/61123 )
Change subject: security/intel/stm/StmPlatformResource.c: Fix typo on "threads"
......................................................................
security/intel/stm/StmPlatformResource.c: Fix typo on "threads"
Change-Id: Id57a9c689d5fa35cf1b4df9c37b12dd95cb9ef23
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61123
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Paul Menzel <paulepanter(a)mailbox.org>
Reviewed-by: Felix Singer <felixsinger(a)posteo.net>
---
M src/security/intel/stm/StmPlatformResource.c
1 file changed, 15 insertions(+), 1 deletion(-)
Approvals:
build bot (Jenkins): Verified
Paul Menzel: Looks good to me, but someone else must approve
Felix Singer: Looks good to me, approved
diff --git a/src/security/intel/stm/StmPlatformResource.c b/src/security/intel/stm/StmPlatformResource.c
index 4e56e2e..ad7cf1d 100644
--- a/src/security/intel/stm/StmPlatformResource.c
+++ b/src/security/intel/stm/StmPlatformResource.c
@@ -118,7 +118,7 @@
rsc_pm_io.base = (uint16_t)get_pmbase();
- // Local APIC. We assume that all thteads are programmed identically
+ // Local APIC. We assume that all threads are programmed identically
// despite that it is possible to have individual APIC address for
// each of the threads. If this is the case this programming should
// be corrected.
--
To view, visit https://review.coreboot.org/c/coreboot/+/61123
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Id57a9c689d5fa35cf1b4df9c37b12dd95cb9ef23
Gerrit-Change-Number: 61123
Gerrit-PatchSet: 2
Gerrit-Owner: Elyes Haouas <ehaouas(a)noos.fr>
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: EricR Lai <ericr_lai(a)compal.corp-partner.google.com>
Gerrit-Reviewer: Eugene Myers <cedarhouse1(a)comcast.net>
Gerrit-Reviewer: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)mailbox.org>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: merged