os/kernelhwsrv/kernel/eka/include/drivers/pbus.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) 1998-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\pbus.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
sl@0
    22
*/
sl@0
    23
sl@0
    24
#ifndef __P32STD_H__
sl@0
    25
#define __P32STD_H__
sl@0
    26
#include <kernel/kpower.h>
sl@0
    27
sl@0
    28
#ifdef _DEBUG
sl@0
    29
#define __ENABLE_SIMULATED_MEDIA_CHANGE	// Enables simulation of media change events using ControlIO
sl@0
    30
#endif
sl@0
    31
sl@0
    32
/********************************************
sl@0
    33
 * Peripheral Bus Definitions
sl@0
    34
 ********************************************/
sl@0
    35
sl@0
    36
/**
sl@0
    37
Defines the maximum number of media change objects.
sl@0
    38
sl@0
    39
@see DMediaChangeBase
sl@0
    40
*/
sl@0
    41
const TInt KMaxMediaChanges=4;
sl@0
    42
sl@0
    43
sl@0
    44
sl@0
    45
/**
sl@0
    46
Defines the maximum number of power supply unit (PSU) objects.
sl@0
    47
sl@0
    48
@see DPBusPsuBase
sl@0
    49
*/
sl@0
    50
const TInt KMaxPBusVccs=4;
sl@0
    51
sl@0
    52
sl@0
    53
sl@0
    54
sl@0
    55
/**
sl@0
    56
    Defines the state of the media, i.e. whether the media door is
sl@0
    57
    open or closed.
sl@0
    58
    
sl@0
    59
    A value of this type is returned by DMediaChangeBase::MediaState().
sl@0
    60
    
sl@0
    61
    @see DMediaChangeBase::MediaState()
sl@0
    62
*/
sl@0
    63
enum TMediaState {
sl@0
    64
                 /**
sl@0
    65
                 Indicates that the media door is open.
sl@0
    66
                 */
sl@0
    67
                 EDoorOpen,
sl@0
    68
                 
sl@0
    69
                 /**
sl@0
    70
                 Indicates that the media door is closed.
sl@0
    71
                 */
sl@0
    72
                 EDoorClosed};
sl@0
    73
sl@0
    74
sl@0
    75
sl@0
    76
sl@0
    77
enum TPBusType {EPBusTypeNone,EPBusTypePcCard,EPBusTypeMultiMedia,EPBusTypeUSB};
sl@0
    78
sl@0
    79
sl@0
    80
sl@0
    81
sl@0
    82
enum TPBusState
sl@0
    83
	{
sl@0
    84
	EPBusCardAbsent=0,
sl@0
    85
	EPBusOff=1,
sl@0
    86
	EPBusPoweringUp=2,
sl@0
    87
	EPBusOn=3,
sl@0
    88
	EPBusPsuFault=4,
sl@0
    89
	EPBusPowerUpPending=5,
sl@0
    90
	};
sl@0
    91
sl@0
    92
typedef void (*TPBusCallBackFn)(TAny* aPtr, TInt aReason, TAny* a1, TAny* a2);
sl@0
    93
typedef void (*TPBusIsr)(TAny* aPtr, TInt anId);
sl@0
    94
sl@0
    95
class DPBusSocket;
sl@0
    96
class TPBusCallBack : public SDblQueLink
sl@0
    97
	{
sl@0
    98
public:
sl@0
    99
	enum TCallBackReason
sl@0
   100
		{
sl@0
   101
		EPBusStateChange=0,
sl@0
   102
		EPBusCustomNotification=1,	// Make this the last value
sl@0
   103
		};
sl@0
   104
public:
sl@0
   105
	IMPORT_C TPBusCallBack();
sl@0
   106
	IMPORT_C TPBusCallBack(TPBusCallBackFn aFunction, TAny* aPtr);
sl@0
   107
	IMPORT_C TPBusCallBack(TPBusIsr anIsr, TAny* aPtr, TUint anIntMask);
sl@0
   108
public:
sl@0
   109
	inline void NotifyPBusStateChange(TInt aState, TInt anError);
sl@0
   110
	inline void NotifyCustom(TInt aParam, TInt anError);
sl@0
   111
	inline void Isr(TInt anId);
sl@0
   112
public:
sl@0
   113
	inline TInt PowerUp();
sl@0
   114
	inline TInt PBusState();
sl@0
   115
	inline TDfcQue* DfcQ();
sl@0
   116
	inline void Add();
sl@0
   117
	IMPORT_C void SetSocket(TInt aSocket);
sl@0
   118
	IMPORT_C void Remove();
sl@0
   119
public:
sl@0
   120
	DPBusSocket* iSocket;
sl@0
   121
	TPBusCallBackFn iFunction;
sl@0
   122
	TUint iIntMask;
sl@0
   123
	TPBusIsr iIsr;
sl@0
   124
	TAny* iPtr;
sl@0
   125
	};
