Update contrib.
1 // Copyright (c) 2002-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.
14 // e32/include/drivers/usbcdesc.h
15 // USB descriptors and their management.
24 #ifndef __USBCDESC_H__
25 #define __USBCDESC_H__
27 #include <kernel/kernel.h>
30 // Hard-wired positions of some descriptors in iDescriptors array (whether present or not):
31 static const TInt KDescPosition_Device = 0;
32 static const TInt KDescPosition_DeviceQualifier = 1;
33 static const TInt KDescPosition_OtherSpeedConfig = 2;
34 static const TInt KDescPosition_Config = 3;
35 static const TInt KDescPosition_Otg = 4;
36 static const TInt KDescPosition_FirstAvailable = 5;
38 // Hard-wired positions of string descriptors in iStrings array (whether present or not):
39 static const TInt KStringPosition_Langid = 0;
40 static const TInt KStringPosition_Manufact = 1;
41 static const TInt KStringPosition_Product = 2;
42 static const TInt KStringPosition_Serial = 3;
43 static const TInt KStringPosition_Config = 4;
44 static const TInt KStringPosition_OtherSpeedConfig = 5;
45 static const TInt KStringPosition_FirstAvailable = 6;
48 class TUsbcDescriptorBase
51 virtual ~TUsbcDescriptorBase();
52 void SetByte(TInt aPosition, TUint8 aValue);
53 void SetWord(TInt aPosition, TUint16 aValue);
54 TUint8 Byte(TInt aPosition) const;
55 TUint16 Word(TInt aPosition) const;
56 void GetDescriptorData(TDes8& aBuffer) const;
57 TInt GetDescriptorData(TUint8* aBuffer) const;
58 TInt GetDescriptorData(TUint8* aBuffer, TUint aMaxSize) const;
59 const TDes8& DescriptorData() const;
60 TDes8& DescriptorData();
63 virtual void UpdateFs();
64 virtual void UpdateHs();
66 TUsbcDescriptorBase();
67 void SetBufferPointer(const TDesC8& aDes);
69 #ifdef USB_SUPPORTS_SET_DESCRIPTOR_REQUEST
70 TUint8 iIndex; // only needed for SET_DESCRIPTOR
76 class TUsbcDeviceDescriptor : public TUsbcDescriptorBase
79 /** aMaxPacketSize0 should be the Ep0 max packet size for FS operation (as the HS size
82 static TUsbcDeviceDescriptor* New(TUint8 aDeviceClass, TUint8 aDeviceSubClass,
83 TUint8 aDeviceProtocol, TUint8 aMaxPacketSize0,
84 TUint16 aVendorId, TUint16 aProductId,
85 TUint16 aDeviceRelease, TUint8 aNumConfigurations);
86 virtual void UpdateFs();
87 virtual void UpdateHs();
89 TUsbcDeviceDescriptor();
90 TInt Construct(TUint8 aDeviceClass, TUint8 aDeviceSubClass, TUint8 aDeviceProtocol,
91 TUint8 aMaxPacketSize0, TUint16 aVendorId, TUint16 aProductId,
92 TUint16 aDeviceRelease, TUint8 aNumConfigurations);
93 TBuf8<KUsbDescSize_Device> iBuf;
94 TUint8 iEp0Size_Fs; // holds Ep0 size for FS (could be < 64)
98 class TUsbcDeviceQualifierDescriptor : public TUsbcDescriptorBase
101 /** aMaxPacketSize0 should be the Ep0 max packet size for FS operation (as the HS size
104 static TUsbcDeviceQualifierDescriptor* New(TUint8 aDeviceClass, TUint8 aDeviceSubClass,
105 TUint8 aDeviceProtocol, TUint8 aMaxPacketSize0,
106 TUint8 aNumConfigurations, TUint8 aReserved=0);
107 virtual void UpdateFs();
108 virtual void UpdateHs();
110 TUsbcDeviceQualifierDescriptor();
111 TInt Construct(TUint8 aDeviceClass, TUint8 aDeviceSubClass, TUint8 aDeviceProtocol,
112 TUint8 aMaxPacketSize0, TUint8 aNumConfigurations, TUint8 aReserved);
113 TBuf8<KUsbDescSize_DeviceQualifier> iBuf;
114 TUint8 iEp0Size_Fs; // holds Ep0 size for FS (could be < 64)
118 class TUsbcConfigDescriptor : public TUsbcDescriptorBase
121 /** aMaxPower should be given here in milliamps (not mA/2). */
122 static TUsbcConfigDescriptor* New(TUint8 aConfigurationValue, TBool aSelfPowered, TBool aRemoteWakeup,
125 TUsbcConfigDescriptor();
126 TInt Construct(TUint8 aConfigurationValue, TBool aSelfPowered, TBool aRemoteWakeup, TUint16 aMaxPower);
127 TBuf8<KUsbDescSize_Config> iBuf;
131 // The Other_Speed_Configuration descriptor has same size and layout as the
132 // standard Configuration descriptor, therefore we don't need a new definition.
133 typedef TUsbcConfigDescriptor TUsbcOtherSpeedConfigDescriptor;
136 class TUsbcInterfaceDescriptor : public TUsbcDescriptorBase
139 static TUsbcInterfaceDescriptor* New(TUint8 aInterfaceNumber, TUint8 aAlternateSetting, TInt NumEndpoints,
140 const TUsbcClassInfo& aClassInfo);
142 TUsbcInterfaceDescriptor();
143 TInt Construct(TUint8 aInterfaceNumber, TUint8 aAlternateSetting, TInt aNumEndpoints,
144 const TUsbcClassInfo& aClassInfo);
145 TBuf8<KUsbDescSize_Interface> iBuf;
149 class TUsbcEndpointDescriptorBase : public TUsbcDescriptorBase
152 virtual void UpdateFs();
153 virtual void UpdateHs();
155 TInt Construct(const TUsbcEndpointInfo& aEpInfo);
156 TUsbcEndpointDescriptorBase();
158 /** Stores the endpoint size to be used for FS. */
160 /** Stores the endpoint size to be used for HS. */
162 /** Stores the endpoint polling interval to be used for FS. */
164 /** Stores the endpoint polling interval to be used for HS. */
169 class TUsbcEndpointDescriptor : public TUsbcEndpointDescriptorBase
172 static TUsbcEndpointDescriptor* New(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
174 TUsbcEndpointDescriptor();
175 TInt Construct(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
176 TBuf8<KUsbDescSize_Endpoint> iBuf;
180 class TUsbcAudioEndpointDescriptor : public TUsbcEndpointDescriptorBase
183 static TUsbcAudioEndpointDescriptor* New(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
185 TUsbcAudioEndpointDescriptor();
186 TInt Construct(TUint8 aEndpointAddress, const TUsbcEndpointInfo& aEpInfo);
187 TBuf8<KUsbDescSize_AudioEndpoint> iBuf;
191 class TUsbcOtgDescriptor : public TUsbcDescriptorBase
194 static TUsbcOtgDescriptor* New(TBool aHnpSupport, TBool aSrpSupport);
196 TUsbcOtgDescriptor();
197 TInt Construct(TBool aHnpSupport, TBool aSrpSupport);
198 TBuf8<KUsbDescSize_Otg> iBuf;
202 class TUsbcClassSpecificDescriptor : public TUsbcDescriptorBase
205 virtual ~TUsbcClassSpecificDescriptor();
206 static TUsbcClassSpecificDescriptor* New(TUint8 aType, TInt aSize);
208 TUsbcClassSpecificDescriptor();
209 TInt Construct(TUint8 aType, TInt aSize);
214 class TUsbcStringDescriptorBase
217 virtual ~TUsbcStringDescriptorBase();
218 TUint16 Word(TInt aPosition) const;
219 void SetWord(TInt aPosition, TUint16 aValue);
220 TInt GetDescriptorData(TUint8* aBuffer) const;
221 TInt GetDescriptorData(TUint8* aBuffer, TUint aMaxSize) const;
222 const TDes8& StringData() const;
225 void SetBufferPointer(const TDesC8& aDes);
227 TUsbcStringDescriptorBase();
231 // TUint8 iIndex; // not needed in DescriptorPool: position == index
235 class TUsbcStringDescriptor : public TUsbcStringDescriptorBase
238 virtual ~TUsbcStringDescriptor();
239 static TUsbcStringDescriptor* New(const TDesC8& aString);
241 TUsbcStringDescriptor();
242 TInt Construct(const TDesC8& aString);
247 // Currently we support only one language, and thus there's no need to provide
248 // a LangId string descriptor with more than one array element.
249 class TUsbcLangIdDescriptor : public TUsbcStringDescriptorBase
252 virtual ~TUsbcLangIdDescriptor();
253 static TUsbcLangIdDescriptor* New(TUint16 aLangId);
255 TUsbcLangIdDescriptor();
256 TInt Construct(TUint16 aLangId);
261 class TUsbcDescriptorPool
264 TUsbcDescriptorPool(TUint8* aEp0_TxBuf);
265 ~TUsbcDescriptorPool();
266 TInt Init(TUsbcDeviceDescriptor* aDeviceDesc, TUsbcConfigDescriptor* aConfigDesc,
267 TUsbcLangIdDescriptor* aLangId, TUsbcStringDescriptor* aManufacturer,
268 TUsbcStringDescriptor* aProduct, TUsbcStringDescriptor* aSerialNum,
269 TUsbcStringDescriptor* aConfig, TUsbcOtgDescriptor* aOtgDesc);
271 TInt UpdateDescriptorsFs();
272 TInt UpdateDescriptorsHs();
275 TInt FindDescriptor(TUint8 aType, TUint8 aIndex, TUint16 aLangid, TInt& aSize) const;
276 void InsertDescriptor(TUsbcDescriptorBase* aDesc);
277 void DeleteIfcDescriptor(TInt aNumber, TInt aSetting=0);
278 // The TC in many of the following functions stands for 'ThreadCopy' because that's what happens there.
279 TInt GetDeviceDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
280 TInt SetDeviceDescriptorTC(DThread* aThread, const TDes8& aBuffer);
281 TInt GetConfigurationDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
282 TInt SetConfigurationDescriptorTC(DThread* aThread, const TDes8& aBuffer);
283 TInt GetOtgDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
284 TInt SetOtgDescriptor(const TDesC8& aBuffer);
285 TInt GetInterfaceDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting) const;
286 TInt SetInterfaceDescriptor(const TDes8& aBuffer, TInt aInterface, TInt aSetting);
287 TInt GetEndpointDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting,
288 TUint8 aEndpointAddress) const;
289 TInt SetEndpointDescriptorTC(DThread* aThread, const TDes8& aBuffer, TInt aInterface, TInt aSetting,
290 TUint8 aEndpointAddress);
291 TInt GetEndpointDescriptorSize(TInt aInterface, TInt aSetting, TUint8 aEndpointAddress, TInt& aSize) const;
292 TInt GetDeviceQualifierDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
293 TInt SetDeviceQualifierDescriptorTC(DThread* aThread, const TDes8& aBuffer);
294 TInt GetOtherSpeedConfigurationDescriptorTC(DThread* aThread, TDes8& aBuffer) const;
295 TInt SetOtherSpeedConfigurationDescriptorTC(DThread* aThread, const TDes8& aBuffer);
296 TInt GetCSInterfaceDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting) const;
297 TInt SetCSInterfaceDescriptorTC(DThread* aThread, const TDes8& aBuffer, TInt aInterface, TInt aSetting,
299 TInt GetCSInterfaceDescriptorSize(TInt aInterface, TInt aSetting, TInt& aSize) const;
300 TInt GetCSEndpointDescriptorTC(DThread* aThread, TDes8& aBuffer, TInt aInterface, TInt aSetting,
301 TUint8 aEndpointAddress) const;
302 TInt SetCSEndpointDescriptorTC(DThread* aThread, const TDes8& aBuffer, TInt aInterface, TInt aSetting,
303 TUint8 aEndpointAddress, TInt aSize);
304 TInt GetCSEndpointDescriptorSize(TInt aInterface, TInt aSetting, TUint8 aEndpointAddress, TInt& aSize) const;
306 // String descriptors
307 void SetIfcStringDescriptor(TUsbcStringDescriptor* aDesc, TInt aNumber, TInt aSetting=0);
308 TInt GetStringDescriptorLangIdTC(DThread* aThread, TDes8& aLangId) const;
309 TInt SetStringDescriptorLangId(TUint16 aLangId);
310 TInt GetManufacturerStringDescriptorTC(DThread* aThread, TDes8& aString) const;
311 TInt SetManufacturerStringDescriptorTC(DThread* aThread, const TDes8& aString);
312 TInt RemoveManufacturerStringDescriptor();
313 TInt GetProductStringDescriptorTC(DThread* aThread, TDes8& aString) const;
314 TInt SetProductStringDescriptorTC(DThread* aThread, const TDes8& aString);
315 TInt RemoveProductStringDescriptor();
316 TInt GetSerialNumberStringDescriptorTC(DThread* aThread, TDes8& aString) const;
317 TInt SetSerialNumberStringDescriptorTC(DThread* aThread, const TDes8& aString);
318 TInt RemoveSerialNumberStringDescriptor();
319 TInt GetConfigurationStringDescriptorTC(DThread* aThread, TDes8& aString) const;
320 TInt SetConfigurationStringDescriptorTC(DThread* aThread, const TDes8& aString);
321 TInt RemoveConfigurationStringDescriptor();
322 TInt GetStringDescriptorTC(DThread* aThread, TInt aIndex, TDes8& aString) const;
323 TInt SetStringDescriptorTC(DThread* aThread, TInt aIndex, const TDes8& aString);
324 TInt RemoveStringDescriptor(TInt aIndex);
328 void InsertIfcDesc(TUsbcDescriptorBase* aDesc);
329 void InsertEpDesc(TUsbcDescriptorBase* aDesc);
330 TInt FindIfcDescriptor(TInt aIfcNumber, TInt aIfcSetting) const;
331 TInt FindEpDescriptor(TInt aIfcNumber, TInt aIfcSetting, TUint8 aEpAddress) const;
332 void DeleteDescriptors(TInt aIndex, TInt aCount = 1);
333 void UpdateConfigDescriptorLength(TInt aLength);
334 void UpdateConfigDescriptorNumIfcs(TInt aNumber);
335 void UpdateIfcNumbers(TInt aNumber);
336 TInt GetDeviceDescriptor(TInt aIndex) const;
337 TInt GetConfigurationDescriptor(TInt aIndex) const;
338 TInt GetOtgDescriptor() const;
340 // String descriptors
341 TInt GetStringDescriptor(TInt aIndex) const;
342 TInt GetDeviceStringDescriptorTC(DThread* aThread, TDes8& aString, TInt aIndex, TInt aPosition) const;
343 TInt SetDeviceStringDescriptorTC(DThread* aThread, const TDes8& aString, TInt aIndex, TInt aPosition);
344 TInt RemoveDeviceStringDescriptor(TInt aIndex, TInt aPosition);
345 void ExchangeStringDescriptor(TInt aIndex, const TUsbcStringDescriptor* aDesc);
346 TBool AnyStringDescriptors() const;
347 TBool StringDescriptorExists(TInt aIndex) const;
348 TInt FindAvailableStringPos() const;
352 RPointerArray<TUsbcDescriptorBase> iDescriptors;
353 RPointerArray<TUsbcStringDescriptorBase> iStrings;
355 TUint8* const iEp0_TxBuf; // points to the controller's ep0 TX buffer
356 TBool iHighSpeed; // true if currently operating at high-speed
360 #endif // __USBCDESC_H__