aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/epl/EplEvent.h
blob: b6dc1b9b2ab1cb73bb4ee3e7adae5b40146f4234 (plain) (blame)
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
/****************************************************************************

  (c) SYSTEC electronic GmbH, D-07973 Greiz, August-Bebel-Str. 29
      www.systec-electronic.com

  Project:      openPOWERLINK

  Description:  include file for event module

  License:

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:

    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.

    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    3. Neither the name of SYSTEC electronic GmbH nor the names of its
       contributors may be used to endorse or promote products derived
       from this software without prior written permission. For written
       permission, please contact info@systec-electronic.com.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
    FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
    COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
    BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
    ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.

    Severability Clause:

        If a provision of this License is or becomes illegal, invalid or
        unenforceable in any jurisdiction, that shall not affect:
        1. the validity or enforceability in that jurisdiction of any other
           provision of this License; or
        2. the validity or enforceability in other jurisdictions of that or
           any other provision of this License.

  -------------------------------------------------------------------------

                $RCSfile: EplEvent.h,v $

                $Author: D.Krueger $

                $Revision: 1.8 $  $Date: 2008/11/17 16:40:39 $

                $State: Exp $

                Build Environment:
                    GCC V3.4

  -------------------------------------------------------------------------

  Revision History:

  2006/06/12 d.k.:   start of the implementation, version 1.00

****************************************************************************/

#ifndef _EPL_EVENT_H_
#define _EPL_EVENT_H_

#include "EplInc.h"
#include "EplNmt.h"

//---------------------------------------------------------------------------
// const defines
//---------------------------------------------------------------------------

// name and size of event queues
#define EPL_EVENT_NAME_SHB_KERNEL_TO_USER   "ShbKernelToUser"
#ifndef EPL_EVENT_SIZE_SHB_KERNEL_TO_USER
#define EPL_EVENT_SIZE_SHB_KERNEL_TO_USER   32768	// 32 kByte
#endif

#define EPL_EVENT_NAME_SHB_USER_TO_KERNEL   "ShbUserToKernel"
#ifndef EPL_EVENT_SIZE_SHB_USER_TO_KERNEL
#define EPL_EVENT_SIZE_SHB_USER_TO_KERNEL   32768	// 32 kByte
#endif

// max size of event argument
#ifndef EPL_MAX_EVENT_ARG_SIZE
#define EPL_MAX_EVENT_ARG_SIZE      256	// because of PDO
#endif

#define EPL_DLL_ERR_MN_CRC           0x00000001L	// object 0x1C00
#define EPL_DLL_ERR_MN_COLLISION     0x00000002L	// object 0x1C01
#define EPL_DLL_ERR_MN_CYCTIMEEXCEED 0x00000004L	// object 0x1C02
#define EPL_DLL_ERR_MN_LOSS_LINK     0x00000008L	// object 0x1C03
#define EPL_DLL_ERR_MN_CN_LATE_PRES  0x00000010L	// objects 0x1C04-0x1C06
#define EPL_DLL_ERR_MN_CN_LOSS_PRES  0x00000080L	// objects 0x1C07-0x1C09
#define EPL_DLL_ERR_CN_COLLISION     0x00000400L	// object 0x1C0A
#define EPL_DLL_ERR_CN_LOSS_SOC      0x00000800L	// object 0x1C0B
#define EPL_DLL_ERR_CN_LOSS_SOA      0x00001000L	// object 0x1C0C
#define EPL_DLL_ERR_CN_LOSS_PREQ     0x00002000L	// object 0x1C0D
#define EPL_DLL_ERR_CN_RECVD_PREQ    0x00004000L	// decrement object 0x1C0D/2
#define EPL_DLL_ERR_CN_SOC_JITTER    0x00008000L	// object 0x1C0E
#define EPL_DLL_ERR_CN_CRC           0x00010000L	// object 0x1C0F
#define EPL_DLL_ERR_CN_LOSS_LINK     0x00020000L	// object 0x1C10
#define EPL_DLL_ERR_MN_LOSS_STATRES  0x00040000L	// objects 0x1C15-0x1C17 (should be operated by NmtMnu module)
#define EPL_DLL_ERR_BAD_PHYS_MODE    0x00080000L	// no object
#define EPL_DLL_ERR_MAC_BUFFER       0x00100000L	// no object (NMT_GT6)
#define EPL_DLL_ERR_INVALID_FORMAT   0x00200000L	// no object (NMT_GT6)
#define EPL_DLL_ERR_ADDRESS_CONFLICT 0x00400000L	// no object (remove CN from configuration)

