os/kernelhwsrv/kernel/eka/include/drivers/resourceman.inl
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\resourceman.inl
sl@0
    15
// 
sl@0
    16
// WARNING: This file contains some APIs which are internal and are subject
sl@0
    17
//          to change without noticed. 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
/**
sl@0
    22
 
sl@0
    23
 @publishedPartner
sl@0
    24
 @released 9.5
sl@0
    25
 
sl@0
    26
 Request to get the resource controller version
sl@0
    27
 
sl@0
    28
 @param aClientId	ID of the client which is requesting the resource controller version.
sl@0
    29
 @param aVersion		On Success, returns the version of PRM
sl@0
    30
 
sl@0
    31
 @return KErrNone			if successful
sl@0
    32
 KErrAccessDenied	if the client ID could not be found in the list of registered clients or
sl@0
    33
 if the client was registered to be thread relative and this API is not 
sl@0
    34
 called from the same thread.
sl@0
    35
 
sl@0
    36
 @pre Interrupts must be enabled
sl@0
    37
 @pre Kernel must be unlocked
sl@0
    38
 @pre No fast mutex can be held
sl@0
    39
 @pre Call in a thread context but not from null thread or DFC thread1
sl@0
    40
 @pre Can be used in a device driver.
sl@0
    41
*/
sl@0
    42
inline TInt PowerResourceManager::GetResourceControllerVersion(TUint aClientId, TUint& aVersion)
sl@0
    43
	{
sl@0
    44
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">PowerResourceManager::ResourceControllerVersion"));
sl@0
    45
	return ControlIO(aClientId, KResManControlIoGetVersion, (TAny*)&aVersion, NULL);
sl@0
    46
	}
sl@0
    47
#ifdef PRM_ENABLE_EXTENDED_VERSION
sl@0
    48
sl@0
    49
/**
sl@0
    50
@publishedPartner
sl@0
    51
@released 9.5
sl@0
    52
sl@0
    53
Request to register dynamic resource. This is also used to register dynamic resource with dependency
sl@0
    54
sl@0
    55
@param aClientId	ID of the client which is requesting the dynamic resource registration.
sl@0
    56
@param aResource	Dynamic resource to register.
sl@0
    57
@param aResourceId	On success, updates with resource id corresponding to this resource
sl@0
    58
sl@0
    59
@return KErrNone			if successful
sl@0
    60
		KErrAccessDenied	if the client ID could not be found in the list of registered clients or
sl@0
    61
							if the client was registered to be thread relative and this API is not 
sl@0
    62
							called from the same thread or if ID is user side client id.
sl@0
    63
		KErrNotSupported	if this API is called before PRM is fully intialised or if the resource ID does not
sl@0
    64
		                    correspond to dynamic resource or dynamic resource which support depedency
sl@0
    65
		KErrAlreadyExists	if resource is already registered.
sl@0
    66
sl@0
    67
sl@0
    68
@pre Interrupts must be enabled
sl@0
    69
@pre Kernel must be unlocked
sl@0
    70
@pre No fast mutex can be held
sl@0
    71
@pre Call in a thread context but not from null thread or DFC thread1
sl@0
    72
@pre Can be used in a device driver.
sl@0
    73
*/
sl@0
    74
inline TInt PowerResourceManager::RegisterDynamicResource(TUint aClientId, DDynamicPowerResource* aResource, 
sl@0
    75
																						TUint& aResourceId)
sl@0
    76
	{
sl@0
    77
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">PowerResourceManager::RegisterDynamicResource"));
sl@0
    78
	return ControlIO(aClientId, KResManControlIoRegisterDynamicResource, (TAny*)aResource, (TAny*)&aResourceId);
sl@0
    79
	}
sl@0
    80
sl@0
    81
/**
sl@0
    82
@publishedPartner
sl@0
    83
@released 9.5
sl@0
    84
sl@0
    85
Request to deregister dynamic resource. This is also used to deregister dynamic resource with dependency
sl@0
    86
sl@0
    87
@param aClientId	ID of the client which is requesting the dynamic resource deregistration.
sl@0
    88
@param aResourceId	Id of dynamic resource to deregister.
sl@0
    89
@param aState		Pointer to the required final state. This is optional and if left NULL, resource
sl@0
    90
					will be moved to its default state.
sl@0
    91
sl@0
    92
@return KErrNone			if successful
sl@0
    93
		KErrAccessDenied	if the client ID could not be found in the list of registered clients or
sl@0
    94
							if the client was registered to be thread relative and this API is not 
sl@0
    95
							called from the same thread or if ID is user side client id or if the client
sl@0
    96
							is not the same that registered the resource.
sl@0
    97
		KErrNotSupported	if this API is called before PRM is fully intialised or if the resource ID does not 
sl@0
    98
		                    correspond to dynamic resource or dynamic resource which support depedency
sl@0
    99
		KErrNotFound		if the resource could not found in the resource list. 
sl@0
   100
		KErrInUse			if the some other operation is in progress or if the resource is shared and
sl@0
   101
							another client holds requirement on this resource
sl@0
   102
sl@0
   103
sl@0
   104
@pre Interrupts must be enabled
sl@0
   105
@pre Kernel must be unlocked
sl@0
   106
@pre No fast mutex can be held
sl@0
   107
@pre Call in a thread context but not from null thread or DFC thread1
sl@0
   108
@pre Can be used in a device driver.
sl@0
   109
*/
sl@0
   110
