os/kernelhwsrv/kernel/eka/include/drivers/locmedia.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\locmedia.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef LOCMEDIA_H
sl@0
    19
#define LOCMEDIA_H
sl@0
    20
#include <plat_priv.h>
sl@0
    21
#include <d32locd.h>
sl@0
    22
sl@0
    23
#if defined(_DEBUG) && defined(__DEMAND_PAGING__)
sl@0
    24
#define __CONCURRENT_PAGING_INSTRUMENTATION__
sl@0
    25
#endif
sl@0
    26
#if defined(_DEBUG) && defined(__DEMAND_PAGING__)
sl@0
    27
#define __DEMAND_PAGING_BENCHMARKS__
sl@0
    28
#endif
sl@0
    29
sl@0
    30
#ifdef __WINS__
sl@0
    31
	#define __EMULATOR_DMA_SUMULATION__
sl@0
    32
#endif
sl@0
    33
sl@0
    34
/**
sl@0
    35
@publishedPartner
sl@0
    36
@released
sl@0
    37
sl@0
    38
A media driver priority value.
sl@0
    39
sl@0
    40
The value can be returned by a media driver's PDD factory Info() function,
sl@0
    41
and allows Symbian OS to decide the order in which media drivers are to be opened.
sl@0
    42
sl@0
    43
The value is relative to the other media driver priority values.
sl@0
    44
sl@0
    45
@see DPhysicalDevice::Info()
sl@0
    46
*/
sl@0
    47
const TInt KMediaDriverPriorityHigh=2;
sl@0
    48
sl@0
    49
sl@0
    50
sl@0
    51
sl@0
    52
/**
sl@0
    53
@publishedPartner
sl@0
    54
@released
sl@0
    55
sl@0
    56
A media driver priority value.
sl@0
    57
sl@0
    58
The value can be returned by a media driver's PDD factory Info() function,
sl@0
    59
and allows Symbian OS to decide the order in which media drivers are to be opened.
sl@0
    60
sl@0
    61
The value is relative to the other media driver priority values, and is
sl@0
    62
the one most commonly used.
sl@0
    63
sl@0
    64
@see DPhysicalDevice::Info()
sl@0
    65
*/
sl@0
    66
const TInt KMediaDriverPriorityNormal=1;
sl@0
    67
sl@0
    68
sl@0
    69
sl@0
    70
sl@0
    71
/**
sl@0
    72
@publishedPartner
sl@0
    73
@released
sl@0
    74
sl@0
    75
A media driver priority value.
sl@0
    76
sl@0
    77
The value can be returned by a media driver's PDD factory Info() function,
sl@0
    78
and allows Symbian OS to decide the order in which media drivers are to be opened.
sl@0
    79
sl@0
    80
The value is relative to the other media driver priority values.
sl@0
    81
sl@0
    82
@see DPhysicalDevice::Info()
sl@0
    83
*/
sl@0
    84
const TInt KMediaDriverPriorityLow=0;
sl@0
    85
sl@0
    86
sl@0
    87
sl@0
    88
sl@0
    89
/**
sl@0
    90
@publishedPartner
sl@0
    91
@released
sl@0
    92
sl@0
    93
Media driver interface major version number.
sl@0
    94
*/
sl@0
    95
const TInt KMediaDriverInterfaceMajorVersion=1;
sl@0
    96
sl@0
    97
sl@0
    98
sl@0
    99
sl@0
   100
/**
sl@0
   101
@publishedPartner
sl@0
   102
@released
sl@0
   103
sl@0
   104
Media driver interface minor version number.
sl@0
   105
*/
sl@0
   106
const TInt KMediaDriverInterfaceMinorVersion=0;
sl@0
   107
sl@0
   108
sl@0
   109
sl@0
   110
sl@0
   111
sl@0
   112
/**
sl@0
   113
@publishedPartner
sl@0
   114
@released
sl@0
   115
sl@0
   116
Media driver interface build number.
sl@0
   117
*/
sl@0
   118
const TInt KMediaDriverInterfaceBuildVersion=160;
sl@0
   119
sl@0
   120
sl@0
   121
sl@0
   122
sl@0
   123
/**
sl@0
   124
@publishedPartner
sl@0
   125
@released
sl@0
   126
*/
sl@0
   127
const TInt KMediaDriverDeferRequest=1;
sl@0
   128
sl@0
   129
sl@0
   130
sl@0
   131
sl@0
   132
/**
sl@0
   133
@internalTechnology
sl@0
   134
*/
sl@0
   135
#define __TRACE_TIMING(x)
sl@0
   136
//#define __TRACE_TIMING(x) *(TInt*)0x63000ff0=x
sl@0
   137
sl@0
   138
/**
sl@0
   139
@internalComponent
sl@0
   140
*/
sl@0
   141
NONSHARABLE_CLASS(DLocalDriveFactory) : public DLogicalDevice
sl@0
   142
	{
sl@0
   143
public:
sl@0
   144
	DLocalDriveFactory();
sl@0
   145
	virtual TInt Install();
sl@0
   146
	virtual void GetCaps(TDes8 &aDes) const;
sl@0
   147
	virtual TInt Create(DLogicalChannelBase*& aChannel);
sl@0
   148
	};
sl@0
   149
sl@0
   150
class TLocDrv;
sl@0
   151
class DLocalDrive;
sl@0
   152
sl@0
   153
/**
sl@0
   154
@internalComponent
sl@0
   155
*/
sl@0
   156
NONSHARABLE_CLASS(TLocalDriveCleanup) : public TThreadCleanup
sl@0
   157
	{
sl@0
   158
public:
sl@0
   159
	TLocalDriveCleanup();
sl@0
   160
	virtual void Cleanup();
sl@0
   161
	inline DLocalDrive& LocalDrive();
sl@0
   162
	};
sl@0
   163
sl@0
   164
sl@0
   165
sl@0
   166
class TLocDrvRequest;
sl@0
   167
class DPrimaryMediaBase;
sl@0
   168
sl@0
   169
/**
sl@0
   170
@publishedPartner
sl@0
   171
@released
sl@0
   172
sl@0
   173
This class is strictly internal to Symbian; the only part of this class that
sl@0
   174
is publicly exposed to partners is the TRequestId enum.
sl@0
   175
sl@0
   176
@see DLocalDrive::TRequestId
sl@0
   177
*/
sl@0
   178
