os/kernelhwsrv/kernel/eka/include/drivers/resmanus.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
// Resmanus.h
sl@0
    18
//
sl@0
    19
//
sl@0
    20
sl@0
    21
// Base classes for implementating power resource support (Kernel-side only)
sl@0
    22
sl@0
    23
/**
sl@0
    24
@file
sl@0
    25
@internalComponent
sl@0
    26
*/
sl@0
    27
#ifndef __RESMANUS_H__
sl@0
    28
#define __RESMANUS_H__
sl@0
    29
sl@0
    30
#include <platform.h>
sl@0
    31
#include <d32resmanus.h>
sl@0
    32
sl@0
    33
#define USERSIDE_LDD
sl@0
    34
#include <drivers/resourcecontrol.h>	// For class DResourceController
sl@0
    35
sl@0
    36
#include <e32ver.h>
sl@0
    37
#include <e32des8.h>	// for HBufC8
sl@0
    38
sl@0
    39
// Use the following macro for debug output of request-tracking information
sl@0
    40
// #define _DUMP_TRACKERS
sl@0
    41
sl@0
    42
const TInt KResManUsMajorVersionNumber = 1;
sl@0
    43
const TInt KResManUsMinorVersionNumber = 0;
sl@0
    44
const TInt KResManUsBuildVersionNumber = KE32BuildVersionNumber;
sl@0
    45
sl@0
    46
const TInt KMaxNumChannels = 4;	// Limit for the number of channels to be open
sl@0
    47
sl@0
    48
const TInt KNumClientNamesResCtrl	= 10; // Default number for kernel plus user side clients
sl@0
    49
const TInt KNumClientNamesUserSide	= 10; // Sized as above (client may have PlatSec capabilities for access)
sl@0
    50
const TInt KNumResourceInfoResCtrl	= 25; // To contain object types used by Resource Controller
sl@0
    51
const TInt KNumResourceInfoUserSide	= 25; // To contain object types used by Client
sl@0
    52
const TInt KNumResourceDependencies = 5; // Default number of dependencies for a resource
sl@0
    53
sl@0
    54
const TUint8 KAllResInfoStored = 0xff;
sl@0
    55
const TUint8 KAllClientInfoStored = 0xff;
sl@0
    56
sl@0
    57
enum TAsyncOpType
sl@0
    58
	{
sl@0
    59
	EGetState,
sl@0
    60
	ESetState,
sl@0
    61
	ENotify
sl@0
    62
	};
sl@0
    63
sl@0
    64
#define USER_SIDE_CLIENT_BIT_MASK 0x4000 //Bit 14
sl@0
    65
sl@0
    66
sl@0
    67
class DChannelResManUs;
sl@0
    68
sl@0
    69
/*
sl@0
    70
	Classes used to track client usage
sl@0
    71
*/
sl@0
    72
sl@0
    73
class TTrackingControl
sl@0
    74
	{
sl@0
    75
	public:
sl@0
    76
	DChannelResManUs* iOwningChannel;
sl@0
    77
	SDblQue* iFreeQue;
sl@0
    78
	SDblQue* iBusyQue;
sl@0
    79
	TAsyncOpType iType;
sl@0
    80
	TUint8 iReserved1; // reserved for future expansion
sl@0
    81
	TUint8 iReserved2; // reserved for future expansion
sl@0
    82
	TUint8 iReserved3; // reserved for future expansion
sl@0
    83
	};
sl@0
    84
sl@0
    85
class TTrackingBuffer : public SDblQueLink
sl@0
    86
	{
sl@0
    87
	public:
sl@0
    88
	inline void SetTrackingControl(TTrackingControl* aControl){iTrackingControl=aControl;};
sl@0
    89
	inline TTrackingControl* GetTrackingControl(){return iTrackingControl;};
sl@0
    90
	inline TUint GetResourceId(){return iResourceId;};
sl@0
    91
	inline void SetResourceId(TUint aResourceId){iResourceId=aResourceId;};
sl@0
    92
	inline SDblQue* GetQue() {return iQue;};
sl@0
    93
	inline void SetQue(SDblQue* aQue) {iQue=aQue;};
sl@0
    94
sl@0
    95
	private:
sl@0
    96
	TTrackingControl* iTrackingControl;
sl@0
    97
	SDblQue* iQue;
sl@0
    98
	TUint iResourceId;
sl@0
    99
	};
sl@0
   100
sl@0
   101
