summaryrefslogtreecommitdiffstats
path: root/src/include/kernel/intmsghandler.H
blob: 87fc501d1537b64b5cf3dff4cce78e9f50e8f859 (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/include/kernel/intmsghandler.H $                          */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2011,2018                        */
/* [+] 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                                                     */
#ifndef __KERNEL_INTERRUPTMSGHDLR_H
#define __KERNEL_INTERRUPTMSGHDLR_H

#include <stdint.h>
#include <kernel/types.h>
#include <kernel/msghandler.H>
#include <kernel/msg.H>
#include <builtins.h>
#include <arch/pirformat.H>

/**
 * @class InterruptMsgHdlr
 * @brief Class to handle sending a message to user space for
 *        an External Interrupt.
 *
 * This class extends from the base MessageHandler so the base send/receive
 * message functions can be utilized. It overrides how to handle the message
 * responses
 */
class InterruptMsgHdlr : public MessageHandler
{
    public:

        /**
         * TODO RTC 150260
         * Field values for P8
         * @note This is used to calculate the mmio address offset
         * from the PIR for the interrupt presenter memory mapped registers.
         * The masks isolate the node,chip,core, and thread id fields in the
         * PIR.  The LSL values tell how far left a PIR field needs to be
         * shifted to create a proper mmio offset address.
         *
         */
        enum
        {
            P9_PIR_THREADID_MSK = PIR_t::THREAD_MASK,
            P9_PIR_COREID_MSK   = PIR_t::CORE_MASK,
            P9_PIR_CHIPID_MSK   = PIR_t::CHIP_MASK,
            P9_PIR_NODEID_MSK   = PIR_t::GROUP_MASK,

            // Logical Shift Left fields for mmio Base address from PIR.
            // (IP addr bit pos - PIR bit pos)
            P9_IP_THREADID_LSL = (12-PIR_t::BITS_AFTER_CORE),
            P9_IP_COREID_LSL   = (15-PIR_t::BITS_AFTER_CORE),
            P9_IP_CHIPID_LSL   = (20-PIR_t::BITS_AFTER_CHIP),
            P9_IP_NODEID_LSL   = (22-PIR_t::BITS_AFTER_GROUP),
            XIRR_ADDR_OFFSET   = 4,
            MFRR_ADDR_OFFSET   = 12,

            // When doing MMIO to the interrupt contsoller, we need
            // to use Hyp page (page 1), since page 0 is reserved for
            // Ultravisor in SMF mode. Using page 1 here for compatibility
            // between SMF and non-SMF.
            ACK_HYPERVISOR_INT_REG_OFFSET = 0x1830,

            INTP_BAR_VALUE     = 0xFFFFE000,    // upper 32 bits of IPCBAR
            INTERPROC_XISR     = 2,     //IPI XISR is 2

            MSG_KEY_THREAD_WKUP  = 0x8000000000000000ul,
            MSG_KEY_ADD_CPU_CORE = 0x4000000000000000ul,
            MSG_KEY_IPC_MSG      = 0x2000000000000000ul,
            MSG_IPC_SALT         = 0x0000000100000000ul,
        };

        /**
         * Constructor
         */
        InterruptMsgHdlr(MessageQueue * i_msgQ)
            : MessageHandler(&iv_lock,i_msgQ), iv_lock() {}

        /**
         * Destructor.
         */
        virtual ~InterruptMsgHdlr() {};

        /** @brief 'Send message' interface.
         *  Used to send a message into userspace.
         *
         *  @param[in] i_type - Message type (from sys/msg.h).
         *  @param[in] i_key  - Key (msg->data[0]) for the message.
         *  @param[in] i_data - Data (msg->data[1]) for the message.
         *  @param[in] i_task - Optional task being deferred due to this
         *                      message.
         *
         *  The result of this message is that a message will be created and
         *  inserted onto a user-space message queue, awaking the waiter if
         *  blocked.  The task passed as a parameter, if not nullptr, will be
         *  deferred.
         */
        virtual void sendMessage(msg_sys_types_t i_type, void* i_key,
                         void* i_data, task_t* i_task);


        /**
         * Handle response to 'send message'
         *
         *  @param[in] i_type - The message type previously sent.
         *  @param[in] i_key - The key value for the received message.
         *  @param[in] i_task - The deferred task.
         *  @param[in] i_rc - The response rc from userspace.
         *
         *  @return HandleResult - The desired behavior on the 'recv message'
         *                         interface for this <key, task> pair.
         */
        virtual HandleResult handleResponse(msg_sys_types_t i_type,void* i_key,
                                            task_t* i_task,int i_rc);


        ALWAYS_INLINE
        static uint64_t mmio_offset(uint64_t i_pir)
        {
            uint64_t offset = 0;

            // The PIR chip id field has 1 extra bit (8 chips), so we need
            // to shift the node and chip separately
            offset  |=
                (i_pir & P9_PIR_NODEID_MSK) << P9_IP_NODEID_LSL;

            offset  |=
                (i_pir & P9_PIR_CHIPID_MSK) << P9_IP_CHIPID_LSL;

            // The core and thread id field are adjacent in both the PIR and
            // the mmio offset, so they can be done in one shift operation.
            offset  |=
                (i_pir & (P9_PIR_COREID_MSK | P9_PIR_THREADID_MSK))
                << P9_IP_THREADID_LSL;

            return offset;
        }

        /**
         * Create the InterruptMsgHdlr to handle external interrupts
         * @param[in] i_msgQ The message queue
         * @param[in] i_ipc_addr  The base address of the IPC registers
         */
        static void create(MessageQueue * i_msgQ, uint64_t i_ipc_addr);

        /**
         * Handle an external interrupt from HW
         */
        static void handleInterrupt();

        /**
         * Add cpu core - set up the external interrupt registers
         * @param[in] i_pir The cpu id of the core to to set-up
         * @note should be called when ever a new core becomes active
         */
        static void addCpuCore(uint64_t i_pir);

        /**
         * Send message to interrupt resource provider (intrrp) in userspace to
         * indicate a wakeup occurred for core/thread indicated by given pir.
         * The intrrp monitors the expected cores/threads wakeup and will issue
         * a timeout/error in the event that not all expected cores/threads
         * send this message
         *
         * @param[in] i_pir - The PIR of the CPU to send doorbell to.
         */
        static void sendThreadWakeupMsg(uint64_t i_pir);

        /**
         * Send message to interrupt resource provider (intrrP) in userspace to
         * indicate it was sent an IPC message. The intrrp will re-route the
         * message to the appropriate handler.
         *
         * @param[in] i_pir - The PIR of the CPU to send doorbell to.
         */
        static void sendIpcMsg(uint64_t i_pir);

        /**
         * Issue the sbe/mailbox workaround (issue a mbox EOI to mailbox)
         *
         */
        static void issueSbeMboxWA();

    private:

        static InterruptMsgHdlr * cv_instance;
        static uint64_t cv_ipc_base_address;
        static uint64_t cv_ipc_salt;

        Spinlock iv_lock;
};


#endif

OpenPOWER on IntegriCloud