| Nico Huber | c74eafd | 2024-07-23 12:38:02 +0200 | [diff] [blame^] | 1 | -- |
| 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 | |
| 15 | with HW.GFX.GMA.Config; |
| 16 | with HW.GFX.GMA.Registers; |
| 17 | |
| 18 | with HW.Debug; |
| 19 | with GNAT.Source_Info; |
| 20 | |
| 21 | package 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 | |
| 51 | end HW.GFX.GMA.Connectors.TC.Ownership; |