blob: b291399af10818832a6571ad2c394a0c03d2751e [file] [log] [blame]
Daniel Krueger9d7164c2008-12-19 11:41:57 -08001/****************************************************************************
2
3 (c) SYSTEC electronic GmbH, D-07973 Greiz, August-Bebel-Str. 29
4 www.systec-electronic.com
5
6 Project: openPOWERLINK
7
8 Description: source file for Statusu-Module
9
10 License:
11
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions
14 are met:
15
16 1. Redistributions of source code must retain the above copyright
17 notice, this list of conditions and the following disclaimer.
18
19 2. Redistributions in binary form must reproduce the above copyright
20 notice, this list of conditions and the following disclaimer in the
21 documentation and/or other materials provided with the distribution.
22
23 3. Neither the name of SYSTEC electronic GmbH nor the names of its
24 contributors may be used to endorse or promote products derived
25 from this software without prior written permission. For written
26 permission, please contact info@systec-electronic.com.
27
28 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
31 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
32 COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
33 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
34 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
35 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
38 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 POSSIBILITY OF SUCH DAMAGE.
40
41 Severability Clause:
42
43 If a provision of this License is or becomes illegal, invalid or
44 unenforceable in any jurisdiction, that shall not affect:
45 1. the validity or enforceability in that jurisdiction of any other
46 provision of this License; or
47 2. the validity or enforceability in other jurisdictions of that or
48 any other provision of this License.
49
50 -------------------------------------------------------------------------
51
52 $RCSfile: EplStatusu.c,v $
53
54 $Author: D.Krueger $
55
56 $Revision: 1.5 $ $Date: 2008/10/17 15:32:32 $
57
58 $State: Exp $
59
60 Build Environment:
61 GCC V3.4
62
63 -------------------------------------------------------------------------
64
65 Revision History:
66
67 2006/11/15 d.k.: start of the implementation
68
69****************************************************************************/
70
71#include "user/EplStatusu.h"
72#include "user/EplDlluCal.h"
73
74/***************************************************************************/
75/* */
76/* */
77/* G L O B A L D E F I N I T I O N S */
78/* */
79/* */
80/***************************************************************************/
81
82//---------------------------------------------------------------------------
83// const defines
84//---------------------------------------------------------------------------
85
86//---------------------------------------------------------------------------
87// local types
88//---------------------------------------------------------------------------
89
90//---------------------------------------------------------------------------
91// modul globale vars
92//---------------------------------------------------------------------------
93
94//---------------------------------------------------------------------------
95// local function prototypes
96//---------------------------------------------------------------------------
97
Daniel Krueger9d7164c2008-12-19 11:41:57 -080098/***************************************************************************/
99/* */
100/* */
101/* C L A S S <xxxxx> */
102/* */
103/* */
104/***************************************************************************/
105//
106// Description:
107//
108//
109/***************************************************************************/
110
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800111//=========================================================================//
112// //
113// P R I V A T E D E F I N I T I O N S //
114// //
115//=========================================================================//
116
117//---------------------------------------------------------------------------
118// const defines
119//---------------------------------------------------------------------------
120
121//---------------------------------------------------------------------------
122// local types
123//---------------------------------------------------------------------------
124
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800125typedef struct {
126 tEplStatusuCbResponse m_apfnCbResponse[254];
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800127
128} tEplStatusuInstance;
129
130//---------------------------------------------------------------------------
131// local vars
132//---------------------------------------------------------------------------
133
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800134static tEplStatusuInstance EplStatusuInstance_g;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800135
136//---------------------------------------------------------------------------
137// local function prototypes
138//---------------------------------------------------------------------------
139
Greg Kroah-Hartmand10f4692009-03-23 10:45:12 -0700140static tEplKernel EplStatusuCbStatusResponse(tEplFrameInfo *pFrameInfo_p);
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800141
142//=========================================================================//
143// //
144// P U B L I C F U N C T I O N S //
145// //
146//=========================================================================//
147
148//---------------------------------------------------------------------------
149//
150// Function: EplStatusuInit
151//
152// Description: init first instance of the module
153//
154//
155//
156// Parameters:
157//
158//
159// Returns: tEplKernel = errorcode
160//
161//
162// State:
163//
164//---------------------------------------------------------------------------
165
Greg Kroah-Hartmand9068d62009-03-23 13:26:29 -0700166tEplKernel EplStatusuInit(void)
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800167{
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800168 tEplKernel Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800169
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800170 Ret = EplStatusuAddInstance();
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800171
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800172 return Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800173}
174
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800175//---------------------------------------------------------------------------
176//
177// Function: EplStatusuAddInstance
178//
179// Description: init other instances of the module
180//
181//
182//
183// Parameters:
184//
185//
186// Returns: tEplKernel = errorcode
187//
188//
189// State:
190//
191//---------------------------------------------------------------------------
192
Greg Kroah-Hartmand9068d62009-03-23 13:26:29 -0700193tEplKernel EplStatusuAddInstance(void)
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800194{
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800195 tEplKernel Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800196
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800197 Ret = kEplSuccessful;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800198
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800199 // reset instance structure
200 EPL_MEMSET(&EplStatusuInstance_g, 0, sizeof(EplStatusuInstance_g));
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800201
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800202 // register StatusResponse callback function
203 Ret =
204 EplDlluCalRegAsndService(kEplDllAsndStatusResponse,
205 EplStatusuCbStatusResponse,
206 kEplDllAsndFilterAny);
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800207
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800208 return Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800209
210}
211
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800212//---------------------------------------------------------------------------
213//
214// Function: EplStatusuDelInstance
215//
216// Description: delete instance
217//
218//
219//
220// Parameters:
221//
222//
223// Returns: tEplKernel = errorcode
224//
225//
226// State:
227//
228//---------------------------------------------------------------------------
229
Greg Kroah-Hartmand9068d62009-03-23 13:26:29 -0700230tEplKernel EplStatusuDelInstance(void)
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800231{
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800232 tEplKernel Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800233
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800234 Ret = kEplSuccessful;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800235
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800236 // deregister StatusResponse callback function
237 Ret =
238 EplDlluCalRegAsndService(kEplDllAsndStatusResponse, NULL,
239 kEplDllAsndFilterNone);
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800240
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800241 return Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800242
243}
244
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800245//---------------------------------------------------------------------------
246//
247// Function: EplStatusuReset
248//
249// Description: resets this instance
250//
251// Parameters:
252//
253// Returns: tEplKernel = errorcode
254//
255//
256// State:
257//
258//---------------------------------------------------------------------------
259
Greg Kroah-Hartmand9068d62009-03-23 13:26:29 -0700260tEplKernel EplStatusuReset(void)
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800261{
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800262 tEplKernel Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800263
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800264 Ret = kEplSuccessful;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800265
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800266 // reset instance structure
267 EPL_MEMSET(&EplStatusuInstance_g, 0, sizeof(EplStatusuInstance_g));
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800268
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800269 return Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800270
271}
272
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800273//---------------------------------------------------------------------------
274//
275// Function: EplStatusuRequestStatusResponse
276//
277// Description: returns the StatusResponse for the specified node.
278//
279// Parameters: uiNodeId_p = IN: node ID
280// pfnCbResponse_p = IN: function pointer to callback function
281// which will be called if StatusResponse is received
282//
283// Return: tEplKernel = error code
284//
285// State: not tested
286//
287//---------------------------------------------------------------------------
288
Greg Kroah-Hartmand10f4692009-03-23 10:45:12 -0700289tEplKernel EplStatusuRequestStatusResponse(unsigned int uiNodeId_p,
290 tEplStatusuCbResponse pfnCbResponse_p)
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800291{
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800292 tEplKernel Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800293
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800294 Ret = kEplSuccessful;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800295
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800296 // decrement node ID, because array is zero based
297 uiNodeId_p--;
298 if (uiNodeId_p < tabentries(EplStatusuInstance_g.m_apfnCbResponse)) {
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800299#if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMT_MN)) != 0)
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800300 if (EplStatusuInstance_g.m_apfnCbResponse[uiNodeId_p] != NULL) { // request already issued (maybe by someone else)
301 Ret = kEplInvalidOperation;
302 } else {
303 EplStatusuInstance_g.m_apfnCbResponse[uiNodeId_p] =
304 pfnCbResponse_p;
305 Ret =
306 EplDlluCalIssueRequest(kEplDllReqServiceStatus,
307 (uiNodeId_p + 1), 0xFF);
308 }
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800309#else
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800310 Ret = kEplInvalidOperation;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800311#endif
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800312 } else { // invalid node ID specified
313 Ret = kEplInvalidNodeId;
314 }
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800315
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800316 return Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800317
318}
319
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800320//=========================================================================//
321// //
322// P R I V A T E F U N C T I O N S //
323// //
324//=========================================================================//
325
326//---------------------------------------------------------------------------
327//
328// Function: EplStatusuCbStatusResponse
329//
330// Description: callback funktion for StatusResponse
331//
332//
333//
334// Parameters: pFrameInfo_p = Frame with the StatusResponse
335//
336//
337// Returns: tEplKernel = error code
338//
339//
340// State:
341//
342//---------------------------------------------------------------------------
Greg Kroah-Hartmand10f4692009-03-23 10:45:12 -0700343static tEplKernel EplStatusuCbStatusResponse(tEplFrameInfo *pFrameInfo_p)
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800344{
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800345 tEplKernel Ret = kEplSuccessful;
346 unsigned int uiNodeId;
347 unsigned int uiIndex;
348 tEplStatusuCbResponse pfnCbResponse;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800349
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800350 uiNodeId = AmiGetByteFromLe(&pFrameInfo_p->m_pFrame->m_le_bSrcNodeId);
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800351
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800352 uiIndex = uiNodeId - 1;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800353
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800354 if (uiIndex < tabentries(EplStatusuInstance_g.m_apfnCbResponse)) {
355 // memorize pointer to callback function
356 pfnCbResponse = EplStatusuInstance_g.m_apfnCbResponse[uiIndex];
357 if (pfnCbResponse == NULL) { // response was not requested
358 goto Exit;
359 }
360 // reset callback function pointer so that caller may issue next request
361 EplStatusuInstance_g.m_apfnCbResponse[uiIndex] = NULL;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800362
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800363 if (pFrameInfo_p->m_uiFrameSize < EPL_C_DLL_MINSIZE_STATUSRES) { // StatusResponse not received or it has invalid size
364 Ret = pfnCbResponse(uiNodeId, NULL);
365 } else { // StatusResponse received
366 Ret =
367 pfnCbResponse(uiNodeId,
368 &pFrameInfo_p->m_pFrame->m_Data.
369 m_Asnd.m_Payload.m_StatusResponse);
370 }
371 }
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800372
Greg Kroah-Hartman833dfbe2008-12-19 17:11:52 -0800373 Exit:
374 return Ret;
Daniel Krueger9d7164c2008-12-19 11:41:57 -0800375}
376
377// EOF