]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/rm-lld.git/blobdiff - src/rm.c
tree.h cache-instrumented macros were invalidating NULL pointers in some cases
[keystone-rtos/rm-lld.git] / src / rm.c
index e14884ba77a56d696f22a3f316fc142479c2e6cc..d95d87eca17d4eeb22025b3032c2f57351cbafa5 100644 (file)
--- a/src/rm.c
+++ b/src/rm.c
-/**\r
- *   @file  rm.c\r
- *\r
- *   @brief   \r
- *      This is the Resource Manager source.\r
- *\r
- *  \par\r
- *  ============================================================================\r
- *  @n   (C) Copyright 2012, Texas Instruments, Inc.\r
- * \r
- *  Redistribution and use in source and binary forms, with or without \r
- *  modification, are permitted provided that the following conditions \r
- *  are met:\r
- *\r
- *    Redistributions of source code must retain the above copyright \r
- *    notice, this list of conditions and the following disclaimer.\r
- *\r
- *    Redistributions in binary form must reproduce the above copyright\r
- *    notice, this list of conditions and the following disclaimer in the \r
- *    documentation and/or other materials provided with the   \r
- *    distribution.\r
- *\r
- *    Neither the name of Texas Instruments Incorporated nor the names of\r
- *    its contributors may be used to endorse or promote products derived\r
- *    from this software without specific prior written permission.\r
- *\r
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \r
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \r
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\r
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT \r
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, \r
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT \r
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\r
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\r
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT \r
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE \r
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
- *\r
- *  \par\r
-*/\r
-\r
-/* RM Types */\r
-#include <ti/drv/rm/rm_types.h>\r
-\r
-/* RM external includes */\r
-#include <ti/drv/rm/rm.h>\r
-#include <ti/drv/rm/rm_services.h>\r
-#include <ti/drv/rm/rm_transport.h>\r
-#include <ti/drv/rm/rm_policy.h>\r
-\r
-/* RM internal includes */\r
-#include <ti/drv/rm/include/rm_loc.h>\r
-#include <ti/drv/rm/include/rm_transportloc.h>\r
-#include <ti/drv/rm/include/rm_servicesloc.h>\r
-#include <ti/drv/rm/include/rm_nameserverloc.h>\r
-#include <ti/drv/rm/include/rm_dtb_utilloc.h>\r
-\r
-/* RM LIBFDT includes */\r
-#include <ti/drv/rm/src/libfdt/libfdt.h>\r
-\r
-/* RM OSAL layer */\r
-#include <rm_osal.h>\r
-\r
-/**********************************************************************\r
- ************************** Globals ***********************************\r
- **********************************************************************/\r
-#if 0\r
-/* Place QMSS PDSP permissions array */\r
-#pragma DATA_SECTION (rmQmssPdspFirmwarePerms, ".rm");\r
-#pragma DATA_ALIGN (rmQmssPdspFirmwarePerms, 128)\r
-Rm_Perms rmQmssPdspFirmwarePerms[RM_ALIGN_PERMISSIONS_ARRAY(RM_QMSS_FIRMWARE_PDSPS, Rm_Perms)];\r
-#endif\r
-\r
-/** @brief Global Variable which describes the RM Version Information */\r
-const char   rmVersionStr[] = RM_VERSION_STR ":" __DATE__  ":" __TIME__;\r
-\r
-/**********************************************************************\r
- ********************** Internal Functions ****************************\r
- **********************************************************************/\r
-\r
-/* At the very least the transaction ID needs to be provided to create a transaction */\r
-Rm_Transaction *Rm_transactionQueueAdd(Rm_Inst *rmInst)\r
-{\r
-    Rm_Transaction *transactionQueue = (Rm_Transaction *)rmInst->transactionQueue;\r
-    Rm_Transaction *newTransaction = NULL;\r
-    void *key;\r
-\r
-    /* Lock access to the RM instance's transaction queue */\r
-    key = Rm_osalMtCsEnter();\r
-\r
-    /* Get memory for a new transaction from local memory */\r
-    newTransaction = Rm_osalMalloc(sizeof(Rm_Transaction));\r
-\r
-    /* Return if the memory allocated for the transaction entry is NULL */\r
-    if (newTransaction == NULL)\r
-    {\r
-        Rm_osalMtCsExit(key);\r
-        return(newTransaction);\r
-    }\r
-\r
-    /* Clear the transaction */\r
-    memset((void *)newTransaction, 0, sizeof(Rm_Transaction));\r
-\r
-    /* Create an ID for the new transaction.  The ID will be used for two purposes:\r
-     * 1) Matching responses from higher level RM agents to requests\r
-     * 2) Provided to the component that requested the service so that it can match its\r
-     *    request with the response it receives via its callback function it provided */\r
-    newTransaction->localId = Rm_transactionGetSequenceNum(rmInst);\r
-    /* New transaction's nextTransaction pointer will always be NULL */\r
-    newTransaction->nextTransaction = NULL;  \r
-\r
-    /* Check if there are any transactions in the transaction queue */\r
-    if (transactionQueue)\r
-    {\r
-        /* At least one transaction in the transaction queue.  Add the new entry to the \r
-         * end of the transaction queue */\r
-        while (transactionQueue->nextTransaction != NULL)\r
-        {\r
-            /* Traverse the list until arriving at the last transaction */\r
-            transactionQueue = transactionQueue->nextTransaction;\r
-        }\r
-\r
-        /* Add the new transaction to the end of the queue */\r
-        transactionQueue->nextTransaction = newTransaction;\r
-    }\r
-    else\r
-    {\r
-        /* The transaction queue does not currently exist.  The new transaction is the \r
-         * first transaction */\r
-        rmInst->transactionQueue = newTransaction;\r
-    }\r
-\r
-    Rm_osalMtCsExit(key);\r
-    return (newTransaction);\r
-}\r
-\r
-Rm_Transaction *Rm_transactionQueueFind(Rm_Inst *rmInst, uint32_t transactionId)\r
-{\r
-    Rm_Transaction *transaction = (Rm_Transaction *)rmInst->transactionQueue;\r
-\r
-    /* Make sure there is at least one transaction in the transaction queue */\r
-    if (transaction != NULL)\r
-    {\r
-        /* Find the transaction ID within the specified RM instance's transaction queue.\r
-         * If the end of the transaction queue is reached without finding the transaction the \r
-         * transaction pointer will be NULL */\r
-        while (transaction != NULL)\r
-        {\r
-            if (transaction->localId == transactionId)\r
-            {\r
-                /* Match: break out of loop and return the transaction */\r
-                break;             \r
-            }\r
-            transaction = transaction->nextTransaction;\r
-        }\r
-    }\r
-\r
-    return (transaction);\r
-}\r
-\r
-int32_t Rm_transactionQueueDelete(Rm_Inst *rmInst, uint32_t transactionId)\r
-{\r
-    Rm_Transaction *transaction = (Rm_Transaction *) rmInst->transactionQueue;\r
-    Rm_Transaction *prevTransaction = NULL;\r
-    int32_t retVal = RM_SERVICE_STATE_OKAY;\r
-    void *key;\r
-\r
-    /* Lock access to the RM instance's transaction queue */\r
-    key = Rm_osalMtCsEnter();\r
-\r
-    /* Find the transaction ID within the specified RM instance's transaction queue. */\r
-    while (transaction != NULL)\r
-    {\r
-        if (transaction->localId == transactionId)\r
-        {\r
-            /* Match: break out of loop and delete the transaction */\r
-            break;             \r
-        }\r
-\r
-        prevTransaction = transaction;\r
-        transaction = transaction->nextTransaction;\r
-    }\r
-\r
-    /* Traversed entire queue but did not find transaction */\r
-    if (transaction == NULL)\r
-    {\r
-        retVal = RM_SERVICE_ERROR_SERVICE_TRANSACTION_DOES_NOT_EXIST;\r
-    }\r
-    else\r
-    {\r
-        /* Delete the transaction */\r
-        if (prevTransaction == NULL)\r
-        {\r
-            /* Transaction to be deleted exists at start of transaction queue.  Map second\r
-             * transaction to be start of transaction queue.  This covers case where there is\r
-             * only one transaction in the queue since the nextTransaction will be NULL */\r
-            rmInst->transactionQueue = transaction->nextTransaction;\r
-        }\r
-        else\r
-        {\r
-            /* Transaction to be deleted is in the middle or at end of the queue.  Adjust \r
-             * adjacent transaction pointers.  This covers the case where the transaction to be \r
-             * removed is at the end of the queue. */\r
-            prevTransaction->nextTransaction = transaction->nextTransaction;\r
-        }\r
-\r
-        /* Free the memory associated with the transaction. */\r
-        Rm_osalFree((void *)transaction, sizeof(Rm_Transaction));\r
-    }\r
-\r
-    Rm_osalMtCsExit(key);\r
-    return (retVal);\r
-}\r
-\r
-uint32_t Rm_transactionInitSequenceNum(void)\r
-{\r
-    /* Sequence number can never have a value of zero so that there are no conflicts\r
-     * with transactions that have a remoteOriginatingId of zero */\r
-    return (1);\r
-}\r
-\r
-uint32_t Rm_transactionGetSequenceNum(Rm_Inst *rmInst)\r
-{\r
-    uint32_t sequenceNum = 0;\r
-\r
-    /* Get the next sequence number and then increment.  If there's an overflow\r
-     * assign the initial value instead of incrementing. */\r
-    if (rmInst->transactionSeqNum + 1 < rmInst->transactionSeqNum)\r
-    {\r
-        /* Overflow */\r
-        sequenceNum = rmInst->transactionSeqNum;\r
-        rmInst->transactionSeqNum = Rm_transactionInitSequenceNum();\r
-    }\r
-    else\r
-    {\r
-        sequenceNum = rmInst->transactionSeqNum++;\r
-    }    \r
-\r
-    return (sequenceNum);\r
-}\r
-\r
-/* Function used to send RM response transactions to lower level agents */\r
-void Rm_transactionResponder (Rm_Inst *rmInst, Rm_Transaction *transaction)\r
-{\r
-    Rm_TransportNode *dstTransportNode = NULL;\r
-    Rm_Packet *rmPkt = NULL;\r
-\r
-    /* Find the transport for the RM instance that sent the request. */\r
-    dstTransportNode = Rm_transportNodeFindRemoteName(rmInst, transaction->sourceInstName);\r
-\r
-    /* Create a RM packet using the service information */\r
-    switch (transaction->type)\r
-    {\r
-        case Rm_service_RESOURCE_ALLOCATE:\r
-        case Rm_service_RESOURCE_BLOCK_ALLOCATE:\r
-        case Rm_service_RESOURCE_ALLOCATE_BY_NAME:\r
-        case Rm_service_RESOURCE_FREE:\r
-        case Rm_service_RESOURCE_BLOCK_FREE:\r
-        case Rm_service_RESOURCE_FREE_BY_NAME:\r
-            rmPkt = Rm_transportCreateResourceResponsePkt(rmInst, dstTransportNode, \r
-                                                          transaction);\r
-            break;\r
-        case Rm_service_RESOURCE_MAP_TO_NAME:\r
-        case Rm_service_RESOURCE_UNMAP_NAME:\r
-            rmPkt = Rm_transportCreateNsResponsePkt(rmInst, dstTransportNode,\r
-                                                    transaction);\r
-            break;\r
-        default:\r
-            /* Invalid service type.  Flag the error and return */\r
-            transaction->state = RM_SERVICE_ERROR_INVALID_SERVICE_TYPE;\r
-            break;\r
-    }\r
-\r
-    if (transaction->state <= RM_SERVICE_ERROR_BASE)\r
-    {\r
-        /* Delete the transaction and return immediately because an error occurred \r
-         * allocating the packet */\r
-        Rm_transactionQueueDelete(rmInst, transaction->localId);\r
-        return;\r
-    }\r
-\r
-    /* Send the RM packet to the application transport */\r
-    if (rmInst->transport.rmSend((Rm_TransportHandle) dstTransportNode, rmPkt) < RM_TRANSPORT_SUCCESSFUL)\r
-    {\r
-        /* Negative value returned by transport send.  An error occurred\r
-         * in the transport while attempting to send the packet.*/\r
-        transaction->state = RM_SERVICE_ERROR_TRANPSPORT_SEND_ERROR;\r
-        /* Clean up the packet */\r
-        if (rmInst->transport.rmFreePkt((Rm_TransportHandle) dstTransportNode, rmPkt))\r
-        {\r
-            /* Non-NULL value returned by transport packet free. Flag the\r
-             * error */\r
-            transaction->state = RM_SERVICE_ERROR_TRANSPORT_FREE_PKT_ERROR;\r
-        }\r
-        return;\r
-    }\r
-\r
-    /* NEED TO DO SOMETHING IF GET AN ERROR IN THE transaction->state FIELD.  CREATE\r
-     * NEW TRANSACTION WITH DATA FROM ORIGINAL?  THEN TRY TO SEND FAILED REQUEST BACK\r
-     * TO REQUESTER???  KEEP RETRYING SEND OF RESPONSE??? */\r
-\r
-    /* Delete the transaction */\r
-    Rm_transactionQueueDelete(rmInst, transaction->localId);\r
-}\r
-\r
-void Rm_allocationHandler (Rm_Inst *rmInst, Rm_Transaction *transaction)\r
-{\r
-    if (rmInst->instType == Rm_instType_CLIENT_DELEGATE)\r
-    {\r
-#if 0        \r
-        /* Check local policy to see if the request can be satisfied with the\r
-         * resources stored locally */\r
-        Rm_policy...API()\r
-\r
-        if (policy check approves the resource)\r
-        {\r
-            /* call the allocator to allocate the resource */\r
-            if (allocator returns resource)\r
-            {\r
-                /* Populate the transaction with the allocated resources and the result */\r
-                transaction->state = approve reason;\r
-                return ...\r
-            }\r
-            else\r
-            {\r
-                /* allocator ran out of resources, need to contact Server for more\r
-                 * resources */\r
-                Rm_resourcePoolModRequest(...);\r
-            }\r
-        }\r
-        else if (policy check denies resource)\r
-        {\r
-            /* Policy check denied resource. */\r
-            transaction->state= deny reason;\r
-            return ...\r
-        }\r
-        else if (policy check says forward to Server for validation)\r
-        {\r
-            /* Forward the transaction to the Server */\r
-            Rm_transactionForwarder(rmInst, transaction);\r
-        }\r
-#endif         \r
-    }\r
-    else if (rmInst->instType == Rm_instType_SERVER)\r
-    {\r
-#if 0        \r
-        /* Check global policy to see if resource can be allocated. return result\r
-         * no matter what */\r
-        Rm_policy...API()\r
-\r
-        if (policy approves)\r
-        {\r
-            /* call allocator to allocate resource */\r
-        }\r
-\r
-        transaction->state = approve or deny reason;\r
-        transaction->resourceInfo.base = ...;\r
-        transaction->resourceInfo.range = ...;\r
-\r
-        /* If source instance name does not match the current instance\r
-         * name the allocation request came from a Client.  The result\r
-         * must be sent back to the Client */\r
-        if (strcmp(transaction->sourceInstName, rmInst->name))\r
-        {\r
-            /* Names don't match.  Send the transaction back to the Client */\r
-            Rm_transactionResponder(rmInst, transaction);\r
-        }\r
-        else\r
-        {\r
-            /* Resource allocation request originated locally on the active\r
-             * instance. Send the response via the service responder. */          \r
-            Rm_serviceResponder(rmInst, transaction);                            \r
-        }\r
-#endif        \r
-    }   \r
-}\r
-\r
-void Rm_freeHandler (Rm_Inst *rmInst, Rm_Transaction *transaction)\r
-{\r
-    if (rmInst->instType == Rm_instType_CLIENT_DELEGATE)\r
-    {\r
-#if 0        \r
-        /* Check local policy to see if the request can be satisfied with the\r
-         * resources stored locally */\r
-        Rm_policy...API()\r
-\r
-        if (policy check approves the free)\r
-        {\r
-            /* call the allocator to free the resource */\r
-            /* Run a resource pool check to see if the free combined a resource block\r
-             * that can be returned to the server */\r
-            if (resource block has been combined)\r
-            {\r
-                  /* allocator ran out of resources, need to contact Server for more\r
-                 * resources */\r
-                Rm_resourcePoolModRequest(free pool block to server...);\r
-            }\r
-            else\r
-            {\r
-                /* Populate the receipt with the freed resources and the result */\r
-                transaction->state = approve reason;\r
-                return ...\r
-            }\r
-        }\r
-        else if (policy check denies resource free)\r
-        {\r
-            /* Policy check denied resource. */\r
-            transaction->state = deny reason;\r
-            return ...\r
-        }\r
-        else if (policy check says forward to Server for validation)\r
-        {\r
-            /* Forward the transaction to the Server */\r
-            Rm_transactionForwarder(rmInst, transaction);\r
-        }\r
-#endif         \r
-    }\r
-    else if (rmInst->instType == Rm_instType_SERVER)\r
-    {\r
-#if 0        \r
-        /* Check global policy to see if resource can be freed. return result\r
-         * no matter what */\r
-        Rm_policy...API()\r
-        if (policy approves)\r
-        {\r
-            /* call allocator to free resources */\r
-        }\r
-            \r
-        transaction->state = approve or deny reason;\r
-        transaction->resourceInfo.base = ...;\r
-        transaction->resourceInfo.range = ...;\r
-\r
-        /* If source instance name does not match the current instance\r
-         * name the allocation request came from a client.  The result\r
-         * must be sent back to the Client */\r
-        if (strcmp(transaction->sourceInstName, rmInst->name))\r
-        {\r
-            /* Names don't match.  Send the transaction back to the Client Delegate or Client */\r
-            Rm_transactionResponder(rmInst, transaction);\r
-        }\r
-        else\r
-        {\r
-            /* Resource allocation request originated locally on the active\r
-             * instance. Send the response via the service responder. */\r
-            Rm_serviceResponder(rmInst, transaction);                            \r
-        }\r
-#endif        \r
-    }   \r
-}\r
-\r
-/* Function used to forward RM transactions to higher level agents */\r
-void Rm_transactionForwarder (Rm_Inst *rmInst, Rm_Transaction *transaction)\r
-{\r
-    Rm_TransportNode *dstTransportNode = NULL;\r
-    Rm_Packet *rmPkt = NULL;\r
-\r
-    /* Make sure the RM instance has a transport registered with a higher level agent */\r
-    if (rmInst->registeredWithDelegateOrServer == false)\r
-    {\r
-        transaction->state = RM_SERVICE_ERROR_NOT_REGISTERED_WITH_DEL_OR_SERVER;\r
-        return;\r
-    }\r
-\r
-    /* Find the transport for the higher level agent.  Check for a connection to a Client Delegate\r
-     * or a Server.  Clients will be connected to either a Client Delegate or a Server.  Client\r
-     * Delegates will be connected to a Server. */\r
-    if (rmInst->instType == Rm_instType_CLIENT)\r
-    {\r
-        dstTransportNode = Rm_transportNodeFindRemoteInstType(rmInst, Rm_instType_CLIENT_DELEGATE);\r
-    } \r
-    else if (rmInst->instType == Rm_instType_CLIENT_DELEGATE)\r
-    {\r
-        dstTransportNode = Rm_transportNodeFindRemoteInstType(rmInst, Rm_instType_SERVER);\r
-    }\r
-\r
-    /* Create a RM packet using the service information */\r
-    switch (transaction->type)\r
-    {\r
-        case Rm_service_RESOURCE_ALLOCATE:\r
-        case Rm_service_RESOURCE_BLOCK_ALLOCATE:\r
-        case Rm_service_RESOURCE_ALLOCATE_BY_NAME:\r
-        case Rm_service_RESOURCE_FREE:\r
-        case Rm_service_RESOURCE_BLOCK_FREE:\r
-        case Rm_service_RESOURCE_FREE_BY_NAME:\r
-            rmPkt = Rm_transportCreateResourceReqPkt(rmInst, dstTransportNode, \r
-                                                     transaction);\r
-            break;\r
-        case Rm_service_RESOURCE_MAP_TO_NAME:\r
-        case Rm_service_RESOURCE_UNMAP_NAME:\r
-            rmPkt = Rm_transportCreateNsRequestPkt(rmInst, dstTransportNode,\r
-                                                   transaction);\r
-            break;\r
-        default:\r
-            /* Invalid service type.  Flag the error and return */\r
-            transaction->state = RM_SERVICE_ERROR_INVALID_SERVICE_TYPE;\r
-            break;\r
-    }\r
-\r
-    if (transaction->state <= RM_SERVICE_ERROR_BASE)\r
-    {\r
-        /* Return immediately because an error occurred allocating the packet */\r
-        return;\r
-    }\r
-\r
-    /* Send the RM packet to the application transport */\r
-    if (rmInst->transport.rmSend((Rm_TransportHandle) dstTransportNode, rmPkt) < RM_TRANSPORT_SUCCESSFUL)\r
-    {\r
-        /* Negative value returned by transport send.  An error occurred\r
-         * in the transport while attempting to send the packet.*/\r
-        transaction->state = RM_SERVICE_ERROR_TRANPSPORT_SEND_ERROR;\r
-        /* Clean up the packet */\r
-        if (rmInst->transport.rmFreePkt((Rm_TransportHandle) dstTransportNode, rmPkt))\r
-        {\r
-            /* Non-NULL value returned by transport packet free. Flag the\r
-             * error */\r
-            transaction->state = RM_SERVICE_ERROR_TRANSPORT_FREE_PKT_ERROR;\r
-        }\r
-        return;\r
-    }\r
-\r
-    /* Transaction is not deleted because it is awaiting a response from the higher level\r
-     * RM instance */\r
-}\r
-\r
-void Rm_transactionProcessor (Rm_Inst *rmInst, Rm_Transaction *transaction)\r
-{\r
-    /* Handle auto-forwarded transactions.  These transactions include:\r
-     * - All request transactions received on Clients are forwarded to the Client Delegate\r
-     * - NameServer requests received on the Client Delegate are forwarded to the Server */\r
-    if ((rmInst->instType == Rm_instType_CLIENT) ||\r
-        ((rmInst->instType == Rm_instType_CLIENT_DELEGATE) &&\r
-         (transaction->type == Rm_service_RESOURCE_MAP_TO_NAME) ||\r
-         (transaction->type == Rm_service_RESOURCE_UNMAP_NAME)))\r
-    {\r
-        /* Check if the transaction is a transaction that received a response to its\r
-         * request. */\r
-        if (transaction->state != RM_SERVICE_PROCESSING)\r
-        {\r
-\r
-            /* A transaction has received a response. Send the response to either the \r
-             * transaction or service responder based on the source instance */\r
-            if (strcmp(transaction->sourceInstName, rmInst->name))\r
-            {\r
-                /* Transaction originated from another instance.  Use the \r
-                 * transaction responder to send the result to the source instance.  This\r
-                 * is not possible on RM Clients since they can't forward RM services */\r
-                Rm_transactionResponder(rmInst, transaction);\r
-            }\r
-            else\r
-            {\r
-                /* Transaction originated on this instance.  Send to the\r
-                 * service responder */\r
-                Rm_serviceResponder(rmInst, transaction);\r
-            }\r
-        }\r
-        else\r
-        {\r
-            /* This is a new transaction that must be forwarded to a higher level RM instance. */\r
-            Rm_transactionForwarder(rmInst, transaction);\r
-        }\r
-    }\r
-    else\r
-    {\r
-        /* Client Delegate and Server transaction processors. */\r
-        switch (transaction->type)\r
-        {\r
-            case Rm_service_RESOURCE_ALLOCATE:\r
-            case Rm_service_RESOURCE_BLOCK_ALLOCATE:\r
-            case Rm_service_RESOURCE_ALLOCATE_BY_NAME:\r
-            case Rm_service_RESOURCE_FREE:\r
-            case Rm_service_RESOURCE_BLOCK_FREE:\r
-            case Rm_service_RESOURCE_FREE_BY_NAME:                \r
-                /* Check if the transaction is fulfilled request */\r
-                if (transaction->state != RM_SERVICE_PROCESSING)\r
-                {\r
-                    /* If source instance name does not match the current instance\r
-                     * name the allocation request came from a client.  The result\r
-                     * must be sent back to the Client */\r
-                    if (strcmp(transaction->sourceInstName, rmInst->name))\r
-                    {\r
-                        Rm_transactionResponder(rmInst, transaction);\r
-                    }\r
-                    else\r
-                    {\r
-                        /* Resource allocation request originated locally.  Send the response\r
-                         * via the service responder. */\r
-                        Rm_serviceResponder(rmInst, transaction);      \r
-                    }\r
-                }\r
-                else\r
-                {\r
-                    /* This is a new transaction request originating from an RM instance with fewer\r
-                     * allocate/free privileges.  Run the allocation or free handler to see if the resource\r
-                     * request can be handled locally or if it needs to be forwarded to a higher level\r
-                     * agent */\r
-                    if ((transaction->type == Rm_service_RESOURCE_ALLOCATE) ||\r
-                        (transaction->type == Rm_service_RESOURCE_BLOCK_ALLOCATE) ||\r
-                        (transaction->type == Rm_service_RESOURCE_ALLOCATE_BY_NAME))\r
-                    {\r
-                        Rm_allocationHandler(rmInst, transaction);\r
-                    }\r
-                    else\r
-                    {\r
-                        Rm_freeHandler(rmInst, transaction);\r
-                    }\r
-                }\r
-                break;\r
-            case Rm_service_RESOURCE_MAP_TO_NAME:\r
-            case Rm_service_RESOURCE_UNMAP_NAME:                \r
-                /* Server is the only RM instance capable of adding NameServer objects */\r
-                if (rmInst->instType == Rm_instType_SERVER)\r
-                {\r
-                    if (transaction->type == Rm_service_RESOURCE_MAP_TO_NAME)\r
-                    {\r
-                        /* Create a new NameServer object with the request transaction information.\r
-                         * Transaction will contain the state result of the NameServer addition. */\r
-                        Rm_nsAddObject(rmInst, transaction);\r
-                    }\r
-                    else\r
-                    {\r
-                        /* Delete an existing NameServer object with the request transaction information\r
-                         * Transaction will contain the state result of the NameServer addition. */\r
-                        Rm_nsDeleteObject(rmInst, transaction);\r
-                    }\r
-\r
-                    /* If source instance name does not match the local instance\r
-                     * name the NameServer request came from a Client or Client Delegate.  The \r
-                     * result must be sent back to the Client or Client Delegate.  Just return if it does\r
-                     * match since the NameServer transaction result can be returned immediately by the\r
-                     * Rm_serviceHandler. */\r
-                    if (strcmp(transaction->sourceInstName, rmInst->name))\r
-                    {\r
-                        Rm_transactionResponder(rmInst, transaction);\r
-                    }\r
-                }\r
-                else\r
-                {\r
-                    transaction->state = RM_SERVICE_ERROR_NAMESERVER_OBJECT_MOD_ON_INVALID_INSTANCE;\r
-                }\r
-                break;\r
-        }\r
-    }\r
-}\r
-\r
-void reverse_properties(void *fdt, int32_t offset)\r
-{\r
-       int32_t len;\r
-       const char *name;\r
-    char *resourceName, *allocator;\r
-       const void *data;\r
-    Rm_ResourceRange *range = NULL;\r
-    Rm_ResourceRange *startOfRange = NULL;\r
-    Rm_NsAssignment *nsAssignment = NULL;\r
-    Rm_NsAssignment *startOfNsAssignment = NULL;\r
-    Rm_ResourcePropType propType;\r
-\r
-       data = fdt_getprop_by_offset(fdt, offset, &name, &len);\r
-    if (!data)\r
-        Rm_osalLog("Error traverse_properties fdt_getprop_by_offset: %d\n", len);\r
-    else\r
-    {\r
-        Rm_osalLog("Property name: %s with length: %d offset: %d and address: %x\n", name, len, offset, data);\r
-\r
-        propType = Rm_resourceGetPropertyType(name);\r
-        if (propType == Rm_resourcePropType_RESOURCE_NAME)\r
-        {\r
-            Rm_osalLog("Resource Name: %s\n", resourceName = Rm_resourceExtractResourceName(data, len));\r
-            Rm_resourceFreeResourceName(resourceName);\r
-        }\r
-        else if (propType == Rm_resourcePropType_RESOURCE_RANGE)\r
-        {\r
-            startOfRange = range = Rm_resourceExtractResourceRange(data, len);\r
-            while (range != NULL)\r
-            {\r
-                Rm_osalLog("Resource base: %d and length: %d\n", range->base, range->length);\r
-                range = (Rm_ResourceRange *) range->nextRange;\r
-            }\r
-            Rm_resourceFreeResourceRange(startOfRange);\r
-        }\r
-        else if (propType == Rm_resourcePropType_NSASSIGNMENT)\r
-        {\r
-            startOfNsAssignment = nsAssignment = Rm_resourceExtractNsAssignment(data, len);\r
-            while (nsAssignment != NULL)\r
-            {\r
-                Rm_osalLog("NameServer assignment name: %s and value: %d\n", nsAssignment->nsName, nsAssignment->resourceValue);\r
-                nsAssignment = (Rm_NsAssignment *) nsAssignment->nextNsAssignment;\r
-            }\r
-            Rm_resourceFreeNsAssignmentList(startOfNsAssignment);\r
-        }   \r
-        else if (propType == Rm_resourcePropType_RESOURCE_ALLOCATOR)\r
-        {\r
-            Rm_osalLog("Resource Allocator: %s\n", allocator = Rm_resourceExtractResourceAllocator(data, len));\r
-            Rm_resourceFreeResourceAllocator(allocator);\r
-        }\r
-    }\r
-\r
-       offset = fdt_next_property_offset(fdt, offset);\r
-       if (offset >= 0)\r
-               reverse_properties(fdt, offset);\r
-       else if (offset != -FDT_ERR_NOTFOUND)\r
-               Rm_osalLog("Error traverse_properties fdt_next_property_offset: %d\n", offset);\r
-}\r
-\r
-void reverse_node(void *fdt, int32_t nodeOffset);\r
-\r
-void reverse_children(void *fdt, int32_t offset)\r
-{\r
-    const char *nodeName;\r
-       int32_t error;\r
-       int32_t nextOffset = offset;\r
-       int32_t depth = 1;\r
-\r
-       do {\r
-               char path[256];\r
-\r
-        nodeName = fdt_get_name(fdt, nextOffset, NULL);\r
-               error = fdt_get_path(fdt, nextOffset, path, sizeof(path));\r
-        if (error)\r
-            Rm_osalLog("Error reverse_children fdt_get_path: %d\n", error);\r
-        else\r
-            Rm_osalLog("Node path: %s with name %s\n", path, nodeName);\r
-\r
-\r
-               nextOffset = fdt_next_node(fdt, nextOffset, &depth);\r
-        if (error < 0)\r
-            Rm_osalLog("Error reverse_children fdt_next_node: %d\n", offset);\r
-        else\r
-            Rm_osalLog("Next node offset: %d with depth: %d\n", nextOffset, depth);\r
-       } while ((depth >= 0) && (depth != 1));\r
-\r
-       if (depth == 1)\r
-               reverse_children(fdt, nextOffset);\r
-\r
-       reverse_node(fdt, offset);\r
-}\r
-\r
-void reverse_node(void *fdt, int32_t nodeOffset)\r
-{\r
-       const char *nodeName = fdt_get_name(fdt, nodeOffset, NULL);\r
-       char path[256];\r
-       int32_t error;\r
-       int32_t offset;\r
-       int32_t depth = 0;\r
-\r
-       error = fdt_get_path(fdt, nodeOffset, path, sizeof(path));\r
-    if (error)\r
-        Rm_osalLog("Error traverse_node fdt_get_path: %d\n", error);\r
-    else\r
-        Rm_osalLog("Node path: %s with name %s\n", path, nodeName);\r
-\r
-    /* Get the properties for the node if any exist */\r
-       offset = fdt_first_property_offset(fdt, nodeOffset);\r
-       if (offset >= 0)\r
-               reverse_properties(fdt, offset);\r
-       else if (offset != -FDT_ERR_NOTFOUND)\r
-               Rm_osalLog("Error traverse_node fdt_first_property_offset: %d\n", offset);\r
-\r
-    /* Get the next node */\r
-       offset = fdt_next_node(fdt, nodeOffset, &depth);\r
-    if (offset >= 0)\r
-    {\r
-        Rm_osalLog("Next node offset: %d with depth: %d\n", offset, depth);\r
-    }\r
-    else if (offset != -FDT_ERR_NOTFOUND)\r
-        Rm_osalLog("Error traverse_node fdt_next_node: %d\n", offset);\r
-\r
-    if (depth == 1)\r
-        reverse_children(fdt, offset);\r
-}\r
-\r
-void traverseFdt (void *fdt)\r
-{\r
-    int32_t nodeOffset = 0;  /* offset starts at 0, beginning of tree */\r
-\r
-    reverse_node(fdt, nodeOffset);\r
-}\r
-\r
-\r
-/**********************************************************************\r
- ********************** Application visible APIs **********************\r
- **********************************************************************/\r
-\r
-Rm_Handle Rm_init(Rm_InitCfg *initCfg)\r
-{\r
-    Rm_Inst *rmInst;\r
-    void *fdt = initCfg->globalResourceList;  \r
-\r
-    /* Instance creation checks.  Add one to strlen calculation for null character */\r
-    if ((strlen(initCfg->instName) + 1) > RM_INSTANCE_NAME_MAX_CHARS)\r
-    {\r
-        /* Failure: Instance name is too big */\r
-        return (NULL);\r
-    }\r
-    \r
-    /* Get memory for RM instance from local memory */\r
-    rmInst = Rm_osalMalloc (sizeof(Rm_Inst));\r
-    /* Populate instance based on input parameters */\r
-    strcpy (&rmInst->name[0], initCfg->instName);\r
-    rmInst->instType = initCfg->instType;\r
-    rmInst->registeredWithDelegateOrServer = false;\r
-\r
-    /* Initialize the transport routing map linked list pointer to NULL.  The linked list\r
-     * nodes will be created when the application registers transports */\r
-    rmInst->routeMap = NULL;\r
-\r
-    /* Initialize the transaction queue elements. */\r
-    rmInst->transactionSeqNum = Rm_transactionInitSequenceNum();\r
-    rmInst->transactionQueue= NULL;\r
-\r
-    /* RM Server specific actions */\r
-    if (rmInst->instType == Rm_instType_SERVER)\r
-    {\r
-        /* Open the ResourceList file */\r
-        fdt_open_into(initCfg->globalResourceList, fdt, fdt_totalsize(initCfg->globalResourceList));\r
-\r
-        /* TEST: Try to parse the entire fdt */\r
-        traverseFdt(fdt);\r
-    }\r
-\r
-    /* Instance startup policies are only used for Servers and Client Delegates */\r
-    if (rmInst->instType != Rm_instType_CLIENT)\r
-    {\r
-        rmInst->instPolicy = initCfg->startupPolicy;\r
-\r
-        /* Store policy via policy APIs ... */\r
-    }\r
-\r
-    /* Return the RM Handle */\r
-    return ((Rm_Handle) rmInst);\r
-}\r
-\r
-uint32_t Rm_getVersion (void)\r
-{\r
-    return RM_VERSION_ID;\r
-}\r
-\r
-\r
-const char* Rm_getVersionStr (void)\r
-{\r
-    return rmVersionStr;\r
-}\r
-\r
-/**\r
-@}\r
-*/\r
+/**
+ *   @file  rm.c
+ *
+ *   @brief   
+ *      This is the Resource Manager source.
+ *
+ *  \par
+ *  ============================================================================
+ *  @n   (C) Copyright 2012-2015, Texas Instruments, Inc.
+ * 
+ *  Redistribution and use in source and binary forms, with or without 
+ *  modification, are permitted provided that the following conditions 
+ *  are met:
+ *
+ *    Redistributions of source code must retain the above copyright 
+ *    notice, this list of conditions and the following disclaimer.
+ *
+ *    Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the 
+ *    documentation and/or other materials provided with the   
+ *    distribution.
+ *
+ *    Neither the name of Texas Instruments Incorporated nor the names of
+ *    its contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
+ *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
+ *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
+ *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+ *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
+ *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
+ *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+ *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ *  \par
+*/
+
+/* Standard includes */
+#include <stdint.h>
+
+/* RM external includes */
+#include <ti/drv/rm/rm.h>
+#include <ti/drv/rm/rmver.h>
+#include <ti/drv/rm/rm_services.h>
+#include <ti/drv/rm/rm_transport.h>
+
+/* RM internal includes */
+#include <ti/drv/rm/include/rm_internal.h>
+#include <ti/drv/rm/include/rm_loc.h>
+#include <ti/drv/rm/include/rm_allocatorloc.h>
+#include <ti/drv/rm/include/rm_transportloc.h>
+#include <ti/drv/rm/include/rm_nameserverloc.h>
+#include <ti/drv/rm/include/rm_servicesloc.h>
+
+/* RM LIBFDT includes */
+#include <ti/drv/rm/util/libfdt/libfdt.h>
+
+/* RM OSAL layer */
+#include <rm_osal.h>
+
+/**********************************************************************
+ ************************** Globals ***********************************
+ **********************************************************************/
+
+/* Global Variable which describes the RM Version Information */
+const char  rmVersionStr[] = RM_VERSION_STR ":" __DATE__  ":" __TIME__;
+
+/**********************************************************************
+ ************************ Local Functions *****************************
+ **********************************************************************/
+
+/* FUNCTION PURPOSE: Initializes a RM inst's transaction sequence number
+ ***********************************************************************
+ * DESCRIPTION: The RM instance transaction sequence number can never
+ *              have a value of 0 to avoid conflicts with transactions
+ *              that have a remoteOriginatingId of 0 (transaction ID
+ *              will be used as the remoteOriginatingId for
+ *              transactions that are responses to requests).
+ */
+static uint32_t transactionInitSequenceNum(void)
+{
+    return (1);
+}
+
+/* FUNCTION PURPOSE: Provides a sequence number for new transactions
+ ***********************************************************************
+ * DESCRIPTION: Returns a sequence number for a new transaction
+ *              specific to a RM instance.  Handles rollover of
+ *              sequence number.
+ */
+static uint32_t transactionGetSequenceNum(Rm_Inst *rmInst)
+{
+    rmInst->transactionSeqNum++;
+    if (!rmInst->transactionSeqNum) {
+        rmInst->transactionSeqNum++;
+    }
+    return(rmInst->transactionSeqNum);
+}
+
+/* FUNCTION PURPOSE: Creates a resource request packet
+ ***********************************************************************
+ * DESCRIPTION: Returns a RM packet handle that points to a RM
+ *              resource request packet that has been prepared
+ *              for sending to another RM instance.  The packet
+ *              is allocated via the rmAllocPkt API using the
+ *              appTransport handle provided by the application
+ */
+static Rm_Packet *createResourceReqPkt(Rm_ResourceReqPktType resReqType,
+                                       Rm_Transport *dstTrans,
+                                       const char *locInstName,
+                                       Rm_Transaction *transaction,
+                                       Rm_PacketHandle *pktHandle)
+{
+    Rm_Packet             *rmPkt = NULL;
+    Rm_ResourceRequestPkt *resourceReqPkt = NULL;
+
+    rmPkt = dstTrans->callouts.rmAllocPkt(dstTrans->appTransportHandle,
+                                          sizeof(Rm_Packet), pktHandle);
+    if ((rmPkt == NULL) || (pktHandle == NULL)) {
+        transaction->state = RM_ERROR_TRANSPORT_ALLOC_PKT_ERROR;
+        goto errorExit;
+    }
+
+    rmPkt->pktType = Rm_pktType_RESOURCE_REQUEST;
+    resourceReqPkt = (Rm_ResourceRequestPkt *) rmPkt->data;
+    resourceReqPkt->requestId       = transaction->localId;
+    resourceReqPkt->resourceReqType = resReqType;
+    rm_strncpy(resourceReqPkt->pktSrcInstName, locInstName,
+               RM_NAME_MAX_CHARS);
+    rm_strncpy(resourceReqPkt->serviceSrcInstName,
+               transaction->serviceSrcInstName, RM_NAME_MAX_CHARS);
+    memcpy((void *)&(resourceReqPkt->resourceInfo),
+           (void *)&(transaction->resourceInfo),
+           sizeof(Rm_ResourceInfo));
+
+errorExit:
+    return(rmPkt);
+}
+
+/* FUNCTION PURPOSE: Creates a resource response packet
+ ***********************************************************************
+ * DESCRIPTION: Returns a RM packet handle that points to a RM
+ *              resource response packet that has been prepared
+ *              for sending to another RM instance.  The packet
+ *              is allocated via the rmAllocPkt API using the
+ *              appTransport handle provided by the application
+ */
+static void createResourceResponsePkt(Rm_Packet *rmPkt,
+                                      Rm_Transaction *transaction)
+{
+    Rm_ResourceResponsePkt *resourceRespPkt = NULL;
+
+    rmPkt->pktType = Rm_pktType_RESOURCE_RESPONSE;
+    resourceRespPkt = (Rm_ResourceResponsePkt *)rmPkt->data;
+    resourceRespPkt->responseId = transaction->remoteOriginatingId;
+    resourceRespPkt->requestState = transaction->state;
+    memcpy((void *)&(resourceRespPkt->resourceInfo),
+           (void *)&(transaction->resourceInfo),
+           sizeof(Rm_ResourceInfo));
+}
+
+/* FUNCTION PURPOSE: Creates a NameServer request packet
+ ***********************************************************************
+ * DESCRIPTION: Returns a RM packet handle that points to a RM
+ *              NameServer request packet that has been prepared
+ *              for sending to another RM instance.  The packet
+ *              is allocated via the rmAllocPkt API using the
+ *              appTransport handle provided by the application
+ */
+static Rm_Packet *createNsRequestPkt(Rm_NsReqPktType nsReqType,
+                                     Rm_Transport *dstTrans,
+                                     const char *locInstName,
+                                     Rm_Transaction *transaction,
+                                     Rm_PacketHandle *pktHandle)
+{
+    Rm_Packet       *rmPkt = NULL;
+    Rm_NsRequestPkt *nsReqPkt = NULL;
+
+
+    rmPkt = dstTrans->callouts.rmAllocPkt(dstTrans->appTransportHandle,
+                                          sizeof(Rm_Packet), pktHandle);
+    if ((rmPkt == NULL) || (pktHandle == NULL)) {
+        transaction->state = RM_ERROR_TRANSPORT_ALLOC_PKT_ERROR;
+        goto errorExit;
+    }
+
+    rmPkt->pktType = Rm_pktType_NAMESERVER_REQUEST;
+    nsReqPkt = (Rm_NsRequestPkt *)rmPkt->data;
+    nsReqPkt->requestId     = transaction->localId;
+    nsReqPkt->nsRequestType = nsReqType;
+    rm_strncpy(nsReqPkt->pktSrcInstName, locInstName, RM_NAME_MAX_CHARS);
+    rm_strncpy(nsReqPkt->serviceSrcInstName, transaction->serviceSrcInstName,
+               RM_NAME_MAX_CHARS);
+    memcpy((void *)&(nsReqPkt->resourceInfo),
+           (void *)&(transaction->resourceInfo),
+           sizeof(Rm_ResourceInfo));
+
+errorExit:
+    return(rmPkt);
+}
+
+/* FUNCTION PURPOSE: Creates a NameServer response packet
+ ***********************************************************************
+ * DESCRIPTION: Returns a RM packet handle that points to a RM
+ *              NameServer response packet that has been prepared
+ *              for sending to another RM instance.  The packet
+ *              is allocated via the rmAllocPkt API using the
+ *              appTransport handle provided by the application
+ */
+static void createNsResponsePkt(Rm_Packet *rmPkt, Rm_Transaction *transaction)
+{
+    Rm_NsResponsePkt *nsRespPkt = NULL;
+
+    rmPkt->pktType = Rm_pktType_NAMESERVER_RESPONSE;
+    nsRespPkt = (Rm_NsResponsePkt *)rmPkt->data;
+    nsRespPkt->responseId = transaction->remoteOriginatingId;
+    nsRespPkt->requestState = transaction->state;
+}
+
+/* FUNCTION PURPOSE: Creates a request packet
+ ***********************************************************************
+ * DESCRIPTION: Returns a RM packet handle that points to a request packet.
+ *              The request packet type is based on the transaction type.
+ */
+static Rm_Packet *createRequestPkt(Rm_Transport *dstTrans,
+                                   const char *locInstName,
+                                   Rm_Transaction *transaction,
+                                   Rm_PacketHandle *pktHandle)
+{
+    Rm_Packet *rmPkt = NULL;
+
+    switch (transaction->type) {
+        case Rm_service_RESOURCE_ALLOCATE_INIT:
+            rmPkt = createResourceReqPkt(Rm_resReqPktType_ALLOCATE_INIT,
+                                         dstTrans, locInstName, transaction,
+                                         pktHandle);
+            break;
+        case Rm_service_RESOURCE_ALLOCATE_USE:
+            rmPkt = createResourceReqPkt(Rm_resReqPktType_ALLOCATE_USE,
+                                         dstTrans, locInstName, transaction,
+                                         pktHandle);
+            break;
+        case Rm_service_RESOURCE_STATUS:
+            rmPkt = createResourceReqPkt(Rm_resReqPktType_GET_STATUS,
+                                         dstTrans, locInstName, transaction,
+                                         pktHandle);
+            break;
+        case Rm_service_RESOURCE_FREE:
+            rmPkt = createResourceReqPkt(Rm_resReqPktType_FREE,
+                                         dstTrans, locInstName, transaction,
+                                         pktHandle);
+            break;
+        case Rm_service_RESOURCE_GET_BY_NAME:
+            rmPkt = createResourceReqPkt(Rm_resReqPktType_GET_NAMED,
+                                         dstTrans, locInstName, transaction,
+                                         pktHandle);
+            break;
+        case Rm_service_RESOURCE_MAP_TO_NAME:
+            rmPkt = createNsRequestPkt(Rm_nsReqPktType_MAP_RESOURCE,
+                                       dstTrans, locInstName, transaction,
+                                       pktHandle);
+            break;
+        case Rm_service_RESOURCE_UNMAP_NAME:
+            rmPkt = createNsRequestPkt(Rm_nsReqPktType_UNMAP_RESOURCE,
+                                       dstTrans, locInstName, transaction,
+                                       pktHandle);
+            break;
+        default:
+            transaction->state = RM_ERROR_INVALID_SERVICE_TYPE;
+            break;
+    }
+
+    return(rmPkt);
+}
+
+/* FUNCTION PURPOSE: Issues a service response to application
+ ***********************************************************************
+ * DESCRIPTION: Provides a service response back to the application
+ *              using the service callback function provided to
+ *              the RM instance at the time of the service request.
+ */
+static void serviceResponder (Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_ServiceRespInfo serviceResponse;
+
+    serviceResponse.rmHandle = (Rm_Handle)rmInst;
+    /* The responseTransaction will contain the resultant state details of
+     * the requestTransaction's service request */
+    serviceResponse.serviceState = transaction->state;
+    /* Pass back the ID that was provided to the component when it requested
+     * the service */
+    serviceResponse.serviceId = transaction->localId;
+    /* Owner and instance allocation count will only be set within RM under
+     * certain circumstances. */
+    serviceResponse.resourceNumOwners = transaction->resourceInfo.ownerCount;
+    serviceResponse.instAllocCount = transaction->resourceInfo.instAllocCount;
+
+    /* Service was approved and service was an allocate request.  The resource
+     * data is passed back to the component */
+    if ((serviceResponse.serviceState == RM_SERVICE_APPROVED) &&
+        ((transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) ||
+         (transaction->type == Rm_service_RESOURCE_ALLOCATE_USE) ||
+         (transaction->type == Rm_service_RESOURCE_FREE) ||
+         (transaction->type == Rm_service_RESOURCE_STATUS) ||
+         (transaction->type == Rm_service_RESOURCE_GET_BY_NAME))) {
+        rm_strncpy(serviceResponse.resourceName, transaction->resourceInfo.name,
+                   RM_NAME_MAX_CHARS);
+        serviceResponse.resourceBase = transaction->resourceInfo.base;
+        serviceResponse.resourceLength = transaction->resourceInfo.length;
+    }
+
+    if (transaction->u.callback.serviceCallback) {
+        /* Issue the callback to the requesting component with the response
+         * information */
+        transaction->u.callback.serviceCallback(&serviceResponse);
+        /* Delete the transaction from the transaction queue */
+        rmTransactionQueueDelete(rmInst, transaction->localId);
+    } else {
+        rmServiceInternalCallback((Rm_Handle)rmInst);
+    }
+
+    return;
+}
+
+/* FUNCTION PURPOSE: Sends RM response packets
+ ***********************************************************************
+ * DESCRIPTION: Sends RM response packets to RM instance's that sent
+ *              RM request packets to the RM instance.  The response
+ *              is sent via the RM transport API which is plugged
+ *              with an application created transport path.
+ */
+static void transactionResponder (Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_Transport    *dstTransport = transaction->u.respTrans;
+    Rm_Packet       *rmPkt = NULL;
+    Rm_PacketHandle  pktHandle = NULL;
+
+    rmPkt = dstTransport->callouts.rmAllocPkt(dstTransport->appTransportHandle,
+                                              sizeof(Rm_Packet), &pktHandle);
+    if (!rmPkt || !pktHandle) {
+        transaction->state = RM_ERROR_TRANSPORT_ALLOC_PKT_ERROR;
+        goto errorExit;
+    }
+
+    switch (transaction->type) {
+        case Rm_service_RESOURCE_ALLOCATE_INIT:
+        case Rm_service_RESOURCE_ALLOCATE_USE:
+        case Rm_service_RESOURCE_STATUS:
+        case Rm_service_RESOURCE_FREE:
+        case Rm_service_RESOURCE_GET_BY_NAME:
+            createResourceResponsePkt(rmPkt, transaction);
+            break;
+        case Rm_service_RESOURCE_MAP_TO_NAME:
+        case Rm_service_RESOURCE_UNMAP_NAME:
+            createNsResponsePkt(rmPkt, transaction);
+            break;
+        default:
+            transaction->state = RM_ERROR_INVALID_SERVICE_TYPE;
+            goto errorExit;
+    }
+    if (dstTransport->callouts.rmSendPkt(dstTransport->appTransportHandle,
+                                         pktHandle) < RM_OK) {
+        transaction->state = RM_ERROR_TRANSPORT_SEND_ERROR;
+        goto errorExit;
+    }
+
+    /* Response packet sent: Delete transaction from queue */
+    rmTransactionQueueDelete(rmInst, transaction->localId);
+
+errorExit:
+    /* Do not delete transaction on transport error.  Transport error
+     * transactions should be visible from Rm_printInstanceStatus() */
+    return;
+}
+
+/* FUNCTION PURPOSE: Sends RM request packets
+ ***********************************************************************
+ * DESCRIPTION: Sends RM request packets to RM instance's that are
+ *              capable of forwarding or validating service requests.
+ *              The request is sent via the RM transport API which is
+ *              plugged with an application created transport path.
+ */
+static void transactionForwarder(Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_Transport *dstTrans;
+
+    if (rmInst->instType == Rm_instType_CLIENT) {
+        dstTrans = rmTransportFindRemoteInstType(rmInst->transports,
+                                                 Rm_instType_CLIENT_DELEGATE);
+        if (dstTrans == NULL) {
+            dstTrans = rmTransportFindRemoteInstType(rmInst->transports,
+                                                     Rm_instType_SERVER);
+        }
+    } else if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+        dstTrans = rmTransportFindRemoteInstType(rmInst->transports,
+                                                 Rm_instType_SERVER);
+    } else {
+        dstTrans = NULL;
+    }
+
+    /* Just queue transaction if transport hasn't been registered.  Do not
+     * return error */
+    if (dstTrans) {
+        Rm_Packet       *rmPkt = NULL;
+        Rm_PacketHandle  pktHandle = NULL;
+
+        rmPkt = createRequestPkt(dstTrans, rmInst->instName, transaction,
+                                 &pktHandle);
+        if ((rmPkt == NULL) || (pktHandle == NULL)) {
+            /* Error returned via transaction->state */
+            goto errorExit;
+        }
+
+        if (dstTrans->callouts.rmSendPkt(dstTrans->appTransportHandle,
+                                         pktHandle) < RM_OK) {
+            transaction->state = RM_ERROR_TRANSPORT_SEND_ERROR;
+            goto errorExit;
+        }
+        transaction->hasBeenForwarded = RM_TRUE;
+        /* Transaction not deleted.  Waiting for response from RM CD or
+         * Server */
+    } else {
+        transaction->state = RM_ERROR_TRANSPORT_HANDLE_DOES_NOT_EXIST;
+    }
+errorExit:
+    /* Do not delete transaction on transport error.  Transport error
+     * transactions should be visible from Rm_printInstanceStatus() */
+    return;
+}
+
+/* FUNCTION PURPOSE: Handles static allocation requests
+ ***********************************************************************
+ * DESCRIPTION: Validates allocation requests received on CDs and
+ *              Clients prior to the instance's registering
+ *              with a Server.  The allocation request is validated
+ *              against a static policy.
+ */
+static void staticAllocationHandler(Rm_Handle rmHandle,
+                                    Rm_Transaction *transaction)
+{
+    Rm_Inst           *rmInst = (Rm_Inst *)rmHandle;
+    Rm_AllocatorNode  *allocNode = NULL;
+    Rm_PolicyCheckCfg  privCheckCfg;
+
+    if (rmInst->allocatorTree) {
+        allocNode = rmAllocatorFind(rmHandle, transaction->resourceInfo.name);
+
+        if (allocNode &&
+            ((transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) ||
+             (transaction->type == Rm_service_RESOURCE_ALLOCATE_USE))) {
+            /* Check request against static policy */
+            memset((void *)&privCheckCfg, 0, sizeof(Rm_PolicyCheckCfg));
+
+            if (transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) {
+                privCheckCfg.type = Rm_policyCheck_INIT;
+            } else {
+                privCheckCfg.type = Rm_policyCheck_USE;
+            }
+            privCheckCfg.negCheck       = RM_FALSE;
+            privCheckCfg.validInstNode  = rmPolicyGetValidInstNode(rmHandle,
+                                                              rmInst->instName);
+            privCheckCfg.polTree        = allocNode->policyRoot;
+            privCheckCfg.resourceBase   = transaction->resourceInfo.base;
+            privCheckCfg.resourceLength = transaction->resourceInfo.length;
+
+            if (rmPolicyCheckPrivilege(&privCheckCfg)) {
+                transaction->state = RM_SERVICE_APPROVED_STATIC;
+            } else {
+                transaction->state = RM_SERVICE_DENIED_BY_STATIC_POLICY;
+            }
+        } else {
+            transaction->state = RM_SERVICE_DENIED_INVALID_STATIC_REQUEST;
+        }
+    } else {
+        transaction->state = RM_ERROR_REQ_FAILED_NO_STATIC_POLICY;
+    }
+}
+
+/* FUNCTION PURPOSE: Requests resources from Server for CD
+ ***********************************************************************
+ * DESCRIPTION: Function creates a service request to allocate resources
+ *              from the Server for local management by the CD.  The
+ *              transaction which causes this request is put in the
+ *              pending state in order to wait for the response from the 
+ *              Server
+ */
+static int32_t cdRequestServerResources(Rm_Inst *rmInst,
+                                        Rm_Transaction *transaction)
+{
+    Rm_AllocatorNode *allocNode = NULL;
+    Rm_Transaction   *newTrans = NULL;
+    uint32_t          allocSize = 0;
+    int32_t           retVal;
+
+    allocNode = rmAllocatorFind((Rm_Handle)rmInst,
+                                transaction->resourceInfo.name);
+
+    if (allocNode) {
+        if ((allocSize = rmPolicyGetCdAllocSize(allocNode->policyRoot))) {
+            if ((newTrans = rmTransactionQueueAdd(rmInst))) {
+                newTrans->type = transaction->type;
+                rm_strncpy(newTrans->serviceSrcInstName, rmInst->instName,
+                           RM_NAME_MAX_CHARS);
+                newTrans->state = RM_SERVICE_PROCESSING;
+                rm_strncpy(newTrans->resourceInfo.name,
+                           transaction->resourceInfo.name,
+                           RM_NAME_MAX_CHARS);
+                newTrans->resourceInfo.base = RM_RESOURCE_BASE_UNSPECIFIED;
+                /* Make sure request length will satisfy transaction length */
+                newTrans->resourceInfo.length = allocSize;
+                while (newTrans->resourceInfo.length <
+                       transaction->resourceInfo.length) {
+                    newTrans->resourceInfo.length += allocSize;
+                }
+                newTrans->resourceInfo.alignment = transaction->resourceInfo.alignment;
+                newTrans->pendingTransactionId = transaction->localId;
+                transactionForwarder(rmInst, newTrans);
+
+                retVal = RM_SERVICE_PENDING_SERVER_RESPONSE;
+            } else {
+                retVal = RM_ERROR_TRANS_REQ_TO_SERVER_NOT_CREATED;
+            }
+        } else {
+            /* Forward request to Server for completion if policy has 
+             * no allocation size for resource */
+            retVal = RM_SERVICE_PROCESSING;
+        }
+    } else {
+        /* Resource could not be found in policy */
+        retVal = RM_SERVICE_DENIED_RES_DOES_NOT_EXIST;
+    }
+    return(retVal);
+}
+
+/* FUNCTION PURPOSE: Frees local resources to Server from CD
+ ***********************************************************************
+ * DESCRIPTION: Function creates a service request to free locally
+ *              managed resources that are now localized back to
+ *              the Server.
+ */
+static int32_t cdFreeResourcesToServer(Rm_Inst *rmInst,
+                                       Rm_Transaction *transaction)
+{
+    int32_t         baseToFree = transaction->resourceInfo.base;
+    uint32_t        lenToFree = transaction->resourceInfo.length;
+    Rm_Transaction *newTrans = NULL; 
+    /* This function should only be called after a free was approved */
+    int32_t         retVal = RM_SERVICE_APPROVED;    
+
+    /* Did free result in a localized free node that can be given back to
+     * Server?  If so create transaction to Server to free localized
+     * resource node */
+    if (rmAllocatorGetNodeLocalization((Rm_Handle)rmInst,
+                                       transaction->resourceInfo.name,
+                                       &baseToFree, &lenToFree)) {
+        if ((newTrans = rmTransactionQueueAdd(rmInst))) {
+            newTrans->type = transaction->type;
+            rm_strncpy(newTrans->serviceSrcInstName, rmInst->instName,
+                       RM_NAME_MAX_CHARS);
+            newTrans->state = RM_SERVICE_PROCESSING;
+            rm_strncpy(newTrans->resourceInfo.name,
+                       transaction->resourceInfo.name, RM_NAME_MAX_CHARS);
+            newTrans->resourceInfo.base = baseToFree;
+            newTrans->resourceInfo.length = lenToFree;
+            newTrans->pendingTransactionId = transaction->localId;
+            transactionForwarder(rmInst, newTrans);
+
+            retVal = RM_SERVICE_PENDING_SERVER_RESPONSE;
+        } else {
+            /* Error: Need to re-allocate what was freed */
+            retVal = RM_ERROR_TRANS_REQ_TO_SERVER_NOT_CREATED;
+        }
+    }
+    return(retVal);
+}
+
+/* FUNCTION PURPOSE: Arbitrates allocation service requests
+ ***********************************************************************
+ * DESCRIPTION: Issues a set of allocator operations in order to
+ *              handle a received allocation request.  Allocation
+ *              requests are always forwarded to the Server on Client
+ *              CD instances.  If a request is made with a NameServer
+ *              name the resource base and length parameters are
+ *              retrieved from the NameServer prior to the allocation
+ *              attempt.
+ */
+static void allocationHandler (Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_AllocatorOpInfo   opInfo;
+    Rm_NameServerObjCfg  nameServerObjCfg;
+    int32_t              retVal = transaction->state;
+
+    memset((void *)&opInfo, 0, sizeof(Rm_AllocatorOpInfo));
+    opInfo.resourceInfo = &transaction->resourceInfo;
+    opInfo.serviceInstNode = rmPolicyGetValidInstNode((Rm_Handle)rmInst,
+                                              transaction->serviceSrcInstName);
+    if (opInfo.serviceInstNode == NULL) {
+        retVal = RM_SERVICE_DENIED_INST_NAME_NOT_VALID;
+        goto errorExit;
+    }
+
+    if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+        if (transaction->resourceInfo.base != RM_RESOURCE_BASE_UNSPECIFIED) {
+            if (rmAllocatorFind((Rm_Handle)rmInst,
+                                transaction->resourceInfo.name)) {
+                /* Attempt to allocate from local resources that were provided
+                 * by Server */
+                if (transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) {
+                    opInfo.operation = Rm_allocatorOp_ALLOCATE_INIT;
+                } else if (transaction->type ==
+                           Rm_service_RESOURCE_ALLOCATE_USE) {
+                    opInfo.operation = Rm_allocatorOp_ALLOCATE_USE;
+                } else {
+                    retVal = RM_ERROR_INVALID_SERVICE_TYPE;
+                    goto errorExit;
+                }
+                retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+
+                if (retVal == RM_SERVICE_DENIED_RES_RANGE_DOES_NOT_EXIST) {
+                    /* Request resource range was not found within local
+                     * resources provided by Server.  Set back to PROCESSING so
+                     * request is forwarded to Server */
+                    retVal = RM_SERVICE_PROCESSING;
+                }
+            }
+        } else {
+            if (rmAllocatorFind((Rm_Handle)rmInst,
+                                transaction->resourceInfo.name)) {
+                int32_t oldAlign = transaction->resourceInfo.alignment;
+
+                /* Attempt to allocate from local resources that were provided
+                 * by Server */
+                if (transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) {
+                    opInfo.operation = Rm_allocatorOp_PRE_ALLOCATE_INIT;
+                } else if (transaction->type ==
+                         Rm_service_RESOURCE_ALLOCATE_USE) {
+                    opInfo.operation = Rm_allocatorOp_PRE_ALLOCATE_USE;
+                } else {
+                    retVal = RM_ERROR_INVALID_SERVICE_TYPE;
+                    goto errorExit;
+                }
+                retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+
+                if (retVal == RM_SERVICE_PROCESSING) {
+                    if (transaction->type ==
+                        Rm_service_RESOURCE_ALLOCATE_INIT) {
+                        opInfo.operation = Rm_allocatorOp_ALLOCATE_INIT;
+                    } else if (transaction->type ==
+                               Rm_service_RESOURCE_ALLOCATE_USE) {
+                        opInfo.operation = Rm_allocatorOp_ALLOCATE_USE;
+                    } else {
+                        retVal = RM_ERROR_INVALID_SERVICE_TYPE;
+                        goto errorExit;
+                    }
+                    retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+
+                    if (retVal == RM_SERVICE_DENIED_RES_RANGE_DOES_NOT_EXIST) {
+                        /* Request resource range was not found within local
+                         * resources provided by Server.  Set back to
+                         * PROCESSING so request is forwarded to Server */
+                        retVal = RM_SERVICE_PROCESSING;
+                    }
+                } else if (retVal == RM_SERVICE_DENIED_RES_ALLOC_REQS_NOT_MET) {
+                    if (transaction->pendingTransactionId) {
+                        /* Request to Server for resources to complete
+                         * transaction locally performed once already.  Forward
+                         * transaction to Server for completion */
+                        retVal = RM_SERVICE_PROCESSING;
+                    } else {
+                        /* Restore base and alignment since they were replaced
+                         * in pre-allocate routine */
+                        transaction->resourceInfo.base = RM_RESOURCE_BASE_UNSPECIFIED;
+                        transaction->resourceInfo.alignment = oldAlign;
+
+                        retVal = cdRequestServerResources(rmInst, transaction);
+                    }
+                }
+                /* else: fall through to return */
+            } else {
+                retVal = cdRequestServerResources(rmInst, transaction);
+            }
+        }
+    } else if ((rmInst->instType == Rm_instType_SERVER)||
+               (rmInst->instType == Rm_instType_SHARED_SERVER)) {
+        /* Populated NameServer name has precedence over base */
+        if (strlen(transaction->resourceInfo.nameServerName) > 0) {
+            if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+                rmNameServerTreeInv(rmInst->u.server.nameServer);
+            }
+            memset((void *)&nameServerObjCfg, 0, sizeof(Rm_NameServerObjCfg));
+            nameServerObjCfg.nameServerTree = rmInst->u.server.nameServer;
+            nameServerObjCfg.nodeCfg.objName = transaction->resourceInfo.nameServerName;
+            if ((retVal = rmNameServerFindObject(&nameServerObjCfg)) ==
+                RM_SERVICE_PROCESSING) {
+                rm_strncpy(transaction->resourceInfo.name,
+                           nameServerObjCfg.nodeCfg.resourceName,
+                           RM_NAME_MAX_CHARS);
+                transaction->resourceInfo.base = nameServerObjCfg.nodeCfg.resourceBase;
+                transaction->resourceInfo.length = nameServerObjCfg.nodeCfg.resourceLength;
+            } else {
+                goto errorExit;
+            }
+        }
+
+        if (transaction->resourceInfo.base == RM_RESOURCE_BASE_UNSPECIFIED) {
+            if (transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) {
+                opInfo.operation = Rm_allocatorOp_PRE_ALLOCATE_INIT;
+            } else if (transaction->type == Rm_service_RESOURCE_ALLOCATE_USE) {
+                opInfo.operation = Rm_allocatorOp_PRE_ALLOCATE_USE;
+            } else {
+                retVal = RM_ERROR_INVALID_SERVICE_TYPE;
+                goto errorExit;
+            }
+            retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+        }
+
+        if (retVal == RM_SERVICE_PROCESSING) {
+            if (transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) {
+                opInfo.operation = Rm_allocatorOp_ALLOCATE_INIT;
+            } else if (transaction->type == Rm_service_RESOURCE_ALLOCATE_USE) {
+                opInfo.operation = Rm_allocatorOp_ALLOCATE_USE;
+            } else {
+                retVal = RM_ERROR_INVALID_SERVICE_TYPE;
+                goto errorExit;
+            }
+            retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+        }
+    } else {
+        retVal = RM_ERROR_INVALID_INST_TYPE;
+    }
+errorExit:
+    transaction->state = retVal;
+}
+
+/* FUNCTION PURPOSE: Handles resource status service requests
+ ***********************************************************************
+ * DESCRIPTION: Issues a set of allocator operations to retrieve the
+ *              current status (currently just owner reference count)
+ *              for the resource specified in the transaction
+ */
+static void statusHandler(Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_AllocatorOpInfo  opInfo;
+    Rm_NameServerObjCfg nameServerObjCfg;
+    int32_t             retVal = transaction->state;
+
+    memset((void *)&opInfo, 0, sizeof(Rm_AllocatorOpInfo));
+    opInfo.operation = Rm_allocatorOp_GET_STATUS;
+    opInfo.resourceInfo = &transaction->resourceInfo;
+    opInfo.serviceInstNode = rmPolicyGetValidInstNode((Rm_Handle)rmInst,
+                                            transaction->serviceSrcInstName);
+    if (opInfo.serviceInstNode == NULL) {
+        retVal = RM_SERVICE_DENIED_INST_NAME_NOT_VALID;
+        goto errorExit;
+    }
+
+    if ((strlen(transaction->resourceInfo.nameServerName) == 0) &&
+        ((transaction->resourceInfo.base == RM_RESOURCE_BASE_UNSPECIFIED) ||
+         (transaction->resourceInfo.length == 0))) {
+        retVal = RM_SERVICE_DENIED_RES_DOES_NOT_EXIST;
+        goto errorExit;
+    }
+
+    if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+        if (rmAllocatorFind((Rm_Handle)rmInst,
+                            transaction->resourceInfo.name)) {
+            /* Attempt to get status from local resources that were provided by
+             * Server */
+            retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+
+            if (retVal == RM_SERVICE_DENIED_RES_RANGE_DOES_NOT_EXIST) {
+                /* Request resource range was not found within local allocator
+                 * resources provided by Server.  Set back to PROCESSING so
+                 * request is forwarded to Server */
+                retVal = RM_SERVICE_PROCESSING;
+            }
+        }
+    } else if ((rmInst->instType == Rm_instType_SERVER)||
+               (rmInst->instType == Rm_instType_SHARED_SERVER)) {
+        /* Populated NameServer name has precedence over base and length
+         * values */
+        if (strlen(transaction->resourceInfo.nameServerName) > 0) {
+            if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+                rmNameServerTreeInv(rmInst->u.server.nameServer);
+            }
+            memset((void *)&nameServerObjCfg, 0, sizeof(Rm_NameServerObjCfg));
+            nameServerObjCfg.nameServerTree = rmInst->u.server.nameServer;
+            nameServerObjCfg.nodeCfg.objName = transaction->resourceInfo.nameServerName;
+            if ((retVal = rmNameServerFindObject(&nameServerObjCfg)) ==
+                RM_SERVICE_PROCESSING) {
+                rm_strncpy(transaction->resourceInfo.name,
+                           nameServerObjCfg.nodeCfg.resourceName,
+                           RM_NAME_MAX_CHARS);
+                transaction->resourceInfo.base = nameServerObjCfg.nodeCfg.resourceBase;
+                transaction->resourceInfo.length = nameServerObjCfg.nodeCfg.resourceLength;
+            } else {
+                goto errorExit;
+            }
+        }
+        retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+    } else {
+        retVal = RM_ERROR_INVALID_INST_TYPE;
+    }
+errorExit:
+    transaction->state = retVal;
+}
+
+/* FUNCTION PURPOSE: Arbitrates free service requests
+ ***********************************************************************
+ * DESCRIPTION: Issues a set of allocator operations in order to
+ *              handle a received free request.  Free
+ *              requests are always forwarded to the Server on Client
+ *              CD instances.  If a request is made with a NameServer
+ *              name the resource base and length parameters are
+ *              retrieved from the NameServer prior to the free
+ *              attempt.
+ */
+static void freeHandler(Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_AllocatorOpInfo  opInfo; 
+    Rm_NameServerObjCfg nameServerObjCfg;
+    int32_t             retVal = transaction->state;
+
+    memset((void *)&opInfo, 0, sizeof(Rm_AllocatorOpInfo));
+    opInfo.operation = Rm_allocatorOp_FREE;
+    opInfo.resourceInfo = &transaction->resourceInfo;
+    opInfo.serviceInstNode = rmPolicyGetValidInstNode((Rm_Handle)rmInst,
+                                            transaction->serviceSrcInstName);
+    if (opInfo.serviceInstNode == NULL) {
+        retVal = RM_SERVICE_DENIED_INST_NAME_NOT_VALID;
+        goto errorExit;
+    }
+
+    if ((strlen(transaction->resourceInfo.nameServerName) == 0) &&
+        ((transaction->resourceInfo.base == RM_RESOURCE_BASE_UNSPECIFIED) ||
+         (transaction->resourceInfo.length == 0))) {
+        retVal = RM_SERVICE_DENIED_RES_DOES_NOT_EXIST;
+        goto errorExit;
+    }
+
+    if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+        /* Attempt to free from local resources that were provided by Server */
+        retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+
+        if (retVal == RM_SERVICE_APPROVED) {
+            /* Check if free allows local resources to be freed back to
+             * Server */
+            retVal = cdFreeResourcesToServer(rmInst, transaction);
+        } else if ((retVal == RM_SERVICE_DENIED_RES_RANGE_DOES_NOT_EXIST) ||
+                 (retVal == RM_SERVICE_DENIED_RES_DOES_NOT_EXIST)) {
+            /* Requested resource or its range were not found within local
+             * allocator resources provided by Server.  Set back to PROCESSING
+             * so request is forwarded to Server */
+            retVal = RM_SERVICE_PROCESSING;
+        }
+        /* else: fall through to exit */
+    } else if ((rmInst->instType == Rm_instType_SERVER) ||
+             (rmInst->instType == Rm_instType_SHARED_SERVER)) {
+        /* Populated NameServer name has precedence over base */
+        if (strlen(transaction->resourceInfo.nameServerName) > 0) {
+            if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+                rmNameServerTreeInv(rmInst->u.server.nameServer);
+            }                    
+            memset((void *)&nameServerObjCfg, 0, sizeof(Rm_NameServerObjCfg));
+            nameServerObjCfg.nameServerTree = rmInst->u.server.nameServer;
+            nameServerObjCfg.nodeCfg.objName = transaction->resourceInfo.nameServerName;
+            if ((retVal = rmNameServerFindObject(&nameServerObjCfg)) ==
+                RM_SERVICE_PROCESSING) {
+                rm_strncpy(transaction->resourceInfo.name,
+                           nameServerObjCfg.nodeCfg.resourceName,
+                           RM_NAME_MAX_CHARS);
+                transaction->resourceInfo.base = nameServerObjCfg.nodeCfg.resourceBase;
+                transaction->resourceInfo.length = nameServerObjCfg.nodeCfg.resourceLength;
+            } else {
+                goto errorExit;
+            }
+        }
+        retVal = rmAllocatorOperation((Rm_Handle)rmInst, &opInfo);
+    } else {
+        retVal = RM_ERROR_INVALID_INST_TYPE;
+    }
+errorExit:
+    transaction->state = retVal;
+}
+
+/* FUNCTION PURPOSE: Client transaction handling process
+ ***********************************************************************
+ * DESCRIPTION: Client process for handling transactions created
+ *              from services received via the service handle or the
+ *              transport.  The Client process:
+ *                  - Performs static allocations if no transport
+ *                    to CD or Server has been registered
+ *                  - Forwards all service requests to CD or Server
+ *                    once transport has been registered
+ */
+static void clientProcess(Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_Transaction *transQ;
+
+    if (!rmInst->registeredWithDelegateOrServer) {
+        staticAllocationHandler((Rm_Handle)rmInst, transaction);
+    } else {
+        if (transaction->state == RM_SERVICE_PROCESSING) {
+            /* Forward all new transactions to CD or Server */
+            transactionForwarder(rmInst, transaction);
+        } else {
+            /* Transaction validated.  Return result. */
+            serviceResponder(rmInst, transaction);
+        }
+
+        /* Forward any queued static requests that weren't forwarded */
+        transQ = rmInst->transactionQueue;
+        while(transQ) {
+            if ((transQ->state == RM_SERVICE_APPROVED_STATIC) &&
+                (!transQ->hasBeenForwarded)) {
+                transactionForwarder(rmInst, transQ);
+            }
+            transQ = transQ->nextTransaction;
+        }
+    }
+    /* Let call stack return transaction result app via Rm_serviceHandler */
+}
+
+/* FUNCTION PURPOSE: Client Delegate transaction handling process
+ ***********************************************************************
+ * DESCRIPTION: Client Delegate process for handling transactions created
+ *              from services received via the service handle or the
+ *              transport.  The Client Delegate process:
+ *                  - Performs static allocations if no transport
+ *                    to Server has been registered
+ *                  - Forwards all NameServer related service requests 
+ *                    to Server once transport has been registered
+ *                  - Attempts to complete resource service requests
+ *                    received from registered Clients
+ */
+static void cdProcess(Rm_Inst *rmInst, Rm_Transaction *transaction)
+{      
+    Rm_Transaction   *newTrans = NULL;
+    Rm_AllocatorNode *allocator = NULL;
+    Rm_Transaction   *transQ;
+
+    if (!rmInst->registeredWithDelegateOrServer) {
+        if ((transaction->state == RM_SERVICE_PROCESSING) &&
+            (strncmp(transaction->serviceSrcInstName, rmInst->instName,
+             RM_NAME_MAX_CHARS) == 0)) {
+            /* Attempt static allocation of requests originating from CD inst */
+            staticAllocationHandler((Rm_Handle)rmInst, transaction);
+        }
+        /* Everything else left in transaction queue for forwarding once
+         * transport to Server is registered */
+    } else {
+        if (transaction->pendingTransactionId) {
+            Rm_Transaction *pendingTrans = rmTransactionQueueFind(rmInst,
+                                             transaction->pendingTransactionId);
+
+            /* Transaction is response from Server for transaction sent to get
+             * information in order to complete pending transaction */
+            if (transaction->state == RM_SERVICE_APPROVED) {
+                if (transaction->type == Rm_service_RESOURCE_GET_BY_NAME) {
+                    /* Transfer resource data tied to name to pending
+                     * transaction */
+                    rm_strncpy(pendingTrans->resourceInfo.name,
+                               transaction->resourceInfo.name,
+                               RM_NAME_MAX_CHARS);
+                    pendingTrans->resourceInfo.base   = transaction->resourceInfo.base;
+                    pendingTrans->resourceInfo.length = transaction->resourceInfo.length;
+                    /* Delete NS name from pending transaction so Server isn't
+                     * queried again */
+                    memset(pendingTrans->resourceInfo.nameServerName, 0,
+                           RM_NAME_MAX_CHARS);
+                    /* Now that resource values have been retrieved clear
+                     * pending transaction ID so CD doesn't think a resource
+                     * request was sent to Server already for more local
+                     * resources */
+                    pendingTrans->pendingTransactionId = 0;
+
+                    /* Return original transaction to processing state to
+                     * attempt completion. */
+                    pendingTrans->state = RM_SERVICE_PROCESSING;
+                } else if ((transaction->type ==
+                            Rm_service_RESOURCE_ALLOCATE_INIT) ||
+                           (transaction->type ==
+                            Rm_service_RESOURCE_ALLOCATE_USE)) {
+                    /* Add resources provided by Server to those managed by
+                     * CD */
+                    if ((allocator = rmAllocatorFind((Rm_Handle)rmInst,
+                                             transaction->resourceInfo.name))) {
+                        rmAllocatorAddResNode((Rm_Handle)rmInst,
+                                              allocator,
+                                              transaction->resourceInfo.base,
+                                              transaction->resourceInfo.length);
+                    }
+
+                    /* Return original transaction to processing state to
+                     * attempt completion */
+                    pendingTrans->state = RM_SERVICE_PROCESSING;
+                } else if (transaction->type == Rm_service_RESOURCE_FREE) {
+                    allocator = rmAllocatorFind((Rm_Handle)rmInst,
+                                                transaction->resourceInfo.name);
+
+                    /* Local resource freed on Server.  Remove node in
+                     * local allocator's resource tree as well */
+                    rmAllocatorDeleteResNode((Rm_Handle)rmInst,
+                                             allocator,
+                                             transaction->resourceInfo.base,
+                                             transaction->resourceInfo.length);
+
+                    /* Allow original free to complete */
+                    pendingTrans->state = RM_SERVICE_APPROVED;
+                } else {
+                    pendingTrans->state = RM_ERROR_SERVER_RESP_INVALID_SERVICE_TYPE;
+                }
+            } else {
+                if (transaction->type == Rm_service_RESOURCE_FREE) {
+                    /* Error occurred when trying to free local resource on
+                     * Server.  Reinsert local resources freed by original
+                     * request */
+                    Rm_AllocatorOpInfo   opInfo;
+
+                    memset((void *)&opInfo, 0, sizeof(Rm_AllocatorOpInfo));
+                    opInfo.resourceInfo = &pendingTrans->resourceInfo;
+                    opInfo.serviceInstNode = rmPolicyGetValidInstNode((Rm_Handle)rmInst,
+                                              pendingTrans->serviceSrcInstName);
+                    /* Can't regain the original type of allocate.  Default to
+                     * init */
+                    opInfo.operation = Rm_allocatorOp_ALLOCATE_INIT;
+                    if (rmAllocatorOperation((Rm_Handle)rmInst, &opInfo) !=
+                        RM_SERVICE_APPROVED) {
+                        transaction->state = RM_ERROR_LOST_RESOURCES_ON_CD;
+                    }
+                }
+                /* Transfer error or denial to pending transaction */
+                pendingTrans->state = transaction->state;
+            }
+            rmTransactionQueueDelete(rmInst, transaction->localId);
+            /* Switch to pending transaction */
+            transaction = pendingTrans;
+        }
+
+        if ((transaction->type == Rm_service_RESOURCE_ALLOCATE_INIT) ||
+            (transaction->type == Rm_service_RESOURCE_ALLOCATE_USE) ||
+            (transaction->type == Rm_service_RESOURCE_STATUS) ||
+            (transaction->type == Rm_service_RESOURCE_FREE)) {
+            if ((transaction->state == RM_SERVICE_PROCESSING) &&
+                (strlen(transaction->resourceInfo.nameServerName) > 0)) {
+                /* Create and forward new transaction to Server to
+                 * retrieve resource data mapped to name */
+                if ((newTrans = rmTransactionQueueAdd(rmInst))) {
+                    newTrans->type = Rm_service_RESOURCE_GET_BY_NAME;
+                    rm_strncpy(newTrans->serviceSrcInstName, rmInst->instName,
+                               RM_NAME_MAX_CHARS);
+                    newTrans->state = RM_SERVICE_PROCESSING;
+                    rm_strncpy(newTrans->resourceInfo.nameServerName,
+                               transaction->resourceInfo.nameServerName,
+                               RM_NAME_MAX_CHARS);
+                    newTrans->pendingTransactionId = transaction->localId;
+                    transactionForwarder(rmInst, newTrans);
+
+                    transaction->state = RM_SERVICE_PENDING_SERVER_RESPONSE;
+                } else {
+                    transaction->state = RM_ERROR_TRANS_REQ_TO_SERVER_NOT_CREATED;
+                }
+            }
+        }
+
+        if (transaction->state == RM_SERVICE_PROCESSING) {
+            switch(transaction->type) {
+                case Rm_service_RESOURCE_ALLOCATE_INIT:
+                case Rm_service_RESOURCE_ALLOCATE_USE:
+                    allocationHandler(rmInst, transaction);
+                    break;
+                case Rm_service_RESOURCE_FREE:
+                    freeHandler(rmInst, transaction);
+                    break;
+                case Rm_service_RESOURCE_STATUS:
+                    statusHandler(rmInst, transaction);
+                    break;
+                case Rm_service_RESOURCE_MAP_TO_NAME:
+                case Rm_service_RESOURCE_GET_BY_NAME:
+                case Rm_service_RESOURCE_UNMAP_NAME:
+                    /* Forward all NameServer-based transactions */
+                    break;
+                default:
+                    transaction->state = RM_ERROR_INVALID_SERVICE_TYPE;
+                    break;
+            }
+        }
+
+        if (transaction->state == RM_SERVICE_PROCESSING) {
+            uint32_t transId = transaction->localId;
+
+            /* NameServer transaction or CD could not complete alloc/free
+             * transaction.  Forward to Server */
+            transactionForwarder(rmInst, transaction);
+
+            /* Refresh transaction for reentrancy of cases where mix of Client
+             * CD and Server are running on the same core and connected via
+             * transport implemented over direct function calls instead of
+             * traditional transport that returns after sending the data */
+            transaction = rmTransactionQueueFind(rmInst, transId);
+        }
+
+        if (transaction) {
+            if ((transaction->state != RM_SERVICE_PROCESSING) &&
+                (transaction->state != RM_SERVICE_PENDING_SERVER_RESPONSE)) {
+                /* Transaction completed by CD or completed response received
+                 * from Server.  Return result */
+                if (strncmp(transaction->serviceSrcInstName, rmInst->instName,
+                    RM_NAME_MAX_CHARS)) {
+                    /* Transaction did not originate on this instance */
+                    transactionResponder(rmInst, transaction);
+                } else {
+                    /* Transaction originated on this instance */
+                    serviceResponder(rmInst, transaction);
+                }
+            }
+        }
+
+        /* Attempt allocation of any queued static requests:
+         * RM_SERVICE_APPROVED_STATIC - Originated locally
+         * RM_SERVICE_PROCESSING - Received from any registered Clients */
+        transQ = rmInst->transactionQueue;
+        while(transQ) {
+            if (((transQ->state == RM_SERVICE_PROCESSING) ||
+                 (transQ->state == RM_SERVICE_APPROVED_STATIC)) &&
+                (!transQ->hasBeenForwarded)) {
+                transactionForwarder(rmInst, transQ);
+            }
+            transQ = transQ->nextTransaction;
+        }
+    }
+}
+
+/* FUNCTION PURPOSE: Server transaction handling process
+ ***********************************************************************
+ * DESCRIPTION: Server process for handling transactions created
+ *              from services received via the service handle or the
+ *              transport.  The Server process:
+ *                  - Validates all service requests received from
+ *                    the service handle and registered CDs and
+ *                    Clients
+ */
+static void serverProcess(Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    Rm_NameServerObjCfg  nameServerObjCfg;
+
+    switch (transaction->type) {
+        case Rm_service_RESOURCE_STATUS:
+            statusHandler(rmInst, transaction);
+            break;
+        case Rm_service_RESOURCE_ALLOCATE_INIT:
+        case Rm_service_RESOURCE_ALLOCATE_USE:
+            allocationHandler(rmInst, transaction);
+            break;
+        case Rm_service_RESOURCE_FREE:
+            freeHandler(rmInst, transaction);
+            break;
+        case Rm_service_RESOURCE_MAP_TO_NAME:
+        case Rm_service_RESOURCE_GET_BY_NAME:
+        case Rm_service_RESOURCE_UNMAP_NAME:
+            if (rmInst->u.server.nameServer) {
+                if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+                    rmNameServerTreeInv(rmInst->u.server.nameServer);
+                }                
+                memset((void *)&nameServerObjCfg, 0,
+                       sizeof(Rm_NameServerObjCfg));
+                nameServerObjCfg.nameServerTree = rmInst->u.server.nameServer;
+                nameServerObjCfg.nodeCfg.objName = transaction->resourceInfo.nameServerName;
+                if (transaction->type == Rm_service_RESOURCE_MAP_TO_NAME) {
+                    nameServerObjCfg.nodeCfg.resourceName = transaction->resourceInfo.name;
+                    nameServerObjCfg.nodeCfg.resourceBase= transaction->resourceInfo.base;
+                    nameServerObjCfg.nodeCfg.resourceLength = transaction->resourceInfo.length;
+                    transaction->state = rmNameServerAddObject(&nameServerObjCfg);
+                } else if (transaction->type ==
+                           Rm_service_RESOURCE_GET_BY_NAME) {
+                    if ((transaction->state = rmNameServerFindObject(&nameServerObjCfg)) ==
+                        RM_SERVICE_PROCESSING) {
+                        rm_strncpy(transaction->resourceInfo.name,
+                                   nameServerObjCfg.nodeCfg.resourceName,
+                                   RM_NAME_MAX_CHARS);
+                        transaction->resourceInfo.base = nameServerObjCfg.nodeCfg.resourceBase;
+                        transaction->resourceInfo.length = nameServerObjCfg.nodeCfg.resourceLength;
+                        transaction->state = RM_SERVICE_APPROVED;
+                    }
+                } else if (transaction->type ==
+                           Rm_service_RESOURCE_UNMAP_NAME) {
+                    transaction->state = rmNameServerDeleteObject(&nameServerObjCfg);
+                } else {
+                    transaction->state = RM_ERROR_INVALID_SERVICE_TYPE;
+                }
+
+                if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+                    rmNameServerTreeWb(rmInst->u.server.nameServer);
+                }
+            } else {
+                transaction->state = RM_ERROR_NAMESERVER_DOES_NOT_EXIST;
+            }
+            break;
+        default:
+            transaction->state = RM_ERROR_INVALID_SERVICE_TYPE;
+            break;
+    }
+
+    /* Source of shared server transaction will always be local. */
+    if (rmInst->instType != Rm_instType_SHARED_SERVER) {
+        if (strncmp(transaction->serviceSrcInstName, rmInst->instName,
+                    RM_NAME_MAX_CHARS)) {
+            /* Source of transaction was not Server, return transaction via
+             * responder */
+            transactionResponder(rmInst, transaction);
+        }
+    }
+    /* Otherwise let call stack return transaction result app via
+     * Rm_serviceHandler */ 
+}
+
+/**********************************************************************
+ ********************** Internal Functions ****************************
+ **********************************************************************/
+
+/* FUNCTION PURPOSE: Adds a transaction
+ ***********************************************************************
+ * DESCRIPTION: Returns a pointer to a newly created transaction.
+ *              The transaction is created based on a new service
+ *              request received via the service API or the
+ *              transport API (service forwarded from another instance)
+ */
+Rm_Transaction *rmTransactionQueueAdd(Rm_Inst *rmInst)
+{
+    Rm_Transaction *transactionQueue = rmInst->transactionQueue;
+    Rm_Transaction *newTransaction   = NULL;
+
+    newTransaction = Rm_osalMalloc(sizeof(Rm_Transaction));
+    if (newTransaction) {
+        memset((void *)newTransaction, 0, sizeof(Rm_Transaction));
+
+        newTransaction->localId = transactionGetSequenceNum(rmInst);
+        newTransaction->nextTransaction = NULL;  
+        if (transactionQueue) {
+            while (transactionQueue->nextTransaction) {
+                transactionQueue = transactionQueue->nextTransaction;
+            }
+            transactionQueue->nextTransaction = newTransaction;
+        } else {
+            rmInst->transactionQueue = newTransaction;
+        }
+    }
+    return(newTransaction);
+}
+
+/* FUNCTION PURPOSE: Finds a transaction
+ ***********************************************************************
+ * DESCRIPTION: Returns a pointer to a transaction resident
+ *              in the transaction queue that matches the provided
+ *              transaction ID.
+ */
+Rm_Transaction *rmTransactionQueueFind(Rm_Inst *rmInst, uint32_t transactionId)
+{
+    Rm_Transaction *transaction = rmInst->transactionQueue;
+
+    while (transaction) {
+        if (transaction->localId == transactionId) {
+            break;
+        }
+        transaction = transaction->nextTransaction;
+    }
+
+    return(transaction);
+}
+
+/* FUNCTION PURPOSE: Deletes a transaction
+ ***********************************************************************
+ * DESCRIPTION: Deletes the transaction with the provided transaction
+ *              ID from the instance's transaction queue.
+ */
+int32_t rmTransactionQueueDelete(Rm_Inst *rmInst, uint32_t transactionId)
+{
+    Rm_Transaction *transaction = rmInst->transactionQueue;
+    Rm_Transaction *prevTransaction = NULL;
+    int32_t         retVal = RM_OK;
+
+    while (transaction) {
+        if (transaction->localId == transactionId) {
+            break;
+        }
+
+        prevTransaction = transaction;
+        transaction = transaction->nextTransaction;
+    }
+
+    if (transaction) {
+        if (prevTransaction == NULL) {
+            /* Transaction at start of queue. Map second transaction to start
+             * of queue as long as more than one transactions. */
+            rmInst->transactionQueue = transaction->nextTransaction;
+        } else {
+            /* Transaction in middle or end of queue. */
+            prevTransaction->nextTransaction = transaction->nextTransaction;
+        }
+        Rm_osalFree((void *)transaction, sizeof(Rm_Transaction));
+    } else {
+        retVal = RM_ERROR_SERVICE_TRANS_DOES_NOT_EXIST;
+    }
+    return(retVal);
+}
+
+/* FUNCTION PURPOSE: Routes a transaction for processing
+ ***********************************************************************
+ * DESCRIPTION: Routes a received transaction to the appropriate
+ *              instance processing routine
+ */
+void rmProcessRouter(Rm_Inst *rmInst, Rm_Transaction *transaction)
+{
+    if (rmInst->instType == Rm_instType_CLIENT) {
+        clientProcess(rmInst, transaction);
+    } else if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+        cdProcess(rmInst, transaction);
+    } else if ((rmInst->instType == Rm_instType_SERVER) ||
+               (rmInst->instType == Rm_instType_SHARED_SERVER)) {
+        serverProcess(rmInst, transaction);
+    } else {
+        transaction->state = RM_ERROR_INVALID_INST_TYPE;
+    }
+}
+
+/**********************************************************************
+ ********************** Application visible APIs **********************
+ **********************************************************************/
+
+/* FUNCTION PURPOSE: Display status of managed resources
+ ***********************************************************************
+ * DESCRIPTION: Prints the status (allocate/free status, as well as
+ *              owners) for all resources managed by the RM 
+ *              instance network.  Also, prints the NameServer name
+ *              entries.  The number of resource range owners is
+ *              returned as well.  This function is only available on
+ *              Server and CD instances.
+ */
+int32_t Rm_resourceStatus(Rm_Handle rmHandle, int printResources)
+{
+    Rm_Inst          *rmInst = (Rm_Inst *)rmHandle;
+    Rm_AllocatorTree *allocTree = NULL;
+    Rm_AllocatorNode *allocator;
+    Rm_Owner         *owners;
+    Rm_ResourceTree  *treeRoot;
+    Rm_ResourceNode  *treeNode;
+    int32_t           totalResOwners = 0;
+    void             *key;
+    void             *mtKey;
+
+    RM_SS_INST_INV_ENTER_CS(rmInst, key);
+    RM_SC_INST_INV_ENTER_CS(rmInst, key);
+    if (rmInst->mtSemObj) {
+        mtKey = Rm_osalMtCsEnter(rmInst->mtSemObj);
+    }
+
+    if (rmInst->instType != Rm_instType_CLIENT) {
+        Rm_osalLog("Instance name: %s\n", rmInst->instName);
+        Rm_osalLog("Handle: 0x%08x\n", rmHandle);
+        if (rmInst->instType == Rm_instType_SERVER) {
+            Rm_osalLog("Type:   Server\n");
+        } else if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+            Rm_osalLog("Type:   Client Delegate\n");
+        } else if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+            Rm_osalLog("Type:   Shared Server\n");
+        } else if (rmInst->instType == Rm_instType_SHARED_CLIENT) {
+            Rm_osalLog("Type:   Shared Client\n");
+        } else {
+            Rm_osalLog("Type:   UNKNOWN\n");
+            goto errorExit;
+        }
+
+        Rm_osalLog("\nResource Status:\n\n");
+    }
+
+    if (rmInst->instType == Rm_instType_SHARED_CLIENT) {
+        /* Transfer control to shared server instance */
+        rmInst = rmInst->u.sharedClient.sharedServerHandle;
+    }
+
+    if ((rmInst->instType == Rm_instType_SERVER) ||
+        (rmInst->instType == Rm_instType_SHARED_SERVER) ||
+        (rmInst->instType == Rm_instType_CLIENT_DELEGATE)) {
+
+        allocTree = rmInst->allocatorTree;
+        if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+            rmAllocatorTreeInv(allocTree);
+        }
+
+        RB_FOREACH(allocator, _Rm_AllocatorTree, allocTree) {
+            RM_SS_OBJ_INV(rmInst, allocator, Rm_AllocatorNode);
+            if (printResources) {
+                Rm_osalLog("Resource: %s\n", allocator->resourceName);
+            }
+
+            treeRoot = allocator->resourceRoot;
+            if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+                rmResourceTreeInv(treeRoot);
+            }
+            RB_FOREACH(treeNode, _Rm_AllocatorResourceTree, treeRoot) {
+                if (printResources) {
+                    if ((treeNode->base >= 65536) ||
+                        ((treeNode->base + treeNode->length - 1) >= 65536)) {
+                        /* Print in hex if number is very large */
+                        Rm_osalLog("          0x%08x - 0x%08x ",
+                                   treeNode->base,
+                                   treeNode->base + treeNode->length - 1);
+                    } else {
+                        Rm_osalLog("          %10d - %10d ",
+                                   treeNode->base,
+                                   treeNode->base + treeNode->length - 1);
+                    }
+                }
+
+                if (treeNode->allocationCount == 0) {
+                    if (printResources) {
+                        Rm_osalLog("FREE\n");
+                    }
+                } else {
+                    owners = treeNode->ownerList;
+                    while (owners) {
+                        RM_SS_OBJ_INV(rmInst, owners, Rm_Owner);
+                        if (printResources) {
+                            Rm_osalLog("%s (%d) ", owners->instNameNode->name,
+                                       owners->refCnt);
+                        }
+                        totalResOwners++;
+                        owners = owners->nextOwner;
+                    }
+                    if (printResources) {
+                        Rm_osalLog("\n");
+                    }
+                }
+            }
+        }
+
+        if ((rmInst->instType == Rm_instType_SERVER) ||
+            (rmInst->instType == Rm_instType_SHARED_SERVER)) {
+            if (printResources) {
+                rmNameServerPrintObjects((Rm_Handle)rmInst);
+            }
+        }
+    } else {
+        totalResOwners = RM_ERROR_INVALID_RES_STATUS_INSTANCE;
+    }
+
+errorExit:
+    /* Free sem object using originating instance in case the Shared Client to Shared
+     * Server instance switch took place */
+    if (((Rm_Inst *)rmHandle)->mtSemObj) {
+        Rm_osalMtCsExit(((Rm_Inst *)rmHandle)->mtSemObj, mtKey);
+    }
+    RM_SS_INST_WB_EXIT_CS(rmInst, key);
+    return(totalResOwners);
+}
+
+/* FUNCTION PURPOSE: Display status of a RM instance
+ ***********************************************************************
+ * DESCRIPTION: Prints the current status of various RM instance
+ *              properties such as the state of all transactions
+ *              in the transaction queue and registered transports
+ */
+void Rm_instanceStatus(Rm_Handle rmHandle)
+{
+    Rm_Inst        *rmInst = (Rm_Inst *)rmHandle;
+    Rm_Transport   *transportList = NULL;
+    Rm_Transaction *transactionQ = NULL;
+    void           *key;
+    void           *mtKey;
+
+    RM_SS_INST_INV_ENTER_CS(rmInst, key);
+    RM_SC_INST_INV_ENTER_CS(rmInst, key);
+    if (rmInst->mtSemObj) {
+        mtKey = Rm_osalMtCsEnter(rmInst->mtSemObj);
+    }
+
+    Rm_osalLog("Instance name: %s\n", rmInst->instName);
+    Rm_osalLog("Handle: 0x%08x\n", rmHandle);    
+    if (rmInst->instType == Rm_instType_SERVER) {
+        Rm_osalLog("Type:   Server\n");
+    } else if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+        Rm_osalLog("Type:   Client Delegate\n");
+    } else if (rmInst->instType == Rm_instType_CLIENT) {
+        Rm_osalLog("Type:   Client\n");
+    } else if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+        Rm_osalLog("Type:   Shared Server\n");
+    } else if (rmInst->instType == Rm_instType_SHARED_CLIENT) {
+        Rm_osalLog("Type:   Shared Client\n");
+
+        Rm_osalLog("\nShared Server Properties:\n");
+        /* Transfer to Shared Server instance to print out transport and
+         * transaction status */
+        rmInst = rmInst->u.sharedClient.sharedServerHandle;
+        Rm_osalLog("Instance name: %s\n", rmInst->instName);
+        Rm_osalLog("Handle: 0x%08x\n", rmHandle);
+    } else {
+        Rm_osalLog("Type:   UNKNOWN\n");
+        goto errorExit;
+    }
+
+    transportList = rmInst->transports;
+    if (transportList) {
+        Rm_osalLog("\nRegistered Transports:\n");
+        while (transportList) {
+            RM_SS_OBJ_INV(rmInst, transportList, Rm_Transport);
+            if (transportList->remoteInstType == Rm_instType_SERVER) {
+                Rm_osalLog("    Remote instType:    Server\n");
+            } else if (transportList->remoteInstType ==
+                       Rm_instType_CLIENT_DELEGATE) {
+                Rm_osalLog("    Remote instType:    Client Delegate\n");
+            } else {
+                Rm_osalLog("    Remote instType:    Client\n");
+            }
+            Rm_osalLog("    appTransportHandle: 0x%08x\n",
+                       transportList->appTransportHandle);
+            Rm_osalLog("\n");
+            transportList = transportList->nextTransport;
+        }
+    }
+
+    transactionQ = rmInst->transactionQueue;
+    if (transactionQ) {
+        Rm_osalLog("\nQueued Service Transactions:\n");
+        while (transactionQ) {
+            RM_SS_OBJ_INV(rmInst, transactionQ, Rm_Transaction);
+            Rm_osalLog("    Service type:       %d\n",
+                       transactionQ->type);
+            Rm_osalLog("    Service ID:         %d\n", transactionQ->localId);
+            Rm_osalLog("    Service srcInstName %s\n",
+                       transactionQ->serviceSrcInstName);
+            Rm_osalLog("    Service state:      %d\n", transactionQ->state);
+            Rm_osalLog("    Resource name:      %s\n",
+                       transactionQ->resourceInfo.name);
+            Rm_osalLog("    Resource base:      %d\n",
+                       transactionQ->resourceInfo.base);
+            Rm_osalLog("    Resource length:    %d\n",
+                       transactionQ->resourceInfo.length);
+            Rm_osalLog("    Resource alignment: %d\n",
+                       transactionQ->resourceInfo.alignment);
+            Rm_osalLog("    Resource NS name:   %s\n",
+                       transactionQ->resourceInfo.nameServerName);
+            Rm_osalLog("\n");
+            transactionQ = transactionQ->nextTransaction;
+        }
+    }
+
+errorExit:
+    /* Free sem object using originating instance in case the Shared Client
+     * to Shared Server instance switch took place */
+    if (((Rm_Inst *)rmHandle)->mtSemObj) {
+        Rm_osalMtCsExit(((Rm_Inst *)rmHandle)->mtSemObj, mtKey);
+    }
+    RM_SS_INST_WB_EXIT_CS(rmInst, key);
+}
+
+/* FUNCTION PURPOSE: RM instance creation and initialization
+ ***********************************************************************
+ * DESCRIPTION: Returns a new RM instance created and initialized
+ *              using the parameters provided via the initCfg
+ *              structure.
+ */
+Rm_Handle Rm_init(const Rm_InitCfg *initCfg, int32_t *result)
+{
+    Rm_Inst  *rmInst = NULL;
+    void     *grlDtb = NULL;
+    void     *policyDtb = NULL;
+    void     *linuxDtb = NULL;
+    int       addLinux = RM_FALSE;
+    void     *key;
+
+    *result = RM_OK;
+
+    if ((initCfg->instName == NULL) ||
+        ((strlen(initCfg->instName) + 1) > RM_NAME_MAX_CHARS)) {
+        *result = RM_ERROR_INVALID_INST_NAME;
+        goto errorExit;
+    }
+
+    if (initCfg->instType >= Rm_instType_LAST) {
+        *result = RM_ERROR_INVALID_INST_TYPE;
+        goto errorExit;
+    }
+
+    /* Create and initialize instance */
+    rmInst = Rm_osalMalloc(sizeof(*rmInst));
+    memset((void *)rmInst, 0, sizeof(*rmInst));
+    rmInst->isLocked = RM_FALSE;
+    rmInst->registeredWithDelegateOrServer = RM_FALSE;
+    rmInst->transactionSeqNum = transactionInitSequenceNum();
+
+    rmInst->instType = initCfg->instType;
+    rm_strncpy(rmInst->instName, initCfg->instName, RM_NAME_MAX_CHARS);
+    rmInst->mtSemObj = initCfg->mtSemObj;
+
+    if ((rmInst->instType == Rm_instType_SERVER) ||
+        (rmInst->instType == Rm_instType_SHARED_SERVER)) {
+        if (!initCfg->instCfg.serverCfg.globalResourceList ||
+            !initCfg->instCfg.serverCfg.globalPolicy) {
+            *result = RM_ERROR_INVALID_SERVER_CONFIGURATION;
+            goto errorExit;
+        }
+
+        if (initCfg->instCfg.serverCfg.linuxDtb) {
+            linuxDtb = initCfg->instCfg.serverCfg.linuxDtb;
+            addLinux = RM_TRUE;
+        }
+
+        /* Create valid instance list from policy.  Must be done prior to
+         * parsing GRL so that Linux resources can be reserved correctly */
+        policyDtb = initCfg->instCfg.serverCfg.globalPolicy;
+        rmInst->validInstTree = rmPolicyVInstTreeInit(rmInst, policyDtb,
+                                                      addLinux, result);
+        if (*result != RM_OK) {
+            goto errorExit;
+        }
+
+        rmNameServerInit((Rm_Handle)rmInst);
+        grlDtb = initCfg->instCfg.serverCfg.globalResourceList;
+        if ((*result = rmAllocatorTreeInit(rmInst, grlDtb,
+                                           policyDtb, linuxDtb)) != RM_OK) {
+            goto errorExit;
+        }
+    } else if (rmInst->instType == Rm_instType_CLIENT_DELEGATE) {
+        if (!initCfg->instCfg.cdCfg.cdPolicy) {
+            *result = RM_ERROR_INVALID_CD_CONFIGURATION;
+            goto errorExit;
+        }
+
+        policyDtb = initCfg->instCfg.cdCfg.cdPolicy;
+        rmInst->validInstTree = rmPolicyVInstTreeInit(rmInst, policyDtb,
+                                                      addLinux, result);
+        if (*result != RM_OK) {
+            goto errorExit;
+        }
+
+        if ((*result = rmAllocatorTreeInit(rmInst, NULL,
+                                           policyDtb, NULL)) != RM_OK) {
+            goto errorExit;
+        }
+
+        /* Remove once CD instance is stable - tracked by SDOCM00100797 */
+        *result = RM_WARNING_CD_INSTANCE_NOT_STABLE;
+
+    } else if (rmInst->instType == Rm_instType_CLIENT) {
+        if (initCfg->instCfg.clientCfg.staticPolicy) {
+            policyDtb = initCfg->instCfg.clientCfg.staticPolicy;
+            rmInst->validInstTree = rmPolicyVInstTreeInit(rmInst, policyDtb,
+                                                          addLinux, result);
+            if (*result != RM_OK) {
+                goto errorExit;
+            }
+
+            if ((*result = rmAllocatorTreeInit(rmInst, NULL,
+                                               policyDtb, NULL)) != RM_OK) {
+                goto errorExit;
+            }
+        }
+        
+    } else if (rmInst->instType == Rm_instType_SHARED_CLIENT) {
+        Rm_Handle  sHdl = initCfg->instCfg.sharedClientCfg.sharedServerHandle;
+        Rm_Inst   *ssInst = NULL;
+
+        if (sHdl) {
+            rmInst->u.sharedClient.sharedServerHandle = sHdl;
+            /* Invalidate the Shared server instance structure on this core to
+             * get the latest instance data. */
+            key = Rm_osalCsEnter();
+            Rm_osalBeginMemAccess((void *)sHdl, sizeof(Rm_Inst));
+            ssInst = rmInst->u.sharedClient.sharedServerHandle;
+            if (ssInst->instType != Rm_instType_SHARED_SERVER) {
+                *result = RM_ERROR_INVALID_SHARED_SERVER_HANDLE;
+                Rm_osalCsExit(key);
+                goto errorExit;
+            } else {
+                /* Invalidate all the trees */
+                rmPolicyValidInstTreeInv(ssInst->validInstTree);
+                rmAllocatorTreeInv(ssInst->allocatorTree);
+                rmNameServerTreeInv(ssInst->u.server.nameServer);
+            }
+            Rm_osalCsExit(key);
+        } else {
+            *result = RM_ERROR_INVALID_SHARED_SERVER_HANDLE;
+            goto errorExit;
+        }
+    } else {
+        *result = RM_ERROR_INVALID_INST_TYPE;
+        goto errorExit;
+    }
+
+    if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+        /* Writeback instance and trees for other cores */
+        rmPolicyValidInstTreeWb(rmInst->validInstTree);
+        rmAllocatorTreeWb(rmInst->allocatorTree);
+        rmNameServerTreeWb(rmInst->u.server.nameServer);
+        Rm_osalEndMemAccess((void *)rmInst, sizeof(*rmInst));
+    } else if (rmInst->instType != Rm_instType_SHARED_CLIENT) {
+        /* Create the instance's task blocking mechanism */
+        rmInst->blockHandle = Rm_osalTaskBlockCreate();
+    }
+    /* else: just return handle */
+
+    return((Rm_Handle)rmInst);
+
+errorExit:
+    if (rmInst) {
+        rmAllocatorTreeDelete((Rm_Handle)rmInst);
+        rmNameServerDelete((Rm_Handle)rmInst);
+        rmPolicyVInstTreeDelete((Rm_Handle)rmInst);
+        Rm_osalFree((void *)rmInst, sizeof(*rmInst));
+    }
+    return(NULL);
+}
+
+/* FUNCTION PURPOSE: Deletes an RM instance
+ ***********************************************************************
+ * DESCRIPTION: Frees all memory associated with an RM instance
+ *              as long as all transports have been unregistered
+ *              and the service handle has been closed
+ */
+int32_t Rm_delete(Rm_Handle rmHandle, int ignorePendingServices)
+{
+    Rm_Inst *rmInst = (Rm_Inst *)rmHandle;
+    void    *key;
+
+    key = Rm_osalCsEnter();
+    if (rmInst->instType == Rm_instType_SHARED_SERVER) {
+        Rm_osalBeginMemAccess((void *)rmInst, sizeof(*rmInst));
+    }
+
+    if (rmInst->serviceHandle) {
+        return(RM_ERROR_CANT_DELETE_WITH_OPEN_SERV_HNDL);
+    } else if (rmInst->transports) {
+        return(RM_ERROR_CANT_DELETE_WITH_REGD_TRANSPORT);
+    } else if (rmInst->transactionQueue && !ignorePendingServices) {
+        return(RM_ERROR_CANT_DELETE_PENDING_TRANSACTIONS);
+    }
+    /* else: delete instance since no more deletion failure cases */
+
+    if (rmInst->instType != Rm_instType_SHARED_CLIENT) {
+        rmNameServerDelete(rmHandle);
+        rmAllocatorTreeDelete(rmHandle);
+        rmPolicyVInstTreeDelete(rmHandle);
+
+        /* Delete any transactions */
+        while(rmInst->transactionQueue) {
+            rmTransactionQueueDelete(rmInst, rmInst->transactionQueue->localId);
+        }
+
+        if (rmInst->instType != Rm_instType_SHARED_SERVER) {
+            /* Delete the instance's task blocking mechanism */
+            Rm_osalTaskBlockDelete(rmInst->blockHandle);
+        } else {
+            rmInst->allocatorTree       = NULL;
+            rmInst->validInstTree       = NULL;
+            rmInst->u.server.nameServer = NULL;
+            Rm_osalEndMemAccess((void *)rmInst, sizeof(*rmInst));
+        }
+    }
+
+    Rm_osalFree((void *)rmInst, sizeof(*rmInst));
+    Rm_osalCsExit(key);
+    return(RM_OK);
+}
+
+/* FUNCTION PURPOSE: Returns RM version information
+ ***********************************************************************
+ */
+uint32_t Rm_getVersion(void)
+{
+    return(RM_VERSION_ID);
+}
+
+/* FUNCTION PURPOSE: Returns RM version string
+ ***********************************************************************
+ */
+const char* Rm_getVersionStr(void)
+{
+    return(rmVersionStr);
+}
+