blob: b0574cbeb070a273ad6e51401d3314ea78757dd9 (
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
/* IBM_PROLOG_BEGIN_TAG
* This is an automatically generated prolog.
*
* $Source: src/usr/diag/attn/attnsvc.H $
*
* IBM CONFIDENTIAL
*
* COPYRIGHT International Business Machines Corp. 2012
*
* p1
*
* Object Code Only (OCO) source materials
* Licensed Internal Code Source Materials
* IBM HostBoot Licensed Internal Code
*
* The source code for this program is not published or other-
* wise divested of its trade secrets, irrespective of what has
* been deposited with the U.S. Copyright Office.
*
* Origin: 30
*
* IBM_PROLOG_END_TAG
*/
#ifndef __ATTN_ATTNSVC_H
#define __ATTN_ATTNSVC_H
/**
* @file attnsvc.H
*
* @brief HBATTN background service class definition.
*/
#include <sys/task.h>
#include <sys/sync.h>
#include "attnfwd.H"
#include "attnlist.H"
namespace ATTN
{
/**
* @brief Service Host attention handler background service class definition.
*/
class Service
{
public:
/**
* @brief stop Stop the background attention handler service.
*
* Noop if service already stopped.
*
* @post Service stopped. All resources reclaimed.
*
* @return errlHndl_t Error log.
*
* @retval[0] No error.
* @retval[!0] Unexpected error.
*/
errlHndl_t stop();
/**
* @brief start start the background attention handler service
*
* noop if service already started
*
* @post service started.
*
* @return errlHndl_t Error log.
*
* @retval[0] no error
* @retval[!0] unexpected error
*/
errlHndl_t start();
/**
* @brief ctor
*/
Service();
/**
* @brief dtor
*/
~Service();
private:
/**
* @brief intrTask infinite wait-for-interrupt loop
*
* repeatedly call intrTaskWait and processIntrQMsg
*
* @param[in] i_svc service object associated with task
*/
static void intrTask(void * i_svc);
/**
* @brief prdTask infinite wait-for-attention loop
*
* repeatedly call prdTaskWait and processAttentions
*
* @param[in] i_svc service object associated with task
*/
static void prdTask(void * i_svc);
/**
* @brief startIntrTask start task helper function
*
* check to see if task already started
*
* @return bool Operation status.
*
* @retval[true] task started
* @retval[false] task not started
*/
bool startIntrTask();
/**
* @brief intrTaskWait wait for message on msg Q
*
* Messages are either shutdown messages or messages from
* the interrupt service. Handle shutdown messages directly or
* defer interrupt service messages to processIntrQMsg
*
* @post new message available.
*
* @param[out] o_msg interrupt svc intr message
*
* @return bool Shutdown instruction.
*
* @retval[true] shutdown requested
* @retval[false] shutdown not requested
*/
bool intrTaskWait(msg_t * & o_msg);
/**
* @brief processIntrQMsg process interrupt service message
*
* resolve interrupt service message into attentions and
* route to prd for analysis
*
* @post attentions routed to prd for analysis
*
* @param[in] i_msg interrupt svc intr message to be processed
*/
void processIntrQMsg(msg_t & i_msg);
/**
* @brief processIntrQMsgPreAck pre EOI interrupt service message
* processing
*
* perform the interrupt service message processing steps that must
* be done before EOI can be sent by the interrupt service. Namely
* resolve and mask the interrupt causing attentions.
*
* @post interrupt service message ready to be acknowledged
*
* @param[in] i_msg interrupt svc intr message to be processed
* @param[out] o_attentions attentions associated with interrupt msg
*
* @return errlHndl_t Error log.
*
* @retval[0] no error
* @retval[!0] unexpected error
*/
errlHndl_t processIntrQMsgPreAck(const msg_t & i_msg,
AttentionList & o_attentions);
/**
* @brief startPrdTask start task helper function
*
* check to see if task already started
*
* @return bool Operation status.
*
* @retval[true] task started
* @retval[false] task not started
*/
bool startPrdTask();
/**
* @brief prdTaskWait wait for wakeup
*
* Wakeups are either shutdown wakeups or wakeups from
* the interrupt task. Handle shutdown wakeups directly or
* defer interrupt task wakeups to processAttentions
*
* @post new attentions available
*
* @return bool Shutdown instruction.
*
* @retval[true] shutdown requested
* @retval[false] shutdown not requested
*/
bool prdTaskWait(AttentionList & o_attentions);
/**
* @brief processAttentions process interrupt task wakeup
*
* call prd to analyze attentions
*
* @post attentions analyzed by prd. attentions cleard by prd unmasked
*
* @param[in] i_attentions attentions to be processed by prd
*/
void processAttentions(const AttentionList & i_attentions);
/**
* @brief iv_attentions all active attentions in the node
*/
AttentionList iv_attentions;
/**
* @brief iv_intrTaskQ intr task message q
*/
msg_q_t iv_intrTaskQ;
/**
* @brief iv_shutdownPrdTask prd task shutdown flag
*/
bool iv_shutdownPrdTask;
/**
* @brief iv_prdTask prd task tid
*/
tid_t iv_prdTask;
/**
* @brief iv_intrTask intr task tid
*/
tid_t iv_intrTask;
/**
* @brief iv_mutex pendingAttentions protection
*/
mutex_t iv_mutex;
/**
* @brief iv_cond pendingAttentions and shutdown flag condition
*/
sync_cond_t iv_cond;
/**
* @brief copy disabled
*/
Service(const Service &);
/**
* @brief assignment disabled
*/
Service &operator=(const Service &);
/**
* @brief AttnSvcTest Provide access to unit test.
*/
friend class ::AttnSvcTest;
friend class ::AttnProcTest;
};
}
#endif
|