sl@0
   126
sl@0
   127
sl@0
   128
sl@0
   129
class DMediaChangeBase : public DBase
sl@0
   130
/**
sl@0
   131
Abstract Base class to handle the insertion and removal of removable media.
sl@0
   132
sl@0
   133
This class is intended for derivation at the media and variant layers, 
sl@0
   134
which handles the media/variant specific functionality such as interrupt detection, 
sl@0
   135
and passes notifications of media change to the peripheral bus socket layers.
sl@0
   136
sl@0
   137
@see DMMCMediaChange
sl@0
   138
sl@0
   139
@publishedPartner
sl@0
   140
@released
sl@0
   141
*/
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	IMPORT_C DMediaChangeBase(TInt aMediaChangeNum);
sl@0
   145
	IMPORT_C virtual TInt Create();
sl@0
   146
public:
sl@0
   147
	IMPORT_C void DoorOpenService();
sl@0
   148
	IMPORT_C void DoorClosedService();
sl@0
   149
	void MediaChangeEvent(TBool aDoorOpened);
sl@0
   150
	void AcknowledgeEvent(TBool aDoorOpened);
sl@0
   151
	static void DoorOpenDfcFn(TAny* aPtr);
sl@0
   152
public:
sl@0
   153
    /**
sl@0
   154
	 * Implemented at the media and variant layers.
sl@0
   155
	 * Forces a media change, performs actions as if a door open has occurred.
sl@0
   156
	 * Used for powering down and restarting media.
sl@0
   157
	 *
sl@0
   158
	 * @see DMediaChangeBase::DoDoorOpen()
sl@0
   159
	 */
sl@0
   160
	IMPORT_C virtual void ForceMediaChange()=0;
sl@0
   161
	
sl@0
   162
	/**
sl@0
   163
	 * Called by DMediaChangeBase::AcknowledgeEvent when the door is opened.
sl@0
   164
	 * Implemented at the media and variant layer, DoDoorOpen is invoked 
sl@0
   165
	 * in response to the variant calling ::DoDoorOpenService upon detection of 
sl@0
   166
	 * a door open event. 
sl@0
   167
	 *
sl@0
   168
	 * @see DMediaChangeBase::DoorOpenService()
sl@0
   169
	 * @see DMediaChangeBase::DoDoorClosed()
sl@0
   170
	 */
sl@0
   171
	IMPORT_C virtual void DoDoorOpen()=0;
sl@0
   172
	
sl@0
   173
	/**
sl@0
   174
	 * Called by DMediaChangeBase::AcknowledgeEvent when the door is closed.
sl@0
   175
	 * Implemented at the media and variant layer, DoDoorClosed is invoked 
sl@0
   176
	 * in response to the variant calling ::DoorOpenService upon detection of 
sl@0
   177
	 * a door closed event. 
sl@0
   178
	 *
sl@0
   179
	 * @see DMediaChangeBase::DoorOpenService()
sl@0
   180
	 * @see DMediaChangeBase::DoDoorOpen()
sl@0
   181
	 */
sl@0
   182
	IMPORT_C virtual void DoDoorClosed()=0;
sl@0
   183
	
sl@0
   184
	/**
sl@0
   185
	 * Returns the current state of the door.
sl@0
   186
	 * Implemented at the variant layer to provide information as to the state of the door.
sl@0
   187
	 *
sl@0
   188
	 * @return TMediaState enumeration describing the state of door (EDoorOpen, EDoorClosed)
sl@0
   189
	 */	
sl@0
   190
	IMPORT_C virtual TMediaState MediaState()=0;
sl@0
   191
public:
sl@0
   192
    /** Unique media change ID, identification scheme is defined by derived classes*/
sl@0
   193
	TInt iMediaChangeNum;
sl@0
   194
	
sl@0
   195
	/** Count of media events yet to be acknowledged.*/
sl@0
   196
	TInt iReplyCount;
sl@0
   197
	
sl@0
   198
	/** Door Open DFC queue.*/
sl@0
   199
	TDfc iDoorOpenDfc;
sl@0
   200
	};
sl@0
   201
sl@0
   202
sl@0
   203
sl@0
   204
sl@0
   205
/**
sl@0
   206
    Defines the required state of the PSU.
sl@0
   207
    
sl@0
   208
    A value of this type is passed to DPBusPsuBase::DoSetState().
sl@0
   209
    
sl@0
   210
    @see DPBusPsuBase::DoSetState()
sl@0
   211
*/
sl@0
   212
