os/kernelhwsrv/kernel/eka/include/drivers/pccard.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\pccard.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 __P32PCCD_H__
sl@0
    25
#define __P32PCCD_H__
sl@0
    26
#include <drivers/pbus.h>
sl@0
    27
sl@0
    28
const TUint KPccdIntMaskIReq=0x1;
sl@0
    29
const TUint KPccdIntMaskIndChg=0x2;
sl@0
    30
const TUint KPccdIntMaskRdyChg=0x4;
sl@0
    31
sl@0
    32
enum TPccdInt
sl@0
    33
	{
sl@0
    34
	EPccdIntIReq=0,
sl@0
    35
	EPccdIntIndChange=1,
sl@0
    36
	EPccdIntRdyChange=2,
sl@0
    37
	};
sl@0
    38
sl@0
    39
const TUint KPccdEvFlagIReqLevelMode=0x00000001;
sl@0
    40
const TUint KPccdEvFlagReserved=0x80000000;
sl@0
    41
sl@0
    42
//
sl@0
    43
// PC Card maximum system settings
sl@0
    44
//
sl@0
    45
const TInt KMaxPccdSockets=KMaxPBusSockets;
sl@0
    46
const TInt KMaxPccdMediaChanges=2;
sl@0
    47
const TInt KMaxPccdVccSupplies=2;
sl@0
    48
const TUint KMaxFuncPerCard=8;
sl@0
    49
const TUint KDefaultAttribMemSize=0x10000;	  // 64K Bytes (32K CIS)
sl@0
    50
sl@0
    51
const TSocket KInvalidSocket=-1;
sl@0
    52
const TUint8 KInvalidFuncNum=(KMaxFuncPerCard+1);
sl@0
    53
//
sl@0
    54
// PC Card Enumerates
sl@0
    55
//
sl@0
    56
enum TPccdFuncType {EGlobalCard,EVendorMultiFuncCard,EMemoryCard,ESerialCard,
sl@0
    57
					EParallelCard,EFixedDiskCard,EVideoCard,ENetworkCard,EAimsCard,
sl@0
    58
					EScsiCard,EVendorSpecificCard,EUnknownCard}; // Order important
sl@0
    59
enum TPccdMemType {EPccdAttribMem,EPccdCommon8Mem,EPccdCommon16Mem,EPccdIo8Mem,EPccdIo16Mem};
sl@0
    60
enum TPccdCardStatus {ECardNotPresent,ECardNotReady,ECardBad,ECardReady};
sl@0
    61
enum TPccdAccessSpeed {EAcSpeed50nS,EAcSpeed100nS,EAcSpeed150nS,EAcSpeed200nS,
sl@0
    62
					   EAcSpeed250nS,EAcSpeed300nS,EAcSpeed450nS,EAcSpeed600nS,
sl@0
    63
					   EAcSpeed750nS,EAcSpeedExtended,EAcSpeedInValid};
sl@0
    64
enum TMemDeviceType {EDeviceNull,EDeviceRom,EDeviceOTP,EDeviceEPROM,
sl@0
    65
					 EDeviceEEPROM,EDeviceFlash,EDeviceSRam,EDeviceDRam,
sl@0
    66
					 EDeviceFunSpec,EDeviceInvalid}; // Order important
sl@0
    67
sl@0
    68
// Active signals (correspond to Config entry tuple - dont change)
sl@0
    69
const TUint KSigBvdActive=0x00000010;	
sl@0
    70
const TUint KSigWpActive=0x00000020;	
sl@0
    71
const TUint KSigReadyActive=0x00000040;
sl@0
    72
const TUint KSigWaitRequired=0x00000080;	
sl@0
    73
const TUint KSigWaitSupported=KSigWaitRequired;	
sl@0
    74
//
sl@0
    75
const TUint KPccdVcc_5V0=0x01;
sl@0
    76
const TUint KPccdVcc_3V3=0x02;
sl@0
    77
const TUint KPccdVcc_xVx=0x04;
sl@0
    78
const TUint KPccdVcc_yVy=0x08;
sl@0
    79
// Interrupt info 
sl@0
    80
const TUint KPccdIntShare=0x00000080;	
sl@0
    81
const TUint KPccdIntPulse=0x00000040;	
sl@0
    82
const TUint KPccdIntLevel=0x00000020;	
sl@0
    83
sl@0
    84
enum TPccdSocketVcc	{EPccdSocket_Invalid=0,EPccdSocket_5V0=KPccdVcc_5V0,EPccdSocket_3V3=KPccdVcc_3V3,
sl@0
    85
					 EPccdSocket_xVx=KPccdVcc_xVx,EPccdSocket_yVy=KPccdVcc_yVy};
sl@0
    86
sl@0
    87
enum TPccdOpCritical {EPccdOpCritical,EPccdOpNonCritical};
sl@0
    88
//
sl@0
    89
// PC Card memory chunk speed/type/signal definitions
sl@0
    90
//
sl@0
    91
#define __IS_COMMON_MEM(aMemType) (aMemType==EPccdCommon8Mem||aMemType==EPccdCommon16Mem)
sl@0
    92
#define __IS_IO_MEM(aMemType) (aMemType==EPccdIo8Mem||aMemType==EPccdIo16Mem)
sl@0
    93
#define __IS_ATTRIB_MEM(aMemType) (aMemType==EPccdAttribMem)
sl@0
    94
#define DEF_IO_ACSPEED  EAcSpeed200nS
sl@0
    95
#define DEF_MEM_ACSPEED EAcSpeed250nS
sl@0
    96
#define DEF_ATTR_ACSPEED EAcSpeed600nS 
sl@0
    97
//
sl@0
    98
// PC Card Vcc definitions
sl@0
    99
//
sl@0
   100
const TInt KVcc_Level_5V=5000;
sl@0
   101
const TInt KVcc_Level_3V3=3300;
sl@0
   102
const TInt KVcc_Level_xVx=0;
sl@0
   103
const TInt KVcc_Level_yVy=0;
sl@0
   104
//
sl@0
   105
// General tuple parsing definitions
sl@0
   106
//
sl@0
   107
const TInt KSmallTplBufSize=16;
sl@0
   108
const TInt KLargeTplBufSize=257;
sl@0
   109
const TInt KMaxCfEntriesPerCis=20;
sl@0
   110
//
sl@0
   111
// Link Tuple definitions
sl@0
   112
//
sl@0
   113
const TUint KPccdLinkA=0x00000001;
sl@0
   114
const TUint KPccdLinkC=0x00000002;
sl@0
   115
const TUint KPccdLinkMFC=0x00000004;
sl@0
   116
const TUint KPccdNoLink=0x00000008;
sl@0
   117
//
sl@0
   118
// Tuple codes
sl@0
   119
//
sl@0
   120
const TUint8 KCisTplNull=0x00;
sl@0
   121
const TUint8 KCisTplDevice=0x01;
sl@0
   122
const TUint8 KCisTplLongLinkMfc=0x06;
sl@0
   123
const TUint8 KCisTplCheckSum=0x10;
sl@0
   124
const TUint8 KCisTplLongLinkA=0x11;
sl@0
   125
const TUint8 KCisTplLongLinkC=0x12;
sl@0
   126
const TUint8 KCisTplLinkTarget=0x13;
sl@0
   127
const TUint8 KCisTplNoLink=0x14;
sl@0
   128
const TUint8 KCisTplVers1=0x15;
sl@0
   129
const TUint8 KCisTplAltStr=0x16;
sl@0
   130
const TUint8 KCisTplDeviceA=0x17;
sl@0
   131
const TUint8 KCisTplJedecC=0x18;
sl@0
   132
const TUint8 KCisTplJedecA=0x19;
sl@0
   133
const TUint8 KCisTplConfig=0x1A;
sl@0
   134
const TUint8 KCisTplCfTableEntry=0x1B;
sl@0
   135
const TUint8 KCisTplDeviceOC=0x1C;
sl@0
   136
const TUint8 KCisTplDeviceOA=0x1D;
sl@0
   137
const TUint8 KCisTplDeviceGeo=0x1E;
sl@0
   138
const TUint8 KCisTplDeviceGeoA=0x1F;
sl@0
   139
const TUint8 KCisTplManfId=0x20;
sl@0
   140
const TUint8 KCisTplFuncId=0x21;
sl@0
   141