//---------------------------------------------------------------------------
// typedef
//---------------------------------------------------------------------------

// EventType determines the argument of the event
typedef enum {
	kEplEventTypeNmtEvent = 0x01,	// NMT event
	// arg is pointer to tEplNmtEvent
	kEplEventTypePdoRx = 0x02,	// PDO frame received event (PRes/PReq)
	// arg is pointer to tEplFrame
	kEplEventTypePdoTx = 0x03,	// PDO frame transmitted event (PRes/PReq)
	// arg is pointer to tEplFrameInfo
	kEplEventTypePdoSoa = 0x04,	// SoA frame received event (isochronous phase completed)
	// arg is pointer to nothing
	kEplEventTypeSync = 0x05,	// Sync event (e.g. SoC or anticipated SoC)
	// arg is pointer to nothing
	kEplEventTypeTimer = 0x06,	// Timer event
	// arg is pointer to tEplTimerEventArg
	kEplEventTypeHeartbeat = 0x07,	// Heartbeat event
	// arg is pointer to tEplHeartbeatEvent
	kEplEventTypeDllkCreate = 0x08,	// DLL kernel create event
	// arg is pointer to the new tEplNmtState
	kEplEventTypeDllkDestroy = 0x09,	// DLL kernel destroy event
	// arg is pointer to the old tEplNmtState
	kEplEventTypeDllkFillTx = 0x0A,	// DLL kernel fill TxBuffer event
	// arg is pointer to tEplDllAsyncReqPriority
	kEplEventTypeDllkPresReady = 0x0B,	// DLL kernel PRes ready event
	// arg is pointer to nothing
	kEplEventTypeError = 0x0C,	// Error event for API layer
	// arg is pointer to tEplEventError
	kEplEventTypeNmtStateChange = 0x0D,	// indicate change of NMT-State
	// arg is pointer to tEplEventNmtStateChange
	kEplEventTypeDllError = 0x0E,	// DLL error event for Error handler
	// arg is pointer to tEplErrorHandlerkEvent
	kEplEventTypeAsndRx = 0x0F,	// received ASnd frame for DLL user module
	// arg is pointer to tEplFrame
	kEplEventTypeDllkServFilter = 0x10,	// configure ServiceIdFilter
	// arg is pointer to tEplDllCalServiceIdFilter
	kEplEventTypeDllkIdentity = 0x11,	// configure Identity
	// arg is pointer to tEplDllIdentParam
	kEplEventTypeDllkConfig = 0x12,	// configure ConfigParam
	// arg is pointer to tEplDllConfigParam
	kEplEventTypeDllkIssueReq = 0x13,	// issue Ident/Status request
	// arg is pointer to tEplDllCalIssueRequest
	kEplEventTypeDllkAddNode = 0x14,	// add node to isochronous phase
	// arg is pointer to tEplDllNodeInfo
	kEplEventTypeDllkDelNode = 0x15,	// remove node from isochronous phase
	// arg is pointer to unsigned int
	kEplEventTypeDllkSoftDelNode = 0x16,	// remove node softly from isochronous phase
	// arg is pointer to unsigned int
	kEplEventTypeDllkStartReducedCycle = 0x17,	// start reduced EPL cycle on MN
	// arg is pointer to nothing
	kEplEventTypeNmtMnuNmtCmdSent = 0x18,	// NMT command was actually sent
	// arg is pointer to tEplFrame

} tEplEventType;

