Matt DeVillier has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
mb/purism/librem_skl: guard selection of GMA presence straps
unconditionally selecting GFX_GMA_IGNORE_PRESENCE_STRAPS creates a hard dependency on MAINBOARD_USE_LIBGFXINIT, preventing a user from using an alternative (or no) display init, so guard it appropriately.
Test: build Librem 13v4 with FSP, VGA, and no display init.
Change-Id: Ibdfe0b2bf26a9a49fb5cb669329690894de71dbd Signed-off-by: Matt DeVillier matt.devillier@puri.sm --- M src/mainboard/purism/librem_skl/Kconfig 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/89/43489/1
diff --git a/src/mainboard/purism/librem_skl/Kconfig b/src/mainboard/purism/librem_skl/Kconfig index cd8fc66..f47c368 100644 --- a/src/mainboard/purism/librem_skl/Kconfig +++ b/src/mainboard/purism/librem_skl/Kconfig @@ -2,7 +2,7 @@ def_bool n select BOARD_ROMSIZE_KB_16384 select DRIVERS_GENERIC_CBFS_SERIAL - select GFX_GMA_IGNORE_PRESENCE_STRAPS + select GFX_GMA_IGNORE_PRESENCE_STRAPS if MAINBOARD_USE_LIBGFXINIT select HAVE_ACPI_RESUME select HAVE_ACPI_TABLES select INTEL_GMA_HAVE_VBT
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
Patch Set 1: Code-Review-1
How about making GFX_GMA_IGNORE_PRESENCE_STRAPS not depend on libgfxinit?
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/43489/1/src/mainboard/purism/librem... File src/mainboard/purism/librem_skl/Kconfig:
https://review.coreboot.org/c/coreboot/+/43489/1/src/mainboard/purism/librem... PS1, Line 5: select GFX_GMA_IGNORE_PRESENCE_STRAPS if MAINBOARD_USE_LIBGFXINIT This will need to be done for each mainboard that wants to use this option. How about this? CB:43491
Matt DeVillier has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/43489/1/src/mainboard/purism/librem... File src/mainboard/purism/librem_skl/Kconfig:
https://review.coreboot.org/c/coreboot/+/43489/1/src/mainboard/purism/librem... PS1, Line 5: select GFX_GMA_IGNORE_PRESENCE_STRAPS if MAINBOARD_USE_LIBGFXINIT
This will need to be done for each mainboard that wants to use this option. […]
does it make sense to have that option selectable and not do anything? I'm not opposed to your solution, just wondering if we'd ever use it otherwise
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/43489/1/src/mainboard/purism/librem... File src/mainboard/purism/librem_skl/Kconfig:
https://review.coreboot.org/c/coreboot/+/43489/1/src/mainboard/purism/librem... PS1, Line 5: select GFX_GMA_IGNORE_PRESENCE_STRAPS if MAINBOARD_USE_LIBGFXINIT
does it make sense to have that option selectable and not do anything? I'm not opposed to your solut […]
We won't use it. But the other boolean options are already outside the if for the same reason. CB:43491 should go in anyway, IMHO.
Matt DeVillier has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
Abandoned
abandoned in favor of CB:43491
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/43489 )
Change subject: mb/purism/librem_skl: guard selection of GMA presence straps ......................................................................
Patch Set 1:
(1 comment)
https://review.coreboot.org/c/coreboot/+/43489/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/43489/1//COMMIT_MSG@9 PS1, Line 9: unconditionally Please start with a capital letter.
Unconditionally