inline TInt PowerResourceManager::DeRegisterDynamicResource(TUint aClientId, TUint aResourceId, TInt* aState)
sl@0
   111
	{
sl@0
   112
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">PowerResourceManager::DeRegisterDynamicResource"));
sl@0
   113
	return ControlIO(aClientId, KResManControlIoDeregisterDynamicResource, (TAny*)aResourceId, (TAny*)aState);
sl@0
   114
	}
sl@0
   115
sl@0
   116
/**
sl@0
   117
@publishedPartner
sl@0
   118
@released 9.5
sl@0
   119
sl@0
   120
Request to register resource dependency. This could be between 2 dynamic resource or between
sl@0
   121
dynamic and static resource.
sl@0
   122
sl@0
   123
@param aClientId	ID of the client which is requesting the resource dependency registration.
sl@0
   124
@param aResDependencyInfo1 Dependency information about the first resource in the dependency link.
sl@0
   125
@param aResDependencyInfo2 Dependency information about the second resource in the dependency link.
sl@0
   126
sl@0
   127
@return KErrNone			if successful
sl@0
   128
		KErrAccessDenied	if the client ID could not be found in the list of registered clients or
sl@0
   129
							if the client was registered to be thread relative and this API is not 
sl@0
   130
							called from the same thread or if ID is user side client id 
sl@0
   131
		KErrNotSupported	if any of the specified resource is not dynamic resource with depedency or 
sl@0
   132
		                    is not dependency resource or is instantaneous
sl@0
   133
		KErrNotFound		if any of the specified resource could not found in the resource list. 
sl@0
   134
sl@0
   135
sl@0
   136
@pre Interrupts must be enabled
sl@0
   137
@pre Kernel must be unlocked
sl@0
   138
@pre No fast mutex can be held
sl@0
   139
@pre Call in a thread context but not from null thread or DFC thread1
sl@0
   140
@pre Can be used in a device driver.
sl@0
   141
*/
sl@0
   142
inline TInt PowerResourceManager::RegisterResourceDependency(TUint aClientId, SResourceDependencyInfo* aResDependencyInfo1, 
sl@0
   143
																			SResourceDependencyInfo* aResDependencyInfo2)
sl@0
   144
	{
sl@0
   145
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">PowerResourceManager::RegisterResourceDependency"));
sl@0
   146
	return ControlIO(aClientId, KResManControlIoRegisterDependency, (TAny*)aResDependencyInfo1, (TAny*)aResDependencyInfo2);
sl@0
   147
	}
sl@0
   148
sl@0
   149
/**
sl@0
   150
@publishedPartner
sl@0
   151
@released 9.5
sl@0
   152
sl@0
   153
Request to deregister resource dependency.
sl@0
   154
 
sl@0
   155
@param aClientId	ID of the client which is requesting the resource dependency deregistration.
sl@0
   156
@param aResId1 Id of the first resource in the dependency link that is being deregistered.
sl@0
   157
@param aResId2 Id of the second resource in the dependency link that is being deregistered.
sl@0
   158
sl@0
   159
@return KErrNone			if successful
sl@0
   160
		KErrAccessDenied	if the client ID could not be found in the list of registered clients or
sl@0
   161
							if the client was registered to be thread relative and this API is not 
sl@0
   162
							called from the same thread or if ID is user side client id 
sl@0
   163
							or if any of the specified resource does not support dependency.
sl@0
   164
		KErrNotFound		if any of the specified resource could not found in the resource list or 
sl@0
   165
		                    dependency link does not exist between the specified resources.
sl@0
   166
sl@0
   167
@pre Interrupts must be enabled
sl@0
   168
@pre Kernel must be unlocked
sl@0
   169
@pre No fast mutex can be held
sl@0
   170
@pre Call in a thread context but not from null thread or DFC thread1
sl@0
   171
@pre Can be used in a device driver.
sl@0
   172
*/
sl@0
   173