const TUint8 KCisTplFunce=0x22;
sl@0
   142
const TUint8 KCisTplSwIl=0x23;
sl@0
   143
const TUint8 KCisTplVers2=0x40;
sl@0
   144
const TUint8 KCisTplFormat=0x41;
sl@0
   145
const TUint8 KCisTplGeometry=0x42;
sl@0
   146
const TUint8 KCisTplByteOrder=0x43;
sl@0
   147
const TUint8 KCisTplDate=0x44;
sl@0
   148
const TUint8 KCisTplBattery=0x45;
sl@0
   149
const TUint8 KCisTplOrg=0x46;
sl@0
   150
const TUint8 KCisTplLongLinkCB=0x47;
sl@0
   151
const TUint8 KCisTplVendorSpecific1=0x80;
sl@0
   152
const TUint8 KCisTplVendorSpecific2=0x81;
sl@0
   153
const TUint8 KCisTplVendorSpecific3=0x82;
sl@0
   154
const TUint8 KCisTplEnd=0xFF;
sl@0
   155
//
sl@0
   156
const TUint8 KPccdNonSpecificTpl=0xff;
sl@0
   157
const TUint8 KInvalidConfOpt=0xFF;
sl@0
   158
const TUint KPccdRestartCis=0x8000;
sl@0
   159
//
sl@0
   160
// PC Card Configuration Register definitions
sl@0
   161
//
sl@0
   162
const TUint KConfigOptionReg=0;
sl@0
   163
const TUint KConfigOptionRegM=0x00000001;
sl@0
   164
const TUint KConfigAndStatusReg=1;
sl@0
   165
const TUint KConfigAndStatusRegM=0x00000002;
sl@0
   166
const TUint KPinReplacementReg=2;
sl@0
   167
const TUint KPinReplacementRegM=0x00000004;
sl@0
   168
const TUint KSocketAndCopyReg=3;
sl@0
   169
const TUint KSocketAndCopyRegM=0x00000008;
sl@0
   170
sl@0
   171
const TUint KConfOptConfM=0x0000003F;
sl@0
   172
const TUint KConfOptLevIReqM=0x00000040;
sl@0
   173
const TUint KConfOptSResetM=0x00000080;
sl@0
   174
const TUint KConfStatIntrAckM=0x00000001;
sl@0
   175
const TUint KConfStatIntrM=0x00000002;
sl@0
   176
const TUint KConfStatPwrDwnM=0x00000004;
sl@0
   177
const TUint KConfStatAudioEnableM=0x00000008;
sl@0
   178
const TUint KConfStatIoIs8M=0x00000020;
sl@0
   179
const TUint KConfStatSigChgM=0x00000040;
sl@0
   180
const TUint KConfStatChangedM=0x00000080;
sl@0
   181
const TUint KPinRepWProtM=0x00000001;
sl@0
   182
const TUint KPinRepReadyM=0x00000002;
sl@0
   183
const TUint KPinRepBvdM=0x0000000C;
sl@0
   184
//
sl@0
   185
// Pc Card Flag definitions - Mem request/setup and others
sl@0
   186
//
sl@0
   187
const TUint KPccdRequestWait=0x00000001;			// Memory request
sl@0
   188
const TUint KPccdChunkCacheable=0x00000010;			// Memory request
sl@0
   189
const TUint KPccdChunkShared=0x00000020;			// Memory request
sl@0
   190
const TUint KPccdChunkPermanent=0x00000040;			// Memory request
sl@0
   191
const TUint KPccdChunkSystemOwned=0x00000080;		// Memory request
sl@0
   192
sl@0
   193
const TUint KPccdDisableWaitStateCntrl=0x00000100; 	// Memory chunk setup
sl@0
   194
const TUint KPccdBusWidth32=0x00000200; 			// Memory chunk setup
sl@0
   195
sl@0
   196
const TUint KPccdReturnLinkTpl=0x00001000;			// Cis parsing
sl@0
   197
const TUint KPccdReportErrors=0x00002000;			// Cis parsing
sl@0
   198
const TUint KPccdFindOnly=0x00004000;				// Cis parsing
sl@0
   199
sl@0
   200
const TUint KPccdCompatNoVccCheck=0x00000001;	    // Config compatibility checking
sl@0
   201
const TUint KPccdCompatNoVppCheck=0x00000002;	    // Config compatibility checking
sl@0
   202
const TUint KPccdCompatNoPwrCheck=0x00000004;	    // Config compatibility checking
sl@0
   203
sl@0
   204
const TUint KPccdConfigRestorable=0x00000001;	    // Configuration request
sl@0
   205
//
sl@0
   206
// PC Card tick definitions
sl@0
   207
//
sl@0
   208
const TInt KPccdPowerUpReqInterval=20000;	// Units 1uS
sl@0
   209
const TInt KResetOnDefaultLen=5;			// Units 20ms
sl@0
   210
const TInt KResetOffDefaultLen=5;			// Units 20ms
sl@0
   211
const TInt KPwrUpTimeOut=125;				// Units 20mS
sl@0
   212
const TUint KResetOnMask=0x0000FFFF;
sl@0
   213
const TUint KResetOffMask=0x7FFF0000;
sl@0
   214
const TInt KResetOffShift=16;
sl@0
   215
const TInt KResetProfileDefault=((KResetOffDefaultLen<<KResetOffShift)|KResetOnDefaultLen);
sl@0
   216
sl@0
   217
	/**
sl@0
   218
	 This class contains  information of Size, base address and memory type information on a particular 
sl@0
   219
	 memory chunk of a Pc Card. 
sl@0
   220
	 
sl@0
   221
	 This class is used as a member of TPcCardRegion or TPcCardConfig, when Pc Card memory needs to be configured.
sl@0
   222
	 
sl@0
   223
	 TPccdChnk  can  be used directly in a call to DPcCardController::RequestMemory() to request
sl@0
   224
	 a chunk of PC Card memory. 
sl@0
   225
sl@0
   226
     @publishedPartner
sl@0
   227
	 @released
sl@0
   228
	 */
sl@0
   229
class TPccdChnk
sl@0
   230
	{
sl@0
   231
public:
sl@0
   232
	/**
sl@0
   233
	 Initializes the object with memory type to EPccdAttribMem type,BaseAddress and size to 0.
sl@0
   234
sl@0
   235
	 Pc Card contains following memory types : EPccdAttribMem,EPccdCommon8Mem,EPccdCommon16Mem,EPccdIo8Mem,EPccdIo16Mem.
sl@0
   236
	 
sl@0
   237
	 Default constructor initializes to EPccAttribMem.
sl@0
   238
	 */
sl@0
   239
	IMPORT_C TPccdChnk();
sl@0
   240
	/**
sl@0
   241
	 Initializes the object with the specified memory type, base address and size.
sl@0
   242
	 
sl@0
   243
	 @param aType		Type of Pc Card memory to be configured.
sl@0
   244
	 
sl@0
   245
	 @param aBaseAddr   Base address of the Pc Card to be configured.
sl@0
   246
     
sl@0
   247
	 @param aLen        Length of the memory to be configured.
sl@0
   248
	 
sl@0
   249
	 @see TPccdMemType
sl@0
   250
	 */	
sl@0
   251
	IMPORT_C TPccdChnk(TPccdMemType aType,TUint32 aBaseAddr,TUint32 aLen);
sl@0
   252
public:
sl@0
   253
    /**
sl@0
   254
	 Pc Card memory type (EPccdAttribMem,EPccdCommon8Mem,EPccdCommon16Mem,EPccdIo8Mem,EPccdIo16Mem).
sl@0
   255
	 @see TPccMemType
sl@0
   256
     */
sl@0
   257
	TPccdMemType iMemType;
sl@0
   258
	/** 
sl@0
   259
	 Start address of memory region.
sl@0
   260
	 */
sl@0
   261
	TUint32 iMemBaseAddr;
sl@0
   262
	/**
sl@0
   263
 	 Size of memory region (in bytes).
sl@0
   264
	 */
sl@0
   265
	TUint32 iMemLen;
sl@0
   266
	};
sl@0
   267
    /** 
sl@0
   268
	 The maximum number of chunks that can be used per configuration.
sl@0
   269
	 */
sl@0
   270
const TInt KMaxChunksPerConfig=2;
sl@0
   271
	 /**
sl@0
   272
	 This class provides information on a particular configuration option of a Pc Card.
sl@0
   273
sl@0
   274
     This Card Information Structure (CIS) is used to determine the type of card and 
sl@0
   275
     what device drivers need to be loaded to support it.
sl@0
   276
	 
sl@0
   277
	 This is retrieved after a call of TCisReader::FindReadConfig() and can then be passed in a call of  
sl@0
   278
     DPcCardController::RequestConfig() to request a configuration.
sl@0
   279
sl@0
   280
     @publishedPartner
sl@0
   281
	 @released
sl@0
   282
     */
sl@0
   283
class TPcCardConfig
sl@0
   284
	{
sl@0
   285
public:
sl@0
   286
    /**
sl@0
   287
	 Default Constructor
sl@0
   288
sl@0
   289
	 It sets the iConfigOption data member to KInvalidConfOpt.
sl@0
   290
	 This guarantees that we start with the 1st configuration entry.
sl@0
   291
	 */
sl@0
   292
	IMPORT_C TPcCardConfig();
sl@0
   293
 	/**
sl@0
   294
	 Determines whether a configuration is compatible with the specification of 
sl@0
   295
	 the indicated socket 'aSocket' on the machine.
sl@0
   296
sl@0
   297
	 This is called after a call to TCisReader::FindReadRegion().
sl@0
   298
sl@0
   299
	 It checks Vcc level compatibility, WAIT signal compatibility and access speed compatibility. 
sl@0
   300
	 It also masks out active signals (in iActiveSignals) that are not supported by the machine.
sl@0
   301
 	 
sl@0
   302
	 @param aSocket  The socket for which the machine compatibility is to be performed.
sl@0
   303
sl@0
   304
	 @param aFlag    It is possible to disable some aspects of compatibility checking by ORing aFlag with 
sl@0
   305
					 KPccdCompatNoVccCheck, KPccdCompatNoVppCheck or KPccdCompatNoPwrCheck.
sl@0
   306
sl@0
   307
	 @return True if a configuration is compatible with the specification of the indicated socket 'aSocket' on the machine.
sl@0
   308
	 */
sl@0
   309
	IMPORT_C TBool IsMachineCompatible(TSocket aSocket,TInt aFlag=0);
sl@0
   310
public:								 
sl@0
   311
	/** 
sl@0
   312
 	 Access speed of memory involved (EAcSpeed50nS, 100ns, 150ns, 200ns, 250ns, 300ns, 450ns, 600ns,
sl@0
   313
	 750nS, EAcSpeedExtended, EAcSpeedInValid).
sl@0
   314
 	 */
sl@0
   315
	TPccdAccessSpeed iAccessSpeed;
sl@0
   316
	/** 
sl@0
   317
 	 Pc Card signals supported - KSigWaitRequired, KSigReadyActive, KSigWpActive, KSigBvdActive.
sl@0
   318
 	 */
sl@0
   319
	TUint iActiveSignals;
sl@0
   320
	/**
sl@0
   321
	 Maximum Vcc for this configuration.
sl@0
   322
	 */
sl@0
   323
	TInt iVccMaxInMilliVolts;			
sl@0
   324
	/**
sl@0
   325
	 Minimum Vcc for this configuration.
sl@0
   326
	 */
sl@0
   327
	TInt iVccMinInMilliVolts;						
sl@0
   328
	/**
sl@0
   329
	 Size, type and base address of Pc Card regions enabled with this configuration.
sl@0
   330
	 */
sl@0
   331
	TPccdChnk iChnk[KMaxChunksPerConfig];
sl@0
   332
	/**
sl@0
   333
     Number of elements of iChnk which are valid.
sl@0
   334
	 */
sl@0
   335
	TInt iValidChunks;
sl@0
   336
	/**
sl@0
   337
	 TRUE - i/o and memory, FALSE - memory only.
sl@0
   338
	 */
sl@0
   339
	TBool iIsIoAndMem;
sl@0
   340
	/**
sl@0
   341
	 True if CIS indicates this is default option.
sl@0
   342
	 */
sl@0
   343
	TBool iIsDefault;
sl@0
   344
	/**
sl@0
   345
	 True if power down supported.
sl@0
   346
	 */
sl@0
   347
	TBool iPwrDown;
sl@0
   348
	/**
sl@0
   349
	 Maximum Vpp for this configuration.
sl@0
   350
	 */
sl@0
   351
	TInt iVppMaxInMilliVolts;						
sl@0
   352
	/**
sl@0
   353
	 Minimum Vpp for this configuration.
sl@0
   354
	 */
sl@0
   355
	TInt iVppMinInMilliVolts;						
sl@0
   356
    /**
sl@0
   357
	 Operation current drawn when card is in this configuration.
sl@0
   358
	 */
sl@0
   359
	TInt iOperCurrentInMicroAmps;				   
sl@0
   360
    /**
sl@0
   361
	 Current drawn in this configuration when Pc Card is in  power down mode.
sl@0
   362
	 */
sl@0
   363
	TInt iPwrDwnCurrentInMicroAmps;				 
sl@0
   364
	/**
sl@0
   365
	 Interrupt features supported. Any of:- KPccdIntShare, KPccdIntPulse,KPccdIntLevel.
sl@0
   366
	 */
sl@0
   367
	TUint iInterruptInfo;
sl@0
   368
	/**
sl@0
   369
	 Value to be written in to ConfigOptionReg for this configuration.
sl@0
   370
	 */
sl@0
   371
	TInt iConfigOption;
sl@0
   372
	/**
sl@0
   373
	 Base address of configuration registers (in attribute memory).
sl@0
   374
	 */
sl@0
   375
	TUint32 iConfigBaseAddr;
sl@0
   376
	/**
sl@0
   377
	 Mask of configuration registers present.
sl@0
   378
	 */
sl@0
   379
	TUint32 iRegPresent;	
sl@0
   380
	};
sl@0
   381
sl@0
   382
	/**
sl@0
   383
	 Information about a specific memory region of a Pc Card.
sl@0
   384
sl@0
   385
	 This is retrieved by calling TCisReader::FindReadRegion().
sl@0
   386
sl@0
   387
	 An object of this type contains a TPccdChunk object, and can be passed to 
sl@0
   388
	 DPcCardController::RequestMemory() to request the corresponding memory chunk.
sl@0
   389
	
sl@0
   390
	 @publishedPartner
sl@0
   391
	 @released
sl@0
   392
	 */
sl@0
   393
class TPcCardRegion 
sl@0
   394
	{
sl@0
   395
public:
sl@0
   396
	/**
sl@0
   397
	 Initializes iDeviceType to EDeviceInvalid.
sl@0
   398
sl@0
   399
	 This guarantees that we start with the 1st device information entry.
sl@0
   400
	 */
sl@0
   401
	IMPORT_C TPcCardRegion();
sl@0
   402
	/**	
sl@0
   403
	 Used after TCisReader::FindReadRegion() to determine if a configuration is compatible with the specification of 
sl@0
   404
	 the indicated socket 'aSocket' on the machine. Checks Vcc level compatibility,
sl@0
   405
	 WAIT signal compatibility and access speed compatibility. Also masks out active signals (in iActiveSignals)
sl@0
   406
	 which aren't supported by the machine.
sl@0
   407
sl@0
   408
	 @param aSocket  Socket for which the machine compatibility to be performed.
sl@0
   409
     
sl@0
   410
	 @return True if a configuration is compatible with the specification of the indicated socket 'aSocket' on the machine.
sl@0
   411
	 */
sl@0
   412
	IMPORT_C TBool IsMachineCompatible(TSocket aSocket);
sl@0
   413
public:										
sl@0
   414
	/** 
sl@0
   415
 	 Access speed of memory involved (EAcSpeed50nS, 100ns, 150ns, 200ns, 250ns, 300ns, 450ns, 600ns,
sl@0
   416
	 750nS, EAcSpeedExtended, EAcSpeedInValid).
sl@0
   417
 	 */
sl@0
   418
	TPccdAccessSpeed iAccessSpeed;
sl@0
   419
    /** 
sl@0
   420
 	 Pc Card signals supported - KSigWaitRequired, KSigReadyActive, KSigWpActive, KSigBvdActive.
sl@0
   421
 	 */
sl@0
   422
	TUint iActiveSignals;
sl@0
   423
	/**
sl@0
   424
     Info on the memory regions applies when the card is powered at this voltage.
sl@0
   425
	 */
sl@0
   426
	TPccdSocketVcc iVcc;
sl@0
   427
    /**
sl@0
   428
	 TPccdChnk object holds size, type and base address of Pc Card region.
sl@0
   429
	 */
sl@0
   430
	TPccdChnk iChnk;
sl@0
   431
	/**
sl@0
   432
	 Memory device type present (e.g. ROM, SRAM, OTP etc.).
sl@0
   433
	 */
sl@0
   434
	TMemDeviceType iDeviceType;
sl@0
   435
	/**
sl@0
   436
	 When iAccessSpeed, i.e, extended device speed field converted to speed in nS.
sl@0
   437
	 */
sl@0
   438
	TInt iExtendedAccSpeedInNanoSecs;
sl@0
   439
	};
sl@0
   440
sl@0
   441
	/**
sl@0
   442
	 Contains platform-specific information about the Pc Card.
sl@0
   443
sl@0
   444
	 @publishedPartner
sl@0
   445
	 @released
sl@0
   446
	 */
sl@0
   447
class TPccdType
sl@0
   448
	{
sl@0
   449
public:
sl@0
   450
	/**
sl@0
   451
	 Default Constructor, initializes maximum functions performed by the Pc Card.
sl@0
   452
	 */
sl@0
   453
	IMPORT_C TPccdType();
sl@0
   454
public:
sl@0
   455
	/**
sl@0
   456
	 Gets the function type of the Pc Card. 
sl@0
   457
	 @see TPccdFuncType
sl@0
   458
	 */
sl@0
   459
	TPccdFuncType iFuncType[KMaxFuncPerCard];
sl@0
   460
	/**
sl@0
   461
	 Total number of fuctions performed by the Pc Card.
sl@0
   462
	 */
sl@0
   463
	TInt iFuncCount;
sl@0
   464
	};
sl@0
   465
sl@0
   466
enum TPccdBatteryState {EPccBattZero,EPccBattVeryLow,EPccBattLow,EPccBattGood};
sl@0
   467
class TSocketIndicators
sl@0
   468
	{
sl@0
   469
public:
sl@0
   470
	TBool iCardDetected;
sl@0
   471
	TInt iVoltSense;
sl@0
   472
	TBool iWriteProtected;
sl@0
   473
	TPccdBatteryState iBatState;
sl@0
   474
	};
sl@0
   475
sl@0
   476
    /**
sl@0
   477
	 Contains platform-specific information about the PC card Socket.
sl@0
   478
	
sl@0
   479
	 @publishedPartner
sl@0
   480
	 @released
sl@0
   481
	 */
sl@0
   482
class TPcCardSocketInfo
sl@0
   483
	{
sl@0
   484
public:
sl@0
   485
	/**
sl@0
   486
	 Minimum Vpp in Millivolts for the socket of the Pc Card.
sl@0
   487
	 */
sl@0
   488
	TInt iNomVppInMilliVolts;
sl@0
   489
	/**
sl@0
   490
	 Maximum Vpp in Micro Amps for the socket of the Pc Card.
sl@0
   491
	 */
sl@0
   492
	TInt iMaxVppCurrentInMicroAmps;
sl@0
   493
	/**
sl@0
   494
	 Supported signals used to check for machine compatability of Pc Card. i.e, KSigWaitRequired, KSigReadyActive, KSigWpActive, KSigBvdActive.
sl@0
   495
	 */
sl@0
   496
	TUint iSupportedSignals;
sl@0
   497
	/**
sl@0
   498
     Maximum access speed of attribute memory , used to check requested access speed of attribute memory for Machine compatability.
sl@0
   499
	 */
sl@0
   500
	TPccdAccessSpeed iMaxAttribAccSpeed;
sl@0
   501
    /**
sl@0
   502
	 Maximum access speed of Common Io Memory ,used to check requested access speed of Io memory for Machine compatability.
sl@0
   503
	 */
sl@0
   504
	TPccdAccessSpeed iMaxCommonIoAccSpeed;
sl@0
   505
	};
sl@0
   506
//
sl@0
   507
	/**
sl@0
   508
	 Platform-specific configuration information for the Pc Card stack.
sl@0
   509
	
sl@0
   510
	 @publishedPartner
sl@0
   511
	 @released
sl@0
   512
	 */
sl@0
   513
class TPcCardMachineInfo
sl@0
   514
	{
sl@0
   515
public:
sl@0
   516
    /**
sl@0
   517
	 Total number of sockets for the Pc Card.
sl@0
   518
	 */
sl@0
   519
	TInt iTotalSockets;
sl@0
   520
	/**
sl@0
   521
	 Total number of times Media changes have occurred.
sl@0
   522
	 */
sl@0
   523
	TInt iTotalMediaChanges;
sl@0
   524
	/**
sl@0
   525
	 Not currently used.
sl@0
   526
	
sl@0
   527
	 Set this value to zero.
sl@0
   528
	 */
sl@0
   529
	TInt iTotalPrimarySupplies;
sl@0
   530
    /**
sl@0
   531
	 Total number of drives supported for the Pc Card.
sl@0
   532
	 */
sl@0
   533
	TInt iTotalSupportedDrives;
sl@0
   534
    /**
sl@0
   535
	 The Version number of the Pc Card controller.
sl@0
   536
	 */
sl@0
   537
	TInt iControllerHwVersion;
sl@0
   538
    /**
sl@0
   539
	 This data member is not used.
sl@0
   540
	 */	  
sl@0
   541
	TInt iDisableOnLowBattery;
sl@0
   542
	};
sl@0
   543
typedef TPckg<TPcCardMachineInfo> TPcCardMachineInfoPckg;
sl@0
   544
//
sl@0
   545
class RPccdWindow;
sl@0
   546
class DPcCardSocket;
sl@0
   547
NONSHARABLE_CLASS(DPccdChunkBase) : public DBase
sl@0
   548
	{
sl@0
   549
public:
sl@0
   550
	DPccdChunkBase();
sl@0
   551
	virtual ~DPccdChunkBase();
sl@0
   552
	virtual void Close();
sl@0
   553
	TInt Create(DPcCardSocket* aSocket, TPccdChnk aChunk, TUint aFlag);
sl@0
   554
public:
sl@0
   555
	virtual TInt DoCreate(TPccdChnk aChunk, TUint aFlag)=0;
sl@0
   556
	virtual TInt SetupChunkHw(TPccdAccessSpeed aSpeed, TPccdMemType aMemType, TBool aWaitSig, TUint aFlag)=0;
sl@0
   557
	virtual TLinAddr LinearAddress()=0;
sl@0
   558
	virtual TInt Read(TInt aPos, TAny *aPtr, TInt aLength)=0;
sl@0
   559
	virtual TInt Write(TInt aPos, const TAny *aPtr, TInt aLength)=0;
sl@0
   560
	virtual TInt ReadByteMultiple(TInt aPos, TAny *aPtr, TInt aCount)=0;
sl@0
   561
	virtual TInt WriteByteMultiple(TInt aPos, const TAny *aPtr, TInt aCount)=0;
sl@0
   562
	virtual TInt ReadHWordMultiple(TInt aPos, TAny *aPtr, TInt aCount)=0;
sl@0
   563
	virtual TInt WriteHWordMultiple(TInt aPos, const TAny *aPtr, TInt aCount)=0;
sl@0
   564
	virtual TUint Read8(TInt aPos)=0;
sl@0
   565
	virtual void Write8(TInt aPos, TUint aValue)=0;
sl@0
   566
	virtual TBool IsTypeCompatible(TPccdMemType aMemType)=0;
sl@0
   567
public:
sl@0
   568
	TInt AllocateWinCheck(TPccdChnk aWin, TUint aFlag);
sl@0
   569
	void AddWindow(RPccdWindow *aWindow);
sl@0
   570
	void RemoveWindow(RPccdWindow *aWindow);
sl@0
   571
	TBool IsRemovable();
sl@0
   572
	TBool IsLocked();
sl@0
   573
	inline TUint32 BaseAddr();
sl@0
   574
public:
sl@0
   575
	SDblQue iWindowQ;
sl@0
   576
	TInt iWindows;
sl@0
   577
	TInt iPermanentWindows;
sl@0
   578
	TInt iShareableWindows;
sl@0
   579
	TInt iSystemWindows;
sl@0
   580
	DPcCardSocket* iSocket;
sl@0
   581
	TPccdChnk iChnk;
sl@0
   582
	TBool iCacheable;
sl@0
   583
	};
