blob: fc2962c633b64ddc41fcafc2bb8c13cf44b2ae3d [file] [log] [blame]
Nico Huberc74eafd2024-07-23 12:38:02 +02001--
2-- Copyright (C) Nico Huber <nico.h@gmx.de>
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
15package HW.GFX.GMA.Connectors.TC.Ownership is
16
17 procedure Claim
18 (Port : in USBC_Port;
19 DP_Alt : in Boolean;
20 Success : out Boolean);
21
22 procedure Claimed (Port : USBC_Port; Is_Claimed : out Boolean);
23
24 ----------------------------------------------------------------------------
25
26 procedure Connect
27 (Port : in USBC_Port;
28 DP_Alt : in Boolean;
29 Lanes : in DP_Lane_Count;
30 Success : out Boolean);
31
32 procedure Disconnect (Port : USBC_Port);
33
34end HW.GFX.GMA.Connectors.TC.Ownership;