inline TInt PowerResourceManager::DeRegisterResourceDependency(TUint aClientId, TUint aResourceId1, TUint aResourceId2)
sl@0
   174
	{
sl@0
   175
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">PowerResourceManager::DeRegisterResourceDependency"));
sl@0
   176
	return ControlIO(aClientId, KResManControlIoDeregisterDependency, (TAny*)aResourceId1, (TAny*)aResourceId2);
sl@0
   177
	}
sl@0
   178
sl@0
   179
/**
sl@0
   180
@internalComponent
sl@0
   181
@released 9.5
sl@0
   182
sl@0
   183
Request to update with number of dependent resources for the specified resource. 
sl@0
   184
sl@0
   185
@param aResourceId Id of the resource whose number of dependents is requested
sl@0
   186
@param aNumDepResources On success will be updated with number of dependent resources.
sl@0
   187
sl@0
   188
@return KErrNone			if successful
sl@0
   189
		KErrAccessDenied	if the client ID could not be found in the list of registered clients or
sl@0
   190
							if the client was registered to be thread relative and this API is not 
sl@0
   191
							called from the same thread or if ID is user side client id 
sl@0
   192
		KErrNotSupported	if this API is called before PRM is fully intialised or if the resource ID 
sl@0
   193
		                    does not correspond to dependency resource 
sl@0
   194
		KErrNotFound		if the resource could not be found in the resource list. 
sl@0
   195
sl@0
   196
@pre Interrupts must be enabled
sl@0
   197
@pre Kernel must be unlocked
sl@0
   198
@pre No fast mutex can be held
sl@0
   199
@pre Call in a thread context but not from null thread or DFC thread1
sl@0
   200
@pre Can be used in a device driver.
sl@0
   201
*/
sl@0
   202
inline TInt PowerResourceManager::GetNumDependentsForResource(TUint aClientId, TUint aResourceId, TUint& aNumDepResource)
sl@0
   203
	{
sl@0
   204
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">PowerResourceManager::GetNumDependentsForResource"));
sl@0
   205
	return ControlIO(aClientId, KResManControlIoGetNumDependents, (TAny*)aResourceId, (TAny*)&aNumDepResource);
sl@0
   206
	}
sl@0
   207
sl@0
   208
/**
sl@0
   209
@internalComponent
sl@0
   210
@released 9.5
sl@0
   211
sl@0
   212
Request to update the specified array with dependent resource Id's of the specified resource. 
sl@0
   213
sl@0
   214
@param aResourceId Id of the resource whose dependent resource Id's are requested.
sl@0
   215
@param aResIdArray On success array will be updated with the dependent resource information. Client need to 
sl@0
   216
					create the array in kernel heap or data space.
sl@0
   217
@param aNumDepResources Specifies the size of array. On success, updated with actual number of dependent resources.
sl@0
   218
sl@0
   219
@return KErrNone			if successful
sl@0
   220
		KErrAccessDenied	if the client ID could not be found in the list of registered clients or
sl@0
   221
							if the client was registered to be thread relative and this API is not 
sl@0
   222
							called from the same thread or if ID is user side client id 
sl@0
   223
		KErrNotSupported	if this API is called before PRM is fully initialised or if the resource ID 
sl@0
   224
		                    does not correspond to dependency resource 
sl@0
   225
		KErrNotFound		if the resource could not be found in the resource list. 
sl@0
   226
		KErrArgument		if passed array is null or pass dependent resource number is 0.
sl@0
   227
sl@0
   228
@pre Interrupts must be enabled
sl@0
   229
@pre Kernel must be unlocked
sl@0
   230
@pre No fast mutex can be held
sl@0
   231
@pre Call in a thread context but not from null thread or DFC thread1
sl@0
   232
@pre Can be used in a device driver.
sl@0
   233
*/
sl@0
   234
inline TInt PowerResourceManager::GetDependentsIdForResource(TUint aClientId, TUint aResourceId, TAny* aResIdArray, 
sl@0
   235
																							TUint& aNumDepResources)
sl@0
   236
	{
sl@0
   237
	__KTRACE_OPT(KRESMANAGER, Kern::Printf(">PowerResourceManager::GetDependentsIdForResource"));
sl@0
   238
	return ControlIO(aClientId, KResManControlIoGetDependentsId, (TAny*)aResourceId, (TAny*)aResIdArray, 
sl@0
   239
																							(TAny*)&aNumDepResources);
sl@0
   240
	}
sl@0
   241
sl@0
   242
#endif