sl@0
   584
sl@0
   585
class RPccdWindow : public SDblQueLink
sl@0
   586
	{
sl@0
   587
public:
sl@0
   588
	IMPORT_C RPccdWindow();
sl@0
   589
	IMPORT_C TInt Create(DPcCardSocket* aSocket, TPccdChnk aChnk, TPccdAccessSpeed aSpeed, TUint aFlag);
sl@0
   590
	IMPORT_C void Close();
sl@0
   591
	IMPORT_C TInt SetupChunkHw(TUint aFlag=0);
sl@0
   592
	inline TInt Read(TInt aPos, TAny *aPtr, TInt aLength);
sl@0
   593
	inline TInt Write(TInt aPos, const TAny *aPtr, TInt aLength);
sl@0
   594
	inline TInt ReadByteMultiple(TInt aPos, TAny *aPtr, TInt aCount);
sl@0
   595
	inline TInt WriteByteMultiple(TInt aPos, const TAny *aPtr, TInt aCount);
sl@0
   596
	inline TInt ReadHWordMultiple(TInt aPos, TAny *aPtr, TInt aCount);
sl@0
   597
	inline TInt WriteHWordMultiple(TInt aPos, const TAny *aPtr, TInt aCount);
sl@0
   598
	inline TUint Read8(TInt aPos);
sl@0
   599
	inline void Write8(TInt aPos, TUint aValue);
sl@0
   600
	inline void SetAccessSpeed(TPccdAccessSpeed aSpeed);
sl@0
   601
	IMPORT_C TLinAddr LinearAddress();
sl@0
   602
public:
sl@0
   603
	TBool Overlap(TUint32 anOffset, TUint aLen);
sl@0
   604
	inline TBool IsPermanent();
sl@0
   605
	inline TBool IsShareable();
sl@0
   606
	inline TBool IsSystemOwned();
sl@0
   607
public:
sl@0
   608
	TPccdAccessSpeed iAccessSpeed;
sl@0
   609
	TPccdMemType iMemType;			// ???
sl@0
   610
	TUint32 iOffset;
sl@0
   611
	TUint32 iLen;
sl@0
   612
	DPccdChunkBase* iChunk;
sl@0
   613
	TUint iType;
sl@0
   614
	TBool iWaitSig;
sl@0
   615
	};
sl@0
   616
sl@0
   617
	/**
sl@0
   618
	 @publishedPartner
sl@0
   619
	 @released
sl@0
   620
sl@0
   621
	 Provides functions for parsing a CIS.
sl@0
   622
sl@0
   623
	 These range from functions for selecting a CIS and reading 'raw' tuples to
sl@0
   624
	 functions that return card configuration and memory region information
sl@0
   625
	 in a standard format (and hide the detail of the corresponding tuples).
sl@0
   626
sl@0
   627
	 An object of this type stores the current position of the CIS pointer
sl@0
   628
	 allowing multiple clients to parse a card CIS simultaneousy. 
sl@0
   629
sl@0
   630
	 Following a CIS chain may require the controller to allocate extra memory (e.g. a CIS with a link to Common memory)
sl@0
   631
	 so this class should only be used during a Kernel Server call.
sl@0
   632
	 */
sl@0
   633
