author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
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 |
@internalComponent |
sl@0 | 19 |
*/ |
sl@0 | 20 |
|
sl@0 | 21 |
#ifndef OTGDI_H |
sl@0 | 22 |
#define OTGDI_H |
sl@0 | 23 |
|
sl@0 | 24 |
class DUsbOtgDriver; |
sl@0 | 25 |
|
sl@0 | 26 |
/** |
sl@0 | 27 |
OTGDI is designed to be called solely from USBMAN |
sl@0 | 28 |
*/ |
sl@0 | 29 |
const TUint32 KUsbmanSvrUid = {0x101FE1DB}; |
sl@0 | 30 |
|
sl@0 | 31 |
/** |
sl@0 | 32 |
Logical Device (Factory Class) for USB OTG Driver |
sl@0 | 33 |
*/ |
sl@0 | 34 |
class DUsbOtgDriverFactory : public DLogicalDevice |
sl@0 | 35 |
{ |
sl@0 | 36 |
public: |
sl@0 | 37 |
|
sl@0 | 38 |
DUsbOtgDriverFactory(); |
sl@0 | 39 |
~DUsbOtgDriverFactory(); |
sl@0 | 40 |
|
sl@0 | 41 |
// Inherited from DLogicalDevice |
sl@0 | 42 |
|
sl@0 | 43 |
virtual TInt Install(); |
sl@0 | 44 |
virtual void GetCaps( TDes8& aDes ) const; |
sl@0 | 45 |
virtual TInt Create( DLogicalChannelBase*& aChannel ); |
sl@0 | 46 |
}; |
sl@0 | 47 |
|
sl@0 | 48 |
/** |
sl@0 | 49 |
Communication Channel between User and Kernel for USB OTG Driver |
sl@0 | 50 |
*/ |
sl@0 | 51 |
class DUsbOtgDriverChannel : public DLogicalChannel |
sl@0 | 52 |
{ |
sl@0 | 53 |
public: |
sl@0 | 54 |
|
sl@0 | 55 |
DUsbOtgDriverChannel(); |
sl@0 | 56 |
virtual ~DUsbOtgDriverChannel(); |
sl@0 | 57 |
|
sl@0 | 58 |
// Inherited from DObject |
sl@0 | 59 |
|
sl@0 | 60 |
virtual TInt DoCreate( TInt aUnit, const TDesC8* anInfo, const TVersion& aVer ); |
sl@0 | 61 |
|
sl@0 | 62 |
// Inherited from DLogicalChannel |
sl@0 | 63 |
|
sl@0 | 64 |
virtual void HandleMsg( TMessageBase* aMsg ); |
sl@0 | 65 |
virtual TInt SendMsg(TMessageBase* aMsg); |
sl@0 | 66 |
|
sl@0 | 67 |
private: |
sl@0 | 68 |
|
sl@0 | 69 |
// Implementation for the different kinds of messages sent through RBusLogicalChannel |
sl@0 | 70 |
|
sl@0 | 71 |
TInt DoControl( TInt aFunction, TAny* a1, TAny* a2 ); |
sl@0 | 72 |
TInt DoRequest( TInt aReqNo, TRequestStatus* aStatus, TAny* a1, TAny* a2 ); |
sl@0 | 73 |
void DoCancel( TUint aMask ); |
sl@0 | 74 |
TInt SendRequest(TMessageBase* aMsg); |
sl@0 | 75 |
|
sl@0 | 76 |
private: |
sl@0 | 77 |
|
sl@0 | 78 |
// Stack lock/unlock protected methods |
sl@0 | 79 |
|
sl@0 | 80 |
TInt ProtectedControl( TInt aFunction ); |
sl@0 | 81 |
|
sl@0 | 82 |
private: |
sl@0 | 83 |
|
sl@0 | 84 |
DUsbOtgDriver* iOtgDriver; |
sl@0 | 85 |
DThread* iClient; |
sl@0 | 86 |
}; |
sl@0 | 87 |
|
sl@0 | 88 |
#endif // OTGDI_H |