]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/rm-lld.git/blob - rm_services.h
Initial testing, basic demo complete
[keystone-rtos/rm-lld.git] / rm_services.h
1 /**
2  *   @file  rmservices.h
3  *
4  *   @brief   
5  *      This is the RM include file for services provided to components that 
6  *      register a RM instance
7  *
8  *  \par
9  *  ============================================================================
10  *  @n   (C) Copyright 2012, Texas Instruments, Inc.
11  * 
12  *  Redistribution and use in source and binary forms, with or without 
13  *  modification, are permitted provided that the following conditions 
14  *  are met:
15  *
16  *    Redistributions of source code must retain the above copyright 
17  *    notice, this list of conditions and the following disclaimer.
18  *
19  *    Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the 
21  *    documentation and/or other materials provided with the   
22  *    distribution.
23  *
24  *    Neither the name of Texas Instruments Incorporated nor the names of
25  *    its contributors may be used to endorse or promote products derived
26  *    from this software without specific prior written permission.
27  *
28  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
29  *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
30  *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
32  *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
33  *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
34  *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
37  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
38  *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  *
40  *  \par
41 */
43 #ifndef RMSERVICES_H_
44 #define RMSERVICES_H_
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
50 /* RM includes */
51 #include <ti/drv/rm/rm.h>
53 /**
54 @addtogroup RMSERVICES_API
55 @{
56 */
58 /** RM Service Request State Codes and Errors */
59 /** RM Service Request State Code Base */
60 #define RM_SERVICE_STATE_BASE (0)
61 /** RM internal state okay - This value is for internal use by RM.  It should never be
62  *  seen as a return value during normal operation */
63 #define RM_SERVICE_STATE_OKAY (RM_SERVICE_STATE_BASE)
64 /** RM service is being processed.  Typically this means the service is
65  *  being sent to a higher level RM agent for processing */
66 #define RM_SERVICE_PROCESSING (RM_SERVICE_STATE_BASE+1)
67 /** RM service was approved.  The resource data in the response is valid if
68  *  the service has been approved. */
69 #define RM_SERVICE_APPROVED_AND_COMPLETED (RM_SERVICE_STATE_BASE+2)
70 /** Beginning of resource denied reasons */
71 #define RM_SERVICE_DENIED_BEGIN (RM_SERVICE_STATE_BASE+3)
72 /** RM could not find an allocator for the resource specified with the provided name */
73 #define RM_SERVICE_DENIED_RESOURCE_DOES_NOT_EXIST (RM_SERVICE_DENIED_BEGIN)
74 /** A resource value within the specifed base+range could not be found within the resource's
75  *  allocator.  No action was taken on the resources. */
76 #define RM_SERVICE_DENIED_RESOURCE_VALUE_RANGE_DOES_NOT_EXIST (RM_SERVICE_DENIED_BEGIN+1)
77 /** A resource value within the specifed base+range was not allocated to the RM instance
78  *  that is the source of the request.  No action was taken on the resources. */
79 #define RM_SERVICE_DENIED_RESOURCE_NOT_ALLOCATED_TO_INSTANCE_REQUESTING_THE_SERVICE (RM_SERVICE_DENIED_BEGIN+2)
80 /** A resource value within the specifed base+range is already free */
81 #define RM_SERVICE_DENIED_RESOURCE_ALREADY_FREE (RM_SERVICE_DENIED_BEGIN+3)
82 /** A resource value within the specifed base+range is already allocated to another
83  *  RM instance. */
84 #define RM_SERVICE_DENIED_RESOURCE_ALREADY_ALLOCATED (RM_SERVICE_DENIED_BEGIN+4)
85 /** End of resource denied reasons */
86 #define RM_SERVICE_DENIED_END (RM_SERVICE_DENIED_BEGIN+4)
88 /** RM Service Request Error Code Base */
89 #define RM_SERVICE_ERROR_BASE (-64)
90 /** RM service request type not recognized */
91 #define RM_SERVICE_ERROR_INVALID_SERVICE_TYPE (RM_SERVICE_ERROR_BASE)
92 /** RM Service request was not provided a component callback
93  *  function.  Service requests may result in blocking operations.  A callback
94  *  function must always be provided with a service request since
95  *  blocked or non-blocked operations cannot be promised.  */
96 #define RM_SERVICE_ERROR_CALLBACK_NOT_PROVIDED (RM_SERVICE_ERROR_BASE-1)
97 /** RM service request needs to be forwarded to another RM agent but no transports
98  *  have been registered */
99 #define RM_SERVICE_ERROR_NO_TRANSPORT_REGISTERED (RM_SERVICE_ERROR_BASE-2)
100 /** RM service request needs to be forwarded but no client delegate or server has 
101  *  been registered with the RM instance */
102 #define RM_SERVICE_ERROR_NOT_REGISTERED_WITH_DEL_OR_SERVER (RM_SERVICE_ERROR_BASE-3)
103 /** RM service request needs to be forwarded but the transport packet alloc API
104  *  has not been provided */
105 #define RM_SERVICE_ERROR_TRANSPORT_PKT_ALLOC_API_NULL (RM_SERVICE_ERROR_BASE-4)
106 /** A failure occurred within a registered transport's packet alloc API */
107 #define RM_SERVICE_ERROR_TRANSPORT_ALLOC_PKT_ERROR (RM_SERVICE_ERROR_BASE-5)
108 /** RM service request needs to be forwarded but the buffer allocated by transport
109  *  is not large enough to fit the RM transport packet */
110 #define RM_SERVICE_ERROR_TRANSPORT_PKT_BUF_TOO_SMALL (RM_SERVICE_ERROR_BASE-6)
111 /** RM service request needs to be forwarded but the transport returned an error
112  *  when trying to send the RM packet to the higher level agent */
113 #define RM_SERVICE_ERROR_TRANPSPORT_SEND_ERROR (RM_SERVICE_ERROR_BASE-7)
114 /** RM service response from higher level agent did not match any requests made
115  *  by the provided RM instance */
116 #define RM_SERVICE_ERROR_TRANSACTION_DOES_NOT_EXST_FOR_THIS_RM_INSTANCE (RM_SERVICE_ERROR_BASE-8)
117 /** RM failed to allocate memory for new service transaction */
118 #define RM_SERVICE_ERROR_TRANSACTION_FAILED_TO_ALLOCATE (RM_SERVICE_ERROR_BASE-9)
119 /** RM could not find the service transaction in the RM instance's transaction queue */
120 #define RM_SERVICE_ERROR_SERVICE_TRANSACTION_DOES_NOT_EXIST (RM_SERVICE_ERROR_BASE-10)
121 /** A failure occurred within a registered transport's packet free API */
122 #define RM_SERVICE_ERROR_TRANSPORT_FREE_PKT_ERROR (RM_SERVICE_ERROR_BASE-11)
123 /** Invalid NameServer object modification on non-Server instance */
124 #define RM_SERVICE_ERROR_NAMESERVER_OBJECT_MOD_ON_INVALID_INSTANCE (RM_SERVICE_ERROR_BASE-12)
125 /** Request failed because both a NameServer name and a resource range were specified */
126 #define RM_SERVICE_ERROR_NAMESERVER_NAME_AND_RESOURCE_RANGE_BOTH_DEFINED (RM_SERVICE_ERROR_BASE-13)
128 /**
129  * @brief Maximum number of characters in the resource names
130  */
131 #define RM_RESOURCE_NAME_MAX_CHARS (36)
133 /** 
134  * @brief RM service types
135  */
136 typedef enum {
137     /** RM resource allocate service */
138     Rm_service_RESOURCE_ALLOCATE = 0,  
139     /** RM resource free service */
140     Rm_service_RESOURCE_FREE = 1,
141     /** RM resource mapping to name service */
142     Rm_service_RESOURCE_MAP_TO_NAME = 2,
143     /** RM resource get by name service */
144     Rm_service_RESOURCE_GET_BY_NAME = 3,
145     /** RM resource name unmapping service */
146     Rm_service_RESOURCE_UNMAP_NAME = 4
147 } Rm_ServiceType;
149 /** 
150  * @brief RM pre-main allocation request information provided by the pre-main 
151  *        startup function requesting the resource */
152 typedef struct {
153     /** Pointer to the requested pre-main allocation resource name.  The 
154      *  name provided by the component must match the resource names
155      *  provided in the global resource table and allocation policies */
156     char *resourceName;
157     /** The pre-main allocation request resource base value.  For example, 
158      *  queue number or semaphore number */
159     uint32_t resourceBase;
160     /** Range of resource starting at resourceBase */
161     uint32_t resourceRange;
162 } Rm_PreMainAllocInfo;
164 /** 
165  * @brief RM service response information provided by RM back to the 
166  *        requesting component
167  */
168 typedef struct {
169     /** State of the service request.
170      *  Non-negative result: RM has taken an action based on the request
171      *  Negative result: RM has encountered an error handling the request */
172     int32_t serviceState;
173     /** A service ID will be returned to the component if the requested service cannot
174      *  be completed immediately.  The service ID can be used by the component to identify
175      *  service responses received via the component callback function.  A service ID will not
176      *  be returned if the service request is satisfied immediately */
177     uint32_t serviceId;
178     /** The name of the resource affected by the service request */
179     char resourceName[RM_RESOURCE_NAME_MAX_CHARS];
180     /** The base value of the returned resource.  In the case of a block resource allocation 
181      *  response this field will contain the base value of the block. */
182     int32_t resourceBase;
183     /** The number of resources starting from resourceBase allocated in block requests */
184     uint32_t resourceLength;
185 } Rm_ServiceRespInfo;
187 /** 
188  * @brief RM service callback function structure
189  */
190 typedef struct {
191     /** Component callback function.  RM will call this function when the 
192      *  resource service request is completed. The callback function supplied
193      *  for this parameter must match this function pointer prototype. */
194     void (*serviceCallback) (Rm_ServiceRespInfo *serviceResponse);
195 } Rm_ServiceCallback;
197 /** 
198  * @brief RM service request information provided by the requesting component
199  */
200 typedef struct {
201     /** The type of RM service requested */
202     Rm_ServiceType type;
203     /** Pointer to the name of the resource requested.  The 
204      *  name provided by the component must match the resource node names
205      *  provided in the global resource table and allocation policies */
206     char *resourceName;
207 /** An allocate service can be requested with an unspecified resource base. 
208  *  If this occurs the RM Client Delegate or Server will assign the next available
209  *  resource or set of resources based on the allocation type. */
210 #define RM_RESOURCE_BASE_UNSPECIFIED (-1)  
211     /** The resource base value. */
212     int32_t resourceBase;
213     /** The number of the specified resource to be allocated starting from 
214      *  resourceBase.  Will be greater than one only for block allocate
215      *  and free service requests. */
216     uint32_t resourceLength;
217 /** An allocate service can be requested with an unspecified resource alignment.
218  *  WARNING: Only applicapable if resourceBase is unspecified
219  *
220  *  If the alignment is unspecified the RM Client Delegate or Server will allocate
221  *  the resources from a default alignment as specified in the global policy. */
222 #define RM_RESOURCE_ALIGNMENT_UNSPECIFIED (-1)      
223     /** Resource alignment in block allocation requests */
224     int32_t resourceAlignment;
225     /** The name server name associated with the resource.  Used only for 
226      *  allocate and free by name service requests */
227     char *resourceNsName;
228     /** Component specified callback function used by RM to inform components
229      *  of service requst results */
230     Rm_ServiceCallback callback;
231 } Rm_ServiceReqInfo;
233 /** 
234  * @brief RM Service Port provided to software components and applications that 
235  *        request RM services for the resources they wish to use
236  */
237 typedef struct {
238     /** RM instance handle for which the service handle was registered */
239     void *rmHandle;
240     /**
241      *  @b Description
242      *  @n  
243      *      Callout function used by components to request a resource service 
244      *      from a RM instance
245      *
246      *   @param[in] rmHandle
247      *      RM instance handle specifying the RM instance that should handle the
248      *      service request
249      *  
250      *  @param[in]  serviceRequest
251      *      Service request structure that provides details of the service requested from
252      *      the RM instance tied to this component
253      *
254      *  @param[in]  serviceResponse
255      *      Service response structure that provides details of RM's response to the
256      *      service request
257      */
258     void (*rmService)(void *rmHandle, Rm_ServiceReqInfo *serviceRequest,
259                       Rm_ServiceRespInfo *serviceResponse);
260 } Rm_ServicePort;
262 /**
263  *  @b Description
264  *  @n  
265  *      Non-blocking function used by RTSC pre-main startup functions to
266  *      allocate RM resources for usage.  Pre-main allocated resources will be 
267  *      validated by RM against a memory-mapped startup resource policy.
268  *      Pre-main allocation of unauthorized resources will result in a system
269  *      exception.
270  *
271  *      Note: Resource pre-main allocations can only occur on a core that is 
272  *            running a RM Server or Client Delegate that has a startup policy
273  *            allowing the allocation of pre-main resources
274  *
275  *  @param[in]  preMainAllocInfo
276  *      Resource pre-main allocation structure that provides details of the 
277  *      resource requested from RM for preallocation
278  *
279  *  @param[out] serviceResponse
280  *      Contains the result information regarding the pre-main allocation request
281  *
282  *  @retval
283  *      Success - 0 - Resource pre-main allocation request okay.
284  *  @retval
285  *      Failure - non-zero - Resource pre-main allocation request error.
286  */
287 void Rm_preMainAllocService (Rm_PreMainAllocInfo *preMainAllocInfo,
288                              Rm_ServiceRespInfo *serviceResponse);
290 /**
291  *  @b Description
292  *  @n  
293  *      This function returns a RM service port to the application to 
294  *      provide to software components (LLDs, BIOS, etc) that want to use RM
295  *      for resource management.
296  *
297  *  @param[in]  rmHandle
298  *      RM instance handle.  Used to return a Rm_ServicePort from an RM
299  *      instance.
300  *
301  *  @retval
302  *      Success - RM Service Port.  Used by an application or component to
303  *                request a service from RM.
304  *  @retval
305  *      Failure - NULL
306  */
307 Rm_ServicePort *Rm_getServicePort(Rm_Handle rmHandle);
309 /** 
310 @} 
311 */
313 #ifdef __cplusplus
315 #endif
317 #endif /* RMSERVICES_H_ */