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.
16 #ifndef D32OTGDI_ERRORS_H
17 #define D32OTGDI_ERRORS_H
19 #ifndef __KERNEL_MODE__
22 #include <kernel/kernel.h>
32 The messages which indicate problem conditions are reported as a based set
33 of numbers derived from the basic USB+Host set (-6670 -> -6699)
35 const TInt KErrUsbOtgEventQueueOverflow = -6670;
36 const TInt KErrUsbOtgStateQueueOverflow = -6671;
37 const TInt KErrUsbOtgMessageQueueOverflow = -6672;
39 const TInt KErrUsbOtgBadState = -6675;
41 const TInt KErrUsbOtgStackNotStarted = -6680;
42 const TInt KErrUsbOtgVbusAlreadyRaised = -6681;
43 const TInt KErrUsbOtgSrpForbidden = -6682;
45 const TInt KErrUsbOtgHnpNotResponding = -6683;
46 const TInt KErrUsbOtgHnpBusDrop = -6684;
48 const TInt KErrUsbOtgBusControlProblem = -6685;
50 const TInt KErrUsbOtgVbusPowerUpError = -6686;
52 const TInt KErrUsbOtgHnpEnableProblem = -6687;
53 const TInt KErrUsbOtgPeriphNotSupported = -6688;
55 const TInt KErrUsbOtgVbusError = -6690;
56 const TInt KErrUsbOtgSrpTimeout = -6691;
57 const TInt KErrUsbOtgSrpActive = -6692;
58 const TInt KErrUsbOtgSrpNotPermitted = -6693;
59 const TInt KErrUsbOtgHnpNotPermitted = -6694;
60 const TInt KErrUsbOtgHnpNotEnabled = -6695;
61 const TInt KErrUsbOtgHnpNotSuspended = -6696;
62 const TInt KErrUsbOtgVbusPowerUpNotPermitted = -6697;
63 const TInt KErrUsbOtgVbusPowerDownNotPermitted = -6698;
64 const TInt KErrUsbOtgVbusClearErrorNotPermitted = -6699;
67 The OTG Panic categories are a zero-based contiguous set of
68 numbers whose meaning is private to OTGDI
72 _LIT(KUsbOtgDriverPanicCat, "USB OTG Driver");
74 enum TUsbOtgDriverPanics
76 EUsbOtgDriverNoDfcQueue,
78 EUsbOtgDriverNotYetInitialised,
79 EUsbOtgDriverAlreadyOpened,
81 EUsbOtgDriverStackNotStarted,
83 EUsbOtgUnknownErrorReported,
85 EUsbOtgDriverEventRequestAlreadyRegistered,
86 EUsbOtgDriverStateRequestAlreadyRegistered,
87 EUsbOtgDriverMessageRequestAlreadyRegistered,
89 EUsbOtgDriverIdPinNotificationAlreadyRegistered,
90 EUsbOtgDriverVbusNotificationAlreadyRegistered,
91 EUsbOtgDriverConnectionNotificationAlreadyRegistered,
92 EUsbOtgDriverStateNotificationAlreadyRegistered,
94 EUsbOtgDriverIdPinNotificationWriteFailed,
95 EUsbOtgDriverVbusNotificationWriteFailed,
96 EUsbOtgDriverConnectionNotificationWriteFailed,
97 EUsbOtgDriverStateNotificationWriteFailed,
99 EUsbOtgBadStateFunction
103 #endif // D32OTGDI_ERRORS_H