1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/kernelhwsrv/kernel/eka/include/d32otgdi.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,479 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of the License "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @internalTechnology
1.22 + @prototype
1.23 +*/
1.24 +
1.25 +#ifndef D32OTGDI_H
1.26 +#define D32OTGDI_H
1.27 +
1.28 +#ifdef __KERNEL_MODE__
1.29 +# include <kernel/klib.h>
1.30 +# include <e32ver.h>
1.31 +#else
1.32 +# include <e32base.h>
1.33 +# include <e32ver.h>
1.34 +# include <e32debug.h>
1.35 +#endif
1.36 +
1.37 +#include <d32otgdi_errors.h>
1.38 +
1.39 +/**
1.40 +The bi-directional interface which USB Manager uses to talk to OTGDI about
1.41 +OTG related issues
1.42 +
1.43 +@note This API is only available to USBMAN, a restriction which is enforced
1.44 +by checking the SID of the calling process.
1.45 +*/
1.46 +NONSHARABLE_CLASS(RUsbOtgDriver) : public RBusLogicalChannel
1.47 + {
1.48 + friend class DUsbOtgDriver;
1.49 +
1.50 +public:
1.51 +
1.52 + // Version number history:
1.53 + //
1.54 + // PREQ1782 = 1.0
1.55 + // PREQ1305 = 1.1
1.56 +
1.57 + static const TInt KMajorVersionNumber = 1;
1.58 + static const TInt KMinorVersionNumber = 1;
1.59 +
1.60 +private:
1.61 +
1.62 + /**
1.63 + OTG Event, supplied in a form that will enable use as an array
1.64 + index (note also how this is used below in the bit-mask form,
1.65 + but that this is only extended to a few, other events are OTG
1.66 + internal and used only to drive the local state machine)
1.67 + */
1.68 + enum TOtgEventIndex
1.69 + {
1.70 + /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
1.71 + 'public' OTG events
1.72 + ** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1.73 +
1.74 + /**
1.75 + OTG events related to plug insertion or removal
1.76 + */
1.77 + EEventIndexAPlugInserted = 0,
1.78 + EEventIndexAPlugRemoved,
1.79 +
1.80 + /**
1.81 + OTG events relating to changes visible on the bus
1.82 + */
1.83 + EEventIndexVbusRaised,
1.84 + EEventIndexVbusDropped,
1.85 +
1.86 + EEventIndexSrpInitiated,
1.87 +
1.88 + EEventIndexSrpReceived,
1.89 + EEventIndexHnpEnabled,
1.90 + EEventIndexHnpDisabled,
1.91 + EEventIndexHnpSupported,
1.92 + EEventIndexHnpAltSupported,
1.93 +
1.94 + EEventIndexBusConnectionBusy,
1.95 + EEventIndexBusConnectionIdle,
1.96 +
1.97 + /**
1.98 + OTG events related to changes in the current role the device
1.99 + is performing (independant of the orientation of the connection)
1.100 + */
1.101 + EEventIndexRoleChangedToHost,
1.102 + EEventIndexRoleChangedToDevice,
1.103 + EEventIndexRoleChangedToIdle,
1.104 +
1.105 + /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
1.106 + 'private' OTG events - these are not converted to the bit-map form,
1.107 + but are used solely to stim the OTG state machine
1.108 + ** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1.109 +
1.110 + EEventIndexPrivateAfterThis,
1.111 +
1.112 + EEventIndexVbusError,
1.113 + EEventIndexClearVbusError,
1.114 +
1.115 + EEventIndexResetStateMachine,
1.116 +
1.117 + EEventIndexNoEvent,
1.118 +
1.119 + /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - **
1.120 + Single indicator used for array sizing
1.121 + ** - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
1.122 + EEventIndexNumEvents
1.123 + };
1.124 +
1.125 +public:
1.126 +
1.127 + /**
1.128 + OTG Events, supplied in a form that can be used to create a mask
1.129 + that can specify a watcher's events of interest.
1.130 + */
1.131 + enum TOtgEvent
1.132 + {
1.133 + /**
1.134 + * 'empty' dummy event
1.135 + */
1.136 + EEventNotValid = 0,
1.137 +
1.138 + /**
1.139 + OTG events related to plug insertion or removal
1.140 + */
1.141 + EEventAPlugInserted = ( 1 << EEventIndexAPlugInserted ),
1.142 + EEventAPlugRemoved = ( 1 << EEventIndexAPlugRemoved ),
1.143 +
1.144 + EEventGroupPlugChanges = ( EEventAPlugInserted
1.145 + |EEventAPlugRemoved
1.146 + ),
1.147 +
1.148 + /**
1.149 + OTG events relating to changes visible on the bus
1.150 + */
1.151 + EEventVbusRaised = ( 1 << EEventIndexVbusRaised ),
1.152 + EEventVbusDropped = ( 1 << EEventIndexVbusDropped ),
1.153 +
1.154 + EEventSrpInitiated = ( 1 << EEventIndexSrpInitiated ),
1.155 +
1.156 + EEventSrpReceived = ( 1 << EEventIndexSrpReceived ),
1.157 + EEventHnpEnabled = ( 1 << EEventIndexHnpEnabled ),
1.158 + EEventHnpDisabled = ( 1 << EEventIndexHnpDisabled ),
1.159 + EEventHnpSupported = ( 1 << EEventIndexHnpSupported ),
1.160 + EEventHnpAltSupported = ( 1 << EEventIndexHnpAltSupported ),
1.161 +
1.162 + EEventBusConnectionBusy = ( 1 << EEventIndexBusConnectionBusy ),
1.163 + EEventBusConnectionIdle = ( 1 << EEventIndexBusConnectionIdle ),
1.164 +
1.165 + EEventGroupBusChanges = ( EEventVbusRaised
1.166 + |EEventVbusDropped
1.167 + |EEventSrpInitiated
1.168 + |EEventSrpReceived
1.169 + |EEventHnpEnabled
1.170 + |EEventHnpDisabled
1.171 + |EEventHnpSupported
1.172 + |EEventHnpAltSupported
1.173 + |EEventBusConnectionBusy
1.174 + |EEventBusConnectionIdle
1.175 + ),
1.176 +
1.177 + /**
1.178 + OTG events related to changes in the current role the device
1.179 + is performing (independant of the orientation of the connection)
1.180 + */
1.181 + EEventRoleChangedToHost = ( 1 << EEventIndexRoleChangedToHost ),
1.182 + EEventRoleChangedToDevice = ( 1 << EEventIndexRoleChangedToDevice ),
1.183 + EEventRoleChangedToIdle = ( 1 << EEventIndexRoleChangedToIdle ),
1.184 +
1.185 + EEventGroupRoleChanges = ( EEventRoleChangedToHost
1.186 + |EEventRoleChangedToDevice
1.187 + |EEventRoleChangedToIdle
1.188 + ),
1.189 +
1.190 + /**
1.191 + Helpful macro to allow users to register for 'everything'
1.192 + */
1.193 + EEventGroupAll = ( EEventGroupPlugChanges
1.194 + |EEventGroupBusChanges
1.195 + |EEventGroupRoleChanges
1.196 + )
1.197 + };
1.198 +
1.199 +private:
1.200 +
1.201 + /**
1.202 + OTG State, supplied in a form that will enable use as an array
1.203 + index (note also how this is used below in the bit-mask form)
1.204 + */
1.205 + enum TOtgStateIndex
1.206 + {
1.207 + /**
1.208 + Single case of non-stable state, used only during
1.209 + startup
1.210 + */
1.211 + EStateIndexReset = 0,
1.212 +
1.213 + /**
1.214 + 'A'-connection states (names are derived from OTG-Supplement
1.215 + Figure 6-2 On-The-Go A-Device State Diagram)
1.216 + */
1.217 + EStateIndexAIdle,
1.218 + EStateIndexAHost,
1.219 + EStateIndexAPeripheral,
1.220 + EStateIndexAVbusError,
1.221 +
1.222 + /**
1.223 + 'B'-connection states (names are derived from OTG-Supplement
1.224 + Figure 6-3 On-The-Go B-Device State Diagram)
1.225 + */
1.226 + EStateIndexBIdle,
1.227 + EStateIndexBPeripheral,
1.228 + EStateIndexBHost,
1.229 +
1.230 + /**
1.231 + Single indicator used for array sizing
1.232 + */
1.233 + EStateIndexNumStates
1.234 + };
1.235 +
1.236 +public:
1.237 +
1.238 + /**
1.239 + OTG State, supplied in a form that can be used to create a mask
1.240 + that can specify a watcher's states of interest.
1.241 + */
1.242 + enum TOtgState
1.243 + {
1.244 + /**
1.245 + * 'empty' dummy state
1.246 + */
1.247 + EStateNotValid = 0,
1.248 +
1.249 + /**
1.250 + Single case of non-stable state, used only during
1.251 + startup
1.252 + */
1.253 + EStateReset = ( 1 << EStateIndexReset ),
1.254 +
1.255 + /**
1.256 + 'A'-connection states (names are derived from OTG-Supplement
1.257 + Figure 6-2 On-The-Go A-Device State Diagram)
1.258 + */
1.259 + EStateAIdle = ( 1 << EStateIndexAIdle ),
1.260 + EStateAHost = ( 1 << EStateIndexAHost ),
1.261 + EStateAPeripheral = ( 1 << EStateIndexAPeripheral ),
1.262 + EStateAVbusError = ( 1 << EStateIndexAVbusError ),
1.263 +
1.264 + EStateAllA = ( EStateAIdle
1.265 + |EStateAHost
1.266 + |EStateAPeripheral
1.267 + |EStateAVbusError
1.268 + ),
1.269 +
1.270 + EStateAllAExceptBusError = ( EStateAIdle
1.271 + |EStateAHost
1.272 + |EStateAPeripheral
1.273 + ),
1.274 +
1.275 + /**
1.276 + 'B'-connection states (names are derived from OTG-Supplement
1.277 + Figure 6-3 On-The-Go B-Device State Diagram)
1.278 + */
1.279 + EStateBIdle = ( 1 << EStateIndexBIdle ),
1.280 + EStateBPeripheral = ( 1 << EStateIndexBPeripheral ),
1.281 + EStateBHost = ( 1 << EStateIndexBHost ),
1.282 +
1.283 + EStateAllB = ( EStateBIdle
1.284 + |EStateBPeripheral
1.285 + |EStateBHost
1.286 + )
1.287 + };
1.288 +
1.289 +public:
1.290 +
1.291 + /**
1.292 + OTG Messages, these can be retrieved to satisfy the OTG Supplement
1.293 + "No Silent Failures" requirement.
1.294 +
1.295 + The error numbers are derived for constants set up in d32otgdi_error.h
1.296 + and are used here so that the enumerator can be used to enforce compiler
1.297 + checks on the functions that handle the messages.
1.298 +
1.299 + Note that this minimal set of message events only contains the few
1.300 + things that are reported by the USB OTG Stack: it is expected that
1.301 + these will be merged into a composite message event flow by USBMAN
1.302 + */
1.303 + enum TOtgMessage
1.304 + {
1.305 + /**
1.306 + Internal OTGDI errors must also be offered to USBMAN in order to
1.307 + fully support the "No Silent Failures" policy
1.308 + */
1.309 + EEventQueueOverflow = KErrUsbOtgEventQueueOverflow,
1.310 + EStateQueueOverflow = KErrUsbOtgStateQueueOverflow,
1.311 + EMessageQueueOverflow = KErrUsbOtgMessageQueueOverflow,
1.312 +
1.313 + EMessageBadState = KErrUsbOtgBadState,
1.314 +
1.315 + /**
1.316 + Errors relating to attempts to do wrong things to VBUS
1.317 + */
1.318 + EMessageStackNotStarted = KErrUsbOtgStackNotStarted,
1.319 + EMessageVbusAlreadyRaised = KErrUsbOtgVbusAlreadyRaised,
1.320 + EMessageSrpForbidden = KErrUsbOtgSrpForbidden,
1.321 +
1.322 + /**
1.323 + Generic message that there has been some form of problem in
1.324 + the lower-level USB OTG stack's calls
1.325 + */
1.326 + EMessageBusControlProblem = KErrUsbOtgBusControlProblem,
1.327 +
1.328 + /**
1.329 + Generic message that there has been a reportable failure in sending
1.330 + the B_HNP_ENABLE SetFeature command
1.331 + */
1.332 + EMessageHnpEnableProblem = KErrUsbOtgHnpEnableProblem,
1.333 +
1.334 + /**
1.335 + Peripheral reported as 'not-supported'
1.336 + */
1.337 + EMessagePeriphNotSupported = KErrUsbOtgPeriphNotSupported,
1.338 +
1.339 + /**
1.340 + Individual error messages
1.341 + */
1.342 + EMessageVbusError = KErrUsbOtgVbusError,
1.343 + EMessageSrpTimeout = KErrUsbOtgSrpTimeout,
1.344 + EMessageSrpActive = KErrUsbOtgSrpActive,
1.345 + EMessageSrpNotPermitted = KErrUsbOtgSrpNotPermitted,
1.346 + EMessageHnpNotPermitted = KErrUsbOtgHnpNotPermitted,
1.347 + EMessageHnpNotEnabled = KErrUsbOtgHnpNotEnabled,
1.348 + EMessageHnpNotSuspended = KErrUsbOtgHnpNotSuspended,
1.349 + EMessageVbusPowerUpNotPermitted = KErrUsbOtgVbusPowerUpNotPermitted,
1.350 + EMessageVbusPowerUpError = KErrUsbOtgVbusPowerUpError,
1.351 + EMessageVbusPowerDownNotPermitted = KErrUsbOtgVbusPowerDownNotPermitted,
1.352 + EMessageVbusClearErrorNotPermitted = KErrUsbOtgVbusClearErrorNotPermitted,
1.353 + EMessageHnpNotResponding = KErrUsbOtgHnpNotResponding,
1.354 + EMessageHnpBusDrop = KErrUsbOtgHnpBusDrop
1.355 + };
1.356 +
1.357 +public:
1.358 +
1.359 + /**
1.360 + Set of OTG operations required for use of the User-Kernel channel
1.361 + */
1.362 + enum TOtgRequest
1.363 + {
1.364 + EQueueOtgEventRequest = 0,
1.365 + EQueueOtgStateRequest,
1.366 + EQueueOtgMessageRequest,
1.367 +
1.368 + EQueueOtgIdPinNotification,
1.369 + EQueueOtgVbusNotification,
1.370 + EQueueOtgConnectionNotification,
1.371 + EQueueOtgStateNotification,
1.372 + };
1.373 +
1.374 + enum TOtgControl
1.375 + {
1.376 + EActivateOptTestMode = 0,
1.377 +
1.378 + EStartStacks,
1.379 + EStopStacks,
1.380 +
1.381 + ECancelOtgEventRequest,
1.382 + ECancelOtgStateRequest,
1.383 + ECancelOtgMessageRequest,
1.384 +
1.385 + ECancelOtgIdPinNotification,
1.386 + ECancelOtgVbusNotification,
1.387 + ECancelOtgConnectionNotification,
1.388 + ECancelOtgStateNotification,
1.389 +
1.390 + EBusRequest,
1.391 + EBusRespondSrp,
1.392 + EBusDrop,
1.393 + EBusClearError
1.394 + };
1.395 +
1.396 + /**
1.397 + ID-Pin possible states (note that this is not a plain boolean, to
1.398 + allow for future expansion to cover car-kit - if this is needed, then
1.399 + a new enum value of 'EIdPinCarKit' should be inserted)
1.400 + */
1.401 + enum TOtgIdPin
1.402 + {
1.403 + EIdPinAPlug = 0,
1.404 + EIdPinBPlug,
1.405 +
1.406 + // deprecated EIdPinCarKit - to be removed after OTGDI reaches MCL
1.407 +
1.408 + EIdPinCarKit,
1.409 +
1.410 + EIdPinUnknown
1.411 + };
1.412 +
1.413 + /**
1.414 + VBUS voltage level possible states (as detected from an OTG transceiver)
1.415 + */
1.416 + enum TOtgVbus
1.417 + {
1.418 + EVbusHigh = 0,
1.419 + EVbusLow,
1.420 +
1.421 + EVbusUnknown
1.422 + };
1.423 +
1.424 + /**
1.425 + Connection 'Idle' indicator (potential to drop VBUS)
1.426 + */
1.427 + enum TOtgConnection
1.428 + {
1.429 + EConnectionBusy = 0,
1.430 + EConnectionIdle,
1.431 +
1.432 + EConnectionUnknown
1.433 + };
1.434 +
1.435 +public:
1.436 +
1.437 + inline static const TDesC& Name();
1.438 + inline static TVersion VersionRequired();
1.439 +
1.440 +#ifndef __KERNEL_MODE__
1.441 +
1.442 +public:
1.443 +
1.444 + inline TInt Open();
1.445 +
1.446 + inline TInt ActivateOptTestMode();
1.447 +
1.448 + inline TInt StartStacks();
1.449 + inline void StopStacks();
1.450 +
1.451 + inline void QueueOtgEventRequest(TOtgEvent& aOldestEvent, TRequestStatus& aStatus);
1.452 + inline void CancelOtgEventRequest();
1.453 +
1.454 + inline void QueueOtgStateRequest(TOtgState& aState, TRequestStatus& aStatus);
1.455 + inline void CancelOtgStateRequest();
1.456 +
1.457 + inline void QueueOtgMessageRequest(TOtgMessage& aMessage, TRequestStatus& aStatus);
1.458 + inline void CancelOtgMessageRequest();
1.459 +
1.460 + inline void QueueOtgIdPinNotification(TOtgIdPin& aCurrentIdPin, TRequestStatus& aStatus);
1.461 + inline void CancelOtgIdPinNotification();
1.462 +
1.463 + inline void QueueOtgVbusNotification(TOtgVbus& aCurrentVbus, TRequestStatus& aStatus);
1.464 + inline void CancelOtgVbusNotification();
1.465 +
1.466 + inline void QueueOtgConnectionNotification(TOtgConnection& aCurrentConnection, TRequestStatus& aStatus);
1.467 + inline void CancelOtgConnectionNotification();
1.468 +
1.469 + inline void QueueOtgStateNotification(TOtgState& aCurrentState, TRequestStatus& aStatus);
1.470 + inline void CancelOtgStateNotification();
1.471 +
1.472 + inline TInt BusRequest();
1.473 + inline TInt BusRespondSrp();
1.474 + inline TInt BusDrop();
1.475 + inline TInt BusClearError();
1.476 +
1.477 +#endif // !__KERNEL_MODE__
1.478 + };
1.479 +
1.480 +#include <d32otgdi.inl>
1.481 +
1.482 +#endif // D32OTGDI_H