sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@internalTechnology
|
sl@0
|
19 |
@prototype
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifndef D32OTGDI_H
|
sl@0
|
23 |
#define D32OTGDI_H
|
sl@0
|
24 |
|
sl@0
|
25 |
#ifdef __KERNEL_MODE__
|
sl@0
|
26 |
# include <kernel/klib.h>
|
sl@0
|
27 |
# include <e32ver.h>
|
sl@0
|
28 |
#else
|
sl@0
|
29 |
# include <e32base.h>
|
sl@0
|
30 |
# include <e32ver.h>
|
sl@0
|
31 |
# include <e32debug.h>
|
sl@0
|
32 |
#endif
|
sl@0
|
33 |
|
sl@0
|
34 |
#include <d32otgdi_errors.h>
|
sl@0
|
35 |
|
sl@0
|
36 |
/**
|
sl@0
|
37 |
The bi-directional interface which USB Manager uses to talk to OTGDI about
|
sl@0
|
38 |
OTG related issues
|
sl@0
|
39 |
|
sl@0
|
40 |
@note This API is only available to USBMAN, a restriction which is enforced
|
sl@0
|
41 |
by checking the SID of the calling process.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
NONSHARABLE_CLASS(RUsbOtgDriver) : public RBusLogicalChannel
|
sl@0
|
44 |
{
|
sl@0
|
45 |
friend class DUsbOtgDriver;
|
sl@0
|
46 |
|
sl@0
|
47 |
public:
|
sl@0
|
48 |
|
sl@0
|
49 |
// Version number history:
|
sl@0
|
50 |
//
|
sl@0
|
51 |
// PREQ1782 = 1.0
|
sl@0
|
52 |
// PREQ1305 = 1.1
|
sl@0
|
53 |
|
sl@0
|
54 |
static const TInt KMajorVersionNumber = 1;
|
sl@0
|
55 |
static const TInt KMinorVersionNumber = 1;
|
sl@0
|
56 |
|
sl@0
|
57 |
private:
|
sl@0
|
58 |
|
sl@0
|
59 |
/**
|
sl@0
|
60 |
OTG Event, supplied in a form that will enable use as an array
|
sl@0
|
61 |
index (note also how this is used below in the bit-mask form,
|
sl@0
|
62 |
but that this is only extended to a few, other events are OTG
|
sl@0
|
63 |
internal and used only to drive the local state machine)
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
enum TOtgEventIndex
|
sl@0
|
66 |
{
|
sl@0
|
67 |
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
|
sl@0
|
68 |
'public' OTG events
|
sl@0
|
69 |
** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
sl@0
|
70 |
|
sl@0
|
71 |
/**
|
sl@0
|
72 |
OTG events related to plug insertion or removal
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
EEventIndexAPlugInserted = 0,
|
sl@0
|
75 |
EEventIndexAPlugRemoved,
|
sl@0
|
76 |
|
sl@0
|
77 |
/**
|
sl@0
|
78 |
OTG events relating to changes visible on the bus
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
EEventIndexVbusRaised,
|
sl@0
|
81 |
EEventIndexVbusDropped,
|
sl@0
|
82 |
|
sl@0
|
83 |
EEventIndexSrpInitiated,
|
sl@0
|
84 |
|
sl@0
|
85 |
EEventIndexSrpReceived,
|
sl@0
|
86 |
EEventIndexHnpEnabled,
|
sl@0
|
87 |
EEventIndexHnpDisabled,
|
sl@0
|
88 |
EEventIndexHnpSupported,
|
sl@0
|
89 |
EEventIndexHnpAltSupported,
|
sl@0
|
90 |
|
sl@0
|
91 |
EEventIndexBusConnectionBusy,
|
sl@0
|
92 |
EEventIndexBusConnectionIdle,
|
sl@0
|
93 |
|
sl@0
|
94 |
/**
|
sl@0
|
95 |
OTG events related to changes in the current role the device
|
sl@0
|
96 |
is performing (independant of the orientation of the connection)
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
EEventIndexRoleChangedToHost,
|
sl@0
|
99 |
EEventIndexRoleChangedToDevice,
|
sl@0
|
100 |
EEventIndexRoleChangedToIdle,
|
sl@0
|
101 |
|
sl@0
|
102 |
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
|
sl@0
|
103 |
'private' OTG events - these are not converted to the bit-map form,
|
sl@0
|
104 |
but are used solely to stim the OTG state machine
|
sl@0
|
105 |
** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
sl@0
|
106 |
|
sl@0
|
107 |
EEventIndexPrivateAfterThis,
|
sl@0
|
108 |
|
sl@0
|
109 |
EEventIndexVbusError,
|
sl@0
|
110 |
EEventIndexClearVbusError,
|
sl@0
|
111 |
|
sl@0
|
112 |
EEventIndexResetStateMachine,
|
sl@0
|
113 |
|
sl@0
|
114 |
EEventIndexNoEvent,
|
sl@0
|
115 |
|
sl@0
|
116 |
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
|
sl@0
|
117 |
Single indicator used for array sizing
|
sl@0
|
118 |
** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
|
sl@0
|
119 |
EEventIndexNumEvents
|
sl@0
|
120 |
};
|
sl@0
|
121 |
|
sl@0
|
122 |
public:
|
sl@0
|
123 |
|
sl@0
|
124 |
/**
|
sl@0
|
125 |
OTG Events, supplied in a form that can be used to create a mask
|
sl@0
|
126 |
that can specify a watcher's events of interest.
|
sl@0
|
127 |
*/
|
sl@0
|
128 |
enum TOtgEvent
|
sl@0
|
129 |
{
|
sl@0
|
130 |
/**
|
sl@0
|
131 |
* 'empty' dummy event
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
EEventNotValid = 0,
|
sl@0
|
134 |
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
OTG events related to plug insertion or removal
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
EEventAPlugInserted = ( 1 << EEventIndexAPlugInserted ),
|
sl@0
|
139 |
EEventAPlugRemoved = ( 1 << EEventIndexAPlugRemoved ),
|
sl@0
|
140 |
|
sl@0
|
141 |
EEventGroupPlugChanges = ( EEventAPlugInserted
|
sl@0
|
142 |
|EEventAPlugRemoved
|
sl@0
|
143 |
),
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
OTG events relating to changes visible on the bus
|
sl@0
|
147 |
*/
|
sl@0
|
148 |
EEventVbusRaised = ( 1 << EEventIndexVbusRaised ),
|
sl@0
|
149 |
EEventVbusDropped = ( 1 << EEventIndexVbusDropped ),
|
sl@0
|
150 |
|
sl@0
|
151 |
EEventSrpInitiated = ( 1 << EEventIndexSrpInitiated ),
|
sl@0
|
152 |
|
sl@0
|
153 |
EEventSrpReceived = ( 1 << EEventIndexSrpReceived ),
|
sl@0
|
154 |
EEventHnpEnabled = ( 1 << EEventIndexHnpEnabled ),
|
sl@0
|
155 |
EEventHnpDisabled = ( 1 << EEventIndexHnpDisabled ),
|
sl@0
|
156 |
EEventHnpSupported = ( 1 << EEventIndexHnpSupported ),
|
sl@0
|
157 |
EEventHnpAltSupported = ( 1 << EEventIndexHnpAltSupported ),
|
sl@0
|
158 |
|
sl@0
|
159 |
EEventBusConnectionBusy = ( 1 << EEventIndexBusConnectionBusy ),
|
sl@0
|
160 |
EEventBusConnectionIdle = ( 1 << EEventIndexBusConnectionIdle ),
|
sl@0
|
161 |
|
sl@0
|
162 |
EEventGroupBusChanges = ( EEventVbusRaised
|
sl@0
|
163 |
|EEventVbusDropped
|
sl@0
|
164 |
|EEventSrpInitiated
|
sl@0
|
165 |
|EEventSrpReceived
|
sl@0
|
166 |
|EEventHnpEnabled
|
sl@0
|
167 |
|EEventHnpDisabled
|
sl@0
|
168 |
|EEventHnpSupported
|
sl@0
|
169 |
|EEventHnpAltSupported
|
sl@0
|
170 |
|EEventBusConnectionBusy
|
sl@0
|
171 |
|EEventBusConnectionIdle
|
sl@0
|
172 |
),
|
sl@0
|
173 |
|
sl@0
|
174 |
/**
|
sl@0
|
175 |
OTG events related to changes in the current role the device
|
sl@0
|
176 |
is performing (independant of the orientation of the connection)
|
sl@0
|
177 |
*/
|
sl@0
|
178 |
EEventRoleChangedToHost = ( 1 << EEventIndexRoleChangedToHost ),
|
sl@0
|
179 |
EEventRoleChangedToDevice = ( 1 << EEventIndexRoleChangedToDevice ),
|
sl@0
|
180 |
EEventRoleChangedToIdle = ( 1 << EEventIndexRoleChangedToIdle ),
|
sl@0
|
181 |
|
sl@0
|
182 |
EEventGroupRoleChanges = ( EEventRoleChangedToHost
|
sl@0
|
183 |
|EEventRoleChangedToDevice
|
sl@0
|
184 |
|EEventRoleChangedToIdle
|
sl@0
|
185 |
),
|
sl@0
|
186 |
|
sl@0
|
187 |
/**
|
sl@0
|
188 |
Helpful macro to allow users to register for 'everything'
|
sl@0
|
189 |
*/
|
sl@0
|
190 |
EEventGroupAll = ( EEventGroupPlugChanges
|
sl@0
|
191 |
|EEventGroupBusChanges
|
sl@0
|
192 |
|EEventGroupRoleChanges
|
sl@0
|
193 |
)
|
sl@0
|
194 |
};
|
sl@0
|
195 |
|
sl@0
|
196 |
private:
|
sl@0
|
197 |
|
sl@0
|
198 |
/**
|
sl@0
|
199 |
OTG State, supplied in a form that will enable use as an array
|
sl@0
|
200 |
index (note also how this is used below in the bit-mask form)
|
sl@0
|
201 |
*/
|
sl@0
|
202 |
enum TOtgStateIndex
|
sl@0
|
203 |
{
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
Single case of non-stable state, used only during
|
sl@0
|
206 |
startup
|
sl@0
|
207 |
*/
|
sl@0
|
208 |
EStateIndexReset = 0,
|
sl@0
|
209 |
|
sl@0
|
210 |
/**
|
sl@0
|
211 |
'A'-connection states (names are derived from OTG-Supplement
|
sl@0
|
212 |
Figure 6-2 On-The-Go A-Device State Diagram)
|
sl@0
|
213 |
*/
|
sl@0
|
214 |
EStateIndexAIdle,
|
sl@0
|
215 |
EStateIndexAHost,
|
sl@0
|
216 |
EStateIndexAPeripheral,
|
sl@0
|
217 |
EStateIndexAVbusError,
|
sl@0
|
218 |
|
sl@0
|
219 |
/**
|
sl@0
|
220 |
'B'-connection states (names are derived from OTG-Supplement
|
sl@0
|
221 |
Figure 6-3 On-The-Go B-Device State Diagram)
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
EStateIndexBIdle,
|
sl@0
|
224 |
EStateIndexBPeripheral,
|
sl@0
|
225 |
EStateIndexBHost,
|
sl@0
|
226 |
|
sl@0
|
227 |
/**
|
sl@0
|
228 |
Single indicator used for array sizing
|
sl@0
|
229 |
*/
|
sl@0
|
230 |
EStateIndexNumStates
|
sl@0
|
231 |
};
|
sl@0
|
232 |
|
sl@0
|
233 |
public:
|
sl@0
|
234 |
|
sl@0
|
235 |
/**
|
sl@0
|
236 |
OTG State, supplied in a form that can be used to create a mask
|
sl@0
|
237 |
that can specify a watcher's states of interest.
|
sl@0
|
238 |
*/
|
sl@0
|
239 |
enum TOtgState
|
sl@0
|
240 |
{
|
sl@0
|
241 |
/**
|
sl@0
|
242 |
* 'empty' dummy state
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
EStateNotValid = 0,
|
sl@0
|
245 |
|
sl@0
|
246 |
/**
|
sl@0
|
247 |
Single case of non-stable state, used only during
|
sl@0
|
248 |
startup
|
sl@0
|
249 |
*/
|
sl@0
|
250 |
EStateReset = ( 1 << EStateIndexReset ),
|
sl@0
|
251 |
|
sl@0
|
252 |
/**
|
sl@0
|
253 |
'A'-connection states (names are derived from OTG-Supplement
|
sl@0
|
254 |
Figure 6-2 On-The-Go A-Device State Diagram)
|
sl@0
|
255 |
*/
|
sl@0
|
256 |
EStateAIdle = ( 1 << EStateIndexAIdle ),
|
sl@0
|
257 |
EStateAHost = ( 1 << EStateIndexAHost ),
|
sl@0
|
258 |
EStateAPeripheral = ( 1 << EStateIndexAPeripheral ),
|
sl@0
|
259 |
EStateAVbusError = ( 1 << EStateIndexAVbusError ),
|
sl@0
|
260 |
|
sl@0
|
261 |
EStateAllA = ( EStateAIdle
|
sl@0
|
262 |
|EStateAHost
|
sl@0
|
263 |
|EStateAPeripheral
|
sl@0
|
264 |
|EStateAVbusError
|
sl@0
|
265 |
),
|
sl@0
|
266 |
|
sl@0
|
267 |
EStateAllAExceptBusError = ( EStateAIdle
|
sl@0
|
268 |
|EStateAHost
|
sl@0
|
269 |
|EStateAPeripheral
|
sl@0
|
270 |
),
|
sl@0
|
271 |
|
sl@0
|
272 |
/**
|
sl@0
|
273 |
'B'-connection states (names are derived from OTG-Supplement
|
sl@0
|
274 |
Figure 6-3 On-The-Go B-Device State Diagram)
|
sl@0
|
275 |
*/
|
sl@0
|
276 |
EStateBIdle = ( 1 << EStateIndexBIdle ),
|
sl@0
|
277 |
EStateBPeripheral = ( 1 << EStateIndexBPeripheral ),
|
sl@0
|
278 |
EStateBHost = ( 1 << EStateIndexBHost ),
|
sl@0
|
279 |
|
sl@0
|
280 |
EStateAllB = ( EStateBIdle
|
sl@0
|
281 |
|EStateBPeripheral
|
sl@0
|
282 |
|EStateBHost
|
sl@0
|
283 |
)
|
sl@0
|
284 |
};
|
sl@0
|
285 |
|
sl@0
|
286 |
public:
|
sl@0
|
287 |
|
sl@0
|
288 |
/**
|
sl@0
|
289 |
OTG Messages, these can be retrieved to satisfy the OTG Supplement
|
sl@0
|
290 |
"No Silent Failures" requirement.
|
sl@0
|
291 |
|
sl@0
|
292 |
The error numbers are derived for constants set up in d32otgdi_error.h
|
sl@0
|
293 |
and are used here so that the enumerator can be used to enforce compiler
|
sl@0
|
294 |
checks on the functions that handle the messages.
|
sl@0
|
295 |
|
sl@0
|
296 |
Note that this minimal set of message events only contains the few
|
sl@0
|
297 |
things that are reported by the USB OTG Stack: it is expected that
|
sl@0
|
298 |
these will be merged into a composite message event flow by USBMAN
|
sl@0
|
299 |
*/
|
sl@0
|
300 |
enum TOtgMessage
|
sl@0
|
301 |
{
|
sl@0
|
302 |
/**
|
sl@0
|
303 |
Internal OTGDI errors must also be offered to USBMAN in order to
|
sl@0
|
304 |
fully support the "No Silent Failures" policy
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
EEventQueueOverflow = KErrUsbOtgEventQueueOverflow,
|
sl@0
|
307 |
EStateQueueOverflow = KErrUsbOtgStateQueueOverflow,
|
sl@0
|
308 |
EMessageQueueOverflow = KErrUsbOtgMessageQueueOverflow,
|
sl@0
|
309 |
|
sl@0
|
310 |
EMessageBadState = KErrUsbOtgBadState,
|
sl@0
|
311 |
|
sl@0
|
312 |
/**
|
sl@0
|
313 |
Errors relating to attempts to do wrong things to VBUS
|
sl@0
|
314 |
*/
|
sl@0
|
315 |
EMessageStackNotStarted = KErrUsbOtgStackNotStarted,
|
sl@0
|
316 |
EMessageVbusAlreadyRaised = KErrUsbOtgVbusAlreadyRaised,
|
sl@0
|
317 |
EMessageSrpForbidden = KErrUsbOtgSrpForbidden,
|
sl@0
|
318 |
|
sl@0
|
319 |
/**
|
sl@0
|
320 |
Generic message that there has been some form of problem in
|
sl@0
|
321 |
the lower-level USB OTG stack's calls
|
sl@0
|
322 |
*/
|
sl@0
|
323 |
EMessageBusControlProblem = KErrUsbOtgBusControlProblem,
|
sl@0
|
324 |
|
sl@0
|
325 |
/**
|
sl@0
|
326 |
Generic message that there has been a reportable failure in sending
|
sl@0
|
327 |
the B_HNP_ENABLE SetFeature command
|
sl@0
|
328 |
*/
|
sl@0
|
329 |
EMessageHnpEnableProblem = KErrUsbOtgHnpEnableProblem,
|
sl@0
|
330 |
|
sl@0
|
331 |
/**
|
sl@0
|
332 |
Peripheral reported as 'not-supported'
|
sl@0
|
333 |
*/
|
sl@0
|
334 |
EMessagePeriphNotSupported = KErrUsbOtgPeriphNotSupported,
|
sl@0
|
335 |
|
sl@0
|
336 |
/**
|
sl@0
|
337 |
Individual error messages
|
sl@0
|
338 |
*/
|
sl@0
|
339 |
EMessageVbusError = KErrUsbOtgVbusError,
|
sl@0
|
340 |
EMessageSrpTimeout = KErrUsbOtgSrpTimeout,
|
sl@0
|
341 |
EMessageSrpActive = KErrUsbOtgSrpActive,
|
sl@0
|
342 |
EMessageSrpNotPermitted = KErrUsbOtgSrpNotPermitted,
|
sl@0
|
343 |
EMessageHnpNotPermitted = KErrUsbOtgHnpNotPermitted,
|
sl@0
|
344 |
EMessageHnpNotEnabled = KErrUsbOtgHnpNotEnabled,
|
sl@0
|
345 |
EMessageHnpNotSuspended = KErrUsbOtgHnpNotSuspended,
|
sl@0
|
346 |
EMessageVbusPowerUpNotPermitted = KErrUsbOtgVbusPowerUpNotPermitted,
|
sl@0
|
347 |
EMessageVbusPowerUpError = KErrUsbOtgVbusPowerUpError,
|
sl@0
|
348 |
EMessageVbusPowerDownNotPermitted = KErrUsbOtgVbusPowerDownNotPermitted,
|
sl@0
|
349 |
EMessageVbusClearErrorNotPermitted = KErrUsbOtgVbusClearErrorNotPermitted,
|
sl@0
|
350 |
EMessageHnpNotResponding = KErrUsbOtgHnpNotResponding,
|
sl@0
|
351 |
EMessageHnpBusDrop = KErrUsbOtgHnpBusDrop
|
sl@0
|
352 |
};
|
sl@0
|
353 |
|
sl@0
|
354 |
public:
|
sl@0
|
355 |
|
sl@0
|
356 |
/**
|
sl@0
|
357 |
Set of OTG operations required for use of the User-Kernel channel
|
sl@0
|
358 |
*/
|
sl@0
|
359 |
enum TOtgRequest
|
sl@0
|
360 |
{
|
sl@0
|
361 |
EQueueOtgEventRequest = 0,
|
sl@0
|
362 |
EQueueOtgStateRequest,
|
sl@0
|
363 |
EQueueOtgMessageRequest,
|
sl@0
|
364 |
|
sl@0
|
365 |
EQueueOtgIdPinNotification,
|
sl@0
|
366 |
EQueueOtgVbusNotification,
|
sl@0
|
367 |
EQueueOtgConnectionNotification,
|
sl@0
|
368 |
EQueueOtgStateNotification,
|
sl@0
|
369 |
};
|
sl@0
|
370 |
|
sl@0
|
371 |
enum TOtgControl
|
sl@0
|
372 |
{
|
sl@0
|
373 |
EActivateOptTestMode = 0,
|
sl@0
|
374 |
|
sl@0
|
375 |
EStartStacks,
|
sl@0
|
376 |
EStopStacks,
|
sl@0
|
377 |
|
sl@0
|
378 |
ECancelOtgEventRequest,
|
sl@0
|
379 |
ECancelOtgStateRequest,
|
sl@0
|
380 |
ECancelOtgMessageRequest,
|
sl@0
|
381 |
|
sl@0
|
382 |
ECancelOtgIdPinNotification,
|
sl@0
|
383 |
ECancelOtgVbusNotification,
|
sl@0
|
384 |
ECancelOtgConnectionNotification,
|
sl@0
|
385 |
ECancelOtgStateNotification,
|
sl@0
|
386 |
|
sl@0
|
387 |
EBusRequest,
|
sl@0
|
388 |
EBusRespondSrp,
|
sl@0
|
389 |
EBusDrop,
|
sl@0
|
390 |
EBusClearError
|
sl@0
|
391 |
};
|
sl@0
|
392 |
|
sl@0
|
393 |
/**
|
sl@0
|
394 |
ID-Pin possible states (note that this is not a plain boolean, to
|
sl@0
|
395 |
allow for future expansion to cover car-kit - if this is needed, then
|
sl@0
|
396 |
a new enum value of 'EIdPinCarKit' should be inserted)
|
sl@0
|
397 |
*/
|
sl@0
|
398 |
enum TOtgIdPin
|
sl@0
|
399 |
{
|
sl@0
|
400 |
EIdPinAPlug = 0,
|
sl@0
|
401 |
EIdPinBPlug,
|
sl@0
|
402 |
|
sl@0
|
403 |
// deprecated EIdPinCarKit - to be removed after OTGDI reaches MCL
|
sl@0
|
404 |
|
sl@0
|
405 |
EIdPinCarKit,
|
sl@0
|
406 |
|
sl@0
|
407 |
EIdPinUnknown
|
sl@0
|
408 |
};
|
sl@0
|
409 |
|
sl@0
|
410 |
/**
|
sl@0
|
411 |
VBUS voltage level possible states (as detected from an OTG transceiver)
|
sl@0
|
412 |
*/
|
sl@0
|
413 |
enum TOtgVbus
|
sl@0
|
414 |
{
|
sl@0
|
415 |
EVbusHigh = 0,
|
sl@0
|
416 |
EVbusLow,
|
sl@0
|
417 |
|
sl@0
|
418 |
EVbusUnknown
|
sl@0
|
419 |
};
|
sl@0
|
420 |
|
sl@0
|
421 |
/**
|
sl@0
|
422 |
Connection 'Idle' indicator (potential to drop VBUS)
|
sl@0
|
423 |
*/
|
sl@0
|
424 |
enum TOtgConnection
|
sl@0
|
425 |
{
|
sl@0
|
426 |
EConnectionBusy = 0,
|
sl@0
|
427 |
EConnectionIdle,
|
sl@0
|
428 |
|
sl@0
|
429 |
EConnectionUnknown
|
sl@0
|
430 |
};
|
sl@0
|
431 |
|
sl@0
|
432 |
public:
|
sl@0
|
433 |
|
sl@0
|
434 |
inline static const TDesC& Name();
|
sl@0
|
435 |
inline static TVersion VersionRequired();
|
sl@0
|
436 |
|
sl@0
|
437 |
#ifndef __KERNEL_MODE__
|
sl@0
|
438 |
|
sl@0
|
439 |
public:
|
sl@0
|
440 |
|
sl@0
|
441 |
inline TInt Open();
|
sl@0
|
442 |
|
sl@0
|
443 |
inline TInt ActivateOptTestMode();
|
sl@0
|
444 |
|
sl@0
|
445 |
inline TInt StartStacks();
|
sl@0
|
446 |
inline void StopStacks();
|
sl@0
|
447 |
|
sl@0
|
448 |
inline void QueueOtgEventRequest(TOtgEvent& aOldestEvent, TRequestStatus& aStatus);
|
sl@0
|
449 |
inline void CancelOtgEventRequest();
|
sl@0
|
450 |
|
sl@0
|
451 |
inline void QueueOtgStateRequest(TOtgState& aState, TRequestStatus& aStatus);
|
sl@0
|
452 |
inline void CancelOtgStateRequest();
|
sl@0
|
453 |
|
sl@0
|
454 |
inline void QueueOtgMessageRequest(TOtgMessage& aMessage, TRequestStatus& aStatus);
|
sl@0
|
455 |
inline void CancelOtgMessageRequest();
|
sl@0
|
456 |
|
sl@0
|
457 |
inline void QueueOtgIdPinNotification(TOtgIdPin& aCurrentIdPin, TRequestStatus& aStatus);
|
sl@0
|
458 |
inline void CancelOtgIdPinNotification();
|
sl@0
|
459 |
|
sl@0
|
460 |
inline void QueueOtgVbusNotification(TOtgVbus& aCurrentVbus, TRequestStatus& aStatus);
|
sl@0
|
461 |
inline void CancelOtgVbusNotification();
|
sl@0
|
462 |
|
sl@0
|
463 |
inline void QueueOtgConnectionNotification(TOtgConnection& aCurrentConnection, TRequestStatus& aStatus);
|
sl@0
|
464 |
inline void CancelOtgConnectionNotification();
|
sl@0
|
465 |
|
sl@0
|
466 |
inline void QueueOtgStateNotification(TOtgState& aCurrentState, TRequestStatus& aStatus);
|
sl@0
|
467 |
inline void CancelOtgStateNotification();
|
sl@0
|
468 |
|
sl@0
|
469 |
inline TInt BusRequest();
|
sl@0
|
470 |
inline TInt BusRespondSrp();
|
sl@0
|
471 |
inline TInt BusDrop();
|
sl@0
|
472 |
inline TInt BusClearError();
|
sl@0
|
473 |
|
sl@0
|
474 |
#endif // !__KERNEL_MODE__
|
sl@0
|
475 |
};
|
sl@0
|
476 |
|
sl@0
|
477 |
#include <d32otgdi.inl>
|
sl@0
|
478 |
|
sl@0
|
479 |
#endif // D32OTGDI_H
|