Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/83198?usp=email )
Change subject: Makefiles: Add site_local-target to run early in the build
......................................................................
Makefiles: Add site_local-target to run early in the build
This double-colon target doesn't do anything unless it's implemented by
another makefile. It's intended to be used only by the site-local
makefile to allow it to run any necessary steps before the actual
coreboot build begins.
Signed-off-by: Martin Roth <gaumless(a)gmail.com>
Change-Id: I01f98c9cf8375bca21ab87f9becf66a25402c758
---
M Makefile
M Makefile.mk
2 files changed, 8 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/98/83198/1
diff --git a/Makefile b/Makefile
index fddcc5c..c8f5fdf 100644
--- a/Makefile
+++ b/Makefile
@@ -217,8 +217,7 @@
# The primary target needs to be here before we include the
# other files
-
-real-all: real-target
+real-all: site-local-target real-target
# must come rather early
.SECONDARY:
diff --git a/Makefile.mk b/Makefile.mk
index 16b6539..19f74a2 100644
--- a/Makefile.mk
+++ b/Makefile.mk
@@ -90,6 +90,13 @@
.PHONY: show_notices
show_notices:: | show_coreboot
+# This rule allows the site-local makefile to run before starting the actual
+# coreboot build. It should not be used in the regular coreboot makefiles.
+# Note: This gets run after the immediate makefile code like updating the
+# submodules, but before any other targets.
+.PHONY: site-local-target
+site-local-target::
+
#######################################################################
# our phony targets
PHONY+= clean-abuild coreboot check-style build_complete
--
To view, visit https://review.coreboot.org/c/coreboot/+/83198?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: I01f98c9cf8375bca21ab87f9becf66a25402c758
Gerrit-Change-Number: 83198
Gerrit-PatchSet: 1
Gerrit-Owner: Martin L Roth <gaumless(a)gmail.com>
Attention is currently required from: Nick Vaccaro, Subrata Banik.
YH Lin has posted comments on this change by Subrata Banik. ( https://review.coreboot.org/c/coreboot/+/83197?usp=email )
Change subject: mb/google/fatcat: Add minimal code support for fatcat
......................................................................
Patch Set 3: Code-Review+1
--
To view, visit https://review.coreboot.org/c/coreboot/+/83197?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: Iad78aec51b2f0f240991c9c35842764a60be988e
Gerrit-Change-Number: 83197
Gerrit-PatchSet: 3
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: YH Lin <yueherngl(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Comment-Date: Mon, 24 Jun 2024 19:45:35 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Attention is currently required from: Nick Vaccaro, Subrata Banik, YH Lin.
Hello Nick Vaccaro, YH Lin, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/83197?usp=email
to look at the new patch set (#3).
Change subject: mb/google/fatcat: Add minimal code support for fatcat
......................................................................
mb/google/fatcat: Add minimal code support for fatcat
This patch adds initial code block required to build google/fatcat
board with Intel Meteor Lake Silicon. Later after the initial board
power-on is successful, we shall switch to Panther Lake silicon to
build the google/fatcat reference design.
BUG=b:347669091
TEST=Able to build the google/fatcat and able to hit power-on reset
using Intel Meteor Lake SoC platform.
Change-Id: Iad78aec51b2f0f240991c9c35842764a60be988e
Signed-off-by: Subrata Banik <subratabanik(a)google.com>
---
A src/mainboard/google/fatcat/Kconfig
A src/mainboard/google/fatcat/Kconfig.name
A src/mainboard/google/fatcat/Makefile.mk
A src/mainboard/google/fatcat/board_info.txt
A src/mainboard/google/fatcat/bootblock.c
A src/mainboard/google/fatcat/chromeos-debug-fsp.fmd
A src/mainboard/google/fatcat/chromeos.c
A src/mainboard/google/fatcat/chromeos.fmd
A src/mainboard/google/fatcat/dsdt.asl
A src/mainboard/google/fatcat/ec.c
A src/mainboard/google/fatcat/mainboard.c
A src/mainboard/google/fatcat/romstage.c
A src/mainboard/google/fatcat/smihandler.c
A src/mainboard/google/fatcat/variants/baseboard/fatcat/Makefile.mk
A src/mainboard/google/fatcat/variants/baseboard/fatcat/devicetree.cb
A src/mainboard/google/fatcat/variants/baseboard/fatcat/include/baseboard/ec.h
A src/mainboard/google/fatcat/variants/baseboard/fatcat/include/baseboard/gpio.h
A src/mainboard/google/fatcat/variants/baseboard/fatcat/memory.c
A src/mainboard/google/fatcat/variants/baseboard/include/baseboard/variants.h
A src/mainboard/google/fatcat/variants/fatcat/Makefile.mk
A src/mainboard/google/fatcat/variants/fatcat/gpio.c
A src/mainboard/google/fatcat/variants/fatcat/include/variant/ec.h
A src/mainboard/google/fatcat/variants/fatcat/include/variant/gpio.h
23 files changed, 702 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/83197/3
--
To view, visit https://review.coreboot.org/c/coreboot/+/83197?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: Iad78aec51b2f0f240991c9c35842764a60be988e
Gerrit-Change-Number: 83197
Gerrit-PatchSet: 3
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: YH Lin <yueherngl(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: YH Lin <yueherngl(a)google.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Attention is currently required from: Nick Vaccaro, Subrata Banik, YH Lin.
Hello Nick Vaccaro, YH Lin, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/83197?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: mb/google/fatcat: Add minimal code support for fatcat
......................................................................
mb/google/fatcat: Add minimal code support for fatcat
This patch adds initial code block requried to build google/fatcat
board with Intel Meteor Lake Silicon. Later after the initial board
power-on is successful, we shall switch to Panther Lake silicon to
build the google/fatcat reference design.
BUG=b:347669091
TEST=Able to build the google/fatcat and able to hit power-on reset
using Intel Meteor Lake SoC platform.
Change-Id: Iad78aec51b2f0f240991c9c35842764a60be988e
Signed-off-by: Subrata Banik <subratabanik(a)google.com>
---
A src/mainboard/google/fatcat/Kconfig
A src/mainboard/google/fatcat/Kconfig.name
A src/mainboard/google/fatcat/Makefile.mk
A src/mainboard/google/fatcat/board_info.txt
A src/mainboard/google/fatcat/bootblock.c
A src/mainboard/google/fatcat/chromeos-debug-fsp.fmd
A src/mainboard/google/fatcat/chromeos.c
A src/mainboard/google/fatcat/chromeos.fmd
A src/mainboard/google/fatcat/dsdt.asl
A src/mainboard/google/fatcat/ec.c
A src/mainboard/google/fatcat/mainboard.c
A src/mainboard/google/fatcat/romstage.c
A src/mainboard/google/fatcat/smihandler.c
A src/mainboard/google/fatcat/variants/baseboard/fatcat/Makefile.mk
A src/mainboard/google/fatcat/variants/baseboard/fatcat/devicetree.cb
A src/mainboard/google/fatcat/variants/baseboard/fatcat/include/baseboard/ec.h
A src/mainboard/google/fatcat/variants/baseboard/fatcat/include/baseboard/gpio.h
A src/mainboard/google/fatcat/variants/baseboard/fatcat/memory.c
A src/mainboard/google/fatcat/variants/baseboard/include/baseboard/variants.h
A src/mainboard/google/fatcat/variants/fatcat/Makefile.mk
A src/mainboard/google/fatcat/variants/fatcat/gpio.c
A src/mainboard/google/fatcat/variants/fatcat/include/variant/ec.h
A src/mainboard/google/fatcat/variants/fatcat/include/variant/gpio.h
23 files changed, 702 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/97/83197/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/83197?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: Iad78aec51b2f0f240991c9c35842764a60be988e
Gerrit-Change-Number: 83197
Gerrit-PatchSet: 2
Gerrit-Owner: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)google.com>
Gerrit-Reviewer: YH Lin <yueherngl(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: YH Lin <yueherngl(a)google.com>
Gerrit-Attention: Subrata Banik <subratabanik(a)google.com>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)google.com>
Attention is currently required from: Christian Walter, Michał Żygowski.
Maciej Pijanowski has posted comments on this change by Maciej Pijanowski. ( https://review.coreboot.org/c/coreboot/+/73972?usp=email )
Change subject: intelmetool: Add PCI ID for TGL-U, ADL-P, ADL-S
......................................................................
Patch Set 5:
(1 comment)
File util/intelmetool/intelmetool.h:
https://review.coreboot.org/c/coreboot/+/73972/comment/d2005983_1220954c?us… :
PS1, Line 441: #define PCI_DEVICE_ID_INTEL_TIGERLAKE 0xA0E0 /* Tiger Lake */
: #define PCI_DEVICE_ID_INTEL_ALDERLAKE_P 0x51E0 /* Alder Lake P */
: #define PCI_DEVICE_ID_INTEL_ALDERLAKE_S 0x7AE8 /* Alder Lake S */
> Now when I look at it, those extra IDs are for HECI2/3/4 devices, which typically are not available. […]
Rebased and added back the original entries
--
To view, visit https://review.coreboot.org/c/coreboot/+/73972?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: I1c2617a8e2f77f322f43b93ef1083576faaa42a8
Gerrit-Change-Number: 73972
Gerrit-PatchSet: 5
Gerrit-Owner: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-Attention: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Comment-Date: Mon, 24 Jun 2024 18:59:22 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Comment-In-Reply-To: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Attention is currently required from: Christian Walter, Maciej Pijanowski.
Hello Christian Walter, Michał Żygowski, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/73972?usp=email
to look at the new patch set (#5).
Change subject: intelmetool: Add PCI ID for TGL-U, ADL-P, ADL-S
......................................................................
intelmetool: Add PCI ID for TGL-U, ADL-P, ADL-S
Tested on:
- NovaCustom NV4X (TGL-U)
- NovaCustom NV4X (ADL-P)
- MSI Z690-A (ADL-S)
Signed-off-by: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Change-Id: I1c2617a8e2f77f322f43b93ef1083576faaa42a8
---
M util/intelmetool/intelmetool.h
1 file changed, 6 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/73972/5
--
To view, visit https://review.coreboot.org/c/coreboot/+/73972?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: I1c2617a8e2f77f322f43b93ef1083576faaa42a8
Gerrit-Change-Number: 73972
Gerrit-PatchSet: 5
Gerrit-Owner: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Gerrit-Attention: Christian Walter <christian.walter(a)9elements.com>
Attention is currently required from: Christian Walter, Maciej Pijanowski.
Hello Christian Walter, Michał Żygowski, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/73972?usp=email
to look at the new patch set (#4).
Change subject: intelmetool: Add PCI ID for TGL-U, ADL-P, ADL-S
......................................................................
intelmetool: Add PCI ID for TGL-U, ADL-P, ADL-S
Tested on:
- NovaCustom NV4X (TGL-U)
- NovaCustom NV4X (ADL-P)
- MSI Z690-A (ADL-S)
Signed-off-by: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Change-Id: I1c2617a8e2f77f322f43b93ef1083576faaa42a8
---
M util/intelmetool/intelmetool.h
1 file changed, 15 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/73972/4
--
To view, visit https://review.coreboot.org/c/coreboot/+/73972?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: I1c2617a8e2f77f322f43b93ef1083576faaa42a8
Gerrit-Change-Number: 73972
Gerrit-PatchSet: 4
Gerrit-Owner: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Gerrit-Reviewer: Christian Walter <christian.walter(a)9elements.com>
Gerrit-Reviewer: Michał Żygowski <michal.zygowski(a)3mdeb.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Maciej Pijanowski <maciej.pijanowski(a)3mdeb.com>
Gerrit-Attention: Christian Walter <christian.walter(a)9elements.com>
Attention is currently required from: Julius Werner, Martin L Roth, Martin Roth, Nico Huber.
Matt DeVillier has posted comments on this change by Martin L Roth. ( https://review.coreboot.org/c/coreboot/+/83118?usp=email )
Change subject: Kconfig: Update FW_CONFIG Kconfig options
......................................................................
Patch Set 2: Code-Review+2
--
To view, visit https://review.coreboot.org/c/coreboot/+/83118?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: Icf170dc2ef790d6f5a897a9c7c2ea64033bf1dc9
Gerrit-Change-Number: 83118
Gerrit-PatchSet: 2
Gerrit-Owner: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Reviewer: Julius Werner <jwerner(a)chromium.org>
Gerrit-Reviewer: Matt DeVillier <matt.devillier(a)amd.corp-partner.google.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Martin Roth <martin.roth(a)amd.corp-partner.google.com>
Gerrit-Attention: Nico Huber <nico.h(a)gmx.de>
Gerrit-Attention: Martin L Roth <gaumless(a)gmail.com>
Gerrit-Attention: Julius Werner <jwerner(a)chromium.org>
Gerrit-Attention: Martin Roth <martin.roth(a)amd.corp-partner.google.com>
Gerrit-Comment-Date: Mon, 24 Jun 2024 18:55:50 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes