os/kernelhwsrv/kernel/eka/include/drivers/resource_extend.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
// e32\include\drivers\resource_extend.h
sl@0
    15
// 
sl@0
    16
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    17
//          to change without notice. Such APIs should therefore not be used
sl@0
    18
//          outside the Kernel and Hardware Services package.
sl@0
    19
//
sl@0
    20
sl@0
    21
#ifndef __RESOURCE_EXTEND_H__
sl@0
    22
#define __RESOURCE_EXTEND_H__
sl@0
    23
sl@0
    24
#include <drivers/resource.h>
sl@0
    25
sl@0
    26
#define ADD_DEPENDENCY_NODE(aNode, aDependencyList)																	\
sl@0
    27
	{																												\
sl@0
    28
	SNode* pDL = aDependencyList;																					\
sl@0
    29
	SNode* prev = NULL;																								\
sl@0
    30
	if(pDL == NULL)																									\
sl@0
    31
		{																											\
sl@0
    32
		aDependencyList = aNode;																					\
sl@0
    33
		aNode->iNext = NULL;																						\
sl@0
    34
		}																											\
sl@0
    35
	else																											\
sl@0
    36
		{																											\
sl@0
    37
		while(pDL != NULL)																							\
sl@0
    38
			{																										\
sl@0
    39
			if(aNode->iPriority == pDL->iPriority)																	\
sl@0
    40
				return KErrAlreadyExists;																			\
sl@0
    41
			if(aNode->iPriority < pDL->iPriority)																	\
sl@0
    42
				{																									\
sl@0
    43
				if(prev == NULL) /*Add it to the head	*/															\
sl@0
    44
					{																								\
sl@0
    45
					aDependencyList = aNode;																		\
sl@0
    46
					aNode->iNext = pDL;																				\
sl@0
    47
					break;																							\
sl@0
    48
					}																								\
sl@0
    49
				prev->iNext = aNode;																				\
sl@0
    50
				aNode->iNext = pDL;																					\
sl@0
    51
				break;																								\
sl@0
    52
				}																									\
sl@0
    53
			if(pDL->iNext == NULL) /* Add it to the end	*/															\
sl@0
    54
				{																									\
sl@0
    55
				pDL->iNext = aNode;																					\
sl@0
    56
				aNode->iNext = NULL;																				\
sl@0
    57
				break;																								\
sl@0
    58
				}																									\
sl@0
    59
			prev = pDL;																								\
sl@0
    60
			pDL = pDL->iNext;																						\
sl@0
    61
			}																										\
sl@0
    62
		}																											\
sl@0
    63
	}
sl@0
    64
sl@0
    65
//Check whether the priority already exists
sl@0
    66
#define CHECK_IF_PRIORITY_ALREADY_EXISTS(aDependencyList, aPriority)			\
sl@0
    67
	{																			\
sl@0
    68
	for(SNode* node = aDependencyList; node != NULL; node = node->iNext)		\
sl@0
    69
		{																		\
sl@0
    70
		if(node->iPriority == aPriority)										\
sl@0
    71
			return KErrAlreadyExists;											\
sl@0
    72
		}																		\
sl@0
    73
	}
sl@0
    74
sl@0
    75
sl@0
    76
static const TUint KIdMaskStaticWithDependencies	= 0x00010000;
sl@0
    77
static const TUint KIdMaskDynamic					= 0x00020000;
sl@0
    78
static const TUint KIdMaskDynamicWithDependencies	= 0x00030000;
sl@0
    79
static const TUint KIdMaskResourceWithDependencies = 0x00010000;
sl@0
    80
static const TInt KDynamicResourceDeRegistering = -2; 
sl@0
    81
sl@0
    82
struct SNode;
sl@0
    83
struct SPowerResourceClientLevel;
sl@0
    84
sl@0
    85
//Various stages of resource dependency state change operation.
sl@0
    86
enum TPropagation
sl@0
    87
	{
sl@0
    88
	EChangeStart,
sl@0
    89
	ECheckChangeAllowed,
sl@0
    90
	ERequestStateChange,
sl@0
    91
	EIssueNotifications
sl@0
    92
	};
sl@0
    93
sl@0
    94
//Return value of translate dependency state function. This is implemented by PSL for each resource.
sl@0
    95
enum TChangePropagationStatus {EChange, ENoChange, EChangeNotAccepted};
sl@0
    96
sl@0
    97
/**
sl@0
    98
@publishedPartner
sl@0
    99
@prototype 9.5
sl@0
   100
class to represent dynamic resources
sl@0
   101
*/
sl@0
   102
class DDynamicPowerResource : public DStaticPowerResource
sl@0
   103
	{
sl@0
   104
public:
sl@0
   105
	IMPORT_C DDynamicPowerResource(const TDesC8& aName, TInt aDefaultLevel);
sl@0
   106
	IMPORT_C ~DDynamicPowerResource();
sl@0
   107
public:
sl@0
   108
	TBool InUse(); //Used by RC on deregistration to see if another client is having requirement on this resource
sl@0
   109
	inline void Lock() {++iCount;} //Resource is locked whenever operation is scheduled in RC thread. 
sl@0
   110
	inline void UnLock() {--iCount;}
sl@0
   111
	inline TUint LockCount() { return iCount;}
sl@0
   112
protected:
sl@0
   113
	TUint iCount;
sl@0
   114
	TUint iOwnerId; //Stores the ID of the client that registers the resource
sl@0
   115
	friend class DPowerResourceController;
sl@0
   116
	};
sl@0
   117
sl@0
   118
/**
sl@0
   119
@publishedPartner
sl@0
   120
@prototype 9.5
sl@0
   121
*/
sl@0
   122
typedef TBool (*TDependencyCustomFunction) (TInt& /*aClientId*/,
sl@0
   123
                                            const TDesC8& /*aClientName*/,
sl@0
   124
                                            TUint /*aResourceId*/,
sl@0
   125
                                            TCustomOperation /*aCustomOperation*/,
sl@0
   126
                                            TInt& /*aLevel*/,
sl@0
   127
                                            TAny* /*aLevelList*/,
sl@0
   128
                                            TAny* /*aResourceLevelList */,
sl@0
   129
                                            TAny* /*aReserved*/); // For future use
sl@0
   130
sl@0
   131
/**
sl@0
   132
@publishedPartner
sl@0
   133
@prototype 9.5
sl@0
   134
class to represent static resource with dependency
sl@0
   135
*/
sl@0
   136
class DStaticPowerResourceD : public DStaticPowerResource
sl@0
   137
	{
sl@0
   138
public:
sl@0
   139
	DStaticPowerResourceD(const TDesC8& aName, TInt aDefaultLevel);
sl@0
   140
	TInt AddNode(SNode* aNode);
sl@0
   141
	virtual TInt HandleChangePropagation(TPowerRequest aRequest, TPropagation aProp, TUint aOriginatorId, const TDesC8& aOriginatorName);
sl@0
   142
	virtual TChangePropagationStatus TranslateDependentState(TInt aDepId, TInt aDepState, TInt& aResState) = 0;
sl@0
   143
public:
sl@0
   144
	SPowerResourceClientLevel* iResourceClientList; //To capture the dependent resource requirement on this resource
sl@0
   145
	TDependencyCustomFunction iDepCustomFunction;
sl@0
   146
private:
sl@0
   147
	SNode* iDependencyList; //Dependency resource list
sl@0
   148
	friend class DPowerResourceController;
sl@0
   149
	};
sl@0
   150
sl@0
   151
/**
sl@0
   152
@publishedPartner
sl@0
   153
@prototype 9.5
sl@0
   154
class to represent dynamic resource with dependency
sl@0
   155
*/
sl@0
   156
class DDynamicPowerResourceD : public DDynamicPowerResource
sl@0
   157
	{
sl@0
   158
public:
sl@0
   159
	IMPORT_C DDynamicPowerResourceD(const TDesC8& aName, TInt aDefaultLevel);
sl@0
   160
	IMPORT_C ~DDynamicPowerResourceD();
sl@0
   161
	IMPORT_C virtual TInt HandleChangePropagation(TPowerRequest aRequest, TPropagation aProp, TUint aOriginatorId, const TDesC8& aOriginatorName);
sl@0
   162
	virtual TChangePropagationStatus TranslateDependentState(TInt aDepId, TInt aDepState, TInt& aResState) = 0;
sl@0
   163
public:
sl@0
   164
	SPowerResourceClientLevel* iResourceClientList; //To capture the dependent resource requirement on this resource
sl@0
   165
	TDependencyCustomFunction iDepCustomFunction;
sl@0
   166
private:
sl@0
   167
	SNode* iDependencyList; //Dependency resource list
sl@0
   168
	friend class DPowerResourceController;
sl@0
   169
	};
sl@0
   170
sl@0
   171
/**
sl@0
   172
@publishedPartner
sl@0
   173
@prototype 9.5
sl@0
   174
structure to represent resource dependency information. This is used when registering resource dependency
sl@0
   175
*/
sl@0
   176
struct SResourceDependencyInfo
sl@0
   177
	{
sl@0
   178
	TUint iResourceId;
sl@0
   179
	TUint8 iDependencyPriority;
sl@0
   180
	};
sl@0
   181
sl@0
   182
/**
sl@0
   183
@publishedPartner
sl@0
   184
@prototype 9.5
sl@0
   185
structure to encapsulate dependent resource information. 
sl@0
   186
*/
sl@0
   187
struct SNode
sl@0
   188
	{
sl@0
   189
	DStaticPowerResourceD* iResource;
sl@0
   190
	TInt iPropagatedLevel;
sl@0
   191
	TUint8 iRequiresChange;
sl@0
   192
	TUint8 iVisited;
sl@0
   193
	TUint8 iPriority;
sl@0
   194
	TUint8 iSpare;
sl@0
   195
	SNode* iNext;
sl@0
   196
	};
sl@0
   197
sl@0
   198
#endif