Patrick Georgi has uploaded a new patch set (#4) to the change originally created by Sridhar Siricilla. ( https://review.coreboot.org/c/coreboot/+/46072 )
Change subject: soc/intel/tigerlake: Reflow long lines
......................................................................
soc/intel/tigerlake: Reflow long lines
Use the 96 character limit.
Signed-off-by: Sridhar Siricilla <sridhar.siricilla(a)intel.com>
Change-Id: I43d77db1f81d72aa13f3a702abff490a68a52bd7
---
M src/soc/intel/tigerlake/meminit.c
1 file changed, 2 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/72/46072/4
--
To view, visit https://review.coreboot.org/c/coreboot/+/46072
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I43d77db1f81d72aa13f3a702abff490a68a52bd7
Gerrit-Change-Number: 46072
Gerrit-PatchSet: 4
Gerrit-Owner: Sridhar Siricilla <sridhar.siricilla(a)intel.com>
Gerrit-Reviewer: Aamir Bohra <aamir.bohra(a)intel.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: newpatchset
Marc Jones has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/46309 )
Change subject: soc/intel/xeon_sp/cpx: Implement platform_fsp_silicon_init_params_cb
......................................................................
soc/intel/xeon_sp/cpx: Implement platform_fsp_silicon_init_params_cb
platform_fsp_silicon_init_params_cb is called by the fsp driver and
calls mainboard_silicon_init_params which sets the mainboard
PCH GPIOs.
Change-Id: Icf401e76741a6a7484295e999ddd566fe9510898
Signed-off-by: Marc Jones <marcjones(a)sysproconsulting.com>
---
M src/soc/intel/xeon_sp/cpx/chip.c
1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/09/46309/1
diff --git a/src/soc/intel/xeon_sp/cpx/chip.c b/src/soc/intel/xeon_sp/cpx/chip.c
index f69797a..6d2dfba 100644
--- a/src/soc/intel/xeon_sp/cpx/chip.c
+++ b/src/soc/intel/xeon_sp/cpx/chip.c
@@ -489,9 +489,11 @@
DEV_FUNC_EXIT(dev);
}
+/* UPD parameters to be initialized before SiliconInit */
void platform_fsp_silicon_init_params_cb(FSPS_UPD *silupd)
{
- /* not implemented yet */
+
+ mainboard_silicon_init_params(silupd);
}
#if CONFIG(HAVE_ACPI_TABLES)
--
To view, visit https://review.coreboot.org/c/coreboot/+/46309
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Icf401e76741a6a7484295e999ddd566fe9510898
Gerrit-Change-Number: 46309
Gerrit-PatchSet: 1
Gerrit-Owner: Marc Jones <marc(a)marcjonesconsulting.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-MessageType: newchange
Hello Felix Singer, build bot (Jenkins), Nico Huber, Patrick Georgi, Martin Roth, Furquan Shaikh, Duncan Laurie, Paul Menzel, Tim Wawrzynczak, Subrata Banik, Patrick Rudolph,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/46531
to look at the new patch set (#7).
Change subject: util/sconfig: allow to override chip-wrapped devices
......................................................................
util/sconfig: allow to override chip-wrapped devices
Currently, when a overridetree disables a device wrapped by a chip
driver in the base tree, without having the same wrapping chip, sconfig
mistakenly creates two instances of the same device. This leads to a
conflict. The following example shows that:
base tree:
chip soc/intel/whateverlake
device domain 0 on
chip drivers/wifi/generic
device pci 14.3 on end
end
end
end
overridetree:
...
device pci 14.3 off end
...
The static.[ch] then contains two declarations of the same device:
extern DEVTREE_CONST struct device *DEVTREE_CONST __pci_0_14_3;
...
extern DEVTREE_CONST struct device *DEVTREE_CONST __pci_0_14_3;
The same problem appears with the newly introduced chipset devicetrees,
that only include the device without chip driver. An overridetree
wrapping such device by a chip driver - which the same example above
with swapped base and overridetree represents - will lead to the same
problem.
To cover such use cases, move the match check for chip drivers into the
device update procedure and override the base chip accordingly if the
chip driver does not match. If the chip driver matches, there is no
change to the original behaviour.
Change-Id: I6364b3a6e1804a23503f42c66c5001e42f911270
Signed-off-by: Michael Niewöhner <foss(a)mniewoehner.de>
---
M util/sconfig/main.c
1 file changed, 37 insertions(+), 26 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/46531/7
--
To view, visit https://review.coreboot.org/c/coreboot/+/46531
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I6364b3a6e1804a23503f42c66c5001e42f911270
Gerrit-Change-Number: 46531
Gerrit-PatchSet: 7
Gerrit-Owner: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Duncan Laurie <dlaurie(a)chromium.org>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: newpatchset
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/46531 )
Change subject: util/sconfig: allow to override chip-wrapped devices
......................................................................
Patch Set 6:
(2 comments)
https://review.coreboot.org/c/coreboot/+/46531/6/util/sconfig/main.c
File util/sconfig/main.c:
https://review.coreboot.org/c/coreboot/+/46531/6/util/sconfig/main.c@1595
PS6, Line 1595: if (chip_match(base_dev, override_dev))
that open brace { should be on the previous line
https://review.coreboot.org/c/coreboot/+/46531/6/util/sconfig/main.c@1618
PS6, Line 1618: * Update base_chip_instance member in chip instance of override tree to forward it to
line over 96 characters
--
To view, visit https://review.coreboot.org/c/coreboot/+/46531
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I6364b3a6e1804a23503f42c66c5001e42f911270
Gerrit-Change-Number: 46531
Gerrit-PatchSet: 6
Gerrit-Owner: Michael Niewöhner <foss(a)mniewoehner.de>
Gerrit-Reviewer: Felix Singer <felixsinger(a)posteo.net>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com>
Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Subrata Banik <subrata.banik(a)intel.com>
Gerrit-Reviewer: Tim Wawrzynczak <twawrzynczak(a)chromium.org>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Sun, 18 Oct 2020 00:45:33 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment