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_extend.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_EXTEND_H__
22 #define __RESOURCE_EXTEND_H__
24 #include <drivers/resource.h>
26 #define ADD_DEPENDENCY_NODE(aNode, aDependencyList) \
28 SNode* pDL = aDependencyList; \
32 aDependencyList = aNode; \
33 aNode->iNext = NULL; \
39 if(aNode->iPriority == pDL->iPriority) \
40 return KErrAlreadyExists; \
41 if(aNode->iPriority < pDL->iPriority) \
43 if(prev == NULL) /*Add it to the head */ \
45 aDependencyList = aNode; \
49 prev->iNext = aNode; \
53 if(pDL->iNext == NULL) /* Add it to the end */ \
56 aNode->iNext = NULL; \
65 //Check whether the priority already exists
66 #define CHECK_IF_PRIORITY_ALREADY_EXISTS(aDependencyList, aPriority) \
68 for(SNode* node = aDependencyList; node != NULL; node = node->iNext) \
70 if(node->iPriority == aPriority) \
71 return KErrAlreadyExists; \
76 static const TUint KIdMaskStaticWithDependencies = 0x00010000;
77 static const TUint KIdMaskDynamic = 0x00020000;
78 static const TUint KIdMaskDynamicWithDependencies = 0x00030000;
79 static const TUint KIdMaskResourceWithDependencies = 0x00010000;
80 static const TInt KDynamicResourceDeRegistering = -2;
83 struct SPowerResourceClientLevel;
85 //Various stages of resource dependency state change operation.
94 //Return value of translate dependency state function. This is implemented by PSL for each resource.
95 enum TChangePropagationStatus {EChange, ENoChange, EChangeNotAccepted};
100 class to represent dynamic resources
102 class DDynamicPowerResource : public DStaticPowerResource
105 IMPORT_C DDynamicPowerResource(const TDesC8& aName, TInt aDefaultLevel);
106 IMPORT_C ~DDynamicPowerResource();
108 TBool InUse(); //Used by RC on deregistration to see if another client is having requirement on this resource
109 inline void Lock() {++iCount;} //Resource is locked whenever operation is scheduled in RC thread.
110 inline void UnLock() {--iCount;}
111 inline TUint LockCount() { return iCount;}
114 TUint iOwnerId; //Stores the ID of the client that registers the resource
115 friend class DPowerResourceController;
122 typedef TBool (*TDependencyCustomFunction) (TInt& /*aClientId*/,
123 const TDesC8& /*aClientName*/,
124 TUint /*aResourceId*/,
125 TCustomOperation /*aCustomOperation*/,
127 TAny* /*aLevelList*/,
128 TAny* /*aResourceLevelList */,
129 TAny* /*aReserved*/); // For future use
134 class to represent static resource with dependency
136 class DStaticPowerResourceD : public DStaticPowerResource
139 DStaticPowerResourceD(const TDesC8& aName, TInt aDefaultLevel);
140 TInt AddNode(SNode* aNode);
141 virtual TInt HandleChangePropagation(TPowerRequest aRequest, TPropagation aProp, TUint aOriginatorId, const TDesC8& aOriginatorName);
142 virtual TChangePropagationStatus TranslateDependentState(TInt aDepId, TInt aDepState, TInt& aResState) = 0;
144 SPowerResourceClientLevel* iResourceClientList; //To capture the dependent resource requirement on this resource
145 TDependencyCustomFunction iDepCustomFunction;
147 SNode* iDependencyList; //Dependency resource list
148 friend class DPowerResourceController;
154 class to represent dynamic resource with dependency
156 class DDynamicPowerResourceD : public DDynamicPowerResource
159 IMPORT_C DDynamicPowerResourceD(const TDesC8& aName, TInt aDefaultLevel);
160 IMPORT_C ~DDynamicPowerResourceD();
161 IMPORT_C virtual TInt HandleChangePropagation(TPowerRequest aRequest, TPropagation aProp, TUint aOriginatorId, const TDesC8& aOriginatorName);
162 virtual TChangePropagationStatus TranslateDependentState(TInt aDepId, TInt aDepState, TInt& aResState) = 0;
164 SPowerResourceClientLevel* iResourceClientList; //To capture the dependent resource requirement on this resource
165 TDependencyCustomFunction iDepCustomFunction;
167 SNode* iDependencyList; //Dependency resource list
168 friend class DPowerResourceController;
174 structure to represent resource dependency information. This is used when registering resource dependency
176 struct SResourceDependencyInfo
179 TUint8 iDependencyPriority;
185 structure to encapsulate dependent resource information.
189 DStaticPowerResourceD* iResource;
190 TInt iPropagatedLevel;
191 TUint8 iRequiresChange;