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.
14 // e32\include\drivers\resource.h
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without notice. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
21 #ifndef __RESOURCE_H__
22 #define __RESOURCE_H__
23 #include <kernel/kernel.h>
24 #include <kernel/kern_priv.h>
25 #include <drivers/resourcecontrol_trace.h>
26 #include <drivers/resource_category.h>
28 //Definition for resource flag setting. Used by PSL.
29 static const TUint KTypeMask= 0x3;
30 static const TUint KUsageOffset=0x1F;
31 static const TUint KLongLatencySetOffset=0x1E;
32 static const TUint KLongLatencyGetOffset=0x1D;
33 static const TUint KClassOffset=0x1C;
34 static const TUint KSenseOffset=0x1A;
35 static const TUint KShared=0x1<<KUsageOffset;
36 static const TUint KLongLatencySet=0x1<<KLongLatencySetOffset;
37 static const TUint KLongLatencyGet=0x1<<KLongLatencyGetOffset;
38 static const TUint KLogical=0x1<<KClassOffset;
39 static const TUint KSenseNegative=0x01<<KSenseOffset;
40 static const TUint KSenseCustom=0x2<<KSenseOffset;
43 struct SIdleResourceInfo;
47 * List of operations that a Custom Function may be informed of.
55 Client has requested the given level.
60 Client has relinquished the given level.
62 EClientRelinquishLevel,
65 Client is changing the level.
70 A dynamic resource is being deregistered.
72 EDynamicResourceDeregister
77 * Function prototype for the Custom Function.
82 typedef TBool (*TCustomFunction) (TInt& /*aClientId*/,
83 const TDesC8& /*aClientName*/,
84 TUint /*aResourceId*/,
85 TCustomOperation /*aCustomOperation*/,
88 TAny* /*aReserved*/); // For future use
93 class to represent static resources
95 class DStaticPowerResource : public DBase
98 enum TType {EBinary = EResBinary, EMultilevel, EMultiProperty};
99 enum TUsage {ESingleUse = EResSingleUse, EShared};
100 enum TLatency {EInstantaneous = EResInstantaneous, ELongLatency};
101 enum TClass {EPhysical = EResPhysical, ELogical};
102 enum TSense {EPositive = EResPositive, ENegative, ECustom};
104 //exported to allow construction from other base port components.
105 IMPORT_C DStaticPowerResource(const TDesC8& aName, TInt aDefaultLevel);
106 IMPORT_C virtual TInt GetInfo(TDes8* aInfo)const;
107 inline void SetCustomFunction(TCustomFunction aCustomFunction)
108 {iCustomFunction=aCustomFunction;}
110 //private data inlined accessors
111 TType Type() const {return TType(iFlags&KTypeMask);}
112 TClass Class() const {return TClass((iFlags>>KClassOffset)&0x1);}
113 TUsage Usage() const {return TUsage((iFlags>>KUsageOffset)&0x1);}
114 TLatency LatencyGet() const
115 {return TLatency((iFlags>>KLongLatencyGetOffset)&0x1);}
116 TLatency LatencySet() const
117 {return TLatency((iFlags>>KLongLatencySetOffset)&0x1);}
118 TSense Sense() const {return TSense((iFlags>>KSenseOffset)&0x3);}
120 //pure virtual function to be implement by PSL
121 virtual TInt DoRequest(TPowerRequest& aRequest)=0;
130 SDblQue iNotificationList;
132 TCustomFunction iCustomFunction;
134 SIdleResourceInfo* iIdleListEntry;
137 #ifdef PRM_CONTROLLER
138 friend class DPowerResourceController;
142 typedef void (*TPowerResourceCbFn)(TUint /*aClientId*/,
143 TUint /*aResourceId*/,
145 TInt /*aLevelOwnerId*/,
152 An object of this type prepresents a customised Dfc
153 used to signal completion of the resource manager's asynchronous APIs
154 and completion of notifications
155 @see TPowerResourceManager
157 class TPowerResourceCb : public TDfc
160 inline TPowerResourceCb(TPowerResourceCbFn aFn, TAny* aPtr, TInt aPriority) : TDfc(DfcFunc, this, aPriority),
161 iParam(aPtr), iCallback(aFn){ }
162 inline TPowerResourceCb(TPowerResourceCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority):
163 TDfc(DfcFunc, this, aQue, aPriority), iParam(aPtr), iCallback(aFn) { }
165 inline static void DfcFunc(TAny* aPtr)
167 TPowerResourceCb* pCb = (TPowerResourceCb*) aPtr;
168 __KTRACE_OPT(KRESMANAGER, Kern::Printf(">TPowerResourceCb::DfcFunc ClientId = 0x%x, ResourceId = %d, Level = %d, \
169 LevelOwnerId = %d, Result = %d", pCb->iClientId, pCb->iResourceId, pCb->iLevel, \
170 pCb->iLevelOwnerId, pCb->iResult));
171 // Call the client specified callback function
172 pCb->iCallback(pCb->iClientId, pCb->iResourceId, pCb->iLevel, pCb->iLevelOwnerId, pCb->iResult, pCb->iParam);
173 pCb->iResult = KErrCompletion; //Mark the callback object to act properly during cancellation of this request.
174 PRM_CALLBACK_COMPLETION_TRACE
177 TAny* iParam; //Stores the aPtr argument passed in the constructor, to be passed as 5th argument to the callback function
178 TInt iResult; //Used to store the result aswell as binary usage count for the callback
179 TInt iLevel; // Level of the resource
180 TInt iLevelOwnerId; // Stores owner of the resource for asynchronous get operation
181 TUint iResourceId; //Stores the ID of the resource whose state is changed/read asynchronously
182 TUint iClientId; //Stores the ID of the client that requested the asynchronous operation
183 TPowerResourceCbFn iCallback; //Callback function object
184 #ifdef PRM_CONTROLLER
185 friend class DPowerResourceController;
192 Notifications class. Conditional and unconditional notifications are encapsulated in this class.
193 It uses TPowerResourceCb to perform the actual notification call.
194 @see TPowerResourceCb
196 class DPowerResourceNotification : public DBase
199 enum TType {EUnconditional, EConditional};
200 enum TResNotiPanic {ENotificationObjectStillInList = 25};
202 inline DPowerResourceNotification(TPowerResourceCbFn aFn, TAny* aPtr, TInt aPriority):
203 iCallback(aFn, aPtr, aPriority) {}
204 inline DPowerResourceNotification(TPowerResourceCbFn aFn, TAny* aPtr, TDfcQue* aQue, TInt aPriority) :
205 iCallback(aFn, aPtr, aQue, aPriority) {}
206 inline ~DPowerResourceNotification()
209 Kern::Fault("Power Resource Controller", ENotificationObjectStillInList);
212 TInt iPreviousLevel; //Previous level of the resource. This is used for checking the threshold condition
215 TUint8 iType; // the type of notification required (conditional or unconditional).
216 TUint16 iOwnerId; // the bottom 16 bits of the Id of the client which requested the notification
217 TInt iThreshold; // the threshold which when crossed on a specified direction will cause a notification to be issued.
218 TBool iDirection; // the direction of the resource change that together with the threshold to be crossed will result in the notification
219 TPowerResourceCb iCallback; //Callback object associated with this notification
220 SDblQueLink iNotificationLink;
221 DPowerResourceNotification* iNextInClient;
222 #ifdef PRM_CONTROLLER
223 friend class DPowerResourceController;
230 class to represent resource properties
232 class TPowerResourceInfoV01
235 DStaticPowerResource::TClass iClass;
236 DStaticPowerResource::TLatency iLatencyGet;
237 DStaticPowerResource::TLatency iLatencySet;
238 DStaticPowerResource::TType iType;
239 DStaticPowerResource::TUsage iUsage;
240 DStaticPowerResource::TSense iSense;
241 TDesC8* iResourceName;
244 TInt iMinLevel; //PSL mandatory field
245 TInt iMaxLevel; //PSL mandatory field
246 TInt iReserved1; //Reserved for future use.
247 TInt iReserved2; //Reserved for future use.
248 TInt iReserved3; //Reserved for future use.
249 TInt iPslReserved1; //PSL specific field
250 TInt iPslReserved2; //PSL specific field
251 TInt iPslReserved3; //PSL specific field
258 typedef TPckgBuf<TPowerResourceInfoV01> TPowerResourceInfoBuf01;
263 structure to represent client properties
265 struct TPowerClientInfoV01
271 #endif // __RESOURCE_H__