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 |
#ifndef D32OTGDI_ERRORS_H
|
sl@0
|
17 |
#define D32OTGDI_ERRORS_H
|
sl@0
|
18 |
|
sl@0
|
19 |
#ifndef __KERNEL_MODE__
|
sl@0
|
20 |
#include <e32std.h>
|
sl@0
|
21 |
#else
|
sl@0
|
22 |
#include <kernel/kernel.h>
|
sl@0
|
23 |
#endif
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
@file
|
sl@0
|
27 |
@publishedPartner
|
sl@0
|
28 |
@prototype
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
The messages which indicate problem conditions are reported as a based set
|
sl@0
|
33 |
of numbers derived from the basic USB+Host set (-6670 -> -6699)
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
const TInt KErrUsbOtgEventQueueOverflow = -6670;
|
sl@0
|
36 |
const TInt KErrUsbOtgStateQueueOverflow = -6671;
|
sl@0
|
37 |
const TInt KErrUsbOtgMessageQueueOverflow = -6672;
|
sl@0
|
38 |
|
sl@0
|
39 |
const TInt KErrUsbOtgBadState = -6675;
|
sl@0
|
40 |
|
sl@0
|
41 |
const TInt KErrUsbOtgStackNotStarted = -6680;
|
sl@0
|
42 |
const TInt KErrUsbOtgVbusAlreadyRaised = -6681;
|
sl@0
|
43 |
const TInt KErrUsbOtgSrpForbidden = -6682;
|
sl@0
|
44 |
|
sl@0
|
45 |
const TInt KErrUsbOtgHnpNotResponding = -6683;
|
sl@0
|
46 |
const TInt KErrUsbOtgHnpBusDrop = -6684;
|
sl@0
|
47 |
|
sl@0
|
48 |
const TInt KErrUsbOtgBusControlProblem = -6685;
|
sl@0
|
49 |
|
sl@0
|
50 |
const TInt KErrUsbOtgVbusPowerUpError = -6686;
|
sl@0
|
51 |
|
sl@0
|
52 |
const TInt KErrUsbOtgHnpEnableProblem = -6687;
|
sl@0
|
53 |
const TInt KErrUsbOtgPeriphNotSupported = -6688;
|
sl@0
|
54 |
|
sl@0
|
55 |
const TInt KErrUsbOtgVbusError = -6690;
|
sl@0
|
56 |
const TInt KErrUsbOtgSrpTimeout = -6691;
|
sl@0
|
57 |
const TInt KErrUsbOtgSrpActive = -6692;
|
sl@0
|
58 |
const TInt KErrUsbOtgSrpNotPermitted = -6693;
|
sl@0
|
59 |
const TInt KErrUsbOtgHnpNotPermitted = -6694;
|
sl@0
|
60 |
const TInt KErrUsbOtgHnpNotEnabled = -6695;
|
sl@0
|
61 |
const TInt KErrUsbOtgHnpNotSuspended = -6696;
|
sl@0
|
62 |
const TInt KErrUsbOtgVbusPowerUpNotPermitted = -6697;
|
sl@0
|
63 |
const TInt KErrUsbOtgVbusPowerDownNotPermitted = -6698;
|
sl@0
|
64 |
const TInt KErrUsbOtgVbusClearErrorNotPermitted = -6699;
|
sl@0
|
65 |
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
The OTG Panic categories are a zero-based contiguous set of
|
sl@0
|
68 |
numbers whose meaning is private to OTGDI
|
sl@0
|
69 |
*/
|
sl@0
|
70 |
namespace OtgdiPanics
|
sl@0
|
71 |
{
|
sl@0
|
72 |
_LIT(KUsbOtgDriverPanicCat, "USB OTG Driver");
|
sl@0
|
73 |
|
sl@0
|
74 |
enum TUsbOtgDriverPanics
|
sl@0
|
75 |
{
|
sl@0
|
76 |
EUsbOtgDriverNoDfcQueue,
|
sl@0
|
77 |
|
sl@0
|
78 |
EUsbOtgDriverNotYetInitialised,
|
sl@0
|
79 |
EUsbOtgDriverAlreadyOpened,
|
sl@0
|
80 |
|
sl@0
|
81 |
EUsbOtgDriverStackNotStarted,
|
sl@0
|
82 |
|
sl@0
|
83 |
EUsbOtgUnknownErrorReported,
|
sl@0
|
84 |
|
sl@0
|
85 |
EUsbOtgDriverEventRequestAlreadyRegistered,
|
sl@0
|
86 |
EUsbOtgDriverStateRequestAlreadyRegistered,
|
sl@0
|
87 |
EUsbOtgDriverMessageRequestAlreadyRegistered,
|
sl@0
|
88 |
|
sl@0
|
89 |
EUsbOtgDriverIdPinNotificationAlreadyRegistered,
|
sl@0
|
90 |
EUsbOtgDriverVbusNotificationAlreadyRegistered,
|
sl@0
|
91 |
EUsbOtgDriverConnectionNotificationAlreadyRegistered,
|
sl@0
|
92 |
EUsbOtgDriverStateNotificationAlreadyRegistered,
|
sl@0
|
93 |
|
sl@0
|
94 |
EUsbOtgDriverIdPinNotificationWriteFailed,
|
sl@0
|
95 |
EUsbOtgDriverVbusNotificationWriteFailed,
|
sl@0
|
96 |
EUsbOtgDriverConnectionNotificationWriteFailed,
|
sl@0
|
97 |
EUsbOtgDriverStateNotificationWriteFailed,
|
sl@0
|
98 |
|
sl@0
|
99 |
EUsbOtgBadStateFunction
|
sl@0
|
100 |
};
|
sl@0
|
101 |
}
|
sl@0
|
102 |
|
sl@0
|
103 |
#endif // D32OTGDI_ERRORS_H
|