ACPI: thinkpad-acpi: add development version tag
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / epl / EplStatusu.c
blobb291399af10818832a6571ad2c394a0c03d2751e
1 /****************************************************************************
3 (c) SYSTEC electronic GmbH, D-07973 Greiz, August-Bebel-Str. 29
4 www.systec-electronic.com
6 Project: openPOWERLINK
8 Description: source file for Statusu-Module
10 License:
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions
14 are met:
16 1. Redistributions of source code must retain the above copyright
17 notice, this list of conditions and the following disclaimer.
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.
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.
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.
41 Severability Clause:
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.
50 -------------------------------------------------------------------------
52 $RCSfile: EplStatusu.c,v $
54 $Author: D.Krueger $
56 $Revision: 1.5 $ $Date: 2008/10/17 15:32:32 $
58 $State: Exp $
60 Build Environment:
61 GCC V3.4
63 -------------------------------------------------------------------------
65 Revision History:
67 2006/11/15 d.k.: start of the implementation
69 ****************************************************************************/
71 #include "user/EplStatusu.h"
72 #include "user/EplDlluCal.h"
74 /***************************************************************************/
75 /* */
76 /* */
77 /* G L O B A L D E F I N I T I O N S */
78 /* */
79 /* */
80 /***************************************************************************/
82 //---------------------------------------------------------------------------
83 // const defines
84 //---------------------------------------------------------------------------
86 //---------------------------------------------------------------------------
87 // local types
88 //---------------------------------------------------------------------------
90 //---------------------------------------------------------------------------
91 // modul globale vars
92 //---------------------------------------------------------------------------
94 //---------------------------------------------------------------------------
95 // local function prototypes
96 //---------------------------------------------------------------------------
98 /***************************************************************************/
99 /* */
100 /* */
101 /* C L A S S <xxxxx> */
102 /* */
103 /* */
104 /***************************************************************************/
106 // Description:
109 /***************************************************************************/
111 //=========================================================================//
112 // //
113 // P R I V A T E D E F I N I T I O N S //
114 // //
115 //=========================================================================//
117 //---------------------------------------------------------------------------
118 // const defines
119 //---------------------------------------------------------------------------
121 //---------------------------------------------------------------------------
122 // local types
123 //---------------------------------------------------------------------------
125 typedef struct {
126 tEplStatusuCbResponse m_apfnCbResponse[254];
128 } tEplStatusuInstance;
130 //---------------------------------------------------------------------------
131 // local vars
132 //---------------------------------------------------------------------------
134 static tEplStatusuInstance EplStatusuInstance_g;
136 //---------------------------------------------------------------------------
137 // local function prototypes
138 //---------------------------------------------------------------------------
140 static tEplKernel EplStatusuCbStatusResponse(tEplFrameInfo *pFrameInfo_p);
142 //=========================================================================//
143 // //
144 // P U B L I C F U N C T I O N S //
145 // //
146 //=========================================================================//
148 //---------------------------------------------------------------------------
150 // Function: EplStatusuInit
152 // Description: init first instance of the module
156 // Parameters:
159 // Returns: tEplKernel = errorcode
162 // State:
164 //---------------------------------------------------------------------------
166 tEplKernel EplStatusuInit(void)
168 tEplKernel Ret;
170 Ret = EplStatusuAddInstance();
172 return Ret;
175 //---------------------------------------------------------------------------
177 // Function: EplStatusuAddInstance
179 // Description: init other instances of the module
183 // Parameters:
186 // Returns: tEplKernel = errorcode
189 // State:
191 //---------------------------------------------------------------------------
193 tEplKernel EplStatusuAddInstance(void)
195 tEplKernel Ret;
197 Ret = kEplSuccessful;
199 // reset instance structure
200 EPL_MEMSET(&EplStatusuInstance_g, 0, sizeof(EplStatusuInstance_g));
202 // register StatusResponse callback function
203 Ret =
204 EplDlluCalRegAsndService(kEplDllAsndStatusResponse,
205 EplStatusuCbStatusResponse,
206 kEplDllAsndFilterAny);
208 return Ret;
212 //---------------------------------------------------------------------------
214 // Function: EplStatusuDelInstance
216 // Description: delete instance
220 // Parameters:
223 // Returns: tEplKernel = errorcode
226 // State:
228 //---------------------------------------------------------------------------
230 tEplKernel EplStatusuDelInstance(void)
232 tEplKernel Ret;
234 Ret = kEplSuccessful;
236 // deregister StatusResponse callback function
237 Ret =
238 EplDlluCalRegAsndService(kEplDllAsndStatusResponse, NULL,
239 kEplDllAsndFilterNone);
241 return Ret;
245 //---------------------------------------------------------------------------
247 // Function: EplStatusuReset
249 // Description: resets this instance
251 // Parameters:
253 // Returns: tEplKernel = errorcode
256 // State:
258 //---------------------------------------------------------------------------
260 tEplKernel EplStatusuReset(void)
262 tEplKernel Ret;
264 Ret = kEplSuccessful;
266 // reset instance structure
267 EPL_MEMSET(&EplStatusuInstance_g, 0, sizeof(EplStatusuInstance_g));
269 return Ret;
273 //---------------------------------------------------------------------------
275 // Function: EplStatusuRequestStatusResponse
277 // Description: returns the StatusResponse for the specified node.
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
283 // Return: tEplKernel = error code
285 // State: not tested
287 //---------------------------------------------------------------------------
289 tEplKernel EplStatusuRequestStatusResponse(unsigned int uiNodeId_p,
290 tEplStatusuCbResponse pfnCbResponse_p)
292 tEplKernel Ret;
294 Ret = kEplSuccessful;
296 // decrement node ID, because array is zero based
297 uiNodeId_p--;
298 if (uiNodeId_p < tabentries(EplStatusuInstance_g.m_apfnCbResponse)) {
299 #if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMT_MN)) != 0)
300 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);
309 #else
310 Ret = kEplInvalidOperation;
311 #endif
312 } else { // invalid node ID specified
313 Ret = kEplInvalidNodeId;
316 return Ret;
320 //=========================================================================//
321 // //
322 // P R I V A T E F U N C T I O N S //
323 // //
324 //=========================================================================//
326 //---------------------------------------------------------------------------
328 // Function: EplStatusuCbStatusResponse
330 // Description: callback funktion for StatusResponse
334 // Parameters: pFrameInfo_p = Frame with the StatusResponse
337 // Returns: tEplKernel = error code
340 // State:
342 //---------------------------------------------------------------------------
343 static tEplKernel EplStatusuCbStatusResponse(tEplFrameInfo *pFrameInfo_p)
345 tEplKernel Ret = kEplSuccessful;
346 unsigned int uiNodeId;
347 unsigned int uiIndex;
348 tEplStatusuCbResponse pfnCbResponse;
350 uiNodeId = AmiGetByteFromLe(&pFrameInfo_p->m_pFrame->m_le_bSrcNodeId);
352 uiIndex = uiNodeId - 1;
354 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;
360 // reset callback function pointer so that caller may issue next request
361 EplStatusuInstance_g.m_apfnCbResponse[uiIndex] = NULL;
363 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);
373 Exit:
374 return Ret;
377 // EOF