enum TPBusPsuState {
sl@0
   213
                   /**
sl@0
   214
                   Indicates that the PSU is to be turned off.
sl@0
   215
                   */
sl@0
   216
                   EPsuOff,
sl@0
   217
                   
sl@0
   218
                   /**
sl@0
   219
                   Indicates that the PSU is to be turned on in current
sl@0
   220
                   limit mode.
sl@0
   221
                   
sl@0
   222
                   Some power supplies can be turned on in a mode that only
sl@0
   223
                   supplies a limited amount of current to the device.
sl@0
   224
                   A faulty device drawing excessive current would cause
sl@0
   225
                   the PSU output voltage to fall, and would be detected
sl@0
   226
                   by the PSU's voltage checking mechanism. After a brief
sl@0
   227
                   checking period in current limit mode, the PSU is
sl@0
   228
                   subsequently turned fully on.
sl@0
   229
                   
sl@0
   230
                   For PSU's that don't support current limit mode, this is
sl@0
   231
                   treated in the same way as EPsuOnFull.
sl@0
   232
                   */
sl@0
   233
                   EPsuOnCurLimit,
sl@0
   234
                   
sl@0
   235
                   /**
sl@0
   236
                   Indicates that the PSU is to be turned fully on.
sl@0
   237
                   */
sl@0
   238
                   EPsuOnFull
sl@0
   239
                   };
sl@0
   240
sl@0
   241
sl@0
   242
sl@0
   243
sl@0
   244
enum TPBusPsuStatus {EPsuStatOff,EPsuStatOn,EPsuStatError};
sl@0
   245
sl@0
   246
sl@0
   247
sl@0
   248
sl@0
   249
const TInt KPBusPsuTickInterval=1000000;		// Units 1uS
sl@0
   250
sl@0
   251
sl@0
   252
sl@0
   253
sl@0
   254
/**
sl@0
   255
    A bit value that is set into the TPBusPsuInfo::iVoltCheckInterval member to
sl@0
   256
    indicate that the checking of the PSU voltage level can be performed when
sl@0
   257
    the power supply is first turned on.
sl@0
   258
*/
sl@0
   259
const TUint KPsuChkWhileOn=0x00000001;	
sl@0
   260
sl@0
   261
sl@0
   262
sl@0
   263
sl@0
   264
/**
sl@0
   265
    A bit value that is set into the TPBusPsuInfo::iVoltCheckInterval member to
sl@0
   266
    indicate that the checking of the PSU voltage level can be performed
sl@0
   267
    periodically when the power supply is on.
sl@0
   268
*/
sl@0
   269
const TUint KPsuChkOnPwrUp=0x00000002;
sl@0
   270
sl@0
   271
sl@0
   272
sl@0
   273
sl@0
   274
/**
sl@0
   275
    Defines the methods that can be used by the platform hardware for checking
sl@0
   276
	the VCC voltage while on.
sl@0
   277
*/
sl@0
   278
enum TPsuVoltChkMethod {
sl@0
   279
                       /**
sl@0
   280
                       Indicates a simple good/bad check method normally using
sl@0
   281
                       a comparator arrangement.
sl@0
   282
                       */
sl@0
   283
                       EPsuChkComparator,
sl@0
   284
                       
sl@0
   285
                       /**
sl@0
   286
                       Not implemented.
sl@0
   287
                       */
sl@0
   288
                       EPsuChkADCType1,
sl@0
   289
                       
sl@0
   290
                       /**
sl@0
   291
                       Not implemented.
sl@0
   292
                       */
sl@0
   293
                       EPsuChkADCType2
sl@0
   294
                       };
sl@0
   295
sl@0
   296
sl@0
   297
sl@0
   298
sl@0
   299
/**
sl@0
   300
    Encapsulates power supply information.
sl@0
   301
	
sl@0
   302
	An object of this type is passed to concrete implementations of
sl@0
   303
	DPBusPsuBase::PsuInfo(), which are required to fill
sl@0
   304
	the data members of the object. 
sl@0
   305
*/
sl@0
   306
