Attention is currently required from: Bora Guvendik, Jérémy Compostella, Kyoung Il Kim, Subrata Banik.
Cliff Huang has posted comments on this change by Cliff Huang. ( https://review.coreboot.org/c/coreboot/+/85196?usp=email )
Change subject: include/device/pci_ids.h: Add DIDs for Touch controller
......................................................................
Patch Set 1:
(1 comment)
Patchset:
PS1:
I am abandoning this CL. The changes is moved to: https://review.coreboot.org/c/coreboot/+/85198/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/85196?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ic9acd9dbba1cca1bb90bf49dbc3a1882262bd474
Gerrit-Change-Number: 85196
Gerrit-PatchSet: 1
Gerrit-Owner: Cliff Huang <cliff.huang(a)intel.com>
Gerrit-Reviewer: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Reviewer: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Reviewer: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Attention: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Comment-Date: Thu, 21 Nov 2024 20:22:37 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Attention is currently required from: Bora Guvendik, Jérémy Compostella, Kyoung Il Kim, Lance Zhao, Subrata Banik, Tim Wawrzynczak.
Hello Bora Guvendik, Jérémy Compostella, Kyoung Il Kim, Lance Zhao, Tim Wawrzynczak, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/85197?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Code-Review+1 by Jérémy Compostella, Verified+1 by build bot (Jenkins)
Change subject: acpi/acpigen: generate Create*Field() from name string directly
......................................................................
acpi/acpigen: generate Create*Field() from name string directly
The following functions are added:
_create_buffer_field
acpigen_write_create_buffer_byte_field
acpigen_write_create_buffer_word_field
acpigen_write_create_buffer_dword_field
acpigen_write_create_buffer_qword_field
These functions are to generate:
CreateByteField (<namestring> , offset, <field name>)
CreateWordField (<namestring> , offset, <field name>)
CreateDWordField (<namestring> , offset, <field name>)
CreateQWordField (<namestring> , offset, <field name>)
NOTE:
There are set of acpigen_write_create_[byte/word/dword/qword]_field
functions already, but the field can only be created from Arg[n] or
Local[n] variable objects. A Name object must be first assigned to such
variable. The new functions here will allow us to create field directly
from Name object.
BUG=none
Signed-off-by: Cliff Huang <cliff.huang(a)intel.com>
Change-Id: I725f17329c501c80d42034e0f6a2fccb2cef5915
---
M src/acpi/acpigen.c
M src/include/acpi/acpigen.h
2 files changed, 33 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/85197/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/85197?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I725f17329c501c80d42034e0f6a2fccb2cef5915
Gerrit-Change-Number: 85197
Gerrit-PatchSet: 2
Gerrit-Owner: Cliff Huang <cliff.huang(a)intel.com>
Gerrit-Reviewer: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Reviewer: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Reviewer: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Reviewer: Lance Zhao <lance.zhao(a)gmail.com>
Gerrit-Reviewer: Tim Wawrzynczak <inforichland(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Attention: Lance Zhao <lance.zhao(a)gmail.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Attention: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Attention: Tim Wawrzynczak <inforichland(a)gmail.com>
Attention is currently required from: Felix Held, Fred Reitberger, Jason Glenesk, Matt DeVillier.
Hello Fred Reitberger, Jason Glenesk, Matt DeVillier, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/85242?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Verified-1 by build bot (Jenkins)
Change subject: [WIP,UNTESTED] soc/amd/common/psp: add support for early PSP v2 access via SMN
......................................................................
[WIP,UNTESTED] soc/amd/common/psp: add support for early PSP v2 access via SMN
The MMIO mapping of the PSP mailbox registers can only be accessed once
the FSP or in the future openSIL has initialized the PSP MMIO region.
Before that, the PSP mailbox registers can only be accessed via their
SMN mapping.
TODO
Change-Id: Ice23d85b22a1974f8a0c100a16ac210073cc22fc
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/soc/amd/common/block/psp/Kconfig
M src/soc/amd/common/block/psp/Makefile.mk
M src/soc/amd/common/block/psp/psb.c
M src/soc/amd/common/block/psp/psp_def.h
M src/soc/amd/common/block/psp/psp_gen2.c
A src/soc/amd/common/block/psp/psp_gen2_mmio.c
A src/soc/amd/common/block/psp/psp_gen2_smn.c
7 files changed, 176 insertions(+), 100 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/85242/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/85242?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: newpatchset
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ice23d85b22a1974f8a0c100a16ac210073cc22fc
Gerrit-Change-Number: 85242
Gerrit-PatchSet: 2
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Fred Reitberger <reitbergerfred(a)gmail.com>
Gerrit-Reviewer: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Reviewer: Matt DeVillier <matt.devillier(a)amd.corp-partner.google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Attention: Matt DeVillier <matt.devillier(a)amd.corp-partner.google.com>
Gerrit-Attention: Fred Reitberger <reitbergerfred(a)gmail.com>
Gerrit-Attention: Felix Held <felix-coreboot(a)felixheld.de>
Attention is currently required from: Fred Reitberger, Jason Glenesk, Matt DeVillier.
Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85243?usp=email )
Change subject: [NOTFORMERGE] test case for SOC_AMD_COMMON_BLOCK_PSP_GEN2_EARLY_ACCESS
......................................................................
[NOTFORMERGE] test case for SOC_AMD_COMMON_BLOCK_PSP_GEN2_EARLY_ACCESS
Change-Id: Ia4097aa1de7c7a811cb91cfe6cbb9a412aa20042
Signed-off-by: Felix Held <felix-coreboot(a)felixheld.de>
---
M src/soc/amd/picasso/Kconfig
1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/43/85243/1
diff --git a/src/soc/amd/picasso/Kconfig b/src/soc/amd/picasso/Kconfig
index f450e29..93b23e2 100644
--- a/src/soc/amd/picasso/Kconfig
+++ b/src/soc/amd/picasso/Kconfig
@@ -78,6 +78,7 @@
select X86_AMD_FIXED_MTRRS
select X86_INIT_NEED_1_SIPI
select HAVE_X86_64_SUPPORT
+ select SOC_AMD_COMMON_BLOCK_PSP_GEN2_EARLY_ACCESS
help
AMD Picasso support
--
To view, visit https://review.coreboot.org/c/coreboot/+/85243?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ia4097aa1de7c7a811cb91cfe6cbb9a412aa20042
Gerrit-Change-Number: 85243
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Held <felix-coreboot(a)felixheld.de>
Gerrit-Reviewer: Fred Reitberger <reitbergerfred(a)gmail.com>
Gerrit-Reviewer: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Reviewer: Matt DeVillier <matt.devillier(a)amd.corp-partner.google.com>
Gerrit-Attention: Jason Glenesk <jason.glenesk(a)gmail.com>
Gerrit-Attention: Matt DeVillier <matt.devillier(a)amd.corp-partner.google.com>
Gerrit-Attention: Fred Reitberger <reitbergerfred(a)gmail.com>
Attention is currently required from: Bora Guvendik, Jérémy Compostella, Kyoung Il Kim, Lance Zhao, Subrata Banik, Tim Wawrzynczak.
Cliff Huang has posted comments on this change by Cliff Huang. ( https://review.coreboot.org/c/coreboot/+/85197?usp=email )
Change subject: acpi/acpigen: generate Create*Field() from name string directly
......................................................................
Patch Set 1:
(2 comments)
Commit Message:
https://review.coreboot.org/c/coreboot/+/85197/comment/5613c250_d95df931?us… :
PS1, Line 7: acpi/acpigen: generate Create*Field() from name string directly
> nit: What do you mean by `directly` ?
There are set of acpigen_write_create_[byte/word/dword/qword]_field functions already, but the field can be be created from Arg[n] or Local[n] variable objects. A Name object must be first assigned to such variables. The new functions here will allow to create directly from Name object. Let me add more details in the comment messages.
File src/acpi/acpigen.c:
https://review.coreboot.org/c/coreboot/+/85197/comment/e7a875e6_b3102a84?us… :
PS1, Line 2441: byte
> word_offset ?
offset in byte.
--
To view, visit https://review.coreboot.org/c/coreboot/+/85197?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I725f17329c501c80d42034e0f6a2fccb2cef5915
Gerrit-Change-Number: 85197
Gerrit-PatchSet: 1
Gerrit-Owner: Cliff Huang <cliff.huang(a)intel.com>
Gerrit-Reviewer: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Reviewer: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Reviewer: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Reviewer: Lance Zhao <lance.zhao(a)gmail.com>
Gerrit-Reviewer: Tim Wawrzynczak <inforichland(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Attention: Lance Zhao <lance.zhao(a)gmail.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Attention: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Attention: Tim Wawrzynczak <inforichland(a)gmail.com>
Gerrit-Comment-Date: Thu, 21 Nov 2024 18:37:39 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Comment-In-Reply-To: Jérémy Compostella <jeremy.compostella(a)intel.com>
Attention is currently required from: Sean Rhodes.
Matt DeVillier has posted comments on this change by Sean Rhodes. ( https://review.coreboot.org/c/coreboot/+/85228?usp=email )
Change subject: drivers/crb: Return an accurate status
......................................................................
Patch Set 1:
(1 comment)
File src/drivers/crb/tis.c:
https://review.coreboot.org/c/coreboot/+/85228/comment/46bc45dd_77299931?us… :
PS1, Line 93: ptt_active
looks like you might need to guard using `HAVE_INTEL_PTT` as above
--
To view, visit https://review.coreboot.org/c/coreboot/+/85228?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: If8236021bf0e1264646971cff9c998fac99ac220
Gerrit-Change-Number: 85228
Gerrit-PatchSet: 1
Gerrit-Owner: Sean Rhodes <sean(a)starlabs.systems>
Gerrit-Reviewer: Matt DeVillier <matt.devillier(a)gmail.com>
Gerrit-CC: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Sean Rhodes <sean(a)starlabs.systems>
Gerrit-Comment-Date: Thu, 21 Nov 2024 18:36:45 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Attention is currently required from: Bora Guvendik, Jérémy Compostella, Kyoung Il Kim, Subrata Banik.
Cliff Huang has posted comments on this change by Cliff Huang. ( https://review.coreboot.org/c/coreboot/+/85196?usp=email )
Change subject: include/device/pci_ids.h: Add DIDs for Touch controller
......................................................................
Patch Set 1:
(5 comments)
Patchset:
PS1:
> should be clubbed with CB:85198
sure. will this change move to 85198.
Commit Message:
https://review.coreboot.org/c/coreboot/+/85196/comment/0bf6aa28_0232fb74?us… :
PS1, Line 7: include/device/pci_ids.h: Add DIDs for Touch controller
> Looking at git log, `device/pci_ids: ` prefix is enough. […]
MTL DIDs are there there, but just to rename according to https://review.coreboot.org/c/coreboot/+/81330/comment/b7f5bc9d_a34d6a77/
Anyways, since Subrata suggests to move this to other CL. I will add this in the comment messages.
https://review.coreboot.org/c/coreboot/+/85196/comment/501826b6_c9accb3f?us… :
PS1, Line 13: 0x7e48 and 0x7ea4 are the DIDs when ThcMode is 0 (default) for THC0
> nit: If this is default, shouldn't the name of the constant be suffixed with `_DEFAULT` instead of ` […]
ok
https://review.coreboot.org/c/coreboot/+/85196/comment/50d879ee_29087dad?us… :
PS1, Line 13: 0x7ea4
> 0x7ea4 ? or 0x7e4a ?
0x7e4a is correct one. thx
https://review.coreboot.org/c/coreboot/+/85196/comment/53c2cf19_00ab6d75?us… :
PS1, Line 19:
> Unnecessary leading space
Acknowledged
--
To view, visit https://review.coreboot.org/c/coreboot/+/85196?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ic9acd9dbba1cca1bb90bf49dbc3a1882262bd474
Gerrit-Change-Number: 85196
Gerrit-PatchSet: 1
Gerrit-Owner: Cliff Huang <cliff.huang(a)intel.com>
Gerrit-Reviewer: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Reviewer: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Reviewer: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Bora Guvendik <bora.guvendik(a)intel.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Kyoung Il Kim <kyoung.il.kim(a)intel.com>
Gerrit-Attention: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-Comment-Date: Thu, 21 Nov 2024 18:29:24 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Subrata Banik <subratabanik(a)google.com>
Comment-In-Reply-To: Jérémy Compostella <jeremy.compostella(a)intel.com>
Attention is currently required from: Anil Kumar K, Pranava Y N, Subrata Banik.
Varun Upadhyay has posted comments on this change by Varun Upadhyay. ( https://review.coreboot.org/c/coreboot/+/85240?usp=email )
Change subject: mb/google/fatcat: Enable ALC721 on fatcat mainboard
......................................................................
Patch Set 1:
This change is ready for review.
--
To view, visit https://review.coreboot.org/c/coreboot/+/85240?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ie2a19e9cca9a9dcec34f285086d0053aead4d176
Gerrit-Change-Number: 85240
Gerrit-PatchSet: 1
Gerrit-Owner: Varun Upadhyay <varun.upadhyay(a)intel.com>
Gerrit-Reviewer: Anil Kumar K <anil.kumar.k(a)intel.com>
Gerrit-Reviewer: Pranava Y N <pranavayn(a)google.com>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Anil Kumar K <anil.kumar.k(a)intel.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Pranava Y N <pranavayn(a)google.com>
Gerrit-Comment-Date: Thu, 21 Nov 2024 17:45:41 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No