Nico Huber has uploaded a new patch set (#2). ( https://review.coreboot.org/c/libgfxinit/+/35528 )
Change subject: gma: Refactor Update_Outputs() ......................................................................
gma: Refactor Update_Outputs()
In Update_Outputs(), we used to have two steps, iterating over all available pipes: We disabled all pipes whose mode changed or that would be disabled otherwise. Then, we enabled all pipes with new modes.
As checks for validity of the configurations were only done on demand in the second step, that left us with no knowledge about what configs would actually be tried. To make this information available for future work, we add a validation step before the existing two. That gives us:
1. Validate all new configs 2. Disable pipes - whose mode changed - that were disconneced - whose config didn't validate 3. Enable/update pipes with new configs
This way, we can make global decisions ahead of 2. and 3. based on the remaining, _valid_ configurations.
The `Loop_Invariant` of 1. allows us to keep the validation in mind, to satisfy pre-conditions of the various steps ahead.
Change-Id: I079ae8f85c821a272b5d095c1ef437ee804aa9ac Signed-off-by: Nico Huber nico.h@gmx.de --- M common/hw-gfx-gma-config_helpers.ads M common/hw-gfx-gma.adb 2 files changed, 60 insertions(+), 50 deletions(-)
git pull ssh://review.coreboot.org:29418/libgfxinit refs/changes/28/35528/2