sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef D32USBDI_HUBDRIVER_H sl@0: #define D32USBDI_HUBDRIVER_H sl@0: sl@0: #ifdef __KERNEL_MODE__ sl@0: #include sl@0: #else sl@0: #include sl@0: #include sl@0: #include sl@0: #endif sl@0: sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: @file sl@0: @internalComponent sl@0: @prototype sl@0: */ sl@0: sl@0: /*****************************************************************************/ sl@0: /* */ sl@0: /* Interface classes */ sl@0: /* */ sl@0: /*****************************************************************************/ sl@0: sl@0: class RUsbDevice; sl@0: sl@0: /** sl@0: Functions which act on the local hub driver. Higher level components cannot determine which host controller is in sl@0: use, although the presence of Other Speed descriptors may give some hints. sl@0: sl@0: @note This API is only available to the function driver framework, a restriction which is enforced by checking the sl@0: SID of the calling process. sl@0: */ sl@0: class RUsbHubDriver : public RBusLogicalChannel sl@0: { sl@0: public: sl@0: enum TUsbHubDriverRequest sl@0: { sl@0: EWaitForBusEvent, sl@0: }; sl@0: enum TUsbHubDriverControl sl@0: { sl@0: EStartHost, sl@0: EStopHost, sl@0: }; sl@0: enum TUsbHubDriverCancel sl@0: { sl@0: ECancelWaitForBusEvent = 0x00000001, sl@0: }; sl@0: sl@0: class TBusEvent sl@0: { sl@0: public: sl@0: enum TEvent sl@0: { sl@0: ENoEvent, sl@0: EDeviceAttached, sl@0: EDeviceRemoved, sl@0: EDevMonEvent sl@0: }; sl@0: sl@0: public: sl@0: TEvent iEventType; sl@0: TUint iDeviceHandle; sl@0: TInt iError; sl@0: TInt iReason; // When iEventType == EDevMonEvent, this may hold additional details of the reason for the notification sl@0: }; sl@0: sl@0: #ifndef __KERNEL_MODE__ sl@0: friend class RUsbDevice; sl@0: public: sl@0: inline TInt Open(); sl@0: inline TInt StartHost(); sl@0: inline void StopHost(); sl@0: sl@0: inline void WaitForBusEvent(TBusEvent& aEvent, TRequestStatus& aRequest); sl@0: inline void CancelWaitForBusEvent(); sl@0: sl@0: #endif sl@0: sl@0: inline static const TDesC& Name(); sl@0: inline static TVersion VersionRequired(); sl@0: }; sl@0: sl@0: sl@0: /** sl@0: Use restricted to the Function Driver Framework, enforced by SID. sl@0: Provides a means to examine the configuration descriptor, and so load appropriate Function Drivers. sl@0: */ sl@0: class RUsbDevice sl@0: { sl@0: public: sl@0: enum TUsbDeviceRequest sl@0: { sl@0: EDeviceRequest = 0x4000000, // start at 0x4000000 to differentiate from other requests sl@0: EDeviceStateChange, sl@0: }; sl@0: enum TUsbDeviceControl sl@0: { sl@0: EDeviceControl = 0x4000000, // start at 0x4000000 to differentiate from other controls sl@0: EOpen, sl@0: EClose, sl@0: EGetDeviceDescriptor, sl@0: EGetConfigurationDescriptorSize, sl@0: EGetConfigurationDescriptor, sl@0: EGetStringDescriptor, sl@0: EGetInterfaceToken, sl@0: ESuspend, sl@0: EResume, sl@0: ECancelDeviceStateChange, sl@0: }; sl@0: sl@0: enum TDeviceState sl@0: { sl@0: EDeviceActive, sl@0: EDeviceSuspended, sl@0: EDeviceTriState, sl@0: }; sl@0: sl@0: class TInterfaceTokenParameters sl@0: { sl@0: public: sl@0: TInt iInterfaceNumber; sl@0: TUint32* iToken; sl@0: }; sl@0: sl@0: class TStringDescParams sl@0: { sl@0: public: sl@0: TDes8* iTarget; sl@0: TInt iIndex; sl@0: TInt iLangId; sl@0: }; sl@0: sl@0: #ifndef __KERNEL_MODE__ sl@0: public: sl@0: inline RUsbDevice(); sl@0: sl@0: inline TInt Open(RUsbHubDriver& aHub, TUint aHandle); sl@0: inline void Close(); sl@0: sl@0: inline void QueueDeviceStateChangeNotification(TDeviceState& aCurrentState, TRequestStatus& aRequest); sl@0: inline void CancelDeviceStateChangeNotification(); sl@0: inline TUint Handle() const; sl@0: inline TInt GetTokenForInterface(TInt aInterfaceNumber, TUint32& aToken); sl@0: sl@0: inline TInt Suspend(); sl@0: inline TInt Resume(); sl@0: sl@0: inline TInt GetDeviceDescriptor(TUsbDeviceDescriptor& aDescriptor); sl@0: inline TInt GetConfigurationDescriptor(TUsbConfigurationDescriptor& aDescriptor); sl@0: inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex); sl@0: inline TInt GetStringDescriptor(TUsbStringDescriptor*& aDescriptor, TDes8& aTarget, TInt aIndex, TInt aLangId); sl@0: sl@0: private: // Internal function overloads sl@0: inline TInt GetDeviceDescriptor(TDes8& aDeviceDesc); sl@0: inline TInt GetConfigurationDescriptorSize(TInt& aConfigDescSize); sl@0: inline TInt GetConfigurationDescriptor(TDes8& aConfigDesc); sl@0: inline TInt GetStringDescriptor(TDes8& aStringDescriptor, TInt aIndex, TInt aLangId =0); sl@0: sl@0: private: sl@0: inline void GetLocalDescriptorsL(); sl@0: inline TInt ParseStringDescriptor(TUsbStringDescriptor*& aDescriptor, const TDesC8& aData); sl@0: sl@0: private: sl@0: TUsbDeviceDescriptor* iHeadDeviceDescriptor; sl@0: TUsbConfigurationDescriptor* iHeadConfDescriptor; sl@0: sl@0: static const TUint KDeviceDescriptorSize = 18; sl@0: TBuf8 iDeviceDescriptorData; sl@0: HBufC8* iConfigurationDescriptorData; sl@0: sl@0: private: sl@0: RUsbHubDriver* iHub; sl@0: TUint iHandle; sl@0: sl@0: #endif sl@0: }; sl@0: sl@0: sl@0: #include sl@0: sl@0: sl@0: #endif // D32USBDI_HUBDRIVER_H