Attention is currently required from: Nikolai Artemiev, Ssunk, Stefan Reinauer.
Anastasia Klimchuk has posted comments on this change by Ssunk. ( https://review.coreboot.org/c/flashrom/+/83182?usp=email )
The change is no longer submittable: All-Comments-Resolved is unsatisfied now.
Change subject: flashchips: Add Support for XMC XM25QH16C/XM25QH16D
......................................................................
Patch Set 2:
(1 comment)
Patchset:
PS2:
Kan, could you please rebase this patch on the latest main branch?
The reason is I merged your other patch CB:83180 and now this one has merge conflict, because both patch were adding new chip model id macro on line 850 in flashchips.h
This one can go to line 851 now.
You will need to sync your local repo, rebase this commit on top and push the patch again.
Thank you!
--
To view, visit https://review.coreboot.org/c/flashrom/+/83182?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: flashrom
Gerrit-Branch: main
Gerrit-Change-Id: I215084ed33ca9261f6c7b91ef868ca8db85e61ad
Gerrit-Change-Number: 83182
Gerrit-PatchSet: 2
Gerrit-Owner: Ssunk <ssunkkan(a)gmail.com>
Gerrit-Reviewer: Anastasia Klimchuk <aklm(a)chromium.org>
Gerrit-Reviewer: Nikolai Artemiev <nartemiev(a)google.com>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Attention: Ssunk <ssunkkan(a)gmail.com>
Gerrit-Attention: Nikolai Artemiev <nartemiev(a)google.com>
Gerrit-Comment-Date: Thu, 27 Jun 2024 00:56:37 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Anastasia Klimchuk has submitted this change. ( https://review.coreboot.org/c/flashrom/+/83149?usp=email )
Change subject: util/ich_descriptors_tool: Add Panther Lake SoC to supported chipsets
......................................................................
util/ich_descriptors_tool: Add Panther Lake SoC to supported chipsets
This change extends the ich_descriptors_tool to recognize and process
descriptors for Intel's upcoming Panther Lake SoC.
BUG=b:347669091
TEST=ich_descriptors_tool is able to detect "panther" chipset and show
below information:
> ./util/ich_descriptors_tool/ich_descriptors_tool
Need the file name of a descriptor image to read from.
usage: './util/ich_descriptors_tool/ich_descriptors_tool -f
<image file name> [-c <chipset name>] [-d]'
...
...
To also print the data stored in the descriptor straps you have to
indicate the chipset series with the '-c' parameter and one of the
possible arguments:
- "ich8",
- "ich9",
- "ich10",
- "apollo" for Intel's Apollo Lake SoC.
- "gemini" for Intel's Gemini Lake SoC.
- "jasper" for Intel's Jasper Lake SoC.
- "meteor" for Intel's Meteor Lake SoC.
- "panther" for Intel's Panther Lake SoC.
...
...
- "300" or "cannon" for Intel's 300 series chipsets.
- "400" or "comet" for Intel's 400 series chipsets.
- "500" or "tiger" for Intel's 500 series chipsets.
- "600" or "alder" for Intel's 600 series chipsets.
Change-Id: I17d616d346daca15b43eb294401ac0c672b64c4a
Signed-off-by: Subrata Banik <subratabanik(a)google.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/83149
Reviewed-by: Anastasia Klimchuk <aklm(a)chromium.org>
Reviewed-by: Sam McNally <sammc(a)google.com>
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
---
M util/ich_descriptors_tool/ich_descriptors_tool.c
1 file changed, 3 insertions(+), 0 deletions(-)
Approvals:
build bot (Jenkins): Verified
Sam McNally: Looks good to me, but someone else must approve
Anastasia Klimchuk: Looks good to me, approved
diff --git a/util/ich_descriptors_tool/ich_descriptors_tool.c b/util/ich_descriptors_tool/ich_descriptors_tool.c
index 844d8e9..09587f7 100644
--- a/util/ich_descriptors_tool/ich_descriptors_tool.c
+++ b/util/ich_descriptors_tool/ich_descriptors_tool.c
@@ -129,6 +129,7 @@
"\t- \"gemini\" for Intel's Gemini Lake SoC.\n"
"\t- \"jasper\" for Intel's Jasper Lake SoC.\n"
"\t- \"meteor\" for Intel's Meteor Lake SoC.\n"
+"\t- \"panther\" for Intel's Panther Lake SoC.\n"
"\t- \"5\" or \"ibex\" for Intel's 5 series chipsets,\n"
"\t- \"6\" or \"cougar\" for Intel's 6 series chipsets,\n"
"\t- \"7\" or \"panther\" for Intel's 7 series chipsets.\n"
@@ -248,6 +249,8 @@
cs = CHIPSET_ELKHART_LAKE;
else if (strcmp(csn, "meteor") == 0)
cs = CHIPSET_METEOR_LAKE;
+ else if (strcmp(csn, "panther") == 0)
+ cs = CHIPSET_PANTHER_LAKE;
}
ret = read_ich_descriptors_from_dump(buf, len, &cs, &desc);
--
To view, visit https://review.coreboot.org/c/flashrom/+/83149?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: flashrom
Gerrit-Branch: main
Gerrit-Change-Id: I17d616d346daca15b43eb294401ac0c672b64c4a
Gerrit-Change-Number: 83149
Gerrit-PatchSet: 2
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Anastasia Klimchuk <aklm(a)chromium.org>
Gerrit-Reviewer: Hsuan Ting Chen <roccochen(a)chromium.org>
Gerrit-Reviewer: Sam McNally <sammc(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Attention is currently required from: Anastasia Klimchuk, Nikolai Artemiev, Stefan Reinauer.
Ssunk has posted comments on this change by Ssunk. ( https://review.coreboot.org/c/flashrom/+/83182?usp=email )
Change subject: flashchips: Add Support for XMC XM25QH16C/XM25QH16D
......................................................................
Patch Set 2:
(1 comment)
File flashchips.c:
https://review.coreboot.org/c/flashrom/+/83182/comment/57229c32_d4916d63?us… :
PS2, Line 21935: .voltage = {2700, 3600},
> I wanted to ask, why you set minimum voltage as 2. […]
Hi,
We will modify the operate voltage from 2.7~3.6v to 2.3v~3.6v for all the D family product and upload that to the official website soon.
Thanks
--
To view, visit https://review.coreboot.org/c/flashrom/+/83182?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: flashrom
Gerrit-Branch: main
Gerrit-Change-Id: I215084ed33ca9261f6c7b91ef868ca8db85e61ad
Gerrit-Change-Number: 83182
Gerrit-PatchSet: 2
Gerrit-Owner: Ssunk <ssunkkan(a)gmail.com>
Gerrit-Reviewer: Anastasia Klimchuk <aklm(a)chromium.org>
Gerrit-Reviewer: Nikolai Artemiev <nartemiev(a)google.com>
Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Gerrit-Attention: Anastasia Klimchuk <aklm(a)chromium.org>
Gerrit-Attention: Nikolai Artemiev <nartemiev(a)google.com>
Gerrit-Comment-Date: Wed, 26 Jun 2024 10:48:40 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Anastasia Klimchuk <aklm(a)chromium.org>
Attention is currently required from: Anastasia Klimchuk, Hsuan Ting Chen.
Hsuan-ting Chen has posted comments on this change by Hsuan-ting Chen. ( https://review.coreboot.org/c/flashrom/+/83219?usp=email )
Change subject: tests/selfcheck.c: Include the missing header lifecycle.h
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
I will get a build error in the CHROMIUM repository:
```
../tests/selfcheck.c:155:9: error: return type defaults to ‘int’ [-Werror=implicit-int]
155 | SKIP_TEST(selfcheck_board_matches_table)
| ^~~~~~~~~
../tests/selfcheck.c:155:9: error: no previous prototype for ‘SKIP_TEST’ [-Werror=missing-prototypes]
../tests/selfcheck.c: In function ‘SKIP_TEST’:
../tests/selfcheck.c:155:9: error: type of ‘selfcheck_board_matches_table’ defaults to ‘int’ [-Werror=implicit-int]
../tests/selfcheck.c:157: error: expected ‘{’ at end of input
../tests/selfcheck.c:157: error: control reaches end of non-void function [-Werror=return-type]
cc1: all warnings being treated as errors
[109/148] Generating doc/documentation with a custom command
ninja: build stopped: subcommand failed.
```
However, I cannot reproduce this error in the UPSTREAM version.
Regardless, adding this change makes sense to me – as long as we need it, we should include it.
--
To view, visit https://review.coreboot.org/c/flashrom/+/83219?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: flashrom
Gerrit-Branch: main
Gerrit-Change-Id: Ifc07ac66320712fdbf31504b9a980354c1883f40
Gerrit-Change-Number: 83219
Gerrit-PatchSet: 1
Gerrit-Owner: Hsuan-ting Chen <roccochen(a)google.com>
Gerrit-Reviewer: Anastasia Klimchuk <aklm(a)chromium.org>
Gerrit-Reviewer: Hsuan Ting Chen <roccochen(a)chromium.org>
Gerrit-Attention: Hsuan Ting Chen <roccochen(a)chromium.org>
Gerrit-Attention: Anastasia Klimchuk <aklm(a)chromium.org>
Gerrit-Comment-Date: Wed, 26 Jun 2024 10:14:27 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Attention is currently required from: Hsuan Ting Chen.
Hello Hsuan Ting Chen,
I'd like you to do a code review.
Please visit
https://review.coreboot.org/c/flashrom/+/83219?usp=email
to review the following change.
Change subject: tests/selfcheck.c: Include the missing header lifecycle.h
......................................................................
tests/selfcheck.c: Include the missing header lifecycle.h
selfcheck.c is using the macro SKIP_TEST, so we should include the
header lifecycle.h.
BUG=none
TEST=meson test -C builddir/
Change-Id: Ifc07ac66320712fdbf31504b9a980354c1883f40
Signed-off-by: Hsuan Ting Chen <roccochen(a)chromium.org>
---
M tests/selfcheck.c
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/19/83219/1
diff --git a/tests/selfcheck.c b/tests/selfcheck.c
index e235d8e..6e19f60 100644
--- a/tests/selfcheck.c
+++ b/tests/selfcheck.c
@@ -17,6 +17,7 @@
#include "string.h"
#include "include/test.h"
+#include "lifecycle.h"
#include "programmer.h"
#include "tests.h"
#include <cmocka.h>
--
To view, visit https://review.coreboot.org/c/flashrom/+/83219?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: flashrom
Gerrit-Branch: main
Gerrit-Change-Id: Ifc07ac66320712fdbf31504b9a980354c1883f40
Gerrit-Change-Number: 83219
Gerrit-PatchSet: 1
Gerrit-Owner: Hsuan-ting Chen <roccochen(a)google.com>
Gerrit-Reviewer: Hsuan Ting Chen <roccochen(a)chromium.org>
Gerrit-Attention: Hsuan Ting Chen <roccochen(a)chromium.org>