blob: 4e509ad905e79e31563f48f36baae3b868368014 [file] [log] [blame]
Nico Huberc74eafd2024-07-23 12:38:02 +02001--
2-- Copyright (C) 2022 Google, LLC
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.Config;
16with HW.GFX.GMA.Registers;
17
18with HW.Debug;
19with GNAT.Source_Info;
20
21package body HW.GFX.GMA.Connectors.TC.Ownership is
22
23 procedure Claim
24 (Port : in USBC_Port;
25 DP_Alt : in Boolean;
26 Success : out Boolean)
27 is
28 begin
29 Success := False;
30 end Claim;
31
32 procedure Claimed (Port : USBC_Port; Is_Claimed : out Boolean) is
33 begin
34 Is_Claimed := False;
35 end Claimed;
36
37 ---------------------------------------------------------------------
38
39 procedure Connect
40 (Port : in USBC_Port;
41 DP_Alt : in Boolean;
42 Lanes : in DP_Lane_Count;
43 Success : out Boolean)
44 is
45 begin
46 Success := False;
47 end Connect;
48
49 procedure Disconnect (Port : USBC_Port) is null;
50
51end HW.GFX.GMA.Connectors.TC.Ownership;