NONSHARABLE_CLASS(DLocalDrive) : public DLogicalChannelBase
sl@0
   179
	{
sl@0
   180
public:
sl@0
   181
	/**
sl@0
   182
	Identifies the specific local drive operation.
sl@0
   183
	*/
sl@0
   184
	enum TRequestId
sl@0
   185
		{
sl@0
   186
		/**
sl@0
   187
		Requests information about the size, type, and attributes of the media.
sl@0
   188
		*/
sl@0
   189
		ECaps=0,
sl@0
   190
		
sl@0
   191
		/**
sl@0
   192
		Requests an asynchronous read from the media device.
sl@0
   193
		*/
sl@0
   194
		ERead=1,
sl@0
   195
		
sl@0
   196
		/**
sl@0
   197
		Requests an asynchronous write to the media device.
sl@0
   198
		*/
sl@0
   199
		EWrite=2,
sl@0
   200
		
sl@0
   201
		/**
sl@0
   202
		Requests the formatting of a section of the media
sl@0
   203
		*/
sl@0
   204
		EFormat=3,
sl@0
   205
		
sl@0
   206
		/**
sl@0
   207
		A request to expand the total size of the media.
sl@0
   208
		*/
sl@0
   209
		EEnlarge=4,
sl@0
   210
		
sl@0
   211
		/**
sl@0
   212
		A request to reduce the total size of the media.
sl@0
   213
		*/
sl@0
   214
		EReduce=5,
sl@0
   215
		
sl@0
   216
		/**
sl@0
   217
		A request to force a remount of the media.
sl@0
   218
		*/
sl@0
   219
		EForceMediaChange=6,
sl@0
   220
		
sl@0
   221
		/**
sl@0
   222
		Requests an attempt to lock the media with a password.
sl@0
   223
		*/
sl@0
   224
		EPasswordLock=7,
sl@0
   225
		
sl@0
   226
		/**
sl@0
   227
		Requests an attempt to unlock the media.
sl@0
   228
		*/
sl@0
   229
		EPasswordUnlock=8,
sl@0
   230
		
sl@0
   231
		/**
sl@0
   232
		Requests an attempt to remove the password from the media.
sl@0
   233
		*/
sl@0
   234
		EPasswordClear=9,
sl@0
   235
		
sl@0
   236
		/**
sl@0
   237
		Requests an read of the password store.
sl@0
   238
		*/
sl@0
   239
		EReadPasswordStore=10,
sl@0
   240
		
sl@0
   241
		/**
sl@0
   242
		Requests a write of the password store.
sl@0
   243
		*/
sl@0
   244
		EWritePasswordStore=11,
sl@0
   245
		
sl@0
   246
		/** 
sl@0
   247
		A request to get the length of the password store.
sl@0
   248
		*/
sl@0
   249
		EPasswordStoreLengthInBytes=12,
sl@0
   250
		/** 
sl@0
   251
		A Control IO request
sl@0
   252
		*/
sl@0
   253
		EControlIO=13,
sl@0
   254
		/** 
sl@0
   255
		A request to force an erase of the password from the media
sl@0
   256
		*/
sl@0
   257
		EPasswordErase=14,
sl@0
   258
sl@0
   259
		/** 
sl@0
   260
		A delete notification from the file system
sl@0
   261
		*/
sl@0
   262
		EDeleteNotify=15,
sl@0
   263
sl@0
   264
		/** 
sl@0
   265
		A request for information on the last error
sl@0
   266
		*/
sl@0
   267
		EGetLastErrorInfo=16,
sl@0
   268
sl@0
   269
		EFirstReqNumberReservedForPaging=17,
sl@0
   270
		// DO NOT REUSE ANY OF THE REQUEST NUMBERS BETWEEN THIS AND THE LAST RESERVED REQ NUMBER
sl@0
   271
		// ALSO DO NOT INSERT ANY REQUEST NUMBERS BEFORE THIS, AS THIS WILL BE A COMPATIBILITY BREEAK
sl@0
   272
		ELastReqNumberReservedForPaging=31,
sl@0
   273
sl@0
   274
		/**
sl@0
   275
		Query device 
sl@0
   276
		*/
sl@0
   277
		EQueryDevice=32,
sl@0
   278
sl@0
   279
		};
sl@0
   280
public:
sl@0
   281
	DLocalDrive(); 
sl@0
   282
	~DLocalDrive();
sl@0
   283
public:
sl@0
   284
	virtual TInt DoCreate(TInt aUnit, const TDesC8* anInfo, const TVersion& aVer); /**< @internalComponent */
sl@0
   285
	virtual TInt Request(TInt aFunction, TAny* a1, TAny* a2);                      /**< @internalComponent */
sl@0
   286
public:
sl@0
   287
	void NotifyChange(DPrimaryMediaBase& aPrimaryMedia, TBool aMediaChange);
sl@0
   288
public:
sl@0
   289
	inline void Deque();                 /**< @internalComponent */
sl@0
   290
sl@0
   291
private:
sl@0
   292
#ifdef __DEMAND_PAGING__
sl@0
   293
	TInt LockMountInfo(DPrimaryMediaBase& aPrimaryMedia, TLocDrvRequest& aReq);
sl@0
   294
	void UnlockMountInfo(DPrimaryMediaBase& aPrimaryMedia);
sl@0
   295
#endif
sl@0
   296
	TInt ReadPasswordData(TLocDrvRequest& aReq, TLocalDrivePasswordData& aPswData, TMediaPassword& aOldPasswd, TMediaPassword& aNewPasswd);
sl@0
   297
sl@0
   298
public:
sl@0
   299
	TLocDrv* iDrive;							/**< @internalComponent */
sl@0
   300
	SDblQueLink iLink;							/**< @internalComponent */
sl@0
   301
	TClientDataRequest<TBool>* iNotifyChangeRequest;	/**< @internalComponent */
sl@0
   302
	TLocalDriveCleanup iCleanup;				 /**< @internalComponent */
sl@0
   303
	};
sl@0
   304
sl@0
   305
/**
sl@0
   306
@internalComponent
sl@0
   307
*/
sl@0
   308
inline DLocalDrive& TLocalDriveCleanup::LocalDrive()
sl@0
   309
	{ return *_LOFF(this,DLocalDrive,iCleanup); }
sl@0
   310
sl@0
   311
sl@0
   312
sl@0
   313
sl@0
   314
/**
sl@0
   315
@publishedPartner
sl@0
   316
@released
sl@0
   317
sl@0
   318
A class that encapsulates the request information received from the client,
sl@0
   319
and gives the media driver access to the request ID and other associated
sl@0
   320
parameters, such as the request length, offset, the requesting thread,
sl@0
   321
source and destination address etc.
sl@0
   322
sl@0
   323
An object of this type is passed to DMediaDriver::Request().
sl@0
   324
sl@0
   325
@see DMediaDriver::Request()
sl@0
   326
*/
sl@0
   327
