sl@0: // Copyright (c) 2008-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: // e32\include\d32usbcsc.h sl@0: // User side class definitions for USB Device support. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file d32usbcsc.h sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: sl@0: #ifndef __D32USBCSC_H__ sl@0: #define __D32USBCSC_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: /** This means that SetInterface was called after RealizeInterface had been called. sl@0: RealizeInterface is meant to signal that all interfaces have been set. sl@0: */ sl@0: const TInt KErrUsbAlreadyRealized = -6813; //Changed from -6713 for future compatibility with the d32usbcshared.h file sl@0: sl@0: const TInt KErrAlternateSettingChanged = -6814; sl@0: sl@0: sl@0: const TUint KChunkCellSize = 1; //1 32 bit integer sl@0: const TInt KEpDescPacketSizeOffset = 4; sl@0: sl@0: /** The user side enpoint number of Endpoint Zero. */ sl@0: const TInt KEp0Number = 0; sl@0: sl@0: /* Used in TUsbcScHdrEndpointRecord to describe the endpoint type sl@0: */ sl@0: sl@0: const TUint8 KUsbScHdrEpDirectionIn=1; sl@0: const TUint8 KUsbScHdrEpDirectionOut=2; sl@0: const TUint8 KUsbScHdrEpDirectionBiDir=3; sl@0: sl@0: sl@0: const TUint8 KUsbScHdrEpTypeControl = 0; sl@0: const TUint8 KUsbScHdrEpTypeIsochronous =1; sl@0: const TUint8 KUsbScHdrEpTypeBulk = 2; sl@0: const TUint8 KUsbScHdrEpTypeInterrupt = 3; sl@0: const TUint8 KUsbScHdrEpTypeUnknown = ~0; sl@0: /** Used in the the Shared Chunk Header, to represent an endpoint. sl@0: */ sl@0: class TUsbcScHdrEndpointRecord sl@0: { sl@0: public: sl@0: inline TUsbcScHdrEndpointRecord(TInt aBufferNo, TUint8 aType); sl@0: inline TUint Direction() const; sl@0: inline TUint Type() const; sl@0: public: sl@0: TUint8 iBufferNo; sl@0: TUint8 iType; sl@0: TUint16 iReserved; sl@0: }; sl@0: sl@0: sl@0: // This is used to hold the geometry of the shared buffers sl@0: class TUsbcScBufferRecord sl@0: { sl@0: friend class DLddUsbcScChannel; sl@0: sl@0: public: sl@0: inline TUint Offset() const; sl@0: inline TUint Size() const; sl@0: private: sl@0: inline void Set(TUint aOffset, TUint aEndOffset); sl@0: TUint iOffset; sl@0: TUint iSize; sl@0: }; sl@0: sl@0: struct SUsbcScBufferHeader sl@0: { sl@0: TInt iHead; // Where the LDD will next write a transfer sl@0: TInt iTail; // Indicates the fist packet that user side is processing (anything prior is disposable) sl@0: TInt iBilTail; // This is not used by LDD at all, but just for the BIL's benifit. sl@0: }; sl@0: sl@0: sl@0: struct SUsbcScAlternateSetting sl@0: { sl@0: TUint16 iSetting; sl@0: TUint16 iSequence; sl@0: }; sl@0: sl@0: /** Endpoint pair information. This can be used to control pairing of endpoint sl@0: for classes that require explicit pairing of endpoint, such as ADC. sl@0: sl@0: This is currently not used. sl@0: */ sl@0: sl@0: class TEndpointPairInfo sl@0: { sl@0: public: sl@0: TEndpointPairInfo(TUint8 aType=0, TUint16 aPair=0, TUint8 aSpare=0); sl@0: public: sl@0: TUint8 iType; sl@0: TUint8 iSpare; sl@0: TUint16 iPair; sl@0: }; sl@0: sl@0: /** sl@0: This is the buffer number reserved for use with endpoint zero with the ReadDataNotify and WriteData methods. sl@0: */ sl@0: const TInt KUsbcScEndpointZero = -1; sl@0: sl@0: /** sl@0: This flag is reserved in TUsbcscEndpointInfo::iFlags, to indicate that the client driver's client wishes reads to operate in a coupled fashion. sl@0: This behaviour is not currently supported. sl@0: */ sl@0: const TUint KUsbScCoupledRead = 0x1; sl@0: sl@0: /** sl@0: This flag, used in parameter aFlag of WriteData, is used to indicate that a ZLP should be sent. sl@0: */ sl@0: const TUint KUsbcScWriteFlagsZlp = 0x0001; sl@0: sl@0: sl@0: // Bit fields used in iFlags of TUsbcScTransferHeader sl@0: sl@0: const TUint KUsbcScShortPacket = 0x0001; sl@0: const TUint KUsbcScStateChange = 0x0004; sl@0: sl@0: class TUsbcScTransferHeader sl@0: { sl@0: public: sl@0: #ifdef _DEBUG sl@0: TUint iHashId; sl@0: TUint iSequence; sl@0: #endif sl@0: TUint iBytes; sl@0: TUint iFlags; sl@0: TUint iNext; sl@0: TUint16 iAltSettingSeq; sl@0: TInt16 iAltSetting; sl@0: union sl@0: { sl@0: TUint i[1]; // Extends sl@0: TUint8 b[4]; // Extends sl@0: } iData; sl@0: }; sl@0: sl@0: /** The desired endpoint capabilities used in RDevUsbcScClient::SetInterface(). sl@0: sl@0: This derived class has additional fields used in the shared chunk USB driver. sl@0: */ sl@0: class TUsbcScEndpointInfo: public TUsbcEndpointInfo sl@0: { sl@0: public: sl@0: TUsbcScEndpointInfo(TUint aType=KUsbEpTypeBulk, TUint aDir=KUsbEpDirOut, TInt aInterval=0, TInt aExtra=0, sl@0: TUint aBufferSize=0, TUint aReadSize=0); sl@0: sl@0: sl@0: public: sl@0: /** This indicates the requested size of the endpoint buffer and must be at sl@0: least as large as iReadSize. sl@0: */ sl@0: TUint iBufferSize; sl@0: sl@0: /** This is the amount of data that the LDD reads from the bus before it sets sl@0: up another read and is normally intended to read many packets. sl@0: */ sl@0: TUint iReadSize; sl@0: sl@0: /** TEndpointPairInfo represents pairing information for isochronous endpoints. sl@0: Should be zero in other cases. If this specifies paired endpoints then sl@0: iExtra (in the base class TUsbcEndpointInfo) also needs to be set to the sl@0: class specific size for this endpoint descriptor (This is here only for future use). sl@0: */ sl@0: TEndpointPairInfo iPairing; sl@0: sl@0: /** The necessary alignment, in bytes, that needs to be applied to the transfer start points sl@0: of the data. This is only observed on OUT endpoints. Zero can be specified to indicate sl@0: there are no class side requirements for alignment. The alignment for OUT endpoints is sl@0: which ever is greater of this field or the USB hardware requirements. sl@0: */ sl@0: TUint iAlignment; sl@0: sl@0: /** Flags to indicate how the endpoint should function. None currently defined, sl@0: but could be used to allow support for direct read. sl@0: */ sl@0: TUint iFlags; sl@0: sl@0: /** Reserved for future use. */ sl@0: TUint32 iReserved2[2]; sl@0: }; sl@0: sl@0: /** This must be filled in prior to a call to RDevUsbcClient::SetInterface(). sl@0: */ sl@0: class TUsbcScInterfaceInfo sl@0: { sl@0: public: sl@0: TUsbcScInterfaceInfo(TInt aClass=0, TInt aSubClass=0, TInt aProtocol=0, sl@0: TDesC16* aString=NULL, TUint aTotalEndpoints=0); sl@0: public: sl@0: /** The class, subclass and protocol that this interface supports. */ sl@0: TUsbcClassInfo iClass; sl@0: /** The description string for the interface. Used to construct the interface string descriptor. */ sl@0: const TDesC16* iString; sl@0: /** Total number of endpoints being requested (0-5). Endpoint 0 should not be included in this number. */ sl@0: TUint iTotalEndpointsUsed; sl@0: /** Desired properties of the endpoints requested. sl@0: Do NOT include endpoint 0. sl@0: APIs use endpoint numbers that are offsets into this array. sl@0: */ sl@0: TUsbcScEndpointInfo iEndpointData[KMaxEndpointsPerClient]; sl@0: /** 32 flag bits used for specifying miscellaneous Interface features. sl@0: Currently defined are: sl@0: - KUsbcInterfaceInfo_NoEp0RequestsPlease = 0x00000001 sl@0: */ sl@0: TUint32 iFeatureWord; sl@0: }; sl@0: sl@0: /** Package buffer for a TUsbcInterfaceInfo object. sl@0: sl@0: @see TUsbcInterfaceInfo sl@0: */ sl@0: typedef TPckgBuf TUsbcScInterfaceInfoBuf; sl@0: sl@0: struct TUsbcScChunkHdrOffs sl@0: { sl@0: TUint iBuffers; sl@0: TUint iAltSettings; sl@0: }; sl@0: sl@0: sl@0: class TUsbcScChunkBuffersHeader // Not instantiable sl@0: { sl@0: friend class DLddUsbcScChannel; sl@0: friend class TRealizeInfo; sl@0: sl@0: public: sl@0: inline TUsbcScBufferRecord* Ep0Out() const; sl@0: inline TUsbcScBufferRecord* Ep0In() const; sl@0: inline TUsbcScBufferRecord* Buffers(TInt aBuffer) const; sl@0: inline TInt NumberOfBuffers() const; sl@0: sl@0: private: sl@0: TUsbcScChunkBuffersHeader(); sl@0: private: sl@0: TInt iRecordSize; sl@0: TInt iNumOfBufs; sl@0: TUint8 iBufferOffset[8]; // Extends sl@0: }; sl@0: sl@0: struct TUsbcScChunkAltSettingHeader // Not instantiable sl@0: { sl@0: TInt iEpRecordSize; sl@0: TInt iNumOfAltSettings; sl@0: TUint iAltTableOffset[1]; // Extends sl@0: }; sl@0: sl@0: class TEndpointBuffer; sl@0: sl@0: sl@0: /** The user side handle to the USB client driver. sl@0: */ sl@0: class RDevUsbcScClient : public RBusLogicalChannel sl@0: { sl@0: public: sl@0: /** @internalComponent */ sl@0: enum TVer sl@0: { sl@0: EMajorVersionNumber = 0, sl@0: EMinorVersionNumber = 1, sl@0: EBuildVersionNumber = KE32BuildVersionNumber sl@0: }; sl@0: sl@0: // Bit pattern. s = Request/Control. c = Cancel, m = mode bits, B = Buffer number, R = request number. sl@0: // scmm mmmm | mmmm mmmm | mmBB BBBB |RRRR RRRR sl@0: sl@0: enum TRequest sl@0: { sl@0: ERequestWriteData = 1, sl@0: ERequestReadDataNotify = 2, sl@0: ERequestAlternateDeviceStatusNotify = 3, sl@0: ERequestReEnumerate = 4, sl@0: ERequestEndpointStatusNotify = 5, sl@0: ERequestOtgFeaturesNotify = 6, sl@0: ERequestMaxRequests, // 7 sl@0: sl@0: ERequestCancel = 0x40000000, sl@0: sl@0: ERequestWriteDataCancel = ERequestWriteData | ERequestCancel, sl@0: ERequestReadDataNotifyCancel = ERequestReadDataNotify | ERequestCancel, sl@0: ERequestAlternateDeviceStatusNotifyCancel = ERequestAlternateDeviceStatusNotify | ERequestCancel, sl@0: ERequestReEnumerateCancel = ERequestReEnumerate | ERequestCancel, sl@0: ERequestEndpointStatusNotifyCancel = ERequestEndpointStatusNotify | ERequestCancel, sl@0: ERequestOtgFeaturesNotifyCancel = ERequestOtgFeaturesNotify | ERequestCancel sl@0: }; sl@0: sl@0: enum TControl sl@0: { sl@0: // Changing the order of these enums will break BC. sl@0: EControlEndpointZeroRequestError, // 00 sl@0: EControlEndpointCaps, sl@0: EControlDeviceCaps, sl@0: EControlGetAlternateSetting, sl@0: EControlDeviceStatus, sl@0: EControlEndpointStatus, sl@0: EControlSetInterface, sl@0: EControlReleaseInterface, sl@0: EControlSendEp0StatusPacket, sl@0: EControlHaltEndpoint, // 09 sl@0: // sl@0: EControlClearHaltEndpoint, // 10 sl@0: EControlSetDeviceControl, sl@0: EControlReleaseDeviceControl, sl@0: EControlEndpointZeroMaxPacketSizes, sl@0: EControlSetEndpointZeroMaxPacketSize, sl@0: EControlGetDeviceDescriptor, sl@0: EControlSetDeviceDescriptor, sl@0: EControlGetDeviceDescriptorSize, sl@0: EControlGetConfigurationDescriptor, sl@0: EControlSetConfigurationDescriptor, // 19 sl@0: // sl@0: EControlGetConfigurationDescriptorSize, // 20 sl@0: EControlGetInterfaceDescriptor, sl@0: EControlSetInterfaceDescriptor, sl@0: EControlGetInterfaceDescriptorSize, sl@0: EControlGetEndpointDescriptor, sl@0: EControlSetEndpointDescriptor, sl@0: EControlGetEndpointDescriptorSize, sl@0: EControlGetCSInterfaceDescriptor, sl@0: EControlSetCSInterfaceDescriptor, sl@0: EControlGetCSInterfaceDescriptorSize, // 29 sl@0: // sl@0: EControlGetCSEndpointDescriptor, // 30 sl@0: EControlSetCSEndpointDescriptor, sl@0: EControlGetCSEndpointDescriptorSize, sl@0: EControlSignalRemoteWakeup, sl@0: EControlGetStringDescriptorLangId, sl@0: EControlSetStringDescriptorLangId, sl@0: EControlGetManufacturerStringDescriptor, sl@0: EControlSetManufacturerStringDescriptor, sl@0: EControlRemoveManufacturerStringDescriptor, sl@0: EControlGetProductStringDescriptor, // 39 sl@0: // sl@0: EControlSetProductStringDescriptor, // 40 sl@0: EControlRemoveProductStringDescriptor, sl@0: EControlGetSerialNumberStringDescriptor, sl@0: EControlSetSerialNumberStringDescriptor, sl@0: EControlRemoveSerialNumberStringDescriptor, sl@0: EControlGetConfigurationStringDescriptor, sl@0: EControlSetConfigurationStringDescriptor, sl@0: EControlRemoveConfigurationStringDescriptor, sl@0: EControlDeviceDisconnectFromHost, sl@0: EControlDeviceConnectToHost, // 49 sl@0: // sl@0: EControlDevicePowerUpUdc, // 50 sl@0: EControlDumpRegisters, sl@0: EControlAllocateEndpointResource, sl@0: EControlDeAllocateEndpointResource, sl@0: EControlQueryEndpointResourceUse, sl@0: EControlGetEndpointZeroMaxPacketSize, sl@0: EControlGetDeviceQualifierDescriptor, sl@0: EControlSetDeviceQualifierDescriptor, sl@0: EControlGetOtherSpeedConfigurationDescriptor, sl@0: EControlSetOtherSpeedConfigurationDescriptor, // 59 sl@0: // sl@0: EControlCurrentlyUsingHighSpeed, // 60 sl@0: EControlSetStringDescriptor, sl@0: EControlGetStringDescriptor, sl@0: EControlRemoveStringDescriptor, sl@0: EControlSetOtgDescriptor, sl@0: EControlGetOtgDescriptor, sl@0: EControlGetOtgFeatures, sl@0: EControlRealizeInterface, sl@0: EControlStartNextInAlternateSetting sl@0: }; sl@0: sl@0: sl@0: // const static TUint KFieldIdPos = 0; sl@0: const static TUint KFieldIdMask = 0xFF; sl@0: const static TUint KFieldBuffPos = 8; sl@0: const static TUint KFieldBuffMask = 0x3F; sl@0: const static TUint KFieldFlagsPos = 14; sl@0: const static TUint KFieldFlagsMask = 0xFFFF; sl@0: sl@0: sl@0: public: sl@0: sl@0: #ifndef __KERNEL_MODE__ sl@0: sl@0: /** Opens a channel. sl@0: sl@0: @param aUnit This should be 0 (zero). sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt Open(TInt aUnit); sl@0: sl@0: inline TVersion VersionRequired() const; sl@0: sl@0: /** Stalls ep0 to signal command fault to the host. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt EndpointZeroRequestError(); sl@0: sl@0: /** Retrieves the capabilities of all the endpoints on the device. sl@0: sl@0: Suggested use is as follows: sl@0: sl@0: @code sl@0: TUsbcEndpointData data[KUsbcMaxEndpoints]; sl@0: TPtr8 dataPtr(reinterpret_cast(data), sizeof(data), sizeof(data)); sl@0: ret = usbPort.EndpointCaps(dataPtr); sl@0: @endcode sl@0: sl@0: @param aEpCapsBuf A descriptor encapsulating an array of TUsbcEndpointData. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt EndpointCaps(TDes8& aEpCapsBuf); sl@0: sl@0: /** Retrieves the capabilities of the USB device. sl@0: sl@0: @see TUsbDeviceCaps sl@0: sl@0: @param aDevCapsBuf A TUsbDeviceCaps object. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt DeviceCaps(TUsbDeviceCaps& aDevCapsBuf); sl@0: sl@0: /** Copies the current alternate setting for this interface into aInterfaceNumber sl@0: For USB Interfaces whose main interface is active, this will be 0 (zero). sl@0: sl@0: @param aInterfaceNumber Current alternate setting for this interface is copied into this. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetAlternateSetting(TInt& aInterfaceNumber); sl@0: sl@0: /** Copies the current device status into aDeviceStatus. sl@0: sl@0: @param aDeviceStatus Current device status is copied into this. sl@0: sl@0: @return KErrNone if successful sl@0: */ sl@0: inline TInt DeviceStatus(TUsbcDeviceState& aDeviceStatus); sl@0: sl@0: /** Copies the current endpoint status into aEndpointStatus. sl@0: sl@0: @param aEndpoint Endpoint number valid for the current alternate setting. sl@0: @param aEndpointStatus The current endpoint status, might be stalled, not stalled or unknown. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt EndpointStatus(TInt aEndpoint, TEndpointState& aEndpointStatus); sl@0: sl@0: sl@0: /** Requests that a zero length status packet be sent to the host in response sl@0: to a class or vendor specific ep0 SETUP packet. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SendEp0StatusPacket(); sl@0: sl@0: /** Stalls endpoint aEndpoint, usually to indicate an error condition with a previous command. sl@0: The host will normally send a SET_FEATURE command on ep0 to acknowledge and clear the stall. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt HaltEndpoint(TInt aEndpoint); sl@0: sl@0: /** Clears the stall condition on endpoint aEndpoint. This is inluded for symmetry and test purposes. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt ClearHaltEndpoint(TInt aEndpoint); sl@0: sl@0: /** Requests that device control be allocated to this channel. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetDeviceControl(); sl@0: sl@0: /** Relinquishes device control previously allocated to this channel. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt ReleaseDeviceControl(); sl@0: sl@0: /** Returns a bitmap of available ep0 maximum packet sizes. sl@0: sl@0: @return bitmap of available ep0 maximum packet sizes. sl@0: */ sl@0: inline TUint EndpointZeroMaxPacketSizes(); sl@0: sl@0: /** Requests that a maximum packet size of aMaxPacketSize be set on ep0. sl@0: sl@0: @param aMaxPacketSize The maximum packet size. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetEndpointZeroMaxPacketSize(TInt aMaxPacketSize); sl@0: sl@0: /** Queries the current maximum packet size on ep0. sl@0: sl@0: @return The currently set maximum packet size on ep0. sl@0: */ sl@0: inline TInt GetEndpointZeroMaxPacketSize(); sl@0: sl@0: /** Copies the current device descriptor into aDeviceDescriptor. sl@0: sl@0: @param aDeviceDescriptor Receives the current device descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetDeviceDescriptor(TDes8& aDeviceDescriptor); sl@0: sl@0: /** Sets the contents of aDeviceDescriptor to be the current device descriptor. sl@0: sl@0: @param aDeviceDescriptor Contains the device descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetDeviceDescriptor(const TDesC8& aDeviceDescriptor); sl@0: sl@0: /** Gets the size of the current device descriptor. This is unlikely to be anything other than 9. sl@0: sl@0: @param aSize Receives the size of the current device descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetDeviceDescriptorSize(TInt& aSize); sl@0: sl@0: /** Copies the current configuration descriptor into aConfigurationDescriptor. sl@0: sl@0: @param aConfigurationDescriptor Receives the current configuration descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetConfigurationDescriptor(TDes8& aConfigurationDescriptor); sl@0: sl@0: /** Sets the contents of aConfigurationDescriptor to be the current configuration descriptor. sl@0: sl@0: @param aConfigurationDescriptor Contains the configuration descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetConfigurationDescriptor(const TDesC8& aConfigurationDescriptor); sl@0: sl@0: /** Gets the size of the current configuration descriptor. sl@0: sl@0: @param aSize Receives the size of the current configuration descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetConfigurationDescriptorSize(TInt& aSize); sl@0: sl@0: /** Copies the interface descriptor into aInterfaceDescriptor for the interface with alternate sl@0: setting aSettingNumber, 0 for the main interface. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aInterfaceDescriptor Receives the interface descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetInterfaceDescriptor(TInt aSettingNumber, TDes8& aInterfaceDescriptor); sl@0: sl@0: /** Sets the interface descriptor contained in aInterfaceDescriptor for the interface with sl@0: alternate setting aSettingNumber, 0 for the main interface, for transmission to the host sl@0: during enumeration. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aInterfaceDescriptor Contains the interface descriptor to be set. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetInterfaceDescriptor(TInt aSettingNumber, const TDesC8& aInterfaceDescriptor); sl@0: sl@0: /** Copies the size of the interface descriptor for the interface with alternate sl@0: setting aSettingNumber, 0 for the main interface, into aSize. sl@0: sl@0: @param aSettingNumber The alternate setting. sl@0: @param aSize receives the size of the interface descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetInterfaceDescriptorSize(TInt aSettingNumber, TInt& aSize); sl@0: sl@0: /** Copies the endpoint descriptor for logical endpoint number aEndpointNumber into aEndpointDescriptor sl@0: for the interface with alternate setting aSettingNumber, 0 for the main interface. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aEndpointNumber The endpoint number of the endpoint. sl@0: @param aEndpointDescriptor Receives the endpoint descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetEndpointDescriptor(TInt aSettingNumber, TInt aEndpointNumber, TDes8& aEndpointDescriptor); sl@0: sl@0: /** Sets the endpoint descriptor for logical endpoint number aEndpointNumber contained in sl@0: aEndpointDescriptor for the interface with alternate setting aSettingNumber, 0 for the main interface, sl@0: for transmission to the host during enumeration. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aEndpointNumber Valid endpoint number on this interface. sl@0: @param aEndpointDescriptor Contains the endpoint descriptor to be set. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetEndpointDescriptor(TInt aSettingNumber, TInt aEndpointNumber, sl@0: const TDesC8& aEndpointDescriptor); sl@0: sl@0: /** Copies the size of the endpoint descriptor for logical endpoint number aEndpointNumber for the sl@0: interface with alternate setting aSettingNumber, 0 for the main interface, into aSize. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aEndpointNumber Valid endpoint number on this interface. sl@0: @param aSize Receives the size of the endpoint descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetEndpointDescriptorSize(TInt aSettingNumber, TInt aEndpointNumber, TInt& aSize); sl@0: sl@0: /** Get OTG descriptor size sl@0: sl@0: @param aSize TInt Reference which contains OTG descriptor size on return. sl@0: */ sl@0: inline void GetOtgDescriptorSize(TInt& aSize); sl@0: sl@0: /** Get OTG descriptor of USB on-the-go feature. sl@0: sl@0: @param aOtgDesc User-side buffer to store copy of descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetOtgDescriptor(TDes8& aOtgDesc); sl@0: sl@0: /** Set OTG descriptor by user to enable/disable USB on-the-go feature. sl@0: sl@0: @param aOtgDesc Descriptor buffer containing OTG features. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetOtgDescriptor(const TDesC8& aOtgDesc); sl@0: sl@0: /** Copies the current device_qualifier descriptor into aDescriptor. sl@0: sl@0: @param aDescriptor Receives the current device_qualifier descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetDeviceQualifierDescriptor(TDes8& aDescriptor); sl@0: sl@0: /** Sets the device_qualifier descriptor to the contents of aDescriptor. sl@0: sl@0: @param aDescriptor Contains the new device_qualifier descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetDeviceQualifierDescriptor(const TDesC8& aDescriptor); sl@0: sl@0: /** Copies the current other_speed_configuration descriptor into aDescriptor. sl@0: sl@0: @param aDescriptor Receives the current other_speed_configuration descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetOtherSpeedConfigurationDescriptor(TDes8& aDescriptor); sl@0: sl@0: /** Sets the other_speed_configuration descriptor to the contents of aDescriptor. sl@0: sl@0: @param aDescriptor Contains the new other_speed_configuration descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetOtherSpeedConfigurationDescriptor(const TDesC8& aDescriptor); sl@0: sl@0: /** Copies the class specific interface descriptor block into aInterfaceDescriptor for the interface sl@0: with alternate setting aSettingNumber, 0 for the main interface. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aInterfaceDescriptor Contains the interface descriptor to be set. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetCSInterfaceDescriptorBlock(TInt aSettingNumber, TDes8& aInterfaceDescriptor); sl@0: sl@0: /** aSettingNumber is the alternate interface setting, 0 for the main interface, that the descriptor block sl@0: aDes should be attached to. aDes is a block of data containing at least one class specific descriptor sl@0: for transmission during enumeration after the class interface descriptor (or alternate interface sl@0: descriptor) has been sent, but before the endpoint descriptors belonging to this interface are sent. sl@0: aDes may contain as many descriptors as are necessary or only one. SetCSInterfaceDescriptorBlock() sl@0: should be called at any time after SetInterface() has been called to establish a main interface or an sl@0: alternate interface. More than one call may be made - the data blocks will be concatenated prior to sl@0: sending. No checking or validation of the contents of aDes will be made and it is the caller's sl@0: responsibility to ensure that the data supplied is correct and appropriate to the interface identified sl@0: by aSettingNumber. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aInterfaceDescriptor Contains the interface descriptor to be set. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetCSInterfaceDescriptorBlock(TInt aSettingNumber, const TDesC8& aInterfaceDescriptor); sl@0: sl@0: /** Copies the size of the class specific interface descriptor block for the interface with alternate sl@0: setting aSettingNumber, 0 for the main interface, into aSize. sl@0: sl@0: @param aSettingNumber The alternate setting number. sl@0: @param aSize receives the size of the interface descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetCSInterfaceDescriptorBlockSize(TInt aSettingNumber, TInt& aSize); sl@0: sl@0: /** Copies the class specific endpoint descriptor for logical endpoint number aEndpointNumber sl@0: into aEndpointDescriptor for the interface with alternate setting aSettingNumber, 0 for the main sl@0: interface. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aEndpointNumber Valid endpoint number on this interface. sl@0: @param aEndpointDescriptor Receives the endpoint descriptor. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetCSEndpointDescriptorBlock(TInt aSettingNumber, TInt aEndpointNumber, sl@0: TDes8& aEndpointDescriptor); sl@0: sl@0: /** Sets the class specific endpoint descriptor for logical endpoint number aEndpointNumber contained in sl@0: aEndpointDescriptor for the interface with alternate setting aSettingNumber, 0 for the main interface, sl@0: for transmission to the host during enumeration. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aEndpointNumber Valid endpoint number on this interface. sl@0: @param aEndpointDescriptor Contains the endpoint descriptor to be set. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetCSEndpointDescriptorBlock(TInt aSettingNumber, TInt aEndpointNumber, sl@0: const TDesC8& aEndpointDescriptor); sl@0: sl@0: /** Copies the size of the class specific endpoint descriptor block for logical endpoint number sl@0: aEndpointNumber for the interface with alternate setting aSettingNumber, 0 for the main interface, sl@0: into aSize. sl@0: sl@0: @param aSettingNumber Alternate setting number on the interface, 0 for the main interface. sl@0: @param aEndpointNumber Valid endpoint number on this interface. sl@0: @param aSize On return, contains the size of the class specific endpoint descriptor block. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt GetCSEndpointDescriptorBlockSize(TInt aSettingNumber, TInt aEndpointNumber, TInt& aSize); sl@0: sl@0: /** Generates a Remote Wakeup bus condition. sl@0: The capability of the device to generate Remote Wakeup signalling is enquired in sl@0: RDevUsbcClient::DeviceCaps. sl@0: sl@0: @return KErrNone if this signalling is possible and the signal has been generated. sl@0: */ sl@0: inline TInt SignalRemoteWakeup(); sl@0: sl@0: /** Simulates a physical removal of the USB cable by disabling the D+/- pull-ups.The iConnect member of sl@0: TUsbDeviceCapsV01, returned by RDevUsbcClient::DeviceCaps(), indicates whether this functionality is sl@0: supported. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt DeviceDisconnectFromHost(); sl@0: sl@0: /** Simulates a physical insertion of the USB cable by enabling the D+/- pull-ups.The iConnect member sl@0: of TUsbDeviceCapsV01, returned by RDevUsbcClient::DeviceCaps(), indicates whether this functionality sl@0: is supported. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt DeviceConnectToHost(); sl@0: sl@0: /** Powers up the UDC and connects it to the bus if one or more interfaces exist. sl@0: sl@0: @return KErrNone if UDC successfully powered up, KErrNotReady if no sl@0: interfaces have been registered yet, KErrHardwareNotAvailable if UDC sl@0: couldn't be activated. sl@0: */ sl@0: inline TInt PowerUpUdc(); sl@0: sl@0: /** Enquires about the current operating speed of the UDC. sl@0: sl@0: @return ETrue if the UDC is currently operating at High speed, EFalse otherwise. sl@0: */ sl@0: inline TBool CurrentlyUsingHighSpeed(); sl@0: sl@0: /** Allocates the use of aResource to aEndpoint. It will be used from when the current bus transfer has been sl@0: completed. sl@0: sl@0: @param aResource is typically some rationed hardware resource or possibly specifies a type of endpoint sl@0: behaviour. aResource is not a bitmap and TEndpointResource values should not be combined. sl@0: @param aEndpoint The endpoint number to which the resource is to be allocated. sl@0: sl@0: @return KErrNone if successful, KErrInUse if the resource is already consumed and cannot be allocated, sl@0: KErrNotSupported if the endpoint does not support the resource requested. sl@0: sl@0: @publishedPartner @deprecated sl@0: */ sl@0: inline TInt AllocateEndpointResource(TInt aEndpoint, TUsbcEndpointResource aResource); sl@0: sl@0: /** Deallocates the use of aResource aEndpoint or ends a specified endpoint behaviour. sl@0: sl@0: @param aResource is typically some rationed hardware resource or possibly specifies a type of endpoint sl@0: behaviour. aResource is not a bitmap and TEndpointResource values should not be combined. sl@0: @param aEndpoint The endpoint number from which the resource is to be removed. sl@0: sl@0: @return KErrNone if the resource has been successfully deallocated, KErrNotSupported if the endpoint sl@0: does not support the resource requested. sl@0: sl@0: @publishedPartner @deprecated sl@0: */ sl@0: inline TInt DeAllocateEndpointResource(TInt aEndpoint, TUsbcEndpointResource aResource); sl@0: sl@0: /** Queries endpoint resource use. sl@0: sl@0: @param aResource is typically some rationed hardware resource or possibly specifies a type of endpoint sl@0: behaviour. aResource is not a bitmap and TEndpointResource values should not be combined. sl@0: @param aEndpoint The endpoint number at which the resource is to be queried. sl@0: sl@0: @return ETrue is the specified resource is in use at the endpoint and EFalse if not. sl@0: */ sl@0: inline TBool QueryEndpointResourceUse(TInt aEndpoint, TUsbcEndpointResource aResource); sl@0: sl@0: /** Request (i.e. claim for this channel) up to five endpoints and set the class type for this USB sl@0: interface. 'aInterfaceData' is a package buffer which describes the interface and all the endpoints sl@0: being requested by the driver for this interface. sl@0: sl@0: @param aInterfaceNumber Distinguishes between alternate interfaces. If these are not be used then this sl@0: should always be zero. If this parameter is used, then its value must be one more than that of the sl@0: proceeding alternate interface. sl@0: @param aInterfaceData A package buffer which describes the interface and all the endpoints being sl@0: requested by the driver for this interface. sl@0: sl@0: sl@0: @return KErrInUse if any of the endpoints being requested have already been claimed by another channel. sl@0: KErrNotSupported if an endpoint with all of the specified properties is not supported on this sl@0: platform. KErrNoMemory if insufficient memory is available to complete the operation. sl@0: */ sl@0: inline TInt SetInterface(TInt aInterfaceNumber, TUsbcScInterfaceInfoBuf& aInterfaceData); sl@0: sl@0: sl@0: /** sl@0: This method should be called after SetInterface has been called for all possible alternative settings. sl@0: Calling this invalidates further calls to SetInterface. On success, a chunk handle is created and sl@0: passed back though aChunk. This is needed for the user side to access the shared chunk where the sl@0: data is stored. Note that if you are using the BIL (described later), then FinalizeInterface (...) sl@0: should be used instead, which will call this method. sl@0: sl@0: @return KErrNone on successful completion, or one of the system wide error codes. sl@0: */ sl@0: inline TInt RealizeInterface(RChunk& aChunk); sl@0: sl@0: sl@0: /** Release an interface previously claimed by this channel. Alternate interfaces need to be released sl@0: in strict descending order, starting with the last (i.e. highest numbered) one. sl@0: It is not necessary to release an interface that wasn't successfully requested. sl@0: sl@0: @param aInterfaceNumber Specifies the alternate setting number 'aInterfaceNum' of the interface to be sl@0: released. sl@0: sl@0: @return KErrNone if successful. KErrArgument if the alternate setting doesn't exist or is released out sl@0: of order. sl@0: */ sl@0: inline TInt ReleaseInterface(TInt aInterfaceNumber); sl@0: sl@0: /** Copies the current string descriptor language ID (LANGID) code into the aLangId argument. Even though sl@0: the USB spec allows for the existence of a whole array of LANGID codes, we only support one. sl@0: sl@0: @param aLangId Receives the LANGID code. sl@0: sl@0: @return KErrNone if successful, KErrArgument if problem with argument (memory cannot be written to, etc.). sl@0: */ sl@0: inline TInt GetStringDescriptorLangId(TUint16& aLangId); sl@0: sl@0: /** Sets the string descriptor language ID (LANGID). Even though the USB spec allows for the existence of sl@0: a whole array of LANGID codes, we only support one. sl@0: sl@0: @param aLangId The LANGID code to be set. sl@0: sl@0: @return KErrNone if successful. sl@0: */ sl@0: inline TInt SetStringDescriptorLangId(TUint16 aLangId); sl@0: sl@0: /** Copies the string descriptor identified by the iManufacturer index field of the Standard Device sl@0: Descriptor into the aString argument. sl@0: sl@0: @param aString Receives manufacturer string. sl@0: sl@0: @return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire sl@0: descriptor, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt GetManufacturerStringDescriptor(TDes16& aString); sl@0: sl@0: /** Sets the string descriptor identified by the iManufacturer index field of the Standard Device sl@0: Descriptor to the aString argument. sl@0: sl@0: @param aString Contains the new manufacturer string descriptor. sl@0: sl@0: @return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from sl@0: aString (in which case the old string descriptor will be preserved). sl@0: */ sl@0: inline TInt SetManufacturerStringDescriptor(const TDesC16& aString); sl@0: sl@0: /** Removes (deletes) the string descriptor identified by the iManufacturer index field of the Standard sl@0: Device Descriptor and sets that field to zero. sl@0: sl@0: @return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt RemoveManufacturerStringDescriptor(); sl@0: sl@0: /** Retrieves the string descriptor identified by the iProduct index field of the Standard Device sl@0: Descriptor into the aString argument. sl@0: sl@0: @param aString Receives product string. sl@0: sl@0: @return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire sl@0: descriptor, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt GetProductStringDescriptor(TDes16& aString); sl@0: sl@0: /** Sets the string descriptor identified by the iProduct index field of the Standard Device Descriptor to sl@0: the aString argument. sl@0: sl@0: @param aString Contains the new product string descriptor. sl@0: sl@0: @return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from sl@0: aString (in which case the old string descriptor will be preserved). sl@0: */ sl@0: inline TInt SetProductStringDescriptor(const TDesC16& aString); sl@0: sl@0: /** Removes (deletes) the string descriptor identified by the iProduct index field of the Standard Device sl@0: Descriptor and sets that field to zero. sl@0: sl@0: @return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt RemoveProductStringDescriptor(); sl@0: sl@0: /** Retrieves the string descriptor identified by the iSerialNumber index field of the Standard Device sl@0: Descriptor into the aString argument. sl@0: sl@0: @param aString Receives product string. sl@0: sl@0: @return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire sl@0: descriptor, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt GetSerialNumberStringDescriptor(TDes16& aString); sl@0: sl@0: /** Sets the string descriptor identified by the iSerialNumber index field of the Standard Device sl@0: Descriptor to the aString argument. sl@0: sl@0: @param aString Contains the new serial number string descriptor. sl@0: sl@0: @return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from sl@0: aString (in which case the old string descriptor will be preserved). sl@0: */ sl@0: inline TInt SetSerialNumberStringDescriptor(const TDesC16& aString); sl@0: sl@0: /** Removes (deletes) the string descriptor identified by the iSerialNumber index field of the Standard sl@0: Device Descriptor and sets that field to zero. sl@0: sl@0: @return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt RemoveSerialNumberStringDescriptor(); sl@0: sl@0: /** Retrieves the string descriptor identified by the iConfiguration index field of the (first) Standard sl@0: Configuration Descriptor into the aString argument. sl@0: sl@0: @param aString Receives configuration string. sl@0: sl@0: @return KErrNone if successful, KErrArgument if MaxLength of aString is too small to hold the entire sl@0: descriptor, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt GetConfigurationStringDescriptor(TDes16& aString); sl@0: sl@0: /** Sets the string descriptor identified by the iConfiguration index field of the Standard Configuration sl@0: Descriptor to the aString argument. sl@0: sl@0: @param aString Contains the new serial number string descriptor. sl@0: sl@0: @return KErrNone if successful, KErrNoMemory if no memory is available to store the new string from sl@0: aString (in which case the old string descriptor will be preserved). sl@0: */ sl@0: inline TInt SetConfigurationStringDescriptor(const TDesC16& aString); sl@0: sl@0: /** Removes (deletes) the string descriptor identified by the iConfiguration index field of the Standard sl@0: Configuration Descriptor and sets that field to zero. sl@0: sl@0: @return KErrNone if successful, KErrNotFound if the string descriptor couldn't be found. sl@0: */ sl@0: inline TInt RemoveConfigurationStringDescriptor(); sl@0: sl@0: /** Copies the string of the USB string descriptor at the specified index in the string descriptor array sl@0: into the aString argument. sl@0: sl@0: Although this function can also be used for it, for querying most standard string descriptors sl@0: there exists a set of dedicated access functions. sl@0: sl@0: @see RDevUsbcClient::GetStringDescriptorLangId sl@0: @see RDevUsbcClient::GetManufacturerStringDescriptor sl@0: @see RDevUsbcClient::GetProductStringDescriptor sl@0: @see RDevUsbcClient::GetSerialNumberStringDescriptor sl@0: @see RDevUsbcClient::GetConfigurationStringDescriptor sl@0: sl@0: @param aIndex The position of the string descriptor in the string descriptor array. sl@0: @param aString The target location for the string descriptor copy. sl@0: sl@0: @return KErrNone if successful, KErrNotFound if no string descriptor exists at the specified index, sl@0: KErrArgument if MaxLength() of aString is too small to hold the entire descriptor. sl@0: */ sl@0: inline TInt GetStringDescriptor(TUint8 aIndex, TDes16& aString); sl@0: sl@0: /** Sets the aString argument to be the string of a USB string descriptor at the specified index in the sl@0: string descriptor array. If a string descriptor already exists at that position then its string will sl@0: be replaced. sl@0: sl@0: Care should be taken, when choosing aIndex, not to inadvertently overwrite one of the standard sl@0: string descriptors. For their manipulation there exists a set of dedicated access functions. sl@0: sl@0: @see RDevUsbcClient::SetStringDescriptorLangId sl@0: @see RDevUsbcClient::SetManufacturerStringDescriptor sl@0: @see RDevUsbcClient::SetProductStringDescriptor sl@0: @see RDevUsbcClient::SetSerialNumberStringDescriptor sl@0: @see RDevUsbcClient::SetConfigurationStringDescriptor sl@0: sl@0: @param aIndex The position of the string descriptor in the string descriptor array. sl@0: @param aString Contains the string descriptor to be set. sl@0: sl@0: @return KErrNone if successful, KErrArgument if aIndex is invalid, KErrNoMemory if no memory sl@0: is available to store the new string (an existing descriptor at that index will be preserved). sl@0: */ sl@0: inline TInt SetStringDescriptor(TUint8 aIndex, const TDesC16& aString); sl@0: sl@0: /** Removes (deletes) the USB string descriptor at the specified index in the string descriptor array. sl@0: The position in the array of other string descriptors is not affected. sl@0: sl@0: Care should be taken, when choosing aIndex, not to inadvertently delete a standard string descriptor sl@0: (also because index references from non-string descriptors would be invalidated). For the deletion sl@0: of most standard string descriptors there exists a set of dedicated functions. sl@0: sl@0: @see RDevUsbcClient::RemoveManufacturerStringDescriptor sl@0: @see RDevUsbcClient::RemoveProductStringDescriptor sl@0: @see RDevUsbcClient::RemoveSerialNumberStringDescriptor sl@0: @see RDevUsbcClient::RemoveConfigurationStringDescriptor sl@0: sl@0: @param aIndex The position of the string descriptor in the string descriptor array. sl@0: sl@0: @return KErrNone if successful, KErrNotFound if no string descriptor exists at the specified index. sl@0: */ sl@0: inline TInt RemoveStringDescriptor(TUint8 aIndex); sl@0: sl@0: sl@0: sl@0: /** Requests notification for when there is data available on the buffer indicated. If the buffer sl@0: already has data in it, it will return immediately, otherwise it will block until there is. sl@0: sl@0: If the BIL methods are being used (recommended), then this method should not be called directly, sl@0: using TEndpointBuffer::GetBuffer instead. sl@0: sl@0: @param aBufferNumber Indicates the buffer for which the caller wishes to know about data sl@0: additions. The buffer needed of any given endpoint can be found by inspecting the alternative sl@0: setting table, in the chunk header. The location of the buffer can be found by looking at the sl@0: buffer offset table, also in the chunk header. sl@0: sl@0: @param aStatus The request status where notification of completion is directed. KErrCancel is sl@0: returned if the asynchronous operation was cancelled. sl@0: sl@0: @param aLength A preference for the quantity of data to be read. This value is only a sl@0: suggestion and my be ignored. The default value of 0 indicates no preference. sl@0: sl@0: @return KErrNone on success, or KErrArgument if the buffer number is invalid. sl@0: */ sl@0: inline TInt ReadDataNotify(TInt aBufferNumber, TRequestStatus& aStatus, TInt aLength=0); sl@0: sl@0: sl@0: /** Requests the LDD to write the contents of the given buffer to the USB hardware. Notification is sl@0: given when this is complete. More then one write request can be queued on any one endpoint, to allow sl@0: for less Hardware idling between buffers. sl@0: sl@0: If the BIL methods are being used (recommended), then this method should not be called directly, sl@0: using TEndpointBuffer::WriteBuffer instead. sl@0: sl@0: @param aBufferNumber represents the buffer number of the buffer of which the caller has placed the sl@0: data. As described with ReadDataNotify(...), details of the buffers can be found in the chunk header. sl@0: sl@0: @param aStart Represents the start offset of the data within the chunk. This start location must be sl@0: aligned to a multiple of the maximum packet size for the endpoint, so that the data can be DMAed sl@0: straight out of the buffer. sl@0: sl@0: @param aLength Represents the amount of data to be sent to the host in bytes. sl@0: sl@0: @param aFlags Is a bitfield, where bit 0 should be set if a ZLP is to be sent to the host after the sl@0: current transaction. All other bits are reserved for future use. sl@0: */ sl@0: inline void WriteData(TInt aBufferNumber, TUint aStart, TUint aLength, TUint aFlags, TRequestStatus& aStatus); sl@0: sl@0: sl@0: sl@0: /** Cancels an outstanding read request on endpoint buffer aBufferNumber. sl@0: sl@0: @param aBufferNumber The endpoint buffer number whose read is to be cancelled. sl@0: */ sl@0: inline void ReadCancel(TInt aBufferNumber); sl@0: sl@0: sl@0: /** Cancels an outstanding write request on endpoint buffer aBufferNumber. sl@0: sl@0: @param aBufferNumber The endpoint buffer number whose write is to be cancelled. sl@0: */ sl@0: inline void WriteCancel(TInt aBufferNumber); sl@0: sl@0: /** Cancels any transfer on any endpoint buffer specified in aBufferMask. sl@0: sl@0: @code sl@0: // Cancel transfer requests on buffers 1, 2, 3 & 4 sl@0: usbPort.EndpointTransferCancel(1 | 2 | 4 | 8); sl@0: @endcode sl@0: sl@0: @param aBufferMask bitmap of the endpoint buffer numbers. sl@0: */ sl@0: inline void EndpointTransferCancel(TUint aBufferMask); sl@0: sl@0: /** Register for notification when a change of the Interface alternate setting or the USB Controller's sl@0: current state occurs. When the alternate setting or the Controller state changes, then the sl@0: asynchronous function completes and the current alternate setting number or Controller state is sl@0: written back to aValue. If the KUsbAlternateSetting bit is set then the remaining bits are the sl@0: alternate setting number. Otherwise aValue is interpreted as a TUsbcDeviceState. sl@0: sl@0: @see TUsbcDeviceState sl@0: sl@0: @param aStatus The request status. sl@0: @param aValue Receives the alternate setting number or Controller state. sl@0: */ sl@0: inline void AlternateDeviceStatusNotify(TRequestStatus& aStatus, TUint& aValue); sl@0: sl@0: /** Completes an AlternateDeviceStatusNotify request. If a request has previously been made then the sl@0: status variable is updated with the current device state. sl@0: */ sl@0: inline void AlternateDeviceStatusNotifyCancel(); sl@0: sl@0: /** If the channel has changed the grouping of endpoints between interfaces or changed the interface class sl@0: type from the defaults then it is necessary to force a re-enumeration. This will typically involve the sl@0: Symbian OS device initiating a disconnection and re-connection. This is an asynchronous operation sl@0: which will complete when the Controller is successfully configured by the host, i.e. has achieved sl@0: EUsbcDeviceStateConfigured. Since it is not known if the operation has failed, at the same time that sl@0: a ReEnumerate request is made, a timer should be set up to complete after approximately 5 seconds. It sl@0: can be assumed that if the operation has not completed after this time interval then it will not sl@0: complete. sl@0: sl@0: @param aStatus The request status. sl@0: */ sl@0: inline void ReEnumerate(TRequestStatus& aStatus); sl@0: sl@0: /** Cancels an outstanding ReEnumerate() request. sl@0: */ sl@0: inline void ReEnumerateCancel(); sl@0: sl@0: /** Register for notification when a change in stall status of any of the interface's endpoints occurs, sl@0: but not ep0. When a change in stall status occurs, then the asynchronous function completes and the sl@0: current stall state is written back to 'aEndpointStatus' as a bit map: Only stall state changes caused sl@0: by SET_FEATURE and CLEAR_FEATURE standard commands on ep0 will be notified when this function sl@0: completes. After this request completes the request should be re-issued to obtain future sl@0: notifications. sl@0: sl@0: @param aStatus The request status. sl@0: @param aEndpointMask A bitmap of the endpoints' stall status. This is filled in when the call completes. sl@0: bit 1 represents the interface's virtual endpoint 1, (KUsbcEndpoint1Bit) sl@0: bit 2 represents the interface's virtual endpoint 2, (KUsbcEndpoint2Bit) etc. sl@0: bit value 0 - not stalled, sl@0: bit value 1 - stalled. sl@0: */ sl@0: inline void EndpointStatusNotify(TRequestStatus& aStatus, TUint& aEndpointMask); sl@0: sl@0: /** Completes an endpoint status notify request. sl@0: */ sl@0: inline void EndpointStatusNotifyCancel(); sl@0: sl@0: /** Get current on-the-go features relating to the ability of device/host pair to sl@0: perform OTG role swap. sl@0: sl@0: @param aFeatures On return it contains features the device currently has. sl@0: bit 2 represents b_hnp_enable, (KUsbOtgAttr_B_HnpEnable) sl@0: bit 3 represents a_hnp_support, (KUsbOtgAttr_A_HnpSupport) sl@0: bit 4 represents a_alt_hnp_support, (KUsbOtgAttr_A_AltHnpSupport) sl@0: @return KErrNone if successful, KErrNotSupported if OTG is not supported by sl@0: this device, otherwise system-wide error returns. sl@0: */ sl@0: inline TInt GetOtgFeatures(TUint8& aFeatures); sl@0: sl@0: /** Register for notification on USB on-the-go features' change. If any OTG feature sl@0: is changed, request completes and current feature value is filled in aValue. sl@0: sl@0: @param aStatus Request status object. sl@0: @param aValue On request completion, contains current OTG feature value. sl@0: */ sl@0: inline void OtgFeaturesNotify(TRequestStatus& aStatus, TUint8& aValue); sl@0: sl@0: /** Cancel pending OTG feature request. sl@0: */ sl@0: inline void OtgFeaturesNotifyCancel(); sl@0: sl@0: /** This function retrieves the alternate setting that the WriteData function can sl@0: write to. After a host sets the alternate setting, writes to the IN endpoint sl@0: are not permitted by the LDD until this method has been called. sl@0: This function is not asynchronous nor blocking, and should not be used to sl@0: detect that an alternate setting has happened. sl@0: sl@0: If the BIL methods are being used (recommended), then this method should not be called directly. sl@0: sl@0: @return The alternative setting number or KErrInUse if the current alternative sl@0: setting is already in use, that is to say that the alternative setting has not changed. sl@0: */ sl@0: inline TInt StartNextInAlternateSetting(); sl@0: sl@0: sl@0: /*******************************\ sl@0: * Buffer Interface Layer (BIL) * sl@0: \*******************************/ sl@0: sl@0: // This following functions, as well as the ones in TEndpointBuffer (below), sl@0: // can be considered the BIL. sl@0: sl@0: sl@0: /** sl@0: Finalize the interface, creating a chunk for use with reading/writing to endpoints. sl@0: FinalizeInterface should be called after all alternate interfaces have been set up with SetInteface. sl@0: Any attempt to call SetInterface after this stage will fail. sl@0: sl@0: @return KErrNone if operation is successfull sl@0: System wide error codes if chunk creation failed sl@0: */ sl@0: IMPORT_C TInt FinalizeInterface(); sl@0: sl@0: /** sl@0: Finalize the interface, creating a chunk for use with reading/writing to endpoints. This sl@0: version of the method provides a handle to the chunk, which is needed if the sl@0: buffer is to be passed and used by other processes. sl@0: FinalizeInterface should be called after all alternate interfaces have been set up with SetInteface. sl@0: Any attempt to call SetInterface after this stage will fail. sl@0: sl@0: @param aChunk On success aChunk points to the created chunk. sl@0: @return KErrNone if operation is successfull sl@0: System wide error codes if chunk creation failed sl@0: */ sl@0: IMPORT_C TInt FinalizeInterface(RChunk*& aChunk); sl@0: sl@0: /** sl@0: Opens an endpoint, an endpoint should be opened before any operations are attempted on it. sl@0: sl@0: @param aEpB On success aEpB will be filled with the relevant details for that endpoint sl@0: @param aEpI endpoint number to be opened sl@0: @return KErrNone if operation is successfull sl@0: KErrNotFound if endpoint number is not valid for current alternate setting sl@0: KErrInUse if endpoint is already opened sl@0: KErrArgument if endpoint buffer argument passed is already in existence and being used sl@0: */ sl@0: IMPORT_C TInt OpenEndpoint(TEndpointBuffer & aEpB, TInt aEpI); sl@0: sl@0: /** sl@0: Switches to processing from one Alternate setting to the next. All open endpoints (except EP0) must sl@0: be close before this can be called. sl@0: sl@0: @param aFlush If ETrue, the method will purge the buffers of any data unread for the old setting. sl@0: If each endpoint was not read up until KErrEof was reached, then this should be set. sl@0: sl@0: @return the alternate Setting if operation is successful sl@0: KErrInUse if any endpoints in present alternate setting is still open (except Ep0) sl@0: KErrNotReady if there is no change in alternate setting sl@0: KErrInUse if StartNextInAlternateSetting detects no change in alternate setting. sl@0: KErrCorrupt if the buffer structure becomes corrupt. sl@0: */ sl@0: IMPORT_C TInt StartNextOutAlternateSetting(TBool aFlush); sl@0: sl@0: /** sl@0: Sets aChunk to RChunk currently in use by BIL. sl@0: sl@0: @param aChunk aChunk will point to RChunk currently in use by BIL sl@0: @return KErrNone on success otherwise a system wide error code, if an error has occurred. sl@0: */ sl@0: IMPORT_C TInt GetDataTransferChunk(RChunk*& aChunk); sl@0: sl@0: private: sl@0: /** @internalTechnology */ sl@0: TInt Drain(TUint aBuffer); sl@0: /** @internalTechnology */ sl@0: TInt Peek(TUint aBuffer); sl@0: /** @internalTechnology */ sl@0: TInt FindNextAlternateSetting(); sl@0: sl@0: private: sl@0: TUint8 iEndpointStatus; /** @internalTechnology Each bit corresponds to each endpoint's open/close status. */ sl@0: RChunk iSharedChunk; /** @internalTechnology The shared chunk in use. */ sl@0: TInt iAltSettingSeq; /** @internalTechnology Used to track alternate setting changes. */ sl@0: TInt iAlternateSetting; /** @internalTechnology The alternate setting used by OUT endpoints, which may lag that of IN endpoints. */ sl@0: TInt iNewAltSetting; /** @internalTechnology Used to track the next alternate setting change on OUT endpoints, sl@0: during transition from one to the next. */ sl@0: TInt iInAltSetting; /** @internalTechnology The alternate setting used by IN endpoints, which may be ahead of OUT endpoints. */ sl@0: sl@0: sl@0: friend class TEndpointBuffer; sl@0: #endif // #ifndef __KERNEL_MODE__ sl@0: }; sl@0: sl@0: #ifndef __KERNEL_MODE__ sl@0: sl@0: sl@0: /** sl@0: This class forms part of the Buffer Interface Layer (BIL), which forms the sl@0: user side component of the USB Shared Chunk Client. Objects of this type sl@0: represent the shared chunk buffer, for a given endpoint. sl@0: The method RDevUsbcScClient::OpenEndpoint() should be used to initialise sl@0: objects of this type. sl@0: */ sl@0: class TEndpointBuffer sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: This return value used by GetBuffer indicates that the item pointed to by sl@0: aBuffer/aOffset represents a state change, instead of endpoint data. sl@0: */ sl@0: const static TInt KStateChange = 0x01; sl@0: sl@0: public: sl@0: IMPORT_C TEndpointBuffer(); sl@0: sl@0: /** sl@0: Read the next block of data from the Shared chunk buffer. This method should be used if the user wishes to process one block of data at a time. sl@0: This method also expires the previously read block, meaning that the memory used by the block of data may be re-used by the system, overwriting it sl@0: with new data. sl@0: @param aBuffer aBuffer will point to data location in shared chunk sl@0: @param aSize aSize will hold the number of valid bytes that can be read sl@0: @param aZLP aZLP will indicate whether its a short packet or not sl@0: @param aStatus In case of no data available to be read, aStatus will be passed on to LDD, and user side should wait for sl@0: asynchronous call ReadDataNotify to return sl@0: @param aLength Not used at the moment sl@0: @return KErrCompletion if operation is successfull and data is available in the buffer sl@0: KErrNone if no data is available to be read sl@0: KErrEof if alternate setting has changed sl@0: KErrAccessDenied if endpoint is not opened sl@0: KErrNotSupported if its an IN endpoint sl@0: TEndpointBuffer::KStateChange if the returned data represents a state change (Ep0 only) sl@0: */ sl@0: IMPORT_C TInt GetBuffer(TAny*& aBuffer,TUint& aSize,TBool& aZLP,TRequestStatus& aStatus,TUint aLength=0); sl@0: sl@0: /** sl@0: Read the next block of data from the Shared chunk buffer. This method should be used if the user wishes to process one block of data at a time. sl@0: This method also expires the previously read block, meaning that the memory used by the block of data may be re-used by the system, overwriting it sl@0: with new data. sl@0: @param aOffset aOffset will point to data offset in shared chunk sl@0: @param aSize aSize will hold the number of valid bytes that can be read sl@0: @param aZLP aZLP will indicate whether its a short packet or not sl@0: @param aStatus In case of no data available to be read, aStatus will be passed on to LDD, and user side should wait for sl@0: asynchronous call ReadDataNotify to return sl@0: @param aLength Not used at the moment sl@0: @return KErrCompletion if operation is successfull and data is available in the buffer sl@0: KErrNone if no data is available to be read sl@0: KErrEof if alternate setting has changed sl@0: KErrAccessDenied if endpoint is not opened sl@0: KErrNotSupported if its an IN endpoint sl@0: TEndpointBuffer::KStateChange if the returned data represents a state change (Ep0 only) sl@0: */ sl@0: inline TInt GetBuffer(TUint& aOffset,TUint& aSize,TBool& aZLP,TRequestStatus& aStatus,TUint aLength=0); sl@0: sl@0: /** sl@0: Read the next block of data from the Shared chunk buffer. This method should be used if the user wishes to process more than one block of data sl@0: simultaneously. The user must call one of the Expire() methods to free the memory used by the block of data, and make it available for new data. sl@0: @param aBuffer aBuffer will point to data location in shared chunk sl@0: @param aSize aSize will hold the number of valid bytes that can be read sl@0: @param aZLP aZLP will indicate whether its a short packet or not sl@0: @param aStatus In case of no data available to be read, aStatus will be passed on to LDD, and user side should wait for sl@0: asynchronous call ReadDataNotify to return sl@0: @param aLength Not used at the moment sl@0: @return KErrCompletion if operation is successfull and data is available in the buffer sl@0: KErrNone if no data is available to be read sl@0: KErrEof if alternate setting has changed sl@0: KErrAccessDenied if endpoint is not opened sl@0: KErrNotSupported if its an IN endpoint sl@0: TEndpointBuffer::KStateChange if the returned data represents a state change (Ep0 only) sl@0: */ sl@0: IMPORT_C TInt TakeBuffer(TAny*& aBuffer,TUint& aSize,TBool& aZLP,TRequestStatus& aStatus,TUint aLength=0); sl@0: sl@0: /** sl@0: Used in conjunction with TakeBuffer method. This will make the 'oldest' block of data previously read out using the TakeBuffer method, but not sl@0: already expired, to be released back to the system. This block can then be overwritten with new data, when it becomes available. sl@0: @return KErrNotSupported if its an IN endpoint sl@0: KErrNone if iTail is successfully bumped to the next transfer to be read sl@0: */ sl@0: sl@0: IMPORT_C TInt Expire(); sl@0: sl@0: /** sl@0: Used in conjunction with TakeBuffer method. This function allows blocks to be expired in a different order from which the user read the data out sl@0: of the buffer. Note that the system will only reuse blocks up to the point of the oldest non-expired block read. This means that the user must sl@0: ensure to expire all blocks in a timely manner to prevent the system from running out of usable memory. sl@0: @param aAddress aAddress is the start address of the block of data previously read by the user which can be overwritten. sl@0: @return KErrNotSupported if its an IN endpoint sl@0: KErrNone if iTail is successfully bumped to the next transfer to be read sl@0: KErrNotFound if a 'transfer' with start address of the data block is aAddress is not found sl@0: */ sl@0: sl@0: IMPORT_C TInt Expire(TAny* aAddress); sl@0: sl@0: /** sl@0: Initiates write operation. sl@0: @param aBuffer aBuffer will point to data in shared chunk to be written out. aBuffer should be aligned sl@0: @param aSize aSize will hold the number of valid bytes to be written out sl@0: @param aZLP aZLP will indicate whether a ZLP should be transmitted after writing the data out sl@0: @param aStatus This is an asynchronous function and user side should wait on status to know the end of write operation sl@0: @return KErrNone if a write is successfully queued sl@0: KErrEof if an alternate setting change has occurred, ending this endpoint. sl@0: KErrNotSupported if its an OUT endpoint sl@0: KErrAccessDenied if endpoint is not opened, or if buffer is out of range sl@0: */ sl@0: IMPORT_C TInt WriteBuffer(TAny* aBuffer,TUint aSize,TBool aZLP,TRequestStatus& aStatus); sl@0: sl@0: /** sl@0: Initiates write operation. sl@0: @param aOffset aOffset will point to offset of data in shared chunk to be written out. sl@0: @param aSize aSize will hold the number of valid bytes to be written out sl@0: @param aZLP aZLP will indicate whether a ZLP should be transmitted after writing the data out sl@0: @param aStatus This is an asynchronous function and user side should wait on status to know the end of write operation sl@0: @return KErrNone if a write is successfully queued sl@0: KErrEof if an alternate setting change has occurred, ending this endpoint. sl@0: KErrNotSupported if its an OUT endpoint sl@0: KErrAccessDenied if endpoint is not opened, or if buffer is out of range sl@0: */ sl@0: IMPORT_C TInt WriteBuffer(TUint aOffset,TUint aSize,TBool aZLP,TRequestStatus& aStatus); sl@0: /** sl@0: For IN endpoints, this method retrieves the geometry for the buffer, for which the sl@0: caller should stay within, when using the WriteBuffer method. sl@0: sl@0: @param aStart A pointer, which is set to point to the start of the buffer. sl@0: @param aSize An TUint for which the size (in bytes) of buffer, is written into. sl@0: sl@0: @returns KErrNotSupported if the object is on an open IN endpoint, sl@0: otherwise it KErrNone is returned on success. sl@0: */ sl@0: IMPORT_C TInt GetInBufferRange(TAny*& aStart, TUint& aSize); sl@0: sl@0: /** sl@0: For IN endpoints, this method retrieves the geometry for the buffer, for which the sl@0: caller should stay within, when using the WriteBuffer method. sl@0: sl@0: @param aStart A TUint for which the buffer's start offset from the start of the chunk, sl@0: in written into. sl@0: @param aSize An TUint for which the size (in bytes) of buffer, is written into. sl@0: sl@0: @returns KErrNotSupported if the object is on an open IN endpoint, sl@0: otherwise it KErrNone is returned on success. sl@0: */ sl@0: IMPORT_C TInt GetInBufferRange(TUint& aStart, TUint& aSize); sl@0: sl@0: /** sl@0: This method closes the endpoint, after it was opened with sl@0: RDevUsbcScClient::OpenEndpoint(...). sl@0: No method of this object can be used after this call, until sl@0: RDevUsbcScClient::OpenEndpoint(...) is called on it again. sl@0: sl@0: @return KErrNone on success, otherwise KErrNotFound, if the current object is not open. sl@0: */ sl@0: IMPORT_C TInt Close(); sl@0: sl@0: IMPORT_C void Dump(); sl@0: sl@0: /** sl@0: Used to retrieve the endpoint number for which this object was open on. sl@0: sl@0: @returns the endpoint number opened by this object. sl@0: */ sl@0: inline TInt GetEndpointNumber(); sl@0: sl@0: private: sl@0: /** @internalTechnology */ sl@0: void Construct(RDevUsbcScClient* aClient, TUint8* aBaseAddr, const TUsbcScHdrEndpointRecord* aEpType, sl@0: TInt aEndpointNumber, SUsbcScBufferHeader* aEndpointHdr=NULL); sl@0: sl@0: private: sl@0: enum TDir {EValid = KErrNone, ENotValid = KErrNotSupported, EEOF = KErrEof}; sl@0: TDir iInState; /** @internalTechnology describes state of endpoint, KErrNone if IN endpoint and ready to use, KErrNotSupportd if not an IN endpoint, KErrEof on alternate setting change */ sl@0: TDir iOutState; /** @internalTechnology describes state of endpoint, KErrNone if OUT endpoint and ready to use, KErrNotSupportd if not an OUT endpoint, KErrEoF on alternate setting change */ sl@0: TInt iEndpointNumber; /** @internalTechnology associated endpoint number */ sl@0: TInt iBufferNum; /** @internalTechnology buffer number within shared chunk */ sl@0: RDevUsbcScClient *iClient; /** @internalTechnology Parent RDevUsbcScClient object */ sl@0: TUint iBaseAddr; /** @internalTechnology The address of the beginning of the Ldd's chunk */ sl@0: sl@0: SUsbcScBufferHeader* iEndpointHdr; /** @internalTechnology Pointer to the buffer Header for OUT/BI endpoints */ sl@0: TUint8* iBufferStartAddr; /** @internalTechnology IN/BI endpoint buffer start address within shared chunk */ sl@0: TUint iSize; /** @internalTechnology IN/BI endpoint buffer size within shared chunk */ sl@0: friend class RDevUsbcScClient; sl@0: }; sl@0: sl@0: /** sl@0: This class can be used to retrieve the geometry of the structures sl@0: within a shared chunk, as used by RDevUsbcScClient. sl@0: sl@0: @see RDevUsbcScClient sl@0: */ sl@0: sl@0: class TUsbcScChunkHeader sl@0: { sl@0: public: sl@0: /** sl@0: The constructor for the TUsbcScChunkHeader class takes a RChunk object, sl@0: containing USBcSc data structures, and initialises itself, so that sl@0: GetNumberOfEndpoints & GetBuffer can be used to interpret the chunk structures. sl@0: sl@0: @param An RChunk object, which represents an shared chunk, containing the sl@0: USBcSc data structures to be retrieved. sl@0: */ sl@0: IMPORT_C TUsbcScChunkHeader(RChunk aChunk); sl@0: /** sl@0: Retrieves the available information in the chunk, about the given endpoint, sl@0: on the given alternate setting. The returned TUsbcScBufferRecord, sl@0: represents the buffer geometry, used for for the endpoint, while sl@0: the filled in TUsbcScHdrEndpointRecord represents additional endpoint sl@0: information. sl@0: sl@0: @param aAltSetting The alternate setting, for which the provided endpoint number, is a member of. sl@0: @param aEndpoint The endpoint, who's buffer geometry is required. sl@0: @param aEndpointInf The provided record is filled in with details of the endpoint, who's number was given. sl@0: */ sl@0: IMPORT_C TUsbcScBufferRecord* GetBuffer(TInt aAltSetting, TInt aEndpoint, TUsbcScHdrEndpointRecord*& aEndpointInf); sl@0: /** sl@0: Retrieves the number of endpoints found in a given alternate setting. sl@0: @param aAltSetting The alternate setting number, for which the number of endpoints contained within, is needed. sl@0: */ sl@0: IMPORT_C TInt GetNumberOfEndpoints(TInt aAltSetting); sl@0: sl@0: public: sl@0: TUsbcScChunkBuffersHeader* iBuffers; /** A pointer to the TUsbcScChunkBuffersHeader object, within the chunk header */ sl@0: TUsbcScChunkAltSettingHeader* iAltSettings; /** A pointer to the TUsbcScChunkAltSettingHeader object, within the chunk header */ sl@0: private: sl@0: RChunk iChunk; sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: #include sl@0: sl@0: #endif // __D32USBCSC_H__