class TTrackGetStateBuf : public TTrackingBuffer
sl@0
   102
	{
sl@0
   103
	public:
sl@0
   104
	TTrackGetStateBuf(TPowerResourceCbFn aFn, TAny* aPtr, 
sl@0
   105
					TDfcQue* aQue, TInt aPriority);
sl@0
   106
	~TTrackGetStateBuf();
sl@0
   107
sl@0
   108
	public:
sl@0
   109
	TPowerResourceCb iCtrlBlock;
sl@0
   110
	TClientDataRequest2<TInt,TInt>* iRequest;
sl@0
   111
	};
sl@0
   112
sl@0
   113
class TTrackSetStateBuf : public TTrackingBuffer
sl@0
   114
	{
sl@0
   115
	public:
sl@0
   116
	TTrackSetStateBuf(TPowerResourceCbFn aFn, TAny* aPtr, 
sl@0
   117
					TDfcQue* aQue, TInt aPriority);
sl@0
   118
	~TTrackSetStateBuf();
sl@0
   119
 	public:
sl@0
   120
	TPowerResourceCb iCtrlBlock;
sl@0
   121
	TClientRequest* iRequest;
sl@0
   122
	};
sl@0
   123
sl@0
   124
class TTrackNotifyBuf : public TTrackingBuffer
sl@0
   125
	{
sl@0
   126
	public:
sl@0
   127
	TTrackNotifyBuf(TPowerResourceCbFn aFn, TAny* aPtr, 
sl@0
   128
					TDfcQue* aQue, TInt aPriority);
sl@0
   129
	~TTrackNotifyBuf();
sl@0
   130
	public:
sl@0
   131
	DPowerResourceNotification iNotifyBlock;
sl@0
   132
	TClientRequest* iRequest;
sl@0
   133
	};
sl@0
   134
sl@0
   135
sl@0
   136
/* 
sl@0
   137
	Power resource logical device
sl@0
   138
	The class representing the power resource logical device
sl@0
   139
*/
sl@0
   140
class DDeviceResManUs : public DLogicalDevice
sl@0
   141
    {
sl@0
   142
    public:
sl@0
   143
    /**
sl@0
   144
     * The constructor
sl@0
   145
     */
sl@0
   146
    DDeviceResManUs();
sl@0
   147
    /**
sl@0
   148
     * The destructor
sl@0
   149
     */
sl@0
   150
    ~DDeviceResManUs();
sl@0
   151
    /**
sl@0
   152
     * Second stage constructor - install the device
sl@0
   153
     */
sl@0
   154
    virtual TInt Install();
sl@0
   155
    /**
sl@0
   156
     * Get the Capabilites of the device
sl@0
   157
     * @param aDes descriptor that will contain the returned capibilites
sl@0
   158
     */
sl@0
   159
    virtual void GetCaps(TDes8 &aDes) const;
sl@0
   160
    /**
sl@0
   161
     * Create a logical channel to the device
sl@0
   162
     */
sl@0
   163
    virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
   164
sl@0
   165
	public:
sl@0
   166
#ifndef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
   167
	TDfcQue* iSharedDfcQue; // To allow access from device entry point
sl@0
   168
#else
sl@0
   169
	TDynamicDfcQue* iSharedDfcQue; // To allow LDD unload/re-load in testing
sl@0
   170
#endif
sl@0
   171
    };
sl@0
   172
sl@0
   173
sl@0
   174
sl@0
   175
	// The logical channel for power resource devices
sl@0
   176