class TLocDrvRequest : public TThreadMessage
sl@0
   328
	{
sl@0
   329
public:
sl@0
   330
sl@0
   331
    /** 
sl@0
   332
	@internalComponent
sl@0
   333
    */
sl@0
   334
	enum TFlags
sl@0
   335
		{
sl@0
   336
		EWholeMedia=1,
sl@0
   337
		EAdjusted=2,
sl@0
   338
		EPhysAddr=0x04,
sl@0
   339
		EPaging=0x08,				// a paging request
sl@0
   340
		EBackgroundPaging=0x10,		// a background paging request. @see DMediaPagingDevice::Write()
sl@0
   341
		ECodePaging=0x20,			// a code paging request
sl@0
   342
		EDataPaging=0x40,			// a data paging request
sl@0
   343
		ETClientBuffer=0x80,		// RemoteDes() points to a TClientBuffer
sl@0
   344
		EKernelBuffer=0x100,		// RemoteDes() points to a kernel-side buffer
sl@0
   345
		};
sl@0
   346
public:
sl@0
   347
    
sl@0
   348
    /**
sl@0
   349
    Gets a reference to the object containing the request information.
sl@0
   350
    
sl@0
   351
    @return The request information.
sl@0
   352
    */
sl@0
   353
	inline static TLocDrvRequest& Get()
sl@0
   354
		{return (TLocDrvRequest&)Kern::Message();}
sl@0
   355
	
sl@0
   356
		
sl@0
   357
    /**
sl@0
   358
    Gets the request ID.
sl@0
   359
    
sl@0
   360
    For media drivers, this is one of the DLocalDrive::TRequestId enumerated values.
sl@0
   361
    
sl@0
   362
    @return The request ID.
sl@0
   363
    
sl@0
   364
    @see DLocalDrive::TRequestId
sl@0
   365
    */
sl@0
   366
	inline TInt& Id()
sl@0
   367
		{return *(TInt*)&iValue;}
sl@0
   368
		
sl@0
   369
		
sl@0
   370
    /**
sl@0
   371
    Gets the position on the media on which the request operates. 
sl@0
   372
    
sl@0
   373
    This applies to operations ERead, EWrite and EFormat.
sl@0
   374
sl@0
   375
    Note that the partition offset is taken into account by the underlying
sl@0
   376
    local media subsystem.
sl@0
   377
    
sl@0
   378
    @return The position on the media.
sl@0
   379
    
sl@0
   380
    @see TRequestId::ERead
sl@0
   381
    @see TRequestId::EWrite
sl@0
   382
    @see TRequestId::EFormat
sl@0
   383
    */		
sl@0
   384
	inline Int64& Pos()
sl@0
   385
		{return *(Int64*)&iArg[0];}
sl@0
   386
	
sl@0
   387
	
sl@0
   388
	/**
sl@0
   389
	Gets the length associated with the operation.
sl@0
   390
	
sl@0
   391
	This is the number of bytes associated with the media request.
sl@0
   392
	It applies to operations ERead, EWrite and EFormat.
sl@0
   393
	
sl@0
   394
	@return The length, in bytes.
sl@0
   395
	
sl@0
   396
    @see TRequestId::ERead
sl@0
   397
    @see TRequestId::EWrite
sl@0
   398
    @see TRequestId::EFormat
sl@0
   399
	*/
sl@0
   400
	inline Int64& Length()
sl@0
   401
		{return *(Int64*)&iArg[2];}
sl@0
   402
		
sl@0
   403
	
sl@0
   404
	/**
sl@0
   405
	Gets a pointer to the remote thread that requested the operation.
sl@0
   406
	
sl@0
   407
	This may be used to access the data to be read from the remote thread's process,
sl@0
   408
	or the area to which data is to be written in the remote thread's process.
sl@0
   409
	However, it is recommended that	such operations be performed
sl@0
   410
	using ReadRemote() and WriteRemote()
sl@0
   411
	
sl@0
   412
	@return A reference to a pointer to the remote thread.
sl@0
   413
	
sl@0
   414
	@see TLocDrvRequest::ReadRemote()
sl@0
   415
	@see TLocDrvRequest::WriteRemote()
sl@0
   416
	*/
sl@0
   417
	inline DThread*& RemoteThread()
sl@0
   418
		{return *(DThread**)&iArg[4];}
sl@0
   419
		
sl@0
   420
		
sl@0
   421
	/**
sl@0
   422
	Gets a pointer to the descriptor in the remote thread's process that
sl@0
   423
	contains the data to be read, or is the target for data to be written.
sl@0
   424
	
sl@0
   425
    However, it is recommended that such read or write operations be performed
sl@0
   426
    using ReadRemote() and WriteRemote().
sl@0
   427
    
sl@0
   428
    @return A reference to a pointer to the remote descriptor.
sl@0
   429
sl@0
   430
    @see TLocDrvRequest::ReadRemote()
sl@0
   431
	@see TLocDrvRequest::WriteRemote()
sl@0
   432
	*/	
sl@0
   433
	inline TAny*& RemoteDes()
sl@0
   434
		{return *(TAny**)&iArg[5];}
sl@0
   435
		
sl@0
   436
		
sl@0
   437
    /**
sl@0
   438
    Gets the offset within the descriptor in the remote thread's process.
sl@0
   439
    
sl@0
   440
    @return The offset within the descriptor.
sl@0
   441
    */
sl@0
   442
	inline TInt& RemoteDesOffset()
sl@0
   443
		{return *(TInt*)&iArg[6];}
sl@0
   444
		
sl@0
   445
		
sl@0
   446
	/**
sl@0
   447
	@internalComponent
sl@0
   448
	*/
sl@0
   449
	inline TInt& Flags()
sl@0
   450
		{return *(TInt*)&iArg[7];}
sl@0
   451
		
sl@0
   452
		
sl@0
   453
	/**
sl@0
   454
	@internalComponent
sl@0
   455
	*/
sl@0
   456
	inline TLocDrv*& Drive()
sl@0
   457
		{return *(TLocDrv**)&iArg[8];}
sl@0
   458
		
sl@0
   459
		
sl@0
   460
	/**
sl@0
   461
	@internalComponent
sl@0
   462
	*/
sl@0
   463
	inline TInt& DriverFlags()
sl@0
   464
		{return *(TInt*)&iArg[9];}
sl@0
   465
sl@0
   466
sl@0
   467
	/**
sl@0
   468
	Returns true if Physical memory addresses are available for this TLocDrvRequest.
sl@0
   469
	@return ETrue if a physical memory address is available.
sl@0
   470
	*/
sl@0
   471
	inline TBool IsPhysicalAddress()
sl@0
   472
		{return Flags() & EPhysAddr;}
sl@0
   473
public:
sl@0
   474
	TInt ProcessMessageData(TAny* args);
sl@0
   475
	void CloseRemoteThread();
sl@0
   476
	IMPORT_C TInt ReadRemote(TDes8* aDes, TInt anOffset);
sl@0
   477
	IMPORT_C TInt ReadRemote(const TAny* aSrc, TDes8* aDes);
sl@0
   478
	IMPORT_C TInt ReadRemoteRaw(TAny* aDes, TInt aSize);
sl@0
   479
	IMPORT_C TInt WriteRemote(const TDesC8* aDes, TInt anOffset);
sl@0
   480
	IMPORT_C TInt WriteRemoteRaw(const TAny* aSrc, TInt aSize);
sl@0
   481
	IMPORT_C TInt CheckAndAdjustForPartition();
sl@0
   482
#if !defined(__WINS__)
sl@0
   483
	IMPORT_C TInt WriteToPageHandler(const TAny* aSrc, TInt aSize, TInt anOffset);
sl@0
   484
	IMPORT_C TInt ReadFromPageHandler(TAny* aDst, TInt aSize, TInt anOffset);
sl@0
   485
#endif // __WINS__
sl@0
   486
	IMPORT_C TInt GetNextPhysicalAddress(TPhysAddr& aPhysAddr, TInt& aLength);
sl@0
   487
	};
sl@0
   488
sl@0
   489
sl@0
   490
sl@0
   491
sl@0
   492
/**
sl@0
   493
@internalComponent
sl@0
   494
*/
sl@0
   495
inline void DLocalDrive::Deque()
sl@0
   496
	{ iLink.Deque(); }
sl@0
   497
sl@0
   498
sl@0
   499
sl@0
   500
sl@0
   501
/**
sl@0
   502
@publishedPartner
sl@0
   503
@released
sl@0
   504
sl@0
   505
Defines a structure used to contain information that describes an individual
sl@0
   506
partition. 
sl@0
   507
sl@0
   508
There is one of these for each partition that exists on a media device.
sl@0
   509
sl@0
   510
@see TPartitionInfo
sl@0
   511
*/
sl@0
   512
class TPartitionEntry
sl@0
   513
	{
sl@0
   514
public:
sl@0
   515
     
sl@0
   516
    /**
sl@0
   517
    The start address of the partition, described as a relative offset,
sl@0
   518
    in bytes, from the start of the media.
sl@0
   519
    
sl@0
   520
    This value is used by the local media subsystem to calculate
sl@0
   521
    the absolute address on the media whenever an access such as a Read,
sl@0
   522
    Write or Format request is made.
sl@0
   523
    */
sl@0
   524
	Int64 iPartitionBaseAddr;
sl@0
   525
 
sl@0
   526
 	
sl@0
   527
	/**
sl@0
   528
	The length of the partition, in bytes.
sl@0
   529
	*/
sl@0
   530
	Int64 iPartitionLen;
sl@0
   531
sl@0
   532
	
sl@0
   533
	/**
sl@0
   534
	The Boot Indicator record, as described in the Master Boot Record on
sl@0
   535
	FAT Partitioned devices.
sl@0
   536
sl@0
   537
	This is currently unused by the local media subsystem.
sl@0
   538
	*/
sl@0
   539
	TUint16 iBootIndicator;
sl@0
   540
	
sl@0
   541
	
sl@0
   542
	/**
sl@0
   543
	Describes the type of partition.
sl@0
   544
	
sl@0
   545
	The File Server uses this to decide the type of filesystem to be mounted
sl@0
   546
	on the partition. 
sl@0
   547
	
sl@0
   548
	Symbian OS supports many partition types, as defined in partitions.h.
sl@0
   549
	You are, however, free to invent your own partition type, on which
sl@0
   550
	you could, for example, mount your own filesystem. However, make sure 
sl@0
   551
	that your partition type does not clash with an existing partition type.
sl@0
   552
	
sl@0
   553
	Note that a media driver does not does not have to verify that
sl@0
   554
	the partition actually contains a file system of this type; it just sets
sl@0
   555
	this value to indicate the intended use for this partition.
sl@0
   556
	*/
sl@0
   557
	TUint16 iPartitionType;
sl@0
   558
	};
sl@0
   559
sl@0
   560
sl@0
   561
sl@0
   562
sl@0
   563
/**
sl@0
   564
@publishedPartner
sl@0
   565
@released
sl@0
   566
sl@0
   567
A constant that defines the maximum number of partitions that can exist on
sl@0
   568
a media device.
sl@0
   569
sl@0
   570
@see TPartitionInfo::iPartitionCount
sl@0
   571
*/
sl@0
   572
const TInt KMaxPartitionEntries=0x10;
sl@0
   573
sl@0
   574
sl@0
   575
sl@0
   576
sl@0
   577
/**
sl@0
   578
@publishedPartner
sl@0
   579
@released
sl@0
   580
sl@0
   581
Contains partition information for a media device.
sl@0
   582
sl@0
   583
An object of this type is passed to the media driver's implementation of
sl@0
   584
DMediaDriver::PartitionInfo() to be filled in.
sl@0
   585
sl@0
   586
@see DMediaDriver::PartitionInfo()
sl@0
   587
*/
sl@0
   588
class TPartitionInfo
sl@0
   589
	{
sl@0
   590
public:
sl@0
   591
sl@0
   592
    /**
sl@0
   593
    Default constructor that clears this object's memory to binary zeroes.
sl@0
   594
    */
sl@0
   595
	TPartitionInfo();
sl@0
   596
public:
sl@0
   597
sl@0
   598
    /**
sl@0
   599
    The total size of the media, in bytes.
sl@0
   600
    */
sl@0
   601
	Int64 iMediaSizeInBytes;
sl@0
   602
	
sl@0
   603
	
sl@0
   604
	/**
sl@0
   605
	The total number of partitions that exist on the media.
sl@0
   606
	
sl@0
   607
	This is always less than or equal to KMaxPartitionEntries.
sl@0
   608
	
sl@0
   609
    @see KMaxPartitionEntries
sl@0
   610
	*/
sl@0
   611
	TInt iPartitionCount;
sl@0
   612
	
sl@0
   613
	
sl@0
   614
	/**
sl@0
   615
	Information that describes each individual partition on the device.
sl@0
   616
	
sl@0
   617
	Each partition is represented by an array of TPartitionEntry objects. 
sl@0
   618
	Each entry must be created in the order of the start offset, so that 
sl@0
   619
	iEntry[0] specifies the partition with
sl@0
   620
	the smallest iPartitionBaseAddr value.
sl@0
   621
	
sl@0
   622
	@see TPartitionEntry::iPartitionBaseAddr
sl@0
   623
	@see TPartitionEntry
sl@0
   624
	*/
sl@0
   625
	TPartitionEntry iEntry[KMaxPartitionEntries];
sl@0
   626
	};
sl@0
   627
sl@0
   628
sl@0
   629
sl@0
   630
sl@0
   631
class DMedia;
sl@0
   632
class DPrimaryMediaBase;
sl@0
   633
class DMediaDriver;
sl@0
   634
#ifdef __DEMAND_PAGING__
sl@0
   635
class DFragmentationPagingLock;
sl@0
   636
#endif
sl@0
   637
class DDmaHelper;
sl@0
   638
sl@0
   639
/**
sl@0
   640
@internalComponent
sl@0
   641
*/
sl@0
   642
class TLocDrv : public TPartitionEntry
sl@0
   643
	{
sl@0
   644
public:
sl@0
   645
	TLocDrv(TInt aDriveNumber);
sl@0
   646
public:
sl@0
   647
	inline TInt Connect(DLocalDrive* aLocalDrive);
sl@0
   648
	inline void Disconnect(DLocalDrive* aLocalDrive);
sl@0
   649
	inline TInt Request(TLocDrvRequest& aRequest);
sl@0
   650
public:
sl@0
   651
	TInt iDriveNumber;
sl@0
   652
	DMedia* iMedia;
sl@0
   653
	DPrimaryMediaBase* iPrimaryMedia;
sl@0
   654
	TInt iPartitionNumber;
sl@0
   655
	TErrorInfo iLastErrorInfo;
sl@0
   656
#ifdef __DEMAND_PAGING__
sl@0
   657
	TInt iSpare0;
sl@0
   658
	TUint8 iPagingDrv;
sl@0
   659
	TUint8 iSpare1;
sl@0
   660
	TUint8 iSpare2;
sl@0
   661
	TUint8 iSpare3;
sl@0
   662
#endif
sl@0
   663
	DDmaHelper* iDmaHelper;
sl@0
   664
	};
sl@0
   665
sl@0
   666
/**
sl@0
   667
@publishedPartner
sl@0
   668
@released
sl@0
   669
sl@0
   670
Kernel-side representation of a media entity. A DMedia object instantiates a 
sl@0
   671
media driver to provide access to the physical media.
sl@0
   672
sl@0
   673
Multiple DMedia objects may be required by some devices, e.g. multi-media cards
sl@0
   674
with combined SRAM and Flash or cards containing user and protected areas.
sl@0
   675
*/
sl@0
   676
class DMedia : public DBase
sl@0
   677
	{
sl@0
   678
public:
sl@0
   679
	/**
sl@0
   680
	Declaration of all legal states for the media driver.
sl@0
   681
	*/
sl@0
   682
	enum TMediaState
sl@0
   683
		{
sl@0
   684
		/** 
sl@0
   685
		Media is powered down and the media drivers are closed. This is the 
sl@0
   686
		initial state when a media driver is created and the final state when
sl@0
   687
		the driver is closed.
sl@0
   688
		*/
sl@0
   689
		EClosed=0,
sl@0
   690
sl@0
   691
		/** Media driver has started powerup sequence. */
sl@0
   692
		EPoweringUp1=1,
sl@0
   693
sl@0
   694
		/** Media is being opened. */
sl@0
   695
		EOpening=2,
sl@0
   696
sl@0
   697
		/** Media is open and the partition information is being read. */
sl@0
   698
		EReadPartitionInfo=3,
sl@0
   699
		
sl@0
   700
		/** The media driver is open and ready to accept commands. */
sl@0
   701
		EReady=4,
sl@0
   702
sl@0
   703
		/** Not used. */
sl@0
   704
		EAborted=5,
sl@0
   705
sl@0
   706
		/** Powering up with media drivers open. */
sl@0
   707
		EPoweringUp2=6,
sl@0
   708
sl@0
   709
		/** Not used. */
sl@0
   710
		ERecovering=7,
sl@0
   711
sl@0
   712
		/** The media is powered down, but the media driver still exists. */
sl@0
   713
		EPoweredDown=8 // powered down with media drivers open
sl@0
   714
		};
sl@0
   715
sl@0
   716
public:
sl@0
   717
	IMPORT_C virtual TInt Create(TMediaDevice aDevice, TInt aMediaId, TInt);
sl@0
   718
	void Close();
sl@0
   719
public:
sl@0
   720
	inline Int64 MediaLenInBytes();
sl@0
   721
	inline TMediaDevice DeviceType();
sl@0
   722
	inline TInt PartitionCount();
sl@0
   723
	inline Int64 PartitionBaseAddr(TInt aPartition);
sl@0
   724
	inline Int64 PartitionLen(TInt aPartition);
sl@0
   725
public:
sl@0
   726
    /** Not used. */
sl@0
   727
	static TInt MediaCallBack(TAny *aPtr);
sl@0
   728
public:
sl@0
   729
	/**
sl@0
   730
	The unique ID associated with this media entity. 
sl@0
   731
	ID allocated when the media is first created.
sl@0
   732
	
sl@0
   733
	@see LocDrv::RegisterMediaDevice
sl@0
   734
	*/
sl@0
   735
	TInt iMediaId;
sl@0
   736
sl@0
   737
	/**
sl@0
   738
	The unique ID for the device.
sl@0
   739
sl@0
   740
	@see TMediaDevice
sl@0
   741
	*/
sl@0
   742
	TMediaDevice iDevice;
sl@0
   743
sl@0
   744
	/**
sl@0
   745
	Partition information for the media device.
sl@0
   746
sl@0
   747
	@see TPartitionInfo
sl@0
   748
	*/
sl@0
   749
	TPartitionInfo iPartitionInfo;
sl@0
   750
sl@0
   751
	/**
sl@0
   752
	The media's physical device driver.
sl@0
   753
sl@0
   754
	@see DMediaDriver
sl@0
   755
	*/
sl@0
   756
	DMediaDriver *iDriver;
sl@0
   757
sl@0
   758
	/**
sl@0
   759
	Mount information for the media device.
sl@0
   760
	
sl@0
   761
	@see TMountInfoData
sl@0
   762
	*/
sl@0
   763
	TMountInfoData iMountInfo;
sl@0
   764
	};
sl@0
   765
sl@0
   766
#ifdef __DEMAND_PAGING__
sl@0
   767
class DFragmentationPagingLock;
sl@0
   768
class DMediaPagingDevice;
sl@0
   769
#endif
sl@0
   770
sl@0
   771
sl@0
   772
/**
sl@0
   773
@publishedPartner
sl@0
   774
@released
sl@0
   775
The DPrimaryMedia base class which is derived from DMedia class is responsible for controlling the overall state of the media 
sl@0
   776
(for example whether the power is applied or the partition information has been determined and so on). 
sl@0
   777
Each media driver or extension that registers for a set of local drives also has to register for a set of DMedia objects at the same time.
sl@0
   778
This media set must contain just one primary media object. 
sl@0
   779
The driver that performs drive registration is responsible for creating the primary media object itself, 
sl@0
   780
which it then passes over to the local media sub-system for ownership. 
sl@0
   781
If further media objects are specified in the set, then the local media sub-system itself creates DMedia instances for these on behalf of the driver.
sl@0
   782
*/
sl@0
   783
class DPrimaryMediaBase : public DMedia
sl@0
   784
	{
sl@0
   785
public:
sl@0
   786
	enum TMsgId
sl@0
   787
		{
sl@0
   788
		EConnect=-1,
sl@0
   789
		EDisconnect=-2,
sl@0
   790
		};
sl@0
   791
sl@0
   792
	enum TForceMediaChangeFlags
sl@0
   793
		{
sl@0
   794
		/**
sl@0
   795
		Specifying zero as the flag for DPrimaryMediaBase::ForceMediaChange(), 
sl@0
   796
		results in all media drivers associated with the primary media being 
sl@0
   797
		closed and reopened.
sl@0
   798
		All pending requests on all logical drives associated with the primary 
sl@0
   799
		media will be cancelled.
sl@0
   800
sl@0
   801
		@see DPrimaryMediaBase::ForceMediaChange()
sl@0
   802
		@see RLocalDrive::ForceMediaChange()
sl@0
   803
		*/
sl@0
   804
		KForceMediaChangeReOpenAllMediaDrivers = 0,
sl@0
   805
		/**
sl@0
   806
		This flag is used to simulate ejecting and re-inserting the media.
sl@0
   807
		All pending requests on all logical drives associated with the primary 
sl@0
   808
		media will be cancelled.
sl@0
   809
		N.B. This is asynchronous in behaviour i.e. the caller will need to wait 
sl@0
   810
		for (two) media change notifications before the drive is ready for use
sl@0
   811
sl@0
   812
		@see DPBusPrimaryMedia::ForceMediaChange()
sl@0
   813
		@see RLocalDrive::ForceMediaChange()
sl@0
   814
		*/
sl@0
   815
		KMediaRemountForceMediaChange = 0x00000001,
sl@0
   816
		/**
sl@0
   817
		This flag is used to force the media driver for the specified logical 
sl@0
   818
		drive to be closed and reopened.
sl@0
   819
		It should not affect any pending requests on other logical drives 
sl@0
   820
		associated with the primary media.
sl@0
   821
sl@0
   822
		@see DPrimaryMediaBase::ForceMediaChange()
sl@0
   823
		@see RLocalDrive::ForceMediaChange()
sl@0
   824
		*/
sl@0
   825
		KForceMediaChangeReOpenMediaDriver = 0x80000000
sl@0
   826
		};
sl@0
   827
sl@0
   828
public:
sl@0
   829
	IMPORT_C DPrimaryMediaBase();
sl@0
   830
public:
sl@0
   831
	// provided by implementation
sl@0
   832
	IMPORT_C virtual TInt Create(TMediaDevice aDevice, TInt aMediaId, TInt aLastMediaId);
sl@0
   833
	IMPORT_C virtual TInt Connect(DLocalDrive* aLocalDrive);
sl@0
   834
	IMPORT_C virtual void Disconnect(DLocalDrive* aLocalDrive);
sl@0
   835
	IMPORT_C virtual TInt Request(TLocDrvRequest& aRequest);
sl@0
   836
	IMPORT_C virtual TInt QuickCheckStatus();
sl@0
   837
	IMPORT_C virtual TInt ForceMediaChange(TInt aMode);
sl@0
   838
	IMPORT_C virtual TInt InitiatePowerUp();
sl@0
   839
	IMPORT_C virtual TInt DoInCritical();
sl@0
   840
	IMPORT_C virtual void DoEndInCritical();
sl@0
   841
	IMPORT_C virtual void DeltaCurrentConsumption(TInt aCurrent);
sl@0
   842
	IMPORT_C virtual void DefaultDriveCaps(TLocalDriveCapsV2& aCaps);
sl@0
   843
	IMPORT_C virtual TBool IsRemovableDevice(TInt& aSocketNum);
sl@0
   844
public:
sl@0
   845
	// used by implementation
sl@0
   846
	IMPORT_C void NotifyMediaChange();
sl@0
   847
	IMPORT_C void NotifyPowerDown();
sl@0
   848
	IMPORT_C void NotifyEmergencyPowerDown();
sl@0
   849
	IMPORT_C void NotifyPsuFault(TInt anError);
sl@0
   850
	IMPORT_C void NotifyMediaPresent();
sl@0
   851
	IMPORT_C void PowerUpComplete(TInt anError);
sl@0
   852
public:
sl@0
   853
	IMPORT_C virtual void HandleMsg(TLocDrvRequest& aRequest);
sl@0
   854
	IMPORT_C virtual TInt DoRequest(TLocDrvRequest& aRequest);
sl@0
   855
	TInt OpenMediaDriver();
sl@0
   856
	void CloseMediaDrivers(DMedia* aMedia = NULL);
sl@0
   857
	void StartOpenMediaDrivers();
sl@0
   858
	void OpenNextMediaDriver();
sl@0
   859
	void DoOpenMediaDriverComplete(TInt anError);
sl@0
   860
	void DoPartitionInfoComplete(TInt anError);
sl@0
   861
	void CompleteCurrent(TInt anError);
sl@0
   862
	void CompleteRequest(TLocDrvRequest& aMsg, TInt aResult);
sl@0
   863
	IMPORT_C void RunDeferred();
sl@0
   864
	void SetClosed(TInt anError);
sl@0
   865
	void NotifyClients(TBool aMediaChange,TLocDrv* aLocDrv=NULL);
sl@0
   866
	TInt InCritical();
sl@0
   867
	void EndInCritical();
sl@0
   868
	void UpdatePartitionInfo();
sl@0
   869
	void MediaReadyHandleRequest();
sl@0
   870
	TInt SendReceive(TLocDrvRequest& aReq, TLinAddr aLinAddress = NULL);
sl@0
   871
sl@0
   872
#ifdef __DEMAND_PAGING__
sl@0
   873
	TInt PinSendReceive(TLocDrvRequest& aReq, TLinAddr aStart = NULL);
sl@0
   874
	TInt PinFragmentSendReceive(TLocDrvRequest& aReq, TLinAddr aLinAddress, TInt aLength);
sl@0
   875
sl@0
   876
	TBool PagingMediaPinAddress(TLinAddr aLinAddress, TInt aSize);
sl@0
   877
	void PagingMediaUnpinAddress();
sl@0
   878
#endif
sl@0
   879
sl@0
   880
#ifdef __DEMAND_PAGING__
sl@0
   881
	void RequestCountInc();
sl@0
   882
	void RequestCountDec();
sl@0
   883
#endif
sl@0
   884
sl@0
   885
public:
sl@0
   886
	TInt iLastMediaId;					/**< @internalComponent */
sl@0
   887
	TMessageQue iMsgQ;
sl@0
   888
	TDfcQue* iDfcQ;
sl@0
   889
	SDblQue iConnectionQ;				/**< @internalComponent */
sl@0
   890
	TMessageQue iDeferred;				/**< @internalComponent */
sl@0
   891
	TMessageQue iWaitMedChg;			/**< @internalComponent */
sl@0
   892
	TInt iState;						/**< @internalComponent */
sl@0
   893
	TInt iCritical;						/**< @internalComponent */
sl@0
   894
	TLocDrvRequest* iCurrentReq;
sl@0
   895
	TDfc iAsyncDfc;						/**< @internalComponent */
sl@0
   896
	TInt iAsyncErrorCode;				/**< @internalComponent */
sl@0
   897
	RPhysicalDeviceArray iPhysDevArray;	/**< @internalComponent */
sl@0
   898
sl@0
   899
	class DBody;
sl@0
   900
	DBody* iBody;						/**< @internalComponent */
sl@0
   901
sl@0
   902
	TInt iNextMediaId;					/**< @internalComponent */
sl@0
   903
	TInt iTotalPartitionsOpened;		/**< @internalComponent */
sl@0
   904
	TInt iMediaDriversOpened;			/**< @internalComponent */
sl@0
   905
	DMediaDriver* iNextMediaDriver;		/**< @internalComponent */
sl@0
   906
sl@0
   907
sl@0
   908
#ifdef __DEMAND_PAGING__
sl@0
   909
	// keep the size of class as it is used as base for PBus and may not want to bother building DP specific version.
sl@0
   910
	TUint8 iPagingMedia;				/**< @internalComponent */
sl@0
   911
	TUint8 iDataPagingMedia;			/**< @internalComponent */
sl@0
   912
	TUint8 iRomPagingMedia;				/**< @internalComponent */
sl@0
   913
	TUint8 iRunningDeferred;			/**< @internalComponent */
sl@0
   914
#else
sl@0
   915
	TInt iRunningDeferred;				/**< @internalComponent */
sl@0
   916
#endif
sl@0
   917
	};