class TCisReader
sl@0
   634
	{
sl@0
   635
public:
sl@0
   636
	/**
sl@0
   637
     Initialises function number,CisOffset,LinkOffset,LinkFlags,RegionCount and Configcount to 0,
sl@0
   638
	 memory type to EPccdAttribMem, and restarted flag to flase.
sl@0
   639
	 
sl@0
   640
	 Pc Card contains following memory types : EPccdAttribMem,EPccdCommon8Mem,EPccdCommon16Mem,EPccdIo8Mem,EPccdIo16Mem.
sl@0
   641
	 
sl@0
   642
	 Default constructor initializes to EPccAttribMem.
sl@0
   643
	 */ 
sl@0
   644
   	IMPORT_C TCisReader();
sl@0
   645
	/**
sl@0
   646
     Sets the CIS reader to a socket and function and then restarts.
sl@0
   647
	 
sl@0
   648
	 @param aSocket  socket to be set to the CIS reader.
sl@0
   649
sl@0
   650
	 @param aCardFunc card function to be assigned to CIS reader.
sl@0
   651
sl@0
   652
	 @return KErrNone if successful, otherwise KErrNotReady,if Card not powered/ready (possible media change),KErrNotFound, if Selected function isn't valid.
sl@0
   653
	 */
sl@0
   654
	IMPORT_C TInt SelectCis(TSocket aSocket,TInt aCardFunc);
sl@0
   655
	/**
sl@0
   656
	 Sets the CIS reader back to the start of the CIS for this function.
sl@0
   657
	 @return KErrNone if successful, otherwise KErrGeneral, if a CIS hasn't been selected (i.e. SelectCis() not called).
sl@0
   658
	 */
sl@0
   659
	IMPORT_C TInt Restart();
sl@0
   660
	/**
sl@0
   661
	 Find the next instance of the specified tuple, 'aDesiredTpl' in the CIS chain
sl@0
   662
	 and read it into 'aDes'. The search starts from the current position in the CIS (ie CIS pointer),
sl@0
   663
	 not from the start of the CIS. If  the tuple cannot be found then KErrNotFound is returned. 
sl@0
   664
	 When changing the desired tuple it is normal to precede this function with Restart() to reset 
sl@0
   665
	 the current position in the CIS. To find multiple instances of the same tuple in a CIS, 
sl@0
   666
	 keep calling the function with the same value for 'aDesired' tuple without calling Restart(). 
sl@0
   667
sl@0
   668
	 To use this function to find a tuple without reading it, OR 'aFlag' with KPccdFindOnly.
sl@0
   669
	 (It is recomended not to read an un-recognisd tuple in case it contains active registers.
sl@0
   670
	 Therefore this option should generally be used with KPccdNonSpecificTpl when the requirement
sl@0
   671
	 is to just validate a CIS). To turn on full error reporting (e.g. when validating a CIS),
sl@0
   672
	 OR 'aFlag' with 'KPccdReportErrors'.
sl@0
   673
	 
sl@0
   674
	 @param aDesiredTpl  Tuple to be searched in CIS chain.
sl@0
   675
	 
sl@0
   676
	 @param aDes  Tuple searched is read into aDes.
sl@0
   677
sl@0
   678
	 @param aFlag Used to read tuple which are not read by default by ORing aFlag with KPccdReturnLinkTpl.
sl@0
   679
sl@0
   680
	 
sl@0
   681
	 @return KErrNone if successful,KErrNotFound,if could not find a tuple of the type specified
sl@0
   682
	 (or possible invalid CIS if 'KPccdReportErrors' isn't set).KErrNotReady,if card not powered/ready(possible media change).
sl@0
   683
	 KErrCorrupt,if only returned when 'KPccdReportErrors' set.Too many tuples found (>256), too many link tuples, no link target etc.
sl@0
   684
	 KErrArguement,if Tuple is longer than maximum length of 'aDes'.KErrNoMemory,if problem allocating memory during processing of request (no memory).
sl@0
   685
	 KerrAccessDenied, if problem allocating memory during processing of request (memory containing CIS already allocated to another client).
sl@0
   686
	 */
sl@0
   687
	IMPORT_C TInt FindReadTuple(TUint8 aDesiredTpl,TDes8 &aDes,TUint aFlag=0);
sl@0
   688
	/**
sl@0
   689
	 Gets the tuple at the current CIS offset. This is identical to FindReadTuple() except that it always returns 
sl@0
   690
	 the tuple at the current CIS offset rather than  searching for a tuple of a specified type. 
sl@0
   691
	 
sl@0
   692
	 @param aDec8 Tuple is read into aDes8.
sl@0
   693
sl@0
   694
     @return KErrNone if successful, KErrNotFound, if could not find a tuple of the type specified (or possible invalid CIS if 'KPccdReportErrors' isn't set).
sl@0
   695
	 KErrNotReady,if card not powered/ready (possible media change).KErrCorrupt,if only returned when 'KPccdReportErrors' set. 
sl@0
   696
	 Too many tuples found (>256), too many link tuples, no link target etc.KErrArguement ,if Tuple is longer than maximum length of 'aDes'.
sl@0
   697
	 KErrNoMemory if problem allocating memory during processing of request (no memory). KErrAccessDenied, if problem allocating memory during processing of request
sl@0
   698
	 (memory containing CIS already allocated to another client).
sl@0
   699
     */
sl@0
   700
	IMPORT_C TInt ReadTuple(TDes8 &aDes);
sl@0
   701
	/**
sl@0
   702
	 Gets information in 'anInfo' from the selected CIS on the card's memory devices. 
sl@0
   703
	 
sl@0
   704
	 This information is contained in the CIS in the appropriate Device tuple. 
sl@0
   705
	 Each time the function is called it returns information on the next device specified 
sl@0
   706
	 (i.e. next Device Info field). When all regions have been reported, KErrNotFound is returned. 
sl@0
   707
	 By default, it reports on devices in common memory space. 
sl@0
   708
	
sl@0
   709
	 To receive device info when the card is operated at 5V, set 'aSocketVcc' 
sl@0
   710
	 to EPccdSocket_5V0 (and KCisTplDevice tuples are processed). For characteristics at 3.3V,
sl@0
   711
	 set 'aSocketVcc' to EPccdSocket_3V3 (and KCisTplDeviceOC tuples are processed). 
sl@0
   712
	 
sl@0
   713
	 To receive info on devices in attribute memory space, use 'aDesiredTpl' to override 
sl@0
   714
	 the type of tuple processed. E.g. to receive device information on attribute memory at 5V, 
sl@0
   715
	 set 'aDesiredTpl' to KCisTplDeviceA. (This feature also allows FindReadRegion() to be used 
sl@0
   716
	 to parse vendor specific tuples which conform to device tuple structure).
sl@0
   717
	 This function searches for the appropriate tuple type starting from the current position 
sl@0
   718
	 of the CIS pointer so it may be necessary to issue a Restart() before each sequence of Calls of this function. 
sl@0
   719
sl@0
   720
	 The TPcCardRegion object contains a TPccdChnk which can then be used directly in a
sl@0
   721
	 call to DPcCardController::RequestMemory() to request a chunk of PC Card memory.
sl@0
   722
	 
sl@0
   723
	 @param aSocketVcc Used to set the Pc Card Socket voltage.
sl@0
   724
sl@0
   725
     @param anInfo    This has the information returned from the selected CIS on the card's memory devices.
sl@0
   726
sl@0
   727
	 @param aDesiredTpl Desired Tuple used to find, initialized to zero.
sl@0
   728
sl@0
   729
     @return KErrNone if successful.KErrNotFound,if no more configurations present. KErrNotReady if card not powered/ready (possible media change).
sl@0
   730
	 KErrCorrupt, if invalid configuration/configuration-table-entry tuple detected. KErrNotSupported, if Configuration table entry not supported.
sl@0
   731
	 KErrNoMemory, if problem allocating memory during processing of request (no memory). KErrAccessDenied if problem allocating memory during 
sl@0
   732
	 processing of request (memory containing CIS already allocated to another client).
sl@0
   733
	 */
sl@0
   734
	IMPORT_C TInt FindReadRegion(TPccdSocketVcc aSocketVcc,TPcCardRegion &anInfo,TUint8 aDesiredTpl=0);
sl@0
   735
	/**
sl@0
   736
	 Find the next configuration table entry in the CIS and return the detail of it in 'anInfo'. 
sl@0
   737
	 When all entries have been found, KErrNotFound is returned. This function allows a client to parse a CIS,
sl@0
   738
	 reading information on each of the different configuration option present. 
sl@0
   739
	 It is necessary to issue a Restart() before each sequence of calls of this function. 
sl@0
   740
       
sl@0
   741
	 Following a call to this function, the TPcCardConfig object can then be used directly
sl@0
   742
	 in a call to DPcCardController::RequestConfig() to configure the card. Also the TPcCardConfig object
sl@0
   743
	 contains a TPccdChnk which can then be used directly in a call to DPcCardController::RequestMemory() 
sl@0
   744
	 to request the appropriate chunk of PC Card memory.
sl@0
   745
	 
sl@0
   746
	 @param anInfo  has the PcCardconfig information read from CIS entry.
sl@0
   747
	 
sl@0
   748
	 @return KErrNone if successful. KerrNotFound, if no more regions of the type specified to be found.
sl@0
   749
	 KErrNotReady,if card not powered/ready (possible media change). KErrCorrupt, if device tuple contained invalid device info. field.
sl@0
   750
	 KErrNotSupported ,if device tuple contained extended device type. KErrNoMemory,if problem allocating memory during processing
sl@0
   751
	 of request (no memory). KErrAccessDenied if problem allocating memory during processing of request 
sl@0
   752
	 (memory containing CIS already allocated to another client).
sl@0
   753
sl@0
   754
	 */
sl@0
   755
	IMPORT_C TInt FindReadConfig(TPcCardConfig &anInfo);
sl@0
   756
public:
sl@0
   757
    /**
sl@0
   758
	 Sets the CIS reader to socket and function, and checks that the function is valid.
sl@0
   759
	
sl@0
   760
	 @param aCardFunc  Card function to be assined to the CIS reader.
sl@0
   761
	 */
sl@0
   762
	TInt DoSelectCis(TInt aCardFunc);
sl@0
   763
	/**
sl@0
   764
	 Sets the CIS reader back to the start of the CIS.
sl@0
   765
	 */
sl@0
   766
	void DoRestart();
sl@0
   767
	/**
sl@0
   768
	 Find a specified tuple from the CIS and read it.
sl@0
   769
sl@0
   770
	 @param aDesiredTpl  Tuple to be searched in CIS chain.
sl@0
   771
	 
sl@0
   772
	 @param aDec8 Tuple is read into aDes8.
sl@0
   773
sl@0
   774
	 @param aFlag Used to read tuple which are not read by default by ORing aFlag with KPccdReturnLinkTpl.
sl@0
   775
sl@0
   776
	 To use this function to find a tuple without reading it, OR 'aFlag' with KPccdFindOnly.
sl@0
   777
	 (It is recomended not to read an un-recognisd tuple in case it contains active registers.
sl@0
   778
	 Therefore this option should generally be used with KPccdNonSpecificTpl when the requirement
sl@0
   779
	 is to just validate a CIS). To turn on full error reporting (e.g. when validating a CIS),
sl@0
   780
	 OR 'aFlag' with 'KPccdReportErrors'.
sl@0
   781
	 @return KErrNone if successful, KErrNotFound,if could not find a tuple of the type specified
sl@0
   782
	 (or possible invalid CIS if 'KPccdReportErrors' isn't set).KErrNotReady if card not powered/ready (possible media change).
sl@0
   783
	 KErrCorrupt if only returned when 'KPccdReportErrors' set.Too many tuples found (>256), too many link tuples, no link target etc.
sl@0
   784
	 KErrArguement,if tuple is longer than maximum length of 'aDes'. KErrNoMemory if problem allocating memory during processing of request (no memory).
sl@0
   785
	 KErrAccessDenied,if problem allocating memory during processing of request (memory containing CIS already allocated to another client).
sl@0
   786
	 */
sl@0
   787
	TInt DoFindReadTuple(TUint8 aDesiredTpl,TDes8 &aDes,TUint aFlag);
sl@0
   788
	/**
sl@0
   789
	 Gets the tuple at the current CIS offset. This is identical to FindReadTuple() except that it always returns 
sl@0
   790
	 the tuple at the current CIS offset rather than  searching for a tuple of a specified type. 
sl@0
   791
	 
sl@0
   792
	 @param aDec8 Tuple is read into aDes8.
sl@0
   793
     
sl@0
   794
	 @return KErrNone if successful, KErrNotFound,if could not find a tuple of the type specified
sl@0
   795
	 (or possible invalid CIS if 'KPccdReportErrors' isn't set).KErrNotReady if card not powered/ready (possible media change).
sl@0
   796
	 KErrCorrupt if only returned when 'KPccdReportErrors' set.Too many tuples found (>256), too many link tuples, no link target etc.
sl@0
   797
	 KErrArguement,if tuple is longer than maximum length of 'aDes'. KErrNoMemory if problem allocating memory during processing of request (no memory).
sl@0
   798
	 KErrAccessDenied,if problem allocating memory during processing of request (memory containing  CIS already allocated to another client). 
sl@0
   799
	 */
sl@0
   800
	TInt DoReadTuple(TDes8 &aDes);
sl@0
   801
    /**
sl@0
   802
	 Gets the error report when their is no more CIS links.
sl@0
   803
sl@0
   804
	 Called at the end of a tuple chain, this moves CIS pointer to the next CIS chain if a long link has been detected.
sl@0
   805
	 
sl@0
   806
	 @param aFullErrorReport Error report after when their is no more CIS links.
sl@0
   807
     */
sl@0
   808
	TInt FollowLink(TUint aFullErrorReport);
sl@0
   809
	/**
sl@0
   810
	 Verify a new tuple chain starts with a valid link target tuple.
sl@0
   811
	 
sl@0
   812
	 @return KErrNone if successfull, otherwise KErrCorrupt.
sl@0
   813
     */
sl@0
   814
	TInt VerifyLinkTarget();
sl@0
   815
public:
sl@0
   816
	/**
sl@0
   817
     A pointer to Pc Card Socket. 
sl@0
   818
	 */
sl@0
   819
	DPcCardSocket *iSocket;
sl@0
   820
	/**
sl@0
   821
	 Pc Card function.
sl@0
   822
	 */
sl@0
   823
	TInt iFunc;
sl@0
   824
	/**
sl@0
   825
	 Offset within the CIS memory.
sl@0
   826
	 */
sl@0
   827
	TUint32	iCisOffset;	
sl@0
   828
	/**
sl@0
   829
	 Link offset within the CIS memory.
sl@0
   830
	 */
sl@0
   831
	TUint32	iLinkOffset;	
sl@0
   832
	/**
sl@0
   833
	 Pc Card memory type.
sl@0
   834
	 @see TPccdMemType
sl@0
   835
	 */
sl@0
   836
	TPccdMemType iMemType;
sl@0
   837
	/**
sl@0
   838
	 Linkflags used to link the tuple.
sl@0
   839
	 */ 
sl@0
   840
	TInt iLinkFlags;
sl@0
   841
    /** 
sl@0
   842
	 Used in constructor to mark Pc Card as not restarted.
sl@0
   843
	 */
sl@0
   844
	TBool iRestarted; 
sl@0
   845
	/**
sl@0
   846
     For FindReadRegion() - Count of regions read so far.
sl@0
   847
	 */
sl@0
   848
	TInt iRegionCount; 	
sl@0
   849
	/**
sl@0
   850
	 For FindReadConfig() - Configurations read so far.
sl@0
   851
	 */
sl@0
   852
	TInt iConfigCount; 
sl@0
   853
	};