class TPBusPsuInfo
sl@0
   307
	{
sl@0
   308
public:
sl@0
   309
    /**
sl@0
   310
    Indicates the voltage level, or range of voltages supported .
sl@0
   311
    
sl@0
   312
    The voltage level, or range of voltages is reported as a bit mask
sl@0
   313
    in the same format as defined for the OCR register.
sl@0
   314
    
sl@0
   315
    If the PSU supports voltage adjustment, rather than a single fixed value,
sl@0
   316
    then bit31 should be set to indicate this fact
sl@0
   317
    as well as setting the appropriate bits to indicate the adjustable voltage
sl@0
   318
    range supported.
sl@0
   319
    */
sl@0
   320
	TUint iVoltageSupported;
sl@0
   321
	
sl@0
   322
	/**
sl@0
   323
	The maximum current (in microAmps) that the PSU is able to supply.
sl@0
   324
	*/
sl@0
   325
	TInt iMaxCurrentInMicroAmps;
sl@0
   326
	
sl@0
   327
	/**
sl@0
   328
	Indicates whether the platform hardware has support for checking whether
sl@0
   329
	the voltage level of the PSU is within its expected voltage limit while turned on.
sl@0
   330
	
sl@0
   331
	Such a mechanism could detect when a faulty card is drawing excessive current.
sl@0
   332
	
sl@0
   333
	Set one or both of the bits KPsuChkWhileOn and KPsuChkOnPwrUp,
sl@0
   334
	if there is support for voltage checking.
sl@0
   335
	Set neither bit if there is no support for voltage checking.
sl@0
   336
	
sl@0
   337
	@see KPsuChkWhileOn
sl@0
   338
	@see KPsuChkOnPwrUp
sl@0
   339
	*/
sl@0
   340
	TUint iVoltCheckInterval;
sl@0
   341
	
sl@0
   342
	/**
sl@0
   343
	Indicates the method used by the platform hardware for checking
sl@0
   344
	the VCC voltage while on.
sl@0
   345
	
sl@0
   346
	The method used is identified using the values of
sl@0
   347
	the TPsuVoltChkMethod enum.
sl@0
   348
	
sl@0
   349
	@see TPsuVoltChkMethod
sl@0
   350
	@see DPBusPsuBase::DoCheckVoltage()
sl@0
   351
	*/
sl@0
   352
	TPsuVoltChkMethod iVoltCheckMethod;
sl@0
   353
	
sl@0
   354
	/**
sl@0
   355
	Bus not locked timeout period, in seconds, when no clients are registered.
sl@0
   356
	
sl@0
   357
    Set to 0 to disable the not locked timer.
sl@0
   358
	*/
sl@0
   359
    TInt iNotLockedTimeOut;
sl@0
   360
    
sl@0
   361
    /**
sl@0
   362
    Bus inactivity timeout period, in seconds, when clients are registered.
sl@0
   363
    
sl@0
   364
    Set to 0 to disable the inactivity timer.
sl@0
   365
    */
sl@0
   366
    TInt iInactivityTimeOut;
sl@0
   367
	};
sl@0
   368
sl@0
   369
sl@0
   370
typedef void (*PsuPwrDownCheckFn)(TAny*);
sl@0
   371
/**
sl@0
   372
Perherpial bus base class to control the power supply.
sl@0
   373
sl@0
   374
This class is intended for derivation at both the media driver and variant layer, 
sl@0
   375
which respectively handle the media/variant specific functionality of the power supply.
sl@0
   376
sl@0
   377
@see DMMCPsu
sl@0
   378
sl@0
   379
@publishedPartner
sl@0
   380
@released
sl@0
   381
*/
sl@0
   382