sl@0
   918
sl@0
   919
#ifdef __DEMAND_PAGING__
sl@0
   920
sl@0
   921
/**
sl@0
   922
@internalComponent
sl@0
   923
@prototype
sl@0
   924
*/
sl@0
   925
NONSHARABLE_CLASS(DMediaPagingDevice) : public DPagingDevice
sl@0
   926
	{
sl@0
   927
public:
sl@0
   928
	enum TPagingRequestId
sl@0
   929
		{
sl@0
   930
		/** 
sl@0
   931
		Identifies any middle fragment of a Write request on a partition of a media that supports paging.
sl@0
   932
		@deprecated
sl@0
   933
		*/
sl@0
   934
		EWriteRequestFragment		=	DLocalDrive::EFirstReqNumberReservedForPaging,
sl@0
   935
sl@0
   936
		/** 
sl@0
   937
		Identifies the last fragment of a Write request on a partition of a media that supports paging.
sl@0
   938
		@deprecated
sl@0
   939
		*/
sl@0
   940
		EWriteRequestFragmentLast	=	DLocalDrive::EFirstReqNumberReservedForPaging+1,
sl@0
   941
sl@0
   942
		/** 
sl@0
   943
		Request for paging in (read) data from the ROM store area.
sl@0
   944
		*/
sl@0
   945
		ERomPageInRequest			=	DLocalDrive::EFirstReqNumberReservedForPaging+2,
sl@0
   946
sl@0
   947
		/** 
sl@0
   948
		Request for paging in (read) data from the code store area.
sl@0
   949
		*/
sl@0
   950
		ECodePageInRequest			=	DLocalDrive::EFirstReqNumberReservedForPaging+3,
sl@0
   951
sl@0
   952
        /**
sl@0
   953
        Provided to allow the following compile time assert.
sl@0
   954
        */
sl@0
   955
		EPagingRequestHighWaterMark
sl@0
   956
		};
sl@0
   957
    __ASSERT_COMPILE(EPagingRequestHighWaterMark <= DLocalDrive::ELastReqNumberReservedForPaging + 1);
sl@0
   958
sl@0
   959
	enum TQueue
sl@0
   960
		{
sl@0
   961
		EMainQ = 0x01,
sl@0
   962
		EDeferredQ=0x02
sl@0
   963
		};
sl@0
   964
sl@0
   965
public:
sl@0
   966
	DMediaPagingDevice(DPrimaryMediaBase* aPtr);
sl@0
   967
	virtual ~DMediaPagingDevice();
sl@0
   968
	
sl@0
   969
	// from DPagingDevice
sl@0
   970
	virtual TInt Read(TThreadMessage* aReq,TLinAddr aBuffer,TUint aOffset,TUint aSize,TInt aDrvNumber);
sl@0
   971
	virtual TInt Write(TThreadMessage* aReq,TLinAddr aBuffer,TUint aOffset,TUint aSize, TBool aBackground);
sl@0
   972
	virtual TInt DeleteNotify(TThreadMessage* aReq,TUint aOffset,TUint aSize);
sl@0
   973
sl@0
   974
	void CompleteRequest(TThreadMessage* aMsg, TInt aResult);
sl@0
   975
	void SendToMainQueueDfcAndBlock(TThreadMessage* aMsg);
sl@0
   976
	void SendToDeferredQ(TThreadMessage* aMsg);
sl@0
   977
	inline static TBool PageInRequest(TLocDrvRequest& aReq);
sl@0
   978
	inline static TBool PageOutRequest(TLocDrvRequest& aReq);
sl@0
   979
	inline static TBool PagingRequest(TLocDrvRequest& aReq);
sl@0
   980
public:
sl@0
   981
	TMessageQue iMainQ;
sl@0
   982
	TMessageQue iDeferredQ;
sl@0
   983
	DPrimaryMediaBase* iPrimaryMedia;
sl@0
   984
sl@0
   985
	TUint8 iEmptyingQ;
sl@0
   986
	TUint8 iDeleteNotifyNotSupported;
sl@0
   987
	TUint8 iSpare1;
sl@0
   988
	TUint8 iSpare2;
sl@0
   989
sl@0
   990
	TAny* iMountInfoDataLock;
sl@0
   991
	TAny* iMountInfoDescHdrLock;
sl@0
   992
	TAny* iMountInfoDescLenLock;
sl@0
   993
sl@0
   994
	TInt iFirstLocalDriveNumber;
sl@0
   995
	TInt iRomPagingDriveNumber;
sl@0
   996
	TInt iDataPagingDriveNumber;
sl@0
   997
sl@0
   998
	NFastMutex iInstrumentationLock;			// To protect instrumentation data
sl@0
   999
sl@0
  1000
#ifdef __CONCURRENT_PAGING_INSTRUMENTATION__
sl@0
  1001
	TUint8 iServicingROM;
sl@0
  1002
	TUint8 iServicingCode;
sl@0
  1003
	TUint8 iServicingDataIn;
sl@0
  1004
	TUint8 iServicingDataOut;
sl@0
  1005
sl@0
  1006
	SMediaROMPagingConcurrencyInfo iROMStats;
sl@0
  1007
	SMediaCodePagingConcurrencyInfo iCodeStats;
sl@0
  1008
	SMediaDataPagingConcurrencyInfo iDataStats;
sl@0
  1009
#endif
sl@0
  1010
sl@0
  1011
#ifdef __DEMAND_PAGING_BENCHMARKS__
sl@0
  1012
	SPagingBenchmarkInfo iROMBenchmarkData;
sl@0
  1013
	SPagingBenchmarkInfo iCodeBenchmarkData;
sl@0
  1014
	SPagingBenchmarkInfo iDataInBenchmarkData;
sl@0
  1015
	SPagingBenchmarkInfo iDataOutBenchmarkData;
sl@0
  1016
	SMediaPagingInfo iMediaPagingInfo;
sl@0
  1017
#endif
sl@0
  1018
	};
sl@0
  1019
sl@0
  1020
inline TBool DMediaPagingDevice::PageInRequest(TLocDrvRequest& aReq)
sl@0
  1021
	{
sl@0
  1022
	return 
sl@0
  1023
		(aReq.Flags() & TLocDrvRequest::EPaging) && 
sl@0
  1024
		(aReq.Id() == ERomPageInRequest || 
sl@0
  1025
		 aReq.Id() == ECodePageInRequest || 
sl@0
  1026
		 aReq.Id() == DLocalDrive::ERead);}
sl@0
  1027
sl@0
  1028
inline TBool DMediaPagingDevice::PageOutRequest(TLocDrvRequest& aReq)
sl@0
  1029
	{
sl@0
  1030
	return 
sl@0
  1031
		(aReq.Flags() & TLocDrvRequest::EPaging) && 
sl@0
  1032
		(aReq.Id() == DLocalDrive::EWrite);}
sl@0
  1033
sl@0
  1034
inline TBool DMediaPagingDevice::PagingRequest(TLocDrvRequest& aReq)
sl@0
  1035
	{
sl@0
  1036
	return (aReq.Flags() & TLocDrvRequest::EPaging);
sl@0
  1037
	}
sl@0
  1038
sl@0
  1039
sl@0
  1040
/**
sl@0
  1041
@internalComponent
sl@0
  1042
@prototype
sl@0
  1043
*/
sl@0
  1044
class DFragmentationPagingLock: public DDemandPagingLock
sl@0
  1045
	{
sl@0
  1046
public:
sl@0
  1047
	TInt Construct(TUint aNumPages);
sl@0
  1048
	void Cleanup();
sl@0
  1049
	void LockFragmentation()
sl@0
  1050
		{
sl@0
  1051
		__ASSERT_CRITICAL;
sl@0
  1052
		__ASSERT_DEBUG(iFragmentationMutex, Kern::Fault("LOCMEDIA_H",__LINE__));
sl@0
  1053
		// called in CS
sl@0
  1054
		Kern::MutexWait(*iFragmentationMutex);
sl@0
  1055
		}
sl@0
  1056
	void UnlockFragmentation()
sl@0
  1057
		{
sl@0
  1058
		__ASSERT_CRITICAL;
sl@0
  1059
		__ASSERT_DEBUG(iFragmentationMutex, Kern::Fault("LOCMEDIA_H",__LINE__));
sl@0
  1060
		// called in CS
sl@0
  1061
		Kern::MutexSignal(*iFragmentationMutex);
sl@0
  1062
		}
sl@0
  1063
sl@0
  1064
sl@0
  1065
public:
sl@0
  1066
	TUint iFragmentGranularity;
sl@0
  1067
private:
sl@0
  1068
	DMutex* iFragmentationMutex; // to protect Kernel memory locking
sl@0
  1069
	};
