| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 1 | -- |
| Nico Huber | f80c3e4 | 2019-05-10 13:44:02 +0200 | [diff] [blame] | 2 | -- Copyright (C) 2015-2016, 2019 secunet Security Networks AG |
| Nico Huber | 41b18ca | 2017-08-27 02:03:04 +0200 | [diff] [blame] | 3 | -- Copyright (C) 2017 Nico Huber <nico.h@gmx.de> |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 4 | -- |
| 5 | -- This program is free software; you can redistribute it and/or modify |
| 6 | -- it under the terms of the GNU General Public License as published by |
| Nico Huber | 125a29e | 2016-10-18 00:23:54 +0200 | [diff] [blame] | 7 | -- the Free Software Foundation; either version 2 of the License, or |
| 8 | -- (at your option) any later version. |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 9 | -- |
| 10 | -- This program is distributed in the hope that it will be useful, |
| 11 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | -- GNU General Public License for more details. |
| 14 | -- |
| 15 | |
| 16 | with Ada.Unchecked_Conversion; |
| 17 | |
| 18 | with HW.Debug; |
| 19 | with GNAT.Source_Info; |
| 20 | |
| 21 | with HW.Time; |
| 22 | with HW.GFX.DP_Defs; |
| 23 | |
| 24 | package body HW.GFX.DP_Training is |
| 25 | |
| 26 | pragma Warnings (GNATprove, Off, "unused initial value of ""Port""*", |
| 27 | Reason => "Needed for a common interface"); |
| 28 | function Training_Set |
| 29 | (Port : T; |
| 30 | Train_Set : DP_Info.Train_Set) |
| 31 | return Word8 |
| 32 | is |
| 33 | use type DP_Info.DP_Voltage_Swing; |
| 34 | use type DP_Info.DP_Pre_Emph; |
| 35 | use type Word8; |
| 36 | Value : Word8; |
| 37 | begin |
| 38 | case Train_Set.Voltage_Swing is |
| 39 | when DP_Info.VS_Level_0 => Value := 16#00#; |
| 40 | when DP_Info.VS_Level_1 => Value := 16#01#; |
| 41 | when DP_Info.VS_Level_2 => Value := 16#02#; |
| 42 | when DP_Info.VS_Level_3 => Value := 16#03#; |
| 43 | end case; |
| 44 | if Train_Set.Voltage_Swing = Max_V_Swing (Port) then |
| 45 | Value := Value or 16#04#; |
| 46 | end if; |
| 47 | |
| 48 | case Train_Set.Pre_Emph is |
| 49 | when DP_Info.Emph_Level_0 => Value := Value or 16#00#; |
| 50 | when DP_Info.Emph_Level_1 => Value := Value or 16#08#; |
| 51 | when DP_Info.Emph_Level_2 => Value := Value or 16#10#; |
| 52 | when DP_Info.Emph_Level_3 => Value := Value or 16#18#; |
| 53 | end case; |
| 54 | if Train_Set.Pre_Emph = Max_Pre_Emph (Port, Train_Set) then |
| 55 | Value := Value or 16#20#; |
| 56 | end if; |
| 57 | |
| 58 | return Value; |
| 59 | end Training_Set; |
| 60 | pragma Warnings (GNATprove, On, "unused initial value of ""Port""*"); |
| 61 | |
| 62 | ---------------------------------------------------------------------------- |
| 63 | |
| 64 | function Lane_Count (Link : DP_Link) return Positive |
| 65 | with |
| 66 | Post => Lane_Count'Result <= 4 |
| 67 | is |
| 68 | begin |
| 69 | return Positive (Lane_Count_As_Integer (Link.Lane_Count)); |
| 70 | end Lane_Count; |
| 71 | |
| 72 | procedure Sink_Init |
| 73 | (Port : in Aux_T; |
| 74 | Link : in DP_Link; |
| 75 | Success : out Boolean) |
| 76 | is |
| 77 | use type Word8; |
| 78 | function Link_Rate_As_Word8 is new Ada.Unchecked_Conversion |
| 79 | (Source => DP_Bandwidth, Target => Word8); |
| 80 | Data : DP_Defs.Aux_Payload; |
| 81 | begin |
| 82 | pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); |
| 83 | |
| 84 | Data := |
| 85 | (0 => Link_Rate_As_Word8 (Link.Bandwidth), |
| 86 | 1 => Word8 (Lane_Count (Link)), |
| 87 | others => 0); -- Don't care |
| 88 | |
| 89 | if Link.Enhanced_Framing then |
| 90 | Data (1) := Data (1) or 16#80#; |
| 91 | end if; |
| 92 | |
| 93 | Aux_Ch.Aux_Write |
| 94 | (Port => Port, |
| 95 | Address => 16#00100#, -- LINK_BW_SET, LANE_COUNT_SET |
| 96 | Length => 2, |
| 97 | Data => Data, |
| 98 | Success => Success); |
| 99 | Success := Success or Link.Opportunistic_Training; |
| 100 | |
| 101 | if Success then |
| 102 | Data (0) := 16#00#; -- no downspread |
| 103 | Data (1) := 16#01#; -- ANSI8B10B coding |
| 104 | |
| 105 | Aux_Ch.Aux_Write |
| 106 | (Port => Port, |
| 107 | Address => 16#00107#, -- DOWNSPREAD_CTRL, |
| 108 | Length => 2, -- MAIN_LINK_CHANNEL_CODING_SET |
| 109 | Data => Data, |
| 110 | Success => Success); |
| 111 | Success := Success or Link.Opportunistic_Training; |
| 112 | end if; |
| 113 | end Sink_Init; |
| 114 | |
| 115 | procedure Sink_Set_Training_Pattern |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 116 | (Port : in T; |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 117 | Link : in DP_Link; |
| 118 | Pattern : in DP_Info.Training_Pattern; |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 119 | Train_Set : in DP_Info.Train_Set; |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 120 | Success : out Boolean) |
| 121 | is |
| 122 | use type DP_Info.Training_Pattern; |
| 123 | |
| 124 | type TP_Array is array (DP_Info.Training_Pattern) of Word8; |
| 125 | TP : constant TP_Array := TP_Array' |
| 126 | (DP_Info.TP_1 => 16#21#, DP_Info.TP_2 => 16#22#, DP_Info.TP_3 => 16#23#, |
| 127 | DP_Info.TP_Idle => 16#00#, DP_Info.TP_None => 16#00#); |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 128 | T_Set : constant Word8 := Training_Set (Port, Train_Set); |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 129 | |
| 130 | Data : DP_Defs.Aux_Payload; |
| 131 | Length : Positive := 1; |
| 132 | begin |
| 133 | pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); |
| 134 | |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 135 | Data := (TP (Pattern), others => 0); |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 136 | if Pattern < DP_Info.TP_Idle then |
| 137 | Length := Length + Lane_Count (Link); |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 138 | Data (1 .. Lane_Count (Link)) := (others => T_Set); |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 139 | end if; |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 140 | |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 141 | Aux_Ch.Aux_Write |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 142 | (Port => To_Aux (Port), |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 143 | Address => 16#00102#, -- TRAINING_PATTERN_SET |
| 144 | Length => Length, |
| 145 | Data => Data, |
| 146 | Success => Success); |
| 147 | end Sink_Set_Training_Pattern; |
| 148 | |
| 149 | procedure Sink_Set_Signal_Levels |
| 150 | (Port : in T; |
| 151 | DP : in Aux_T; |
| 152 | Link : in DP_Link; |
| 153 | Train_Set : in DP_Info.Train_Set; |
| 154 | Success : out Boolean) |
| 155 | is |
| 156 | Data : DP_Defs.Aux_Payload; |
| 157 | T_Set : constant Word8 := Training_Set (Port, Train_Set); |
| 158 | begin |
| 159 | pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); |
| 160 | |
| 161 | Data := (others => 0); -- Initialize |
| 162 | Data (0 .. Lane_Count (Link) - 1) := (others => T_Set); |
| 163 | |
| 164 | Aux_Ch.Aux_Write |
| 165 | (Port => DP, |
| 166 | Address => 16#00103#, -- TRAINING_LANEx_SET |
| 167 | Length => Lane_Count (Link), |
| 168 | Data => Data, |
| 169 | Success => Success); |
| 170 | end Sink_Set_Signal_Levels; |
| 171 | |
| 172 | pragma Warnings (GNATprove, Off, "unused initial value of ""Port""*", |
| 173 | Reason => "Needed for a common interface"); |
| 174 | procedure Sink_Adjust_Training |
| 175 | (Port : in T; |
| 176 | DP : in Aux_T; |
| 177 | Link : in DP_Link; |
| 178 | Train_Set : in out DP_Info.Train_Set; |
| 179 | CR_Done : in out Boolean; |
| 180 | EQ_Done : out Boolean; |
| 181 | Success : out Boolean) |
| 182 | is |
| 183 | use type DP_Info.DP_Voltage_Swing; |
| 184 | use type DP_Info.DP_Pre_Emph; |
| 185 | |
| 186 | Status : DP_Info.Link_Status; |
| 187 | CR_Was_Done : constant Boolean := CR_Done; |
| 188 | |
| 189 | pragma Warnings |
| 190 | (GNATprove, Off, "subprogram ""Dump_Link_Status"" has no effect*", |
| 191 | Reason => "It's only used for debugging"); |
| 192 | procedure Dump_Link_Status |
| 193 | is |
| 194 | begin |
| 195 | Debug.New_Line; |
| 196 | Debug.Put_Line ("Link Status:"); |
| 197 | |
| 198 | for Lane in DP_Info.Lane_Index range 0 |
| 199 | .. DP_Info.Lane_Index (Lane_Count_As_Integer (Link.Lane_Count) - 1) |
| 200 | loop |
| 201 | Debug.Put (" Lane"); |
| 202 | Debug.Put_Int8 (Int8 (Lane)); |
| 203 | Debug.Put_Line (":"); |
| 204 | |
| 205 | Debug.Put_Line (" CR_Done : " & |
| 206 | (if Status.Lanes (Lane).CR_Done then "1" else "0")); |
| 207 | Debug.Put_Line (" Channel_EQ_Done: " & |
| 208 | (if Status.Lanes (Lane).Channel_EQ_Done then "1" else "0")); |
| 209 | Debug.Put_Line (" Symbol_Locked : " & |
| 210 | (if Status.Lanes (Lane).Symbol_Locked then "1" else "0")); |
| 211 | end loop; |
| 212 | |
| 213 | Debug.Put_Line (" Interlane_Align_Done: " & |
| 214 | (if Status.Interlane_Align_Done then "1" else "0")); |
| 215 | |
| 216 | for Lane in DP_Info.Lane_Index range 0 |
| 217 | .. DP_Info.Lane_Index (Lane_Count_As_Integer (Link.Lane_Count) - 1) |
| 218 | loop |
| 219 | Debug.Put (" Adjust"); |
| 220 | Debug.Put_Int8 (Int8 (Lane)); |
| 221 | Debug.Put_Line (":"); |
| 222 | |
| 223 | Debug.Put (" Voltage_Swing: "); |
| 224 | Debug.Put_Int8 (Int8 (DP_Info.DP_Voltage_Swing'Pos |
| 225 | (Status.Adjust_Requests (Lane).Voltage_Swing))); |
| 226 | Debug.New_Line; |
| 227 | Debug.Put (" Pre_Emph : "); |
| 228 | Debug.Put_Int8 (Int8 (DP_Info.DP_Pre_Emph'Pos |
| 229 | (Status.Adjust_Requests (Lane).Pre_Emph))); |
| 230 | Debug.New_Line; |
| 231 | end loop; |
| 232 | |
| 233 | Debug.New_Line; |
| 234 | end Dump_Link_Status; |
| 235 | begin |
| 236 | pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); |
| 237 | |
| 238 | DP_Info.Read_Link_Status |
| 239 | (Port => DP, |
| 240 | Status => Status, |
| 241 | Success => Success); |
| 242 | |
| 243 | pragma Debug (Success, Dump_Link_Status); |
| 244 | |
| 245 | CR_Done := Success and then DP_Info.All_CR_Done (Status, Link); |
| 246 | EQ_Done := Success and then DP_Info.All_EQ_Done (Status, Link); |
| 247 | Success := Success and then (CR_Done or not CR_Was_Done); |
| 248 | |
| Nico Huber | 41b18ca | 2017-08-27 02:03:04 +0200 | [diff] [blame] | 249 | -- Voltage swing may be updated during channel equalization too. |
| 250 | if Success and not EQ_Done then |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 251 | Train_Set.Voltage_Swing := |
| 252 | DP_Info.Max_Requested_VS (Status, Link); |
| 253 | if Train_Set.Voltage_Swing > Max_V_Swing (Port) |
| 254 | then |
| 255 | Train_Set.Voltage_Swing := Max_V_Swing (Port); |
| 256 | end if; |
| 257 | end if; |
| 258 | |
| 259 | -- According to DP spec, only change preemphasis during channel |
| 260 | -- equalization. What to do if sink requests it during clock recovery? |
| Nico Huber | 234e772 | 2017-08-27 02:07:31 +0200 | [diff] [blame] | 261 | -- Linux always accepts new values from the sink, we too, now: There |
| 262 | -- are sinks in the wild that need this. |
| 263 | if Success and not EQ_Done then |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 264 | Train_Set.Pre_Emph := |
| 265 | DP_Info.Max_Requested_Emph (Status, Link); |
| 266 | if Train_Set.Pre_Emph > Max_Pre_Emph (Port, Train_Set) |
| 267 | then |
| 268 | Train_Set.Pre_Emph := Max_Pre_Emph (Port, Train_Set); |
| 269 | end if; |
| 270 | end if; |
| 271 | end Sink_Adjust_Training; |
| 272 | pragma Warnings (GNATprove, On, "unused initial value of ""Port""*"); |
| 273 | |
| 274 | ---------------------------------------------------------------------------- |
| 275 | |
| 276 | procedure Train_DP |
| 277 | (Port : in T; |
| 278 | Link : in DP_Link; |
| 279 | Success : out Boolean) |
| 280 | is |
| 281 | use type DP_Info.DP_Voltage_Swing; |
| 282 | use type DP_Info.DP_Pre_Emph; |
| 283 | use type Word8; |
| 284 | |
| 285 | DP : constant Aux_T := To_Aux (Port); |
| 286 | |
| 287 | Retries : Natural; |
| 288 | Max_Retry : constant := 4; |
| 289 | CR_Done, EQ_Done : Boolean := False; |
| 290 | |
| 291 | EQ_Pattern : constant DP_Info.Training_Pattern := |
| 292 | (if TPS3_Supported and Link.Receiver_Caps.TPS3_Supported then |
| 293 | DP_Info.TP_3 |
| 294 | else |
| 295 | DP_Info.TP_2); |
| 296 | |
| 297 | Train_Set, Last_Train_Set : DP_Info.Train_Set; |
| 298 | |
| 299 | function CR_Delay return Natural is |
| 300 | Result : Natural := 100; -- DP spec: 100us |
| 301 | begin |
| 302 | if Link.Bandwidth = DP_Bandwidth_5_4 and |
| 303 | Link.Receiver_Caps.Aux_RD_Interval /= 0 |
| 304 | then |
| 305 | Result := Natural (Link.Receiver_Caps.Aux_RD_Interval) * 4_000; |
| 306 | end if; |
| 307 | return Result; |
| 308 | end CR_Delay; |
| 309 | |
| 310 | function EQ_Delay return Natural is |
| 311 | Result : Natural := 400; -- DP spec: 400us |
| 312 | begin |
| 313 | if Link.Bandwidth = DP_Bandwidth_5_4 and |
| 314 | Link.Receiver_Caps.Aux_RD_Interval /= 0 |
| 315 | then |
| 316 | Result := Natural (Link.Receiver_Caps.Aux_RD_Interval) * 4_000; |
| 317 | end if; |
| 318 | return Result; |
| 319 | end EQ_Delay; |
| 320 | begin |
| 321 | pragma Debug (Debug.Put_Line (GNAT.Source_Info.Enclosing_Entity)); |
| 322 | |
| 323 | Train_Set.Voltage_Swing := DP_Info.DP_Voltage_Swing'First; |
| 324 | Train_Set.Pre_Emph := DP_Info.DP_Pre_Emph'First; |
| 325 | |
| 326 | Set_Pattern (Port, Link, DP_Info.TP_1); |
| 327 | Set_Signal_Levels (Port, Link, Train_Set); |
| 328 | |
| 329 | pragma Warnings |
| 330 | (GNATprove, Off, """Success"" modified by call, but value overwritten*", |
| 331 | Reason => "Read first, then overwritten, looks like a false positive"); |
| 332 | Sink_Init (DP, Link, Success); |
| 333 | pragma Warnings |
| 334 | (GNATprove, On, """Success"" modified by call, but value overwritten*"); |
| 335 | if Success then |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 336 | Sink_Set_Training_Pattern |
| 337 | (Port, Link, DP_Info.TP_1, Train_Set, Success); |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 338 | end if; |
| 339 | |
| 340 | if Success then |
| 341 | Retries := 0; |
| 342 | for Tries in 1 .. 32 loop |
| 343 | pragma Loop_Invariant (Retries <= Max_Retry); |
| 344 | |
| 345 | Time.U_Delay (CR_Delay); |
| 346 | |
| 347 | Last_Train_Set := Train_Set; |
| 348 | Sink_Adjust_Training |
| 349 | (Port, DP, Link, Train_Set, CR_Done, EQ_Done, Success); |
| 350 | exit when CR_Done or not Success; |
| 351 | |
| 352 | if Train_Set.Voltage_Swing = Last_Train_Set.Voltage_Swing then |
| 353 | exit when Retries = Max_Retry; |
| 354 | Retries := Retries + 1; |
| 355 | else |
| 356 | exit when Last_Train_Set.Voltage_Swing = Max_V_Swing (Port); |
| 357 | Retries := 0; |
| 358 | end if; |
| 359 | |
| 360 | Set_Signal_Levels (Port, Link, Train_Set); |
| 361 | Sink_Set_Signal_Levels (Port, DP, Link, Train_Set, Success); |
| 362 | exit when not Success; |
| 363 | end loop; |
| 364 | end if; |
| 365 | |
| 366 | Success := Success and CR_Done; |
| 367 | |
| 368 | if Success then |
| 369 | Set_Pattern (Port, Link, EQ_Pattern); |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 370 | Sink_Set_Training_Pattern (Port, Link, EQ_Pattern, Train_Set, Success); |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 371 | end if; |
| 372 | |
| 373 | if Success then |
| Nico Huber | 41b18ca | 2017-08-27 02:03:04 +0200 | [diff] [blame] | 374 | for Tries in 1 .. 6 loop |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 375 | Time.U_Delay (EQ_Delay); |
| 376 | |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 377 | Sink_Adjust_Training |
| 378 | (Port, DP, Link, Train_Set, CR_Done, EQ_Done, Success); |
| 379 | exit when EQ_Done or not Success; |
| 380 | |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 381 | Set_Signal_Levels (Port, Link, Train_Set); |
| 382 | Sink_Set_Signal_Levels (Port, DP, Link, Train_Set, Success); |
| 383 | exit when not Success; |
| 384 | end loop; |
| 385 | end if; |
| 386 | |
| Nico Huber | f80c3e4 | 2019-05-10 13:44:02 +0200 | [diff] [blame] | 387 | -- Set_Pattern (TP_None) includes sending the Idle Pattern, |
| 388 | -- so tell sink first. |
| 389 | Sink_Set_Training_Pattern |
| Nico Huber | 94fb916 | 2019-05-10 13:44:11 +0200 | [diff] [blame] | 390 | (Port, Link, DP_Info.TP_None, Train_Set, Success); |
| Nico Huber | f80c3e4 | 2019-05-10 13:44:02 +0200 | [diff] [blame] | 391 | Set_Pattern (Port, Link, DP_Info.TP_None); |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 392 | |
| Nico Huber | f80c3e4 | 2019-05-10 13:44:02 +0200 | [diff] [blame] | 393 | Success := Success and then EQ_Done; |
| 394 | if not Success then |
| Nico Huber | 83693c8 | 2016-10-08 22:17:55 +0200 | [diff] [blame] | 395 | Off (Port); |
| 396 | end if; |
| 397 | end Train_DP; |
| 398 | |
| 399 | end HW.GFX.DP_Training; |