summaryrefslogtreecommitdiffstats
path: root/src/lib/occlib/ipc_ping.c
blob: f295c99d4fac4dd2cb18ed21c3c46444271e7358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/lib/occlib/ipc_ping.c $                                   */
/*                                                                        */
/* OpenPOWER OnChipController Project                                     */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2015                             */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
#include "ipc_ping.h"

#ifdef IPC_ENABLE_PING
//server side ping message handler
void ipc_ping_handler(ipc_msg_t* cmd, void* arg)
{
    //NOTE: this will run in a critical interrupt when sent to the 405
    //ignore return codes
    ipc_send_rsp(cmd, IPC_RC_SUCCESS);
}

//Note: This runs in a critical interrupt on the 405 but SSX functions
//      can not be called from a critical interrupt.  Instead, it must be
//      deferred to a non-critical handler.
void ipc_ping_response(ipc_msg_t* rsp, void* arg)
{
    ipc_ping_cmd_t *ping_cmd = (ipc_ping_cmd_t*)rsp;

    if(KERN_CONTEXT_CRITICAL_INTERRUPT())
    {
        //NOTE: this is a no-op on PPE
        IPC_DEFER_TO_NONCRITICAL(rsp);
    }
    else
    {
        KERN_SEMAPHORE_POST(&ping_cmd->sem);
        ipc_free_msg(&ping_cmd->msg);
    }

}


//Command that can be run in a thread context to ping another target
//The message is allocated on the stack
int ipc_ping(ipc_ping_cmd_t* ping_cmd, uint32_t target_id)
{
    int rc;

    do
    {
        //set the target (since this is a multi-target command)
        rc = ipc_set_cmd_target(&ping_cmd->msg, target_id);
        if(rc)
        {
            break;
        }

        //send the command
        rc = ipc_send_cmd(&ping_cmd->msg);
        if(rc)
        {
            break;
        }

        //assume that if we timed out then the target must have gone down.
        rc = KERN_SEMAPHORE_PEND(&ping_cmd->sem, KERN_SECONDS(1));
        if(rc)
        {
            if(rc == -KERN_SEMAPHORE_PEND_TIMED_OUT)
            {
                rc = IPC_RC_TIMEOUT;
            }
            break;
        }

        //response message was received.  Now return the ipc_rc
        rc = ipc_get_rc(&ping_cmd->msg);
        
    }while(0);
    return rc;
}
#endif /*IPC_ENABLE_PING*/
OpenPOWER on IntegriCloud