class DChannelResManUs : public DLogicalChannel
sl@0
   177
    {
sl@0
   178
    public:
sl@0
   179
sl@0
   180
	/*
sl@0
   181
     * The constructor 
sl@0
   182
     */
sl@0
   183
    DChannelResManUs();
sl@0
   184
	/*   
sl@0
   185
     * The destructor
sl@0
   186
     */
sl@0
   187
    ~DChannelResManUs();
sl@0
   188
sl@0
   189
	// Helper methods
sl@0
   190
	TInt RequestUserHandle(DThread* aThread, TOwnerType aType);
sl@0
   191
	void FreeTrackingBuffer(TTrackingBuffer*& aBuffer);
sl@0
   192
sl@0
   193
	inline TInt ClientHandle() {return iClientHandle;};
sl@0
   194
sl@0
   195
    /**
sl@0
   196
     * Create a logical power resource channel
sl@0
   197
     * @param aUnit The channel number to create
sl@0
   198
     * @param anInfo not used, can be NULL
sl@0
   199
     * @param aVer The minimun driver version allowed
sl@0
   200
     * @return KErrNone if channel created
sl@0
   201
     */
sl@0
   202
    virtual TInt DoCreate(TInt aUnit, const TDesC8* aInfo, const TVersion& aVer);
sl@0
   203
sl@0
   204
    protected:
sl@0
   205
    /**
sl@0
   206
     * Handle a message from the channels user
sl@0
   207
     * @param aMsg The message to handle
sl@0
   208
     */
sl@0
   209
    virtual void HandleMsg(TMessageBase* aMsg);	// Note: this is a pure virtual in DLogicalChannel
sl@0
   210
sl@0
   211
	virtual TInt SendMsg(TMessageBase* aMsg);
sl@0
   212
sl@0
   213
	TInt SendControl(TMessageBase* aMsg);
sl@0
   214
sl@0
   215
	TInt SendRequest(TMessageBase* aMsg);
sl@0
   216
    /**
sl@0
   217
     * Cancel an outstanding request
sl@0
   218
     * @param aMask A mask containing the requests to be canceled
sl@0
   219
     */
sl@0
   220
    void DoCancel(TInt aMask);	// Name for convenience!
sl@0
   221
    /**
sl@0
   222
     * Preform a control operation on the channel
sl@0
   223
     * Control operations are:
sl@0
   224
     * - Get the current configuration
sl@0
   225
     * - Configure the channel
sl@0
   226
     * - Set the MAC address for the channel
sl@0
   227
     * - Get the capibilities of the channel
sl@0
   228
     * @param aId The operation to preform
sl@0
   229
     * @param a1 The data to use with the operation
sl@0
   230
     * @param a2 can be NULL - not used
sl@0
   231
     * @return KErrNone if operation done
sl@0
   232
     */
sl@0
   233
   TInt DoControl(TInt aId, TAny* a1, TAny* a2); // Name for convenience!
sl@0
   234
    /**
sl@0
   235
     * Preform an asynchros operation on the channel
sl@0
   236
     * Operations are:
sl@0
   237
     * - Read data from the channel
sl@0
   238
     * - Write data to the channel
sl@0
   239
     * @param aId The operation to perform
sl@0
   240
     * @param aStatus The status object to use when complete
sl@0
   241
     * @param a1 The data to use
sl@0
   242
     * @param a2 The length of the data to use
sl@0
   243
     * @return KErrNone if operation started ok
sl@0
   244
     * @see Complete()
sl@0
   245
     */
sl@0
   246
    TInt DoRequest(TInt aId, TRequestStatus* aStatus, TAny* a1, TAny* a2); // Name for convenience!
sl@0
   247
sl@0
   248
sl@0
   249
	inline void SetClientHandle(TInt aHandle) {iClientHandle=aHandle;};
sl@0
   250
sl@0
   251
	TInt InitTrackingControl(TTrackingControl*& aTracker, TUint8 aType, TUint8 aNumBuffers);
sl@0
   252
#ifdef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
   253
	void GetNumCandidateAsyncResources(TUint& aNumResources);
sl@0
   254
	TInt GetCandidateAsyncResourceId(TUint aIndex, TUint& aResourceId);
sl@0
   255
	void GetNumCandidateSharedResources(TUint& aNumResources);
sl@0
   256
	TInt GetCandidateSharedResourceId(TUint aIndex, TUint& aResourceId);
sl@0
   257
#endif
sl@0
   258
sl@0
   259
    private:
sl@0
   260
	static void RegistrationDfcFunc(TAny* aChannel);
sl@0
   261
	TInt RegisterWithResCtrlr();
sl@0
   262
	TInt GetValidName(const TDesC8* aInfo);
sl@0
   263
	void RemoveTrackingControl(TTrackingControl*& aTracker);
sl@0
   264
	TInt GetAndInitTrackingBuffer(TTrackingControl*& aTracker, TTrackingBuffer*& aBuffer, TUint aResourceId, TRequestStatus* aStatus);
sl@0
   265
	TInt GetStateBuffer(TTrackingControl*& aTracker, TTrackingBuffer*& aBuffer, TUint aResourceId, TInt *aState, TInt* aLevelOwnerPtr, TPowerResourceCb*& aCb, TRequestStatus* aStatus);
sl@0
   266
	TTrackingControl* MapRequestToTracker(TInt aRequestType);
sl@0
   267
	TInt CancelTrackerRequests(TTrackingControl* aTracker,TBool aSingleRsrc, TUint aResourceId, TRequestStatus* aStatus);
sl@0
   268
	TInt CancelRequestsOfType(TInt aRequestType, TRequestStatus* aStatus);
sl@0
   269
	TInt EnsureSizeIsSufficient(HBuf*& aBuffer, TInt aMinSize);
sl@0
   270
	TInt ExtractResourceInfo(const TPowerResourceInfoV01* aPwrResInfo, TResourceInfoBuf& aInfo);
sl@0
   271
#ifdef _DUMP_TRACKERS
sl@0
   272
	TInt DumpResource(const TPowerResourceInfoV01* aResource);
sl@0
   273
	TInt DumpTracker(TTrackingControl* aTracker);
sl@0
   274
#endif
sl@0
   275
#ifdef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
   276
	void CheckForCandidateAsyncResource(TPowerResourceInfoV01* aResource);
sl@0
   277
	void CheckForCandidateSharedResource(TPowerResourceInfoV01* aResource);
sl@0
   278
#endif
sl@0
   279
	typedef void ClientCopyFunc(TDes8*, const TPowerClientInfoV01*);
sl@0
   280
sl@0
   281
	// Registration and identification support
sl@0
   282
    public:
sl@0
   283
	DThread* iClient;
sl@0
   284
sl@0
   285
	DPowerResourceController* iPddPtr;
sl@0
   286
sl@0
   287
	private:
sl@0
   288
	NFastMutex iBufferFastMutex;
sl@0
   289
	NFastSemaphore *iFastSem;
sl@0
   290
	TInt iClientHandle;
sl@0
   291
	TUint iNameProvidedLength;
sl@0
   292
	HBuf8* iUserNameUsed;
sl@0
   293
sl@0
   294
	// Support for usage tracking
sl@0
   295
	TTrackingControl *iGetStateTracker;
sl@0
   296
	TTrackingControl *iSetStateTracker;
sl@0
   297
	TTrackingControl *iListenableTracker;
sl@0
   298
sl@0
   299
	// Buffers to support acquisition of resource and client information
sl@0
   300
	HBuf8* iClientNamesResCtrl;		// Stores client information
sl@0
   301
	TUint iClientInfoStoredResId;	// The ID of the resource for which the data is stored (none=0, all=KAllClientInfoStored)
sl@0
   302
	TUint iClientInfoStoredNum;		// The number of clients for which data is stored
sl@0
   303
sl@0
   304
	HBuf8* iResourceInfoResCtrl;	// Stores resource information
sl@0
   305
	TUint iResInfoStoredClientId;	// The ID of the client for which the data is stored (none=0, all=KAllResInfoStored)
sl@0
   306
	TUint iResInfoStoredNum;		// The number of resources for which data is stored
sl@0
   307
sl@0
   308
	HBuf8* iResourceDependencyIds;	// To contain the identifiers for resource dependencies
sl@0
   309
	TUint iNumResDepsStored;
sl@0
   310
sl@0
   311
#ifdef RESOURCE_MANAGER_SIMULATED_PSL
sl@0
   312
	// Support for testing
sl@0
   313
	TBool iHaveLongLatencyResource;
sl@0
   314
sl@0
   315
	// Array for candidate resources to use for testing
sl@0
   316
	// Store a maximum of MAX_NUM_CANDIDATE_RESOURCES
sl@0
   317
	#define MAX_NUM_CANDIDATE_RESOURCES 10
sl@0
   318
	TUint iNoCandidateAsyncRes;
sl@0
   319
	TUint iCandidateAsyncResIds[MAX_NUM_CANDIDATE_RESOURCES];
sl@0
   320
	TUint iNoCandidateSharedRes;
sl@0
   321
	TUint iCandidateSharedResIds[MAX_NUM_CANDIDATE_RESOURCES];
sl@0
   322
#endif
sl@0
   323
sl@0
   324
	// 8-bit values, placed here to aid size management
sl@0
   325
	TUint8 iClientInfoValid;		// To indicate if a valid set of client data is stored
sl@0
   326
	TUint8 iResInfoValid;			// To indicate if a valid set of resource data is stored
sl@0
   327
	TUint8 iResDepsValid;			// Guard flag for the RArray
sl@0
   328
sl@0
   329
	TUint8 iReserved1;				 // reserved for future expansion
sl@0
   330
sl@0
   331
    };
sl@0
   332
sl@0
   333
sl@0
   334
#endif