| commit | 5d08a93cb9ebe2a411561dd9c635f7a066e2b5d1 | [log] [tgz] |
|---|---|---|
| author | Arthur Heymans <arthur@aheymans.xyz> | Wed Mar 28 17:00:18 2018 +0200 |
| committer | Nico Huber <nico.h@gmx.de> | Tue Apr 03 13:00:26 2018 +0000 |
| tree | 84f48f5c17ee092f4f1f73bdbeb2635282e7e762 | |
| parent | 636390ca01e7ecd6c53c1db60a6b97685bb5483e [diff] [blame] |
gma: Add GPU_Port types that are convenient for GMCH to use Change-Id: I9120d084637d36a7e2276fcf3f630b3f7ed32509 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/25407 Reviewed-by: Nico Huber <nico.h@gmx.de>
diff --git a/common/haswell_shared/hw-gfx-gma-connectors-ddi.ads b/common/haswell_shared/hw-gfx-gma-connectors-ddi.ads index ec1fce2..d43db97 100644 --- a/common/haswell_shared/hw-gfx-gma-connectors-ddi.ads +++ b/common/haswell_shared/hw-gfx-gma-connectors-ddi.ads
@@ -22,9 +22,14 @@ procedure Pre_On (Port_Cfg : in Port_Config; PLL_Hint : in Word32; - Success : out Boolean); + Success : out Boolean) + with + Pre => Port_Cfg.Port in Digital_Port; - procedure Post_On (Port_Cfg : Port_Config); + procedure Post_On (Port_Cfg : Port_Config) + with + Pre => Port_Cfg.Port in Digital_Port; + procedure Off (Port : Digital_Port);