os/kernelhwsrv/kernel/eka/include/drivers/resourceman.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\resourceman.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @publishedPartner
sl@0
    21
 @released 9.5
sl@0
    22
*/
sl@0
    23
#ifndef __RESOURCEMAN_H__
sl@0
    24
#define __RESOURCEMAN_H__
sl@0
    25
sl@0
    26
#ifdef PRM_ENABLE_EXTENDED_VERSION
sl@0
    27
#include <drivers/resource_extend.h>
sl@0
    28
#else
sl@0
    29
#include <drivers/resource.h>
sl@0
    30
#endif
sl@0
    31
sl@0
    32
static const TUint KResManControlIoGetVersion=0x0;
sl@0
    33
static const TUint KResManControlIoRegisterDynamicResource=0x1;
sl@0
    34
static const TUint KResManControlIoDeregisterDynamicResource=0x2;
sl@0
    35
static const TUint KResManControlIoRegisterDependency=0x3;
sl@0
    36
static const TUint KResManControlIoDeregisterDependency=0x4;
sl@0
    37
static const TUint KResManControlIoGetNumDependents=0x5;
sl@0
    38
static const TUint KResManControlIoGetDependentsId=0x6;
sl@0
    39
sl@0
    40
//Resource controller versions
sl@0
    41
static const TUint KResControllerBasicVersion=0x0;
sl@0
    42
static const TUint KResControllerExtendedVersion=0x01;
sl@0
    43
sl@0
    44
/**
sl@0
    45
Resource Manager API class
sl@0
    46
API's are exported from this class to kernel side components
sl@0
    47
*/
sl@0
    48
NONSHARABLE_CLASS (PowerResourceManager)
sl@0
    49
	{
sl@0
    50
public:
sl@0
    51
    IMPORT_C static TInt RegisterClient(TUint& aClientId, const TDesC8& aName, TOwnerType aType=EOwnerProcess);
sl@0
    52
    IMPORT_C static TInt DeRegisterClient(TUint aClientId);
sl@0
    53
    IMPORT_C static TInt GetClientName(TUint aClientId, TUint aTargetClientId, TDes8& aName);
sl@0
    54
    IMPORT_C static TInt GetClientId(TUint aClientId, TDesC8& aClientName, TUint& aTargetClientId);
sl@0
    55
    IMPORT_C static TInt GetResourceId(TUint aClientId, TDesC8& aResourceName, TUint& aResourceId);
sl@0
    56
    IMPORT_C static TInt GetResourceInfo(TUint aClientId, TUint aResourceId, TAny* aInfo);
sl@0
    57
    IMPORT_C static TInt GetNumResourcesInUseByClient(TUint aClientId, TUint aTargetClientId, TUint& aNumResources);
sl@0
    58
    IMPORT_C static TInt GetInfoOnResourcesInUseByClient(TUint aClientId, TUint aTargetClientId, TUint& aNumResources, TAny* aInfo);
sl@0
    59
    IMPORT_C static TInt GetNumClientsUsingResource(TUint aClientId, TUint aResourceId, TUint& aNumClients);
sl@0
    60
    IMPORT_C static TInt GetInfoOnClientsUsingResource(TUint aClientId, TUint aResourceId, TUint& aNumClients, TAny* aInfo);
sl@0
    61
    IMPORT_C static TInt AllocReserve(TUint aClientId, TUint8 aNumCl, TUint8 aNumRm);
sl@0
    62
    IMPORT_C static TInt ChangeResourceState(TUint aClientId, TUint aResourceId, TInt aNewState, TPowerResourceCb* aCb=NULL);
sl@0
    63
    IMPORT_C static TInt GetResourceState(TUint aClientId, TUint aResourceId, TBool aCached, TInt& aState, TInt& aLevelOwnerId);
sl@0
    64
    IMPORT_C static TInt GetResourceState(TUint aClientId, TUint aResourceId, TBool aCached, TPowerResourceCb& aCb);
sl@0
    65
    IMPORT_C static TInt CancelAsyncRequestCallBack(TUint aClientId, TUint aResourceId, TPowerResourceCb& aCb);
sl@0
    66
    IMPORT_C static TInt RequestNotification(TUint aClientId, TUint aResourceId, DPowerResourceNotification& aN);
sl@0
    67
    IMPORT_C static TInt RequestNotification(TUint aClientId, TUint aResourceId, DPowerResourceNotification& aN, TInt aThreshold, TBool aDirection);
sl@0
    68
    IMPORT_C static TInt CancelNotification(TUint aClientId, TUint aResourceId, DPowerResourceNotification& aN);
sl@0
    69
	IMPORT_C static TInt DeRegisterClientLevelFromResource(TUint aClientId, TUint aResourceId);
sl@0
    70
    IMPORT_C static TInt ControlIO(TUint aClientId, TUint aFunction, TAny* aParam1, TAny* aParam2, TAny* aParam3 = NULL);
sl@0
    71
	inline static TInt GetResourceControllerVersion(TUint aClientId, TUint& aVersion);
sl@0
    72
#ifdef PRM_ENABLE_EXTENDED_VERSION
sl@0
    73
	inline static TInt RegisterDynamicResource(TUint aClientId, DDynamicPowerResource* aResource, TUint& aResourceId);
sl@0
    74
	inline static TInt DeRegisterDynamicResource(TUint aClientId, TUint aResourceId, TInt* aState);
sl@0
    75
	inline static TInt RegisterResourceDependency(TUint aClientId, SResourceDependencyInfo* aResDependecyInfo1, SResourceDependencyInfo* aResDependencyInfo2);
sl@0
    76
	inline static TInt DeRegisterResourceDependency(TUint aClientId, TUint aResourceId1, TUint aResourceId2);
sl@0
    77
	inline static TInt GetNumDependentsForResource(TUint aClientId, TUint aResourceId, TUint& aNumDepResource);
sl@0
    78
	inline static TInt GetDependentsIdForResource(TUint aClientId, TUint aResourceId, TAny* aResIdArray, TUint& aNumDepResources);
sl@0
    79
#endif
sl@0
    80
	};    
sl@0
    81
sl@0
    82
#include <drivers/resourceman.inl>
sl@0
    83
sl@0
    84
#endif //__RESOURCEMAN_H__