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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/occ_405/dcom/dcomSlaveTx.c $ */
/* */
/* OpenPOWER OnChipController Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2011,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 */
#ifndef _DCOMSLAVETX_C
#define _DCOMSLAVETX_C
#include "occhw_pba.h"
#include <rtls.h>
#include <apss.h>
#include <dcom.h>
#include <dcom_service_codes.h>
#include <occ_service_codes.h>
#include <trac.h>
#include <proc_pstate.h>
#include <amec_sys.h>
// SSX Block Copy Request for the Slave Outbox Transmit Queue
BceRequest G_slv_outbox_tx_pba_request;
// SSX PBAX Request for Unicast PBAX Queue (Slave Doorbell to Master)
PbaxRequest G_pbax_unicast_request;
// Used by the slave to house the doorbell data that is sent in
// the slave unicast doorbell, stating that it put slave outbox in main memory.
dcom_slv_outbox_doorbell_t G_dcom_slv_outbox_doorbell_tx;
// Make sure that the Slave Outbox TX Buffer is 1kB, otherwise cause
// error on the compile.
STATIC_ASSERT( (NUM_BYTES_IN_SLAVE_OUTBOX != (sizeof(G_dcom_slv_outbox_tx))) );
// Function Specification
//
// Name: dcom_build_slv_outbox
//
// Description: The purpose of this function is to fill out the Sensor Data into the
// Slave Outbox Structures for transfer to the Master.
// Build the slave outboxes so slave can send to master
//
// End Function Specification
uint32_t dcom_build_slv_outbox(void)
{
// Locals
uint32_t l_addr_of_slv_outbox_in_main_mem = 0;
static uint8_t L_seq = 0xFF;
L_seq++;
G_dcom_slv_outbox_tx.seq = L_seq;
G_dcom_slv_outbox_tx.version = 0;
memset( G_dcom_slv_outbox_tx.occ_fw_mailbox, 0, sizeof( G_dcom_slv_outbox_tx.occ_fw_mailbox ));
G_dcom_slv_outbox_tx.counter++;
// Call dcom_build_occfw_msg
dcom_build_occfw_msg( SLAVE_OUTBOX );
l_addr_of_slv_outbox_in_main_mem = dcom_which_buffer_slv_outbox();
l_addr_of_slv_outbox_in_main_mem += G_pbax_id.chip_id*sizeof(dcom_slv_outbox_t);
G_dcom_slv_outbox_doorbell_tx.pob_id = G_pbax_id;
G_dcom_slv_outbox_doorbell_tx.pcap_valid = g_amec->pcap_valid;
G_dcom_slv_outbox_doorbell_tx.active_node_pcap = g_amec->pcap.active_node_pcap;
G_dcom_slv_outbox_doorbell_tx.addr_slv_outbox_buffer = l_addr_of_slv_outbox_in_main_mem;
return l_addr_of_slv_outbox_in_main_mem;
}
// Function Specification
//
// Name: dcom_which_buffer_slv_outbox
//
// Description: Determines which buffer in the 'double buffer'
// or ping/pong to use. Basically alternates between
// returning the ping or the pong address
//
// End Function Specification
uint32_t dcom_which_buffer_slv_outbox(void)
{
// Locals
uint32_t l_mem_address = SLAVE_OUTBOX_PONG_COMMON_ADDRESS;
// Switch back and forth based on tick
if( CURRENT_TICK & 1 )
{
l_mem_address = SLAVE_OUTBOX_PING_COMMON_ADDRESS;
}
return l_mem_address;
}
// Function Specification
//
// Name: dcom_calc_slv_outbox_addr
//
// Description: get slave outbox main memory address
//
// End Function Specification
uint32_t dcom_calc_slv_outbox_addr( const dcom_slv_outbox_doorbell_t * i_doorbell, uint8_t * o_occ_id )
{
*o_occ_id = i_doorbell->pob_id.chip_id;
return i_doorbell->addr_slv_outbox_buffer;
}
// Function Specification
//
// Name: task_dcom_tx_slv_outbox
//
// Description: Copy slave outboxes from SRAM to main memory
// so slave can send data to master
//
// Task Flags: RTL_FLAG_NONMSTR, RTL_FLAG_MSTR, RTL_FLAG_OBS, RTL_FLAG_ACTIVE,
// RTL_FLAG_NOAPSS, RTL_FLAG_RUN, RTL_FLAG_MSTR_READY
//
// End Function Specification
void task_dcom_tx_slv_outbox( task_t *i_self)
{
static bool l_error = FALSE;
uint32_t l_orc = OCC_SUCCESS_REASON_CODE;
uint32_t l_orc_ext = OCC_NO_EXTENDED_RC;
// Use a static local bool to track whether the BCE request used
// here has ever been successfully created at least once
static bool L_bce_slv_outbox_tx_request_created_once = FALSE;
DCOM_DBG("3. TX Slave Outboxes\n");
do
{
// Build/setup outbox
uint32_t l_addr_in_mem = dcom_build_slv_outbox();
uint32_t l_ssxrc = 0;
// See dcomMasterRx.c/task_dcom_rx_slv_outboxes for details on the
// checking done here before creating and scheduling the request.
bool l_proceed_with_request_and_schedule = FALSE;
int l_req_idle = async_request_is_idle(&(G_slv_outbox_tx_pba_request.request));
int l_req_complete = async_request_completed(&(G_slv_outbox_tx_pba_request.request));
if (!L_bce_slv_outbox_tx_request_created_once)
{
// Do this case first, all other cases assume that this is
// true!
// This is the first time we have created a request so
// always proceed with request create and schedule
l_proceed_with_request_and_schedule = TRUE;
}
else if (l_req_idle && l_req_complete)
{
// Most likely case first. The request was created
// and scheduled and has completed without error. Proceed.
// Proceed with request create and schedule.
l_proceed_with_request_and_schedule = TRUE;
}
else if (l_req_idle && !l_req_complete)
{
// There was an error on the schedule request or the request
// was scheduled but was canceled, killed or errored out.
// Proceed with request create and schedule.
l_proceed_with_request_and_schedule = TRUE;
// Trace important information from the request
TRAC_INFO("BCE slv outbox tx request idle but not complete, \
callback_rc=%d options=0x%x state=0x%x abort_state=0x%x \
completion_state=0x%x",
G_slv_outbox_tx_pba_request.request.callback_rc,
G_slv_outbox_tx_pba_request.request.options,
G_slv_outbox_tx_pba_request.request.state,
G_slv_outbox_tx_pba_request.request.abort_state,
G_slv_outbox_tx_pba_request.request.completion_state);
TRAC_INFO("Proceeding with BCE slv outbox tx request and schedule");
}
else if (!l_req_idle && !l_req_complete)
{
// The request was created and scheduled but is still in
// progress or still enqueued OR there was some error
// creating the request so it was never scheduled. The latter
// case is unlikely and will generate an error message when
// it occurs. It will also have to happen after the request
// was created at least once or we'll never get here. If the
// request does fail though before the state parms in the
// request are reset (like a bad parameter error), then this
// represents a hang condition that we can't recover from.
// DO NOT proceed with request create and schedule.
l_proceed_with_request_and_schedule = FALSE;
// Trace important information from the request
TRAC_INFO("BCE slv outbox tx request not idle and not complete, \
callback_rc=%d options=0x%x state=0x%x abort_state=0x%x \
completion_state=0x%x",
G_slv_outbox_tx_pba_request.request.callback_rc,
G_slv_outbox_tx_pba_request.request.options,
G_slv_outbox_tx_pba_request.request.state,
G_slv_outbox_tx_pba_request.request.abort_state,
G_slv_outbox_tx_pba_request.request.completion_state);
TRAC_INFO("NOT proceeding with BCE slv outbox tx request and schedule");
}
else
{
// This case can't happen, ignore it.
}
// Only proceed if the BCE request state checked out
if (l_proceed_with_request_and_schedule)
{
// set up outbox copy request
l_ssxrc = bce_request_create(
&G_slv_outbox_tx_pba_request, // Block copy object
&G_pba_bcue_queue, // Mainstore to sram copy engine
l_addr_in_mem, // Mainstore address
(uint32_t) &G_dcom_slv_outbox_tx, // SRAM starting address
sizeof(G_dcom_slv_outbox_tx), // Size of copy
SSX_WAIT_FOREVER, // No timeout
(AsyncRequestCallback)dcom_tx_slv_outbox_doorbell, // Call back
NULL, // Call back arguments
ASYNC_CALLBACK_IMMEDIATE // Callback mask
);
if(l_ssxrc != SSX_OK)
{
/* @
* @errortype
* @moduleid DCOM_MID_TASK_TX_SLV_OUTBOX
* @reasoncode SSX_GENERIC_FAILURE
* @userdata1 N/A
* @userdata4 ERC_BCE_REQUEST_CREATE_FAILURE
* @devdesc SSX BCE related failure
*/
TRAC_ERR("PBA request create failure rc=[%08X]",l_ssxrc);
l_orc = SSX_GENERIC_FAILURE;
l_orc_ext = ERC_BCE_REQUEST_CREATE_FAILURE;
break;
}
// Request created at least once
L_bce_slv_outbox_tx_request_created_once = TRUE;
l_ssxrc = bce_request_schedule(&G_slv_outbox_tx_pba_request); // Actual copying
if(l_ssxrc != SSX_OK)
{
/* @
* @errortype
* @moduleid DCOM_MID_TASK_TX_SLV_OUTBOX
* @reasoncode SSX_GENERIC_FAILURE
* @userdata1 N/A
* @userdata4 ERC_BCE_REQUEST_SCHEDULE_FAILURE
* @devdesc SSX BCE related failure
*/
TRAC_ERR("PBA request schedule failure rc=[%08X]",l_ssxrc);
l_orc = SSX_GENERIC_FAILURE;
l_orc_ext = ERC_BCE_REQUEST_SCHEDULE_FAILURE;
break;
}
}
} while (0);
if ( l_orc != OCC_SUCCESS_REASON_CODE && l_error == FALSE)
{
// Create and commit error
// See return code doxygen tags for error description
errlHndl_t l_errl = createErrl(
DCOM_MID_TASK_TX_SLV_OUTBOX, //ModId
l_orc, //Reasoncode
l_orc_ext, //Extended reasoncode
ERRL_SEV_UNRECOVERABLE, //Severity
NULL, //Trace Buf
DEFAULT_TRACE_SIZE, //Trace Size
0, //Userdata1
0 //Userdata2
);
// Callout firmware
addCalloutToErrl(l_errl,
ERRL_CALLOUT_TYPE_COMPONENT_ID,
ERRL_COMPONENT_ID_FIRMWARE,
ERRL_CALLOUT_PRIORITY_HIGH);
commitErrl( &l_errl );
// TODO request a reset
l_error = TRUE;
}
}
// Function Specification
//
// Name: dcom_tx_slv_outbox_doorbell
//
// Description: transmit unicast doorbell to master
// from slaves
//
// End Function Specification
void dcom_tx_slv_outbox_doorbell( void )
{
static bool l_error = FALSE;
int l_pbarc = 0;
uint64_t l_tmp =0;
// Save into temp
memcpy( &l_tmp, &G_dcom_slv_outbox_doorbell_tx, sizeof(dcom_slv_outbox_doorbell_t));
// Send unicast doorbell
l_pbarc = _pbax_send(
&G_pbax_unicast_target,
l_tmp,
SSX_MICROSECONDS(15));
if ( l_pbarc != 0 && l_error == FALSE )
{
// Failure occurred
// This is running in a critical interrupt context. Tracing not allowed!
l_error = TRUE;
}
}
#endif //_DCOMSLAVETOMASTER_C
|