sl@0
   854
sl@0
   855
NONSHARABLE_CLASS(DPcCardVcc) : public DPBusPsuBase
sl@0
   856
	{
sl@0
   857
public:
sl@0
   858
	DPcCardVcc(TInt aPsuNum, TInt aMediaChangeNum);
sl@0
   859
	virtual TBool IsLocked();
sl@0
   860
	virtual void ReceiveVoltageCheckResult(TInt anError);
sl@0
   861
	inline void SetVoltage(TPccdSocketVcc aVoltage);
sl@0
   862
	inline TPccdSocketVcc VoltageSetting();
sl@0
   863
	static TInt SocketVccToMilliVolts(TPccdSocketVcc aVcc);
sl@0
   864
public:
sl@0
   865
	TPccdSocketVcc iVoltageSetting;
sl@0
   866
	};
sl@0
   867
sl@0
   868
NONSHARABLE_CLASS(DPcCardMediaChange) : public DMediaChangeBase
sl@0
   869
	{
sl@0
   870
public:
sl@0
   871
	DPcCardMediaChange(TInt aMediaChangeNum);
sl@0
   872
	virtual TInt Create();
sl@0
   873
	};
sl@0
   874
    /**
sl@0
   875
	 This class contains functions provided by Pc Card.
sl@0
   876
sl@0
   877
	 @publishedPartner
sl@0
   878
	 @released
sl@0
   879
	 */
sl@0
   880
class TPcCardFunction
sl@0
   881
	{
sl@0
   882
public:
sl@0
   883
    /**
sl@0
   884
     Constructor, intialises iFuncType (EUnknownCard),iInitCisOffset(anOffset),iInitCisMemType(aMemType),
sl@0
   885
	 iConfigBaseAddr(0),iConfigRegMask(0),iConfigIndex(KInvalidConfOpt),iConfigFlags(0).
sl@0
   886
     
sl@0
   887
	 @param anOffset   An offset value to be initialised for Cis.
sl@0
   888
	 
sl@0
   889
	 @param aMemType   Cis memory type to be initialised.  
sl@0
   890
	 
sl@0
   891
	 @see TPccdMemType
sl@0
   892
	 */ 
sl@0
   893
	TPcCardFunction(TUint32 anOffset,TPccdMemType aMemType);
sl@0
   894
	/**
sl@0
   895
	 Sets the  configuration option(anIndex), client ID and flags used to configure the Pc Card .
sl@0
   896
sl@0
   897
	 @param anIndex		     Configuration option of the Pc Card.
sl@0
   898
	 
sl@0
   899
	 @param aClientId	     A pointer to the LDD making the configuration.
sl@0
   900
sl@0
   901
	 @param aConfigFlags	 Select Pc Card features.
sl@0
   902
	 */
sl@0
   903
	void SetConfigOption(TInt anIndex,DBase *aClientID,TUint aConfigFlags);
sl@0
   904
    /**
sl@0
   905
	 Sets the configuration base address for Pc Card.
sl@0
   906
sl@0
   907
     @param anAddr	Base address to configure Pc Card.
sl@0
   908
	 */
sl@0
   909
	inline void SetConfigBaseAddr(TUint32 anAddr);
sl@0
   910
	/**
sl@0
   911
	 Sets the Mask register with aMask value.
sl@0
   912
sl@0
   913
	 @param aMask  The mask value to which the register to be masked.
sl@0
   914
	 */
sl@0
   915
	inline void SetConfigRegMask(TInt aMask);	
sl@0
   916
	/**
sl@0
   917
     Sets the function type of the Pc Card.
sl@0
   918
sl@0
   919
	 @param aType  Function type of the Pc Card.
sl@0
   920
sl@0
   921
	 @see TPccdFuncType
sl@0
   922
	 */
sl@0
   923
	inline void SetFuncType(TPccdFuncType aType);	
sl@0
   924
	/**
sl@0
   925
     Sets the register and offset address.
sl@0
   926
sl@0
   927
     @param anRegOffset   Offset within the register address.
sl@0
   928
sl@0
   929
	 @param anAddr		  Register address to configure.
sl@0
   930
sl@0
   931
	 @return KErrNone if successful, otherwise Error if the register isn't present.
sl@0
   932
	 */ 
sl@0
   933
	TInt ConfigRegAddress(TInt aRegOffset,TInt &anAddr);
sl@0
   934
	/**
sl@0
   935
	 Gets a fuction type the card can provide.
sl@0
   936
sl@0
   937
	 @param anAddr , Address to be configured.
sl@0
   938
sl@0
   939
	 @return iFuncType The type of function the card can provide.
sl@0
   940
sl@0
   941
	 @see TPccdFuncType
sl@0
   942
	 */
sl@0
   943
	inline TPccdFuncType FuncType();
sl@0
   944
    /**
sl@0
   945
	 Gets configuration index of the Pc Card.
sl@0
   946
sl@0
   947
	 @return iConfigIndex the configuration option of the Pc Card.
sl@0
   948
     */
sl@0
   949
	inline TInt ConfigOption();
sl@0
   950
	/**
sl@0
   951
	 Checks whether the Pc Card is configured to the given configuration.
sl@0
   952
sl@0
   953
     @return True if the Pc Card is configured for the given configuration.
sl@0
   954
sl@0
   955
	 */
sl@0
   956
	inline TBool IsConfigured();
sl@0
   957
	/**
sl@0
   958
	 Checks whether the Pc Card is configured by the client.
sl@0
   959
sl@0
   960
	 @param aClientId	A pointer to the LDD making the configuration.
sl@0
   961
sl@0
   962
	 @return True if the card is configured for the given clientId.
sl@0
   963
	 */
sl@0
   964
	inline TBool IsConfiguredByClient(DBase *aClientID);
sl@0
   965
	/**
sl@0
   966
	 Checks whether the configuration is restoreable after it has been powered 
sl@0
   967
     down due to inactivity (but not media change).
sl@0
   968
sl@0
   969
	 @return True if it can restore
sl@0
   970
	 */
sl@0
   971
	inline TBool IsRestorableConfig();
sl@0
   972
	/** 
sl@0
   973
	 Gets CIS initialisation  of the Pc Card.
sl@0
   974
sl@0
   975
	 @return iInitCisOffset CIS initialisation of the Pc Card.
sl@0
   976
	 */
sl@0
   977
	inline TUint32 InitCisOffset();
sl@0
   978
	/**
sl@0
   979
	 Gets the type of CIS memory.
sl@0
   980
sl@0
   981
     @return iInitCisMemType type of Cis Memory type.
sl@0
   982
	 */
sl@0
   983
	inline TPccdMemType InitCisMemType();
sl@0
   984
public:
sl@0
   985
	/**
sl@0
   986
	 Type of function the Pc Card can provide.
sl@0
   987
sl@0
   988
	 @see TPccdFuncType.
sl@0
   989
	 */
sl@0
   990
	TPccdFuncType iFuncType;
sl@0
   991
	/**
sl@0
   992
     To store offset of CIS memory to be initialzed.
sl@0
   993
	 */
sl@0
   994
	TUint32 iInitCisOffset;	
sl@0
   995
	/** 
sl@0
   996
	 To store the type of memory which needs to be configured.
sl@0
   997
sl@0
   998
	 @see TPccdMemType.
sl@0
   999
	 */
sl@0
  1000
	TPccdMemType iInitCisMemType;
sl@0
  1001
	/**
sl@0
  1002
	 To hold the base configuration address of the Pc Card.
sl@0
  1003
	 */
sl@0
  1004
	TUint32 iConfigBaseAddr;
sl@0
  1005
	/**
sl@0
  1006
	 To hold the  configuration register mask  of the Pc Card.
sl@0
  1007
	 */
sl@0
  1008
	TInt iConfigRegMask;
sl@0
  1009
    /**
sl@0
  1010
     To store the configuration option of the Pc Card.
sl@0
  1011
     */
sl@0
  1012
	TInt iConfigIndex;
sl@0
  1013
	/**
sl@0
  1014
	 A pointer to the LDD which request Cis configuration.
sl@0
  1015
	 */
sl@0
  1016
	DBase *iClientID;
sl@0
  1017
	/** 
sl@0
  1018
	 Configuration flags that can be used to configure the Pc Card.
sl@0
  1019
	 */
sl@0
  1020
	TUint iConfigFlags;
sl@0
  1021
	};