sl@0
  1070
#endif //__DEMAND_PAGING__
sl@0
  1071
sl@0
  1072
/**
sl@0
  1073
@publishedPartner
sl@0
  1074
@released
sl@0
  1075
sl@0
  1076
An abstract base class for all media drivers in the local drive system.
sl@0
  1077
sl@0
  1078
All media drivers, whether associated with fixed media, such as the internal
sl@0
  1079
drive, or removable media, such as a PC Card or MultiMediaCard, must define
sl@0
  1080
and implement a class derived from this one.
sl@0
  1081
sl@0
  1082
An instance of this class is created by the media driver's PDD factory,
sl@0
  1083
an instance of a class derived from DPhysicalDevice. 
sl@0
  1084
sl@0
  1085
@see DPhysicalDevice::Create()
sl@0
  1086
@see DPhysicalDevice
sl@0
  1087
*/
sl@0
  1088
class DMediaDriver : public DBase
sl@0
  1089
	{
sl@0
  1090
public:
sl@0
  1091
	IMPORT_C DMediaDriver(TInt aMediaId);
sl@0
  1092
	IMPORT_C virtual ~DMediaDriver();
sl@0
  1093
	IMPORT_C virtual void Close();
sl@0
  1094
// Pure virtual
sl@0
  1095
	IMPORT_C virtual void Disconnect(DLocalDrive* aLocalDrive, TThreadMessage* aMsg);
sl@0
  1096
	
sl@0
  1097
	/**
sl@0
  1098
	A function called by the local media subsystem to deal with a request, 
sl@0
  1099
	and which must be implemented by the media driver.
sl@0
  1100
	
sl@0
  1101
	@param aRequest An object that encapsulates information about the request.
sl@0
  1102
	
sl@0
  1103
	@return A value indicating the result:
sl@0
  1104
	        KErrNone, if the request has been sucessfully initiated;
sl@0
  1105
	        KErrNotSupported, if the request cannot be handled by the device;
sl@0
  1106
	        KMediaDriverDeferRequest, if the request cannot be handled
sl@0
  1107
	        immediately because of an outstanding request (this request will be
sl@0
  1108
	        deferred until the outstanding request has completed);
sl@0
  1109
	        otherwise one of the other system-wide error codes.
sl@0
  1110
	*/
sl@0
  1111
	virtual TInt Request(TLocDrvRequest& aRequest)=0;
sl@0
  1112
sl@0
  1113
	/**
sl@0
  1114
	A function called by the local media subsystem to get partition information
sl@0
  1115
	for the media device.
sl@0
  1116
	
sl@0
  1117
	It is called once the subsystem has been notified that the media driver
sl@0
  1118
	is open and has been succesfully initialised.
sl@0
  1119
	
sl@0
  1120
	This function must be implemented by the media driver.
sl@0
  1121
	
sl@0
  1122
	@param anInfo An object that, on successful return, contains
sl@0
  1123
	              the partition information.
sl@0
  1124
	
sl@0
  1125
	@return KErrNone, if retrieval of partition information is to be
sl@0
  1126
	        done asynchronously;
sl@0
  1127
	        KErrCompletion, if retrieval of partition information has been
sl@0
  1128
	        done synchronously, and successfully;
sl@0
  1129
	        one of the other system-wide error codes, if retrieval of partition
sl@0
  1130
	        information has been done synchronously, but unsuccessfully.
sl@0
  1131
	*/
sl@0
  1132
	virtual TInt PartitionInfo(TPartitionInfo &anInfo)=0;
sl@0
  1133
sl@0
  1134
	/**
sl@0
  1135
	A function called by the local media subsystem to inform the media driver
sl@0
  1136
	that the device should power down.
sl@0
  1137
	
sl@0
  1138
	This function must be implemented by the media driver.
sl@0
  1139
	*/
sl@0
  1140
	virtual void NotifyPowerDown()=0;
sl@0
  1141
sl@0
  1142
	/**
sl@0
  1143
	A function called by the local media subsystem to inform the media driver
sl@0
  1144
	that the device is to be immediately powered down.
sl@0
  1145
	
sl@0
  1146
    This function must be implemented by the media driver.
sl@0
  1147
	*/
sl@0
  1148
	virtual void NotifyEmergencyPowerDown()=0;
sl@0
  1149
public:
sl@0
  1150
	IMPORT_C void SetTotalSizeInBytes(Int64 aTotalSizeInBytes, TLocDrv* aLocDrv=NULL);
sl@0
  1151
	IMPORT_C Int64 TotalSizeInBytes();
sl@0
  1152
	IMPORT_C void SetCurrentConsumption(TInt aValue);
sl@0
  1153
	IMPORT_C TInt InCritical();
sl@0
  1154
	IMPORT_C void EndInCritical();
sl@0
  1155
	IMPORT_C void Complete(TLocDrvRequest& aRequest, TInt aResult);
sl@0
  1156
	IMPORT_C void OpenMediaDriverComplete(TInt anError);
sl@0
  1157
	IMPORT_C void PartitionInfoComplete(TInt anError);
sl@0
  1158
public:
sl@0
  1159
	DPhysicalDevice* iPhysicalDevice;/**< @internalComponent */
sl@0
  1160
	Int64 iTotalSizeInBytes;         /**< @internalComponent */
sl@0
  1161
    TInt iCurrentConsumption;        /**< @internalComponent */
sl@0
  1162
	DPrimaryMediaBase* iPrimaryMedia;/**< @internalComponent */
sl@0
  1163
	TBool iCritical;                 /**< @internalComponent */
sl@0
  1164
	TMountInfoData* iMountInfo;      /**< @internalComponent */
sl@0
  1165
	};
sl@0
  1166
sl@0
  1167
sl@0
  1168
sl@0
  1169
sl@0
  1170
/**
sl@0
  1171
@publishedPartner
sl@0
  1172
@released
sl@0
  1173
sl@0
  1174
A structure that a media driver may find useful in its implementation,
sl@0
  1175
and is used to contain the information required when registering
sl@0
  1176
the media driver with the Local Media Subsystem.
sl@0
  1177
sl@0
  1178
@see LocDrv::RegisterMediaDevice()
sl@0
  1179
*/
sl@0
  1180
struct SMediaDeviceInfo
sl@0
  1181
	{
sl@0
  1182
	
sl@0
  1183
	/**
sl@0
  1184
	The unique Media ID for a device.
sl@0
  1185
	
sl@0
  1186
    This can take one of the enumerated values defined
sl@0
  1187
    by the TMediaDevice enum.
sl@0
  1188
	*/
sl@0
  1189
	TMediaDevice iDevice;
sl@0
  1190
	
sl@0
  1191
	
sl@0
  1192
	/**
sl@0
  1193
	Specifies the number of local drive objects to be assigned to the media driver.
sl@0
  1194
    
sl@0
  1195
    Drives that support more than one partition must specify a number greater than 1.
sl@0
  1196
	*/
sl@0
  1197
	TInt iDriveCount;
sl@0
  1198
	
sl@0
  1199
	
sl@0
  1200
	/**
sl@0
  1201
    A pointer to an array of TInt values, which define the drive numbers that
sl@0
  1202
    are to be allocated to each partition.
sl@0
  1203
    
sl@0
  1204
    0 signifies Drive C, 1 signifies drive D, etc. For example, to allocate
sl@0
  1205
    drive letters J and K, specify an array containing the values [7,8].
sl@0
  1206
    Note that the size of this array must be the same as the value specified
sl@0
  1207
    by iDriveCount.
sl@0
  1208
	*/
sl@0
  1209
	const TInt* iDriveList;
sl@0
  1210
	
sl@0
  1211
	
sl@0
  1212
	/**
sl@0
  1213
	Specifies the total number of DMedia objects to be associated with
sl@0
  1214
	the media driver.
sl@0
  1215
	
sl@0
  1216
	This number includes the primary DPrimaryMedia object, plus all of
sl@0
  1217
	the DMedia objects that are created for each additional drive, and
sl@0
  1218
	which hold basic information about partitions.
sl@0
  1219
	*/
sl@0
  1220
	TInt iNumMedia; 
sl@0
  1221
	
sl@0
  1222
	
sl@0
  1223
	/**
sl@0
  1224
	A pointer to a descriptor containing the name of the media driver,
sl@0
  1225
	for example: PCCard
sl@0
  1226
	*/
sl@0
  1227
	const TDesC* iDeviceName;
sl@0
  1228
	};
