IPC API  3.40.00.06
SharedRegion.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2015 Texas Instruments Incorporated - http://www.ti.com
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * * Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
101 #ifndef ti_ipc_SharedRegion__include
102 #define ti_ipc_SharedRegion__include
103 
104 
105 #if defined (__cplusplus)
106 extern "C" {
107 #endif
108 
109 /* ============================================================================
110  * All success and failure codes for the module
111  * =============================================================================
112  */
113 
117 #define SharedRegion_S_BUSY 2
118 
122 #define SharedRegion_S_ALREADYSETUP 1
123 
127 #define SharedRegion_S_SUCCESS 0
128 
132 #define SharedRegion_E_FAIL -1
133 
137 #define SharedRegion_E_INVALIDARG -2
138 
142 #define SharedRegion_E_MEMORY -3
143 
147 #define SharedRegion_E_ALREADYEXISTS -4
148 
152 #define SharedRegion_E_NOTFOUND -5
153 
157 #define SharedRegion_E_TIMEOUT -6
158 
162 #define SharedRegion_E_INVALIDSTATE -7
163 
167 #define SharedRegion_E_OSFAILURE -8
168 
172 #define SharedRegion_E_RESOURCE -9
173 
177 #define SharedRegion_E_RESTART -10
178 
179 /* =============================================================================
180  * Macros
181  * =============================================================================
182  */
183 
187 #define SharedRegion_INVALIDREGIONID (0xFFFF)
188 
189 /* =============================================================================
190  * Structures & Enums
191  * =============================================================================
192  */
193 
197 typedef Bits32 SharedRegion_SRPtr;
198 
202 typedef struct SharedRegion_Entry {
203  Ptr base;
206  SizeT len;
213  UInt16 ownerProcId;
220  Bool isValid;
249  String name;
256 
257 
258 /* =============================================================================
259  * SharedRegion Module-wide Functions
260  * =============================================================================
261  */
262 
284 Int SharedRegion_clearEntry(UInt16 regionId);
285 
294 
304 SizeT SharedRegion_getCacheLineSize(UInt16 regionId);
305 
318 Int SharedRegion_getEntry(UInt16 regionId, SharedRegion_Entry *entry);
319 
332 
359 Ptr SharedRegion_getHeap(UInt16 regionId);
360 
368 UInt16 SharedRegion_getId(Ptr addr);
369 
377 UInt16 SharedRegion_getIdByName(String name);
378 
384 UInt16 SharedRegion_getNumRegions(Void);
385 
395 Ptr SharedRegion_getPtr(SharedRegion_SRPtr srptr);
396 
407 SharedRegion_SRPtr SharedRegion_getSRPtr(Ptr addr, UInt16 regionId);
408 
416 Bool SharedRegion_isCacheEnabled(UInt16 regionId);
417 
446 Int SharedRegion_setEntry(UInt16 regionId, SharedRegion_Entry *entry);
447 
454 
460 SharedRegion_SRPtr SharedRegion_invalidSRPtr(Void);
461 
462 #if defined (__cplusplus)
463 }
464 #endif /* defined (__cplusplus) */
465 
466 #endif /* ti_ipc_SharedRegion__include */
SizeT cacheLineSize
The cache line size of the region.
Definition: SharedRegion.h:232
Bool cacheEnable
Whether to perform cache operations for the region.
Definition: SharedRegion.h:223
struct SharedRegion_Entry SharedRegion_Entry
Structure defining a region.
UInt16 SharedRegion_getNumRegions(Void)
Gets the number of regions.
Ptr SharedRegion_getPtr(SharedRegion_SRPtr srptr)
Calculate the local pointer from the shared region pointer.
Structure defining a region.
Definition: SharedRegion.h:202
SharedRegion_SRPtr SharedRegion_getSRPtr(Ptr addr, UInt16 regionId)
Calculate the shared region pointer given local address and id.
Int SharedRegion_getEntry(UInt16 regionId, SharedRegion_Entry *entry)
Gets the entry information for the specified region id.
SharedRegion_Entry * SharedRegion_getEntryPtr(UInt16 regionId)
Return the address of the shared region entry structure.
Ptr base
The base address of the region.
Definition: SharedRegion.h:203
UInt16 SharedRegion_getIdByName(String name)
Gets the id of a region, given its name.
Bits32 SharedRegion_SRPtr
SharedRegion pointer type.
Definition: SharedRegion.h:197
Bool createHeap
Whether a heap is created for the region.
Definition: SharedRegion.h:240
SharedRegion_SRPtr SharedRegion_invalidSRPtr(Void)
Returns the SharedRegion_SRPtr value that maps to NULL.
Bool isValid
Whether the region is valid.
Definition: SharedRegion.h:220
String name
The name of the region.
Definition: SharedRegion.h:249
Int SharedRegion_clearEntry(UInt16 regionId)
Clears the regionid entry.
UInt16 SharedRegion_getId(Ptr addr)
Gets the region id for the specified address.
SizeT SharedRegion_getCacheLineSize(UInt16 regionId)
Gets the cache line size for the specified region id.
SizeT len
The length of the region.
Definition: SharedRegion.h:206
Bool SharedRegion_translateEnabled(Void)
Whether address translation is enabled.
Void SharedRegion_entryInit(SharedRegion_Entry *entry)
Initializes the entry fields.
Bool SharedRegion_isCacheEnabled(UInt16 regionId)
whether cache enable was specified
UInt16 ownerProcId
The MultiProc id of the owner of the region.
Definition: SharedRegion.h:213
Int SharedRegion_setEntry(UInt16 regionId, SharedRegion_Entry *entry)
Sets the entry at the specified region id.
Ptr SharedRegion_getHeap(UInt16 regionId)
Gets the heap associated with the specified region id.
Copyright 2015, Texas Instruments Incorporated