sl@0
  1022
sl@0
  1023
NONSHARABLE_CLASS(DPcCardSocket) : public DPBusSocket
sl@0
  1024
	{
sl@0
  1025
public:
sl@0
  1026
	enum TPowerUpState
sl@0
  1027
		{
sl@0
  1028
		EIdle=0,
sl@0
  1029
		EInit=1,
sl@0
  1030
		EApplyingReset=2,
sl@0
  1031
		ECheckVcc=3,
sl@0
  1032
		EWaitForVccReading=4,
sl@0
  1033
		EWaitForReady=5,
sl@0
  1034
		EPauseAfterReady=6,
sl@0
  1035
		};
sl@0
  1036
public:
sl@0
  1037
	DPcCardSocket(TSocket aSocketNum);
sl@0
  1038
	virtual TInt Create(const TDesC* aName);
sl@0
  1039
	virtual void InitiatePowerUpSequence();
sl@0
  1040
	void TerminatePowerUpSequence(TInt aResult);
sl@0
  1041
	void ResetPowerUpState();
sl@0
  1042
	void CardPowerUpTick();
sl@0
  1043
	virtual void SocketInfo(TPcCardSocketInfo& anInfo)=0;
sl@0
  1044
	virtual void Reset1();
sl@0
  1045
	virtual void Reset2();
sl@0
  1046
	virtual TInt CardIsReadyAndVerified();
sl@0
  1047
	virtual TBool CardIsReady();
sl@0
  1048
	virtual TBool CardIsPowered();
sl@0
  1049
	IMPORT_C TInt VerifyCard(TPccdType& aType);
sl@0
  1050
	TInt GetCisFormat();
sl@0
  1051
	IMPORT_C TInt RequestConfig(TInt aCardFunc,DBase *aClientID,TPcCardConfig &anInfo,TUint aFlag);
sl@0
  1052
	IMPORT_C void ReleaseConfig(TInt aCardFunc,DBase *aClientID);
sl@0
  1053
	IMPORT_C TInt ReadConfigReg(TInt aCardFunc,TInt aRegOffset,TUint8 &aVal);
sl@0
  1054
	IMPORT_C TInt WriteConfigReg(TInt aCardFunc,TInt aRegOffset,const TUint8 aVal);
sl@0
  1055
	TInt ReadCis(TPccdMemType aMemType,TInt aPos,TDes8 &aDes,TInt aLen);
sl@0
  1056
	TPcCardFunction *CardFunc(TInt aCardFunc);
sl@0
  1057
	TInt AddNewFunc(TUint32 anOffset,TPccdMemType aMemType);
sl@0
  1058
	TInt ValidateCis(TInt aCardFunc);
sl@0
  1059
	inline TInt CardFuncCount();
sl@0
  1060
	inline TBool IsValidCardFunc(TInt aCardFunc);
sl@0
  1061
	inline TBool IsMultiFuncCard();
sl@0
  1062
	TBool IsConfigLocked();
sl@0
  1063
	TBool IsMemoryLocked();
sl@0
  1064
	TBool IsVerified();
sl@0
  1065
	virtual void HwReset(TBool anAssert)=0;
sl@0
  1066
	virtual TInt Indicators(TSocketIndicators &anInd)=0;
sl@0
  1067
	virtual TBool Ready(TInt aCardFunc=KInvalidFuncNum)=0;
sl@0
  1068
	TPccdSocketVcc VccSetting();
sl@0
  1069
	void Restore();
sl@0
  1070
public:
sl@0
  1071
	virtual DPccdChunkBase *NewPccdChunk(TPccdMemType aType)=0;
sl@0
  1072
	virtual TInt InterruptEnable(TPccdInt anInt, TUint aFlag)=0;
sl@0
  1073
	virtual void InterruptDisable(TPccdInt anInt)=0;
sl@0
  1074
	void RemoveChunk(DPccdChunkBase *aChunk);
sl@0
  1075
public:
sl@0
  1076
	RPointerArray<TPcCardFunction> iCardFuncArray;
sl@0
  1077
	RPointerArray<DPccdChunkBase> iMemChunks;
sl@0
  1078
	RPccdWindow iAttribWin;
sl@0
  1079
	TInt iCardPowerUpState;
sl@0
  1080
	TTickLink iCardPowerUpTimer;
sl@0
  1081
	TDfc iCardPowerUpDfc;
sl@0
  1082
	TInt iCardPowerUpTickCount;
sl@0
  1083
	TInt iCardPowerUpResetLen;
sl@0
  1084
	TInt iCardPowerUpPauseLen;
sl@0
  1085
	TInt iClientWindows;
sl@0
  1086
	TInt iActiveConfigs;
sl@0
  1087
	};
sl@0
  1088
sl@0
  1089
enum TPcCardPanic
sl@0
  1090
	{
sl@0
  1091
	EPcCardBadSocketNumber=0,
sl@0
  1092
	EPcCardCisReaderUnInit=1,
sl@0
  1093
	EPcCardBadFunctionNumber=2,
sl@0
  1094
	EPcCardPowerUpReqFault=3,
sl@0
  1095
	EPcCardMediaDriverCurrentConsumption=4,
sl@0
  1096
	EPcCardAddEventError=5
sl@0
  1097
	};
sl@0
  1098
sl@0
  1099
GLREF_C void PcCardPanic(TPcCardPanic aPanic);
sl@0
  1100
sl@0
  1101
#include <pccard.inl>
sl@0
  1102
sl@0
  1103
sl@0
  1104
#endif