sl@0
  1229
sl@0
  1230
sl@0
  1231
sl@0
  1232
sl@0
  1233
/**
sl@0
  1234
@publishedPartner
sl@0
  1235
@released
sl@0
  1236
sl@0
  1237
A set of utility functions used in the management of local media drivers.
sl@0
  1238
*/
sl@0
  1239
class LocDrv
sl@0
  1240
	{
sl@0
  1241
public:
sl@0
  1242
	IMPORT_C static TInt RegisterMediaDevice(TMediaDevice aDevice, TInt aDriveCount, const TInt* aDriveList, DPrimaryMediaBase* aPrimaryMedia, TInt aNumMedia, const TDesC& aName);
sl@0
  1243
	IMPORT_C static TInt RegisterPasswordStore(TPasswordStore* aStore);
sl@0
  1244
	IMPORT_C static TPasswordStore* PasswordStore();
sl@0
  1245
#if !defined(__WINS__)
sl@0
  1246
	IMPORT_C static TInt RegisterPagingDevice(DPrimaryMediaBase* aPrimaryMedia, const TInt* aPagingDriveList, TInt aDriveCount, TUint aPagingType, TInt aReadShift, TUint aNumPages);
sl@0
  1247
#endif // __WINS__
sl@0
  1248
	IMPORT_C static TInt RegisterDmaDevice(DPrimaryMediaBase* aPrimaryMedia,
sl@0
  1249
										   TInt aMediaBlockSize, 
sl@0
  1250
										   TInt aDmaMaxAddressable,
sl@0
  1251
										   TInt aDmaAlignment);
sl@0
  1252
	};
sl@0
  1253
sl@0
  1254
/**
sl@0
  1255
@internalComponent
sl@0
  1256
*/
sl@0
  1257
inline TInt TLocDrv::Connect(DLocalDrive* aLocalDrive)
sl@0
  1258
	{ return iPrimaryMedia->Connect(aLocalDrive); }
sl@0
  1259
sl@0
  1260
/**
sl@0
  1261
@internalComponent
sl@0
  1262
*/
sl@0
  1263
inline void TLocDrv::Disconnect(DLocalDrive* aLocalDrive)
sl@0
  1264
	{ iPrimaryMedia->Disconnect(aLocalDrive); }
sl@0
  1265
sl@0
  1266
/**
sl@0
  1267
@internalComponent
sl@0
  1268
*/
sl@0
  1269
inline TInt TLocDrv::Request(TLocDrvRequest& aRequest)
sl@0
  1270
	{ return iPrimaryMedia->Request(aRequest); }
sl@0
  1271
sl@0
  1272
/**
sl@0
  1273
Returns the length of the media, in bytes, according to the partition information.
sl@0
  1274
sl@0
  1275
@return Total length of the media, in bytes.
sl@0
  1276
sl@0
  1277
@see	TPartitionInfo
sl@0
  1278
*/
sl@0
  1279
inline Int64 DMedia::MediaLenInBytes()
sl@0
  1280
	{return(iPartitionInfo.iMediaSizeInBytes);}
sl@0
  1281
sl@0
  1282
/**
sl@0
  1283
Returns the unique media ID for this device.
sl@0
  1284
sl@0
  1285
@return	The device ID that was set in the call to DMedia::Create().
sl@0
  1286
		The return value will be one of the enumerators declared in TMediaDevice
sl@0
  1287
sl@0
  1288
@see	TMediaDevice
sl@0
  1289
*/
sl@0
  1290
inline TMediaDevice DMedia::DeviceType()
sl@0
  1291
	{return(iDevice);}
sl@0
  1292
sl@0
  1293
/**
sl@0
  1294
Returns the total number of partitions that exist on the media according to the
sl@0
  1295
partition information.
sl@0
  1296
sl@0
  1297
This will always be less than or equal to KMaxPartitionEntries.
sl@0
  1298
sl@0
  1299
@return Number of partitions that exist on the media.
sl@0
  1300
sl@0
  1301
@see	KMaxPartitionEntries
sl@0
  1302
@see	TPartitionInfo
sl@0
  1303
*/
sl@0
  1304
inline TInt DMedia::PartitionCount()
sl@0
  1305
	{return(iPartitionInfo.iPartitionCount);}
sl@0
  1306
sl@0
  1307
/**
sl@0
  1308
The start address of the partition, described as a relative offset, in bytes,
sl@0
  1309
from the start of the media.
sl@0
  1310
sl@0
  1311
This value is used by the local media subsystem to calculate the absolute 
sl@0
  1312
address on the media whenever an access such as a Read, Write or Format request
sl@0
  1313
is made.
sl@0
  1314
sl@0
  1315
@param	aPartition	The partition whose start address is to be returned.
sl@0
  1316
sl@0
  1317
@return	The start address of the partition.
sl@0
  1318
sl@0
  1319
@see	TPartitionEntry
sl@0
  1320
@see	TPartitionInfo
sl@0
  1321
*/
sl@0
  1322
inline Int64 DMedia::PartitionBaseAddr(TInt aPartition)
sl@0
  1323
	{return(iPartitionInfo.iEntry[aPartition].iPartitionBaseAddr);}
sl@0
  1324
sl@0
  1325
/**
sl@0
  1326
Returns the length of the partition, in bytes.
sl@0
  1327
sl@0
  1328
@param	aPartition	The partition whose length is to be returned.
sl@0
  1329
sl@0
  1330
@return	The length of the partition.
sl@0
  1331
sl@0
  1332
@see	TPartitionEntry
sl@0
  1333
@see	TPartitionInfo
sl@0
  1334
*/
sl@0
  1335
inline Int64 DMedia::PartitionLen(TInt aPartition)
sl@0
  1336
	{return(iPartitionInfo.iEntry[aPartition].iPartitionLen);}
sl@0
  1337
sl@0
  1338
sl@0
  1339
/**
sl@0
  1340
@internalTechnology
sl@0
  1341
sl@0
  1342
A utility class for scanning MBR/EBR partition tables.
sl@0
  1343
*/
sl@0
  1344
class TPartitionTableScanner
sl@0
  1345
	{
sl@0
  1346
public:
sl@0
  1347
	enum {ESectorShift=9, ESectorSize=512};
sl@0
  1348
	enum {EMaxNest=4};
sl@0
  1349
	struct SPart
sl@0
  1350
		{
sl@0
  1351
		SPart(const TUint8* a);
sl@0
  1352
		TUint8 iBootInd;
sl@0
  1353
		TUint8 iType;
sl@0
  1354
		TUint32 iRSS;
sl@0
  1355
		TUint32 iSectors;
sl@0
  1356
		};
sl@0
  1357
	struct SEBR
sl@0
  1358
		{
sl@0
  1359
		TInt64 iRSS;
sl@0
  1360
		TInt64 iSectors;
sl@0
  1361
		};
sl@0
  1362
public:
sl@0
  1363
	IMPORT_C void Set(TUint8* aSectorBuffer, TPartitionEntry* aEntry, TInt aMaxPartitions, TInt64 aMediaSize);
sl@0
  1364
	IMPORT_C TInt64 NextLBA();
sl@0
  1365
	IMPORT_C TInt NumberOfPartitionsFound() const;
sl@0
  1366
	TInt MakeEntry(const SPart& aP);
sl@0
  1367
public:
sl@0
  1368
	TInt64 iMediaSize;				// Total media size in sectors
sl@0
  1369
	TInt64 iLBA;					// LBA currently in sector buffer
sl@0
  1370
	TInt64 iFirstEBR;				// LBA of first EBR if any
sl@0
  1371
	SEBR iStack[EMaxNest];
sl@0
  1372
	TInt iStackPointer;
sl@0
  1373
	TUint8* iSectorBuffer;			// Pointer to 512 byte area where sector data is stored
sl@0
  1374
	TPartitionEntry* iFirstEntry;	// Where first scanned partition is stored
sl@0
  1375
	TPartitionEntry* iNextEntry;	// Where next scanned partition will be stored
sl@0
  1376
	TPartitionEntry* iLimit;		// iFirstEntry + max partitions
sl@0
  1377
	};
sl@0
  1378
sl@0
  1379
sl@0
  1380
sl@0
  1381
#endif