Update contrib.
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.
27 OTGDI is designed to be called solely from USBMAN
29 const TUint32 KUsbmanSvrUid = {0x101FE1DB};
32 Logical Device (Factory Class) for USB OTG Driver
34 class DUsbOtgDriverFactory : public DLogicalDevice
38 DUsbOtgDriverFactory();
39 ~DUsbOtgDriverFactory();
41 // Inherited from DLogicalDevice
43 virtual TInt Install();
44 virtual void GetCaps( TDes8& aDes ) const;
45 virtual TInt Create( DLogicalChannelBase*& aChannel );
49 Communication Channel between User and Kernel for USB OTG Driver
51 class DUsbOtgDriverChannel : public DLogicalChannel
55 DUsbOtgDriverChannel();
56 virtual ~DUsbOtgDriverChannel();
58 // Inherited from DObject
60 virtual TInt DoCreate( TInt aUnit, const TDesC8* anInfo, const TVersion& aVer );
62 // Inherited from DLogicalChannel
64 virtual void HandleMsg( TMessageBase* aMsg );
65 virtual TInt SendMsg(TMessageBase* aMsg);
69 // Implementation for the different kinds of messages sent through RBusLogicalChannel
71 TInt DoControl( TInt aFunction, TAny* a1, TAny* a2 );
72 TInt DoRequest( TInt aReqNo, TRequestStatus* aStatus, TAny* a1, TAny* a2 );
73 void DoCancel( TUint aMask );
74 TInt SendRequest(TMessageBase* aMsg);
78 // Stack lock/unlock protected methods
80 TInt ProtectedControl( TInt aFunction );
84 DUsbOtgDriver* iOtgDriver;