summaryrefslogtreecommitdiffstats
path: root/cpukit/include/adainclude/rtems-port.adb
blob: dda655b8c2bd66df7a571f0440d8288c2cce3551 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
--
--  RTEMS / Body
--
--  DESCRIPTION:
--
--  This package provides the interface to the RTEMS API.
--
--
--  DEPENDENCIES:
--
--
--
--  COPYRIGHT (c) 1997-2011.
--  On-Line Applications Research Corporation (OAR).
--
--  The license and distribution terms for this file may in
--  the file LICENSE in this distribution or at
--  http://www.rtems.org/license/LICENSE.
--

package body RTEMS.Port is

   --
   -- Dual Ported Memory Manager
   --

   procedure Create
     (Name           : in RTEMS.Name;
      Internal_Start : in RTEMS.Address;
      External_Start : in RTEMS.Address;
      Length         : in RTEMS.Unsigned32;
      ID             : out RTEMS.ID;
      Result         : out RTEMS.Status_Codes)
   is
      function Create_Base
        (Name           : RTEMS.Name;
         Internal_Start : RTEMS.Address;
         External_Start : RTEMS.Address;
         Length         : RTEMS.Unsigned32;
         ID             : access RTEMS.ID)
         return           RTEMS.Status_Codes;
      pragma Import (C, Create_Base, "rtems_port_create");
      ID_Base : aliased RTEMS.ID;
   begin

      Result :=
         Create_Base
           (Name,
            Internal_Start,
            External_Start,
            Length,
            ID_Base'Access);
      ID     := ID_Base;

   end Create;

   procedure Ident
     (Name   : in RTEMS.Name;
      ID     : out RTEMS.ID;
      Result : out RTEMS.Status_Codes)
   is
      function Ident_Base
        (Name : RTEMS.Name;
         ID   : access RTEMS.ID)
         return RTEMS.Status_Codes;
      pragma Import (C, Ident_Base, "rtems_port_ident");
      ID_Base : aliased RTEMS.ID;
   begin

      Result := Ident_Base (Name, ID_Base'Access);
      ID     := ID_Base;

   end Ident;

   procedure Delete
     (ID     : in RTEMS.ID;
      Result : out RTEMS.Status_Codes)
   is
      function Delete_Base (ID : RTEMS.ID) return RTEMS.Status_Codes;
      pragma Import (C, Delete_Base, "rtems_port_delete");
   begin

      Result := Delete_Base (ID);

   end Delete;

   procedure External_To_Internal
     (ID       : in RTEMS.ID;
      External : in RTEMS.Address;
      Internal : out RTEMS.Address;
      Result   : out RTEMS.Status_Codes)
   is
      function External_To_Internal_Base
        (ID       : RTEMS.ID;
         External : RTEMS.Address;
         Internal : access RTEMS.Address)
         return     RTEMS.Status_Codes;
      pragma Import
        (C,
         External_To_Internal_Base,
         "rtems_port_external_to_internal");
      Internal_Base : aliased RTEMS.Address;
   begin

      Result   :=
         External_To_Internal_Base (ID, External, Internal_Base'Access);
      Internal := Internal_Base;

   end External_To_Internal;

   procedure Internal_To_External
     (ID       : in RTEMS.ID;
      Internal : in RTEMS.Address;
      External : out RTEMS.Address;
      Result   : out RTEMS.Status_Codes)
   is
      function Internal_To_External_Base
        (ID       : RTEMS.ID;
         Internal : RTEMS.Address;
         External : access RTEMS.Address)
         return     RTEMS.Status_Codes;
      pragma Import
        (C,
         Internal_To_External_Base,
         "rtems_port_internal_to_external");
      External_Base : aliased RTEMS.Address;
   begin

      Result   :=
         Internal_To_External_Base (ID, Internal, External_Base'Access);
      External := External_Base;

   end Internal_To_External;

end RTEMS.Port;