class DPBusPsuBase : public DBase
sl@0
   383
	{
sl@0
   384
public:
sl@0
   385
    /** Currently not in use. */
sl@0
   386
	enum TResetMode {
sl@0
   387
	                    /** Currently not in use.*/
sl@0
   388
	                    ENormalAndRestorable,
sl@0
   389
	                    /** Currently not in use.*/
sl@0
   390
	                    EQuickButRestorable,
sl@0
   391
	                    /** Currently not in use.*/
sl@0
   392
	                    EQuickAndNotRestorable
sl@0
   393
	                };
sl@0
   394
public:
sl@0
   395
	DPBusPsuBase(TInt aPsuNum, TInt aMediaChangeNum);
sl@0
   396
	IMPORT_C TInt SetState(TPBusPsuState aState);
sl@0
   397
	TPBusPsuStatus Status();
sl@0
   398
	TInt CheckVoltage(TUint aCheckStatus);
sl@0
   399
	void Reset();
sl@0
   400
public:
sl@0
   401
	TInt Create();
sl@0
   402
	IMPORT_C virtual TInt DoCreate();
sl@0
   403
	IMPORT_C virtual void DoTickService();
sl@0
   404
	IMPORT_C virtual TBool IsLocked();
sl@0
   405
public:
sl@0
   406
	IMPORT_C virtual void DoSetState(TPBusPsuState aState)=0;
sl@0
   407
	
sl@0
   408
	/**
sl@0
   409
	Base abstract method.
sl@0
   410
	Checks the voltage level of the PSU is as expected. 
sl@0
   411
	The result is returned by a call to DPBusPsuBase::ReceiveVoltageCheckResult(), 
sl@0
   412
	passing either KErrNone, KErrGeneral to indicate the pass/fail state or 
sl@0
   413
	KErrNotReady if the voltage check isn't complete.
sl@0
   414
    
sl@0
   415
	Provided at the variant layer.
sl@0
   416
	*/
sl@0
   417
	IMPORT_C virtual void DoCheckVoltage()=0;
sl@0
   418
	
sl@0
   419
	/**
sl@0
   420
	Fills in the supplied TPBusPsuInfo object with the characteristics of the platform.
sl@0
   421
	Provided at the variant layer.
sl@0
   422
	
sl@0
   423
	@param anInfo A reference to a TPBusPsuInfo to be filled in with the PSU characteristics.
sl@0
   424
	*/
sl@0
   425
	IMPORT_C virtual void PsuInfo(TPBusPsuInfo &anInfo)=0;
sl@0
   426
	
sl@0
   427
	IMPORT_C virtual void ReceiveVoltageCheckResult(TInt anError);
sl@0
   428
public:
sl@0
   429
	inline TUint VoltageSupported();
sl@0
   430
	inline void SetCurrLimited();
sl@0
   431
	inline TBool IsOff();
sl@0
   432
	inline TInt MaxCurrentInMicroAmps();
sl@0
   433
	inline void ResetInactivityTimer();
sl@0
   434
public:
sl@0
   435
	void PwrDownCheck();
sl@0
   436
	static void DoPwrDownCheck(TAny* aPtr);
sl@0
   437
public:
sl@0
   438
    /** Unique power supply unit identification number.*/
sl@0
   439
	TInt iPsuNum;
sl@0
   440
	
sl@0
   441
	/** Currently not in use. */
sl@0
   442
	TInt iMediaChangeNum;
sl@0
   443
	
sl@0
   444
	/**
sl@0
   445
	Indicates the method used by the platform hardware for checking
sl@0
   446
	the VCC voltage while on.
sl@0
   447
	
sl@0
   448
	The method used is identified using the values of
sl@0
   449
	the TPsuVoltChkMethod enum.
sl@0
   450
	
sl@0
   451
	@see TPsuVoltChkMethod
sl@0
   452
	@see DPBusPsuBase::DoCheckVoltage()
sl@0
   453
	*/
sl@0
   454
	TPsuVoltChkMethod iVoltCheckMethod;
sl@0
   455
	
sl@0
   456
	/** 
sl@0
   457
	Current PSU State.
sl@0
   458
	@see TPBusPsuState
sl@0
   459
	*/
sl@0
   460
	TPBusPsuState iState;
sl@0
   461
	
sl@0
   462
	/** PSU current is limited to a safe level. */
sl@0
   463
	TBool iCurrLimited;
sl@0
   464
	
sl@0
   465
	/** PSU Tick Timer */
sl@0
   466
	TTickLink iTickLink;
sl@0
   467
	
sl@0
   468
	/**
sl@0
   469
    Indicates the voltage level, or range of voltages supported .
sl@0
   470
    
sl@0
   471
    The voltage level, or range of voltages is reported as a bit mask
sl@0
   472
    in the same format as defined for the OCR register.
sl@0
   473
    
sl@0
   474
    If the PSU supports voltage adjustment, rather than a single fixed value,
sl@0
   475
    then bit31 should be set to indicate this fact
sl@0
   476
    as well as setting the appropriate bits to indicate the adjustable voltage
sl@0
   477
    range supported.
sl@0
   478
    */
sl@0
   479
	TUint iVoltageSupported;
sl@0
   480
	
sl@0
   481
	/**	The maximum current (in microAmps) that the PSU is able to supply. */  
sl@0
   482
	TInt iMaxCurrentInMicroAmps;
sl@0
   483
	
sl@0
   484
	/**
sl@0
   485
	Indicates whether the platform hardware has support for checking whether
sl@0
   486
	the voltage level of the PSU is within its expected voltage limit while turned on.
sl@0
   487
	
sl@0
   488
	Such a mechanism could detect when a faulty card is drawing excessive current.
sl@0
   489
	
sl@0
   490
	Set one or both of the bits KPsuChkWhileOn and KPsuChkOnPwrUp,
sl@0
   491
	if there is support for voltage checking.
sl@0
   492
	Set neither bit if there is no support for voltage checking.
sl@0
   493
	
sl@0
   494
	@see KPsuChkWhileOn
sl@0
   495
	@see KPsuChkOnPwrUp
sl@0
   496
	*/
sl@0
   497
	TUint iVoltCheckInterval;
sl@0
   498
	
sl@0
   499
	/** Bus inactivity counter. */
sl@0
   500
	TInt iInactivityCount;
sl@0
   501
	
sl@0
   502
	/** Bus not locked counter. */
sl@0
   503
	TInt iNotLockedCount;
sl@0
   504
	
sl@0
   505
	/** Bus inactivity timeout period, in seconds, when clients are registered. */
sl@0
   506
	TInt iInactivityTimeout;
sl@0
   507
	
sl@0
   508
	/** Bus not locked timeout period, in seconds, when no clients are registered. */
sl@0
   509
	TInt iNotLockedTimeout;
sl@0
   510
	
sl@0
   511
	/** DPBusSocket which the PSU powers. */
sl@0
   512
	DPBusSocket* iSocket;	// for the moment assume a PSU only powers one socket
sl@0
   513
	
sl@0
   514
	/**
sl@0
   515
	DFC to handle PSU Tick.
sl@0
   516
	@see DPBusPsuBase::DoTickService()
sl@0
   517
	@see TDfc
sl@0
   518
	*/
sl@0
   519
	TDfc iPsuDfc;
sl@0
   520
	
sl@0
   521
	/** Power Down Function to be utilised, default is PwrDownCheck */
sl@0
   522
	PsuPwrDownCheckFn iPwrDownCheckFn;
sl@0
   523
sl@0
   524
private:
sl@0
   525
	TUint32 reserved[4];
sl@0
   526
	};
