Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
soc/amd/common: Move lpc_util to verstage_x86
The file seems to be all about PCI configuration access.
Change-Id: I1e64d3d7df3caa33ee92961fe7246d03f2707ab4 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/soc/amd/common/block/lpc/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/28/43328/1
diff --git a/src/soc/amd/common/block/lpc/Makefile.inc b/src/soc/amd/common/block/lpc/Makefile.inc index 7db176b..b55004c 100644 --- a/src/soc/amd/common/block/lpc/Makefile.inc +++ b/src/soc/amd/common/block/lpc/Makefile.inc @@ -1,7 +1,7 @@ ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_LPC) += lpc.c
bootblock-$(CONFIG_SOC_AMD_COMMON_BLOCK_LPC) += lpc_util.c -verstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_LPC) += lpc_util.c +verstage_x86-$(CONFIG_SOC_AMD_COMMON_BLOCK_LPC) += lpc_util.c romstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_LPC) += lpc_util.c postcar-$(CONFIG_SOC_AMD_COMMON_BLOCK_LPC) += lpc_util.c ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_LPC) += lpc_util.c
Raul Rangel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
Patch Set 1: Code-Review+2
Kyösti Mälkki has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/43328/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/43328/1//COMMIT_MSG@9 PS1, Line 9: The file seems to be all about PCI configuration access. Rebase on CB:43307 once it is fixed.
Kyösti Mälkki has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
Abandoned
Kyösti Mälkki has restored this change. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
Restored
Hello build bot (Jenkins), Raul Rangel, Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/43328
to look at the new patch set (#2).
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
soc/amd/common: Move lpc_util to verstage_x86
The file seems to be all about PCI configuration access.
Change-Id: I1e64d3d7df3caa33ee92961fe7246d03f2707ab4 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/soc/amd/common/block/lpc/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/28/43328/2
Felix Held has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
Patch Set 3: Code-Review+2
Felix Held has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
Patch Set 3:
(1 comment)
https://review.coreboot.org/c/coreboot/+/43328/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/43328/1//COMMIT_MSG@9 PS1, Line 9: The file seems to be all about PCI configuration access.
Rebase on CB:43307 once it is fixed.
Done
Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/43328 )
Change subject: soc/amd/common: Move lpc_util to verstage_x86 ......................................................................
soc/amd/common: Move lpc_util to verstage_x86
The file seems to be all about PCI configuration access.
Change-Id: I1e64d3d7df3caa33ee92961fe7246d03f2707ab4 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/43328 Reviewed-by: Felix Held felix-coreboot@felixheld.de Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/amd/common/block/lpc/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Felix Held: Looks good to me, approved
diff --git a/src/soc/amd/common/block/lpc/Makefile.inc b/src/soc/amd/common/block/lpc/Makefile.inc index 68e528f..4fbc061 100644 --- a/src/soc/amd/common/block/lpc/Makefile.inc +++ b/src/soc/amd/common/block/lpc/Makefile.inc @@ -3,7 +3,7 @@ ramstage-y += lpc.c
bootblock-y += lpc_util.c -verstage-y += lpc_util.c +verstage_x86-y += lpc_util.c romstage-y += lpc_util.c postcar-y += lpc_util.c ramstage-y += lpc_util.c