]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/rm-lld.git/blob - rm_services.h
Bug fixes, cleanup, expanded test code
[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 base value of the returned resource.  In the case of a block resource allocation 
179      *  response this field will contain the base value of the block. */
180     int32_t resourceBase;
181     /** The number of resources starting from resourceBase allocated in block requests */
182     uint32_t resourceLength;
183 } Rm_ServiceRespInfo;
185 /** 
186  * @brief RM service callback function structure
187  */
188 typedef struct {
189     /** Component callback function.  RM will call this function when the 
190      *  resource service request is completed. The callback function supplied
191      *  for this parameter must match this function pointer prototype. */
192     void (*serviceCallback) (Rm_ServiceRespInfo *serviceResponse);
193 } Rm_ServiceCallback;
195 /** 
196  * @brief RM service request information provided by the requesting component
197  */
198 typedef struct {
199     /** The type of RM service requested */
200     Rm_ServiceType type;
201     /** Pointer to the name of the resource requested.  The 
202      *  name provided by the component must match the resource node names
203      *  provided in the global resource table and allocation policies */
204     char *resourceName;
205 /** An allocate service can be requested with an unspecified resource base. 
206  *  If this occurs the RM Client Delegate or Server will assign the next available
207  *  resource or set of resources based on the allocation type. */
208 #define RM_RESOURCE_BASE_UNSPECIFIED (-1)  
209     /** The resource base value. */
210     int32_t resourceBase;
211     /** The number of the specified resource to be allocated starting from 
212      *  resourceBase.  Will be greater than one only for block allocate
213      *  and free service requests. */
214     uint32_t resourceLength;
215 /** An allocate service can be requested with an unspecified resource alignment.
216  *  WARNING: Only applicapable if resourceBase is unspecified
217  *
218  *  If the alignment is unspecified the RM Client Delegate or Server will allocate
219  *  the resources from a default alignment as specified in the global policy. */
220 #define RM_RESOURCE_ALIGNMENT_UNSPECIFIED (-1)      
221     /** Resource alignment in block allocation requests */
222     int32_t resourceAlignment;
223     /** The name server name associated with the resource.  Used only for 
224      *  allocate and free by name service requests */
225     char *resourceNsName;
226     /** Component specified callback function used by RM to inform components
227      *  of service requst results */
228     Rm_ServiceCallback callback;
229 } Rm_ServiceReqInfo;
231 /** 
232  * @brief RM Service Port provided to software components and applications that 
233  *        request RM services for the resources they wish to use
234  */
235 typedef struct {
236     /** RM instance handle for which the service handle was registered */
237     void *rmHandle;
238     /**
239      *  @b Description
240      *  @n  
241      *      Callout function used by components to request a resource service 
242      *      from a RM instance
243      *
244      *   @param[in] rmHandle
245      *      RM instance handle specifying the RM instance that should handle the
246      *      service request
247      *  
248      *  @param[in]  serviceRequest
249      *      Service request structure that provides details of the service requested from
250      *      the RM instance tied to this component
251      *
252      *  @param[in]  serviceResponse
253      *      Service response structure that provides details of RM's response to the
254      *      service request
255      */
256     void (*rmService)(void *rmHandle, Rm_ServiceReqInfo *serviceRequest,
257                       Rm_ServiceRespInfo *serviceResponse);
258 } Rm_ServicePort;
260 /**
261  *  @b Description
262  *  @n  
263  *      Non-blocking function used by RTSC pre-main startup functions to
264  *      allocate RM resources for usage.  Pre-main allocated resources will be 
265  *      validated by RM against a memory-mapped startup resource policy.
266  *      Pre-main allocation of unauthorized resources will result in a system
267  *      exception.
268  *
269  *      Note: Resource pre-main allocations can only occur on a core that is 
270  *            running a RM Server or Client Delegate that has a startup policy
271  *            allowing the allocation of pre-main resources
272  *
273  *  @param[in]  preMainAllocInfo
274  *      Resource pre-main allocation structure that provides details of the 
275  *      resource requested from RM for preallocation
276  *
277  *  @param[out] serviceResponse
278  *      Contains the result information regarding the pre-main allocation request
279  *
280  *  @retval
281  *      Success - 0 - Resource pre-main allocation request okay.
282  *  @retval
283  *      Failure - non-zero - Resource pre-main allocation request error.
284  */
285 void Rm_preMainAllocService (Rm_PreMainAllocInfo *preMainAllocInfo,
286                              Rm_ServiceRespInfo *serviceResponse);
288 /**
289  *  @b Description
290  *  @n  
291  *      This function returns a RM service port to the application to 
292  *      provide to software components (LLDs, BIOS, etc) that want to use RM
293  *      for resource management.
294  *
295  *  @param[in]  rmHandle
296  *      RM instance handle.  Used to return a Rm_ServicePort from an RM
297  *      instance.
298  *
299  *  @retval
300  *      Success - RM Service Port.  Used by an application or component to
301  *                request a service from RM.
302  *  @retval
303  *      Failure - NULL
304  */
305 Rm_ServicePort *Rm_getServicePort(Rm_Handle rmHandle);
307 /** 
308 @} 
309 */
311 #ifdef __cplusplus
313 #endif
315 #endif /* RMSERVICES_H_ */