sl@0
   527
sl@0
   528
NONSHARABLE_CLASS(DPBusPowerHandler) : public DPowerHandler
sl@0
   529
	{
sl@0
   530
public:
sl@0
   531
	DPBusPowerHandler(DPBusSocket* aSocket);
sl@0
   532
public: // from DPowerHandler
sl@0
   533
	// signals from manager to client
sl@0
   534
	void PowerUp();
sl@0
   535
	void PowerDown(TPowerState);
sl@0
   536
public:
sl@0
   537
	DPBusSocket* iSocket;
sl@0
   538
	};
sl@0
   539
sl@0
   540
/**	Abstract base class for a PBUS socket.
sl@0
   541
    DPBusSocket derived class object oversees the power supply and media change functionality with the socket. 
sl@0
   542
*/
sl@0
   543
NONSHARABLE_CLASS(DPBusSocket) : public DBase
sl@0
   544
	{
sl@0
   545
public:
sl@0
   546
	/**
sl@0
   547
	Panic codes to handle the invalid powerup and powerdown state of the PBUS. 
sl@0
   548
	@see TPBusState
sl@0
   549
	*/ 
sl@0
   550
	enum TPanic
sl@0
   551
		{
sl@0
   552
		/**
sl@0
   553
		Indicates the invalid door close state.
sl@0
   554
		*/
sl@0
   555
		EDoorCloseInvalidState=0,
sl@0
   556
		
sl@0
   557
		/**
sl@0
   558
		Indicates the invalid powerup state of PBUS, considered as invalid if iState is other than TPBusState while powering up. 
sl@0
   559
		*/
sl@0
   560
		EPowerUpInvalidState=1,	
sl@0
   561
		
sl@0
   562
		/** Indicates invalid handler state corresponding to powerup event */
sl@0
   563
		EPowerUpInvalidHandlerState=2,	
sl@0
   564
		
sl@0
   565
		/** Invalid return code corresponding to powerup event */
sl@0
   566
		EPowerUpInvalidReturnCode=3,
sl@0
   567
		
sl@0
   568
		/**
sl@0
   569
		Indicates the invalid powerdown state of the media device,
sl@0
   570
		considered as invalid if iState is other than TPBusState while powering down.
sl@0
   571
		*/
sl@0
   572
		EEmergencyPowerDownInvalidState=4,
sl@0
   573
		
sl@0
   574
		/**
sl@0
   575
		Indicates the invalid powerup state of the media device, 
sl@0
   576
		considered as invalid if iState is not in (EPBusCardAbsent,EPBusOff and EPBusPowerUpPending) while on transition from standby. 
sl@0
   577
		*/
sl@0
   578
		EMcPowerUpInvalidState=5,		
sl@0
   579
		};
sl@0
   580
sl@0
   581
	/**
sl@0
   582
	The purpose of this enumeration is to handle the postponed events corresponding to media change and power down event.
sl@0
   583
	*/
sl@0
   584
	enum TPostponedEvent
sl@0
   585
		{
sl@0
   586
		/** Handles the postponed media change event  */
sl@0
   587
		EMediaChange=1,	
sl@0
   588
sl@0
   589
		/** Handles the postponed power down event */
sl@0
   590
		EPowerDown=2,	
sl@0
   591
		};
sl@0
   592
sl@0
   593
	/**
sl@0
   594
	Enumeration for handling debug functionality.
sl@0
   595
	*/
sl@0
   596
	enum TPBusDebugFunction
sl@0
   597
		{
sl@0
   598
		/** Media state used for simulation purposes */
sl@0
   599
		EControlMediaState	
sl@0
   600
		};
sl@0
   601
sl@0
   602
	/**
sl@0
   603
	PBUS simulated media states.
sl@0
   604
	*/
sl@0
   605
	enum TPBusSimulateMediaState
sl@0
   606
		{
sl@0
   607
		/** Normal State */
sl@0
   608
		EPeriphBusMediaNormal=0,
sl@0
   609
			
sl@0
   610
		/** Simulated door open */
sl@0
   611
		EPeriphBusDoorOpen=1,
sl@0
   612
		
sl@0
   613
		/** Simulated door close with media absent */
sl@0
   614
		EPeriphBusMediaRemoved=2,	
sl@0
   615
		
sl@0
   616
		/** Simulated door close with media present */
sl@0
   617
		EPeriphBusMediaPresent=3,
sl@0
   618
		
sl@0
   619
		/** Simulate two consecutive door open interrupts */
sl@0
   620
		EPeriphBusMediaDoubleDoorOpen=4
sl@0
   621
		};
sl@0
   622
sl@0
   623
public:
sl@0
   624
	DPBusSocket(TInt aSocketNumber);
sl@0
   625
	IMPORT_C static DPBusSocket* SocketFromId(TInt anId);
sl@0
   626
	IMPORT_C static void Panic(DPBusSocket::TPanic aPanic);
sl@0
   627
public:
sl@0
   628
	virtual TInt Create(const TDesC* aName);
sl@0
   629
	virtual TInt Init();
sl@0
   630
	
sl@0
   631
	/**
sl@0
   632
	Initiates a power up sequence on the stack. This method should be implemented by the derived class.
sl@0
   633
	The implementation should call PowerUpSequenceComplete() to notify the status on completion of power up sequence.
sl@0
   634
sl@0
   635
	@see DMMCSocket::InitiatePowerUpSequence()
sl@0
   636
	@see DMMCStack::PowerUpStack()
sl@0
   637
    */
sl@0
   638
	virtual void InitiatePowerUpSequence()=0;
sl@0
   639
	
sl@0
   640
	/**
sl@0
   641
	Indicates the presence of a card. This method should be implemented by the derived class.
sl@0
   642
	The implementation should use variant specific implementation of CardDetect() method to detect the card presence.
sl@0
   643
	
sl@0
   644
	@return ETrue if a card is present, else EFalse
sl@0
   645
	@see DMMCStack::CardDetect()
sl@0
   646
	*/
sl@0
   647
	virtual TBool CardIsPresent()=0;
sl@0
   648
	
sl@0
   649
	/**
sl@0
   650
	Resets the socket. This method should be implemented by the derived class.
sl@0
   651
    The implementation should cancel powerup timer and DFC queue if any of this request is outstanding,
sl@0
   652
	Power down the stack.
sl@0
   653
sl@0
   654
    @see DMMCSocket::Reset1()
sl@0
   655
	*/
sl@0
   656
	virtual void Reset1()=0;
sl@0
   657
sl@0
   658
	/**
sl@0
   659
	Resets the socket on media change event.This method should be implemented by the derived class.
sl@0
   660
	The implementation should remove any allocated memory following a media change event.
sl@0
   661
    
sl@0
   662
	*/
sl@0
   663
	virtual void Reset2()=0;
sl@0
   664
public:
sl@0
   665
	inline TInt State();
sl@0
   666
	inline TDfcQue* DfcQ();
sl@0
   667
	inline TMediaState MediaState();
sl@0
   668
public:
sl@0
   669
	IMPORT_C void Add(TPBusCallBack* aCallBack);
sl@0
   670
	IMPORT_C TInt PowerUp();
sl@0
   671
	IMPORT_C void ForceMediaChange();
sl@0
   672
	IMPORT_C TInt InCritical();
sl@0
   673
	IMPORT_C void EndInCritical();
sl@0
   674
	IMPORT_C void DeltaCurrentConsumption(TInt aDelta);
sl@0
   675
	IMPORT_C void PowerUpSequenceComplete(TInt anError);
sl@0
   676
	void PsuFault(TInt anError);
sl@0
   677
	void PsuTimeout();
sl@0
   678
	void ResetSocket(TBool aFullReset);
sl@0
   679
	void ChangeState(TInt aState, TInt anError);
sl@0
   680
	void MediaChangeEvent(TBool aDoorOpened);
sl@0
   681
	void DoorOpenEvent();
sl@0
   682
	void DoorCloseEvent();
sl@0
   683
	void Isr(TInt anId);
sl@0
   684
	void DoPowerUp();
sl@0
   685
	void DoPowerDown();
sl@0
   686
	IMPORT_C void PowerDownComplete();
sl@0
   687
	IMPORT_C void RequestAsyncPowerDown();
sl@0
   688
	IMPORT_C virtual TInt ControlIO(TInt aFunction, TAny* aParam1, TAny* aParam2);
sl@0
   689
public:
sl@0
   690
	/**
sl@0
   691
	Current PBus type.
sl@0
   692
	@see TPBusType 
sl@0
   693
	*/
sl@0
   694
	TPBusType iType;
sl@0
   695
	/**
sl@0
   696
	Current socket number.
sl@0
   697
	*/
sl@0
   698
	TInt iSocketNumber;
sl@0
   699
	/**
sl@0
   700
	Name of the socket.
sl@0
   701
	*/
sl@0
   702
	const TDesC* iName;
sl@0
   703
	/**
sl@0
   704
	Current state of Peripheral bus controller.
sl@0
   705
	@see TPBusState
sl@0
   706
	*/
sl@0
   707
	TInt iState;
sl@0
   708
	/**
sl@0
   709
    Counter to keep track of postponed events.
sl@0
   710
	*/
sl@0
   711
	TInt iPostponeCount;
sl@0
   712
	/**
sl@0
   713
    Current postponed events.
sl@0
   714
    @see TPostponedEvent
sl@0
   715
	*/
sl@0
   716
	TUint16 iPostponedEvents;
sl@0
   717
	/**
sl@0
   718
	Current simulated state of the Media.
sl@0
   719
	@see TPBusSimulateMediaState
sl@0
   720
    */
sl@0
   721
	TUint16 iSimulatedMediaState;
sl@0
   722
	/**
sl@0
   723
    The call back functions queue.
sl@0
   724
	@see SDblQue
sl@0
   725
	*/
sl@0
   726
	SDblQue iCallBackQ;
sl@0
   727
	/**  
sl@0
   728
	Pointer to DPBusPowerController object.
sl@0
   729
	@see DPBusPowerHandler
sl@0
   730
	*/
sl@0
   731
	DPBusPowerHandler* iPowerHandler;
sl@0
   732
sl@0
   733
	/**	
sl@0
   734
	Holds media change number.
sl@0
   735
    @see MediaChangeFromSocket
sl@0
   736
	*/
sl@0
   737
	TInt iMediaChangeNumber;
sl@0
   738
sl@0
   739
	/**	
sl@0
   740
	Pointer to DMediaChangeBase object.
sl@0
   741
	@see DMediaChangeBase
sl@0
   742
	*/
sl@0
   743
	DMediaChangeBase* iMediaChange;
sl@0
   744
sl@0
   745
	/**
sl@0
   746
	Holds the state of media door.
sl@0
   747
	Updated when there is change in media event corresponing to Door open.
sl@0
   748
	@see DMediaChangeBase::DoorOpenService()
sl@0
   749
	@see TMediaState
sl@0
   750
	*/
sl@0
   751
	TBool iDoorOpened;
sl@0
   752
sl@0
   753
	/**	
sl@0
   754
	Pointer to DPBusPsuBase object.
sl@0
   755
	@see DPBusPsuBase
sl@0
   756
	*/
sl@0
   757
	DPBusPsuBase* iVcc;
sl@0
   758
sl@0
   759
	/**
sl@0
   760
	Indicates the device is in standby state (i.e. Sets to ETrue when the device is in standby state).
sl@0
   761
	*/
sl@0
   762
	TBool iStandby;
sl@0
   763
sl@0
   764
	/**
sl@0
   765
    DFC to handle media change events like (DoorOpen,DoorClose).
sl@0
   766
	@see DMediaChangeBase::AcknowledgeEvent
sl@0
   767
	@see TDfc
sl@0
   768
	*/
sl@0
   769
	TDfc iMediaChangeDfc;
sl@0
   770
sl@0
   771
	/**
sl@0
   772
	DFC to handle powering up of the device.
sl@0
   773
	@see TDfc
sl@0
   774
	*/
sl@0
   775
	TDfc iPowerUpDfc;
sl@0
   776
sl@0
   777
	/**
sl@0
   778
	DFC	to handle powerdown state of the device.
sl@0
   779
	
sl@0
   780
	@see TDfc
sl@0
   781
	*/
sl@0
   782
	TDfc iPowerDownDfc;
sl@0
   783
sl@0
   784
	/**
sl@0
   785
	DFC to handle PSU Tick.
sl@0
   786
	@see DPBusPsuBase::DoTickService()
sl@0
   787
	@see TDfc
sl@0
   788
	*/
sl@0
   789
	TDfc iPsuDfc;
sl@0
   790
sl@0
   791
	/**
sl@0
   792
    The DFC queue used for driver functions.
sl@0
   793
	@see TDfcQue
sl@0
   794
	*/
sl@0
   795
	TDfcQue iDfcQ;
sl@0
   796
sl@0
   797
	/**
sl@0
   798
    Used when there is request for power down of the device from client.
sl@0
   799
	*/
sl@0
   800
	TInt iRequestPowerDownCount;
sl@0
   801
	};
sl@0
   802
sl@0
   803
GLREF_D DMediaChangeBase* TheMediaChanges[KMaxMediaChanges];
sl@0
   804
GLREF_D DPBusSocket* TheSockets[KMaxPBusSockets];
sl@0
   805
GLREF_D DPBusPsuBase* TheVccs[KMaxPBusVccs];
sl@0
   806
GLREF_D DPBusPsuBase* TheVccCores[KMaxPBusVccs]; 
sl@0
   807
sl@0
   808
#include <drivers/pbus.inl>
sl@0
   809
#endif