blob: 6099c50e645bde86ba32b15624dd738c95dc232e [file] [log] [blame]
Nico Huber1c3b9282017-02-09 13:57:04 +01001--
2-- Copyright (C) 2017 secunet Security Networks AG
3--
4-- This program is free software; you can redistribute it and/or modify
5-- it under the terms of the GNU General Public License as published by
6-- the Free Software Foundation; either version 2 of the License, or
7-- (at your option) any later version.
8--
9-- This program is distributed in the hope that it will be useful,
10-- but WITHOUT ANY WARRANTY; without even the implied warranty of
11-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-- GNU General Public License for more details.
13--
14
15with HW.GFX.GMA.DP_Info;
16
17private package HW.GFX.GMA.DDI_Phy_Stub is
18
19 subtype DDI_Phy_Port is GPU_Port;
20
21 Max_V_Swing : constant DP_Info.DP_Voltage_Swing := DP_Info.VS_Level_0;
22
23 type Emph_Array is array (DP_Info.DP_Voltage_Swing) of DP_Info.DP_Pre_Emph;
24 Max_Pre_Emph : constant Emph_Array := (others => DP_Info.Emph_Level_0);
25
26 procedure Set_DP_Signal_Levels
27 (Port : Digital_Port;
28 Train_Set : DP_Info.Train_Set) is null;
29
Nico Huber247adf32017-06-12 14:39:11 +020030 subtype HDMI_Buf_Trans_Range is DDI_HDMI_Buf_Trans_Range;
Nico Huber1c3b9282017-02-09 13:57:04 +010031 procedure Set_HDMI_Signal_Levels
32 (Port : DDI_Phy_Port;
33 Level : HDMI_Buf_Trans_Range) is null;
34
35end HW.GFX.GMA.DDI_Phy_Stub;