// EventSink determines the consumer of the event
typedef enum {
	kEplEventSinkSync = 0x00,	// Sync event for application or kernel EPL module
	kEplEventSinkNmtk = 0x01,	// events for Nmtk module
	kEplEventSinkDllk = 0x02,	// events for Dllk module
	kEplEventSinkDlluCal = 0x03,	// events for DlluCal module
	kEplEventSinkDllkCal = 0x04,	// events for DllkCal module
	kEplEventSinkPdok = 0x05,	// events for Pdok module
	kEplEventSinkNmtu = 0x06,	// events for Nmtu module
	kEplEventSinkErrk = 0x07,	// events for Error handler module
	kEplEventSinkErru = 0x08,	// events for Error signaling module
	kEplEventSinkSdoAsySeq = 0x09,	// events for asyncronous SDO Sequence Layer module
	kEplEventSinkNmtMnu = 0x0A,	// events for NmtMnu module
	kEplEventSinkLedu = 0x0B,	// events for Ledu module
	kEplEventSinkApi = 0x0F,	// events for API module

} tEplEventSink;

// EventSource determines the source of an errorevent
typedef enum {
	// kernelspace modules
	kEplEventSourceDllk = 0x01,	// Dllk module
	kEplEventSourceNmtk = 0x02,	// Nmtk module
	kEplEventSourceObdk = 0x03,	// Obdk module
	kEplEventSourcePdok = 0x04,	// Pdok module
	kEplEventSourceTimerk = 0x05,	// Timerk module
	kEplEventSourceEventk = 0x06,	// Eventk module
	kEplEventSourceSyncCb = 0x07,	// sync-Cb
	kEplEventSourceErrk = 0x08,	// Error handler module

	// userspace modules
	kEplEventSourceDllu = 0x10,	// Dllu module
	kEplEventSourceNmtu = 0x11,	// Nmtu module
	kEplEventSourceNmtCnu = 0x12,	// NmtCnu module
	kEplEventSourceNmtMnu = 0x13,	// NmtMnu module
	kEplEventSourceObdu = 0x14,	// Obdu module
	kEplEventSourceSdoUdp = 0x15,	// Sdo/Udp module
	kEplEventSourceSdoAsnd = 0x16,	// Sdo/Asnd module
	kEplEventSourceSdoAsySeq = 0x17,	// Sdo asynchronus Sequence Layer module
	kEplEventSourceSdoCom = 0x18,	// Sdo command layer module
	kEplEventSourceTimeru = 0x19,	// Timeru module
	kEplEventSourceCfgMau = 0x1A,	// CfgMau module
	kEplEventSourceEventu = 0x1B,	// Eventu module
	kEplEventSourceEplApi = 0x1C,	// Api module
	kEplEventSourceLedu = 0x1D,	// Ledu module

} tEplEventSource;

// structure of EPL event (element order must not be changed!)
typedef struct {
	tEplEventType m_EventType /*:28 */ ;	// event type
	tEplEventSink m_EventSink /*:4 */ ;	// event sink
	tEplNetTime m_NetTime;	// timestamp
	unsigned int m_uiSize;	// size of argument
	void *m_pArg;		// argument of event

} tEplEvent;

// short structure of EPL event without argument and its size (element order must not be changed!)
typedef struct {
	tEplEventType m_EventType /*:28 */ ;	// event type
	tEplEventSink m_EventSink /*:4 */ ;	// event sink
	tEplNetTime m_NetTime;	// timestamp

} tEplEventShort;

typedef struct {
	unsigned int m_uiIndex;
	unsigned int m_uiSubIndex;

} tEplEventObdError;

// structure for kEplEventTypeError
typedef struct {
	tEplEventSource m_EventSource;	// module which posted this error event
	tEplKernel m_EplError;	// EPL error which occured
	union {
		BYTE m_bArg;
		DWORD m_dwArg;
		tEplEventSource m_EventSource;	// from Eventk/u module (originating error source)
		tEplEventObdError m_ObdError;	// from Obd module
//        tEplErrHistoryEntry     m_HistoryEntry; // from Nmtk/u module

	} m_Arg;

} tEplEventError;

// structure for kEplEventTypeDllError
typedef struct {
	unsigned long m_ulDllErrorEvents;	// EPL_DLL_ERR_*
	unsigned int m_uiNodeId;
	tEplNmtState m_NmtState;

} tEplErrorHandlerkEvent;

// callback function to get informed about sync event
typedef tEplKernel(PUBLIC * tEplSyncCb) (void);

// callback function for generic events
typedef tEplKernel(PUBLIC * tEplProcessEventCb) (tEplEvent * pEplEvent_p);

//---------------------------------------------------------------------------
// function prototypes
//---------------------------------------------------------------------------

#endif // #ifndef _EPL_EVENT_H_