First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 #ifdef __KERNEL_MODE__
26 # include <kernel/klib.h>
31 # include <e32debug.h>
34 #include <d32otgdi_errors.h>
37 The bi-directional interface which USB Manager uses to talk to OTGDI about
40 @note This API is only available to USBMAN, a restriction which is enforced
41 by checking the SID of the calling process.
43 NONSHARABLE_CLASS(RUsbOtgDriver) : public RBusLogicalChannel
45 friend class DUsbOtgDriver;
49 // Version number history:
54 static const TInt KMajorVersionNumber = 1;
55 static const TInt KMinorVersionNumber = 1;
60 OTG Event, supplied in a form that will enable use as an array
61 index (note also how this is used below in the bit-mask form,
62 but that this is only extended to a few, other events are OTG
63 internal and used only to drive the local state machine)
67 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
69 ** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
72 OTG events related to plug insertion or removal
74 EEventIndexAPlugInserted = 0,
75 EEventIndexAPlugRemoved,
78 OTG events relating to changes visible on the bus
80 EEventIndexVbusRaised,
81 EEventIndexVbusDropped,
83 EEventIndexSrpInitiated,
85 EEventIndexSrpReceived,
86 EEventIndexHnpEnabled,
87 EEventIndexHnpDisabled,
88 EEventIndexHnpSupported,
89 EEventIndexHnpAltSupported,
91 EEventIndexBusConnectionBusy,
92 EEventIndexBusConnectionIdle,
95 OTG events related to changes in the current role the device
96 is performing (independant of the orientation of the connection)
98 EEventIndexRoleChangedToHost,
99 EEventIndexRoleChangedToDevice,
100 EEventIndexRoleChangedToIdle,
102 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
103 'private' OTG events - these are not converted to the bit-map form,
104 but are used solely to stim the OTG state machine
105 ** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
107 EEventIndexPrivateAfterThis,
109 EEventIndexVbusError,
110 EEventIndexClearVbusError,
112 EEventIndexResetStateMachine,
116 /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
117 Single indicator used for array sizing
118 ** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
125 OTG Events, supplied in a form that can be used to create a mask
126 that can specify a watcher's events of interest.
131 * 'empty' dummy event
136 OTG events related to plug insertion or removal
138 EEventAPlugInserted = ( 1 << EEventIndexAPlugInserted ),
139 EEventAPlugRemoved = ( 1 << EEventIndexAPlugRemoved ),
141 EEventGroupPlugChanges = ( EEventAPlugInserted
146 OTG events relating to changes visible on the bus
148 EEventVbusRaised = ( 1 << EEventIndexVbusRaised ),
149 EEventVbusDropped = ( 1 << EEventIndexVbusDropped ),
151 EEventSrpInitiated = ( 1 << EEventIndexSrpInitiated ),
153 EEventSrpReceived = ( 1 << EEventIndexSrpReceived ),
154 EEventHnpEnabled = ( 1 << EEventIndexHnpEnabled ),
155 EEventHnpDisabled = ( 1 << EEventIndexHnpDisabled ),
156 EEventHnpSupported = ( 1 << EEventIndexHnpSupported ),
157 EEventHnpAltSupported = ( 1 << EEventIndexHnpAltSupported ),
159 EEventBusConnectionBusy = ( 1 << EEventIndexBusConnectionBusy ),
160 EEventBusConnectionIdle = ( 1 << EEventIndexBusConnectionIdle ),
162 EEventGroupBusChanges = ( EEventVbusRaised
169 |EEventHnpAltSupported
170 |EEventBusConnectionBusy
171 |EEventBusConnectionIdle
175 OTG events related to changes in the current role the device
176 is performing (independant of the orientation of the connection)
178 EEventRoleChangedToHost = ( 1 << EEventIndexRoleChangedToHost ),
179 EEventRoleChangedToDevice = ( 1 << EEventIndexRoleChangedToDevice ),
180 EEventRoleChangedToIdle = ( 1 << EEventIndexRoleChangedToIdle ),
182 EEventGroupRoleChanges = ( EEventRoleChangedToHost
183 |EEventRoleChangedToDevice
184 |EEventRoleChangedToIdle
188 Helpful macro to allow users to register for 'everything'
190 EEventGroupAll = ( EEventGroupPlugChanges
191 |EEventGroupBusChanges
192 |EEventGroupRoleChanges
199 OTG State, supplied in a form that will enable use as an array
200 index (note also how this is used below in the bit-mask form)
205 Single case of non-stable state, used only during
208 EStateIndexReset = 0,
211 'A'-connection states (names are derived from OTG-Supplement
212 Figure 6-2 On-The-Go A-Device State Diagram)
216 EStateIndexAPeripheral,
217 EStateIndexAVbusError,
220 'B'-connection states (names are derived from OTG-Supplement
221 Figure 6-3 On-The-Go B-Device State Diagram)
224 EStateIndexBPeripheral,
228 Single indicator used for array sizing
236 OTG State, supplied in a form that can be used to create a mask
237 that can specify a watcher's states of interest.
242 * 'empty' dummy state
247 Single case of non-stable state, used only during
250 EStateReset = ( 1 << EStateIndexReset ),
253 'A'-connection states (names are derived from OTG-Supplement
254 Figure 6-2 On-The-Go A-Device State Diagram)
256 EStateAIdle = ( 1 << EStateIndexAIdle ),
257 EStateAHost = ( 1 << EStateIndexAHost ),
258 EStateAPeripheral = ( 1 << EStateIndexAPeripheral ),
259 EStateAVbusError = ( 1 << EStateIndexAVbusError ),
261 EStateAllA = ( EStateAIdle
267 EStateAllAExceptBusError = ( EStateAIdle
273 'B'-connection states (names are derived from OTG-Supplement
274 Figure 6-3 On-The-Go B-Device State Diagram)
276 EStateBIdle = ( 1 << EStateIndexBIdle ),
277 EStateBPeripheral = ( 1 << EStateIndexBPeripheral ),
278 EStateBHost = ( 1 << EStateIndexBHost ),
280 EStateAllB = ( EStateBIdle
289 OTG Messages, these can be retrieved to satisfy the OTG Supplement
290 "No Silent Failures" requirement.
292 The error numbers are derived for constants set up in d32otgdi_error.h
293 and are used here so that the enumerator can be used to enforce compiler
294 checks on the functions that handle the messages.
296 Note that this minimal set of message events only contains the few
297 things that are reported by the USB OTG Stack: it is expected that
298 these will be merged into a composite message event flow by USBMAN
303 Internal OTGDI errors must also be offered to USBMAN in order to
304 fully support the "No Silent Failures" policy
306 EEventQueueOverflow = KErrUsbOtgEventQueueOverflow,
307 EStateQueueOverflow = KErrUsbOtgStateQueueOverflow,
308 EMessageQueueOverflow = KErrUsbOtgMessageQueueOverflow,
310 EMessageBadState = KErrUsbOtgBadState,
313 Errors relating to attempts to do wrong things to VBUS
315 EMessageStackNotStarted = KErrUsbOtgStackNotStarted,
316 EMessageVbusAlreadyRaised = KErrUsbOtgVbusAlreadyRaised,
317 EMessageSrpForbidden = KErrUsbOtgSrpForbidden,
320 Generic message that there has been some form of problem in
321 the lower-level USB OTG stack's calls
323 EMessageBusControlProblem = KErrUsbOtgBusControlProblem,
326 Generic message that there has been a reportable failure in sending
327 the B_HNP_ENABLE SetFeature command
329 EMessageHnpEnableProblem = KErrUsbOtgHnpEnableProblem,
332 Peripheral reported as 'not-supported'
334 EMessagePeriphNotSupported = KErrUsbOtgPeriphNotSupported,
337 Individual error messages
339 EMessageVbusError = KErrUsbOtgVbusError,
340 EMessageSrpTimeout = KErrUsbOtgSrpTimeout,
341 EMessageSrpActive = KErrUsbOtgSrpActive,
342 EMessageSrpNotPermitted = KErrUsbOtgSrpNotPermitted,
343 EMessageHnpNotPermitted = KErrUsbOtgHnpNotPermitted,
344 EMessageHnpNotEnabled = KErrUsbOtgHnpNotEnabled,
345 EMessageHnpNotSuspended = KErrUsbOtgHnpNotSuspended,
346 EMessageVbusPowerUpNotPermitted = KErrUsbOtgVbusPowerUpNotPermitted,
347 EMessageVbusPowerUpError = KErrUsbOtgVbusPowerUpError,
348 EMessageVbusPowerDownNotPermitted = KErrUsbOtgVbusPowerDownNotPermitted,
349 EMessageVbusClearErrorNotPermitted = KErrUsbOtgVbusClearErrorNotPermitted,
350 EMessageHnpNotResponding = KErrUsbOtgHnpNotResponding,
351 EMessageHnpBusDrop = KErrUsbOtgHnpBusDrop
357 Set of OTG operations required for use of the User-Kernel channel
361 EQueueOtgEventRequest = 0,
362 EQueueOtgStateRequest,
363 EQueueOtgMessageRequest,
365 EQueueOtgIdPinNotification,
366 EQueueOtgVbusNotification,
367 EQueueOtgConnectionNotification,
368 EQueueOtgStateNotification,
373 EActivateOptTestMode = 0,
378 ECancelOtgEventRequest,
379 ECancelOtgStateRequest,
380 ECancelOtgMessageRequest,
382 ECancelOtgIdPinNotification,
383 ECancelOtgVbusNotification,
384 ECancelOtgConnectionNotification,
385 ECancelOtgStateNotification,
394 ID-Pin possible states (note that this is not a plain boolean, to
395 allow for future expansion to cover car-kit - if this is needed, then
396 a new enum value of 'EIdPinCarKit' should be inserted)
403 // deprecated EIdPinCarKit - to be removed after OTGDI reaches MCL
411 VBUS voltage level possible states (as detected from an OTG transceiver)
422 Connection 'Idle' indicator (potential to drop VBUS)
434 inline static const TDesC& Name();
435 inline static TVersion VersionRequired();
437 #ifndef __KERNEL_MODE__
443 inline TInt ActivateOptTestMode();
445 inline TInt StartStacks();
446 inline void StopStacks();
448 inline void QueueOtgEventRequest(TOtgEvent& aOldestEvent, TRequestStatus& aStatus);
449 inline void CancelOtgEventRequest();
451 inline void QueueOtgStateRequest(TOtgState& aState, TRequestStatus& aStatus);
452 inline void CancelOtgStateRequest();
454 inline void QueueOtgMessageRequest(TOtgMessage& aMessage, TRequestStatus& aStatus);
455 inline void CancelOtgMessageRequest();
457 inline void QueueOtgIdPinNotification(TOtgIdPin& aCurrentIdPin, TRequestStatus& aStatus);
458 inline void CancelOtgIdPinNotification();
460 inline void QueueOtgVbusNotification(TOtgVbus& aCurrentVbus, TRequestStatus& aStatus);
461 inline void CancelOtgVbusNotification();
463 inline void QueueOtgConnectionNotification(TOtgConnection& aCurrentConnection, TRequestStatus& aStatus);
464 inline void CancelOtgConnectionNotification();
466 inline void QueueOtgStateNotification(TOtgState& aCurrentState, TRequestStatus& aStatus);
467 inline void CancelOtgStateNotification();
469 inline TInt BusRequest();
470 inline TInt BusRespondSrp();
471 inline TInt BusDrop();
472 inline TInt BusClearError();
474 #endif // !__KERNEL_MODE__
477 #include <d32otgdi.inl>